/* ══════════════════════════════════════════════════════════
   SNACKET® · Where Brands Show Up
   shared.css · Global Design System · v1.0 · 2026
   ══════════════════════════════════════════════════════════ */


/* ── DESIGN TOKENS ── */
:root {
  --tone-1:       #CEC1A3;   /* tono A — secciones impares (más oscuro/warm tan) */
  --tone-2:       #EBE4D7;   /* tono B — secciones pares (crema claro) */
  --beige:        #E6D5B5;
  --beige-deep:   #EDE2C8;   /* beige profundo — secciones de contraste suave */
  --beige-light:  #F6F0E4;   /* beige muy claro para alternancia */
  --charcoal:     #363C43;
  --charcoal-mid: #4A5260;
  --green:        #88AD59;
  --green-dark:   #6B8E44;
  --green-pale:   #EEF4E6;   /* verde muy suave para fondos de sección */
  --gold:         #DAAB61;
  --gold-dark:    #B98F4A;
  --gold-pale:    #FBF5E8;   /* crema dorado para secciones premium */
  --white:        #FFFFFF;
  --nav-height:   68px;
}

/* ── BASE RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito Sans', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--charcoal);
  background-color: var(--tone-1);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── TYPOGRAPHY SCALE ── */
.font-display {
  font-family: 'Philosopher', Georgia, serif;
}
h1, h2, h3 {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-dark);
  display: inline-block;
  background: var(--green-pale);
  padding: 0.22rem 0.75rem;
  border-radius: 100px;
  border: 1px solid rgba(107, 142, 68, 0.2);
}

.editorial {
  font-family: 'Philosopher', Georgia, serif;
  font-style: italic;
}

/* ── COLORS UTILITIES ── */
.bg-tone-1   { background-color: var(--tone-1); }
.bg-tone-2   { background-color: var(--tone-2); }
.bg-beige    { background-color: var(--beige); }
.bg-charcoal { background-color: var(--charcoal); }
.bg-white    { background-color: var(--white); }
.text-green  { color: var(--green); }
.text-gold   { color: var(--gold); }
.text-white  { color: var(--white); }
.text-charcoal { color: var(--charcoal); }

/* ── SECTION-DARK UTILITY ── */
.section-dark { background-color: var(--charcoal); color: rgba(235,228,215,0.85); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--tone-2); }
.section-dark h1 em, .section-dark h2 em, .section-dark h3 em { color: var(--gold); font-style: normal; }
.section-dark .eyebrow { color: var(--green); background: rgba(136,173,89,0.14); border-color: rgba(136,173,89,0.28); }
.section-dark p { color: rgba(235,228,215,0.72); }
.section-dark p strong, .section-dark p b { color: var(--tone-2); }
.section-dark a:not(.btn) { color: var(--gold); }
.section-dark a:not(.btn):hover { color: var(--gold-dark); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s ease, color 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.btn:active { transform: translateY(0) !important; }

.btn-green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 16px -2px rgba(136,173,89,0.45);
}
.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -2px rgba(136,173,89,0.5);
}

.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
  box-shadow: 0 4px 16px -2px rgba(218,171,97,0.45);
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -2px rgba(218,171,97,0.5);
}

.btn-outline-charcoal {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--charcoal);
}
.btn-outline-charcoal:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--charcoal);
  transform: translateY(-2px);
}

/* ── GRADIENT BUTTON (green → gold animated) ── */
@property --gb-pos-x    { syntax: '<percentage>'; initial-value: 11%; inherits: false; }
@property --gb-pos-y    { syntax: '<percentage>'; initial-value: 140%; inherits: false; }
@property --gb-spread-x { syntax: '<percentage>'; initial-value: 150%; inherits: false; }
@property --gb-spread-y { syntax: '<percentage>'; initial-value: 180%; inherits: false; }
@property --gb-c1       { syntax: '<color>'; initial-value: #1b3009; inherits: false; }
@property --gb-c2       { syntax: '<color>'; initial-value: #2d5016; inherits: false; }
@property --gb-c3       { syntax: '<color>'; initial-value: #4a7a28; inherits: false; }
@property --gb-c4       { syntax: '<color>'; initial-value: #6B8E44; inherits: false; }
@property --gb-c5       { syntax: '<color>'; initial-value: #88AD59; inherits: false; }
@property --gb-stop-1   { syntax: '<percentage>'; initial-value: 37%; inherits: false; }
@property --gb-stop-2   { syntax: '<percentage>'; initial-value: 61%; inherits: false; }
@property --gb-stop-3   { syntax: '<percentage>'; initial-value: 78%; inherits: false; }
@property --gb-stop-4   { syntax: '<percentage>'; initial-value: 89%; inherits: false; }
@property --gb-stop-5   { syntax: '<percentage>'; initial-value: 100%; inherits: false; }
@property --gb-ba       { syntax: '<angle>'; initial-value: 20deg; inherits: false; }
@property --gb-bc1      { syntax: '<color>'; initial-value: hsla(90,50%,65%,0.2); inherits: false; }
@property --gb-bc2      { syntax: '<color>'; initial-value: hsla(90,50%,40%,0.75); inherits: false; }

@keyframes btn-shake {
  0%   { transform: translateY(-2px) translateX(0); }
  15%  { transform: translateY(-2px) translateX(-3px) rotate(-0.5deg); }
  30%  { transform: translateY(-2px) translateX(3px) rotate(0.5deg); }
  45%  { transform: translateY(-2px) translateX(-2px) rotate(-0.3deg); }
  60%  { transform: translateY(-2px) translateX(2px) rotate(0.3deg); }
  75%  { transform: translateY(-2px) translateX(-1px); }
  100% { transform: translateY(-2px) translateX(0); }
}

.btn-gradient {
  position: relative;
  background: radial-gradient(
    var(--gb-spread-x) var(--gb-spread-y) at var(--gb-pos-x) var(--gb-pos-y),
    var(--gb-c1) var(--gb-stop-1),
    var(--gb-c2) var(--gb-stop-2),
    var(--gb-c3) var(--gb-stop-3),
    var(--gb-c4) var(--gb-stop-4),
    var(--gb-c5) var(--gb-stop-5)
  ) !important;
  box-shadow: 0 4px 20px -2px rgba(107,142,68,0.5) !important;
  transition:
    --gb-pos-x 0.5s, --gb-pos-y 0.5s,
    --gb-spread-x 0.5s, --gb-spread-y 0.5s,
    --gb-c1 0.5s, --gb-c2 0.5s, --gb-c3 0.5s, --gb-c4 0.5s, --gb-c5 0.5s,
    --gb-stop-1 0.5s, --gb-stop-2 0.5s, --gb-stop-3 0.5s, --gb-stop-4 0.5s, --gb-stop-5 0.5s,
    --gb-ba 0.5s, --gb-bc1 0.5s, --gb-bc2 0.5s,
    box-shadow 0.5s,
    transform 0.2s !important;
}
.btn-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(var(--gb-ba), var(--gb-bc1), var(--gb-bc2));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.btn-gradient:hover {
  --gb-pos-x: 0%;
  --gb-pos-y: 91%;
  --gb-spread-x: 120%;
  --gb-spread-y: 103%;
  --gb-c1: #88AD59;
  --gb-c2: #a8c56a;
  --gb-c3: #DAAB61;
  --gb-c4: #B98F4A;
  --gb-c5: #3a2a0a;
  --gb-stop-1: 0%;
  --gb-stop-2: 9%;
  --gb-stop-3: 21%;
  --gb-stop-4: 71%;
  --gb-stop-5: 86%;
  --gb-ba: 190deg;
  --gb-bc1: hsla(90,60%,90%,0.1);
  --gb-bc2: hsla(45,60%,85%,0.6);
  box-shadow: 0 8px 28px -2px rgba(218,171,97,0.5) !important;
  transform: translateY(-2px) !important;
  animation: btn-shake 0.35s cubic-bezier(0.36,0.07,0.19,0.97) both;
}

/* ── OUTCOME TAGS ── */
.outcome-tag {
  display: inline-block;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  border-radius: 2px;
}

/* ── SECTION CONTAINER ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container--wide { max-width: 1340px; }

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.section--sm { padding: clamp(2.5rem, 5vw, 4rem) 0; }

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(54,60,67,0.15), transparent);
}
.divider--gold {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.4;
}

/* ──────────────────────────────────────────
   NAV
   ────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(54,60,67,0.1);
  box-shadow: 0 1px 4px rgba(54,60,67,0.06);
  height: var(--nav-height);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.nav-logo img { height: 42px; width: auto; }

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links li { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-radius: 2px;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.nav-link:hover { color: var(--green); }
.nav-link.active { color: var(--green); }

/* Dropdown caret */
.nav-caret {
  width: 10px;
  height: 6px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.nav-links li:hover .nav-caret { transform: rotate(180deg); }

/* Dropdown menu */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid rgba(54,60,67,0.1);
  border-radius: 3px;
  padding: 0.5rem 0;
  min-width: 210px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  box-shadow: 0 8px 32px -4px rgba(54,60,67,0.18);
  list-style: none;
}
.nav-links li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 0.55rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.03em;
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-dropdown a:hover {
  color: var(--green);
  background: rgba(136,173,89,0.07);
}

/* CTA area */
.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav-lang {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--charcoal-mid);
  cursor: pointer;
  padding: 0.3rem 0.65rem;
  border: 1px solid rgba(54,60,67,0.2);
  border-radius: 2px;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  background: none;
  min-width: 42px;
  text-align: center;
  line-height: 1.6;
}
.nav-lang:hover { border-color: var(--green); color: var(--green); }
.nav-lang:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  padding: 2rem;
  overflow-y: auto;
  z-index: 99;
  flex-direction: column;
  gap: 0;
}
.nav-mobile.open { display: flex; }
.nav-mobile-link {
  display: block;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  border-bottom: 1px solid rgba(54,60,67,0.1);
  letter-spacing: 0.02em;
}
.nav-mobile-link:hover { color: var(--green); }
.nav-mobile-sub {
  padding: 0.5rem 0 0.5rem 1rem;
  font-size: 0.9rem;
  color: var(--charcoal-mid);
  font-weight: 600;
}
.nav-mobile-sub:hover { color: var(--green); }
.nav-mobile .btn { margin-top: 1.5rem; width: 100%; justify-content: center; }

/* ── Responsive nav ── */
@media (max-width: 1024px) {
  .nav-links, .nav-cta-group .btn { display: none; }
  .nav-hamburger { display: flex; }
  .nav-cta-group { gap: 0.5rem; }
  .nav-lang { display: flex; }
}
@media (max-width: 600px) {
  .nav-lang { display: none; }
}

/* ──────────────────────────────────────────
   FOOTER
   ────────────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.55);
  padding: 4rem 0 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 44px; width: auto; filter: brightness(0) invert(1); opacity: 0.85; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 260px; }
.footer-brand .tagline {
  font-family: 'Philosopher', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.footer-socials { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer-social-icon:hover { color: var(--white); border-color: rgba(255,255,255,0.6); }

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.15s ease;
  font-weight: 400;
}
.footer-col ul a:hover { color: var(--white); }

.footer-contact .email {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: 0.35rem;
}
.footer-contact p { font-size: 0.8rem; margin-bottom: 1.25rem; }
.footer-contact .btn { font-size: 0.72rem; padding: 0.65rem 1.25rem; }

.footer-bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.75rem; }
.footer-gold-line {
  font-family: 'Philosopher', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 0.8rem;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  pointer-events: none;
}
.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a { font-size: 0.75rem; color: rgba(255,255,255,0.3); transition: color 0.15s ease; }
.footer-legal a:hover { color: rgba(255,255,255,0.65); }
/* ── Footer Disclaimer Accordion ── */
.footer-disclaimer {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.footer-disclaimer-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.28);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0;
  margin: 0 auto;
  transition: color 0.2s ease;
}
.footer-disclaimer-toggle:hover { color: rgba(255,255,255,0.55); }
.footer-disclaimer-chevron {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-disclaimer-toggle[aria-expanded="true"] .footer-disclaimer-chevron {
  transform: rotate(180deg);
}
.footer-disclaimer-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.footer-disclaimer-body.open {
  grid-template-rows: 1fr;
}
.footer-disclaimer-inner { min-height: 0; }
.footer-disclaimer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding-top: 1.25rem;
}
.footer-disclaimer-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-disclaimer-label {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(218,171,97,0.5);
}
.footer-disclaimer-item p {
  font-size: 0.65rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.25);
  margin: 0;
}
.footer-disclaimer-contact {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.22);
  text-align: center;
  padding-top: 1rem;
  margin: 0;
}
.footer-disclaimer a { color: rgba(255,255,255,0.35); text-decoration: underline; transition: color 0.15s ease; }
.footer-disclaimer a:hover { color: rgba(255,255,255,0.6); }
@media (max-width: 600px) {
  .footer-disclaimer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-gold-line { order: -1; }
}

/* ──────────────────────────────────────────
   SCROLL ANIMATIONS
   ────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.34,1.2,0.64,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Sequential stagger — 1s between each item */
.stagger-1 { transition-delay: 0s; }
.stagger-2 { transition-delay: 1s; }
.stagger-3 { transition-delay: 2s; }
.stagger-4 { transition-delay: 3s; }
.stagger-5 { transition-delay: 4s; }

/* ──────────────────────────────────────────
   NOISE OVERLAY
   ────────────────────────────────────────── */
.noise-overlay::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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.035;
}

/* ──────────────────────────────────────────
   ACCORDION
   ────────────────────────────────────────── */
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,1,0.65,1), opacity 0.3s ease;
  opacity: 0;
}
.accordion-body.open { max-height: 500px; opacity: 1; }
.accordion-icon { transition: transform 0.3s ease, background 0.2s ease; }
.accordion-icon.open { transform: rotate(45deg); background: var(--green) !important; border-color: var(--green) !important; }

/* ──────────────────────────────────────────
   UTILITY
   ────────────────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-center { text-align: center; }
.max-prose { max-width: 720px; margin: 0 auto; }

/* ══════════════════════════════════════════════════════════
   COMPONENT OVERRIDES
   Component-level colors. Section backgrounds are now set
   per-page. Dark anchors: heroes, final CTAs, closing CTAs.
   ══════════════════════════════════════════════════════════ */

/* ── Final CTA + Closing CTA — canonical dark sections ── */
.final-cta-dark,
.closing-cta { background: var(--charcoal); border-top: 1px solid rgba(255,255,255,0.06); }
.final-cta-dark h2,
.closing-cta h2 { color: var(--tone-2); }
.final-cta-dark p,
.closing-cta p { color: rgba(235,228,215,0.65); }
.final-cta-dark .tagline,
.final-cta-dark .ready-label,
.closing-cta .tagline { color: var(--gold); }
.closing-cta .secondary-link { color: rgba(235,228,215,0.55); }
.closing-cta .secondary-link a { color: var(--tone-2); text-decoration: underline; text-underline-offset: 3px; }

/* ── Platforms: config card headers ── */
.config-header {
  background: var(--charcoal) !important;   /* keep dark — it's a small card cap, not a section */
  border-radius: 3px 3px 0 0;
}
.config-name     { color: var(--white) !important; }
.config-oneliner { color: var(--green) !important; }

/* ── Platforms: feature pills ── */
.feature-pill {
  background: var(--charcoal) !important;
  color: var(--white) !important;
}

/* ── Clients: tab active state ── */
.tab-btn.active {
  background: var(--green) !important;
}
.tab-btn.active .tab-name { color: var(--white) !important; }
.tab-btn.active .tab-sub  { color: rgba(255,255,255,0.7) !important; }
.tab-btn.active::after    { background: var(--gold) !important; }

/* ── Clients: panel-right (benefits list) ── */
.panel-right {
  background: var(--white) !important;
  border: 1px solid rgba(54,60,67,0.1) !important;
}
.benefits-label  { color: var(--green) !important; }
.benefit-title   { color: var(--charcoal) !important; }
.benefit-desc    { color: var(--charcoal-mid) !important; }
.panel-ctas .btn-outline-white {
  border-color: var(--charcoal) !important;
  color: var(--charcoal) !important;
}
.panel-ctas .btn-outline-white:hover {
  background: var(--charcoal) !important;
  color: var(--white) !important;
}

/* ── Clients: proof bar ── */
.proof-bar {
  background: var(--tone-1) !important;
  border-top: 1px solid rgba(54,60,67,0.1) !important;
  border-bottom: 1px solid rgba(54,60,67,0.1) !important;
}
.proof-num   { color: var(--green) !important; }
.proof-label { color: var(--charcoal-mid) !important; opacity: 0.8 !important; }
.proof-item  { border-right-color: rgba(54,60,67,0.12) !important; }

/* ── Final CTA buttons — white outline on charcoal bg ── */
.final-cta-dark .btn-outline-white { border-color: rgba(235,228,215,0.5); color: var(--tone-2); }
.final-cta-dark .btn-outline-white:hover { background: var(--tone-2); color: var(--charcoal); }

/* ── Questions: FAQ header — canonical dark ── */
.faq-header { background: var(--charcoal); border-bottom: 1px solid rgba(255,255,255,0.06); }
.faq-eyebrow { color: var(--green); }
.faq-header-line { background: var(--gold); }

/* ── Questions: FAQ CTA block — canonical dark card ── */
.faq-cta-block { background: var(--charcoal); border: 1px solid rgba(255,255,255,0.08); border-radius: 4px; }
.faq-cta-text h3 { color: var(--tone-2); }
.faq-cta-eyebrow { color: var(--green); }

/* ── Our Work: hero — canonical dark ── */
body.our-work-page { background: var(--charcoal); }
.our-work-page .site-nav { background: var(--white); }
.work-main { background: var(--charcoal); }
.work-label { color: var(--green); }
.work-headline { color: var(--white); }
.work-subline { color: var(--beige); opacity: 0.75; }
.work-divider { background: var(--gold); }
.work-watermark { color: rgba(255,255,255,0.025); }
.coming-badge { background: rgba(136,173,89,0.15); border-color: rgba(136,173,89,0.35); color: var(--green); }
.coming-badge::before { background: var(--green); }
.coming-preview { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.1); }
.coming-preview-label { color: rgba(235,228,215,0.5); }
.coming-items li { color: rgba(235,228,215,0.65); }
.coming-items li::before { color: var(--green); }

/* ── Footer: stays dark (intentional exception) ── */
.site-footer { background: var(--charcoal) !important; }

/* Grain texture is handled by grain.js */
