/* ============================================================
   VYNMONT — main.css (Dark Edition Redesign)
   Variables · @font-face · Reset · Layout · All Components
   ============================================================ */

/* ------------------------------------------------------------
   @FONT-FACE — variable fonts (self-hosted TTF)
   ------------------------------------------------------------ */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/Cormorant_Garamond/CormorantGaramond-VariableFont_wght.ttf') format('truetype');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/Cormorant_Garamond/CormorantGaramond-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 300 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat/Montserrat-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat/Montserrat-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* ------------------------------------------------------------
   DESIGN TOKENS
   ------------------------------------------------------------ */
:root {
  /* Colors — brand palette */
  --color-dark:        #1B3A2F;
  --color-forest:      #1B3A2F;      /* primary brand green */
  --color-surface:     #142D24;
  --color-surface-alt: #0F2219;
  --color-border:      rgba(245, 240, 232, 0.08);
  --color-border-mid:  rgba(245, 240, 232, 0.13);
  --color-overlay:     rgba(20, 45, 36, 0.96);

  /* Colors — text */
  --color-offwhite:    #F5F0E8;
  --color-text-muted:  #9E9E8E;
  --color-text-dim:    #5A5A4E;
  --color-warmgrey:    #3D3D35;

  /* Colors — accent */
  --color-gold:        #A07840;
  --color-gold-soft:   rgba(160, 120, 64, 0.12);
  --color-gold-light:  #C4965A;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Montserrat', system-ui, sans-serif;

  /* Type scale */
  --text-hero:   clamp(3rem, 10.5vw, 10.75rem);
  --text-h1:     clamp(2.8rem, 6vw, 6rem);
  --text-h2:     clamp(1.8rem, 3.5vw, 3.5rem);
  --text-h3:     clamp(1.2rem, 2vw, 1.75rem);
  --text-body:   1rem;
  --text-small:  0.875rem;
  --text-label:  0.7rem;

  /* Tracking */
  --tracking-hero:    0.08em;
  --tracking-display: 0.06em;
  --tracking-label:   0.2em;
  --tracking-nav:     0.15em;

  /* Weights */
  --weight-light:   300;
  --weight-regular: 400;
  --weight-medium:  500;
  --weight-semi:    600;
  --weight-bold:    700;

  /* Spacing */
  --space-xs:      0.5rem;
  --space-sm:      1rem;
  --space-md:      2rem;
  --space-lg:      4rem;
  --space-xl:      8rem;
  --space-2xl:     14rem;
  --space-section: clamp(6rem, 12vw, 14rem);

  /* Shape */
  --radius-sm:   3px;
  --radius-md:   6px;
  --radius-pill: 100px;
  --radius-nav:  10px;
}

/* ------------------------------------------------------------
   RESET & BASE
   ------------------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: var(--weight-regular);
  color: var(--color-offwhite);
  background-color: var(--color-dark);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

ul, ol {
  list-style: none;
}

/* ------------------------------------------------------------
   ACCESSIBILITY
   ------------------------------------------------------------ */
.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  z-index: 10000;
  padding: 0.75rem 1.5rem;
  background: var(--color-gold);
  color: var(--color-dark);
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: var(--weight-semi);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: var(--space-sm);
}

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}
:focus:not(:focus-visible) {
  outline: none;
}

/* ------------------------------------------------------------
   LAYOUT
   ------------------------------------------------------------ */
.container {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 6rem);
}

/* ------------------------------------------------------------
   COMPONENTS — BUTTONS
   ------------------------------------------------------------ */
.btn-primary {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: var(--weight-semi);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-offwhite);
  border: 1px solid rgba(245, 240, 232, 0.22);
  background: rgba(245, 240, 232, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 1rem 2.5rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition:
    background 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-dark);
  transform: scale(1.02);
  box-shadow: 0 4px 24px rgba(160, 120, 64, 0.30);
}

.btn-secondary {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  padding: 1rem 2.5rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}
.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--color-text-muted);
  color: var(--color-offwhite);
}

/* ------------------------------------------------------------
   COMPONENTS — SECTION LABEL
   ------------------------------------------------------------ */
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 1.25rem;
}

/* ------------------------------------------------------------
   INTRO OVERLAY
   ------------------------------------------------------------ */
.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: var(--color-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.intro-overlay__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Gradient scrim */
.intro-overlay__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to bottom,
      rgba(27, 58, 47, 0.25) 0%,
      transparent 35%,
      transparent 50%,
      rgba(27, 58, 47, 0.55) 75%,
      rgba(27, 58, 47, 0.82) 100%
    );
  opacity: 0;
  transition: opacity 0.8s ease;
}

.intro-overlay__scrim.is-visible {
  opacity: 1;
}

.intro-overlay__brand {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.intro-overlay__svg-logo {
  display: block;
  width: min(80vw, 516px);
  height: auto;
  opacity: 0;
  user-select: none;
  pointer-events: none;
}

.intro-overlay__lang {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  z-index: 2;
  opacity: 0;
  transform: translateY(14px);
  margin-top: 1.5rem;
}

.intro-overlay__lang-btn {
  position: relative;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: var(--text-label);
  font-weight: var(--weight-semi);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-offwhite);
  border: 1px solid var(--color-gold);
  padding: 1rem 2.5rem;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
  min-width: 120px;
  min-height: 48px;
}
.intro-overlay__lang-btn:hover,
.intro-overlay__lang-btn:focus-visible {
  background: var(--color-gold);
  color: var(--color-dark);
  transform: scale(1.02);
}

/* Intro — mobile responsive */
@media (max-width: 480px) {
  .intro-overlay__svg-logo {
    width: min(88vw, 516px);
  }
  .intro-overlay__lang {
    gap: 0.75rem;
    margin-top: 1.25rem;
  }
  .intro-overlay__lang-btn {
    padding: 0.875rem 1.5rem;
    min-width: 100px;
    font-size: 0.65rem;
  }
}

/* ------------------------------------------------------------
   NAV
   ------------------------------------------------------------ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  padding: 1.125rem clamp(1rem, 3vw, 2rem);
  transition: padding 0.4s ease;
}

.nav.is-scrolled {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin-inline: auto;
  padding: 0.875rem 1.75rem;
  background: rgba(27, 58, 47, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(245, 240, 232, 0.12);
  border-radius: var(--radius-nav);
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}

.nav.is-scrolled .nav__inner {
  background: rgba(20, 45, 36, 0.90);
  border-color: rgba(245, 240, 232, 0.16);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
}

.nav__logo img {
  height: 32px;
  width: auto;
}

.nav__links {
  display: none;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

@media (min-width: 1024px) {
  .nav__links {
    display: flex;
  }
}

.nav__link {
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: var(--weight-medium);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-offwhite);
  position: relative;
  padding-bottom: 2px;
  white-space: nowrap;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.25s ease;
}
.nav__link:hover::after,
.nav__link:focus-visible::after {
  width: 100%;
}

.nav__lang {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: clamp(0.5rem, 1.5vw, 1.5rem);
  font-size: var(--text-label);
  font-weight: var(--weight-semi);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}

.nav__lang-active {
  color: var(--color-gold);
}

.nav__lang-sep {
  color: var(--color-text-dim);
  font-weight: var(--weight-light);
}

.nav__lang-link {
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}
.nav__lang-link:hover {
  color: var(--color-offwhite);
}

/* Mobile nav toggle */
.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 801;
}

@media (min-width: 1024px) {
  .nav__toggle {
    display: none;
  }
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-offwhite);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav__toggle.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav__toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__toggle.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile nav drawer */
.nav__drawer {
  position: fixed;
  inset: 0;
  z-index: 799;
  background: var(--color-surface-alt);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.nav__drawer.is-open {
  transform: translateX(0);
}

.nav__drawer-link {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: var(--weight-light);
  letter-spacing: var(--tracking-display);
  color: var(--color-offwhite);
  transition: color 0.2s ease;
}
.nav__drawer-link:hover {
  color: var(--color-gold-light);
}

.nav__drawer-cta {
  margin-top: var(--space-md);
}

/* ------------------------------------------------------------
   HERO SECTION
   ------------------------------------------------------------ */
.section-hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 75% 15%, rgba(160, 120, 64, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(15, 34, 25, 0.6) 0%, transparent 50%),
    var(--color-dark);
}

/* Grain overlay */
.section-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  opacity: 0.3;
  mix-blend-mode: overlay;
  z-index: 0;
}

/* Fade hero into next section */
.section-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 280px;
  background: linear-gradient(to bottom, transparent 0%, var(--color-surface) 85%);
  pointer-events: none;
  z-index: 2;
}

.section-hero__inner {
  position: relative;
  z-index: 2;
  padding-inline: clamp(1.5rem, 5vw, 6rem);
  padding-top: clamp(7rem, 14vw, 10rem);
  padding-bottom: clamp(5rem, 10vw, 8rem);
  max-width: 1280px;
  margin-inline: auto;
  width: 100%;
}

.section-hero__content {
  width: 100%;
  text-align: center;
}

/* ---- Hands scene — covers entire hero ---- */
.hero-hands-scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, black 84%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 84%, transparent 100%);
}

.hero-hand-img {
  position: absolute;
  bottom: -14vh;
  left: 0;
  width: 100vw;
  height: auto;
  max-width: none;
  display: block;
  opacity: 0.92;
  user-select: none;
}

.hero-hand-img--left {
  clip-path: inset(0 50% 0 0);
}

.hero-hand-img--right {
  clip-path: inset(0 0 0 50%);
}

.section-hero__headline {
  font-family: var(--font-body);
  font-size: var(--text-hero);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-hero);
  text-transform: uppercase;
  color: var(--color-offwhite);
  line-height: 0.9;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
}

/* Claim in Cormorant Garamond — elegant italic, larger than before */
.section-hero__sub {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: var(--weight-light);
  font-style: italic;
  letter-spacing: 0.03em;
  color: rgba(245, 240, 232, 0.80);
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  opacity: 0;
  transform: translateY(20px);
}

.section-hero__cta {
  opacity: 0;
  transform: translateY(16px);
}

/* Scroll indicator */
.section-hero__scroll {
  position: absolute;
  bottom: 3rem;
  left: clamp(1.5rem, 5vw, 6rem);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.section-hero__scroll.is-visible {
  opacity: 1;
}
.section-hero__scroll-text {
  font-size: var(--text-label);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-text-dim);
}
.section-hero__scroll-line {
  width: 48px;
  height: 1px;
  background: var(--color-border);
  position: relative;
  overflow: hidden;
}
/* scroll-line::after — keyframe defined in animations.css */

/* ------------------------------------------------------------
   PROOF SECTION
   ------------------------------------------------------------ */
.section-proof {
  background: var(--color-surface);
  padding-block: var(--space-section);
  position: relative;
}

.section-proof__header {
  margin-bottom: var(--space-xl);
}

.section-proof__headline {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  font-weight: var(--weight-light);
  font-style: italic;
  letter-spacing: var(--tracking-display);
  color: var(--color-offwhite);
  line-height: 1.1;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .proof-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }
}

.proof-card {
  padding: clamp(2rem, 3vw, 3rem);
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    155deg,
    rgba(31, 61, 50, 0.85) 0%,
    rgba(15, 34, 25, 0.7) 100%
  );
  border: 1px solid rgba(245, 240, 232, 0.07);
  border-top: 1px solid rgba(245, 240, 232, 0.13);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow   0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform    0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.proof-card:hover {
  border-color: rgba(160, 120, 64, 0.3);
  box-shadow:
    0 16px 56px rgba(0, 0, 0, 0.40),
    0 0 0 1px rgba(160, 120, 64, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

/* Logo at top */
.proof-card__logo {
  height: 72px;
  display: flex;
  align-items: center;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
}

.proof-card__logo-img {
  max-height: 64px;
  max-width: 170px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.82;
  transition: opacity 0.3s ease;
}
.proof-card:hover .proof-card__logo-img {
  opacity: 1;
}
.proof-card__logo-img--white {
  filter: brightness(0) invert(1);
}

.proof-card__stats {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  min-height: 9rem;
}

.stat__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: var(--weight-light);
  letter-spacing: -0.01em;
  color: var(--color-offwhite);
  line-height: 1;
  white-space: nowrap;
}

.stat__label {
  display: block;
  font-size: var(--text-label);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 0.4rem;
}

.proof-card__desc {
  font-size: var(--text-small);
  line-height: 1.65;
  color: var(--color-text-muted);
  flex: 1;
  margin-top: var(--space-md);
  padding-top: 1.25rem;
  border-top: 1px solid rgba(245, 240, 232, 0.08);
}

.proof-disclaimer {
  font-size: 0.72rem;
  color: var(--color-text-dim);
  line-height: 1.6;
  margin-top: var(--space-lg);
  text-align: center;
}

/* ------------------------------------------------------------
   PROBLEM SECTION
   ------------------------------------------------------------ */
.section-problem {
  padding-block: var(--space-section);
  background: var(--color-dark);
  position: relative;
}

.section-problem__inner {
  max-width: 820px;
}

.section-problem__headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.8rem);
  font-weight: var(--weight-light);
  letter-spacing: var(--tracking-display);
  color: var(--color-offwhite);
  line-height: 1.15;
  margin-bottom: var(--space-xl);
}

/* Animated underline on scroll */
.headline-underline {
  position: relative;
  display: inline;
}
.headline-underline::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.headline-underline.is-underlined::after {
  transform: scaleX(1);
}

.problem-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.problem-body p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: var(--weight-light);
  color: var(--color-offwhite);
  line-height: 1.8;
}

.problem-body p em {
  font-family: var(--font-display);
  font-size: 1.15em;
  font-style: italic;
  color: var(--color-offwhite);
}

.problem-close {
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-border);
}

/* Zoom-transition block */
.problem-transition {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-section);
  gap: 0.1em;
  overflow: hidden;
}

.statement-word {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 9rem);
  font-weight: var(--weight-light);
  font-style: italic;
  letter-spacing: var(--tracking-display);
  color: var(--color-offwhite);
  line-height: 1;
  will-change: transform, opacity;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ------------------------------------------------------------
   SOLUTION / PACKAGES SECTION
   ------------------------------------------------------------ */
.section-solution {
  padding-block: var(--space-section);
  background: var(--color-surface);
  position: relative;
}

.section-solution::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.section-solution__headline {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  font-weight: var(--weight-light);
  font-style: italic;
  letter-spacing: var(--tracking-display);
  color: var(--color-offwhite);
  line-height: 1.1;
  margin-bottom: var(--space-xl);
}

.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: 820px;
}

.card-package {
  border: 1px solid var(--color-border);
  padding: clamp(2rem, 3vw, 3rem);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition:
    border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.card-package:hover {
  border-color: var(--color-gold);
  box-shadow: 0 12px 48px rgba(160, 120, 64, 0.08);
}

.card-package__label {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: var(--weight-regular);
  color: var(--color-offwhite);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.card-package p {
  font-size: var(--text-small);
  font-weight: var(--weight-light);
  color: var(--color-text-muted);
  line-height: 1.8;
  flex: 1;
}

.card-package__footer {
  font-size: calc(1rem + 2px);
  font-weight: var(--weight-medium);
  color: var(--color-offwhite);
  line-height: 1.5;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-border);
  font-style: italic;
  font-family: var(--font-display);
}

.card-package .btn-primary {
  align-self: flex-start;
}

.card-package--free {
  border-color: rgba(255, 255, 255, 0.05);
  background: transparent;
}

.card-package--free .card-package__label {
  color: var(--color-text-muted);
}

.card-package--free p {
  color: var(--color-text-muted);
}

.card-package--free .card-package__footer {
  color: var(--color-text-muted);
  border-top-color: rgba(255, 255, 255, 0.04);
}

/* ------------------------------------------------------------
   DISCOVERY CALL SECTION
   ------------------------------------------------------------ */
.section-discovery {
  padding-block: var(--space-section);
  background: var(--color-surface-alt);
  position: relative;
  overflow: hidden;
}

.section-discovery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.discovery-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 1024px) {
  .discovery-layout {
    grid-template-columns: 1fr 1.2fr;
    align-items: stretch;
  }
}

.discovery-image {
  position: relative;
  overflow: hidden;
}

.discovery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 18%;
  display: block;
  filter: grayscale(20%) contrast(1.05);
}

.discovery-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, var(--color-surface-alt) 100%);
  pointer-events: none;
}

.discovery-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.discovery-title {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  font-weight: var(--weight-light);
  font-style: italic;
  letter-spacing: var(--tracking-display);
  color: var(--color-offwhite);
  line-height: 1.1;
}

.section-discovery__headline {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: var(--weight-light);
  letter-spacing: var(--tracking-display);
  color: var(--color-offwhite);
  line-height: 1.25;
}

.discovery-content p {
  font-size: 1rem;
  font-weight: var(--weight-light);
  color: var(--color-text-muted);
  line-height: 1.85;
}

.discovery-note {
  font-style: italic;
  color: var(--color-text-muted) !important;
}

.discovery-content .btn-primary {
  align-self: flex-start;
  text-align: center;
}

.discovery-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  font-size: var(--text-label);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-gold);
}

/* ------------------------------------------------------------
   ABOUT SECTION
   ------------------------------------------------------------ */
.section-about {
  padding-block: var(--space-section);
  background: var(--color-surface-alt);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 1024px) {
  .about-layout {
    grid-template-columns: 1fr;
  }
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 360px;
  filter: grayscale(20%) contrast(1.05);
}

@media (min-width: 1024px) {
  .about-image img {
    max-width: none;
  }
}

.section-about__headline {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  font-weight: var(--weight-light);
  font-style: italic;
  letter-spacing: var(--tracking-display);
  color: var(--color-offwhite);
  line-height: 1.1;
  margin-bottom: var(--space-xl);
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.about-body p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: var(--weight-light);
  color: var(--color-text-muted);
  line-height: 1.9;
}

.about-body p em {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1em;
  color: var(--color-offwhite);
}

.about-close {
  color: var(--color-offwhite) !important;
}

.about-signature {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

.about-signature strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: var(--weight-medium);
  color: var(--color-offwhite);
  letter-spacing: 0.04em;
}

.about-signature span {
  font-size: var(--text-small);
  font-weight: var(--weight-light);
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

/* About: light paper card — dramatic on the dark background */
.about-content {
  background: var(--color-offwhite);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3.5rem);
  border-radius: 3px;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.10),
    0 6px 20px rgba(0, 0, 0, 0.22),
    0 24px 72px rgba(0, 0, 0, 0.40);
}

.about-content .section-label {
  color: var(--color-forest);
}

.about-content .section-about__headline {
  color: var(--color-forest);
  margin-bottom: var(--space-md);
}

.about-content .about-body p {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: var(--weight-regular);
  font-style: normal;
  color: rgba(14, 14, 18, 0.78);
  line-height: 1.9;
}

.about-content .about-body p em {
  font-style: italic;
  color: var(--color-forest);
}

.about-content .about-close {
  color: var(--color-forest) !important;
}

.about-content .about-signature {
  border-top-color: rgba(14, 14, 18, 0.12);
}

.about-content .about-signature strong {
  color: var(--color-forest);
}

.about-content .about-signature span {
  color: #3A3A3A;
}

/* Full-width image inside letter card */
.about-content .about-image {
  margin-bottom: var(--space-lg);
}

.about-content .about-image img {
  width: 100%;
  height: auto;
  max-width: none;
  display: block;
}

/* ------------------------------------------------------------
   FAQ SECTION
   ------------------------------------------------------------ */
.section-faq {
  padding-block: var(--space-section);
  background: var(--color-surface);
  position: relative;
}

.section-faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.section-faq__headline {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  font-weight: var(--weight-light);
  letter-spacing: var(--tracking-display);
  color: var(--color-offwhite);
  line-height: 1.1;
  margin-bottom: var(--space-xl);
}

.faq-list {
  max-width: 860px;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding-block: var(--space-md);
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: var(--weight-regular);
  color: var(--color-offwhite);
  text-align: left;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
  cursor: pointer;
}
.faq-item__question:hover {
  color: var(--color-gold-light);
}

.faq-item__icon {
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: var(--weight-light);
  color: var(--color-gold);
  transition: transform 0.35s ease, color 0.2s ease;
  line-height: 1;
  width: 24px;
  text-align: center;
}

.faq-item__question[aria-expanded="true"] .faq-item__icon {
  transform: rotate(45deg);
  color: var(--color-gold-light);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  opacity: 0;
}

.faq-item__answer.is-open {
  max-height: 1200px;
  opacity: 1;
}

.faq-item__answer p {
  padding-bottom: var(--space-md);
  font-size: var(--text-small);
  font-weight: var(--weight-light);
  color: var(--color-text-muted);
  line-height: 1.85;
  max-width: 680px;
}

.faq-item__answer strong {
  font-weight: var(--weight-semi);
  color: var(--color-offwhite);
}

.faq-item__answer em {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2em;
  color: var(--color-offwhite);
}

.faq-item__answer a {
  color: var(--color-gold-light);
  text-decoration: underline;
  transition: color 0.2s ease;
}
.faq-item__answer a:hover {
  color: var(--color-offwhite);
}

/* ------------------------------------------------------------
   CONTACT SECTION
   ------------------------------------------------------------ */
.section-contact {
  padding-block: var(--space-section);
  background: var(--color-surface-alt);
  position: relative;
}

.section-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr 1.4fr;
    align-items: start;
  }
}

.section-contact__headline {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  font-weight: var(--weight-light);
  letter-spacing: var(--tracking-display);
  color: var(--color-offwhite);
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

.contact-intro p {
  font-size: var(--text-small);
  font-weight: var(--weight-light);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-detail__label {
  display: block;
  font-size: var(--text-label);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.25rem;
}

.contact-detail__value {
  font-size: var(--text-small);
  color: var(--color-offwhite);
  transition: color 0.2s ease;
}
a.contact-detail__value:hover {
  color: var(--color-gold-light);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: var(--text-label);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.form-input {
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: var(--weight-regular);
  color: var(--color-offwhite);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1.125rem;
  transition: border-color 0.25s ease;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder {
  color: var(--color-text-dim);
}
.form-input:focus {
  outline: none;
  border-color: var(--color-gold);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.7;
}

.form-privacy {
  font-size: 0.75rem;
  color: var(--color-text-dim);
  line-height: 1.6;
}
.form-privacy a {
  color: var(--color-text-muted);
  text-decoration: underline;
  transition: color 0.2s ease;
}
.form-privacy a:hover {
  color: var(--color-gold-light);
}

.form-group--call-time {
  margin-top: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

.form-section-label {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: var(--weight-light);
  color: var(--color-offwhite);
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.form-field-hint {
  font-size: var(--text-small);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888880' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.125rem center;
  padding-right: 3rem;
  appearance: none;
  -webkit-appearance: none;
}

.form-select option {
  background-color: var(--color-surface);
  color: var(--color-offwhite);
}

/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */
.footer {
  background: var(--color-surface-alt);
  border-top: 1px solid var(--color-border);
  padding-block: var(--space-xl) var(--space-lg);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr 1fr;
    align-items: start;
  }
}

.footer__logo {
  width: 260px;
  height: auto;
  margin-bottom: 0.75rem;
}

.footer__tagline {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: var(--weight-light);
  font-style: italic;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__link {
  font-size: var(--text-small);
  font-weight: var(--weight-medium);
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}
.footer__link:hover {
  color: var(--color-offwhite);
}

.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__legal-link {
  font-size: var(--text-small);
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}
.footer__legal-link:hover {
  color: var(--color-offwhite);
}

.footer__cookie-btn {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--color-text-muted);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
}
.footer__cookie-btn:hover {
  color: var(--color-offwhite);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copy {
  font-size: 0.75rem;
  color: var(--color-text-dim);
  letter-spacing: 0.06em;
}

.footer__lang {
  font-size: var(--text-label);
  font-weight: var(--weight-semi);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-text-dim);
  border: 1px solid var(--color-border);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-pill);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.footer__lang:hover {
  border-color: var(--color-text-muted);
  color: var(--color-text-muted);
}

/* ------------------------------------------------------------
   COOKIE BANNER
   ------------------------------------------------------------ */
.cookie-banner {
  position: fixed;
  bottom: var(--space-md);
  left: 50%;
  translate: -50% 0;
  z-index: 8000;
  width: min(calc(100vw - 3rem), 560px);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-md) var(--space-md);
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.55);
  animation: banner-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.cookie-banner[hidden] {
  display: none;
}

@keyframes banner-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cookie-banner__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: var(--weight-regular);
  color: var(--color-offwhite);
  margin-bottom: 0.5rem;
}

.cookie-banner__desc {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}
.cookie-banner__desc a {
  color: var(--color-gold-light);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.cookie-banner__actions .btn-secondary {
  border-color: var(--color-offwhite);
}
.cookie-banner__actions .btn-primary {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-dark);
}
.cookie-banner__actions .btn-primary:hover,
.cookie-banner__actions .btn-primary:focus-visible {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
  color: var(--color-dark);
}

/* ------------------------------------------------------------
   LEGAL PAGE STYLES
   ------------------------------------------------------------ */
.page-legal {
  min-height: 100dvh;
  padding-top: 8rem;
  padding-bottom: var(--space-section);
  background: var(--color-dark);
}

.page-legal .container {
  max-width: 800px;
}

.page-legal__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-label);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-lg);
  transition: gap 0.2s ease;
}
.page-legal__back:hover {
  gap: 0.75rem;
}

.page-legal h1 {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  font-weight: var(--weight-light);
  letter-spacing: var(--tracking-display);
  color: var(--color-offwhite);
  margin-bottom: var(--space-xl);
  line-height: 1.1;
}

.page-legal h2 {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: var(--weight-regular);
  color: var(--color-offwhite);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.page-legal p,
.page-legal li {
  font-size: var(--text-small);
  font-weight: var(--weight-light);
  color: var(--color-text-muted);
  line-height: 1.85;
  margin-bottom: 0.75rem;
}

.page-legal ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: var(--space-md);
}

.page-legal a {
  color: var(--color-gold-light);
  text-decoration: underline;
}

.page-legal .meta {
  font-size: 0.75rem;
  color: var(--color-text-dim);
  margin-bottom: var(--space-xl);
}

/* Cookie table */
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin-block: var(--space-md);
  font-size: 0.8rem;
}
.cookie-table th,
.cookie-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.cookie-table th {
  font-weight: var(--weight-semi);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.65rem;
  color: var(--color-gold);
  background: var(--color-surface);
}
.cookie-table td {
  color: var(--color-text-muted);
  font-weight: var(--weight-light);
}

/* ============================================================
   MOBILE — max-width: 767px
   ============================================================ */
@media (max-width: 767px) {

  :root {
    --space-section: clamp(3.5rem, 9vw, 5rem);
    --space-xl:      3rem;
    --text-label:    0.75rem;
  }

  /* Buttons — 48px minimum touch target, full-width */
  .btn-primary,
  .btn-secondary {
    display: block;
    width: 100%;
    text-align: center;
    white-space: normal;
    padding: 0.9rem 1.5rem;
    min-height: 48px;
  }

  /* Nav toggle — 44×44px minimum touch target */
  .nav__toggle {
    min-height: 44px;
    min-width: 44px;
    justify-content: center;
    align-items: center;
    padding: 10px;
  }

  /* Remove hover lifts on touch devices */
  .btn-primary:hover   { transform: none; box-shadow: none; }
  .btn-secondary:hover { transform: none; }
  .proof-card:hover    { transform: none; }
  .card-package:hover  { transform: none; }

  /* Touch tap feedback */
  .btn-primary:active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-dark);
    transform: scale(0.97);
    transition-duration: 0.08s;
  }

  /* Hero CTA — centered pill */
  .section-hero__cta {
    max-width: 300px;
    margin-inline: auto;
  }

  /* Preserve auto-width inside nav drawer */
  .nav__drawer .btn-primary,
  .nav__drawer .btn-secondary {
    display: inline-block;
    width: auto;
    min-height: 48px;
  }

  .card-package .btn-primary      { align-self: stretch; }
  .discovery-content .btn-primary { align-self: stretch; text-align: center; }

  .section-hero__scroll { display: none; }

  .section-hero { justify-content: flex-start; }

  /* Hide the hero→section fade gradient — it overlays the static hands */
  .section-hero::after { display: none; }

  /* Hands: pulled into flex flow, static below button */
  .hero-hands-scene {
    position: relative;
    inset: auto;
    width: 100%;
    height: 56.25vw;
    margin-top: 8px;
    z-index: 1;
    overflow: hidden;
    -webkit-mask-image: none;
    mask-image: none;
    opacity: 1;
  }

  .hero-hand-img {
    position: absolute;
    top: 0;
    bottom: auto;
    width: 100vw;
    height: auto;
    transform: none !important;
    opacity: 1 !important;
  }

  .section-hero__inner {
    padding-top: 19vh;
    padding-bottom: 0;
  }

  /* Show immediately on mobile — no GSAP animation */
  .hero-word         { opacity: 1 !important; transform: none !important; }
  .section-hero__sub { opacity: 1 !important; transform: none !important; }
  .section-hero__cta { opacity: 1 !important; transform: none !important; }

  .problem-transition {
    align-items: flex-start;
    text-align: left;
    padding-inline: clamp(1.5rem, 5vw, 6rem);
  }
  .statement-word {
    transform: none !important;
    opacity: 1 !important;
  }

  /* Hero CTA — filled gold on mobile */
  .section-hero__cta.btn-primary {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-dark);
  }
  .section-hero__cta.btn-primary:hover,
  .section-hero__cta.btn-primary:focus-visible {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-dark);
    transform: none;
    box-shadow: 0 4px 32px rgba(160, 120, 64, 0.5);
  }

  .section-hero__headline {
    font-size: clamp(2.8rem, 11vw, 4.5rem);
    margin-bottom: 1.25rem;
  }

  .section-hero__sub {
    font-size: clamp(1.1rem, 4vw, 1.4rem);
    margin-bottom: 1.75rem;
  }

  .discovery-badges {
    flex-direction: column;
    gap: 0.4rem;
  }

  .discovery-image img {
    max-height: 60vw;
    object-fit: cover;
    object-position: top center;
  }

  .discovery-layout,
  .about-layout,
  .contact-layout {
    gap: 2.5rem;
  }

  .proof-disclaimer { font-size: 0.75rem; }
  .form-privacy     { font-size: 0.8rem; }

  .section-proof__header {
    margin-bottom: var(--space-lg);
  }

  .statement-word {
    font-size: clamp(2.6rem, 9vw, 3.5rem);
  }

  .about-body { margin-bottom: var(--space-lg); }

  /* 1rem prevents iOS Safari auto-zoom on focus */
  .form-input { font-size: 1rem; }

  .contact-form    { gap: 1.25rem; }
  .contact-intro p { margin-bottom: var(--space-lg); }

  .footer__logo {
    width: min(220px, 68vw);
  }
  .footer__inner {
    gap: var(--space-md);
    padding-bottom: var(--space-md);
    margin-bottom: var(--space-md);
  }

  .cookie-banner__actions { flex-direction: column; }
  .cookie-banner__actions .btn-primary,
  .cookie-banner__actions .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .cookie-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .card-package__label {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
  }

}

/* ============================================================
   EXTRA-SMALL — max-width: 480px  (iPhone SE, Galaxy A series)
   ============================================================ */
@media (max-width: 480px) {

  :root {
    --space-section: 3rem;
    --space-xl:      2.5rem;
    --text-h1:       clamp(1.9rem, 7.5vw, 2.5rem);
  }

  .section-hero__inner {
    padding-top: 19vh;
    padding-bottom: 0;
  }

  .section-hero__headline {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
    line-height: 0.92;
  }

  .hero-hands-scene { opacity: 1; }

  .proof-card { padding: 1.5rem; }

  .about-content {
    padding: 2rem 1.25rem;
  }

  .faq-item__question {
    font-size: 1rem;
    padding-block: 1.25rem;
    gap: 1rem;
  }

  .nav__drawer      { gap: var(--space-md); }
  .nav__drawer-link { font-size: clamp(1.6rem, 5.5vw, 2rem); }

  .contact-form { gap: 1rem; }

  .cookie-banner {
    padding: 1.25rem;
    bottom: 0.75rem;
  }
}
