/* ==========================================================================
   Glenbeg Caravan & Camping Park — "Atlantic Edge"
   Spec/demo redesign. Plain CSS, mobile-first, no build step.
   Design tokens live in :root. Swap colours/fonts there to re-skin.
   ========================================================================== */

/* ---- Design tokens ------------------------------------------------------- */
:root {
  /* Palette */
  --teal:      #0E3B3B;   /* deep sea-teal — primary ink / dark sections */
  --pine:      #14504A;   /* deep pine — secondary surface */
  --oat:       #E8DFCF;   /* sandy oat — warm neutral surface */
  --gold:      #E8A33D;   /* gorse gold — single accent, use sparingly */
  --gold-deep: #C9832A;   /* gold hover */
  --offwhite:  #FAF7F0;   /* page background */
  --ink:       #10201F;   /* body text on light */
  --ink-soft:  #40514E;   /* muted body text */
  --line:      rgba(16,32,31,.14);   /* hairline on light */
  --line-dark: rgba(232,223,207,.18); /* hairline on dark */

  /* Type */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body:    "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --mono:    ui-monospace, "SFMono-Regular", "Cascadia Code", Menlo, monospace;

  /* Fluid type scale */
  --step--1: clamp(0.83rem, 0.80rem + 0.15vw, 0.92rem);
  --step-0:  clamp(1rem, 0.96rem + 0.22vw, 1.13rem);
  --step-1:  clamp(1.25rem, 1.16rem + 0.45vw, 1.55rem);
  --step-2:  clamp(1.6rem, 1.42rem + 0.9vw, 2.25rem);
  --step-3:  clamp(2.1rem, 1.75rem + 1.7vw, 3.3rem);
  --step-4:  clamp(2.7rem, 2.0rem + 3.4vw, 5rem);

  /* Space + shape */
  --container: 1180px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 18px 50px -24px rgba(14, 59, 59, .5);
  --shadow-soft: 0 8px 30px -18px rgba(14, 59, 59, .45);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---- Reset / base -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--offwhite);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 550; line-height: 1.08; letter-spacing: -0.015em; }
h1 { font-optical-sizing: auto; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ---- Layout helpers ------------------------------------------------------ */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.stack > * + * { margin-top: 1rem; }
.center { text-align: center; }
.lead { font-size: var(--step-1); color: var(--ink-soft); font-family: var(--body); line-height: 1.5; }
.muted { color: var(--ink-soft); }

/* Eyebrow + coordinates — the recurring "you are here" motif */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--mono);
  font-size: var(--step--1);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: currentColor; opacity: .6;
}
.coords {
  font-family: var(--mono);
  font-size: var(--step--1);
  letter-spacing: .1em;
  color: var(--ink-soft);
}

/* ---- Buttons ------------------------------------------------------------- */
.btn {
  --btn-bg: var(--gold);
  --btn-fg: var(--teal);
  display: inline-flex; align-items: center; gap: .55rem; white-space: nowrap;
  padding: .85rem 1.5rem;
  background: var(--btn-bg); color: var(--btn-fg);
  font-family: var(--body); font-weight: 600; font-size: var(--step-0);
  border: 1px solid transparent; border-radius: 999px;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
  will-change: transform;
}
.btn:hover { background: var(--gold-deep); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn:active { transform: translateY(0); }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--offwhite);
  border-color: var(--line-dark);
}
.btn--ghost:hover { background: rgba(250,247,240,.08); border-color: var(--offwhite); }
.btn--ink { --btn-bg: var(--teal); --btn-fg: var(--offwhite); }
.btn--ink:hover { background: var(--pine); }
.btn--lg { padding: .9rem 1.7rem; font-size: var(--step-1); }

/* ---- Header / nav -------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--offwhite) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 68px;
}
.brand { display: flex; align-items: center; gap: .7rem; font-family: var(--display); font-weight: 600; font-size: 1.25rem; letter-spacing: -0.02em; color: var(--teal); }
.brand__mark { width: 34px; height: 34px; flex: 0 0 auto; }
.brand small { display: block; font-family: var(--mono); font-size: .58rem; letter-spacing: .22em; color: var(--gold-deep); text-transform: uppercase; font-weight: 500; }
.nav__links { display: flex; align-items: center; gap: .35rem; list-style: none; }
.nav__links a {
  padding: .5rem .8rem; border-radius: 999px; font-size: var(--step--1); font-weight: 500; letter-spacing: .01em;
  color: var(--ink-soft); transition: color .2s, background .2s;
}
.nav__links a:hover { color: var(--teal); background: rgba(20,80,74,.07); }
.nav__links a[aria-current="page"] { color: var(--teal); background: rgba(20,80,74,.1); }
.nav__cta { display: flex; align-items: center; gap: .6rem; }
.nav__toggle { display: none; }

/* Mobile nav */
@media (max-width: 860px) {
  .nav__toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 12px;
    background: transparent; cursor: pointer;
  }
  .nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
    content: ""; display: block; width: 20px; height: 2px; background: var(--teal); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s;
  }
  .nav__toggle span::before { transform: translateY(-6px); }
  .nav__toggle span::after { transform: translateY(4px); }
  .nav[data-open="true"] .nav__toggle span { background: transparent; }
  .nav[data-open="true"] .nav__toggle span::before { transform: rotate(45deg); }
  .nav[data-open="true"] .nav__toggle span::after { transform: rotate(-45deg) translateY(-1.4px); }

  .nav__links {
    position: absolute; inset: 68px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: .2rem;
    padding: 1rem var(--gutter) 1.6rem;
    background: var(--offwhite); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: transform .28s var(--ease), opacity .28s var(--ease);
  }
  .nav[data-open="true"] .nav__links { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a { padding: .8rem .9rem; font-size: 1.05rem; }
  .nav__cta .btn { display: none; }  /* CTA lives in the menu on mobile */
  .nav__links .btn { display: inline-flex; justify-content: center; margin-top: .5rem; }
}
@media (min-width: 861px) { .nav__links .btn { display: none; } }

/* ---- Media placeholders --------------------------------------------------
   Cohesive palette-toned plates standing in for real photography.
   To use a real photo: replace the <figure class="media ..."> with
   <img src="assets/img/your-photo.jpg" alt="..."> (see README).
   -------------------------------------------------------------------------- */
.media {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background:
    radial-gradient(120% 90% at 20% 15%, rgba(232,223,207,.35), transparent 60%),
    linear-gradient(155deg, var(--pine), var(--teal) 70%);
  color: var(--oat);
  display: grid; place-content: center; text-align: center;
  min-height: 220px; isolation: isolate;
}
.media::after {  /* subtle horizon line */
  content: ""; position: absolute; left: 0; right: 0; top: 62%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,163,61,.5), transparent);
}
.media__tag {
  position: absolute; top: .8rem; left: .8rem;
  font-family: var(--mono); font-size: .6rem; letter-spacing: .16em; text-transform: uppercase;
  padding: .3rem .55rem; border-radius: 6px; background: rgba(16,32,31,.4); color: var(--oat);
  backdrop-filter: blur(2px);
}
.media__label { font-family: var(--display); font-size: var(--step-1); opacity: .92; padding: 1rem; }
.media__label small { display: block; font-family: var(--mono); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; opacity: .7; margin-top: .4rem; }
/* Scene tints so plates don't all look identical */
.media--beach  { background: linear-gradient(160deg, #1c6f74, #0E3B3B 75%); }
.media--dunes  { background: linear-gradient(160deg, #5f7d4e, #24483c 78%); }
.media--sunset { background: linear-gradient(160deg, #b9752f, #3a3f4f 80%); }
.media--island { background: linear-gradient(160deg, #2b4a5c, #10201f 80%); }
.media--tall { min-height: 340px; }
.media--16x9 { aspect-ratio: 16 / 9; min-height: 0; }
.media--4x3  { aspect-ratio: 4 / 3; min-height: 0; }
.media--square { aspect-ratio: 1 / 1; min-height: 0; }

/* Real photo layered over a plate. Add class media--photo + inline
   background-image. Bottom scrim keeps any caption legible. */
.media--photo { background-size: cover !important; background-position: center; color: #fff; }
.media--photo::after {
  content: ""; position: absolute; inset: 0; top: 0; height: 100%;
  background: linear-gradient(180deg, rgba(8,24,23,0) 45%, rgba(8,24,23,.6)); z-index: 1;
}
.media--photo .media__tag { display: none; }
.media--photo .media__label {
  position: absolute; left: 1.1rem; right: 1.1rem; bottom: .95rem; z-index: 2;
  text-align: left; padding: 0; font-size: var(--step-1);
  text-shadow: 0 1px 14px rgba(0,0,0,.55);
}
.media--photo .media__label small { opacity: .95; text-shadow: none; }
.pitch-card .media--photo .media__label { display: none; }  /* type name lives in the card body */

/* ---- Hero ---------------------------------------------------------------- */
.hero {
  position: relative; color: var(--offwhite);
  background: linear-gradient(165deg, #0c4a4a 0%, var(--teal) 45%, #0a2f2f 100%);
  overflow: hidden;
}
.hero__bg {  /* stand-in for full-bleed hero photograph */
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(80% 60% at 75% 10%, rgba(232,163,61,.28), transparent 55%),
    radial-gradient(90% 70% at 15% 90%, rgba(20,80,74,.7), transparent 60%),
    linear-gradient(160deg, #12595a, #0a2f2f 85%);
}
.hero__bg::after {  /* far horizon glow */
  content: ""; position: absolute; left: -5%; right: -5%; top: 46%; height: 30%;
  background: radial-gradient(60% 100% at 50% 0, rgba(232,223,207,.16), transparent 70%);
}
.hero__photo-tag {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  font-family: var(--mono); font-size: .6rem; letter-spacing: .16em; text-transform: uppercase;
  padding: .35rem .6rem; border-radius: 6px; background: rgba(10,32,31,.5); color: var(--oat); border: 1px solid var(--line-dark);
}
.hero__inner { position: relative; z-index: 2; padding-block: clamp(4rem, 12vw, 8.5rem); }
.hero__grid { display: grid; gap: 2rem; }
.hero h1 {
  font-size: var(--step-4); font-weight: 500;
  max-width: 14ch; letter-spacing: -0.03em;
}
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 500; }
.hero .lead { color: rgba(250,247,240,.82); max-width: 46ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: .5rem; }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 1.4rem 2rem; margin-top: 2.4rem;
  padding-top: 1.6rem; border-top: 1px solid var(--line-dark);
}
.hero__meta div { display: grid; gap: .1rem; }
.hero__meta dt { font-family: var(--mono); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.hero__meta dd { font-family: var(--display); font-size: var(--step-1); }

/* ---- Tideline divider (the signature motion element) --------------------- */
.tideline { display: block; width: 100%; height: 40px; color: var(--gold); overflow: hidden; }
.tideline svg { width: 200%; max-width: none; height: 100%; animation: tide 14s linear infinite; }
@keyframes tide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.tideline--flip { transform: scaleY(-1); }
/* Wave in the NEXT section's colour, lifted up so its crests overlap the
   image above — reads as the section flowing up over the photo edge. */
.tideline--overlap { margin-top: -40px; position: relative; z-index: 3; pointer-events: none; }

/* Section headers */
.section-head { max-width: 62ch; }
.section-head h2 { font-size: var(--step-3); margin-top: .6rem; }
.section-head .lead { margin-top: .9rem; }

/* ---- Pitch cards --------------------------------------------------------- */
.grid { display: grid; gap: 1.4rem; }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); }

.pitch-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.pitch-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pitch-card .media { border-radius: 0; }
.pitch-card__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.pitch-card h3 { font-size: var(--step-2); }
.pitch-card__price { font-family: var(--mono); font-size: var(--step--1); letter-spacing: .04em; color: var(--gold-deep); }
.pitch-card__price b { font-family: var(--display); font-size: var(--step-1); color: var(--teal); font-weight: 600; letter-spacing: 0; }
.pitch-card ul { list-style: none; padding: 0; display: grid; gap: .35rem; margin-top: .3rem; font-size: var(--step--1); color: var(--ink-soft); }
.pitch-card li { display: flex; gap: .55rem; align-items: baseline; }
.pitch-card li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex: 0 0 auto; transform: translateY(-1px); }
.pitch-card .btn { margin-top: auto; align-self: flex-start; }

/* ---- Facilities ---------------------------------------------------------- */
.facilities { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.facility { background: var(--offwhite); padding: 1.5rem 1.4rem; display: grid; gap: .5rem; align-content: start; }
.facility__icon { width: 34px; height: 34px; color: var(--gold-deep); }
.facility h3 { font-family: var(--body); font-weight: 600; font-size: var(--step-0); letter-spacing: 0; }
.facility p { font-size: var(--step--1); color: var(--ink-soft); }

/* Compact facility chips (used on home) */
.chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.chip { display: inline-flex; align-items: center; gap: .5rem; padding: .5rem .9rem; border: 1px solid var(--line); border-radius: 999px; font-size: var(--step--1); background: #fff; }
.chip svg { width: 18px; height: 18px; color: var(--gold-deep); }

/* ---- Dark feature band --------------------------------------------------- */
.band { background: var(--teal); color: var(--offwhite); }
.band .eyebrow { color: var(--gold); }
.band .lead { color: rgba(250,247,240,.8); }
.band .section-head h2 { color: var(--offwhite); }
.band-grid { display: grid; gap: 2.2rem; align-items: center; }
@media (min-width: 820px) { .band-grid { grid-template-columns: 1.05fr 1fr; gap: clamp(2rem,5vw,4rem); } }
.feature-list { list-style: none; padding: 0; display: grid; gap: 1.1rem; margin-top: 1.6rem; }
.feature-list li { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; padding-top: 1.1rem; border-top: 1px solid var(--line-dark); }
.feature-list .num { font-family: var(--mono); font-size: var(--step--1); color: var(--gold); letter-spacing: .1em; }
.feature-list h3 { font-family: var(--body); font-weight: 600; font-size: var(--step-0); letter-spacing: 0; }
.feature-list p { font-size: var(--step--1); color: rgba(250,247,240,.72); margin-top: .2rem; }

/* ---- Gallery ------------------------------------------------------------- */
.gallery {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
.gallery button {
  border: 0; padding: 0; cursor: pointer; background: none; border-radius: var(--radius); overflow: hidden;
}
.gallery .media { min-height: 0; aspect-ratio: 4/3; border-radius: var(--radius); transition: transform .4s var(--ease); }
.gallery button:hover .media { transform: scale(1.03); }
.gallery .wide { grid-column: span 2; }
.gallery .wide .media { aspect-ratio: 16/9; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; grid-template-columns: minmax(0, 1fr); padding: 1.5rem;
  background: rgba(8,24,23,.9); backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s;
}
.lightbox[data-open="true"] { opacity: 1; visibility: visible; }
.lightbox__stage { width: min(920px, 100%); min-width: 0; justify-self: center; }
.lightbox .media { min-height: 0; aspect-ratio: 16/9; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.lightbox__bar { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-top: 1rem; color: var(--oat); font-family: var(--mono); font-size: var(--step--1); letter-spacing: .08em; }
.lightbox__bar [data-caption] { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lightbox__bar > div { flex-shrink: 0; }
.lightbox__bar [data-counter] { white-space: nowrap; }
.lightbox__close, .lightbox__nav button {
  background: rgba(250,247,240,.1); border: 1px solid var(--line-dark); color: var(--oat);
  width: 44px; height: 44px; border-radius: 50%; cursor: pointer; font-size: 1.2rem; display: grid; place-items: center; line-height: 1; letter-spacing: 0;
}
.lightbox__close { position: absolute; top: 1rem; right: 1rem; }
.lightbox__nav { display: flex; gap: .6rem; }
.lightbox__nav button:hover, .lightbox__close:hover { background: rgba(250,247,240,.22); }
@media (max-width: 560px) {
  .lightbox__bar { flex-direction: column; align-items: stretch; gap: .7rem; }
  .lightbox__bar [data-caption] { white-space: normal; overflow: visible; text-overflow: clip; }
  .lightbox__bar > div { justify-content: space-between; }
}

/* ---- Booking / inquiry form ---------------------------------------------- */
.book-grid { display: grid; gap: 2.4rem; }
@media (min-width: 900px) { .book-grid { grid-template-columns: 1.1fr .9fr; gap: clamp(2rem,5vw,4rem); align-items: start; } }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.4rem, 4vw, 2.4rem); box-shadow: var(--shadow-soft); }
.field-row { display: grid; gap: 1.1rem; }
@media (min-width: 560px) { .field-row--2 { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: .4rem; margin-top: 1.1rem; }
.field:first-child { margin-top: 0; }
.field label { font-size: var(--step--1); font-weight: 600; }
.field .hint { font-weight: 400; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem .9rem; background: var(--offwhite);
  border: 1px solid var(--line); border-radius: 10px; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(232,163,61,.22); }
.field textarea { min-height: 110px; resize: vertical; }
.form-actions { margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.form-note { font-size: var(--step--1); color: var(--ink-soft); }
.form-status { margin-top: 1.2rem; padding: 1rem 1.1rem; border-radius: 12px; border: 1px solid var(--line); background: var(--oat); font-size: var(--step--1); display: none; }
.form-status[data-show="true"] { display: block; }
.form-status--ok { background: rgba(20,80,74,.1); border-color: rgba(20,80,74,.3); color: var(--pine); }
.form-status--err { background: rgba(176,58,46,.09); border-color: rgba(176,58,46,.32); color: #9b2f24; }
.form-status--err a { color: inherit; }
.form-status--pending { background: var(--oat); border-color: var(--line); color: var(--ink-soft); }

.aside-card { background: var(--teal); color: var(--offwhite); border-radius: var(--radius-lg); padding: clamp(1.4rem,4vw,2rem); }
.aside-card .eyebrow { color: var(--gold); }
.aside-card h3 { color: var(--offwhite); font-size: var(--step-2); margin-top: .5rem; }
.aside-card ul { list-style: none; padding: 0; display: grid; gap: .9rem; margin-top: 1.2rem; }
.aside-card li { display: grid; grid-template-columns: auto 1fr; gap: .8rem; font-size: var(--step--1); color: rgba(250,247,240,.85); align-items: start; }
.aside-card svg { width: 20px; height: 20px; color: var(--gold); margin-top: .15rem; }
.aside-card a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* ---- Location / contact -------------------------------------------------- */
.map-embed {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
  min-height: 360px; background: linear-gradient(160deg, #1c6f74, #0E3B3B 80%); display: grid; place-items: center; color: var(--oat);
}
.map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-embed__hint { text-align: center; padding: 2rem; font-family: var(--mono); font-size: var(--step--1); letter-spacing: .06em; line-height: 1.8; }
.info-list { list-style: none; padding: 0; display: grid; gap: 1.4rem; }
.info-list li { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; padding-bottom: 1.4rem; border-bottom: 1px solid var(--line); }
.info-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.info-list svg { width: 24px; height: 24px; color: var(--gold-deep); margin-top: .1rem; }
.info-list dt { font-weight: 600; font-size: var(--step-0); }
.info-list dd { color: var(--ink-soft); font-size: var(--step--1); }
.info-list a { color: var(--pine); text-decoration: underline; text-underline-offset: 3px; }

/* ---- CTA strip ----------------------------------------------------------- */
.cta-strip { background: linear-gradient(150deg, var(--pine), var(--teal)); color: var(--offwhite); border-radius: var(--radius-lg); padding: clamp(2rem, 6vw, 3.6rem); text-align: center; }
.cta-strip h2 { font-size: var(--step-3); max-width: 20ch; margin-inline: auto; }
.cta-strip .lead { color: rgba(250,247,240,.82); max-width: 48ch; margin: 1rem auto 1.8rem; }
.cta-strip .btn { margin-inline: .3rem; }
@media (max-width: 560px) {
  .cta-strip .btn { display: flex; justify-content: center; width: 100%; max-width: 260px; margin: .7rem auto 0; padding: .8rem 1.4rem; font-size: var(--step-0); }
}

/* ---- Footer -------------------------------------------------------------- */
.site-footer { background: var(--teal); color: rgba(250,247,240,.75); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); }
.footer-grid h4 { font-family: var(--mono); font-weight: 500; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.site-footer .brand { color: var(--offwhite); }
.site-footer ul { list-style: none; padding: 0; display: grid; gap: .6rem; font-size: var(--step--1); }
.site-footer a:hover { color: var(--offwhite); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; margin-top: 2.6rem; padding-top: 1.6rem; border-top: 1px solid var(--line-dark); font-family: var(--mono); font-size: .68rem; letter-spacing: .06em; color: rgba(250,247,240,.55); }

/* ---- Scroll reveal (progressive enhancement) ----------------------------
   Only hide when JS is active (<html class="js">). No JS = content visible. */
.reveal { transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal { opacity: 0; transform: translateY(22px); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .tideline svg { animation: none; }
}

/* ---- Demo ribbon (remove before client handover) ------------------------- */
.demo-ribbon {
  position: fixed; bottom: 1rem; left: 1rem; z-index: 90;
  font-family: var(--mono); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase;
  background: var(--gold); color: var(--teal); padding: .45rem .8rem; border-radius: 999px; box-shadow: var(--shadow-soft);
}
