/* =========================================================================
   Klipdrift Sands — Editorial / Premium Brand Stylesheet
   -----------------------------------------------------------------------
   Colors:    #f76017 orange · #333333 charcoal · #ffe8d6 cream
              #c48a5a tan · #7a7f64 sage
   Fonts:     Merriweather (headings) · Montserrat (body/UI)
   Dividers:  brush-stroke elements via CSS mask-image (signature transitions)
   Systems:   hero-split · image-cluster · blobs · accent-dots · gallery-editorial
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;500;600;700&display=swap');

/* ---- Design tokens ---------------------------------------------------- */
:root {
  /* Brand palette */
  --brand-orange:        #f76017;
  --brand-orange-hover:  #d94e0e;
  --brand-orange-soft:   #ffd7c3;
  --brand-charcoal:      #333333;
  --brand-charcoal-soft: #4a4a4a;
  --brand-cream:         #ffe8d6;
  --brand-cream-soft:    #fff4e8;
  --brand-tan:           #c48a5a;
  --brand-tan-hover:     #a8724a;
  --brand-tan-soft:      #e4c9ad;
  --brand-sage:          #7a7f64;
  --brand-sage-soft:     #969b80;

  /* Role tokens */
  --surface:         #ffffff;
  --surface-muted:   var(--brand-cream);
  --surface-subtle:  var(--brand-cream-soft);
  --surface-dark:    var(--brand-charcoal);
  --surface-sage:    var(--brand-sage);
  --surface-tan:     var(--brand-tan);

  --ink:             var(--brand-charcoal);
  --ink-muted:       #555555;
  --ink-subtle:      #7a7a7a;
  --ink-faint:       #a39b91;
  --ink-on-dark:          #f4ede4;
  --ink-on-dark-muted:    rgba(244, 237, 228, 0.78);
  --ink-on-dark-subtle:   rgba(244, 237, 228, 0.55);

  --line:            rgba(196, 138, 90, 0.22);
  --line-strong:     rgba(196, 138, 90, 0.42);
  --line-soft:       rgba(51, 51, 51, 0.06);
  --line-dark:       rgba(244, 237, 228, 0.14);

  --accent:          var(--brand-orange);
  --accent-hover:    var(--brand-orange-hover);

  /* Typography */
  --font-heading: 'Merriweather', Georgia, 'Times New Roman', serif;
  --font-body:    'Montserrat', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --radius:         6px;
  --radius-lg:      14px;
  --radius-xl:      20px;
  --radius-2xl:     28px;
  --radius-3xl:     40px;
  --section-y:      5rem;
  --section-y-lg:   7.5rem;
  --header-h:       68px;
  --header-h-lg:    84px;
  --container-max:  1280px;
  --container-wide: 1360px;
  --prose-max:      62ch;

  /* Shadows — warm, soft, premium */
  --shadow-soft:  0 2px 12px -4px rgba(51, 41, 28, 0.05), 0 1px 3px rgba(51, 41, 28, 0.03);
  --shadow-card:  0 10px 30px -12px rgba(51, 41, 28, 0.12), 0 2px 6px rgba(51, 41, 28, 0.04);
  --shadow-lift:  0 26px 60px -22px rgba(51, 41, 28, 0.22), 0 4px 10px rgba(51, 41, 28, 0.05);
  --shadow-glow:  0 0 0 2px rgba(247, 96, 23, 0.14), 0 18px 40px -14px rgba(247, 96, 23, 0.25);

  /* Brush SVGs — black shapes used as masks */
  --brush-accent: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' preserveAspectRatio='none'><path d='M6,6 C 22,2 44,10 62,6 C 80,2 100,8 114,6' stroke='black' stroke-width='5' stroke-linecap='round' fill='none'/><circle cx='116' cy='9' r='1.5' fill='black'/><circle cx='4' cy='4' r='1.2' fill='black'/></svg>");
}

/* ---- Reset / base ----------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  background: var(--surface);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
ul, ol { padding: 0; margin: 0; list-style: none; }
a { color: inherit; text-decoration: none; transition: color .18s ease; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
address { font-style: normal; }

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.012em;
  color: var(--ink);
  line-height: 1.18;
}
h1 { font-size: clamp(2.25rem, 5.5vw, 4.25rem); line-height: 1.04; font-weight: 900; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.75rem); line-height: 1.18; }
h3 { font-size: 1.3125rem; line-height: 1.32; }
h4 { font-size: 1.0625rem; }
p  { margin: 0; color: var(--ink-muted); line-height: 1.75; }

::selection { background: var(--brand-orange); color: #fff; }
:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--surface), 0 0 0 4px var(--brand-orange);
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  top: 8px; left: 8px;
  transform: translateY(-200%);
  background: var(--brand-charcoal);
  color: #fff;
  padding: 8px 14px;
  border-radius: var(--radius);
  z-index: 100;
  transition: transform .15s ease;
  font-family: var(--font-body);
  font-weight: 500;
}
.skip-link:focus { transform: translateY(0); }

/* ---- Layout utilities ------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 640px)  { .container { padding: 0 1.75rem; } }
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }

.container-narrow { max-width: 48rem; }
.container-wide   { max-width: var(--container-wide); }
.prose { max-width: var(--prose-max); }

.section { padding: var(--section-y) 0; position: relative; }
@media (min-width: 1024px) { .section { padding: var(--section-y-lg) 0; } }

.section--muted  { background: var(--brand-cream); }
.section--subtle { background: var(--brand-cream-soft); }
.section--sage   { background: var(--brand-sage); color: var(--ink-on-dark); overflow: hidden; }
.section--sage h1, .section--sage h2, .section--sage h3,
.section--sage h4, .section--sage .section-title { color: #fff; }
.section--sage p { color: var(--ink-on-dark-muted); }
.section--sage .eyebrow { color: var(--brand-orange-soft); }
.section--tan    { background: var(--brand-tan); color: var(--ink-on-dark); }
.section--tan h2, .section--tan h3 { color: #fff; }
.section--tan p { color: rgba(255,255,255,.82); }
.section--dark   { background: var(--brand-charcoal); color: var(--ink-on-dark); overflow: hidden; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: var(--ink-on-dark-muted); }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 600;
  color: var(--brand-tan);
  margin-bottom: 1rem;
}

.lead {
  margin-top: 1.25rem;
  font-size: 1.0625rem;
  color: var(--ink-muted);
  line-height: 1.75;
  max-width: 56ch;
}

/* ---- Section title with brush accent ---------------------------------- */
.section-title { max-width: var(--prose-max); }
.section-title.centered { margin-left: auto; margin-right: auto; text-align: center; }

.section-title h2 { position: relative; }
.section-title h2::after {
  content: "";
  display: block;
  width: 96px;
  height: 12px;
  margin-top: 1.25rem;
  background-color: var(--brand-orange);
  -webkit-mask: var(--brush-accent) no-repeat left center / contain;
          mask: var(--brush-accent) no-repeat left center / contain;
}
.section-title.centered h2::after { margin-left: auto; margin-right: auto; }
.section--sage .section-title h2::after,
.section--dark .section-title h2::after,
.section--tan  .section-title h2::after { background-color: var(--brand-orange); }

.section-intro {
  padding: var(--section-y) 0 calc(var(--section-y) - 1rem);
  text-align: center;
}
.section-intro .container > * { margin-left: auto; margin-right: auto; }
.section-intro h2 { max-width: 22ch; margin: 0 auto; }
.section-intro .lead { margin-left: auto; margin-right: auto; text-align: center; max-width: 58ch; }

/* ---- Decorative accents ---------------------------------------------- */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}
.blob--cream   { background: var(--brand-cream); }
.blob--tan     { background: var(--brand-tan-soft); }
.blob--sage    { background: var(--brand-sage-soft); opacity: 0.35; }
.blob--orange  { background: var(--brand-orange-soft); opacity: 0.45; }
.blob--charcoal{ background: var(--brand-charcoal); opacity: 0.12; }

.blob--tl { top: -12%; left: -8%;   width: 46vw; height: 46vw; max-width: 560px; max-height: 560px; }
.blob--tr { top: -12%; right: -8%;  width: 42vw; height: 42vw; max-width: 520px; max-height: 520px; }
.blob--bl { bottom: -12%; left: -8%; width: 44vw; height: 44vw; max-width: 540px; max-height: 540px; }
.blob--br { bottom: -12%; right: -8%; width: 48vw; height: 48vw; max-width: 620px; max-height: 620px; }
.blob--center { top: 40%; left: 40%; width: 40vw; height: 40vw; max-width: 500px; max-height: 500px; transform: translate(-50%, -50%); }

.accent-dot {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  z-index: 3;
  pointer-events: none;
}
.accent-dot--sm  { width: 8px; height: 8px; }
.accent-dot--lg  { width: 22px; height: 22px; }
.accent-dot--xl  { width: 32px; height: 32px; }
.accent-dot--orange  { background: var(--brand-orange); }
.accent-dot--tan     { background: var(--brand-tan); }
.accent-dot--sage    { background: var(--brand-sage); }
.accent-dot--charcoal{ background: var(--brand-charcoal); }
.accent-dot--cream   { background: var(--brand-cream); box-shadow: 0 0 0 4px rgba(255,255,255,0.4); }
.accent-dot--ring {
  background: transparent;
  border: 2.5px solid var(--brand-orange);
}

/* ---- Image composition system ---------------------------------------- */
.image-composition {
  position: relative;
  width: 100%;
}
.img-box {
  background: var(--brand-cream-soft);
  color: var(--brand-tan);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.img-box img { width: 100%; height: 100%; object-fit: cover; }
.img-box--rounded { border-radius: var(--radius-2xl); }
.img-box--xl      { border-radius: var(--radius-3xl); }
.img-box--circle  { border-radius: 50%; aspect-ratio: 1 / 1; }
.img-box--ring    { border: 6px solid #fff; }

/* Cluster: TRIO (main + circle + small rect) */
.image-cluster {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  aspect-ratio: 1 / 1.05;
}
.image-cluster--trio .image-cluster__main {
  position: absolute;
  top: 0; right: 0;
  width: 74%; height: 72%;
  border-radius: var(--radius-3xl);
  overflow: hidden;
  background: var(--brand-cream-soft);
  box-shadow: var(--shadow-lift);
}
.image-cluster--trio .image-cluster__circle {
  position: absolute;
  bottom: 8%; left: 0;
  width: 46%; aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--brand-tan-soft);
  border: 6px solid #fff;
  box-shadow: var(--shadow-lift);
}
.image-cluster--trio .image-cluster__rect {
  position: absolute;
  bottom: 0; right: 6%;
  width: 42%; height: 34%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--brand-sage);
  border: 5px solid #fff;
  box-shadow: var(--shadow-lift);
}
.image-cluster > .img-box { background: var(--brand-cream-soft); }

/* Cluster: DUO (main + circle) */
.image-cluster--duo { aspect-ratio: 1 / 1; }
.image-cluster--duo .image-cluster__main {
  position: absolute;
  top: 0; left: 0;
  width: 80%; height: 80%;
  border-radius: var(--radius-3xl);
  overflow: hidden;
  background: var(--brand-cream-soft);
  box-shadow: var(--shadow-lift);
}
.image-cluster--duo .image-cluster__circle {
  position: absolute;
  bottom: 0; right: 0;
  width: 48%; aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--brand-sage);
  border: 6px solid #fff;
  box-shadow: var(--shadow-lift);
}

/* Cluster: REVERSE DUO (circle on left) */
.image-cluster--reverse .image-cluster__main { left: auto; right: 0; }
.image-cluster--reverse .image-cluster__circle { right: auto; left: 0; top: auto; bottom: 0; }

/* ---- Buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 1.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.015em;
  border-radius: 999px;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .1s ease, box-shadow .18s ease;
  white-space: nowrap;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn:active { transform: translateY(1px); }
.btn--lg { height: 54px; padding: 0 2rem; font-size: 0.9375rem; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--brand-orange);
  color: #fff;
  border-color: var(--brand-orange);
  box-shadow: 0 8px 20px -8px rgba(247, 96, 23, 0.45);
}
.btn--primary:hover {
  background: var(--brand-orange-hover);
  border-color: var(--brand-orange-hover);
  box-shadow: 0 12px 24px -8px rgba(247, 96, 23, 0.55);
}

.btn--secondary {
  background: transparent;
  color: var(--brand-charcoal);
  border-color: var(--brand-charcoal);
}
.btn--secondary:hover { background: var(--brand-charcoal); color: #fff; }

.btn--tan {
  background: var(--brand-tan);
  color: #fff;
  border-color: var(--brand-tan);
}
.btn--tan:hover { background: var(--brand-tan-hover); border-color: var(--brand-tan-hover); }

.btn--ghost {
  background: transparent;
  color: var(--brand-charcoal);
  border-color: transparent;
}
.btn--ghost:hover { color: var(--brand-orange); }

.btn--on-dark {
  background: var(--brand-orange);
  color: #fff;
  border-color: var(--brand-orange);
}
.btn--on-dark:hover { background: #fff; color: var(--brand-charcoal); border-color: #fff; }

/* ---- Header ----------------------------------------------------------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background-color .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.header.is-scrolled, .header.is-open {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}
.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-h);
}
@media (min-width: 768px) { .header__row { height: var(--header-h-lg); } }

.header__brand {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.1875rem;
  letter-spacing: -0.01em;
  color: var(--brand-charcoal);
}
.header__brand:hover { color: var(--brand-orange); }

.header__nav { display: none; align-items: center; gap: 0.125rem; }
@media (min-width: 1024px) { .header__nav { display: flex; } }

.nav-link {
  position: relative;
  padding: 0.625rem 0.875rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brand-charcoal);
  border-radius: var(--radius);
}
.nav-link:hover { color: var(--brand-orange); }
.nav-link.is-active { color: var(--brand-orange); font-weight: 600; }
.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0.875rem; right: 0.875rem; bottom: 0.3rem;
  height: 4px;
  background-color: var(--brand-orange);
  -webkit-mask: var(--brush-accent) no-repeat center / contain;
          mask: var(--brush-accent) no-repeat center / contain;
}

.nav-dropdown { position: relative; }
.nav-dropdown__toggle {
  padding: 0.625rem 0.875rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brand-charcoal);
  border-radius: var(--radius);
}
.nav-dropdown__toggle:hover { color: var(--brand-orange); }
.nav-dropdown__menu {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 240px;
  background: var(--surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lift);
  padding: 0.5rem 0;
  display: none;
  border-top: 3px solid var(--brand-orange);
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu { display: block; }
.nav-dropdown__menu a {
  display: block;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brand-charcoal);
}
.nav-dropdown__menu a:hover { background: var(--brand-cream-soft); color: var(--brand-orange); }

.header__actions { display: flex; align-items: center; gap: 0.875rem; }
.header__phone {
  display: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brand-charcoal);
}
@media (min-width: 768px) { .header__phone { display: inline; } }
.header__phone:hover { color: var(--brand-orange); }

.hamburger {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 8px;
  border-radius: var(--radius);
}
.hamburger:hover { background: var(--brand-cream-soft); }
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger span {
  width: 22px; height: 2px; background: var(--brand-charcoal);
  transition: transform .2s, opacity .2s;
  border-radius: 2px;
}
.header.is-open .hamburger span:nth-child(1) { transform: translateY(6px) rotate(45deg); background: var(--brand-orange); }
.header.is-open .hamburger span:nth-child(2) { opacity: 0; }
.header.is-open .hamburger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); background: var(--brand-orange); }

/* ---- Mobile drawer ---------------------------------------------------- */
.mobile-nav {
  display: none;
  border-top: 1px solid var(--line-soft);
  background: var(--surface);
}
.header.is-open .mobile-nav { display: block; }
.mobile-nav__list > li { border-bottom: 1px solid var(--line-soft); }
.mobile-nav__list > li:last-child { border-bottom: 0; }
.mobile-nav__link {
  display: block;
  padding: 0.9375rem 0;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--brand-charcoal);
}
.mobile-nav__link:hover { color: var(--brand-orange); }
.mobile-nav__group-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9375rem 0;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--brand-charcoal);
  text-align: left;
}
.mobile-nav__group-btn:hover { color: var(--brand-orange); }
.mobile-nav__sublist { padding: 0 0 0.5rem 0.5rem; display: none; }
.mobile-nav__group.is-open .mobile-nav__sublist { display: block; }
.mobile-nav__sublist a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--ink-muted);
}
.mobile-nav__sublist a:hover { color: var(--brand-orange); }
.mobile-nav__footer { padding: 1rem 0; border-top: 1px solid var(--line-soft); }

/* ---- Hero — split (new premium layout) ------------------------------- */
.hero-split {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(70% 100% at 20% 30%, rgba(255, 215, 195, 0.55), transparent 70%),
    radial-gradient(60% 100% at 90% 80%, rgba(196, 138, 90, 0.22), transparent 70%),
    linear-gradient(180deg, var(--brand-cream-soft) 0%, var(--brand-cream) 100%);
  padding: calc(var(--header-h) + 2rem) 0 4rem;
}
@media (min-width: 768px) {
  .hero-split { padding: calc(var(--header-h-lg) + 3.5rem) 0 6.5rem; }
}
@media (min-width: 1024px) {
  .hero-split { padding: calc(var(--header-h-lg) + 5rem) 0 8rem; }
}
.hero-split__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-split .container { position: relative; z-index: 2; }
.hero-split__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-split__grid { grid-template-columns: 1.05fr 1fr; gap: 4.5rem; }
}
.hero-split__content h1 {
  color: var(--brand-charcoal);
  font-size: clamp(2.375rem, 5.4vw, 4.5rem);
  line-height: 1.02;
  max-width: 16ch;
}
.hero-split__content .eyebrow { color: var(--brand-orange); }
.hero-split__content .hero-lead {
  margin-top: 1.5rem;
  max-width: 52ch;
  font-size: 1.125rem;
  color: var(--brand-charcoal-soft);
  line-height: 1.7;
}
.hero-split__content .hero-actions {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}
.hero-stats {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 480px;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat__num {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.4vw, 1.875rem);
  font-weight: 900;
  color: var(--brand-orange);
  line-height: 1;
}
.hero-stat__label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brand-charcoal);
  font-weight: 600;
  margin-top: 0.5rem;
}
.hero-split__media { position: relative; }
/* ---- Hero — legacy full-bleed (kept for fallback) -------------------- */
.hero-full {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--brand-cream);
  overflow: hidden;
}
.hero-full::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 80% at 15% 30%, rgba(255, 215, 195, 0.7), transparent 60%),
    radial-gradient(70% 100% at 90% 90%, rgba(196, 138, 90, 0.35), transparent 70%),
    linear-gradient(135deg, var(--brand-cream-soft), var(--brand-cream) 60%, var(--brand-tan-soft));
  z-index: 0;
}
.hero-full .container { position: relative; z-index: 2; padding-top: 7rem; padding-bottom: 5rem; }
@media (min-width: 768px) { .hero-full .container { padding-top: 9rem; padding-bottom: 7rem; } }
.hero-full__body { max-width: 680px; }
.hero-full h1 { color: var(--brand-charcoal); }
.hero-full .eyebrow { color: var(--brand-orange); }
.hero-full p {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  max-width: 560px;
  color: var(--brand-charcoal-soft);
}
.hero-full .hero-actions { margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: 0.875rem; }

/* ---- Hero — short (inner pages) -------------------------------------- */
.hero-short {
  padding-top: calc(var(--header-h) + 3.25rem);
  padding-bottom: 3.5rem;
  background:
    radial-gradient(50% 100% at 85% 20%, rgba(196, 138, 90, 0.18), transparent 70%),
    linear-gradient(180deg, var(--brand-cream-soft) 0%, var(--brand-cream-soft) 70%, var(--brand-cream) 100%);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero-short { padding-top: calc(var(--header-h-lg) + 4rem); padding-bottom: 4.5rem; }
}
.hero-short .container { position: relative; z-index: 1; }
.hero-short h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--brand-charcoal);
  line-height: 1.08;
  max-width: 18ch;
}
.hero-short p {
  margin-top: 1rem;
  max-width: 60ch;
  color: var(--brand-charcoal-soft);
  font-size: 1.0625rem;
}
.hero-short .eyebrow { color: var(--brand-orange); }
.hero-short::before {
  content: "";
  position: absolute;
  top: 18%;
  right: -80px;
  width: 260px;
  height: 260px;
  background: var(--brand-tan-soft);
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}

/* ---- Unit hero gallery decorative accents ---------------------------- */
.unit-hero-gallery { position: relative; }
.unit-hero-gallery::before {
  content: "";
  position: absolute;
  top: -14px; left: -14px;
  width: 28px; height: 28px;
  background: var(--brand-orange);
  border-radius: 50%;
  box-shadow: 0 10px 22px -6px rgba(247, 96, 23, 0.45);
  z-index: 2;
}
.unit-hero-gallery::after {
  content: "";
  position: absolute;
  bottom: -10px; right: -10px;
  width: 22px; height: 22px;
  border: 2.5px solid var(--brand-orange);
  border-radius: 50%;
  background: transparent;
  z-index: 2;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--ink-subtle);
  margin-bottom: 1.25rem;
  letter-spacing: 0.03em;
}
.breadcrumbs a { color: var(--ink-muted); }
.breadcrumbs a:hover { color: var(--brand-orange); }
.breadcrumbs .sep { color: var(--brand-tan); }
.breadcrumbs .current { color: var(--brand-charcoal); font-weight: 600; }

/* ---- Grids ------------------------------------------------------------ */
.grid { display: grid; gap: 1.75rem; }
.grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .grid-4 { grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2.75rem;
}

/* ---- Cards (premium) ------------------------------------------------- */
.card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  height: 100%;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
  border: 1px solid transparent;
}
a.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}
.section--sage .card { background: var(--surface); color: var(--ink); }
.section--sage .card h3 { color: var(--brand-charcoal); }
.section--sage .card p { color: var(--ink-muted); }
.section--dark .card { background: var(--surface); color: var(--ink); }
.section--dark .card h3 { color: var(--brand-charcoal); }
.section--dark .card p { color: var(--ink-muted); }

.card__image {
  aspect-ratio: 4 / 3;
  background: var(--brand-cream-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--brand-tan);
  font-size: 0.6875rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  position: relative;
}
.card__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card__body { padding: 1.625rem 1.625rem 1.75rem; display: flex; flex-direction: column; flex: 1; }
.card__meta {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--brand-tan);
  font-weight: 700;
  margin-bottom: 0.625rem;
}
.card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-charcoal);
  margin: 0;
  line-height: 1.25;
}
.card__desc {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  color: var(--ink-muted);
  flex: 1;
  line-height: 1.65;
}
.card__cta {
  margin-top: 1.25rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-orange);
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}
a.card:hover .card__cta { color: var(--brand-orange-hover); }

/* ---- Benefit columns -------------------------------------------------- */
.benefit { display: flex; flex-direction: column; }
.benefit__icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-xl);
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-orange-soft);
  color: var(--brand-orange);
}
.benefit__icon svg { width: 26px; height: 26px; display: block; }
.section--sage .benefit__icon { background: rgba(255, 255, 255, 0.16); }
/* Per-benefit icon colour overrides on sage section */
.section--sage .benefit--location  .benefit__icon { background: rgba(247, 96, 23, 0.20);  color: #ffb38a; }
.section--sage .benefit--privacy   .benefit__icon { background: rgba(255, 255, 255, 0.18); color: #fff4e8; }
.section--sage .benefit--bushveld  .benefit__icon { background: rgba(255, 232, 214, 0.20); color: #ffe8d6; }
.section--sage .benefit--pricing   .benefit__icon { background: rgba(247, 96, 23, 0.92);  color: #fff; }
.benefit h3 { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 700; color: var(--brand-charcoal); }
.section--sage .benefit h3 { color: #fff; }
.benefit p { margin-top: 0.625rem; font-size: 0.9375rem; }

/* ---- Feature block (split text + media) ----------------------------- */
.feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  align-items: center;
}
@media (min-width: 768px) {
  .feature { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .feature--reverse > :first-child { order: 2; }
}
@media (min-width: 1024px) {
  .feature { gap: 5rem; }
}
.feature__media {
  aspect-ratio: 4 / 3;
  background: var(--brand-cream-soft);
  border-radius: var(--radius-2xl);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-tan);
  font-size: 0.875rem;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  overflow: hidden;
  letter-spacing: 0.12em;
  box-shadow: var(--shadow-card);
}
.feature__media img,
a.feature__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
a.feature__media { transition: transform .18s ease, box-shadow .18s ease; }
a.feature__media:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.feature__body p { margin-top: 1.125rem; font-size: 1rem; }

/* Illustration variant — for line-art / sketch images that shouldn't be
   framed like photos. No background, no shadow, no border-radius crop. */
.feature__illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.feature__illustration img {
  width: 100%;
  height: auto;
  max-width: 540px;
  display: block;
}

/* ---- Amenity grid ----------------------------------------------------- */
.amenity-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
}
@media (min-width: 768px) { .amenity-grid { grid-template-columns: repeat(3, 1fr); } }
.amenity-grid > div > .eyebrow { color: var(--brand-tan); }
.amenity-grid ul { display: flex; flex-direction: column; gap: 0.625rem; }
.amenity-grid li {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.9375rem; color: var(--ink-muted);
  font-family: var(--font-body);
}
.amenity-grid li::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand-orange);
  flex-shrink: 0;
}

/* ---- Stat row --------------------------------------------------------- */
.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem 2rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 0;
}
.stat-row > div { display: flex; flex-direction: column; }
.stat-row .eyebrow { margin-bottom: 0.375rem; color: var(--brand-tan); }
.stat-row b { font-weight: 700; color: var(--brand-charcoal); font-family: var(--font-heading); font-size: 1.0625rem; }

/* ---- Gallery — filter grid (base) ------------------------------------ */
.gallery-filter { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.75rem; }
.gallery-filter__btn {
  padding: 0.5rem 1.125rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  background: var(--surface);
  color: var(--brand-charcoal);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: all .18s ease;
}
.gallery-filter__btn:hover { border-color: var(--brand-orange); color: var(--brand-orange); }
.gallery-filter__btn.is-active {
  background: var(--brand-orange);
  color: #fff;
  border-color: var(--brand-orange);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.875rem;
}
@media (min-width: 768px)  { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1.125rem; } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-tile {
  aspect-ratio: 1 / 1;
  background: var(--brand-cream-soft);
  border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-tan);
  font-size: 0.6875rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}
.gallery-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; }
.gallery-grid > .gallery-tile.is-hidden,
.gallery-editorial > .gallery-tile.is-hidden { display: none; }

/* ---- Gallery — editorial mixed grid ---------------------------------- */
.gallery-editorial {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 140px;
}
@media (min-width: 768px) {
  .gallery-editorial {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .gallery-editorial { grid-auto-rows: 210px; }
}
.gallery-editorial > * {
  grid-column: span 1;
  grid-row: span 1;
  border-radius: var(--radius-xl);
}
.gallery-editorial > .feature-tile { grid-column: span 2; grid-row: span 2; border-radius: var(--radius-2xl); }
@media (min-width: 768px) {
  .gallery-editorial > .tall-tile { grid-row: span 2; }
  .gallery-editorial > .wide-tile { grid-column: span 2; }
}

/* ---- Video tiles ------------------------------------------------------ */
.video-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
.video-tile {
  aspect-ratio: 16 / 9;
  background: var(--brand-cream-soft);
  border-radius: var(--radius-2xl);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-tan);
  font-size: 0.8125rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: var(--shadow-soft);
}

/* ---- Step strip ------------------------------------------------------- */
.steps { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  padding: 2rem 1.75rem;
  background: var(--surface);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-soft);
  position: relative;
}
.step__label { color: var(--brand-orange); margin-bottom: 1rem; }
.step__title { font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem; color: var(--brand-charcoal); }
.step p { margin-top: 0.625rem; font-size: 0.9375rem; }

/* ---- Info card grid --------------------------------------------------- */
.info-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .info-grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .info-grid--3 { grid-template-columns: repeat(3, 1fr); } }
.info-card {
  padding: 1.625rem 1.5rem;
  background: var(--surface);
  border-left: 4px solid var(--brand-tan);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  font-size: 0.9375rem;
}
.info-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--brand-charcoal);
  margin-bottom: 0.5rem;
  font-size: 1.0625rem;
}
.info-card p { font-size: 0.9375rem; }
.info-card a { color: var(--brand-orange); }
.info-card a:hover { color: var(--brand-orange-hover); }

/* ---- Comparison table ------------------------------------------------- */
.compare-table {
  width: 100%;
  font-size: 0.9375rem;
  border-collapse: collapse;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.compare-table thead { background: var(--brand-charcoal); color: #fff; }
.compare-table th, .compare-table td { text-align: left; padding: 1rem 1.25rem; font-weight: 400; }
.compare-table th { font-family: var(--font-body); font-weight: 600; font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; }
.compare-table tbody tr { border-top: 1px solid var(--line-soft); }
.compare-table tbody tr:hover { background: var(--brand-cream-soft); }
.compare-table .num { color: var(--ink-muted); font-family: var(--font-body); }
.compare-table td b { font-family: var(--font-heading); font-weight: 700; color: var(--brand-charcoal); }
.compare-table a { color: var(--brand-orange); font-weight: 600; }
.compare-table a:hover { color: var(--brand-orange-hover); }
.compare-desktop { display: none; overflow-x: auto; }
@media (min-width: 768px) { .compare-desktop { display: block; } }
.compare-mobile { display: grid; gap: 0.875rem; }
@media (min-width: 768px) { .compare-mobile { display: none; } }
.compare-mobile a {
  display: block;
  padding: 1.25rem;
  background: var(--surface);
  border-radius: var(--radius-xl);
  border-left: 4px solid var(--brand-orange);
  box-shadow: var(--shadow-soft);
}

/* ---- Tags ------------------------------------------------------------- */
.tag-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag {
  padding: 0.4375rem 1rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  background: var(--brand-cream);
  color: var(--brand-charcoal);
  border-radius: 999px;
}

/* ---- Layout list ----------------------------------------------------- */
.layout-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 1.75rem;
}
.layout-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 0; font-size: 0.9375rem;
  border-top: 1px solid var(--line-soft);
}
.layout-list li:first-child { border-top: 0; }
.layout-list .room { font-family: var(--font-heading); font-weight: 700; color: var(--brand-charcoal); }
.layout-list .beds { color: var(--ink-muted); font-family: var(--font-body); }

/* ---- Unit hero gallery (premium composition) ------------------------ */
.unit-hero-gallery {
  display: grid;
  gap: 0.875rem;
  grid-template-columns: 1fr;
  margin-top: 2.25rem;
}
@media (min-width: 768px) {
  .unit-hero-gallery { grid-template-columns: 2fr 1fr; gap: 1.125rem; }
}
.unit-hero-gallery__main {
  aspect-ratio: 16 / 10;
  background: var(--brand-cream-soft);
  border-radius: var(--radius-2xl);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-tan);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.875rem;
  box-shadow: var(--shadow-card);
}
.unit-hero-gallery__side {
  display: grid; gap: 0.875rem;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 768px) { .unit-hero-gallery__side { grid-template-columns: 1fr; gap: 1.125rem; } }
.unit-hero-gallery__tile {
  aspect-ratio: 4 / 3;
  background: var(--brand-cream-soft);
  border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-tan);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
  box-shadow: var(--shadow-soft);
}
.unit-hero-actions { margin-top: 1.75rem; display: flex; flex-wrap: wrap; gap: 0.875rem; }
.unit-hero-gallery__main img,
.unit-hero-gallery__tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.image-cluster__main img,
.image-cluster__circle img,
.image-cluster__rect img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Standalone wildlife/illustration image (no card frame) */
.standalone-image {
  display: block;
  max-width: 720px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/* ---- FAQ accordion ---------------------------------------------------- */
.accordion {
  background: var(--surface);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.accordion__item { border-top: 1px solid var(--line-soft); transition: background-color .2s ease; }
.accordion__item:first-child { border-top: 0; }
.accordion__item.is-open { background: var(--brand-cream-soft); }
.accordion__btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.375rem 1.5rem;
  text-align: left;
  gap: 1rem;
}
.accordion__btn span.q {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--brand-charcoal);
  font-size: 1.0625rem;
}
.accordion__btn span.icon {
  color: var(--brand-orange);
  font-size: 1.375rem;
  line-height: 1;
  flex-shrink: 0;
  font-weight: 400;
  width: 1.5rem;
  text-align: center;
}
.accordion__answer {
  display: none;
  padding: 0 3rem 1.5rem 1.5rem;
  color: var(--ink-muted);
  font-size: 0.9375rem;
  line-height: 1.75;
}
.accordion__item.is-open .accordion__answer { display: block; }
.accordion__item.is-open .accordion__btn span.icon::before { content: "−"; }
.accordion__btn span.icon::before { content: "+"; }

/* ---- Forms ------------------------------------------------------------ */
.field { display: flex; flex-direction: column; gap: 0.4375rem; }
.field > label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--brand-charcoal);
  text-transform: uppercase;
}
.field > input, .field > select, .field > textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--surface);
  color: var(--brand-charcoal);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.4;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field > input:focus, .field > select:focus, .field > textarea:focus {
  outline: none;
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 4px rgba(247, 96, 23, 0.12);
}
.field > textarea { resize: vertical; min-height: 140px; }
.form-grid { display: grid; gap: 1.25rem; }
.form-grid--2 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .form-grid--2 { grid-template-columns: 1fr 1fr; } }

.form-success {
  padding: 2rem;
  background: var(--brand-cream-soft);
  border-left: 4px solid var(--brand-orange);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-soft);
}

/* ---- Contact tiles ---------------------------------------------------- */
.contact-tiles { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .contact-tiles { grid-template-columns: repeat(3, 1fr); } }
.contact-tile {
  display: block;
  padding: 2rem 1.75rem;
  background: var(--surface);
  border-top: 3px solid var(--brand-orange);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-soft);
  transition: transform .22s ease, box-shadow .22s ease;
}
.contact-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.contact-tile .eyebrow { color: var(--brand-orange); margin-bottom: 0.625rem; }
.contact-tile .value {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-charcoal);
  display: block;
}

/* ---- Map block -------------------------------------------------------- */
.map-block {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .map-block { grid-template-columns: 1fr 2fr; } }
.map-block__embed {
  aspect-ratio: 16 / 10;
  background: var(--brand-cream-soft);
  border-radius: var(--radius-2xl);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-tan);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8125rem;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
a.map-block__embed:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.map-block__embed img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---- CTA strip -------------------------------------------------------- */
.cta-strip {
  padding: var(--section-y) 0;
  background: var(--brand-charcoal);
  color: var(--ink-on-dark);
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) { .cta-strip { padding: var(--section-y-lg) 0; } }
.cta-strip .container { position: relative; z-index: 1; }
.cta-strip h2 { color: #fff; }
.cta-strip p { color: var(--ink-on-dark-muted); margin-top: 0.875rem; }
.cta-strip .eyebrow { color: var(--brand-orange); }
.cta-strip__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .cta-strip__row { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .cta-strip__actions { justify-content: flex-end; }
}
.cta-strip__actions { display: flex; flex-wrap: wrap; gap: 0.875rem; }
.cta-strip .section-title h2::after { background-color: var(--brand-orange); }

.cta-strip--orange { background: var(--brand-orange); }
.cta-strip--orange h2 { color: #fff; }
.cta-strip--orange p { color: rgba(255,255,255,0.92); }
.cta-strip--orange .eyebrow { color: #fff; }
.cta-strip--orange .btn--on-dark { background: #fff; color: var(--brand-orange); border-color: #fff; }
.cta-strip--orange .btn--on-dark:hover { background: var(--brand-charcoal); color: #fff; border-color: var(--brand-charcoal); }
.cta-strip--orange .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.35); }
.cta-strip--orange .btn--ghost:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* ---- Booking engine block -------------------------------------------- */
.booking-block {
  margin-top: 2.25rem;
  padding: 2.75rem 2rem;
  background: var(--surface);
  border-top: 4px solid var(--brand-orange);
  border-radius: var(--radius-2xl);
  text-align: center;
  box-shadow: var(--shadow-card);
}
.booking-block p { max-width: var(--prose-max); margin: 0 auto 1.75rem; font-size: 1rem; }
.booking-block .fallback { margin-top: 1.75rem; font-size: 0.9375rem; color: var(--ink-muted); }
.booking-block .fallback a { color: var(--brand-orange); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.booking-block .fallback a:hover { color: var(--brand-orange-hover); }

/* ---- Nudge ------------------------------------------------------------ */
.nudge {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.25rem;
  padding: 1.875rem;
  background: var(--brand-cream-soft);
  border-left: 4px solid var(--brand-orange);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-soft);
}
.nudge > div > div:first-child {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--brand-charcoal);
  font-size: 1.125rem;
}
.nudge p { margin-top: 0.375rem; font-size: 0.9375rem; }

/* ---- Category chip nav ----------------------------------------------- */
.chip-nav { display: flex; flex-wrap: wrap; gap: 0.625rem; }
.chip {
  padding: 0.625rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  color: var(--brand-charcoal);
  transition: all .18s ease;
}
.chip:hover { border-color: var(--brand-orange); color: var(--brand-orange); background: var(--brand-cream-soft); }

/* ---- Footer ----------------------------------------------------------- */
.footer {
  background: var(--brand-charcoal);
  color: var(--ink-on-dark);
  position: relative;
  overflow: hidden;
}
.footer .container { position: relative; z-index: 1; }
.footer__grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr;
  padding: 4.5rem 0 3rem;
}
@media (min-width: 768px) { .footer__grid { grid-template-columns: repeat(4, 1fr); } }
.footer h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: 1.25rem;
}
.footer ul li { margin-bottom: 0.625rem; }
.footer a { font-size: 0.9375rem; color: var(--ink-on-dark-muted); font-family: var(--font-body); }
.footer a:hover { color: var(--brand-orange); }
.footer__brand-name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.375rem;
  color: #fff;
}
.footer__blurb {
  margin-top: 0.875rem;
  font-size: 0.9375rem;
  color: var(--ink-on-dark-muted);
  max-width: 22rem;
  line-height: 1.7;
}
.footer__socials { margin-top: 1.25rem; display: flex; gap: 0.75rem; }
.footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink-on-dark-muted);
  transition: background-color .18s ease, color .18s ease, transform .12s ease;
}
.footer__socials a:hover { background: var(--brand-orange); color: #fff; transform: translateY(-2px); }
.footer__socials svg { width: 18px; height: 18px; display: block; }
.footer .btn--secondary { color: #fff; border-color: rgba(255,255,255,0.45); }
.footer .btn--secondary:hover { background: var(--brand-orange); border-color: var(--brand-orange); color: #fff; }
.footer__legal {
  padding: 1.75rem 0 2rem;
  border-top: 1px solid var(--line-dark);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.875rem;
  font-size: 0.8125rem;
  color: var(--ink-on-dark-subtle);
}
.footer__legal ul { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer__legal a { font-size: 0.8125rem; color: var(--ink-on-dark-subtle); }
.footer__legal a:hover { color: var(--brand-orange); }

/* ---- Spacing utilities ----------------------------------------------- */
.mt-2  { margin-top: 0.5rem; }
.mt-3  { margin-top: 0.75rem; }
.mt-4  { margin-top: 1rem; }
.mt-6  { margin-top: 1.5rem; }
.mt-8  { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }


/* ---- Section divider images ---------------------------------------------
   Full-width PNG strips dropped in between sections. The image's own top
   and bottom colors do the visual transition work, so the divider sits
   flush between two solid-color sections without any overlap or mask.
   ---------------------------------------------------------------------- */
/* ---- Brand logo sizing -------------------------------------------------
   The logo is a square illustrated badge — use it inline in the header
   and at a larger scale in the footer brand block. */
.header__brand img {
  display: block;
  height: 48px;
  width: auto;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .header__brand img { height: 56px; }
}

.footer__brand-name img.footer__logo {
  display: block;
  height: 92px;
  width: auto;
  margin-bottom: 0.25rem;
}

/* ---- Floating WhatsApp button ----------------------------------------- */
.whatsapp-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.42),
              0 4px 10px rgba(0, 0, 0, 0.18);
  transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
}
.whatsapp-fab:hover  { background: #1ebe5c; color: #fff; transform: scale(1.06); }
.whatsapp-fab:active { transform: scale(0.96); }
.whatsapp-fab:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px #fff,
              0 0 0 6px #25D366,
              0 8px 22px rgba(37, 211, 102, 0.42);
}
.whatsapp-fab svg { width: 32px; height: 32px; display: block; }

/* Smaller and tighter on mobile */
@media (max-width: 1023px) {
  .whatsapp-fab {
    right: 0.875rem;
    bottom: 0.875rem;
    width: 52px;
    height: 52px;
  }
  .whatsapp-fab svg { width: 28px; height: 28px; }
}
