/* ==========================================================================
   Sundrift Luxury Camp — "Sun & Indigo"
   A desert day in one page: sand → dusk → night → dawn.
   Mobile-first. No frameworks.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* palette: golden day */
  --sand:        #F6ECDB;   /* page base — warm pigmented sand, not cream */
  --sand-2:      #EEDFC0;   /* raised surfaces on sand */
  --sand-3:      #E3CFA6;   /* borders, quiet lines on sand */
  --gold:        #BE8A3C;   /* dune gold — accents, kickers */
  --gold-soft:   #D9B475;

  /* palette: desert night */
  --night:       #1C2239;   /* indigo night sections */
  --night-deep:  #121729;   /* footer, deepest night */
  --dusk:        #3A3355;   /* transition tone */
  --starlight:   #F4E7CB;   /* text on night */
  --star-dim:    #B9AE93;   /* secondary text on night */

  /* the single action colour */
  --terracotta:      #B4532A;
  --terracotta-dark: #8F3F1E;

  /* text on sand */
  --ink:      #33281A;
  --ink-soft: #6E5C40;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --wrap: 72rem;
  --wrap-narrow: 46rem;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.75rem;
  --space-4: 3rem;
  --space-5: clamp(4rem, 9vw, 7rem);   /* section rhythm */

  --radius: 14px;
  --radius-lg: 22px;

  --shadow: 0 10px 30px -12px rgba(51, 40, 26, 0.28);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* account for the sticky header when jumping to #ourtents etc. */
[id] { scroll-margin-top: 5.5rem; }

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

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 480;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 var(--space-2);
  text-wrap: balance;
}

p { margin: 0 0 var(--space-2); }

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

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

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--night-deep); color: var(--starlight);
  padding: 0.75rem 1.25rem; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Type roles ---------- */
.display {
  font-size: clamp(2.6rem, 7.5vw, 4.8rem);
  font-weight: 400;
  line-height: 1.02;
}
.h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); }
.h3 { font-size: clamp(1.25rem, 2.4vw, 1.55rem); font-weight: 560; }

/* italic accent word inside display headings */
.accent-i { font-style: italic; font-weight: 340; color: var(--gold); }
.section--night .accent-i, .section--dusk .accent-i { color: var(--gold-soft); }

.lede {
  font-size: clamp(1.05rem, 1.9vw, 1.25rem);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 38em;
}

/* kicker: eyebrow with the Berber diamond ◆ — our only ornament */
.kicker {
  display: flex; align-items: center; gap: 0.7em;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 var(--space-2);
}
.kicker::before {
  content: "";
  width: 0.55em; height: 0.55em; flex: none;
  background: currentColor;
  transform: rotate(45deg);
}
.center .kicker { justify-content: center; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding-block: var(--space-5); }
.section--flush-top { padding-top: 0; }

/* day is the default; night flips the palette */
.section--night, .section--dusk {
  color: var(--starlight);
}
.section--night { background: var(--night); }
.section--dusk  { background: var(--dusk); }
.section--night .lede, .section--dusk .lede { color: var(--star-dim); }

/* starfield: pure CSS, subtle */
.starfield { position: relative; overflow: hidden; }
.starfield > .wrap { position: relative; z-index: 1; }
.starfield::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 12% 22%, rgba(244,231,203,.9), transparent 55%),
    radial-gradient(1.5px 1.5px at 28% 64%, rgba(244,231,203,.55), transparent 55%),
    radial-gradient(1px 1px at 41% 15%, rgba(244,231,203,.75), transparent 55%),
    radial-gradient(2px 2px at 57% 40%, rgba(217,180,117,.6), transparent 55%),
    radial-gradient(1px 1px at 66% 76%, rgba(244,231,203,.6), transparent 55%),
    radial-gradient(1.5px 1.5px at 78% 28%, rgba(244,231,203,.8), transparent 55%),
    radial-gradient(1px 1px at 87% 58%, rgba(244,231,203,.5), transparent 55%),
    radial-gradient(1px 1px at 94% 12%, rgba(244,231,203,.7), transparent 55%),
    radial-gradient(1.5px 1.5px at 8% 84%, rgba(244,231,203,.45), transparent 55%),
    radial-gradient(1px 1px at 49% 88%, rgba(244,231,203,.6), transparent 55%);
}

/* horizon divider: the dune ridge that stitches sections together.
   Colour = the section ABOVE it; it sits at the top of the next section. */
.dune {
  display: block; width: 100%;
  height: clamp(38px, 7vw, 88px);
  margin-bottom: -1px;
}
.dune--sand  { color: var(--sand); }
.dune--sand2 { color: var(--sand-2); }
.dune--dusk  { color: var(--dusk); }
.dune--night { color: var(--night); }
.dune--deep  { color: var(--night-deep); }

/* flipped dune: sand mass at the bottom, used at the foot of the photo hero */
.dune--flip { transform: scaleY(-1); margin-bottom: 0; margin-top: -1px; }

/* when a section opens with a dune divider, restore the rhythm below it */
.pad-top { padding-top: var(--space-5); }

.center { text-align: center; }
.center .lede { margin-inline: auto; }

.cluster { display: flex; flex-wrap: wrap; gap: var(--space-2); align-items: center; }
.center-cluster { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  font: 600 0.95rem/1 var(--font-body);
  letter-spacing: 0.02em;
  padding: 0.95em 1.7em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* terracotta is reserved for booking actions only */
.btn--primary { background: var(--terracotta); color: #FBF3E4; }
.btn--primary:hover { background: var(--terracotta-dark); }

.btn--ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--ghost:hover { background: var(--ink); color: var(--sand); }

.btn--ghost-light { border-color: var(--starlight); color: var(--starlight); background: transparent; }
.btn--ghost-light:hover { background: var(--starlight); color: var(--night); }

/* quiet text link with gold underline */
.link-more {
  font-weight: 600; text-decoration: none;
  border-bottom: 2px solid var(--gold-soft);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.link-more:hover { border-color: var(--terracotta); }

/* ---------- Site header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246, 236, 219, 0.92);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--sand-3);
  backdrop-filter: blur(10px);
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
/* pages with a dark hero start the header transparent, then solidify on scroll */
body.has-hero .site-header:not(.is-scrolled) {
  background: transparent;
  color: var(--starlight);
  box-shadow: none;
  backdrop-filter: none;
}
.site-header__bar {
  display: flex; align-items: center; gap: var(--space-2);
  padding-block: 0.9rem;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 560; letter-spacing: 0.01em;
  text-decoration: none; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 0.55em;
  margin-right: auto;
}
.brand .logo { width: 1.7em; height: auto; flex: none; }

.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2rem); }
.site-nav a {
  font-size: 0.92rem; font-weight: 550; text-decoration: none;
  opacity: 0.9; padding-block: 0.35em;
  border-bottom: 2px solid transparent;
  transition: opacity 0.2s, border-color 0.2s;
}
.site-nav a:hover { opacity: 1; border-bottom-color: var(--gold); }
.site-nav a[aria-current="page"] { border-bottom-color: var(--gold); opacity: 1; }

.btn--book { padding: 0.75em 1.4em; font-size: 0.9rem; }

.nav-toggle {
  display: none;
  background: none; border: 0; cursor: pointer; color: inherit;
  padding: 0.5rem; margin: -0.5rem;
  /* stays above the open nav overlay (z-index 90) so it can close it */
  position: relative; z-index: 95;
}
.nav-toggle svg { display: block; }
.nav-toggle .icon-close { display: none; }
body.nav-open .nav-toggle { color: var(--starlight); }
body.nav-open .nav-toggle .icon-menu { display: none; }
body.nav-open .nav-toggle .icon-close { display: block; }

@media (max-width: 760px) {
  /* phone header: logomark left, menu button right — no Book Now, no wordmark */
  .btn--book { display: none; }
  .site-header .brand__name { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  .brand { margin-right: 0; }
  .site-nav {
    position: fixed; inset: 0; z-index: -1;
    flex-direction: column; justify-content: center; gap: 1.5rem;
    background: var(--night-deep); color: var(--starlight);
    font-size: 1.35rem;
    opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
  }
  .site-nav a { font-size: 1.3rem; }
  body.nav-open .site-nav { opacity: 1; visibility: visible; z-index: 90; }
  body.nav-open { overflow: hidden; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(92vh, 56rem);
  display: flex; flex-direction: column; justify-content: flex-end;
  color: var(--starlight);
  background: var(--dusk);
  margin-top: -4.1rem; /* sit beneath the transparent sticky header */
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }

/* Background video: a 16:9 iframe scaled to cover the hero, centred, inert.
   It sits above the poster image and fades in once YouTube starts playing. */
.hero__video {
  position: absolute; top: 50%; left: 50%;
  /* cover at 16:9, then over-scale 35% so YouTube's title bar and watermark
     are cropped outside the visible area — the frame shows only the footage */
  transform: translate(-50%, -50%) scale(1.35);
  width: max(100vw, 177.78vh);
  height: max(100vh, 56.25vw);
  border: 0;
  pointer-events: none;      /* decorative — clicks fall through to the hero */
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero__video.is-playing { opacity: 1; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,23,41,0.35) 0%, rgba(18,23,41,0.05) 40%, rgba(18,23,41,0.55) 100%);
}
.hero__content {
  position: relative; z-index: 1;
  /* top padding keeps the kicker clear of the transparent sticky header,
     even on short viewports where the hero content rides high */
  padding-block: 8rem clamp(4rem, 10vw, 7rem);
}
.hero .display { max-width: 13em; margin-bottom: var(--space-2); }
.hero .lede { color: rgba(244, 231, 203, 0.92); }
.hero .kicker { color: var(--gold-soft); }
.hero__actions { margin-top: var(--space-3); }
.hero__foot {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 1;
}

/* page hero for subpages: a shorter dusk band */
.page-hero {
  background: linear-gradient(175deg, var(--night) 0%, var(--dusk) 70%, #6C5570 100%);
  color: var(--starlight);
  margin-top: -4.1rem;
  padding-top: 8rem;
  position: relative;
}
.page-hero .wrap { padding-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.page-hero .kicker { color: var(--gold-soft); }
.page-hero .display { font-size: clamp(2.2rem, 6vw, 3.8rem); }

/* ---------- Cards & grids ---------- */
.grid { display: grid; gap: clamp(1.25rem, 3vw, 2rem); }
@media (min-width: 700px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 640px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }

.tent-card {
  background: var(--sand-2);
  color: var(--ink); /* own colour — never inherit light text from night/dusk sections */
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.tent-card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px -14px rgba(51,40,26,0.4); }
.tent-card__media { aspect-ratio: 4 / 3; overflow: hidden; }
.tent-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.tent-card:hover .tent-card__media img { transform: scale(1.045); }
.tent-card__body { padding: var(--space-3); display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.tent-card__body .h3 { margin: 0; }
.tent-card__body p { color: var(--ink-soft); margin: 0; font-size: 0.95rem; }
.tent-card__foot {
  margin-top: auto; padding-top: var(--space-2);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  border-top: 1px solid var(--sand-3);
}
.price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 560; }
.price small { font-family: var(--font-body); font-size: 0.72rem; font-weight: 500; color: var(--ink-soft); display: block; letter-spacing: 0.04em; }

/* activities: an editorial list, not icon cards */
.activity-list { list-style: none; margin: 0; padding: 0; }
.activity-list li {
  display: grid; grid-template-columns: auto 1fr; gap: 1.1rem;
  align-items: baseline;
  padding-block: 1.05rem;
  border-bottom: 1px solid rgba(244, 231, 203, 0.16);
}
.activity-list li:first-child { border-top: 1px solid rgba(244, 231, 203, 0.16); }
.activity-list .act-name {
  font-family: var(--font-display); font-size: clamp(1.2rem, 2.6vw, 1.6rem);
  font-weight: 460;
}
.activity-list .act-note { color: var(--star-dim); font-size: 0.95rem; }
.activity-list li::before {
  content: ""; width: 0.5em; height: 0.5em; align-self: center;
  background: var(--gold-soft); transform: rotate(45deg);
}
.activity-list li { grid-template-columns: auto auto 1fr; }
@media (max-width: 640px) {
  .activity-list li { grid-template-columns: auto 1fr; }
  .activity-list .act-note { grid-column: 2; }
}

/* testimonials */
.testimonial {
  background: rgba(18, 23, 41, 0.55);
  border: 1px solid rgba(244, 231, 203, 0.14);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  display: flex; flex-direction: column; gap: var(--space-2);
}
.stars { color: var(--gold-soft); letter-spacing: 0.18em; font-size: 0.9rem; }
.testimonial blockquote {
  margin: 0; font-family: var(--font-display);
  font-size: 1.08rem; font-weight: 380; line-height: 1.5;
  font-style: italic;
}
.testimonial figcaption { color: var(--star-dim); font-size: 0.88rem; }
.testimonial figcaption strong { color: var(--starlight); font-weight: 600; }

/* gallery */
.gallery { display: grid; gap: 0.7rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 700px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery a {
  display: block; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 1; background: var(--sand-2);
}
.gallery a:nth-child(1), .gallery a:nth-child(6) { grid-row: span 2; aspect-ratio: auto; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.gallery a:hover img { transform: scale(1.05); }

/* blog cards */
.blog-card {
  display: flex; flex-direction: column; gap: 0.85rem;
  text-decoration: none;
}
.blog-card__media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16 / 10; background: var(--sand-2); }
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.blog-card:hover .blog-card__media img { transform: scale(1.05); }
.blog-card time { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.blog-card .h3 { margin: 0; transition: color 0.2s; }
.blog-card:hover .h3 { color: var(--terracotta); }
.blog-card p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

/* ---------- Split (two-column feature) ---------- */
.split { display: grid; gap: var(--space-4); align-items: center; }
@media (min-width: 860px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--media-right .split__media { order: 2; }
}
.split__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }

/* fact strip (amenities etc.) */
.facts { display: flex; flex-wrap: wrap; gap: 0.6rem 1.6rem; padding: 0; margin: var(--space-2) 0 0; list-style: none; }
.facts li { display: flex; gap: 0.55em; align-items: center; font-size: 0.95rem; color: var(--ink-soft); }
.facts li::before {
  content: ""; width: 0.45em; height: 0.45em; flex: none;
  background: var(--gold); transform: rotate(45deg);
}
.section--night .facts li, .section--dusk .facts li { color: var(--star-dim); }

/* ---------- FAQ ---------- */
/* the one-sentence answer: the page's whole point, so it leads and it's big */
.faq-answer {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.8rem);
  line-height: 1.45;
  font-weight: 440;
  max-width: 34em;
  margin: 0;
}
.faq-answer::first-letter { color: var(--terracotta); }

.faq-group { margin-bottom: var(--space-4); }
.faq-group__title {
  border-bottom: 1px solid var(--sand-3);
  padding-bottom: 0.6rem;
  margin-bottom: var(--space-2);
  display: flex; align-items: baseline; gap: 0.6em;
}
.faq-count {
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 650;
  color: var(--gold); letter-spacing: 0.08em;
}
.faq-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 0.35rem 2.5rem;
}
@media (min-width: 760px) { .faq-list { grid-template-columns: 1fr 1fr; } }
.faq-list li { display: flex; gap: 0.6em; align-items: baseline; }
.faq-list li::before {
  content: ""; width: 0.4em; height: 0.4em; flex: none;
  background: var(--gold); transform: rotate(45deg); position: relative; top: -0.15em;
}
.faq-link {
  text-decoration: none; padding-block: 0.25em; color: #4A3D28;
  transition: color 0.15s;
}
.faq-link:hover { color: var(--terracotta); }

/* small-print disclaimer: discreet but always legible */
.fine-note {
  font-size: 0.75rem;
  color: var(--ink-soft);
  opacity: 0.85;
  margin-top: 0.6rem;
}

/* ---------- Prose (blog & legal pages) ---------- */
.prose { max-width: var(--wrap-narrow); margin-inline: auto; }
.prose h2 { font-size: clamp(1.55rem, 3.2vw, 2.1rem); margin-top: var(--space-4); }
.prose h3 { font-size: 1.2rem; font-weight: 600; margin-top: var(--space-3); }
.prose p, .prose li { color: #4A3D28; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: 0.4rem; }
.prose a { color: var(--terracotta); text-decoration-thickness: 1px; text-underline-offset: 2px; }
.prose a:hover { color: var(--terracotta-dark); }
.prose blockquote {
  margin: var(--space-3) 0; padding: var(--space-2) var(--space-3);
  border-left: 3px solid var(--gold);
  background: var(--sand-2); border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display); font-style: italic; font-size: 1.1rem;
}
.prose figure { margin: var(--space-3) 0; }
.prose figure img { border-radius: var(--radius); width: 100%; }
.prose figcaption { font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.5rem; }

.post-meta {
  display: flex; gap: 1rem; align-items: center;
  color: var(--star-dim); font-size: 0.88rem;
}

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: var(--space-2); }
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .field--full { grid-column: 1 / -1; }
}
.field label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.4rem; }
.field input, .field select, .field textarea {
  width: 100%;
  font: inherit; color: var(--ink);
  background: #FCF6EA;
  border: 1.5px solid var(--sand-3);
  border-radius: 10px;
  padding: 0.8em 1em;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(190, 138, 60, 0.22);
}
.field textarea { min-height: 8rem; resize: vertical; }

.form-error { color: #9C2F12; font-size: 0.85rem; margin: 0.35rem 0 0; font-weight: 550; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #9C2F12; }

.form-notice {
  border-radius: var(--radius);
  padding: var(--space-2) var(--space-3);
  margin-bottom: var(--space-3);
  font-weight: 550;
}
.form-notice--ok { background: #E4EAD8; border: 1px solid #A9BC85; color: #3A4A22; }
.form-notice--err { background: #F3DED2; border: 1px solid #D3A184; color: #7C2E10; }

/* honeypot: visually removed, still in the DOM for bots */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  display: none; align-items: center; justify-content: center;
  background: rgba(18, 23, 41, 0.92);
  padding: clamp(1rem, 4vw, 3rem);
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 100%; max-height: 100%;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox__close, .lightbox__nav {
  position: absolute; z-index: 1;
  background: rgba(244, 231, 203, 0.12); color: var(--starlight);
  border: 1px solid rgba(244, 231, 203, 0.3);
  border-radius: 999px; cursor: pointer;
  width: 2.9rem; height: 2.9rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; transition: background 0.2s;
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(244, 231, 203, 0.25); }
.lightbox__close { top: 1rem; right: 1rem; }
.lightbox__nav--prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 1rem; top: 50%; transform: translateY(-50%); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--night-deep);
  color: var(--star-dim);
  font-size: 0.95rem;
}
.site-footer a { color: var(--starlight); text-decoration: none; }
.site-footer a:hover { color: var(--gold-soft); }
.site-footer .brand { color: var(--starlight); font-size: 1.35rem; }
.footer-grid {
  display: grid; gap: var(--space-4);
  padding-block: var(--space-5) var(--space-4);
}
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-col h4 {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 650;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: var(--space-2);
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.footer-contact { font-style: normal; display: grid; gap: 0.55rem; margin-top: var(--space-2); }
.footer-bottom {
  border-top: 1px solid rgba(244, 231, 203, 0.12);
  padding-block: var(--space-3);
  display: flex; flex-wrap: wrap; gap: var(--space-2);
  align-items: center; justify-content: space-between;
  font-size: 0.85rem;
}
.footer-bottom ul { list-style: none; display: flex; flex-wrap: wrap; gap: 1.25rem; margin: 0; padding: 0; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.section-head { margin-bottom: var(--space-4); }
