/* ============================================
   ZOZI CONSULTING — STYLESHEET
   Design tokens → Base → Components → Sections
   ============================================ */

/* === TOKENS === */
:root {
  /* Brand colours */
  --gold:         #B39020;
  --gold-light:   #D4AA28;
  --gold-dark:    #8A6F0F;
  --gold-muted:   rgba(179, 144, 32, 0.18);
  --charcoal:     #2D2D2D;
  --charcoal-2:   #1A1A1A;
  --charcoal-3:   #383838;
  --cream:        #FAF6ED;
  --cream-2:      #F0EBE0;
  --white:        #FFFFFF;

  /* Semantic */
  --text-on-dark:       rgba(250, 246, 237, 0.85);
  --text-on-dark-muted: rgba(250, 246, 237, 0.45);
  --text-on-cream:      #2D2D2D;
  --text-on-cream-muted: rgba(45, 45, 45, 0.6);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent:  'Montserrat', sans-serif;

  /* Spacing */
  --nav-h:        80px;
  --pad-section:  clamp(80px, 11vw, 140px);
  --pad-x:        clamp(1.25rem, 5vw, 2.5rem);
  --container:    1220px;

  /* Motion */
  --ease-expo:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth:  cubic-bezier(0.83, 0, 0.17, 1);
  --dur-fast:     0.25s;
  --dur-mid:      0.45s;
  --dur-slow:     0.75s;
}

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

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

body {
  background: var(--cream);
  color: var(--text-on-cream);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { border: none; background: none; font: inherit; cursor: pointer; }

/* === LAYOUT === */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* === TYPE UTILITIES === */
.label {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.label--dim {
  color: var(--text-on-dark-muted);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color var(--dur-fast) ease;
  white-space: nowrap;
}

/* Sweep fill — slides in from left on hover */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-105%);
  transition: transform var(--dur-mid) var(--ease-expo);
  z-index: 0;
}
.btn:hover::after { transform: translateX(0); }
.btn > * { position: relative; z-index: 1; }
.btn span, .btn:not(:has(span)) { position: relative; z-index: 1; }

.btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal-2);
}
.btn--gold::after { background: var(--gold-light); }

.btn--ghost {
  background: transparent;
  border-color: rgba(250, 246, 237, 0.25);
  color: var(--text-on-dark);
}
.btn--ghost::after { background: rgba(250, 246, 237, 0.08); }
.btn--ghost:hover { border-color: rgba(250, 246, 237, 0.5); }

.btn--cream {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--charcoal-2);
}
.btn--cream::after { background: var(--white); }

.btn--lg { padding: 1.25rem 3rem; }


/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 200;
  transition:
    background var(--dur-mid) ease,
    backdrop-filter var(--dur-mid) ease,
    box-shadow var(--dur-mid) ease;
}

.nav.is-scrolled {
  background: rgba(26, 26, 26, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(179, 144, 32, 0.15);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo-wrap {
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 68px;
  opacity: 0.75;
  transition: opacity var(--dur-mid) ease;
}
.nav.is-scrolled .nav__logo-wrap {
  opacity: 1;
}

/* Content centre in PNG ≈ y=242/500 (48.5%) — nearly centred.
   align-items:center naturally shows the wordmark; no margin offset needed.
   At 190px wide → image 190×190px → container 80px centred shows y=55–135,
   content y=65–119 fully visible. */
.nav__logo-img {
  width: 190px;
  height: auto;
  margin-top: 0;
  filter: brightness(0) invert(1) drop-shadow(0 0 1px rgba(255,255,255,0.6));
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__link {
  font-family: var(--font-accent);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  position: relative;
  transition: color var(--dur-fast) ease;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width var(--dur-mid) var(--ease-expo);
}
.nav__link:hover { color: var(--cream); }
.nav__link:hover::after { width: 100%; }

.nav__link--cta {
  padding: 0.55rem 1.4rem;
  border: 1.5px solid rgba(179, 144, 32, 0.45);
  color: var(--gold);
  transition:
    background var(--dur-fast) ease,
    border-color var(--dur-fast) ease,
    color var(--dur-fast) ease;
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal-2);
}


/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--charcoal-2);
  overflow: hidden;
}

/* Hero background image */
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    url('../static/hero.png') right center / cover no-repeat,
    var(--charcoal-2);
  transform: scale(1.06);
  transition: transform 1.8s var(--ease-expo);
  will-change: transform;
}
.hero.loaded .hero__bg { transform: scale(1); }

/* Directional gradient: heavier left for text legibility, open right to reveal image.
   Image background is already very dark so overlay stays light overall. */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(26, 26, 26, 0.82) 0%,
    rgba(26, 26, 26, 0.60) 40%,
    rgba(26, 26, 26, 0.25) 70%,
    rgba(26, 26, 26, 0.10) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 5rem) var(--pad-x) 8rem;
}

/* Animated gold rule */
.hero__rule {
  height: 1px;
  width: 0;
  background: var(--gold);
  margin-bottom: 2.2rem;
}

.hero__overline {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(10px);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7.5vw, 7.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1.3rem;
}

.hero__line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.32em; /* room for descenders (g/y/p) clipped by overflow:hidden;
    the italic gold line's swash tails (f/g) reach deeper than the upright lines,
    so this is sized for that worst case */
}

.hero__line--gold {
  color: var(--gold);
  font-style: italic;
}

/* Individual word wrappers injected by JS */
.hero__word {
  display: inline-block;
  opacity: 0;
  transform: translateY(105%);
  will-change: transform, opacity;
}

.hero__sub {
  max-width: 500px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-on-dark);
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(14px);
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(14px);
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
  animation: fadeIn 0.8s ease 2.8s forwards;
}

.hero__scroll-label {
  font-family: var(--font-accent);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
}

.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(179, 144, 32, 0.6), transparent);
  animation: scrollPulse 2.2s ease-in-out 2.8s infinite;
}

@keyframes fadeIn { to { opacity: 1; } }
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); transform-origin: top; opacity: 0.7; }
  50%        { transform: scaleY(0.5); transform-origin: top; opacity: 0.3; }
}


/* =============================================
   INTRO
   ============================================= */
.intro {
  background: var(--cream);
  padding: var(--pad-section) 0;
}

.intro__inner {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

.intro__heading {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--charcoal);
}
.intro__heading em {
  font-style: italic;
  color: var(--gold-dark);
}

.intro__question {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--charcoal);
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
  margin-bottom: 1.6rem;
}

.intro__body {
  font-size: 0.925rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-on-cream-muted);
  margin-bottom: 1rem;
}


/* =============================================
   PILLARS
   ============================================= */
.pillars {
  background: var(--charcoal);
  padding: var(--pad-section) 0;
}

.pillars__header { margin-bottom: clamp(3rem, 5vw, 5rem); }

.pillars__heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--cream);
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.pillar {
  background: var(--charcoal-3);
  padding: clamp(2rem, 3.5vw, 3.5rem) clamp(1.5rem, 3vw, 3rem);
  position: relative;
  overflow: hidden;
  transition:
    background var(--dur-mid) ease,
    transform var(--dur-mid) var(--ease-expo);
}

/* Gold top border that sweeps in on hover */
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.55s var(--ease-expo);
}

.pillar:hover {
  background: #404040;
  transform: translateY(-5px);
}
.pillar:hover::before { transform: scaleX(1); }

.pillar__number {
  font-family: var(--font-accent);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  opacity: 0.65;
  margin-bottom: 1.6rem;
}

.pillar__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1.25rem;
}

.pillar__rule {
  width: 28px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0.5;
}

.pillar__desc {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-on-dark-muted);
}


/* =============================================
   SERVICES
   ============================================= */
.services {
  background: var(--cream-2);
  padding: var(--pad-section) 0;
}

.services__header { margin-bottom: clamp(3rem, 5vw, 5rem); }

.services__heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--charcoal);
}
.services__heading em {
  font-style: italic;
  color: var(--gold-dark);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service {
  background: var(--cream);
  padding: clamp(1.8rem, 3vw, 2.8rem) clamp(1.5rem, 2.5vw, 2.4rem);
  position: relative;
  overflow: hidden;
  transition: background var(--dur-fast) ease;
}

/* Gold bottom border that sweeps in from left */
.service::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s var(--ease-expo);
}

.service:hover { background: var(--white); }
.service:hover::after { transform: scaleX(1); }

.service__icon {
  color: var(--gold);
  margin-bottom: 1.4rem;
  transition: transform var(--dur-mid) var(--ease-expo);
}
.service:hover .service__icon { transform: translateY(-2px); }

.service__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.service__desc {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-on-cream-muted);
}


/* =============================================
   STAT SECTION
   ============================================= */
.stat-section {
  background: var(--charcoal-2);
  padding: var(--pad-section) 0;
  text-align: center;
}

.stat-section__inner {
  max-width: 820px;
  margin: 0 auto;
}

.stat-section__context {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  margin-bottom: 2.5rem;
}

.stat-section__number {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 13vw, 11rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 2.5rem;
  /* clip reveal handled by GSAP */
}

.stat-section__sub {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-on-dark-muted);
  max-width: 480px;
  margin: 0 auto;
}


/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  background: var(--cream);
  padding: var(--pad-section) 0;
  overflow: hidden;
}

.testimonials__header { margin-bottom: clamp(3rem, 5vw, 4.5rem); }

.testimonials__heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--charcoal);
}
.testimonials__heading em {
  font-style: italic;
  color: var(--gold-dark);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.testimonial {
  background: var(--charcoal);
  padding: clamp(2rem, 3vw, 3rem) clamp(1.5rem, 2.5vw, 2.5rem);
  display: flex;
  flex-direction: column;
}

.testimonial__mark {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 0.6;
  margin-bottom: 1.8rem;
  opacity: 0.75;
}

.testimonial__text {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-on-dark);
  flex: 1;
  margin-bottom: 2.5rem;
}

.testimonial__author { margin-top: auto; }

.testimonial__name {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.testimonial__company {
  display: block;
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-on-dark-muted);
  letter-spacing: 0.04em;
}

/* Controls (dots + arrows) */
.testimonials__controls {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.testimonials__btn {
  width: 46px;
  height: 46px;
  border: 1.5px solid rgba(45, 45, 45, 0.2);
  color: var(--charcoal);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--dur-fast) ease,
    border-color var(--dur-fast) ease,
    color var(--dur-fast) ease;
}
.testimonials__btn:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--cream);
}

.testimonials__dots {
  display: flex;
  gap: 0.5rem;
}

.testimonials__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(45, 45, 45, 0.18);
  transition: background var(--dur-fast) ease, transform var(--dur-fast) ease;
}
.testimonials__dot.is-active {
  background: var(--gold);
  transform: scale(1.3);
}


/* =============================================
   CTA BLOCK
   ============================================= */
.cta-block {
  background: var(--charcoal);
  padding: var(--pad-section) 0;
  border-top: 1px solid rgba(179, 144, 32, 0.15);
}

.cta-block__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

.cta-block__heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.cta-block__sub {
  font-size: 0.925rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-on-dark-muted);
}

.cta-block__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.cta-block__email {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-on-dark-muted);
}

.cta-block__email-link {
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-fast) ease;
}
.cta-block__email-link:hover { border-color: var(--gold); }


/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--charcoal-2);
  padding: 3.5rem 0;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

/* Measured: PNG 500×500, content y=172–313.
   At width 180px → scale 0.36 → content y=62–113px.
   margin-top -59px → shows y=59–115, content fully visible. */
.footer__logo-wrap {
  display: block;
  overflow: hidden;
  height: 56px;
  opacity: 0.85;
  transition: opacity var(--dur-fast) ease;
}
.footer__logo-wrap:hover { opacity: 1; }

.footer__logo-img {
  width: 180px;
  height: auto;
  margin-top: -59px;
  filter: brightness(0) invert(1);
  display: block;
}

.footer__nav {
  display: flex;
  gap: 2.5rem;
}

.footer__link {
  font-family: var(--font-accent);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  transition: color var(--dur-fast) ease;
}
.footer__link:hover { color: var(--gold); }

.footer__divider {
  height: 1px;
  background: rgba(250, 246, 237, 0.07);
  margin-bottom: 2rem;
}

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

.footer__copy {
  font-size: 0.76rem;
  font-weight: 300;
  color: rgba(250, 246, 237, 0.25);
}

.footer__tagline {
  font-family: var(--font-accent);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(179, 144, 32, 0.35);
}


/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .pillars__grid,
  .services__grid,
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .intro__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .cta-block__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 680px) {
  .pillars__grid,
  .services__grid,
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .nav__links .nav__link:not(.nav__link--cta) { display: none; }
  .footer__top { flex-direction: column; align-items: flex-start; gap: 2rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .footer__nav { flex-wrap: wrap; gap: 1.25rem; }
}

/* On mobile, hide all testimonials except active (JS controlled) */
@media (max-width: 1024px) {
  .testimonials__grid {
    display: block;
    position: relative;
    min-height: 280px;
  }
  .testimonial {
    display: none;
  }
  .testimonial.is-active {
    display: flex;
  }
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 300; /* above .nav (200) */
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.25rem clamp(1.25rem, 5vw, 2.5rem);
  background: rgba(26, 26, 26, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(179, 144, 32, 0.25);
  transform: translateY(100%);
  transition: transform var(--dur-mid) var(--ease-expo);
}
.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__text {
  flex: 1 1 420px;
  color: var(--text-on-dark);
  font-size: 0.85rem;
  line-height: 1.55;
  max-width: 640px;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 0.65rem 1.4rem;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: opacity var(--dur-fast) ease, border-color var(--dur-fast) ease;
}

.cookie-banner__btn--decline {
  background: transparent;
  border-color: rgba(250, 246, 237, 0.3);
  color: var(--text-on-dark);
}
.cookie-banner__btn--decline:hover {
  border-color: rgba(250, 246, 237, 0.6);
}

.cookie-banner__btn--accept {
  background: var(--gold);
  color: var(--charcoal-2);
}
.cookie-banner__btn--accept:hover {
  background: var(--gold-light);
}

@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }
  .cookie-banner__actions {
    justify-content: flex-end;
  }
}
