/* ============================================================
   SRF TRAVELS — "Cinematic Editorial" design system
   One shared stylesheet for all pages.
   Brand palette (from the logo): white / navy #163143 /
   blue #529BD4 / gold #F4B248 (+ derived tints for lines & fills)
   Token names kept from the original build — only values changed.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --paper:      #FFFFFF;   /* white — main background */
  --paper-deep: #EEF4F9;   /* light blue tint — alt section backgrounds */
  --ink:        #163143;   /* brand navy — text & dark sections */
  --ink-soft:   #4C6B80;   /* softened navy — secondary text */
  --tea:        #2C6E9E;   /* deep sky blue — readable brand blue for text, links & accents */
  --spice:      #2C6E9E;   /* deep sky blue — eyebrows & small details */
  --saffron:    #F4B248;   /* brand gold — highlights, hover states */
  --sand:       #C9D8E4;   /* pale blue-grey — borders, numerals, quiet fills */
  --wa-green:   #23573C;   /* deep tea green — WhatsApp buttons only */
  --line:       rgba(22, 49, 67, .14);
  --line-paper: rgba(255, 255, 255, .22);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  --radius-sm: 10px;   /* buttons, chips */
  --radius-md: 18px;   /* cards, photos, tiles, map */

  --ease: cubic-bezier(.22, .61, .36, 1);
  --section-pad: clamp(72px, 11vw, 150px);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px; /* keep anchor targets clear of the fixed header */
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 .5em;
}

p { margin: 0 0 1.2em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--saffron); color: var(--ink); }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--paper);
  padding: 10px 18px; z-index: 200; font-size: .9rem;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--saffron);
  outline-offset: 3px;
}

/* ---------- Type scale / editorial voice ---------- */
.display {
  font-size: clamp(3.5rem, 10vw, 8.5rem);
  line-height: .98;
  letter-spacing: -0.02em;
  font-weight: 460;
}

.display-2 {
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  line-height: 1.02;
  font-weight: 480;
}

.display-3 {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  line-height: 1.08;
}

.eyebrow {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--spice);
  margin: 0 0 1.1em;
}
.eyebrow--tea     { color: var(--tea); }
.eyebrow--saffron { color: var(--saffron); }

.lede {
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 62ch;
}

.serif-em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 450;
  color: var(--saffron);
}

.pull-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 420;
  font-size: clamp(1.6rem, 3.4vw, 2.7rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  max-width: 26ch;
  margin: 0 auto;
  text-align: center;
}
.pull-quote strong { color: var(--tea); font-weight: 500; font-style: italic; }

.narrow { max-width: 62ch; }

/* ---------- Layout utilities ---------- */
.container {
  width: min(100% - 2 * clamp(20px, 4.5vw, 56px), 1240px);
  margin-inline: auto;
}

.section { padding-block: var(--section-pad); }

.section-head { margin-bottom: clamp(40px, 6vw, 76px); }
.section-head--center { text-align: center; }
.section-head--center .lede { margin-inline: auto; }

/* Dark "cinema" sections */
.cinema {
  background: var(--ink);
  color: var(--paper);
}
.cinema .lede         { color: rgba(255, 255, 255,.72); }
.cinema .eyebrow      { color: var(--saffron); }
.cinema ::selection   { background: var(--saffron); color: var(--ink); }

.alt { background: var(--paper-deep); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-family: var(--sans);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-decoration: none;
  padding: .85em 1.7em;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}

.btn-primary {
  background: var(--wa-green); /* green = opens WhatsApp, every time */
  color: #fff;
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--saffron);
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--tea);
  color: var(--tea);
}

/* ghost on dark sections */
.cinema .btn-ghost {
  color: var(--paper);
  border-color: rgba(255, 255, 255,.6);
}
.cinema .btn-ghost:hover,
.cinema .btn-ghost:focus-visible {
  border-color: var(--saffron);
  color: var(--saffron);
}

.btn .wa-mark { width: 1.05em; height: 1.05em; flex: none; }

.text-link {
  font-weight: 600;
  color: var(--tea);
  text-decoration: none;
  border-bottom: 1px solid var(--tea);
  padding-bottom: 2px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.text-link:hover { color: var(--spice); border-color: var(--spice); }

/* ============================================================
   HEADER / NAV — transparent over dark hero → solid paper
   ============================================================ */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  transition: background-color .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
  color: var(--paper);
}

.site-header.is-scrolled {
  background: var(--paper);
  border-bottom-color: var(--line);
  color: var(--ink);
}

.nav-inner {
  width: min(100% - 2 * clamp(20px, 4.5vw, 56px), 1240px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  height: 68px;
}

.brand {
  display: block;
  text-decoration: none;
  margin-right: auto;
}

.brand-logo {
  height: 42px;
  width: auto;
  display: block;
}
.footer-brand .brand-logo { height: 58px; margin-bottom: .4em; }

.nav-links {
  display: flex;
  gap: clamp(14px, 2.2vw, 30px);
}

.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .02em;
  text-decoration: none;
  opacity: .85;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: opacity .2s, border-color .2s;
}
.nav-links a:hover { opacity: 1; }
.nav-links a[aria-current="page"] {
  opacity: 1;
  border-bottom-color: var(--saffron);
}
/* Tours = primary bookable section: quiet marker */
.nav-links a.nav-tours { font-weight: 650; }
.nav-links a.nav-tours::after {
  content: "";
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--saffron);
  margin-left: 6px;
  vertical-align: middle;
}

.nav-cta { padding: .62em 1.3em; font-size: .85rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
  color: inherit;
}
.nav-toggle .bars,
.nav-toggle .bars::before,
.nav-toggle .bars::after {
  content: "";
  display: block;
  width: 24px; height: 2px;
  background: currentColor;
  transition: transform .3s var(--ease), opacity .3s;
}
.nav-toggle .bars { position: relative; }
.nav-toggle .bars::before { position: absolute; top: -7px; }
.nav-toggle .bars::after  { position: absolute; top: 7px; }

body.menu-open .nav-toggle .bars { background: transparent; }
body.menu-open .nav-toggle .bars::before { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-toggle .bars::after  { transform: translateY(-7px) rotate(-45deg); }

/* Full-screen mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px clamp(24px, 8vw, 64px) 48px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility 0s .35s;
}
body.menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
  transition: opacity .35s var(--ease);
}

.mobile-menu a.menu-link {
  font-family: var(--serif);
  font-size: clamp(2rem, 8vw, 3.2rem);
  font-weight: 480;
  line-height: 1.3;
  text-decoration: none;
  display: block;
  padding: .12em 0;
  transition: color .2s;
}
.mobile-menu a.menu-link:hover,
.mobile-menu a.menu-link[aria-current="page"] { color: var(--saffron); }

.mobile-menu .menu-cta { margin-top: 2.2rem; align-self: flex-start; }

body.menu-open { overflow: hidden; }
body.menu-open .site-header { background: transparent; border-bottom-color: transparent; color: var(--paper); }

@media (max-width: 880px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  .brand { margin-right: 0; }
  .nav-inner { justify-content: space-between; }
}

/* ============================================================
   HERO — dark cinema band, kinetic type, slow drift
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-block: 140px clamp(56px, 9vw, 110px);
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.hero--sub {
  min-height: 62svh;
  padding-top: 130px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #163143; /* duotone fallback while photo loads / missing */
  animation: drift 12s var(--ease) forwards;
}

/* darkening scrim so paper type always reads */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(22,49,67,.88) 0%, rgba(22,49,67,.35) 45%, rgba(22,49,67,.45) 100%);
}

@keyframes drift {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

.hero-content { position: relative; z-index: 2; }

/* Kinetic line-by-line reveal */
.kinetic .line {
  display: block;
  overflow: hidden;
  padding-bottom: .06em;   /* keep descenders inside the mask */
  margin-bottom: -.06em;
}
.kinetic .line > span {
  display: inline-block;
  transform: translateY(112%);
  animation: line-up .95s var(--ease) forwards;
}
.kinetic .line:nth-child(2) > span { animation-delay: .15s; }
.kinetic .line:nth-child(3) > span { animation-delay: .3s; }

@keyframes line-up {
  to { transform: translateY(0); }
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255,.78);
  margin-top: 1.4em;
  max-width: 46ch;
  opacity: 0;
  animation: fade-up .8s var(--ease) .55s forwards;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 2em;
  opacity: 0;
  animation: fade-up .8s var(--ease) .7s forwards;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero .eyebrow {
  opacity: 0;
  animation: fade-up .7s var(--ease) .1s forwards;
}

/* ============================================================
   PHOTOS — framed images, curtain reveal, duotone fallback
   ============================================================ */
.photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--sand); /* flat duotone placeholder if image missing */
}

.photo-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .8s var(--ease);
}

.photo::before {              /* ratio box */
  content: "";
  display: block;
  padding-top: var(--ratio, 72%);
}

.photo--tall     { --ratio: 128%; }
.photo--portrait { --ratio: 118%; }
.photo--wide     { --ratio: 56%; }

/* curtain reveal (editorial film gesture) */
.curtain {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1s var(--ease);
}
.curtain.is-visible { clip-path: inset(0 0 0 0); }

/* generic scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
/* stagger children: parent gets .stagger, JS adds .is-visible to parent */
.stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.stagger.is-visible > * { opacity: 1; transform: none; }
.stagger.is-visible > *:nth-child(2) { transition-delay: .08s; }
.stagger.is-visible > *:nth-child(3) { transition-delay: .16s; }
.stagger.is-visible > *:nth-child(4) { transition-delay: .24s; }
.stagger.is-visible > *:nth-child(5) { transition-delay: .32s; }
.stagger.is-visible > *:nth-child(6) { transition-delay: .4s; }

/* ============================================================
   MARQUEE — slow outlined serif caps band
   ============================================================ */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding-block: clamp(18px, 3vw, 30px);
  background: var(--paper);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 46s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee-track span {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 500;
  letter-spacing: .06em;
  white-space: nowrap;
  padding-right: .6em;
  color: transparent;
  -webkit-text-stroke: 1px var(--ink-soft);
}
.marquee-track span i {
  font-style: normal;
  -webkit-text-stroke: 0;
  color: var(--saffron);
  font-size: .5em;
  vertical-align: .35em;
  padding: 0 .5em;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- Cinema break: photo band with pull quote ---------- */
.quote-band {
  position: relative;
  overflow: hidden;
  padding-block: clamp(110px, 16vw, 220px);
}
.quote-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #163143;
}
.quote-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(22, 49, 67,.72);
}
.quote-band .container { position: relative; z-index: 2; }
.quote-band .pull-quote strong { color: var(--saffron); }

/* ============================================================
   OVERSIZED NUMERALS
   ============================================================ */
.numbered {
  position: relative;
  padding-top: clamp(28px, 4vw, 44px);
}
.numbered .num {
  position: absolute;
  top: -.18em;
  left: -.05em;
  z-index: 0;
  font-family: var(--serif);
  font-size: clamp(5.2rem, 9vw, 8.5rem);
  font-weight: 500;
  line-height: 1;
  color: var(--sand);
  user-select: none;
  pointer-events: none;
}
.numbered > :not(.num) { position: relative; z-index: 1; }

/* ---------- Services editorial list ---------- */
.services-list { border-top: 1px solid var(--line); }

.service-row {
  display: grid;
  grid-template-columns: clamp(70px, 9vw, 120px) 1fr auto;
  gap: clamp(14px, 3vw, 40px);
  align-items: baseline;
  padding: clamp(18px, 3vw, 28px) 0;
  border-bottom: 1px solid var(--line);
}
.service-row .s-num {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  font-weight: 460;
  color: var(--sand);
  line-height: 1;
}
.service-row h3 {
  font-size: clamp(1.25rem, 2.3vw, 1.7rem);
  margin: 0;
}
.service-row .s-note {
  font-size: .9rem;
  color: var(--ink-soft);
  text-align: right;
  max-width: 30ch;
}
@media (max-width: 700px) {
  .service-row { grid-template-columns: 56px 1fr; }
  .service-row .s-note { grid-column: 2; text-align: left; }
}

/* ============================================================
   CARDS — flat paper, hairline border, photo scale on hover
   ============================================================ */
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .3s var(--ease);
}
/* photos sit in a rounded inset frame inside the card */
.card .photo {
  border-radius: 12px;
  margin: 10px 10px 0;
}
.card--hero .photo { margin: 10px; }
@media (max-width: 980px) {
  .card--hero .photo { margin: 10px 10px 0; }
}
.card:hover { border-color: rgba(22, 49, 67,.4); }
.card:hover .photo-img { transform: scale(1.04); }

.card-body { padding: clamp(20px, 2.6vw, 30px); flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 1.45rem; margin-bottom: .35em; }
.card-body p  { color: var(--ink-soft); font-size: .98rem; }
.card-body .card-actions { margin-top: auto; padding-top: 1.2em; display: flex; flex-wrap: wrap; gap: 10px; }

.card-link {
  text-decoration: none;
  display: block;
  color: inherit;
}
.card-link:hover h3 { color: var(--tea); }

/* home featured-tours arrangement: one wide feature + grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(18px, 2.4vw, 30px);
}
.feature-grid .card--hero      { grid-column: span 12; }
.feature-grid .card--third     { grid-column: span 4; }

.card--hero { flex-direction: row; }
.card--hero .photo { flex: 1.35; --ratio: 0; min-height: 380px; }
.card--hero .photo::before { display: none; }
.card--hero .card-body { flex: 1; justify-content: center; }
.card--hero .card-body h3 { font-size: clamp(1.8rem, 3vw, 2.6rem); }

@media (max-width: 980px) {
  .feature-grid .card--third { grid-column: span 6; }
  .card--hero { flex-direction: column; }
  .card--hero .photo { min-height: 0; }
  .card--hero .photo::before { display: block; padding-top: 62%; }
}
@media (max-width: 640px) {
  .feature-grid .card--third { grid-column: span 12; }
}

/* simple responsive card grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 30px);
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 2.4vw, 30px);
}
@media (max-width: 980px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

/* chips */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips li {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: .35em .9em;
  border: 1px solid var(--sand);
  border-radius: var(--radius-sm);
  color: var(--ink-soft);
  background: var(--paper);
}

/* checked lists */
.tick-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: .5em;
}
.tick-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .52em;
  width: 12px; height: 7px;
  border-left: 2px solid var(--tea);
  border-bottom: 2px solid var(--tea);
  transform: rotate(-45deg);
}
.tick-list li .opt {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--spice);
  margin-right: .5em;
}

/* ============================================================
   TOUR FEATURE ROWS (tours.html) — alternating editorial
   ============================================================ */
.tour-feature {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(20px, 3.6vw, 56px);
  align-items: center;
  padding-block: clamp(48px, 7vw, 100px);
  border-top: 1px solid var(--line);
}
.tour-feature:first-of-type { border-top: 0; }

.tour-feature .tour-media { grid-column: 1 / span 6; }
.tour-feature .tour-copy  { grid-column: 7 / span 6; }
.tour-feature.flip .tour-media { grid-column: 7 / span 6; order: 2; }
.tour-feature.flip .tour-copy  { grid-column: 1 / span 6; order: 1; }

.tour-copy h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
.tour-copy .tour-kicker {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1.1rem;
  margin-top: -1em;
  margin-bottom: 1.4em;
  display: block;
}
.tour-copy h4 {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--tea);
  margin: 1.8em 0 .7em;
}
.tour-copy .tour-cta { margin-top: 2em; display: flex; flex-wrap: wrap; gap: 12px; }

@media (max-width: 900px) {
  .tour-feature .tour-media,
  .tour-feature .tour-copy,
  .tour-feature.flip .tour-media,
  .tour-feature.flip .tour-copy { grid-column: 1 / -1; order: initial; }
}

/* ============================================================
   SPLIT SECTIONS (image + narrow text column)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(20px, 3.6vw, 56px);
  align-items: center;
}
.split .split-media { grid-column: 1 / span 6; }
.split .split-copy  { grid-column: 8 / span 5; }
.split.flip .split-media { grid-column: 7 / span 6; order: 2; }
.split.flip .split-copy  { grid-column: 1 / span 5; order: 1; }
@media (max-width: 900px) {
  .split .split-media, .split .split-copy,
  .split.flip .split-media, .split.flip .split-copy {
    grid-column: 1 / -1; order: initial;
  }
}

/* ---------- stats strip ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 3vw, 36px);
  text-align: center;
}
.stats .stat b {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  font-weight: 500;
  color: var(--tea);
  line-height: 1;
}
.cinema .stats .stat b { color: var(--saffron); }
.stats .stat span {
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.cinema .stats .stat span { color: rgba(255,255,255,.65); }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   TEAM — asymmetric editorial portrait grid
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(18px, 2.6vw, 32px);
}
.team-card { grid-column: span 4; }
.team-card:nth-child(1),
.team-card:nth-child(2) { grid-column: span 6; }
.team-card:nth-child(odd) { transform: translateY(clamp(0px, 2vw, 28px)); }

.team-card .photo { --ratio: 116%; }
.team-card h3 { font-size: 1.35rem; margin: .9em 0 .1em; }
.team-card .role {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--spice);
  display: block;
  margin-bottom: .5em;
}
.team-card p { color: var(--ink-soft); font-size: .95rem; }

@media (max-width: 900px) {
  .team-card, .team-card:nth-child(1), .team-card:nth-child(2) { grid-column: span 6; }
}
@media (max-width: 600px) {
  .team-card, .team-card:nth-child(1), .team-card:nth-child(2) { grid-column: 1 / -1; transform: none !important; }
}

/* ============================================================
   FAQ accordion
   ============================================================ */
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 500;
  color: var(--ink);
  padding: clamp(18px, 2.6vw, 26px) 0;
}
.faq-q .faq-icon {
  flex: none;
  width: 30px; height: 30px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.faq-q .faq-icon::before,
.faq-q .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 12px; height: 2px;
  background: var(--tea);
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease);
}
.faq-q .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.open .faq-q .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-item.open .faq-q { color: var(--tea); }

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .45s var(--ease);
}
.faq-a-inner {
  padding: 0 44px 26px 0;
  color: var(--ink-soft);
  max-width: 68ch;
}

/* ============================================================
   CONTACT blocks
   ============================================================ */
.contact-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 2.6vw, 32px);
}
.contact-tile {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: clamp(24px, 3.4vw, 44px);
  background: var(--paper);
}
.contact-tile h3 { font-size: 1.5rem; }
.contact-tile .big-link {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  font-weight: 500;
  color: var(--tea);
  text-decoration: none;
  display: inline-block;
  margin-bottom: .3em;
  border-bottom: 1px solid transparent;
}
.contact-tile .big-link:hover { border-bottom-color: var(--tea); }
.contact-tile p { color: var(--ink-soft); font-size: .95rem; }
@media (max-width: 760px) { .contact-tiles { grid-template-columns: 1fr; } }

.map-frame {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper-deep);
  min-height: 320px;
}

/* ============================================================
   CTA BAND (pre-footer) — dark cinema
   ============================================================ */
.cta-band { text-align: center; }
.cta-band .display-2 { max-width: 18ch; margin-inline: auto; }
.cta-band .hero-ctas { justify-content: center; animation: none; opacity: 1; margin-top: 2.4em; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255,.78);
  padding: clamp(56px, 8vw, 96px) 0 0;
  font-size: .95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: clamp(28px, 5vw, 72px);
  padding-bottom: clamp(40px, 6vw, 64px);
}
.footer-brand .brand { font-size: 1.6rem; color: var(--paper); }
.footer-brand p { margin-top: 1em; max-width: 34ch; }

.site-footer h4 {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 1.2em;
}
.site-footer li { margin-bottom: .55em; }
.site-footer a { color: inherit; text-decoration: none; transition: color .2s; }
.site-footer a:hover { color: var(--saffron); }

/* social icon row (footer + contact tile) */
.socials {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 6px;
}
.socials li { margin: 0; }
.socials a {
  display: inline-flex;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: inherit;
  transition: background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.socials a:hover,
.socials a:focus-visible {
  background: var(--saffron);
  border-color: var(--saffron);
  color: var(--ink);
}
.socials svg { width: 19px; height: 19px; display: block; }
.site-footer .socials a { border-color: var(--line-paper); }

.footer-trust {
  border-top: 1px solid var(--line-paper);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  justify-content: space-between;
  font-size: .82rem;
  color: rgba(255, 255, 255,.55);
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.wa-float {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 80;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--wa-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(22, 49, 67,.25);
  transition: background-color .25s var(--ease), transform .25s var(--ease);
}
.wa-float:hover { background: var(--saffron); color: var(--ink); transform: translateY(-3px); }
.wa-float svg { width: 28px; height: 28px; }

.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--wa-green);
  animation: wa-pulse 2.6s var(--ease) infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: .7; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================================
   REDUCED MOTION — reveals instant, marquee stops, drift off
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-bg { animation: none; }
  .kinetic .line > span { animation: none; transform: none; }
  .hero-sub, .hero-ctas, .hero .eyebrow { animation: none; opacity: 1; }
  .reveal, .stagger > * { opacity: 1; transform: none; transition: none; }
  .curtain { clip-path: none; transition: none; }
  .marquee-track { animation: none; }
  .wa-float::before { animation: none; opacity: 0; }
  .photo-img, .card, .wa-float { transition: none; }
  .faq-a { transition: none; }
}
