/* =============================================
   CSS CUSTOM PROPERTIES
============================================= */
:root {
  --bg: #FAFAF8;
  --bg-section: #F0EDE8;
  --ink: #1A1A1A;
  --tan: #C8A882;
  --tan-dark: #B08F68;
  --primary: #D1EFB5;
  --primary-dark: #A5D677;
  --grey: #5C5C5C;
  --grey-light: #9A9A9A;
  --border: rgba(28,28,28,0.1);
  --font-display: 'Lora', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --max-width: 1140px;
  --section-padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 40px);
}

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

html {
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* =============================================
   UTILITY
============================================= */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 18px;
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.02em;
}

hr.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* Fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   NAVBAR
============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: transparent;
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
  padding: 0 clamp(20px, 5vw, 40px);
}
.nav.scrolled {
  background-color: var(--bg);
  box-shadow: 0 1px 0 rgba(28,28,28,0.08), 0 4px 16px rgba(28,28,28,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
}
.lang-btn {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.25s;
  cursor: pointer;
}
.lang-btn:hover { color: rgba(255,255,255,0.9); }
.lang-btn--active {
  color: #ffffff;
  cursor: default;
}
.lang-divider {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}
.nav.scrolled .lang-btn { color: var(--grey-light); }
.nav.scrolled .lang-btn:hover { color: var(--ink); }
.nav.scrolled .lang-btn--active { color: var(--ink); }
.nav.scrolled .lang-divider { color: var(--border); }

@media (max-width: 480px) {
  .nav-logo-surname {
    display: block;
    margin-top: -2px;
  }
  .nav-right {
    gap: 14px;
  }
}

/* Over hero: logo is white */
.nav-logo {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
  transition: color 0.35s ease;
}
.nav-logo:hover { color: var(--primary); }

/* Once scrolled: logo goes dark */
.nav.scrolled .nav-logo {
  color: var(--ink);
}
.nav.scrolled .nav-logo:hover { color: var(--primary-dark); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 10px 22px;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.btn-primary {
  background-color: var(--primary);
  color: var(--ink);
}
.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(165,214,119,0.35);
}
.btn-large {
  font-size: 15px;
  padding: 16px 36px;
}

/* =============================================
   HERO SECTION
============================================= */
.hero {
  position: relative;
  padding: calc(64px + clamp(80px, 12vw, 140px)) clamp(20px, 5vw, 40px) clamp(64px, 8vw, 96px);
  overflow: hidden;
}

/* Full-bleed video background */
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  z-index: 0;
}

@media (max-width: 768px) {
  .hero-video-bg {
    object-position: center;
  }
}

/* Dark overlay so text stays readable */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 8, 5, 0.6) 0%,
    rgba(10, 8, 5, 0.7) 60%,
    rgba(10, 8, 5, 0.8) 100%
  );
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
}
.hero-content {
  max-width: 100%;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  font-weight: 500;
  color: var(--primary);
}
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 36px;
}
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.hero-social-proof {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

.eyebrow-hero {
  color: var(--primary);
}

/* Stat block */
.stat-block {
  margin-top: clamp(56px, 8vw, 80px);
  padding-top: clamp(40px, 5vw, 56px);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  gap: 0;
}
.stat-item {
  flex: 1;
  padding: 0 clamp(24px, 4vw, 48px);
  position: relative;
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { padding-right: 0; }
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.18);
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
}

@media (max-width: 560px) {
  .stat-block {
    flex-direction: column;
    gap: 32px;
  }
  .stat-item { padding: 0; }
  .stat-item + .stat-item::before {
    top: -16px;
    left: 0;
    height: 1px;
    width: 40px;
  }
}

/* =============================================
   PROBLEM SECTION
============================================= */
.problem {
  padding: var(--section-padding);
  background-color: var(--bg-section);
}
.problem-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.problem-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 64px;
  margin-top: 48px;
}

.pain-point {
  padding-left: 20px;
  border-left: 2px solid var(--primary-dark);
}
.pain-point strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.pain-point p {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.65;
}

.problem-transition {
  margin-top: 64px;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 24px);
  font-style: italic;
  color: var(--ink);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
  .problem-points {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* =============================================
   ABOUT / SOLUTION SECTION
============================================= */
.about {
  padding: var(--section-padding);
}
.about-header {
  max-width: var(--max-width);
  margin: 0 auto clamp(40px, 5vw, 56px);
  padding: 0 clamp(20px, 5vw, 40px);
}
.about-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 80px;
  align-items: start;
}
.about-body {
  font-size: 16px;
  color: var(--grey);
  line-height: 1.8;
}
.about-body p + p { margin-top: 20px; }
.about-body strong { color: var(--ink); font-weight: 600; }

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}
.tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--grey);
  background-color: var(--bg-section);
  border: 1px solid var(--border);
  padding: 7px 16px;
  border-radius: 100px;
}

/* About photo */
.about-photo-wrap {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background-color: var(--bg-section);
}
.about-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.about-community-photo {
  width: 100%;
  margin-top: 28px;
  border-radius: 6px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* =============================================
   OFFER SECTION
============================================= */
.offer {
  padding: var(--section-padding);
  background-color: var(--bg-section);
}
.offer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.offer-header {
  max-width: 600px;
  margin-bottom: 56px;
}
.offer-subheadline {
  font-size: 18px;
  color: var(--grey);
  line-height: 1.6;
  margin-top: 14px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  background-color: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 48px;
}
.offer-card {
  background-color: var(--bg);
  padding: 32px 28px;
}
.offer-card-week {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 10px;
}
.offer-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.3;
}
.offer-card-body {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.65;
}
.offer-card.bonus {
  background-color: #FDFBF8;
  border-left: 3px solid var(--primary-dark);
}
.offer-card.bonus .offer-card-week { color: var(--ink); }

.investment-card {
  background-color: var(--ink);
  background-size: cover;
  background-position: center;
  color: white;
  border-radius: 8px;
  padding: clamp(40px, 6vw, 64px) clamp(28px, 5vw, 64px);
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.investment-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* subtle primary rays fanning from bottom-left */
    conic-gradient(
      from 300deg at 15% 110%,
      transparent 0deg,
      rgba(209, 239, 181, 0.07) 8deg,
      transparent 16deg,
      transparent 28deg,
      rgba(209, 239, 181, 0.05) 36deg,
      transparent 44deg,
      transparent 60deg,
      rgba(209, 239, 181, 0.04) 68deg,
      transparent 76deg
    ),
    /* dark overlay for legibility */
    linear-gradient(
      to bottom,
      rgba(10, 8, 5, 0.82) 0%,
      rgba(10, 8, 5, 0.78) 55%,
      rgba(10, 8, 5, 0.88) 100%
    );
  z-index: 0;
}
.investment-card > * {
  position: relative;
  z-index: 1;
}
.investment-price {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.investment-terms {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.investment-guarantee {
  font-size: 14px;
  font-style: italic;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin: 0 auto 24px;
  line-height: 1.6;
}
.investment-bridge {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.btn-light {
  background-color: var(--primary);
  color: var(--ink);
}
.btn-light:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

/* =============================================
   PROCESS SECTION
============================================= */
.process {
  padding: var(--section-padding);
}
.process-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 26px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 1px;
  background: linear-gradient(to right, var(--primary-dark), var(--primary-dark));
  opacity: 0.4;
}
.step {
  padding: 0 28px;
  position: relative;
}
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--bg-section);
  border: 2px solid var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}
.step-body {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .process-steps::before { display: none; }
  .step { padding: 0; }
}

/* =============================================
   SOCIAL PROOF / CASE STUDY
============================================= */
.proof {
  padding: var(--section-padding);
  background-color: var(--bg-section);
}
.proof-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.proof-headline {
  max-width: 680px;
  margin-bottom: 56px;
}

.case-study {
  background-color: var(--ink);
  color: white;
  border-radius: 8px;
  padding: clamp(40px, 6vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
}
.case-study-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}
.case-study-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.case-study-subtitle {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}
.case-study-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.case-study-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.55;
}
.case-study-list li::before {
  content: '—';
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 1px;
}
.case-study-note {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  grid-column: 1 / -1;
}

/* Case study screenshot blocks */
.case-study-screenshots-block {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cs-block-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.case-study-screenshots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.case-study-screenshots--6 {
  grid-template-columns: repeat(3, 1fr);
}
.cs-screenshot-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cs-screenshot-frame {
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}
.cs-screenshot-frame img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.92;
}
.cs-screenshot-label {
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .case-study {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .case-study-screenshots {
    grid-template-columns: repeat(2, 1fr);
  }
  .case-study-screenshots--6 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =============================================
   WHO THIS IS FOR
============================================= */
.audience {
  padding: var(--section-padding);
}
.audience-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 80px;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}
.check-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-icon svg {
  width: 11px;
  height: 11px;
  stroke: var(--ink);
  stroke-width: 2.5;
  fill: none;
}
.check-text {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.65;
}
.check-text strong { color: var(--ink); font-weight: 600; }

.not-for-you {
  margin-top: 36px;
  padding: 28px;
  background-color: var(--bg-section);
  border-radius: 6px;
  border-left: 2px solid rgba(28,28,28,0.15);
}
.not-for-you-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-bottom: 10px;
}
.not-for-you p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .audience-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* =============================================
   BOOKING SECTION
============================================= */
.booking {
  position: relative;
  background-color: var(--bg-section);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
}

/* Booking photo — left panel */
.booking-photo-wrap {
  overflow: hidden;
  align-self: stretch;
}
.booking-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.booking-inner {
  padding: clamp(48px, 6vw, 80px) clamp(32px, 5vw, 72px);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 768px) {
  .booking {
    grid-template-columns: 1fr;
  }
  .booking-photo-wrap {
    aspect-ratio: 4 / 3;
  }
}
.booking-body {
  font-size: 18px;
  color: var(--grey);
  line-height: 1.7;
  margin: 20px 0 10px;
}
.booking-urgency {
  font-size: 14px;
  font-style: italic;
  color: var(--grey-light);
  margin-bottom: 40px;
}
.booking-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.booking-dm {
  font-size: 14px;
  color: var(--grey-light);
}
.booking-dm a {
  color: var(--primary-dark);
  font-weight: 500;
  transition: color 0.2s;
}
.booking-dm a:hover { color: var(--ink); }

/* Calendly placeholder */
#booking-widget {
  margin-top: 56px;
  padding: 48px 32px;
  background-color: var(--bg);
  border: 1px dashed rgba(200,168,130,0.4);
  border-radius: 8px;
  color: var(--grey-light);
  font-size: 14px;
  font-style: italic;
}

/* =============================================
   FOOTER
============================================= */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px clamp(20px, 5vw, 40px);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 13px;
  color: var(--grey-light);
}
.footer-copy a {
  color: var(--grey-light);
  transition: color 0.2s;
}
.footer-copy a:hover { color: var(--primary-dark); }
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 13px;
  color: var(--grey-light);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--primary-dark); }

@media (max-width: 560px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
}

/* =============================================
   COOKIE CONSENT BANNER
============================================= */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(calc(100% + 32px));
  z-index: 9999;
  width: calc(100% - 48px);
  max-width: 560px;
  background-color: var(--ink);
  color: white;
  border-radius: 10px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  opacity: 0;
}
.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.cookie-banner.hidden {
  transform: translateX(-50%) translateY(calc(100% + 32px));
  opacity: 0;
  pointer-events: none;
}
.cookie-text {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
  flex: 1;
}
.cookie-text a {
  color: var(--tan);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  border: none;
  border-radius: 6px;
  padding: 9px 18px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
}
.cookie-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
.cookie-btn--decline {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
}
.cookie-btn--accept {
  background: var(--tan);
  color: var(--ink);
}

@media (max-width: 560px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    bottom: 16px;
    width: calc(100% - 32px);
  }
}
