/* ============================================================
   Swisscort — La référence suisse des rencontres privés
   Geneva-focused landing. White theme, own visual identity.
   Fonts: Poppins (display) + DM Sans (body) — distinct from source.
   ============================================================ */

:root {
  --bg:        linear-gradient(180deg, #090909 0%, #141414 100%);
  --bg-solid:  #0f0f0f;
  --bg-2:      #141414;
  --surface:   #1a1a1a;
  --surface-2: #202020;
  --fg:        #f5f5f5;
  --fg-muted:  #888888;
  --line:      rgba(255, 255, 255, 0.08);

  --pink:      #e05888;
  --pink-deep: #d83878;
  --pink-soft: rgba(224, 88, 136, 0.15);

  --radius:    18px;
  --radius-sm: 12px;
  --maxw:      1180px;
  --shadow:    0 18px 44px rgba(0, 0, 0, 0.4);

  --font-display: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body:    "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--fg);
  background: var(--bg-solid);
  background-image: linear-gradient(180deg, #090909 0%, #141414 50%, #0a0a0a 100%);
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; margin: 0; letter-spacing: -0.01em; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Brand wordmark ===== */
.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.brand-text::first-letter { color: var(--pink); }

/* Animation du logo - une seule fois au chargement */
@keyframes logoReveal {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.brand {
  animation: logoReveal 800ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Animation du titre lettre par lettre */
@keyframes letterReveal {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-title-animate .char {
  display: inline-block;
  opacity: 0;
  animation: letterReveal 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Accent - délai pour apparaitre après le titre principal */
.hero-title-animate .accent {
  opacity: 0;
  animation: letterReveal 800ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 400ms;
}

/* ===== Animations au scroll (sections) ===== */

/* Section Genève : fade + remonte */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section Profils : fade depuis la gauche */
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Section Avantages : fade depuis la droite */
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Section CTA : zoom léger */
@keyframes fadeInZoom {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Classes pour les sections animées */
.reveal-section {
  opacity: 0;
}

.reveal-section.revealed {
  animation-duration: 700ms;
  animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation-fill-mode: forwards;
}

/* Type d'animations */
.reveal-up.revealed {
  animation-name: fadeInUp;
}

.reveal-left.revealed {
  animation-name: fadeInLeft;
}

.reveal-right.revealed {
  animation-name: fadeInRight;
}

.reveal-zoom.revealed {
  animation-name: fadeInZoom;
}

/* ===== Buttons ===== */
.btn {
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 11px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 250ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 250ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
              background 200ms ease,
              color 200ms ease;
  white-space: nowrap;
}

/* Animation bouton au survol - scale subtil + ombre douce */
.btn:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(224, 88, 136, 0.35);
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(216, 56, 120, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 10px 30px rgba(216, 56, 120, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--pink-deep);
  border-color: var(--pink);
}

.btn-outline:hover {
  background: var(--pink-soft);
  box-shadow: 0 6px 20px rgba(224, 88, 136, 0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--pink);
  color: var(--pink);
  box-shadow: 0 6px 20px rgba(20, 22, 28, 0.12);
}

.btn-lg { padding: 15px 30px; font-size: 1.05rem; }

.btn-sm {
  padding: 8px 18px;
  font-size: 0.8rem;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  transition: background 300ms ease, backdrop-filter 300ms ease, border-color 300ms ease;
}

/* Navbar transparente avec flou au scroll */
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: rgba(255, 255, 255, 0.2);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 68px;
}
.brand { display: flex; align-items: center; }
.main-nav {
  display: flex;
  gap: 22px;
  margin-left: 14px;
  flex: 1;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--fg-muted);
  transition: color .18s ease;
}
.main-nav a:hover { color: var(--pink); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}

/* ===== Photo placeholders ===== */
.photo-placeholder {
  display: grid;
  place-items: center;
  background:
    repeating-linear-gradient(45deg, #f7f7f9, #f7f7f9 12px, #f1f1f4 12px, #f1f1f4 24px);
  border: 2px dashed rgba(20, 22, 28, 0.18);
  border-radius: var(--radius-sm);
  color: var(--fg-muted);
}
.placeholder-label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: .02em;
  color: #9aa0a8;
  pointer-events: none;
}

/* ===== Hero Luxe ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0 80px;
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(224, 88, 136, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(180, 120, 180, 0.1) 0%, transparent 40%),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(224, 88, 136, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #faf8f5 0%, #f5f0e8 50%, #f0ebe3 100%);
  background-attachment: fixed;
  text-align: center;
  overflow: hidden;
}

/* Formes organiques décoratives */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(224, 88, 136, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: heroBlob1 20s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200, 160, 180, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: heroBlob2 25s ease-in-out infinite;
}

@keyframes heroBlob1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.1); }
}

@keyframes heroBlob2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 30px) scale(1.05); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Badge élégant */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8b7355;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(139, 115, 85, 0.2);
  padding: 10px 20px;
  border-radius: 999px;
  margin: 0 0 28px;
  backdrop-filter: blur(10px);
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, #e05888 0%, #d83878 100%);
  border-radius: 50%;
}

/* Titre luxe */
.hero-title {
  font-size: clamp(2.8rem, 7vw, 4.2rem);
  max-width: 22ch;
  margin: 0 auto;
  color: #2d2420;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero-title .accent {
  display: block;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  color: #6b5b50;
  margin-top: 16px;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 60ch;
  margin: 18px auto 0;
  line-height: 1.6;
}
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* ===== Sections ===== */
.section { padding: 72px 0; }
.section-title { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.section-lead { color: var(--fg-muted); margin: 10px 0 34px; max-width: 60ch; }
.section-head-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 30px;
}
.section-head-row .section-title { margin: 0; }
.link-more {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--pink);
  white-space: nowrap;
}
.link-more:hover { color: var(--pink-deep); }

/* ===== Catégories ===== */
.categories-section {
  background: transparent;
  padding: 80px 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.category-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  transition: transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 400ms ease;
}

.category-card:hover {
  transform: scale(1.02);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.category-image {
  position: absolute;
  inset: 0;
  transition: transform 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: none;
}

.category-card:hover .category-image {
  transform: scale(1.08);
}

.category-image .placeholder-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.category-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(180deg, transparent 0%, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
  transition: background 400ms ease;
}

.category-card:hover .category-overlay {
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.9) 100%);
}

.category-overlay h3 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.category-overlay .btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 300ms ease, transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-card:hover .btn-sm {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .category-image .placeholder-label {
    font-size: 1rem;
  }
}

/* ===== Localisation Genève ===== */
.section-geneva { background: transparent; }
.geneva-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}
.geneva-media {
  min-height: 320px;
  box-shadow: var(--shadow);
}
.photo-placeholder-wide { border-radius: var(--radius); }

/* ===== Profiles ===== */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.profile-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 300ms ease;
  cursor: pointer;
}

/* Hover : zoom 2% + ombre plus forte */
.profile-card:hover {
  transform: scale(1.02);
  box-shadow: 0 24px 56px rgba(224, 88, 136, 0.35), 0 12px 24px rgba(20, 22, 28, 0.15);
  border-color: rgba(224, 88, 136, 0.6);
}

.profile-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: none;
  border-radius: 0;
}

/* Bouton qui apparaît au survol */
.profile-card .profile-cta {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 22, 28, 0.4);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 300ms ease, transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(2px);
}

.profile-card:hover .profile-cta {
  opacity: 1;
  transform: translateY(0);
}

.profile-cta .btn {
  padding: 10px 20px;
  font-size: 0.85rem;
  transform: scale(0.95);
  transition: transform 250ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 250ms ease;
}

.profile-card:hover .profile-cta .btn {
  transform: scale(1);
}
.badge {
  position: absolute;
  top: 10px; left: 10px;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: .04em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(20, 22, 28, 0.72);
  color: #fff;
  backdrop-filter: blur(4px);
}
.badge-hot { background: linear-gradient(135deg, var(--pink), var(--pink-deep)); }
.badge-new { background: #28a040; }
.profile-body { padding: 12px 14px 16px; }
.profile-body h3 { font-size: 1.05rem; font-weight: 600; }
.profile-meta { margin: 4px 0 0; font-size: 0.82rem; color: var(--fg-muted); }

/* ===== Features ===== */
.section-features { background: transparent; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.feature:hover { transform: translateY(-4px); border-color: rgba(224, 88, 136, 0.4); box-shadow: var(--shadow); }
.feature-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--pink-soft);
  color: var(--pink);
  margin-bottom: 18px;
}
.feature-icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 8px; }
.feature p { margin: 0; color: var(--fg-muted); font-size: 0.95rem; }

/* ===== Stats intégrées dans la section Avantages ===== */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 50px 0 20px;
  padding: 32px 40px;
  background: linear-gradient(135deg, var(--pink-soft) 0%, rgba(224, 88, 136, 0.05) 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(224, 88, 136, 0.15);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--pink-deep);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--fg-muted);
  font-weight: 500;
}

@media (max-width: 720px) {
  .stats-row {
    flex-direction: column;
    gap: 24px;
    padding: 24px;
  }
}

/* ===== CTA final ===== */
.cta-final {
  padding: 84px 0;
  text-align: center;
  background:
    radial-gradient(820px 360px at 50% 120%, rgba(224, 88, 136, 0.12), transparent 60%),
    var(--bg-2);
}
.cta-inner h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); max-width: 22ch; margin: 0 auto; }
.cta-inner p { color: var(--fg-muted); max-width: 56ch; margin: 16px auto 0; font-size: 1.05rem; }

/* ===== Footer ===== */
.site-footer {
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.8) 0%, rgba(15, 15, 15, 0.95) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 56px 20px 40px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
  transition: opacity 250ms ease, transform 250ms ease;
}

.footer-logo:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}

.footer-brand p {
  color: var(--fg-muted);
  font-size: 0.92rem;
  max-width: 40ch;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--fg);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-col a {
  color: var(--fg-muted);
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
  transition: color 300ms ease, transform 250ms ease;
}

.footer-col a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--pink);
  transition: width 300ms ease;
}

.footer-col a:hover {
  color: var(--pink);
  transform: translateX(4px);
}

.footer-col a:hover::before {
  width: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
}

.footer-bottom p {
  margin: 0;
  text-align: center;
  color: var(--fg-muted);
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ===== Cookie banner ===== */
.cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 80;
  max-width: 720px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner.hidden { display: none; }
.cookie-banner p { margin: 0; flex: 1; min-width: 220px; font-size: 0.9rem; color: var(--fg-muted); }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 9px 16px; font-size: 0.85rem; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .profiles-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .hero { background-attachment: scroll; }
}

@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    inset: 68px 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 8px 20px 16px;
    margin: 0;
    transform: translateY(-120%);
    visibility: hidden;
    opacity: 0;
    transition: transform .3s cubic-bezier(.68, -.55, .27, 1.55), opacity .3s ease, visibility .3s ease;
  }
  .main-nav.active {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }
  .nav-toggle { display: flex; }
  .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translateY(10px); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translateY(-10px); }
  .profiles-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .geneva-inner  { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(1.8rem, 5vw, 2.8rem); }
  .hero-cta { margin-top: 28px; }
  .btn { padding: 10px 18px; font-size: 0.9rem; }
  .btn-lg { padding: 12px 24px; font-size: 0.95rem; }
}
