﻿/* ============================================================
   GLASS CASTLE LUXURY PROPERTIES
   Editorial travel-magazine design system.
   Cream base, navy text, Rausch pink + gold accents.
   Fraunces headings, Lato body.
   ============================================================ */

:root {
  --navy: #0A1F44;
  --magenta: #FF385C;
  --magenta-deep: #E31C5F;
  --gold: #F5A623;
  --teal: #01696F;
  --cream: #F8F5EE;
  --white: #FFFFFF;
  --ink: #0A1F44;
  --muted: rgba(10, 31, 68, 0.75);
  --hairline: rgba(10, 31, 68, 0.12);
  --shadow-sm: 0 2px 10px rgba(10, 31, 68, 0.06);
  --shadow-md: 0 12px 40px rgba(10, 31, 68, 0.10);
  --shadow-lg: 0 24px 70px rgba(10, 31, 68, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--navy);
  font-family: 'Lato', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0;
}

a { color: inherit; text-decoration: none; }

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

.tnum { font-variant-numeric: tabular-nums; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 10px 16px;
  z-index: 10000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px){ .wrap { padding: 0 40px; } }

.eyebrow {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--magenta);
}
.eyebrow--gold { color: var(--gold); }
.eyebrow--light { color: rgba(255,255,255,0.85); }

.section-title {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.05;
  color: var(--navy);
}
.section-title--light { color: #fff; }

.lede {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 62ch;
}

.rule {
  display: block;
  width: 64px;
  height: 3px;
  background: var(--magenta);
  border-radius: 3px;
}
.rule--gold { background: var(--gold); }
.rule--center { margin-left: auto; margin-right: auto; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(248, 245, 238, 0.86);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--hairline);
  transition: background 0.3s var(--ease);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px){ .site-header__inner { padding: 0 40px; } }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
}
.brand__mark { width: 34px; height: 34px; color: var(--magenta); flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.brand__sub {
  font-family: 'Lato', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav { display: none; align-items: center; gap: 30px; }
@media (min-width: 940px){ .nav { display: flex; } }
.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  padding: 4px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--magenta);
  transition: width 0.25s var(--ease);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.nav a[aria-current="page"] { color: var(--magenta); }

.btn.header-cta,
.header-cta {
  display: none;
}
@media (min-width: 940px){ .btn.header-cta, .header-cta { display: inline-flex; } }

/* Mobile menu */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  color: var(--navy);
}
@media (min-width: 940px){ .nav-toggle { display: none; } }
.mobile-nav {
  display: none;
  border-top: 1px solid var(--hairline);
  background: var(--cream);
}
.mobile-nav[data-open="true"] { display: block; }
.mobile-nav a {
  display: block;
  padding: 14px 24px;
  font-weight: 500;
  border-bottom: 1px solid var(--hairline);
}
.mobile-nav a:last-child { border-bottom: none; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s var(--ease), background 0.18s var(--ease), box-shadow 0.18s var(--ease), color 0.18s var(--ease);
  text-align: center;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid rgba(255,56,92,0.4); outline-offset: 2px; }

.btn--gold { background: var(--gold); color: var(--navy); box-shadow: 0 10px 26px rgba(245,166,35,0.30); }
.btn--gold:hover { background: #e0940f; }

.btn--outline { background: transparent; color: var(--navy); border-color: rgba(10,31,68,0.28); }
.btn--outline:hover { border-color: var(--navy); background: var(--navy); color: #fff; }

.btn--onnavy { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn--onnavy:hover { background: #fff; color: var(--navy); }

.btn--lg { padding: 18px 40px; font-size: 1.05rem; }
.btn--block { width: 100%; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--magenta);
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.2s var(--ease), gap 0.2s var(--ease);
}
.text-link:hover { border-color: var(--magenta); gap: 10px; }
.text-link--onnavy { color: #fff; }
.text-link--onnavy:hover { border-color: rgba(255,255,255,0.7); }

/* ============================================================
   HERO (home)
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,31,68,0.30) 0%, rgba(10,31,68,0.10) 40%, rgba(10,31,68,0.78) 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding: 0 24px 64px; }
@media (min-width: 768px){ .hero__inner { padding: 0 40px 80px; } }
.hero__content { max-width: 1200px; margin: 0 auto; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 6.4vw, 5rem);
  font-weight: 600;
  max-width: 15ch;
  text-shadow: 0 2px 30px rgba(10,31,68,0.4);
}
.hero__sub {
  margin-top: 20px;
  max-width: 52ch;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 16px rgba(10,31,68,0.5);
}
.hero__actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }

/* ============================================================
   PROPERTY (page) HERO
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 76vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.page-hero__media { position: absolute; inset: 0; z-index: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,31,68,0.28) 0%, rgba(10,31,68,0.06) 45%, rgba(10,31,68,0.82) 100%);
}
.page-hero__inner { position: relative; z-index: 2; width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px 56px; }
@media (min-width: 768px){ .page-hero__inner { padding: 0 40px 72px; } }
.page-hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5.6vw, 4.4rem);
  max-width: 16ch;
  text-shadow: 0 2px 30px rgba(10,31,68,0.45);
}
.page-hero__strap {
  margin-top: 16px;
  max-width: 54ch;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 16px rgba(10,31,68,0.5);
}
.page-hero__actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 72px 0; }
@media (min-width: 768px){ .section { padding: 100px 0; } }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--navy { background: var(--navy); color: #fff; }
.section--tint { background: #F1ECE0; }

.section-head { max-width: 62ch; }
.section-head--center { margin: 0 auto; text-align: center; }

/* ============================================================
   PROPERTY CARDS (home grid + cross-sell)
   ============================================================ */
.property-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 700px){ .property-grid { grid-template-columns: repeat(2, 1fr); } }

/* The "other properties" strip on a property page. This used to carry an
   inline repeat(3,1fr), and an inline style outranks every media query, so
   the three cards stayed three across on a phone at 90px each and the text
   spilled straight out of them. One column on a phone, three once there is
   room for them. */
.property-grid--trio { grid-template-columns: 1fr; }
@media (min-width: 640px){ .property-grid--trio { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px){ .property-grid--trio { grid-template-columns: repeat(3, 1fr); } }

.pcard {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pcard__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.pcard:hover .pcard__media img { transform: scale(1.06); }
.pcard__tag {
  position: absolute; top: 16px; left: 16px;
  background: rgba(248,245,238,0.94);
  color: var(--navy);
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
}
.pcard__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.pcard__name { font-size: 1.5rem; }
.pcard__meta { margin-top: 8px; font-size: 0.82rem; letter-spacing: 0.04em; color: var(--muted); font-weight: 500; }
.pcard__desc { margin-top: 12px; font-size: 0.95rem; color: var(--muted); flex: 1; }
.pcard__foot { margin-top: 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.pcard__rate { font-size: 0.85rem; font-weight: 600; color: var(--gold); }

/* ============================================================
   QUICK FACTS STRIP
   ============================================================ */
.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  overflow: hidden;
}
@media (min-width: 700px){ .facts { grid-template-columns: repeat(4, 1fr); } }
.fact {
  background: #fff;
  padding: 26px 18px;
  text-align: center;
}
.fact__num {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--navy);
  line-height: 1;
}
.fact__label {
  margin-top: 8px;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px){ .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px){ .gallery { grid-template-columns: repeat(3, 1fr); } }

.photo {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/2;
  background: #ece6da;
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
}
.photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.photo:hover img { transform: scale(1.07); }
.photo:focus-visible { outline: 3px solid var(--magenta); outline-offset: 3px; }
.photo figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(10,31,68,0.82));
  color: #fff;
  padding: 30px 16px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.photo:hover figcaption, .photo:focus-visible figcaption { opacity: 1; transform: translateY(0); }
.photo--wide { grid-column: span 1; }
@media (min-width: 640px){ .photo--wide { grid-column: span 2; aspect-ratio: 21/9; } }

/* ============================================================
   FEATURES (amenity columns)
   ============================================================ */
.feature-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}
@media (min-width: 700px){ .feature-cols { grid-template-columns: repeat(2, 1fr); } }
.feature-card {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 28px 26px;
}
.feature-card h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.feature-list { list-style: none; margin: 0; padding: 0; }
.feature-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 0.95rem;
  color: var(--muted);
  border-bottom: 1px solid var(--hairline);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: "";
  position: absolute;
  left: 2px; top: 15px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

/* ============================================================
   SPLIT (image + text)
   ============================================================ */
/* minmax(0,...) rather than a bare fr. A bare fr track cannot shrink below
   its content's min-content width, and the enquiry form holds a select whose
   min-content width is set by its longest option, "The Glass Castle Retreat".
   That pushed the column to 412px inside a 327px phone and the card was
   clipped. The select is also capped so it can never do this again. */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px){ .split { grid-template-columns: minmax(0,1.05fr) minmax(0,0.95fr); gap: 64px; } }
.form-card select, .form-card input, .form-card textarea { max-width: 100%; }
.split--reverse .split__media { order: -1; }
@media (min-width: 900px){ .split--reverse .split__media { order: 2; } }
.split__media {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 3/2;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   LOCATION / DISTANCES
   ============================================================ */
.distance-list { list-style: none; margin: 0; padding: 0; }
.distance-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
}
.distance-list li:last-child { border-bottom: none; }
.distance-list .place { font-weight: 500; color: var(--navy); }
.distance-list .dist { font-variant-numeric: tabular-nums; font-weight: 600; color: var(--gold); white-space: nowrap; }
.map-frame {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 0;
  width: 100%;
  aspect-ratio: 4/3;
  filter: saturate(0.9);
}

/* ============================================================
   BOOKING CTA BLOCK (property page)
   ============================================================ */
.book-block {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 22px;
  padding: 40px 30px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
@media (min-width: 700px){ .book-block { padding: 52px 48px; } }
.book-block .ah-cta { min-width: 280px; }
.book-note { margin-top: 20px; font-size: 0.9rem; color: var(--muted); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quotes { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 800px){ .quotes { grid-template-columns: repeat(3, 1fr); } }
.quote {
  background: #fff;
  border-radius: 16px;
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--gold);
}
.quote__mark { font-family: 'Lato', sans-serif; font-size: 3rem; line-height: 0.6; color: var(--magenta); opacity: 0.35; }
.quote__text { margin-top: 6px; font-size: 1rem; color: var(--navy); font-style: italic; }
.quote__who { margin-top: 18px; font-weight: 600; font-size: 0.9rem; }
.quote__loc { font-size: 0.8rem; color: var(--muted); }

/* ============================================================
   FORMS / ENQUIRY DRAWER
   ============================================================ */
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(10,31,68,0.55);
  backdrop-filter: blur(3px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.drawer-overlay[data-open="true"] { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(460px, 100%);
  background: var(--cream);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  overflow-y: auto;
  box-shadow: -20px 0 60px rgba(10,31,68,0.25);
}
.drawer[data-open="true"] { transform: translateX(0); }
.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 26px;
  border-bottom: 1px solid var(--hairline);
  position: sticky; top: 0; background: var(--cream); z-index: 2;
}
.drawer__title { font-family: 'Lato', sans-serif; font-size: 1.35rem; }
.drawer__close {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--hairline); background: #fff;
  cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
  color: var(--navy);
}
.drawer__close:hover { background: var(--magenta); color: #fff; border-color: var(--magenta); }
.drawer__body { padding: 26px; }
.drawer__intro { font-size: 0.92rem; color: var(--muted); margin-bottom: 22px; }

.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; margin-bottom: 7px; color: var(--navy); }
.field .req { color: var(--magenta); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--hairline);
  border-radius: 10px;
  background: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--navy);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(255,56,92,0.14);
}
.field textarea { resize: vertical; min-height: 90px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-status { margin-top: 14px; font-size: 0.9rem; border-radius: 10px; padding: 12px 14px; display: none; }
.form-status[data-state="ok"] { display: block; background: rgba(1,105,111,0.10); color: var(--teal); border: 1px solid rgba(1,105,111,0.3); }
.form-status[data-state="err"] { display: block; background: rgba(255,56,92,0.08); color: var(--magenta-deep); border: 1px solid rgba(255,56,92,0.3); }

/* Contact page form card */
.form-card {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 34px 30px;
  box-shadow: var(--shadow-md);
}
@media (min-width: 700px){ .form-card { padding: 44px 42px; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.8); padding: 72px 0 34px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 720px){ .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand .brand__name, .footer-brand .brand__sub { color: #fff; }
.footer-brand .brand__mark { color: var(--gold); }
.footer-brand p { margin-top: 18px; font-size: 0.9rem; color: rgba(255,255,255,0.7); max-width: 40ch; }
.footer-col h4 {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { font-size: 0.92rem; color: rgba(255,255,255,0.78); transition: color 0.2s var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.14);
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center; justify-content: space-between;
  font-size: 0.8rem; color: rgba(255,255,255,0.6);
}
.footer-bottom a { color: rgba(255,255,255,0.7); }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { scroll-behavior: auto !important; }
}

/* ============================================================
   LIGHTBOX (reused from Think Tank SA photo-lightbox.js)
   ============================================================ */
.ttcar__lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10, 31, 68, 0.94);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.25s ease-out;
  padding: 40px 60px; box-sizing: border-box;
}
.ttcar__lightbox[data-open="true"] { display: flex; opacity: 1; }
.ttcar__lb-stage { position: relative; max-width: 100%; max-height: 100%; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.ttcar__lb-img {
  max-width: 100%; max-height: calc(100vh - 160px); height: auto; width: auto;
  border-radius: 6px; box-shadow: 0 24px 80px rgba(0,0,0,0.45);
  transition: opacity 0.2s; background: var(--navy);
}
.ttcar__lb-img[data-loading="true"] { opacity: 0.4; }
.ttcar__lb-caption { color: #fff; font-family: 'Lato', sans-serif; font-size: 15px; text-align: center; max-width: 80ch; line-height: 1.5; padding: 0 12px; }
.ttcar__lb-caption-index { display: block; font-size: 11px; letter-spacing: 0.16em; color: var(--gold); font-weight: 600; text-transform: uppercase; margin-bottom: 6px; font-variant-numeric: tabular-nums; }
.ttcar__lb-caption-text { display: block; font-weight: 600; }
.ttcar__lb-close, .ttcar__lb-arrow {
  position: absolute; width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
  color: #fff; cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.15s, transform 0.15s; z-index: 2;
}
.ttcar__lb-close:hover, .ttcar__lb-arrow:hover,
.ttcar__lb-close:focus-visible, .ttcar__lb-arrow:focus-visible {
  background: var(--magenta); border-color: var(--magenta); outline: none; transform: scale(1.06);
}
.ttcar__lb-close:focus-visible, .ttcar__lb-arrow:focus-visible { box-shadow: 0 0 0 3px rgba(255,56,92,0.4); }
.ttcar__lb-close { top: 16px; right: 16px; }
.ttcar__lb-arrow--prev { left: 16px; top: 50%; transform: translateY(-50%); }
.ttcar__lb-arrow--next { right: 16px; top: 50%; transform: translateY(-50%); }
.ttcar__lb-arrow--prev:hover, .ttcar__lb-arrow--prev:focus-visible { transform: translateY(-50%) scale(1.06); }
.ttcar__lb-arrow--next:hover, .ttcar__lb-arrow--next:focus-visible { transform: translateY(-50%) scale(1.06); }
.ttcar__lb-counter {
  position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.85); font-family: 'Lato', sans-serif; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase; font-variant-numeric: tabular-nums;
}
body.ttcar-lb-open { overflow: hidden; }
@media (max-width: 640px) {
  .ttcar__lightbox { padding: 20px 12px 40px; }
  .ttcar__lb-close { top: 8px; right: 8px; width: 40px; height: 40px; }
  .ttcar__lb-arrow--prev { left: 6px; width: 40px; height: 40px; }
  .ttcar__lb-arrow--next { right: 6px; width: 40px; height: 40px; }
  .ttcar__lb-counter { top: 14px; font-size: 11px; }
  .ttcar__lb-caption { font-size: 13px; }
  .ttcar__lb-img { max-height: calc(100vh - 200px); }
}

/* ============================================================
   UTILITY STRIP (AutoHive Group cross-brand links)
   ============================================================ */
.utility-strip {
  background: var(--navy);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  position: relative;
  z-index: 950;
}
.utility-strip__inner {
  max-width: 1200px;
  margin: 0 auto;
  min-height: 38px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
@media (min-width: 768px){ .utility-strip__inner { padding: 0 40px; } }
.utility-strip__brand {
  display: none;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  white-space: nowrap;
}
@media (min-width: 768px){ .utility-strip__brand { display: inline-flex; } }
.utility-strip__chev { width: 12px; height: 12px; flex: none; }
.utility-strip__links {
  display: none;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px){ .utility-strip__links { display: flex; } }
.utility-strip__links a {
  color: rgba(255,255,255,0.72);
  font-size: 11px;
  letter-spacing: 0.02em;
  transition: color 0.2s var(--ease);
  white-space: nowrap;
}
.utility-strip__links a:hover { color: #fff; }
.utility-strip__links a[aria-current="true"] { color: var(--gold); font-weight: 600; }
.utility-strip__sep { color: rgba(255,255,255,0.28); }

/* Mobile collapse: brand becomes a toggle */
.utility-strip__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.92);
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 10px 0;
}
@media (min-width: 768px){ .utility-strip__toggle { display: none; } }
.utility-strip__toggle .utility-strip__chev { transition: transform 0.2s var(--ease); }
.utility-strip__toggle[aria-expanded="true"] .utility-strip__chev { transform: rotate(180deg); }
.utility-strip__drop {
  display: none;
  background: #081735;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.utility-strip__drop[data-open="true"] { display: block; }
@media (min-width: 768px){ .utility-strip__drop { display: none !important; } }
.utility-strip__drop a {
  display: block;
  padding: 12px 24px;
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.utility-strip__drop a:last-child { border-bottom: none; }
.utility-strip__drop a[aria-current="true"] { color: var(--gold); font-weight: 600; }

/* ============================================================
   NAV DROPDOWN (Luxury Accommodation)
   ============================================================ */
.nav__item--has-drop { position: relative; }
.nav__droptrigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  padding: 4px 0;
}
.nav__droptrigger .nav__chev { width: 12px; height: 12px; transition: transform 0.2s var(--ease); }
.nav__item--has-drop:hover .nav__chev,
.nav__droptrigger[aria-expanded="true"] .nav__chev { transform: rotate(180deg); }
.nav__drop {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  z-index: 20;
}
.nav__item--has-drop:hover .nav__drop,
.nav__item--has-drop:focus-within .nav__drop,
.nav__drop[data-open="true"] {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__drop a {
  display: block;
  padding: 10px 14px;
  border-radius: 9px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}
.nav__drop a::after { display: none; }
.nav__drop a:hover { background: var(--cream); color: var(--magenta); }
.nav__drop a small { display: block; font-weight: 400; font-size: 0.72rem; color: var(--muted); margin-top: 2px; }

/* ============================================================
   MOBILE NAV + BOOK PILL FIX
   ============================================================ */
/* Compact Book pill on mobile so it never overflows */
.btn.header-cta--mobile,
.header-cta--mobile {
  display: inline-flex;
  padding: 8px 16px;
  font-size: 0.82rem;
}
@media (min-width: 940px){ .btn.header-cta--mobile, .header-cta--mobile { display: none; } }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.mobile-nav .mobile-nav__group-label {
  display: block;
  padding: 14px 24px 6px;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  border-bottom: none;
}
.mobile-nav a.mobile-nav__sub { padding-left: 40px; font-size: 0.92rem; }
.mobile-nav .ah-cta { margin: 14px 24px; display: block; }

/* ============================================================
   OUR OTHER BRANDS (home only)
   ============================================================ */
.brands-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 44px;
}
@media (min-width: 760px){ .brands-grid { grid-template-columns: repeat(3, 1fr); } }
.brand-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: 30px 28px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
.brand-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(10,31,68,0.2); }
.brand-card__eyebrow {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
}
.brand-card__name {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 1.35rem;
  margin-top: 10px;
  color: var(--navy);
}
.brand-card__desc { color: var(--muted); font-size: 0.96rem; margin-top: 12px; flex: 1; }
.brand-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--magenta);
}
.brand-card__cta svg { width: 16px; height: 16px; transition: transform 0.2s var(--ease); }
.brand-card:hover .brand-card__cta svg { transform: translateX(4px); }
.brand-card--here { background: var(--cream); border-style: dashed; }
.brand-card__here-tag {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Studio pairing tiles */
.pair-tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 28px;
}
@media (min-width: 680px){ .pair-tiles { grid-template-columns: repeat(3, 1fr); } }
.pair-tile {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 14px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.pair-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.pair-tile__name { font-family: 'Lato', sans-serif; font-weight: 600; font-size: 1.1rem; color: var(--navy); }
.pair-tile__meta { font-size: 0.85rem; color: var(--muted); }
.pair-tile__link { margin-top: 8px; font-size: 0.85rem; font-weight: 600; color: var(--magenta); }

/* Legal list (POPIA notice) */
.legal-list{margin:14px 0 0;padding-left:22px;list-style:disc}
.legal-list li{margin-top:10px;color:var(--ink-soft,#3a3a3a);line-height:1.7;font-size:1rem}
.legal-list li strong{color:var(--navy,#0A1F44)}

/* ============================================================
   AutoHive Group services mega-menu (replaces the thin utility strip)
   Shared visual language across every AutoHive brand site.
   ============================================================ */

.gc-services {
  position: relative;
  background: #0A1F44;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 60;
}

.gc-services__trigger {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.5rem;
  margin: 0 auto;
  max-width: 1180px;
  width: 100%;
  background: transparent;
  border: 0;
  color: inherit;
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}
.gc-services__trigger:hover,
.gc-services__trigger:focus-visible {
  color: #FF385C;
  outline: none;
}

.gc-services__crumb {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}
.gc-services__label {
  font-weight: 700;
  color: #fff;
}
.gc-services__label::before {
  content: "\2022";
  margin: 0 0.5rem 0 0.3rem;
  color: rgba(255, 255, 255, 0.35);
}
.gc-services__caret {
  transition: transform 0.18s ease;
}
.gc-services.is-open .gc-services__caret {
  transform: rotate(180deg);
}

.gc-services__panel {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: min(880px, calc(100vw - 2rem));
  background: #fff;
  border-top: 3px solid #FF385C;
  border-radius: 0.6rem;
  box-shadow: 0 24px 60px -20px rgba(10, 31, 68, 0.5);
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 61;
}
.gc-services.is-open .gc-services__panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* --- Service tiles (Think Tank / AutoHive Group parity) --- */
.gc-services .svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}
@media (max-width: 1080px) { .gc-services .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .gc-services .svc-grid { grid-template-columns: 1fr; } }

.gc-services .svc-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  background: #fff;
  border: 1px solid rgba(10, 31, 68, 0.08);
  border-radius: 0.6rem;
  padding: 1rem 0.9rem 0.9rem;
  overflow: hidden;
  text-decoration: none;
  color: #0A1F44;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}
.gc-services .svc-tile__bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--svc);
}
.gc-services .svc-tile:hover,
.gc-services .svc-tile:focus-visible {
  transform: translateY(-4px);
  border-color: var(--svc);
  box-shadow: 0 14px 30px -10px color-mix(in srgb, var(--svc) 55%, transparent);
  outline: none;
}
.gc-services .svc-tile__head { display: flex; align-items: flex-start; gap: 0.55rem; }
.gc-services .svc-tile__hex { width: 44px; height: 44px; flex: 0 0 auto; object-fit: contain; }
.gc-services .svc-tile__hex--wide { width: 72px; height: 44px; }
.gc-services .svc-tile__name {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.2;
  color: #0A1F44;
}
.gc-services .svc-tile__flag {
  display: inline-block;
  margin-left: 0.35rem;
  vertical-align: middle;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--svc);
  border: 1px solid var(--svc);
  border-radius: 999px;
  padding: 0.05rem 0.4rem;
}
.gc-services .svc-tile__tag {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  color: rgba(10, 31, 68, 0.62);
  line-height: 1.35;
}
.gc-services .svc-tile__subs {
  list-style: none;
  margin: 0.15rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.25rem;
}
.gc-services .svc-tile__subs li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.74rem;
  color: #0A1F44;
}
.gc-services .svc-tile__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex: 0 0 auto;
}

@media (prefers-reduced-motion: reduce) {
  .gc-services__panel,
  .gc-services__caret,
  .gc-services .svc-tile { transition: none; }
}

/* ============================================================
   About Us page: editorial story layout (v2 - wide + fluid)
   ------------------------------------------------------------
   Strategy: the <article> is a full-width container with a
   named grid. Long-form paragraphs sit in a centered [text]
   column that is capped at a comfortable measure. Inset media
   blocks (video, magazine spread) can escape into a [wide] or
   [full] column when they need the extra width. Everything
   scales fluidly with clamp() so nothing breaks between
   viewport steps.
   ============================================================ */

.about-story {
  --edge: clamp(1rem, 4vw, 3rem);           /* outer page gutter */
  --measure: clamp(38ch, 70vw, min(1150px, 100ch));  /* body text width - fluid + very wide */
  --wide-cap: min(1400px, 100% - var(--edge) * 2); /* wide-inset max */
  --edge-plus: calc((100% - var(--wide-cap)) / 2);

  max-width: none;
  padding: clamp(2.5rem, 6vw, 5.5rem) 0 clamp(4rem, 8vw, 7rem);

  display: grid;
  grid-template-columns:
    [full-start]
      var(--edge-plus)
    [wide-start]
      1fr
    [text-start]
      minmax(0, min(var(--measure), var(--wide-cap)))
    [text-end]
      1fr
    [wide-end]
      var(--edge-plus)
    [full-end];
  justify-content: center;
  row-gap: 0;
}

.about-story > * { grid-column: text; }
.about-story > .about-wide { grid-column: wide; }
.about-story > .about-full { grid-column: full; }

.about-story__intro {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: clamp(1.15rem, 2.3vw, 1.65rem);
  line-height: 1.35;
  color: #0A1F44;
  margin: 0 0 clamp(2rem, 4vw, 3rem);
  padding-left: clamp(0.75rem, 1.5vw, 1.25rem);
  border-left: 3px solid #FF385C;
}

.about-section {
  margin: clamp(2.5rem, 5vw, 4rem) 0 clamp(1rem, 2vw, 1.5rem);
  display: contents; /* let children participate in the outer grid */
}
.about-section > * { grid-column: text; }
.about-section > .about-wide { grid-column: wide; }
.about-section > .about-full { grid-column: full; }

.about-section__eyebrow {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: clamp(0.68rem, 1.3vw, 0.78rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FF385C;
  margin: clamp(2rem, 4vw, 3rem) 0 0.5rem;
}
.about-section__eyebrow:first-child { margin-top: 0; }

.about-section__title {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  line-height: 1.15;
  color: #0A1F44;
  margin: 0 0 clamp(1rem, 2vw, 1.5rem);
  text-wrap: balance;
}

.about-section p {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1rem, 0.9vw + 0.6rem, 1.15rem);
  line-height: 1.7;
  color: rgba(10, 31, 68, 0.85);
  margin: 0 0 1.15rem;
  max-width: 78ch;  /* keep individual paragraph line length comfortable even in wide layout */
}
.about-section .about-inset p { max-width: none; }
.about-section p:has(+ .about-inset),
.about-section p:last-child { margin-bottom: 0; }

.about-section a {
  color: #FF385C;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 56, 92, 0.35);
  transition: border-color 0.15s ease;
}
.about-section a:hover,
.about-section a:focus-visible {
  border-bottom-color: #FF385C;
}
.about-section blockquote {
  border-left: 3px solid #F5A623;
  padding: 0.1rem 0 0.1rem 1rem;
  margin: 1.6rem 0;
  font-style: italic;
  color: rgba(10, 31, 68, 0.75);
}

/* Inset callouts (framed side blocks) ------------------------- */
.about-inset {
  background: #F8F5EE;
  border: 1px solid rgba(10, 31, 68, 0.08);
  border-radius: clamp(0.5rem, 1vw, 0.75rem);
  padding: clamp(1.1rem, 2.5vw, 2rem);
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
}
.about-inset__eyebrow {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #FF385C;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}
.about-inset__eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: #FF385C;
  display: inline-block;
}
.about-inset__title {
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.25;
  color: #0A1F44;
  margin: 0.35rem 0 0.5rem;
}
.about-inset__body {
  font-family: 'Lato', sans-serif;
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  line-height: 1.6;
  color: rgba(10, 31, 68, 0.78);
  margin: 0;
}
.about-inset__media img,
.about-inset__media picture {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.4rem;
}
.about-inset__link {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  color: #FF385C;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 56, 92, 0.35);
  padding-bottom: 1px;
}
.about-inset__link:hover { border-bottom-color: #FF385C; }
.about-inset a { color: #FF385C; }

/* Two-up layouts inside insets */
.about-inset--book {
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .about-inset--book { grid-template-columns: minmax(200px, 280px) 1fr; align-items: center; }
}

.about-magazine-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}
@media (min-width: 720px) {
  .about-inset--magazine .about-magazine-grid {
    grid-template-columns: minmax(220px, 300px) 1fr;
    align-items: start;
  }
}
.about-magazine-grid--tiles {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 560px) {
  .about-magazine-grid--tiles-3 { grid-template-columns: repeat(3, 1fr); }
  .about-magazine-grid--tiles-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Placeholder tiles (drone stills + wine labels not yet supplied) */
.about-placeholder {
  aspect-ratio: 4 / 3;
  border: 1px dashed rgba(10, 31, 68, 0.3);
  border-radius: 0.4rem;
  background: linear-gradient(135deg, #F8F5EE 0%, #EDE7D9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  color: rgba(10, 31, 68, 0.55);
  line-height: 1.4;
}

/* ============================================================
   Vimeo lite-embed facade (with CLS-safe aspect + no layout jump)
   ============================================================ */
.vimeo-lite {
  position: relative;
  display: block;
  width: 100%;
  background: #0A1F44;
  border-radius: clamp(0.4rem, 1vw, 0.6rem);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: var(--aspect, 16 / 9);
  contain: layout paint;
}
.vimeo-lite picture,
.vimeo-lite__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.vimeo-lite__poster {
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.3s ease;
}
.vimeo-lite:hover .vimeo-lite__poster,
.vimeo-lite:focus-within .vimeo-lite__poster {
  transform: scale(1.02);
  filter: brightness(0.85);
}
.vimeo-lite__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 31, 68, 0) 45%, rgba(10, 31, 68, 0.55) 100%);
  pointer-events: none;
}
.vimeo-lite__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(56px, 8vw, 84px);
  height: clamp(56px, 8vw, 84px);
  border-radius: 50%;
  border: 0;
  background: rgba(255, 56, 92, 0.95);
  box-shadow: 0 12px 30px -8px rgba(255, 56, 92, 0.5);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s ease, background 0.18s ease;
  z-index: 2;
}
.vimeo-lite__play::before {
  content: "";
  width: 0; height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid #fff;
  margin-left: 5px;
}
.vimeo-lite:hover .vimeo-lite__play,
.vimeo-lite__play:hover,
.vimeo-lite__play:focus-visible {
  transform: translate(-50%, -50%) scale(1.08);
  background: #FF385C;
  outline: none;
}
.vimeo-lite__label {
  position: absolute;
  left: clamp(0.75rem, 1.5vw, 1.25rem);
  bottom: clamp(0.65rem, 1.2vw, 1rem);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: clamp(0.72rem, 1.1vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
  z-index: 2;
  padding-right: 5rem; /* avoid running under the play button on small viewports */
}
.vimeo-lite__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 3;
}
.vimeo-lite.is-playing .vimeo-lite__poster,
.vimeo-lite.is-playing .vimeo-lite__play,
.vimeo-lite.is-playing .vimeo-lite__gradient,
.vimeo-lite.is-playing .vimeo-lite__label { display: none; }

.vimeo-lite--portrait {
  --aspect: 9 / 16;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

@media (prefers-reduced-motion: reduce) {
  .vimeo-lite__poster,
  .vimeo-lite__play { transition: none; }
}

/* ============================================================
   About page: closing chapter (big centered pull-quote)
   ============================================================ */
.about-close {
  position: relative;
  overflow: hidden;
  margin: clamp(3rem, 6vw, 5rem) 0 0;
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1.5rem, 4vw, 3rem);
  background: #0A1F44;
  color: #fff;
  border-radius: clamp(0.4rem, 1vw, 0.75rem);
  text-align: center;
  min-height: clamp(280px, 34vw, 460px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-close__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.about-close__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(10, 31, 68, 0.78) 0%, rgba(10, 31, 68, 0.55) 65%, rgba(10, 31, 68, 0.5) 100%),
    linear-gradient(180deg, rgba(10, 31, 68, 0.4) 0%, rgba(10, 31, 68, 0.65) 100%);
}
.about-close__body {
  position: relative;
  z-index: 2;
  max-width: 46rem;
}
.about-section .about-close__quote,
.about-close__quote {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: clamp(1.25rem, 2.4vw, 1.9rem);
  line-height: 1.35;
  color: #ffffff;
  max-width: 44ch;
  margin: 0 auto 1rem;
  text-wrap: balance;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.55), 0 0 30px rgba(0, 0, 0, 0.35);
}
.about-section .about-close__signoff,
.about-close__signoff {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  color: #FF385C;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 1.25rem 0 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

/* Anchor scroll offset so sticky header doesn't hide targets */
.about-story [id] { scroll-margin-top: 120px; }

/* ============================================================
   About: split-inset (video + copy side-by-side on wide screens)
   ============================================================ */
.about-inset--split {
  display: grid;
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: center;
}
.about-inset__copy { min-width: 0; }
@media (min-width: 820px) {
  .about-inset--split-landscape { grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); }
  .about-inset--split-portrait  { grid-template-columns: minmax(0, 1fr) minmax(280px, 400px); }
  .about-inset--split-portrait .about-inset__copy { order: 1; }
  .about-inset--split-portrait .vimeo-lite       { order: 2; }
}

/* ============================================================
   Wine label grid + fallback link for Vimeo failures
   ============================================================ */
.about-wine-grid {
  gap: clamp(.6rem, 1.2vw, 1rem);
}
.about-wine {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.about-wine picture {
  border-radius: .4rem;
  overflow: hidden;
  background: rgba(10, 31, 68, 0.04);
  box-shadow: 0 6px 24px -12px rgba(10, 31, 68, .3);
  aspect-ratio: 913 / 1280;  /* preserves layout before image loads = zero CLS */
}
.about-wine img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-wine figcaption {
  font-family: 'Lato', sans-serif;
  font-size: .68rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(10, 31, 68, .55);
  text-align: center;
}
@media (max-width: 640px) {
  .about-wine-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Vimeo fallback link (appears if iframe fails to load within 5s) */
.vimeo-lite__fallback {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, .95);
  color: #0A1F44;
  padding: .5rem 1rem;
  border-radius: .3rem;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  text-decoration: none;
  box-shadow: 0 6px 20px -8px rgba(0, 0, 0, .3);
  z-index: 4;
}
.vimeo-lite__fallback:hover {
  background: #fff;
}

/* ============================================================
   About Us: The Future block - St Helena Bay
   ============================================================ */
.about-future {
  margin: clamp(3rem, 6vw, 5rem) 0 0;
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.25rem, 3vw, 3rem);
  background: linear-gradient(180deg, #0A1F44 0%, #0E1D3E 100%);
  color: #F8F5EE;
  border-radius: clamp(.5rem, 1vw, .9rem);
  overflow: hidden;
  position: relative;
}

/* Override the .about-section paragraph defaults for descendants of
   the dark navy Future block so light text stays legible. */
.about-section .about-future p {
  color: rgba(248, 245, 238, .82);
  max-width: none;
}
.about-section .about-future a {
  color: #F5A623;
  border-bottom-color: rgba(245, 166, 35, .4);
}
.about-section .about-future a:hover,
.about-section .about-future a:focus-visible {
  border-bottom-color: #F5A623;
}
.about-section .about-future strong { color: #F5A623; font-weight: 500; }
.about-future::before {
  content: "";
  position: absolute; inset: 0 auto 0 0; width: 3px;
  background: linear-gradient(180deg, #FF385C 0%, #F5A623 100%);
  opacity: .85;
}

.about-future__eyebrow {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: clamp(.7rem, 1vw, .78rem);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #FF385C;
  margin: 0 0 .8rem;
}
.about-future__title {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  line-height: 1.15;
  color: #F8F5EE;
  margin: 0 0 clamp(1.5rem, 3vw, 2.25rem);
  text-wrap: balance;
  max-width: 22ch;
}

.about-future__fable {
  border-left: 2px solid rgba(245, 166, 35, .55);
  padding-left: clamp(1rem, 2vw, 1.5rem);
  margin: 0 0 clamp(2rem, 4vw, 3rem);
  max-width: 62ch;
}
.about-future__fable p {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.05rem, 1.4vw + .5rem, 1.25rem);
  line-height: 1.6;
  color: rgba(248, 245, 238, .92);
  margin: 0 0 .95rem;
}
.about-future__fable p:last-child {
  margin: 0;
  font-weight: 500;
  font-style: normal;
  color: #F5A623;
  letter-spacing: .01em;
}

.about-future__lede {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1rem, .9vw + .55rem, 1.1rem);
  line-height: 1.7;
  color: rgba(248, 245, 238, .82);
  max-width: 70ch;
  margin: 0 0 clamp(2rem, 4vw, 3rem);
}
.about-future__lede a {
  color: #F5A623;
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 166, 35, .4);
  transition: border-color .15s ease;
}
.about-future__lede a:hover { border-bottom-color: #F5A623; }

/* Timeline */
.about-future__timeline {
  list-style: none;
  padding: 0;
  margin: 0 0 clamp(2.5rem, 4vw, 3.5rem);
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
  counter-reset: milestone;
}
.about-future__timeline > li {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: .35rem;
  padding: 1rem 0 1.15rem;
  border-top: 1px solid rgba(248, 245, 238, .1);
  align-items: baseline;
}
.about-future__timeline > li:last-child {
  border-bottom: 1px solid rgba(248, 245, 238, .1);
}
@media (min-width: 720px) {
  .about-future__timeline > li {
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 2rem;
  }
}
.about-future__milestone-when {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: clamp(.75rem, 1vw, .9rem);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #FF385C;
  font-variant-numeric: tabular-nums;
}
.about-future__milestone-title {
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  color: #F8F5EE;
  margin: 0 0 .3rem;
  line-height: 1.2;
}
.about-future__milestone-copy {
  font-family: 'Lato', sans-serif;
  font-size: clamp(.95rem, .8vw + .5rem, 1.02rem);
  line-height: 1.6;
  color: rgba(248, 245, 238, .78);
  margin: 0;
  max-width: 60ch;
}

/* Gallery: 2 lead photos + 4 render tiles */
.about-future__gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(.75rem, 1.5vw, 1.25rem);
  margin: 0 0 clamp(2.5rem, 4vw, 3.5rem);
}
@media (min-width: 720px) {
  .about-future__gallery {
    grid-template-columns: 1fr 1fr;
  }
}
.about-future__gallery figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.about-future__gallery picture {
  display: block;
  border-radius: .4rem;
  overflow: hidden;
  background: rgba(248, 245, 238, .04);
  aspect-ratio: 4 / 3;
}
.about-future__gallery-render picture {
  aspect-ratio: 16 / 9;
}
.about-future__gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.about-future__gallery figure:hover img {
  transform: scale(1.02);
}
.about-future__gallery figcaption {
  font-family: 'Lato', sans-serif;
  font-size: .78rem;
  color: rgba(248, 245, 238, .55);
  letter-spacing: .02em;
}

/* CTA */
.about-future__cta {
  border-top: 1px solid rgba(248, 245, 238, .12);
  padding-top: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.about-future__cta-line {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.4;
  color: #F8F5EE;
  margin: 0;
  max-width: 44ch;
}
.about-future__cta-line strong {
  color: #F5A623;
  font-weight: 500;
}
.about-section .about-future__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #FF385C;
  color: #fff;
  padding: .85rem 1.5rem;
  border: 0;
  border-radius: 999px;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
  box-shadow: 0 10px 30px -10px rgba(255, 56, 92, .55);
}
.about-future__cta-btn:hover,
.about-future__cta-btn:focus-visible {
  background: #E12A50;
  transform: translateY(-1px);
  outline: none;
}
.about-future__cta-small {
  font-family: 'Lato', sans-serif;
  font-size: .82rem;
  color: rgba(248, 245, 238, .58);
  margin: 0;
}
.about-future__cta-small a {
  color: #F5A623;
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 166, 35, .35);
}
.about-future__cta-small a:hover { border-bottom-color: #F5A623; }

@media (max-width: 640px) {
  .about-future__title { max-width: none; }
}

/* ============================================================
   Footer: AutoHive Group quick-link pill strip
   Injected dynamically by services-menu.js on every page footer.
   ============================================================ */
.ah-group {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.ah-group__label {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #FF385C;
  margin-bottom: 1rem;
}
.ah-group-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .6rem;
}
.ah-group-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1rem;
  background: rgba(255, 255, 255, .04);
  color: rgba(255, 255, 255, .9);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  font-family: 'Lato', sans-serif;
  font-size: .78rem;
  font-weight: 500;
  text-decoration: none;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.ah-group-pill__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pill, #F5A623);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, .06);
}
.ah-group-pill:hover,
.ah-group-pill:focus-visible {
  background: rgba(255, 255, 255, .08);
  border-color: var(--pill, rgba(255, 255, 255, .3));
  transform: translateY(-1px);
  outline: none;
}
.ah-group-pill--parent {
  --pill: #F5A623;
  background: rgba(245, 166, 35, .1);
  border-color: rgba(245, 166, 35, .3);
}

/* ============================================
   EXPERIENCES PAGE - nine-category guide
   ============================================ */

/* Sticky jump-nav */
.cat-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 8px;
  padding: 12px 0;
  border-top: 1px solid var(--border-soft, #e6e0d5);
  border-bottom: 1px solid var(--border-soft, #e6e0d5);
  overflow-x: auto;
  scrollbar-width: thin;
}
.cat-jump a {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border-soft, #e6e0d5);
  color: var(--navy);
  font-family: var(--font-body, 'Lato', sans-serif);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.cat-jump a:hover,
.cat-jump a:focus-visible {
  background: var(--rausch, #ff385c);
  color: #fff;
  border-color: var(--rausch, #ff385c);
  outline: none;
}
.cat-jump a:focus-visible { box-shadow: 0 0 0 3px rgba(255,56,92,0.28); }

/* Category hero: image + intro side by side on desktop */
.cat-hero {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  align-items: center;
  margin-bottom: 48px;
}
@media (min-width: 800px) {
  .cat-hero { grid-template-columns: 1fr 1fr; gap: 56px; }
}
.cat-hero__media {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--surface-muted, #f4efe6);
}
.cat-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cat-hero__body h2 {
  font-family: var(--font-display, 'Lato', sans-serif);
  font-weight: 500;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.15;
  margin: 8px 0 16px;
  color: var(--navy);
}
.cat-hero__body p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-body, #2c2a26);
  max-width: 60ch;
  text-align: justify;
  hyphens: auto;
}

/* Venue list - grid of cards */
.venue-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .venue-list { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .venue-list { grid-template-columns: repeat(3, 1fr); }
}
.venue {
  background: var(--white);
  border: 1px solid var(--border-soft, #e6e0d5);
  border-radius: 12px;
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.venue h3 {
  font-family: var(--font-display, 'Lato', sans-serif);
  font-weight: 500;
  font-size: 1.15rem;
  line-height: 1.25;
  color: var(--navy);
  margin: 0 0 4px;
}
.venue__meta {
  font-family: var(--font-body, 'Lato', sans-serif);
  font-size: 0.82rem;
  color: var(--text-muted, #6f6a5f);
  letter-spacing: 0.02em;
  margin: 0 0 8px;
}
.venue p {
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--text-body, #2c2a26);
  margin: 0 0 8px;
}
.venue__link {
  margin-top: auto;
  padding-top: 8px;
}
.venue__link a {
  color: var(--rausch, #ff385c);
  font-weight: 500;
  text-decoration: none;
  font-size: 0.9rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.18s ease;
}
.venue__link a:hover,
.venue__link a:focus-visible {
  border-bottom-color: var(--rausch, #ff385c);
  outline: none;
}
.venue__link a:focus-visible { box-shadow: 0 0 0 3px rgba(255,56,92,0.24); border-radius: 3px; }

/* ---------- Closing 'Book a stay' CTA banner ---------- */
.book-cta {
  padding-top: 72px;
  padding-bottom: 72px;
  text-align: center;
  color: #fff;
}
.book-cta__wrap {
  max-width: 780px;
  margin: 0 auto;
}
.book-cta__title {
  font-family: var(--font-display, 'Lato', sans-serif);
  font-weight: 400;
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  margin: 12px 0 20px;
  color: #fff;
}
.book-cta__lede {
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.86);
}
.book-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.book-cta__meta {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 12px 0 0;
}
.book-cta__meta .text-link,
.book-cta__meta a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: border-color 0.18s ease;
}
.book-cta__meta a:hover,
.book-cta__meta a:focus-visible {
  border-bottom-color: #fff;
}
@media (max-width: 640px) {
  .book-cta { padding-top: 56px; padding-bottom: 56px; }
  .book-cta__actions .btn { width: 100%; max-width: 320px; }
}

/* ---------- Delivery brand cards (Sixty60 + Mr D) ---------- */
.delivery-cards {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 720px) {
  .delivery-cards { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
.delivery-card {
  background: var(--white);
  border: 1px solid var(--border-soft, #e6e0d5);
  border-radius: 16px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: start;
}
.delivery-card__body { display: flex; flex-direction: column; gap: 10px; }
.delivery-card__brand { display: flex; align-items: center; gap: 12px; }
.delivery-card__logo {
  width: 44px; height: 44px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(10,20,34,0.10);
}
.delivery-card__name {
  font-family: var(--font-display, 'Lato', sans-serif);
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.2;
  color: var(--navy);
  margin: 0;
}
.delivery-card__tagline {
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--text-body, #2c2a26);
  margin: 4px 0 0;
}
.delivery-card__link {
  margin-top: auto;
  padding-top: 8px;
}
.delivery-card__link a {
  color: var(--rausch, #ff385c);
  font-weight: 500;
  text-decoration: none;
  font-size: 0.9rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.18s ease;
}
.delivery-card__link a:hover,
.delivery-card__link a:focus-visible {
  border-bottom-color: var(--rausch, #ff385c);
  outline: none;
}
.delivery-card__qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px;
  background: #fafaf7;
  border: 1px solid var(--border-soft, #e6e0d5);
  border-radius: 12px;
}
.delivery-card__qr img {
  width: 100px;
  height: 100px;
  display: block;
}
.delivery-card__qr-caption {
  font-size: 0.72rem;
  color: var(--text-muted, #6f6a5f);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  line-height: 1.3;
}
@media (max-width: 480px) {
  .delivery-card { grid-template-columns: 1fr; }
  .delivery-card__qr { justify-self: start; flex-direction: row; padding: 10px; }
  .delivery-card__qr img { width: 76px; height: 76px; }
  .delivery-card__qr-caption { text-align: left; }
}

/* Stay-in gallery: three real photos */
.stayin-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 24px;
}
@media (min-width: 720px) {
  .stayin-gallery { grid-template-columns: repeat(3, 1fr); }
}
.stayin-gallery figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stayin-gallery img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.stayin-gallery figcaption {
  font-family: var(--font-body, 'Lato', sans-serif);
  font-size: 0.9rem;
  color: var(--text-muted, #6f6a5f);
  line-height: 1.5;
  text-align: center;
}

/* FAQ */
.faq {
  max-width: 780px;
  margin: 24px auto 0;
}
.faq details {
  border-bottom: 1px solid var(--border-soft, #e6e0d5);
  padding: 20px 0;
}
.faq details:first-child { border-top: 1px solid var(--border-soft, #e6e0d5); }
.faq summary {
  font-family: var(--font-display, 'Lato', sans-serif);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 48px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--rausch, #ff385c);
  margin-left: 12px;
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq details p {
  margin: 12px 0 0;
  color: var(--text-body, #2c2a26);
  line-height: 1.6;
  font-size: 0.98rem;
}
.faq summary:focus-visible { outline: 2px solid var(--rausch, #ff385c); outline-offset: 4px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
  .cat-jump a, .venue__link a, .faq summary::after { transition: none; }
}

/* ============================================
   WHEN WE OPEN - Availability windows on glass-castle.html
   ============================================ */
.opening-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .opening-list { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (min-width: 1024px) {
  .opening-list { grid-template-columns: repeat(3, 1fr); }
}
.opening {
  background: var(--white);
  border: 1px solid var(--border-soft, #e6e0d5);
  border-radius: 12px;
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.opening:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(10, 31, 68, 0.06); }
.opening--summer {
  border-color: var(--rausch, #ff385c);
  border-width: 1.5px;
}
.opening--summer::before {
  content: "Extended window";
  position: absolute;
  top: -10px;
  right: 16px;
  background: var(--rausch, #ff385c);
  color: #fff;
  font-family: var(--font-body, 'Lato', sans-serif);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.opening__label {
  font-family: var(--font-body, 'Lato', sans-serif);
  font-size: 0.72rem;
  color: var(--text-muted, #6f6a5f);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 4px;
}
.opening__dates {
  font-family: var(--font-display, 'Lato', sans-serif);
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--navy, #0a1f44);
  line-height: 1.35;
  margin: 0;
}
.opening__dates time { font-variant-numeric: tabular-nums; }
.opening__meta {
  font-family: var(--font-body, 'Lato', sans-serif);
  font-size: 0.86rem;
  color: var(--text-muted, #6f6a5f);
  margin: 8px 0 0;
}
.opening-note a {
  color: var(--rausch, #ff385c);
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  .opening { transition: none; }
  .opening:hover { transform: none; }
}
