/* =========================================================
   La Via degli Elfi — design tokens
   Concept: fiaba moderna incontra eleganza scandinava.
   ========================================================= */
:root {
  --pine:        #0E2B22;
  --pine-mid:    #16392E;
  --pine-line:   #23483A;
  --brick:       #9C3B2E;
  --brick-light: #C15039;
  --gold:        #C89B4C;
  --gold-bright: #E0B565;
  --snow:        #F6F3EC;
  --snow-dim:    #EDE7D8;
  --ink:         #1B2420;
  --ink-soft:    #4B564F;

  --font-display: "Fraunces", ui-serif, Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;

  --wrap: 1240px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--snow);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; margin: 0; }
p { margin: 0 0 1.1em; color: var(--ink-soft); }
/* Prose line-length is applied only to actual body-copy contexts below —
   not globally — because a blanket max-width on every <p> was shrinking
   short blocks (eyebrows, centered CTA wrappers) narrower than their
   container without re-centering them, leaving them visually flush-left
   even though text-align:center was set. */
p:last-child { margin-bottom: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 12px; top: -60px; z-index: 300;
  background: var(--pine); color: var(--snow); padding: 12px 18px;
  border-radius: 4px; transition: top .2s ease;
}
.skip-link:focus-visible { top: 12px; }

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

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(20px, 5vw, 56px); }

/* =========================================================
   Type utilities
   ========================================================= */
.wayfind {
  font-family: var(--font-body); font-weight: 700; font-size: .78rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--gold-bright);
  margin: 0 0 1.6em;
}
.eyebrow {
  font-family: var(--font-body); font-weight: 700; font-size: .78rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--brick);
  margin: 0 0 .9em;
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--pine); margin-bottom: .4em; }

/* =========================================================
   Snow — canvas, driven by GSAP ticker (single shared RAF loop)
   ========================================================= */
#snow {
  position: fixed; inset: 0; z-index: 60;
  width: 100%; height: 100%;
  pointer-events: none;
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  padding-block: 22px;
  transition: background-color .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(14, 43, 34, .88);
  backdrop-filter: blur(10px);
  padding-block: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,.25);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.brand {
  display: flex; align-items: center; gap: .55em;
  font-family: var(--font-display); font-weight: 500; font-size: 1.25rem;
  color: var(--snow); letter-spacing: .01em;
}
.brand-mark { height: 32px; width: auto; }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 44px; height: 44px; border-radius: 4px; background: transparent; border: none; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; width: 22px; background: var(--snow); transition: transform .25s ease, opacity .25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav ul { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.site-nav a:not(.btn) {
  position: relative; display: inline-flex; align-items: center; gap: .5em;
  padding: .6em .9em; font-weight: 600; font-size: .92rem; color: var(--snow-dim);
  transition: color .2s ease;
}
.site-nav a:not(.btn)::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  opacity: 0; transform: scale(.4); transition: opacity .2s ease, transform .2s ease;
  box-shadow: 0 0 8px 2px var(--gold-bright);
}
.site-nav a:not(.btn):hover { color: var(--snow); }
.site-nav a:not(.btn):hover::before { opacity: 1; transform: scale(1); }
.site-nav a[aria-disabled="true"] { opacity: .45; pointer-events: none; }

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed; inset: 0; z-index: -1;
    background: var(--pine);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease;
  }
  .site-nav.is-open { opacity: 1; visibility: visible; z-index: 150; }
  .site-nav ul { flex-direction: column; gap: 6px; text-align: center; }
  .site-nav a:not(.btn) { font-size: 1.3rem; padding: .5em 1em; }
  .site-nav .btn { margin-top: 20px; }
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--font-body); font-weight: 700; font-size: .92rem;
  padding: .95em 1.7em; border-radius: 999px; border: 1.5px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: var(--gold); color: var(--ink);
  animation: btn-breathe 4.5s ease-in-out infinite;
}
.btn-gold:hover { background: var(--gold-bright); box-shadow: 0 10px 28px rgba(200,155,76,.35); animation-play-state: paused; }
@keyframes btn-breathe {
  0%, 100% { box-shadow: 0 0 0 rgba(200,155,76,0); }
  50% { box-shadow: 0 0 22px 4px rgba(200,155,76,.4); }
}
.btn-spark {
  width: 6px; height: 6px; border-radius: 50%; background: var(--ink);
  box-shadow: 0 0 0 rgba(27,36,32,0); transition: box-shadow .25s ease;
}
.btn-gold:hover .btn-spark { box-shadow: 0 0 10px 3px rgba(27,36,32,.35); }

.btn-line { color: var(--snow); border-color: rgba(246,243,236,.45); }
.btn-line:hover { border-color: var(--snow); background: rgba(246,243,236,.08); }

.btn-line-dark { color: var(--pine); border-color: var(--pine-line); }
.btn-line-dark:hover { border-color: var(--brick); color: var(--brick); }

.btn-sm { padding: .6em 1.3em; font-size: .85rem; }

/* =========================================================
   Hero — split panel "shopfront" composition
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 42fr 58fr;
  background: var(--pine);
  overflow: hidden;
}
.hero-panel--text {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  /* Right padding stays tight so the text sits close to the seam with the
     photo; left padding grows to pull the whole block away from the screen
     edge and toward the image instead of hugging the far left. */
  padding: clamp(110px, 14vw, 160px) clamp(20px, 3vw, 36px) 64px clamp(56px, 9vw, 120px);
}
.hero-title { font-size: clamp(2.6rem, 5.4vw, 4.4rem); margin-bottom: .38em; }
.hero-title-line { display: block; color: var(--snow); }
.hero-title-line--accent { color: var(--gold); font-style: italic; }
.hero-sub { color: var(--snow-dim); font-size: 1.08rem; max-width: 34ch; margin-bottom: 1.8em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.countdown {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 1.8em; padding: 14px 18px;
  background: rgba(246,243,236,.06); border: 1px solid rgba(246,243,236,.16);
  border-radius: 10px; width: fit-content;
}
.countdown-item { display: flex; flex-direction: column; align-items: center; min-width: 2.6em; }
.countdown-num { font-family: var(--font-display); font-size: clamp(1.5rem, 2.6vw, 2rem); color: var(--gold); line-height: 1; font-variant-numeric: tabular-nums; }
.countdown-label { font-family: var(--font-body); font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--snow-dim); margin-top: .35em; }
.countdown-sep { font-family: var(--font-display); font-size: 1.4rem; color: rgba(246,243,236,.3); align-self: center; }

@media (max-width: 420px) {
  .countdown { gap: 6px; padding: 12px 10px; }
  .countdown-item { min-width: 2.1em; }
}

/* Ambient floating sparkles — decorative, transform/opacity only, loop forever */
.hero-sparkles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.spark {
  position: absolute; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 8px 2px rgba(200,155,76,.6);
  opacity: 0; animation: spark-float 7s ease-in-out infinite;
}
.spark-1 { left: 12%; top: 22%; animation-delay: 0s; }
.spark-2 { left: 78%; top: 16%; width: 4px; height: 4px; animation-delay: 1.8s; animation-duration: 8.5s; }
.spark-3 { left: 34%; top: 78%; animation-delay: 3.4s; animation-duration: 6.2s; }
.spark-4 { left: 62%; top: 62%; width: 3px; height: 3px; animation-delay: 5s; animation-duration: 9s; }
@keyframes spark-float {
  0%   { transform: translate3d(0, 8px, 0); opacity: 0; }
  15%  { opacity: .9; }
  50%  { transform: translate3d(-6px, -14px, 0); opacity: .55; }
  85%  { opacity: .9; }
  100% { transform: translate3d(0, 8px, 0); opacity: 0; }
}

.hero-panel--photo { position: relative; overflow: hidden; }
.hero-photo-wrap { position: absolute; inset: -8% 0; will-change: transform; }
.hero-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(14,43,34,.55) 0%, rgba(14,43,34,0) 22%),
              linear-gradient(0deg, rgba(14,43,34,.5) 0%, rgba(14,43,34,0) 34%);
}

.scroll-cue {
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%);
  width: 30px; height: 46px; border: 1.5px solid rgba(246,243,236,.5); border-radius: 999px;
  background: transparent; cursor: pointer; z-index: 3;
}
.scroll-cue span {
  position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; border-radius: 2px;
  background: var(--gold); transform: translateX(-50%);
  animation: scroll-cue-move 1.8s ease-in-out infinite;
}
@keyframes scroll-cue-move {
  0% { top: 8px; opacity: 1; }
  70% { top: 26px; opacity: 0; }
  100% { top: 26px; opacity: 0; }
}

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; grid-template-rows: auto 46vh; }
  .hero-panel--text { padding-top: 128px; padding-left: clamp(24px, 6vw, 48px); padding-right: clamp(24px, 6vw, 48px); }
  .hero-panel--photo { position: relative; }
  .hero-sub { max-width: 46ch; }
}

/* =========================================================
   String-lights divider — the signature motif
   ========================================================= */
.lights {
  position: relative; height: 74px; background: var(--pine);
  color: var(--pine-line);
  overflow: hidden;
}
.lights-wire { position: absolute; inset: 0; width: 100%; height: 100%; }
.lights-bulbs {
  position: absolute; inset: 0;
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-inline: 2%;
}
.lights-bulbs span {
  width: 9px; height: 9px; border-radius: 50%; margin-top: 12px;
  background: var(--gold);
  box-shadow: 0 0 10px 3px rgba(200,155,76,.55);
  animation: bulb-twinkle 3.4s ease-in-out infinite;
  animation-delay: calc(var(--i) * -0.31s);
}
@keyframes bulb-twinkle {
  0%, 100% { opacity: .45; transform: scale(.85); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* Simple star divider — a lighter-weight alternative to .lights, trivially
   centered via flexbox (no wire path / absolute-positioned bulbs to fuss
   with vertical alignment). */
.divider-star {
  height: 64px; background: var(--pine);
  display: flex; align-items: center; justify-content: center; gap: 20px;
}
.divider-star::before, .divider-star::after {
  content: ""; flex: 1 1 auto; height: 1px; max-width: 420px;
  background: linear-gradient(90deg, transparent, var(--pine-line) 50%, transparent);
}
.divider-star span { color: var(--gold); font-size: 1.35rem; line-height: 1; text-shadow: 0 0 12px rgba(200,155,76,.5); }

/* =========================================================
   Section layout
   ========================================================= */
.section { padding: clamp(64px, 10vw, 130px) 0; background: var(--snow); }
.faq-prompt { padding: clamp(40px, 6vw, 64px) 0; }
.faq-prompt .section-title { font-size: clamp(1.6rem, 2.8vw, 2.1rem); }
.faq-prompt .section-cta { margin-top: 20px; }
.section-alt { background: var(--snow-dim); }
.section-center { text-align: center; }
.section-head { margin-bottom: 40px; }
.section-head-center { text-align: center; margin-bottom: 40px; }
.section-cta { text-align: center; margin-top: 32px; }
.section-grid {
  display: grid; grid-template-columns: 1fr; gap: 32px;
}
@media (min-width: 760px) {
  .section-grid { grid-template-columns: .8fr 1.2fr; gap: 64px; align-items: start; }
}
.section-col--body p { font-size: 1.05rem; max-width: 62ch; }
.section-narrow { max-width: 780px; margin-inline: auto; }
.section-narrow > p { max-width: 62ch; margin-inline: auto; }
.section-col--heading { text-align: center; }

/* =========================================================
   Page hero — compact banner for interior pages
   ========================================================= */
.page-hero {
  position: relative; background: var(--pine); color: var(--snow);
  padding: clamp(150px, 20vw, 200px) 0 clamp(70px, 9vw, 110px);
  overflow: hidden;
}
.page-hero-media { position: absolute; inset: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: .38; }
.page-hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,43,34,.55) 0%, var(--pine) 92%);
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero-title { font-size: clamp(2.4rem, 5.4vw, 3.6rem); max-width: 16ch; }
.page-hero-lede { color: var(--snow-dim); font-size: 1.08rem; max-width: 52ch; margin-top: .7em; }

/* =========================================================
   Card grid — teaser cards with hover glow/scale
   ========================================================= */
.card-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 700px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }
.card {
  position: relative; display: block; border-radius: 6px; overflow: hidden;
  background: var(--pine-mid); aspect-ratio: 4 / 5;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.card:hover, .card:focus-visible { transform: translateY(-6px) scale(1.015); box-shadow: 0 24px 50px rgba(0,0,0,.35); }
.card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), filter .4s ease; filter: saturate(.85) brightness(.85); }
.card:hover img, .card:focus-visible img { transform: scale(1.06); filter: saturate(1) brightness(.95); }
.card-scrim { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(14,43,34,.92) 0%, rgba(14,43,34,.15) 55%, rgba(14,43,34,.35) 100%); }
.card-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px; }
.card-eyebrow { color: var(--gold-bright); font-weight: 700; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .5em; }
.card-title { font-family: var(--font-display); font-size: 1.5rem; color: var(--snow); margin-bottom: .3em; }
.card-desc { color: var(--snow-dim); font-size: .92rem; margin: 0; }
.card-glow {
  position: absolute; right: 22px; bottom: 22px; width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold); opacity: 0; box-shadow: 0 0 0 rgba(200,155,76,0);
  transition: opacity .35s ease, box-shadow .35s ease;
}
.card:hover .card-glow, .card:focus-visible .card-glow { opacity: 1; box-shadow: 0 0 16px 5px rgba(200,155,76,.65); }

/* =========================================================
   Itinerary — "La Via" stops, threaded by a lit path
   ========================================================= */
.map-figure {
  max-width: 900px; margin: 0 auto clamp(48px, 7vw, 76px); padding: 14px;
  background: #fff; border-radius: 8px; box-shadow: 0 20px 50px rgba(14,43,34,.16);
  border: 1px solid #efe8d6;
}
.map-figure img { border-radius: 4px; width: 100%; height: auto; }
.map-figure figcaption {
  text-align: center; font-size: .82rem; color: var(--ink-soft); padding-top: 12px;
  letter-spacing: .02em;
}

.itinerary { position: relative; max-width: 760px; margin-inline: auto; }
.itinerary::before {
  content: ""; position: absolute; left: 22px; top: 10px; bottom: 10px; width: 2px;
  background: repeating-linear-gradient(180deg, var(--gold) 0 6px, transparent 6px 14px);
  opacity: .55;
}
.stop { position: relative; padding: 0 0 52px 62px; }
.stop:last-child { padding-bottom: 0; }
.stop-marker {
  position: absolute; left: 4px; top: 2px; width: 36px; height: 36px; border-radius: 50%;
  background: var(--pine); border: 2px solid var(--gold); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1rem; font-weight: 500;
  box-shadow: 0 0 0 4px var(--snow);
}
.stop-host { font-weight: 700; letter-spacing: .1em; text-transform: uppercase; font-size: .76rem; color: var(--brick); margin-bottom: .5em; }
.stop-title { font-size: 1.5rem; color: var(--pine); margin-bottom: .3em; }
.stop-time { display: inline-block; font-weight: 700; font-size: .82rem; color: var(--gold-dark, var(--brick)); background: var(--snow-dim); border-radius: 999px; padding: .3em .9em; margin-bottom: .7em; }
.stop p { font-size: .98rem; }

/* =========================================================
   Timeline — Programma page
   ========================================================= */
.timeline { max-width: 780px; margin-inline: auto; display: flex; flex-direction: column; gap: 0; }
.tl-item { display: grid; grid-template-columns: 100px 1fr; gap: 24px; padding: 26px 0; border-top: 1px solid var(--pine-line); }
.tl-item:first-child { border-top: none; }
.tl-time { font-family: var(--font-display); font-size: 1.3rem; color: var(--gold); white-space: nowrap; }
.tl-title { font-size: 1.3rem; color: var(--pine); margin-bottom: .3em; }
.tl-place { font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: .72rem; color: var(--brick); margin-bottom: .5em; display: block; }
.tl-item p { font-size: .96rem; }
.tl-item p a { color: var(--brick); text-decoration: underline; text-underline-offset: 2px; }
.tl-item--tbd { background: var(--snow-dim); margin-inline: -28px; padding-inline: 28px; border-radius: 6px; border-top-color: transparent; }
.tl-item--tbd .tl-time {
  color: var(--brick); font-size: 1.6rem; display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border: 2px dashed var(--brick); border-radius: 50%;
}
.tl-item--tbd .tl-title { color: var(--brick); }
@media (max-width: 560px) {
  .tl-item { grid-template-columns: 1fr; gap: 6px; }
}

/* =========================================================
   Gallery grid + lightbox
   ========================================================= */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 620px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 980px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item {
  position: relative; display: block; aspect-ratio: 3 / 4; border-radius: 4px; overflow: hidden;
  background: var(--pine-mid); border: none; padding: 0; cursor: zoom-in;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease), filter .3s ease; filter: saturate(.9); }
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.08); filter: saturate(1.05); }
.gallery-item::after {
  content: "+"; position: absolute; right: 10px; bottom: 8px; color: var(--snow);
  font-size: 1.4rem; opacity: 0; transition: opacity .25s ease; text-shadow: 0 2px 6px rgba(0,0,0,.5);
}
.gallery-item:hover::after, .gallery-item:focus-visible::after { opacity: .9; }

.lightbox {
  position: fixed; inset: 0; z-index: 400;
  display: flex; align-items: center; justify-content: center; padding: 5vh 4vw;
  background: rgba(14,43,34,.94); backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .22s ease, visibility 0s linear .22s;
}
.lightbox.is-open {
  opacity: 1; visibility: visible; pointer-events: auto;
  transition: opacity .22s ease, visibility 0s linear;
}
.lightbox img {
  max-width: 100%; max-height: 88vh; border-radius: 4px; box-shadow: 0 30px 80px rgba(0,0,0,.5);
  transform: scale(.96); transition: transform .22s ease;
}
.lightbox.is-open img { transform: scale(1); }
.lightbox-close {
  position: absolute; top: 22px; right: 22px; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(246,243,236,.1); color: var(--snow); border: 1px solid rgba(246,243,236,.3);
  font-size: 1.3rem; cursor: pointer;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%;
  background: rgba(246,243,236,.1); color: var(--snow); border: 1px solid rgba(246,243,236,.3);
  font-size: 1.4rem; cursor: pointer;
}
.lightbox-prev { left: 18px; } .lightbox-next { right: 18px; }

/* =========================================================
   Sponsor grid
   ========================================================= */
.sponsor-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; list-style: none; margin: 0; padding: 0; }
@media (min-width: 620px) { .sponsor-grid { grid-template-columns: repeat(4, 1fr); } }
.sponsor-grid li {
  background: var(--snow); border-radius: 6px; display: flex; align-items: center; justify-content: center;
  aspect-ratio: 1/1; transition: transform .25s ease, box-shadow .25s ease;
}
.sponsor-grid li:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(14,43,34,.15); }
.sponsor-grid a { padding: 20px; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.sponsor-grid img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* Small auto-scrolling sponsor strip (Home) — continuous CSS marquee, GPU-only. */
.sponsor-marquee {
  overflow: hidden; margin-top: 8px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.sponsor-track {
  display: flex; align-items: center; gap: 56px; width: max-content;
  list-style: none; margin: 0; padding: 12px 0;
  animation: sponsor-scroll 102s linear infinite;
}
.sponsor-marquee:hover .sponsor-track,
.sponsor-marquee:focus-within .sponsor-track { animation-play-state: paused; }
@keyframes sponsor-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
.sponsor-track li { flex: 0 0 auto; }
.sponsor-track img {
  height: 84px; width: auto; max-width: 144px; object-fit: contain;
  filter: grayscale(1) opacity(.6); transition: filter .3s ease, transform .3s ease;
}
.sponsor-track a:hover img, .sponsor-track a:focus-visible img {
  filter: grayscale(0) opacity(1); transform: translateY(-3px);
}

/* =========================================================
   FAQ (native details/summary)
   ========================================================= */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 760px; margin-inline: auto; }
.faq-item { background: var(--snow); border: 1px solid #e6ddc9; border-radius: 6px; padding: 4px 26px; }
.faq-item summary {
  cursor: pointer; list-style: none; font-family: var(--font-display); font-weight: 500; font-size: 1.08rem;
  padding: 20px 34px 20px 0; position: relative; color: var(--pine);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--brick); font-weight: 400; transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-answer { padding-bottom: 22px; }
.faq-answer ul { margin: .6em 0 0; padding-left: 1.2em; list-style: disc; color: var(--ink-soft); }
.faq-answer li { margin-bottom: .3em; }

/* =========================================================
   Testimonial cast
   ========================================================= */
.testi-carousel { position: relative; padding: 8px 0 8px; }
.testi-track {
  display: flex; gap: 20px; list-style: none; margin: 0; padding: 4px 2px 14px;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.testi-track::-webkit-scrollbar { display: none; }
.testi-track:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.testi-card {
  scroll-snap-align: start; flex: 0 0 calc((100% - 2 * 20px) / 3);
  background: var(--snow); border-radius: 6px; padding: 26px;
}
.testi-card img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; margin-bottom: 14px; background: var(--snow-dim); }
.testi-quote { font-size: .93rem; color: var(--ink-soft); min-height: 8em; }
.testi-author { font-family: var(--font-display); font-size: 1rem; color: var(--pine); }
.testi-author span { display: block; font-family: var(--font-body); font-weight: 400; color: var(--ink-soft); font-size: .78rem; margin-top: .2em; }

.testi-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--pine-line);
  background: var(--snow); color: var(--pine); font-size: 1.6rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(14,43,34,.14);
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
.testi-arrow:hover { background: var(--pine); color: var(--gold); }
.testi-arrow--prev { left: -8px; }
.testi-arrow--next { right: -8px; }

@media (min-width: 700px) {
  .testi-arrow--prev { left: -8px; }
  .testi-arrow--next { right: -8px; }
}
@media (max-width: 859px) {
  .testi-card { flex-basis: calc((100% - 20px) / 2); }
}
@media (max-width: 599px) {
  .testi-card { flex-basis: 82%; }
  .testi-arrow { display: none; }
}

/* =========================================================
   Contact form
   ========================================================= */
.contact-form { max-width: 560px; margin: 0 auto; text-align: left; }
.contact-form button[type="submit"] { display: flex; margin: 8px auto 0; }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-weight: 700; margin-bottom: .4em; font-size: .92rem; color: var(--pine); }
.form-row input, .form-row textarea {
  width: 100%; padding: .85em 1em; border-radius: 4px; border: 1.5px solid #ddd2b6;
  background: var(--snow); font: inherit; color: var(--ink);
}
.form-row input:focus-visible, .form-row textarea:focus-visible { border-color: var(--brick); outline: 3px solid rgba(156,59,46,.35); outline-offset: 1px; }

/* Honeypot — off-screen for people, still present in the DOM for bots that
   auto-fill every field. Not display:none, since some bots skip hidden inputs. */
.form-row--honeypot { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; margin: 0; }

.form-status {
  max-width: 560px; margin: 0 auto 20px; padding: 14px 20px; border-radius: 8px;
  font-weight: 600; font-size: .95rem; text-align: center;
}
.form-status--ok { background: #f3ecd6; color: var(--pine); }
.form-status--error { background: #fbe9e7; color: var(--brick); }

address { font-style: normal; line-height: 1.9; }
.map-embed { border-radius: 6px; overflow: hidden; box-shadow: 0 16px 40px rgba(14,43,34,.15); }
.map-embed iframe { display: block; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--pine); color: rgba(246,243,236,.75); }
.footer-inner { display: flex; flex-wrap: wrap; gap: 32px; align-items: flex-start; justify-content: space-between; padding-block: 56px 36px; }
.footer-brand { font-family: var(--font-display); font-size: 1.3rem; color: var(--snow); }
.footer-brand-title { display: flex; align-items: center; gap: .5em; }
.footer-brand p { color: rgba(246,243,236,.55); font-size: .88rem; margin-top: .5em; font-family: var(--font-body); max-width: 32ch; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 4px; }
.footer-nav a { padding: .5em .9em; border-radius: 999px; font-weight: 600; font-size: .9rem; transition: background-color .15s ease, color .15s ease; }
.footer-nav a:hover { background: rgba(246,243,236,.08); color: var(--gold-bright); }
.footer-social { display: flex; gap: 10px; list-style: none; margin: 0; padding: 0; }
.footer-social a {
  display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%;
  background: rgba(246,243,236,.08); transition: background-color .2s ease;
}
.footer-social a:hover { background: var(--brick); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(246,243,236,.12); padding: 18px 0; }
.footer-bottom p { margin: 0; font-size: .82rem; color: rgba(246,243,236,.45); text-align: center; }
.footer-bottom a { color: rgba(246,243,236,.65); text-decoration: underline; }

/* =========================================================
   Reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .hero-photo-wrap { transform: none !important; }
  .testi-track { scroll-behavior: auto !important; }
  .sponsor-track { animation: none !important; transform: none !important; }
  .sponsor-marquee { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}
