/* ============================================================
   Metta Tattoo v2 — botanical art-book, motion-led
   Palette: "Forest + gold". Light cream base alternating with
   deep-forest full-bleed sections; warm gold accent. Editorial:
   full-bleed photos, asymmetry, overlap, oversized serif.
   ------------------------------------------------------------
   EDIT FONTS / COLOURS: tokens in :root.
   ============================================================ */

/* ---- Tokens (Forest + gold) ---- */
:root {
  --cream:      #F4EEE1;  /* warm light base (page)         */
  --cream-2:    #ECE3D1;  /* deeper cream for tint sections */
  --forest:     #1F2A1C;  /* deep forest — dark sections    */
  --forest-2:   #19221701;/* (reserved)                     */
  --moss:       #5A6B4A;  /* mid green                      */
  --gold:       #C49A4A;  /* warm gold / ochre accent       */
  --gold-soft:  #d8b876;  /* lighter gold (on dark)         */
  --ink:        #23291E;  /* text on light                  */
  --ink-soft:   #565d49;  /* muted body text on light       */
  --cream-text: #EFE7D5;  /* text on dark                   */
  --cream-dim:  rgba(239,231,213,.74);
  --line-d:     rgba(239,231,213,.20); /* hairline on dark  */
  --line-l:     rgba(35,41,30,.14);    /* hairline on light */

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --maxw: 1320px;
  --gutter: clamp(1.25rem, 5vw, 5rem);
  --section-y: clamp(3.25rem, 6vw, 6rem);
}

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

html { -webkit-text-size-adjust: 100%; overflow-x: clip; }
html:not(.lenis) { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html:not(.lenis) { scroll-behavior: auto; } }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(1rem, 0.96rem + 0.22vw, 1.12rem);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  max-width: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

/* ---- Type ---- */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0.004em;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(3rem, 1.6rem + 6.4vw, 8rem); }
h2 { font-size: clamp(2.2rem, 1.4rem + 3.4vw, 4.5rem); }
h3 { font-size: clamp(1.5rem, 1.2rem + 1.3vw, 2.2rem); }
p { margin: 0 0 1.15em; max-width: 60ch; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--moss);
  margin: 0 0 1.5rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.eyebrow::before { content: ""; width: 2.2rem; height: 1px; background: var(--gold); display: inline-block; }

/* ---- Layout ---- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--wide { max-width: 1600px; }
.section { padding-block: var(--section-y); position: relative; }
.section--tint { background: var(--cream-2); }
.section--forest, .section--olive { background: var(--forest); color: var(--cream-text); }
.lede { font-size: clamp(1.15rem, 1rem + 0.7vw, 1.55rem); line-height: 1.5; color: var(--ink-soft); max-width: 30ch; font-family: var(--serif); }
.measure { max-width: 56ch; }

/* on-dark element colours */
.section--forest .eyebrow, .section--olive .eyebrow { color: var(--gold-soft); }
.section--forest .eyebrow::before, .section--olive .eyebrow::before { background: var(--gold); }
.section--forest .lede, .section--olive .lede { color: var(--cream-dim); }

/* ---- Buttons (gold) ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--sans); font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.04em;
  padding: 1.05em 2em; border-radius: 999px;
  border: 1px solid var(--gold); background: var(--gold); color: var(--forest);
  cursor: pointer;
  transition: background-color .35s ease, color .35s ease, border-color .35s ease, transform .35s ease;
}
.btn svg { width: 1em; height: 1em; transition: transform .35s ease; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--light { background: var(--gold); color: var(--forest); border-color: var(--gold); }
@media (hover: hover) {
  .btn:hover { background: var(--forest); border-color: var(--forest); color: var(--cream-text); }
  .btn:hover svg { transform: translateX(3px); }
  .section--forest .btn:hover, .section--olive .btn:hover { background: var(--cream); border-color: var(--cream); color: var(--forest); }
  .btn--ghost:hover { background: var(--ink); color: var(--cream); }
}
@media (prefers-reduced-motion: reduce) { .btn, .btn svg { transition: none; } }

/* ============================================================
   Header
   ============================================================ */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 60; transition: background-color .4s ease, box-shadow .4s ease, color .4s ease; color: var(--cream-text); }
.site-header.is-solid { background: color-mix(in srgb, var(--cream) 92%, transparent); backdrop-filter: saturate(150%) blur(10px); color: var(--ink); box-shadow: 0 1px 0 var(--line-l); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: clamp(1rem, 2vw, 1.5rem); }
.wordmark { font-family: var(--serif); font-size: clamp(1.4rem, 1.2rem + 0.6vw, 1.75rem); font-weight: 600; letter-spacing: 0.04em; white-space: nowrap; }
.wordmark span { font-style: italic; font-weight: 500; color: var(--gold); }

.nav { display: flex; align-items: center; gap: clamp(1.2rem, 2.2vw, 2.4rem); }
.nav a:not(.btn) { font-size: 0.92rem; letter-spacing: 0.02em; position: relative; padding-block: 0.2rem; }
.nav a:not(.btn)::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--gold); transition: width .3s ease; }
@media (hover: hover) { .nav a:not(.btn):hover::after { width: 100%; } }
.site-header:not(.is-solid) .nav .btn { background: transparent; border-color: rgba(239,231,213,.55); color: var(--cream-text); }
@media (hover: hover) { .site-header:not(.is-solid) .nav .btn:hover { background: var(--gold); color: var(--forest); border-color: var(--gold); } }

.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 46px; height: 46px; padding: 0; background: none; border: none; cursor: pointer; color: inherit; z-index: 70; }
.nav-toggle span { display: block; width: 26px; height: 1.5px; margin-inline: auto; background: currentColor; transition: transform .35s ease, opacity .25s ease; }
.nav-toggle[aria-expanded="true"] { color: var(--cream-text); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .nav {
    /* Explicit viewport size (not inset:0): once scrolled, the header's
       backdrop-filter becomes the containing block, so right/bottom:0 would
       collapse the menu to the header. 100vw/100svh covers the screen either way. */
    position: fixed; top: 0; left: 0; width: 100vw; height: 100svh;
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 0.4rem; padding: var(--gutter);
    background: var(--forest); color: var(--cream-text);
    clip-path: circle(0% at calc(100% - 46px) 46px);
    transition: clip-path .55s cubic-bezier(.76,0,.24,1);
    pointer-events: none;
    overflow-y: auto;
  }
  .nav[data-open="true"] { clip-path: circle(150% at calc(100% - 46px) 46px); pointer-events: auto; }
  .nav a:not(.btn) { font-family: var(--serif); font-size: clamp(2rem, 8vw, 3rem); padding-block: 0.35rem; }
  .nav a:not(.btn)::after { display: none; }
  .nav .btn { margin-top: 1.5rem; background: var(--gold); color: var(--forest); border-color: var(--gold); }
  @media (prefers-reduced-motion: reduce) { .nav { transition: none; } }
}

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; color: var(--cream-text); background: var(--forest); }
.hero__media { position: absolute; inset: -8% 0 -8% 0; z-index: 0; }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; will-change: transform; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(20,27,16,.82) 0%, rgba(20,27,16,.34) 40%, rgba(20,27,16,.06) 72%, rgba(20,27,16,.22) 100%); }
.hero__inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(2.5rem, 5vw, 4.5rem); padding-top: 6rem; }
.hero h1 { max-width: 17ch; font-size: clamp(2.3rem, 1.2rem + 4vw, 5.2rem); }
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero__intro { font-family: var(--serif); font-size: clamp(1.25rem, 1rem + 0.9vw, 1.7rem); line-height: 1.4; max-width: 40ch; margin: 1.75rem 0 2.25rem; color: var(--cream-dim); }
.hero__scroll { position: absolute; left: var(--gutter); bottom: 1.5rem; z-index: 2; font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--cream-dim); display: flex; align-items: center; gap: 0.6rem; }
.hero__scroll::after { content: ""; width: 1px; height: 2.5rem; background: var(--gold); animation: scrollpulse 2.4s ease-in-out infinite; transform-origin: top; }
@keyframes scrollpulse { 0%,100% { transform: scaleY(.4); opacity:.4 } 50% { transform: scaleY(1); opacity:1 } }
@media (prefers-reduced-motion: reduce) { .hero__scroll::after { animation: none; } }
/* hide the scroll cue on small screens so it can't collide with the CTA */
@media (max-width: 768px) { .hero__scroll { display: none; } }

/* ============================================================
   Marquee
   ============================================================ */
.marquee { overflow: hidden; padding-block: clamp(1.1rem, 2.4vw, 2rem); background: var(--cream-2); border-block: 1px solid var(--line-l); }
.marquee--olive { background: var(--forest); color: var(--cream-text); border-color: var(--line-d); }
.marquee__track { display: inline-flex; white-space: nowrap; will-change: transform; animation: marquee 40s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span { font-family: var(--serif); font-size: clamp(1.6rem, 1rem + 2.6vw, 3.2rem); font-style: italic; padding-inline: clamp(1rem, 2vw, 2rem); color: var(--ink); }
.marquee--olive .marquee__track span { color: var(--cream-text); }
.marquee__track span::after { content: "✦"; font-style: normal; margin-left: clamp(2rem, 4vw, 4rem); color: var(--gold); font-size: .6em; vertical-align: middle; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ============================================================
   Reveal (visible without JS)
   ============================================================ */
/* Generic reveal (text blocks) — GSAP drives the motion; CSS only sets the
   pre-JS hidden state. Image masks are handled separately in app.js. */
.reveal { opacity: 1; }
.js .reveal { opacity: 0; }
.js .reveal.is-in { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1 !important; } }

/* ============================================================
   About (asymmetric, overlap, photo fills column)
   ============================================================ */
.about__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: stretch; }
@media (min-width: 900px) { .about__grid { grid-template-columns: 0.92fr 1.08fr; } }
.about__figure { position: relative; margin: 0; height: 100%; min-height: 100%; overflow: hidden; border-radius: 6px; }
.about__figure img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; object-position: 50% 35%; }
.about__figure figcaption { position: absolute; bottom: 1rem; left: 1rem; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream-text); background: rgba(31,42,28,.66); padding: 0.45em 0.9em; border-radius: 999px; backdrop-filter: blur(4px); }
.about__body { max-width: 56ch; align-self: center; }
.about__body p:first-of-type { font-family: var(--serif); font-size: clamp(1.45rem, 1.1rem + 1.4vw, 2.3rem); line-height: 1.28; color: var(--ink); max-width: 22ch; margin-bottom: 1em; }

/* ============================================================
   Statement spreads (oversized serif moments)
   ============================================================ */
.statement { padding-block: clamp(3.5rem, 7vw, 7rem); }
.statement p { font-family: var(--serif); font-size: clamp(2.4rem, 1.4rem + 5.2vw, 6.5rem); line-height: 1.02; font-weight: 500; max-width: 16ch; margin: 0; }
.statement em { font-style: italic; color: var(--gold); }
.section--forest .statement em, .section--olive .statement em { color: var(--gold-soft); }
.statement--right { text-align: right; }
.statement--right p { margin-left: auto; }
/* statement + decorative fine-line grass detail (fills the dark spread) */
.statement__inner { position: relative; }
.botanical-mark {
  position: absolute; right: clamp(0.5rem, 5vw, 5rem); top: 50%;
  transform: translateY(-50%);
  height: min(80%, 300px); width: auto;
  color: var(--gold-soft); opacity: 0.55; pointer-events: none;
}
@media (max-width: 760px) { .botanical-mark { right: 0; height: 64%; opacity: 0.3; } }

/* ---- "Made to flow" — statement flanked by two photos ---- */
.section--flow { padding-block: clamp(2.5rem, 5vw, 5rem); }
.flow-grid { display: grid; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .flow-grid { grid-template-columns: 0.85fr 1fr 0.85fr; } }
.flow-figure { margin: 0; overflow: hidden; border-radius: 6px; cursor: pointer; }
.flow-figure img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.flow-statement { text-align: center; }
.flow-statement p { font-family: var(--serif); font-size: clamp(2.2rem, 1.4rem + 3.4vw, 4.4rem); line-height: 1.05; font-weight: 500; margin: 0; }
.flow-statement em { font-style: italic; color: var(--gold); }
@media (max-width: 899px) { .flow-statement { order: -1; } }

/* ============================================================
   What I do (editorial list + filling photo)
   ============================================================ */
.do-wrap { display: grid; grid-template-columns: 1fr; gap: clamp(2rem,5vw,5rem); align-items: stretch; }
@media (min-width: 900px) { .do-wrap { grid-template-columns: 1.05fr 0.95fr; } }
.do-list { list-style: none; margin: 0; padding: 0; }
.do-list li { padding: clamp(1.1rem, 2vw, 1.55rem) 0; border-top: 1px solid var(--line-l); font-family: var(--serif); font-size: clamp(1.4rem, 1.1rem + 1vw, 2rem); line-height: 1.2; display: flex; gap: 1rem; align-items: baseline; }
.do-list li:last-child { border-bottom: 1px solid var(--line-l); }
.do-list .idx { font-family: var(--sans); font-size: 0.7rem; letter-spacing: .1em; color: var(--gold); flex: none; padding-top: .6em; }
.do-note { margin-top: 2rem; color: var(--ink-soft); max-width: 48ch; }
.do-figure { margin: 0; overflow: hidden; border-radius: 6px; }
.do-figure img { width: 100%; height: 100%; min-height: 460px; object-fit: cover; object-position: 50% 40%; }

/* ============================================================
   Selected work — Swiper (on dark forest band)
   ============================================================ */
.work-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 1.5rem; margin-bottom: clamp(2rem,4vw,3.5rem); }
.work-swiper { overflow: visible; }
.work-swiper .swiper-slide { width: clamp(260px, 42vw, 440px); height: auto; }
.wcard { margin: 0; cursor: pointer; }
.wcard__media { overflow: hidden; border-radius: 6px; background: rgba(0,0,0,.2); transition: transform .6s cubic-bezier(.2,.6,.2,1); }
.wcard__media img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
/* Hover-zoom on the masked container (its transform is free; GSAP owns the img transform) */
@media (hover: hover) { .wcard:hover .wcard__media, .page-gallery figure:hover .wcard__media { transform: scale(1.03); } }
@media (prefers-reduced-motion: reduce) { .wcard__media { transition: none; } }
.wcard figcaption { padding-top: 0.9rem; font-size: 0.92rem; color: var(--cream-dim); display: flex; justify-content: space-between; gap: 1rem; }
.wcard figcaption .tag { color: var(--gold-soft); white-space: nowrap; }
.work-controls { display: flex; gap: 0.75rem; }
.work-controls button { width: 54px; height: 54px; border-radius: 999px; border: 1px solid var(--line-d); background: transparent; color: var(--cream-text); cursor: pointer; font-size: 1.2rem; transition: background-color .3s ease, color .3s ease, border-color .3s ease; }
@media (hover: hover) { .work-controls button:hover { background: var(--gold); color: var(--forest); border-color: var(--gold); } }
.work-controls button:disabled { opacity: .35; cursor: default; }
@media (prefers-reduced-motion: reduce) { .wcard__media img { transition: none; } }

/* ============================================================
   In the studio — film mosaic (cover-fills, no gaps)
   ============================================================ */
.studio-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(0.75rem, 1.6vw, 1.4rem); }
.studio-grid figure { margin: 0; overflow: hidden; border-radius: 6px; cursor: pointer; }
.studio-grid img { width: 100%; height: 100%; object-fit: cover; }
.sg-a { grid-column: 1 / 8; aspect-ratio: 3/2; }
.sg-b { grid-column: 8 / 13; aspect-ratio: 3/4; }
.sg-c { grid-column: 1 / 5; aspect-ratio: 3/4; }
.sg-d { grid-column: 5 / 13; aspect-ratio: 16/9; }
.sg-e { grid-column: 1 / 6; aspect-ratio: 3/2; }
.sg-f { grid-column: 6 / 13; aspect-ratio: 16/10; }
@media (max-width: 720px) { .sg-a,.sg-b,.sg-c,.sg-d,.sg-e,.sg-f { grid-column: 1 / 13; aspect-ratio: 3/2; } }

/* ============================================================
   Pricing / Booking
   ============================================================ */
.lead-2col { display: grid; gap: clamp(2rem,5vw,5rem); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 900px) { .lead-2col { grid-template-columns: 0.85fr 1.15fr; } }
.lead-2col h2 { line-height: 1; }
.contact-lines { list-style: none; margin: 1.75rem 0 0; padding: 0; display: grid; gap: 1.1rem; }
.contact-lines li { display: flex; align-items: baseline; gap: 0.85rem; font-size: clamp(1.05rem,1rem+.4vw,1.25rem); }
.contact-lines .ico { flex: none; width: 1.1em; color: var(--gold); position: relative; top: 3px; }
.contact-lines a { border-bottom: 1px solid color-mix(in srgb, currentColor 30%, transparent); padding-bottom: 1px; }
@media (hover: hover) { .contact-lines a:hover { border-color: var(--gold); } }

/* ============================================================
   Process (forest)
   ============================================================ */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: clamp(1.5rem,3vw,2.5rem); counter-reset: step; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(2, 1fr); column-gap: clamp(2rem,5vw,5rem); } }
.steps li { counter-increment: step; padding-top: 1.4rem; border-top: 1px solid var(--line-d); }
.steps li::before { content: counter(step,decimal-leading-zero); font-family: var(--serif); font-size: clamp(2rem,3vw,3rem); display: block; margin-bottom: .3rem; color: var(--gold-soft); }
.steps strong { font-weight: 600; }
.steps p { color: var(--cream-dim); margin: .3rem 0 0; }
.steps__note { margin-top: 2.5rem; font-style: italic; font-family: var(--serif); font-size: 1.3rem; color: var(--gold-soft); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; }
.faq details { border-bottom: 1px solid var(--line-l); }
.faq details:first-of-type { border-top: 1px solid var(--line-l); }
.faq summary { list-style: none; cursor: pointer; padding: clamp(1.1rem,2vw,1.6rem) 3rem clamp(1.1rem,2vw,1.6rem) 0; position: relative; font-family: var(--serif); font-size: clamp(1.3rem,1.1rem+.7vw,1.8rem); line-height: 1.2; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: .4rem; top: 50%; width: 13px; height: 13px; margin-top: -8px; border-right: 1.5px solid var(--gold); border-bottom: 1.5px solid var(--gold); transform: rotate(45deg); transition: transform .35s ease; }
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq details > div { padding: 0 0 1.5rem; }
.faq details p { margin: 0; color: var(--ink-soft); max-width: 68ch; }
@media (prefers-reduced-motion: reduce) { .faq summary::after { transition: none; } }

/* ============================================================
   Explore by style
   ============================================================ */
.style-links { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.style-links a { font-size: 0.92rem; padding: 0.7em 1.3em; border-radius: 999px; border: 1px solid color-mix(in srgb, currentColor 28%, transparent); transition: background-color .3s ease, color .3s ease, border-color .3s ease; }
@media (hover: hover) { .style-links a:hover { background: var(--gold); color: var(--forest); border-color: var(--gold); } }
.section--forest .style-links a, .section--olive .style-links a { border-color: var(--line-d); }
@media (hover: hover) { .section--forest .style-links a:hover, .section--olive .style-links a:hover { background: var(--gold); color: var(--forest); border-color: var(--gold); } }

/* ============================================================
   Footer (deep forest)
   ============================================================ */
.site-footer { background: var(--forest); color: var(--cream-dim); padding-block: clamp(3.5rem,7vw,6rem); }
.footer-top { display: grid; gap: 2.5rem; grid-template-columns: 1fr; margin-bottom: 3rem; }
@media (min-width: 760px) { .footer-top { grid-template-columns: 1.6fr 1fr 1fr; } }
.footer-top .wordmark { color: var(--cream-text); display: inline-block; margin-bottom: 1rem; }
.footer-top h4 { color: var(--cream-text); font-family: var(--sans); font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 500; margin: 0 0 1rem; }
.footer-top ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .65rem; }
.footer-top a { border-bottom: 1px solid transparent; }
@media (hover: hover) { .footer-top a:hover { color: var(--gold-soft); border-color: var(--line-d); } }
.footer-address { font-style: normal; line-height: 1.8; }
.footer-bottom { padding-top: 1.5rem; border-top: 1px solid var(--line-d); font-size: .8rem; color: rgba(239,231,213,.5); display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; }

/* ============================================================
   Lightbox
   ============================================================ */
.lightbox { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: clamp(1rem,4vw,3rem); background: rgba(16,21,12,.96); }
.lightbox[data-open="true"] { display: flex; }
.lightbox__fig { margin: 0; max-width: 100%; max-height: 100%; text-align: center; }
.lightbox__img { max-width: 100%; max-height: 84vh; margin-inline: auto; border-radius: 6px; box-shadow: 0 40px 90px rgba(0,0,0,.55); }
.lightbox__cap { color: var(--cream-dim); font-size: .95rem; margin-top: 1.1rem; }
.lightbox__btn { position: absolute; top: 50%; transform: translateY(-50%); width: 56px; height: 56px; border-radius: 999px; border: 1px solid var(--line-d); background: transparent; color: var(--cream-text); font-size: 1.3rem; cursor: pointer; }
.lightbox__btn--prev { left: clamp(.75rem,2vw,2rem); }
.lightbox__btn--next { right: clamp(.75rem,2vw,2rem); }
.lightbox__close { position: absolute; top: clamp(1rem,3vw,2rem); right: clamp(1rem,3vw,2rem); width: 52px; height: 52px; border-radius: 999px; border: 1px solid var(--line-d); background: transparent; color: var(--cream-text); font-size: 1.5rem; cursor: pointer; }
@media (hover: hover) { .lightbox__btn:hover, .lightbox__close:hover { background: var(--gold); color: var(--forest); border-color: var(--gold); } }

/* ============================================================
   Inner SEO pages
   ============================================================ */
.page-hero { padding-top: clamp(8rem, 14vw, 12rem); padding-bottom: clamp(3rem,6vw,5rem); }
.breadcrumb { font-size: .82rem; color: var(--ink-soft); margin-bottom: 2rem; }
.breadcrumb a { border-bottom: 1px solid var(--gold); }
.breadcrumb span { color: var(--moss); margin-inline: .45rem; }
.page-gallery { display: grid; gap: clamp(.75rem,1.6vw,1.4rem); grid-template-columns: repeat(2,1fr); }
@media (min-width: 760px) { .page-gallery { grid-template-columns: repeat(3,1fr); } }
.page-gallery figure { margin: 0; cursor: pointer; }
.page-gallery .wcard__media { border-radius: 6px; background: var(--cream-2); }
.page-gallery figcaption { padding-top: .8rem; font-size: .9rem; color: var(--ink-soft); }
.cta-band { text-align: center; }
.cta-band h2 { max-width: 16ch; margin-inline: auto; }
.cta-band .lede { margin-inline: auto; margin-top: 1.25rem; max-width: 42ch; }
.cta-band .btn { margin-top: 2rem; }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--forest); color: var(--cream-text); padding: .75rem 1.25rem; z-index: 200; }
.skip-link:focus { left: 1rem; top: 1rem; }
