/* ================================================================
   SECTIONS — Major page section styles
   Nav, Hero, About, Timeline, Events, Gallery, Press, FAQ, Footer
   WP equivalent: theme template-parts styles
   ================================================================ */

/* ━━━━━━━━━━━━━━ SITE HEADER — Always Visible ━━━━━━━━━━━━━━ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  background: var(--c-dark-2);
  box-shadow: var(--sh-header);
}

/* ── TOP BAR — Trinidadian identity strip ── */
.header-topbar {
  height: var(--topbar-h);
  background: var(--c-trini-red);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,.2);
  overflow: hidden;
}
.header-topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--container-px);
}
.header-topbar__left {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.topbar-flag   { font-size: 14px; line-height: 1; }
.topbar-tagline {
  font-family: var(--font-sub);
  font-size: 10px;
  font-weight: var(--fw-medium);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  white-space: nowrap;
}
.header-topbar__right {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
}
.topbar-email {
  font-family: var(--font-sub);
  font-size: 11px;
  letter-spacing: .04em;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transition: color var(--t-fast);
}
.topbar-email:hover { color: var(--c-gold-bright); text-decoration: none; }
.topbar-socials { display: flex; gap: var(--sp-3); align-items: center; }
.topbar-social {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  width: 22px; height: 22px;
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
}
.topbar-social:hover { color: var(--c-gold-bright); background: rgba(255,255,255,.1); text-decoration: none; }

/* ── MAIN NAV BAR ── */
.site-nav {
  height: var(--mainnav-h);
  background: var(--c-dark-2);
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--container-px);
  gap: var(--sp-4);
}

/* ── Logo ── */
.site-nav__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  gap: 1px;
  transition: opacity var(--t-fast);
}
.site-nav__logo:hover { opacity: .88; text-decoration: none; }
.logo-name {
  font-family: var(--font-accent);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.logo-first { color: var(--c-gold-light); }
.logo-last  { color: var(--c-cream-1); }
.logo-sub {
  font-family: var(--font-sub);
  font-size: 9px;
  font-weight: var(--fw-bold);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(200,152,48,.6);
  display: block;
}

/* ── Nav links ── */
.site-nav__links {
  display: flex;
  list-style: none;
  padding: 0; margin: 0;
  gap: 0;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.site-nav__links a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sub);
  font-size: 11.5px;
  font-weight: var(--fw-bold);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(244,232,212,.65);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--r-md);
  position: relative;
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-icon { display: flex; align-items: center; flex-shrink: 0; opacity: .7; }
.site-nav__links a::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, var(--c-trini-red), var(--c-gold));
  border-radius: var(--r-full);
  transition: transform var(--t-base);
}
.site-nav__links a:hover {
  color: var(--c-cream-1);
  background: rgba(255,255,255,.05);
  text-decoration: none;
}
.site-nav__links a.active {
  color: var(--c-gold-light);
  background: rgba(200,152,48,.1);
  text-decoration: none;
}
.site-nav__links a:hover::after,
.site-nav__links a.active::after { transform: translateX(-50%) scaleX(1); }
.site-nav__links a.active .nav-icon { opacity: 1; color: var(--c-gold-light); }

/* ── CTA Button ── */
.site-nav__cta { flex-shrink: 0; }
.btn--carnival {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: .7em 1.6em;
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: var(--fw-black);
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: var(--r-full);
  cursor: pointer;
  background: linear-gradient(135deg, var(--c-trini-red) 0%, var(--c-carnival-orange) 100%);
  color: var(--c-cream-1);
  box-shadow: var(--sh-red);
  transition: opacity var(--t-fast), transform var(--t-fast), box-shadow var(--t-base);
  white-space: nowrap;
}
.btn--carnival:hover {
  opacity: .9;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(204,17,34,.5);
  text-decoration: none;
  color: var(--c-cream-1);
}

/* ── Heritage stripe (Kente + Trini flag blend) ── */
.header-stripe {
  height: var(--stripe-h);
  background: repeating-linear-gradient(
    90deg,
    var(--c-gold)          0,   var(--c-gold)          10px,
    var(--c-trini-red)     10px,var(--c-trini-red)     20px,
    var(--c-kente-black)   20px,var(--c-kente-black)   28px,
    var(--c-hummingbird)   28px,var(--c-hummingbird)   38px,
    var(--c-carnival-orange) 38px,var(--c-carnival-orange) 46px,
    var(--c-kente-black)   46px,var(--c-kente-black)   54px,
    var(--c-steelpan)      54px,var(--c-steelpan)      62px,
    var(--c-kente-black)   62px,var(--c-kente-black)   70px,
    var(--c-trini-red)     70px,var(--c-trini-red)     80px,
    var(--c-gold)          80px,var(--c-gold)          90px
  );
  animation: stripe-slide 4s linear infinite;
}
@keyframes stripe-slide {
  from { background-position: 0 0; }
  to   { background-position: 90px 0; }
}

/* ── Hamburger ── */
.site-nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-2);
  border-radius: var(--r-md);
  flex-shrink: 0;
}
.site-nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--c-cream-2);
  border-radius: var(--r-full);
  transition: transform var(--t-base), opacity var(--t-base);
}
.site-nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.site-nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.site-nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ━━━━━━━━━━━━━━ HERO ━━━━━━━━━━━━━━ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-dark-1);
  padding-top: var(--nav-h);
}
.hero__bg {
  position: absolute;
  inset: 0;
  /* Caribbean night sky — deep indigo, not brownish */
  background: radial-gradient(ellipse 80% 70% at 60% 40%, #0E0A28 0%, #060318 60%, #020210 100%);
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    /* Carnival glow — T&T flag red, vivid */
    radial-gradient(ellipse 55% 50% at 75% 45%, rgba(204,17,34,.30) 0%, transparent 65%),
    /* Caribbean gold warmth */
    radial-gradient(ellipse 40% 35% at 20% 70%, rgba(200,152,48,.18) 0%, transparent 55%),
    /* Steelpan blue — national instrument of T&T */
    radial-gradient(ellipse 38% 32% at 8% 88%, rgba(26,56,98,.45) 0%, transparent 58%),
    /* Carnival orange — mas costume energy */
    radial-gradient(ellipse 28% 22% at 92% 14%, rgba(224,96,32,.20) 0%, transparent 52%),
    /* Diagonal woven pattern */
    repeating-linear-gradient(45deg,  rgba(200,152,48,.04) 0, rgba(200,152,48,.04) 1px, transparent 1px, transparent 38px),
    repeating-linear-gradient(-45deg, rgba(204,17,34,.03)  0, rgba(204,17,34,.03)  1px, transparent 1px, transparent 38px);
}
.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--container-px);
  padding-block: var(--sp-10) var(--sp-9);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-9);
  align-items: center;
}
.hero__text { color: var(--c-cream-1); }
.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: var(--fs-label);
  font-weight: var(--fw-bold);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: var(--sp-5);
  padding: var(--sp-2) var(--sp-4);
  border: 1px solid rgba(212,168,83,.35);
  border-radius: var(--r-full);
  background: rgba(212,168,83,.08);
}
.hero__headline {
  font-family: var(--font-heading);
  font-size: var(--fs-hero);
  font-weight: var(--fw-black);
  line-height: var(--lh-tight);
  color: var(--c-cream-1);
  margin-bottom: var(--sp-5);
}
.hero__headline .highlight {
  color: var(--color-secondary);
  font-style: italic;
}
.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: var(--lh-normal);
  color: var(--c-cream-3);
  margin-bottom: var(--sp-7);
  max-width: 48ch;
}
.hero__social-proof {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-7);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero__avatars {
  display: flex;
}
.hero__avatars .avatar {
  width: 40px; height: 40px;
  border-radius: var(--r-full);
  border: 2px solid var(--c-dark-2);
  background: var(--c-terra-mid);
  margin-left: -10px;
  overflow: hidden;
}
.hero__avatars .avatar:first-child { margin-left: 0; }
.hero__rating-text { font-size: var(--fs-sm); color: var(--c-cream-3); }
.hero__rating-text strong { color: var(--c-cream-1); }

.hero__image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero__arch {
  position: relative;
  width: clamp(260px, 35vw, 440px);
  aspect-ratio: 3/4;
  border-radius: 50% 50% 0 0 / 40% 40% 0 0;
  overflow: hidden;
  border: 3px solid var(--color-secondary);
  box-shadow: var(--sh-gold), 0 0 80px rgba(212,168,83,.15);
}
.hero__arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero__arch::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(26,12,6,.6) 100%);
  z-index: 1;
}
.hero__arch-label {
  position: absolute;
  bottom: var(--sp-4);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: var(--c-cream-1);
}
.hero__arch-label .name {
  font-family: var(--font-accent);
  font-size: 1.6rem;
  display: block;
}
.hero__arch-label .role {
  font-family: var(--font-sub);
  font-size: var(--fs-xs);
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--color-secondary);
}
.hero__gold-ring {
  position: absolute;
  top: -20px; right: -20px;
  width: 100px; height: 100px;
  border: 2px solid rgba(212,168,83,.35);
  border-radius: var(--r-full);
}
.hero__gold-dot {
  position: absolute;
  bottom: 30px; left: -15px;
  width: 30px; height: 30px;
  background: var(--color-secondary);
  border-radius: var(--r-full);
  box-shadow: var(--sh-gold);
}

/* ━━━━━━━━━━━━━━ PAGE HERO (inner pages) ━━━━━━━━━━━━━━ */
.page-hero {
  position: relative;
  background: linear-gradient(160deg, #0E0A28 0%, #08041A 50%, #0F1230 100%);
  padding: calc(var(--nav-h) + var(--sp-9)) 0 var(--sp-9);
  overflow: hidden;
  color: var(--c-cream-1);
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(204,17,34,.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 90%, rgba(26,56,98,.3) 0%, transparent 55%);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg,rgba(212,168,83,.035) 0,rgba(212,168,83,.035) 1px,transparent 1px,transparent 40px),
    repeating-linear-gradient(-45deg,rgba(204,17,34,.02) 0,rgba(204,17,34,.02) 1px,transparent 1px,transparent 40px);
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero h1 { font-size: var(--fs-h1); margin-bottom: var(--sp-4); }
.page-hero h1 .accent { color: var(--color-secondary); font-style: italic; }
.page-hero p { font-size: 1.1rem; color: var(--c-cream-3); max-width: 60ch; margin-inline: auto; }

/* ━━━━━━━━━━━━━━ ABOUT STRIP (homepage) ━━━━━━━━━━━━━━ */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-9);
  align-items: center;
}
.about-strip__image {
  position: relative;
}
.about-strip__circle {
  width: clamp(280px, 38vw, 480px);
  aspect-ratio: 1;
  border-radius: var(--r-full);
  overflow: hidden;
  border: 4px solid var(--color-secondary);
  box-shadow: var(--sh-gold);
  margin-inline: auto;
}
.about-strip__circle img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-strip__badge {
  position: absolute;
  bottom: var(--sp-5);
  right: var(--sp-5);
  background: var(--color-primary);
  color: var(--c-cream-1);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-terra);
  text-align: center;
}
.about-strip__badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: var(--fw-black);
  line-height: 1;
}
.about-strip__badge span {
  font-family: var(--font-sub);
  font-size: var(--fs-xs);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.about-strip__text h2 { margin-bottom: var(--sp-5); }
.about-strip__text .eyebrow {
  font-family: var(--font-sub);
  font-size: var(--fs-label);
  font-weight: var(--fw-bold);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--color-secondary);
  display: block;
  margin-bottom: var(--sp-3);
}
.about-strip__tags { margin: var(--sp-5) 0; }

/* ━━━━━━━━━━━━━━ STATS BAND ━━━━━━━━━━━━━━ */
.stats-band {
  /* Steelpan blue — T&T national instrument */
  background: linear-gradient(135deg, #0F2545 0%, var(--c-steelpan) 50%, #103060 100%);
  padding: var(--sp-9) 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(200,152,48,.08) 0%, transparent 70%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.03) 0, rgba(255,255,255,.03) 1px, transparent 1px, transparent 30px);
}
.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  text-align: center;
  color: var(--c-cream-1);
  position: relative;
  z-index: 1;
}
.stats-band__item {
  padding: var(--sp-6);
  border-right: 1px solid rgba(255,255,255,.12);
}
.stats-band__item:last-child { border-right: none; }

/* ━━━━━━━━━━━━━━ TIMELINE ━━━━━━━━━━━━━━ */
.timeline { position: relative; padding: var(--sp-5) 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-secondary), transparent);
  transform: translateX(-50%);
}
.timeline__item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
  align-items: start;
}
.timeline__item:nth-child(even) .timeline__card { grid-column: 3; grid-row: 1; }
.timeline__item:nth-child(even) .timeline__dot  { grid-column: 2; }
.timeline__item:nth-child(even) .timeline__year { grid-column: 1; grid-row: 1; text-align: right; }
.timeline__item:nth-child(odd)  .timeline__card { grid-column: 1; text-align: right; }
.timeline__item:nth-child(odd)  .timeline__dot  { grid-column: 2; }
.timeline__item:nth-child(odd)  .timeline__year { grid-column: 3; }
.timeline__dot {
  display: flex;
  justify-content: center;
  padding-top: var(--sp-3);
}
.timeline__dot::before {
  content: '';
  width: 16px; height: 16px;
  background: var(--color-secondary);
  border-radius: var(--r-full);
  border: 3px solid var(--c-dark-2);
  box-shadow: var(--sh-gold);
  flex-shrink: 0;
}
.timeline__year {
  font-family: var(--font-sub);
  font-size: var(--fs-label);
  font-weight: var(--fw-bold);
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--color-secondary);
  padding-top: var(--sp-3);
}
.timeline__card {
  background: var(--c-dark-3);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  border: 1px solid rgba(212,168,83,.15);
  transition: border-color var(--t-base);
}
.timeline__card:hover { border-color: rgba(212,168,83,.4); }
.timeline__card h4 {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  color: var(--c-cream-1);
  margin-bottom: var(--sp-2);
}
.timeline__card p {
  font-size: var(--fs-sm);
  color: var(--c-cream-3);
  opacity: .85;
  margin: 0;
}

/* ━━━━━━━━━━━━━━ EVENTS ━━━━━━━━━━━━━━ */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--sp-6);
}
.event-card {
  background: var(--c-dark-3);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  border: 1px solid rgba(212,168,83,.12);
  color: var(--c-cream-1);
  transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
}
.event-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,168,83,.4);
  box-shadow: var(--sh-gold);
}
.event-card__year {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: var(--fw-black);
  color: var(--color-secondary);
  line-height: 1;
  margin-bottom: var(--sp-3);
}
.event-card__title { font-size: var(--fs-h4); margin-bottom: var(--sp-2); }
.event-card__venue {
  font-family: var(--font-sub);
  font-size: var(--fs-xs);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-terra-light);
  margin-bottom: var(--sp-3);
}
.event-card__desc { font-size: var(--fs-sm); color: var(--c-cream-3); opacity: .8; margin: 0; }

.crackers-box {
  background: linear-gradient(135deg, var(--c-dark-3), var(--c-dark-4));
  border-radius: var(--r-xl);
  padding: var(--sp-9) var(--sp-8);
  border: 1px solid rgba(212,168,83,.2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
  position: relative;
  overflow: hidden;
  color: var(--c-cream-1);
}
.crackers-box::before {
  content: '"C&C"';
  position: absolute;
  right: -20px; top: -20px;
  font-family: var(--font-accent);
  font-size: 12rem;
  color: var(--color-secondary);
  opacity: .05;
  line-height: 1;
  user-select: none;
}
.crackers-box__title {
  font-family: var(--font-accent);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--color-secondary);
  margin-bottom: var(--sp-4);
}
.crackers-box__years {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-5);
}

/* ━━━━━━━━━━━━━━ GALLERY ━━━━━━━━━━━━━━ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--sp-4);
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--c-dark-3);
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,12,6,.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t-base);
  display: flex;
  align-items: flex-end;
  padding: var(--sp-5);
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  aspect-ratio: 4/3;
  background: var(--c-dark-4);
  border-radius: var(--r-lg);
  border: 2px dashed rgba(212,168,83,.25);
  color: var(--c-brown-2);
  font-size: var(--fs-sm);
  font-family: var(--font-sub);
  text-align: center;
  padding: var(--sp-6);
}

/* ━━━━━━━━━━━━━━ PRESS / TESTIMONIALS ━━━━━━━━━━━━━━ */
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: var(--sp-6);
}
.press-card {
  background: var(--c-dark-3);
  border-radius: var(--r-lg);
  padding: var(--sp-7) var(--sp-6);
  border-top: 3px solid var(--color-secondary);
  position: relative;
  color: var(--c-cream-1);
}
.press-card__mark {
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: .6;
  color: var(--color-secondary);
  opacity: .3;
  user-select: none;
  margin-bottom: var(--sp-4);
  display: block;
}
.press-card__quote {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-style: italic;
  line-height: var(--lh-normal);
  color: var(--c-cream-2);
  margin-bottom: var(--sp-5);
}
.press-card__author {
  font-family: var(--font-sub);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--color-secondary);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.press-card__pub {
  font-family: var(--font-sub);
  font-size: var(--fs-xs);
  color: var(--c-brown-3);
  margin-top: var(--sp-1);
}

/* ━━━━━━━━━━━━━━ FAQ ━━━━━━━━━━━━━━ */
.faq-list { max-width: 800px; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,.08); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: var(--sp-6) var(--sp-5);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: var(--fw-bold);
  color: var(--c-cream-1);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  transition: color var(--t-fast);
}
.faq-question:hover { color: var(--color-secondary); }
.faq-question[aria-expanded="true"] { color: var(--color-secondary); }
.faq-question__icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border: 2px solid currentColor;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  transition: transform var(--t-base);
}
.faq-question[aria-expanded="true"] .faq-question__icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow), padding var(--t-base);
}
.faq-answer.open { max-height: 500px; }
.faq-answer__inner {
  padding: 0 var(--sp-5) var(--sp-6);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--c-cream-3);
}

/* ━━━━━━━━━━━━━━ CONTACT ━━━━━━━━━━━━━━ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-9);
  align-items: start;
}
.contact-info { color: var(--c-cream-1); }
.contact-info h3 { font-size: var(--fs-h3); margin-bottom: var(--sp-5); }
.contact-info-item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  margin-bottom: var(--sp-5);
}
.contact-info-item__icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: rgba(212,168,83,.12);
  border: 1px solid rgba(212,168,83,.25);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.contact-info-item__label {
  font-family: var(--font-sub);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--color-secondary);
  margin-bottom: var(--sp-1);
}
.contact-info-item__value { font-size: var(--fs-sm); color: var(--c-cream-3); }
.contact-social { margin-top: var(--sp-7); }
.contact-social p { font-size: var(--fs-sm); color: var(--c-brown-3); margin-bottom: var(--sp-4); }
.social-links { display: flex; gap: var(--sp-3); flex-wrap: wrap; }
.social-link {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-dark-3);
  border: 1px solid rgba(212,168,83,.2);
  border-radius: var(--r-md);
  color: var(--c-cream-3);
  font-size: 1.1rem;
  text-decoration: none;
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.social-link:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--c-cream-1);
  transform: translateY(-2px);
  text-decoration: none;
}
.contact-form-box {
  background: var(--c-dark-3);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  border: 1px solid rgba(212,168,83,.1);
}

/* ━━━━━━━━━━━━━━ FOOTER ━━━━━━━━━━━━━━ */
.site-footer {
  background: var(--c-dark-1);
  color: var(--c-cream-3);
}
.site-footer__main {
  padding: var(--sp-10) 0 var(--sp-8);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-8);
}
.footer-brand__logo {
  font-family: var(--font-accent);
  font-size: 2.2rem;
  color: var(--c-cream-1);
  display: block;
  margin-bottom: var(--sp-4);
}
.footer-brand__logo span { color: var(--color-secondary); }
.footer-brand p { font-size: var(--fs-sm); line-height: var(--lh-loose); opacity: .7; margin-bottom: var(--sp-5); }
.footer-col h5 {
  font-family: var(--font-sub);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: var(--sp-5);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: var(--sp-3); }
.footer-col ul a {
  font-size: var(--fs-sm);
  color: var(--c-brown-3);
  text-decoration: none;
  transition: color var(--t-fast);
}
.footer-col ul a:hover { color: var(--color-secondary); text-decoration: none; }
.site-footer__bottom {
  padding: var(--sp-5) 0;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.site-footer__bottom p { font-size: var(--fs-xs); opacity: .5; margin: 0; }
.footer-legal { display: flex; gap: var(--sp-5); }
.footer-legal a { font-size: var(--fs-xs); color: var(--c-brown-2); opacity: .6; text-decoration: none; }
.footer-legal a:hover { opacity: 1; color: var(--color-secondary); text-decoration: none; }
