@font-face{font-family:'Playfair Display';font-style:normal;font-weight:400 900;font-display:swap;src:url('/assets/fonts/playfair-var-latin.woff2') format('woff2')}@font-face{font-family:'Playfair Display';font-style:italic;font-weight:400 900;font-display:swap;src:url('/assets/fonts/playfair-italic-var-latin.woff2') format('woff2')}@font-face{font-family:'Outfit';font-style:normal;font-weight:100 900;font-display:swap;src:url('/assets/fonts/outfit-var-latin.woff2') format('woff2')}
/* ============================================================
   VILLA VIEWS — Shared Stylesheet
   Mobile-first. Min-width breakpoints only.
   sm: 640px | md: 768px | lg: 1024px | xl: 1280px

   THIS FILE IS THE SOURCE, NOT THE FILE PAGES LOAD.
   After editing, run:  node scripts/hash-styles.mjs
   That publishes styles.<hash>.css and restamps every page. Skip it and
   nothing changes in production. See the script header for why.
   ============================================================ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
ul { list-style: none; }

/* ── Tokens ── */
:root {
  --bg:          #0d0d0b;
  --bg-alt:      #0a0a08;
  --bg-card:     #111109;
  --bg-subtle:   rgba(201,169,110,0.04);

  --gold:        #c9a96e;
  --gold-dim:    rgba(201,169,110,0.5);
  --gold-border: rgba(201,169,110,0.15);
  --gold-glow:   rgba(201,169,110,0.06);

  --text-1:  #f2ede0;
  --text-2:  #e8e2d6;
  --text-3:  #ccc4b0;
  --text-4:  #a89e90;
  --text-5:  #8c8278;
  --text-6:  #6a6460;

  --border:       rgba(255,255,255,0.05);
  --border-gold:  rgba(201,169,110,0.15);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;

  --radius-sm: 2px;
  --radius:    4px;
  --radius-lg: 8px;

  /* Spacing scale */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  /* Nav height — used for scroll offset */
  --nav-h: 64px;
}

/* ── Base ── */
body {
  background: var(--bg);
  color: var(--text-2);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Backstop so a stray wide element can never make the page pan sideways.
   `clip` is preferred over `hidden`: it clips without turning the element
   into a scroll container, so sticky positioning keeps working. The `hidden`
   line above it is the fallback for browsers without `clip`. */
html, body {
  overflow-x: hidden;
  overflow-x: clip;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--text-1);
  line-height: 1.15;
}
h1 { font-size: clamp(2.2rem, 8vw, 4rem); }
h2 { font-size: clamp(1.8rem, 5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.1rem; }

h1 em, h2 em, h3 em { font-style: italic; color: var(--gold); }

p { color: var(--text-4); }

/* ── Utility ── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 640px)  { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 3rem; } }
@media (min-width: 1280px) { .container { padding: 0 4rem; } }

.section { padding: var(--space-2xl) 0; }
.section--alt { background: var(--bg-alt); }
.section--border-top { border-top: 0.5px solid var(--border); }

/* ── Eyebrow ── */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 0.5px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 0.5px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  min-height: 44px; /* touch target */
  max-width: 100%;
}
/* Long CTA labels can't stay on one line on a narrow phone, so let them wrap
   rather than push the page sideways. Buttons that already fit are untouched. */
@media (max-width: 480px) {
  .btn { white-space: normal; text-align: center; }
}
.btn--primary {
  background: var(--gold);
  color: #0d0d0b;
  border-color: var(--gold);
}
.btn--primary:hover { background: #b8956a; border-color: #b8956a; }
.btn--outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold-dim);
}
.btn--outline:hover { background: var(--gold-glow); border-color: var(--gold); }
.btn--ghost {
  background: transparent;
  color: var(--text-4);
  border-color: var(--border);
}
.btn--ghost:hover { color: var(--text-1); border-color: rgba(255,255,255,0.15); }

/* ── Inline link arrow ── */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 0.5px solid var(--gold-border);
  padding-bottom: 0.1rem;
  transition: border-color 0.2s;
}
.link-arrow:hover { border-color: var(--gold); }

/* ── Tags / badges ── */
.tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  background: var(--gold-glow);
  color: var(--gold);
  border-radius: var(--radius-sm);
}

/* ── Dividers ── */
.divider {
  border: none;
  border-top: 0.5px solid var(--border-gold);
  margin: 0;
}

/* ================================================================
   NAV
   ================================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(13,13,11,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 0.5px solid var(--border-gold);
}
.nav__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 640px)  { .nav__inner { padding: 0 2rem; } }
@media (min-width: 1280px) { .nav__inner { padding: 0 4rem; } }

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo img {
  height: 34px;
  width: auto;
  mix-blend-mode: screen; /* dissolves black PNG background on dark nav */
}

/* Desktop links — hidden on mobile */
.nav__links {
  display: none;
}
@media (min-width: 1024px) {
  .nav__links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
    justify-content: center;
  }
}

.nav__link {
  position: relative;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-5);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav__link:hover { color: var(--gold); }
.nav__link--active { color: var(--text-2); }

/* Dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; /* flush to bottom of trigger — no gap so hover doesn't break */
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: #141412;
  border: 0.5px solid var(--border-gold);
  border-radius: var(--radius);
  /* Top padding bridges the visual gap without creating a hover dead zone */
  padding: 0.6rem 0 0.5rem;
  box-shadow: 0 16px 40px rgba(0,0,0,0.6);
  z-index: 300;
}
/* Invisible bridge above the menu so moving the mouse downward doesn't kill hover */
.nav__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu { display: block; }
/* Keep menu open when mouse is over it */
.nav__dropdown-menu:hover { display: block; }
.nav__dropdown-item {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
  color: var(--text-4);
  transition: color 0.15s, background 0.15s;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav__dropdown-item:hover { color: var(--gold); background: var(--gold-glow); }
.nav__dropdown-divider {
  border: none;
  border-top: 0.5px solid var(--border);
  margin: 0.4rem 0;
}

/* Nav CTAs — desktop */
.nav__ctas {
  display: none;
  gap: 0.6rem;
  flex-shrink: 0;
}
@media (min-width: 1024px) { .nav__ctas { display: flex; } }

/* Hamburger — mobile only */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  padding: 0.5rem;
}
@media (min-width: 1024px) { .nav__hamburger { display: none; } }
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-3);
  transition: transform 0.25s, opacity 0.25s;
}
.nav__hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav__hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile menu drawer */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: #0f0f0d;
  border-bottom: 0.5px solid var(--border-gold);
  padding: 1rem 1.25rem 2rem;
  z-index: 190;
  overflow-y: auto;
  max-height: calc(100vh - var(--nav-h));
}
.nav__mobile.is-open { display: block; }
@media (min-width: 1024px) { .nav__mobile { display: none !important; } }

.nav__mobile-section { margin-bottom: 1.5rem; }
.nav__mobile-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.5rem 0;
  border-bottom: 0.5px solid var(--border-gold);
  margin-bottom: 0.5rem;
}
.nav__mobile-link {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-4);
  padding: 0.65rem 0;
  border-bottom: 0.5px solid var(--border);
  transition: color 0.15s;
  min-height: 44px;
}
.nav__mobile-link:last-child { border-bottom: none; }
.nav__mobile-link:hover { color: var(--gold); }
.nav__mobile-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.nav__mobile-ctas .btn { width: 100%; justify-content: center; }

/* Scroll offset for anchor links */
[id] { scroll-margin-top: calc(var(--nav-h) + 1rem); }

/* ================================================================
   HERO
   ================================================================ */

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.025) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

/* ── Mobile: image above content, then content below on dark bg ─────────── */
.hero {
  display: flex;
  flex-direction: column;
  padding: 0;
  position: relative;
  overflow: hidden;
}

/* Photo strip — in-flow on mobile, absolutely right on desktop */
.hero__media {
  position: relative;
  width: 100%;
  height: 54svh;
  min-height: 260px;
  max-height: 440px;
  flex-shrink: 0;
  overflow: hidden;
  margin-top: var(--nav-h);
}
/* Bottom-fade: image bleeds into dark content area below */
.hero__media::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
  z-index: 1;
}
.hero__media-inner {
  width: 100%;
  height: 100%;
  display: grid;
  gap: 3px;
  grid-template-rows: 1fr;
}
/* Mobile: first image only */
.hero__media-panel:nth-child(n+2) { display: none; }
.hero__media-panel {
  overflow: hidden;
  position: relative;
  background: #1a1810;
}
.hero__media-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.6s ease;
}
.hero__media-panel:hover img { transform: scale(1.04); }
.hero__media-panel-label {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.6);
  font-weight: 500;
}

/* Vignette — hidden on mobile (::after handles it), left-fade on desktop */
.hero__vignette { display: none; }

/* Content sits cleanly below image on mobile */
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: 1.5rem 1.5rem 2.5rem;
}
@media (min-width: 640px) { .hero__content { padding: 2rem 2rem 3rem; } }

/* ── Desktop (1024px+): absolute photo panel on right ─────────────────── */
@media (min-width: 1024px) {
  .hero {
    flex-direction: row;
    align-items: center;
    min-height: 100svh;
    padding: calc(var(--nav-h) + 3rem) 0 3rem;
  }
  .hero__media {
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 44%;
    height: auto;
    max-height: none;
    margin-top: 0;
    flex-shrink: unset;
  }
  .hero__media::after { display: none; }
  .hero__vignette {
    display: block;
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 55%;
    background: linear-gradient(90deg, var(--bg) 30%, rgba(13,13,11,0.55) 65%, transparent 100%);
    pointer-events: none;
    z-index: 1;
  }
  .hero__media-inner { grid-template-rows: 1fr 1fr 1fr; }
  .hero__media-panel:nth-child(n+2) { display: block; }
  .hero__content { padding: 0; }
}
.hero__headline { margin-bottom: 0.4rem; }
.hero__sub {
  font-size: 1.05rem;
  color: var(--text-5);
  font-weight: 300;
  margin-bottom: 0.4rem;
}
.hero__detail {
  font-size: 0.85rem;
  color: var(--text-6);
  font-weight: 300;
  margin-bottom: 2rem;
}
.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 480px) {
  .hero__ctas { flex-direction: row; flex-wrap: wrap; }
}
.hero__stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.hero__stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-6);
}

/* ================================================================
   TRUST BAR
   ================================================================ */
.trust-bar {
  border-top: 0.5px solid var(--border-gold);
  border-bottom: 0.5px solid var(--border-gold);
  padding: 0.9rem 0;
  overflow: hidden;
  position: relative;
}
/* Fade edges */
.trust-bar::before,
.trust-bar::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 4rem;
  z-index: 2;
  pointer-events: none;
}
.trust-bar::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.trust-bar::after  { right: 0; background: linear-gradient(to left, var(--bg), transparent); }

.trust-bar__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: trust-scroll 28s linear infinite;
  will-change: transform;
}
.trust-bar:hover .trust-bar__track { animation-play-state: paused; }

@keyframes trust-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Each set of items */
.trust-bar__set {
  display: flex;
  gap: 0;
  flex-shrink: 0;
}

.trust-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-5);
  flex-shrink: 0;
  padding: 0 2rem;
}
/* Veteran item slightly brighter */
.trust-bar__item--vet { color: var(--text-4); }

.trust-bar__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
}
.trust-bar__item--vet .trust-bar__dot { opacity: 1; }

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .trust-bar__track { animation: none; }
  .trust-bar__set:last-child { display: none; }
}

/* ================================================================
   PAY AT CLOSE CALLOUT
   ================================================================ */
.pac-callout {
  margin: 0;
  background: linear-gradient(135deg, rgba(201,169,110,0.06) 0%, rgba(201,169,110,0.02) 100%);
  border-top: 0.5px solid var(--border-gold);
  border-bottom: 0.5px solid var(--border-gold);
  padding: 3rem 0;
}
.pac-callout__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .pac-callout__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.pac-callout__headline { margin-bottom: 0.5rem; font-size: clamp(1.5rem, 4vw, 2.2rem); }
.pac-callout__body { font-size: 0.92rem; color: var(--text-4); max-width: 500px; margin-bottom: 1.25rem; }
.pac-callout__stats {
  display: flex;
  flex-wrap: wrap; /* three stats don't fit one phone-width row */
  gap: 1.5rem 2rem;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .pac-callout__stats {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-end; /* right-anchors the whole column */
  }
}
/* Each stat is right-aligned as a unit */
.pac-callout__stat {
  text-align: right;
}
@media (min-width: 768px) {
  .pac-callout__stat { min-width: 120px; } /* consistent width so labels line up */
}
.pac-callout__stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  display: block;
  white-space: nowrap;
}
.pac-callout__stat-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-6);
  margin-top: 0.3rem;
  display: block;
  white-space: nowrap;
}

/* ================================================================
   PROCESS STEPS
   ================================================================ */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border-gold);
  border: 0.5px solid var(--border-gold);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 3rem;
}
@media (min-width: 640px)  { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }

.process-step {
  background: var(--bg);
  padding: 2rem 1.75rem;
  transition: background 0.2s;
  display: block;
  text-decoration: none;
}
.process-step:hover { background: var(--bg-card); }
.process-step__num::before { content: attr(data-num); }
.process-step__num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(201,169,110,0.12);
  line-height: 1;
  margin-bottom: 1rem;
}
.process-step__title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 0.4rem;
}
.process-step__body {
  font-size: 0.82rem;
  color: var(--text-5);
  line-height: 1.65;
}

/* ================================================================
   SERVICES GRID
   ================================================================ */
.services-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .services-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border-gold);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (min-width: 640px)  { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--bg);
  padding: 2rem 1.75rem;
  display: block;
  text-decoration: none;
  transition: background 0.2s;
  min-height: 44px;
}
.service-card:hover { background: var(--bg-card); }
.service-card--featured {
  background: rgba(201,169,110,0.03);
  border: 0.5px solid var(--border-gold);
}
.service-card__icon {
  width: 32px;
  height: 32px;
  margin-bottom: 1.1rem;
  opacity: 0.55;
}
.service-card__icon svg { width: 100%; height: 100%; fill: var(--gold); }
.service-card--featured .service-card__icon { opacity: 1; }
.service-card__name {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 0.35rem;
}
.service-card--featured .service-card__name { color: var(--gold); }
.service-card__desc {
  font-size: 0.82rem;
  color: var(--text-5);
  line-height: 1.6;
  margin-bottom: 0.85rem;
}
.service-card__price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold);
}
.service-card__price span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--text-5);
  font-weight: 500;
}

/* ================================================================
   PACKAGES
   ================================================================ */
.package-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}
@media (min-width: 768px) { .package-grid { grid-template-columns: 1fr 1fr; } }

.package-card {
  background: var(--bg-card);
  border: 0.5px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
}
.package-card--featured {
  background: rgba(201, 169, 110, 0.04);
  border-color: var(--gold);
}
.package-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}
.package-card__name {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.package-card__flag {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  border-radius: 2px;
  padding: 0.2rem 0.45rem;
  white-space: nowrap;
}
.package-card__price {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--text-2);
  margin: 0 0 0.3rem;
}
.package-card__price span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-6);
  font-weight: 500;
}
.package-card__saving {
  font-size: 0.8rem;
  color: var(--gold);
  margin: 0 0 1.35rem;
}
.package-card__label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-6);
  margin-bottom: 0.6rem;
}
.package-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  font-size: 0.86rem;
  color: var(--text-4);
  line-height: 1.95;
}
.package-card__list li { padding-left: 1.1rem; position: relative; }
.package-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.65;
}
.package-card__cta { margin-top: auto; }
.package-note {
  font-size: 0.82rem;
  color: var(--text-6);
  line-height: 1.8;
  margin: -2rem 0 3rem;
}

/* ================================================================
   GALLERY
   ================================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 3px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 280px 280px;
  }
  .gallery-grid__cell:first-child { grid-row: 1 / 3; }
}

.gallery-grid__cell {
  position: relative;
  overflow: hidden;
  background: #161410;
  aspect-ratio: 4/3;
}
@media (min-width: 768px) { .gallery-grid__cell { aspect-ratio: unset; } }

.gallery-grid__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-grid__cell:hover .gallery-grid__img { transform: scale(1.04); }
.gallery-grid__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem 1rem 0.9rem;
  background: linear-gradient(transparent, rgba(13,13,11,0.75));
}
.gallery-grid__tag {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.7);
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px)  { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: var(--bg-subtle);
  border: 0.5px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.9rem;
}
.testimonial-card__star { color: var(--gold); font-size: 0.85rem; }
.testimonial-card__quote {
  font-size: 0.88rem;
  color: var(--text-3);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.testimonial-card__meta {
  border-top: 0.5px solid rgba(201,169,110,0.1);
  padding-top: 0.9rem;
}
.testimonial-card__name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-2);
}
.testimonial-card__role {
  font-size: 0.75rem;
  color: var(--text-5);
  margin-top: 0.15rem;
}

/* ================================================================
   MEET SECTION
   ================================================================ */
.meet {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .meet { grid-template-columns: 1fr 1fr; }
}
.meet__visual {
  min-height: 320px;
  position: relative;
  overflow: hidden;
  background: #161410;
}
@media (min-width: 1024px) { .meet__visual { min-height: 500px; } }
.meet__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.meet__visual-note {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 0.62rem;
  color: rgba(201,169,110,0.35);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.meet__content {
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 640px) { .meet__content { padding: 3rem 2.5rem; } }
@media (min-width: 1024px) { .meet__content { padding: 4rem 3.5rem; } }
.meet__body {
  font-size: 0.95rem;
  color: var(--text-4);
  line-height: 1.85;
  margin-bottom: 2rem;
}
.meet__body p + p { margin-top: 1rem; }
.meet__ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ================================================================
   FINAL CTA BANNER
   ================================================================ */
.cta-banner {
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-banner__glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 250px;
  background: radial-gradient(ellipse, rgba(201,169,110,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner__headline {
  position: relative;
  margin-bottom: 0.75rem;
}
.cta-banner__sub {
  font-size: 0.9rem;
  color: var(--text-6);
  margin-bottom: 2rem;
  position: relative;
  letter-spacing: 0.04em;
}
.cta-banner__btns {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}
@media (min-width: 480px) {
  .cta-banner__btns { flex-direction: row; justify-content: center; }
}

/* ================================================================
   SERVICE PAGE HERO (interior pages)
   ================================================================ */
.page-hero {
  padding: calc(var(--nav-h) + 4rem) 0 3rem;
  border-bottom: 0.5px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.025) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.page-hero__content { position: relative; z-index: 1; max-width: 680px; }
.page-hero__headline { margin-bottom: 0.75rem; }
.page-hero__body {
  font-size: 1rem;
  color: var(--text-4);
  max-width: 520px;
  margin-bottom: 1.75rem;
}
.page-hero__ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ================================================================
   PRICING CARD
   ================================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px) { .pricing-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.pricing-card {
  background: var(--bg-card);
  border: 0.5px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
}
.pricing-card--featured {
  border-color: var(--gold);
  background: rgba(201,169,110,0.05);
}
.pricing-card__name {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-4);
  margin-bottom: 0.5rem;
}
.pricing-card__price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.pricing-card__note {
  font-size: 0.78rem;
  color: var(--text-5);
  margin-bottom: 1.5rem;
}
.pricing-card__features {
  list-style: none;
  margin-bottom: 1.75rem;
}
.pricing-card__feature {
  font-size: 0.85rem;
  color: var(--text-4);
  padding: 0.45rem 0;
  border-bottom: 0.5px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.pricing-card__feature::before {
  content: '✓';
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* ================================================================
   FAQ ACCORDION
   ================================================================ */
.faq-list { margin-top: 2rem; }
.faq-item {
  border-bottom: 0.5px solid var(--border);
}
.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-2);
  text-align: left;
  min-height: 44px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
}
.faq-item__trigger:hover { color: var(--gold); }
.faq-item__icon {
  width: 20px;
  height: 20px;
  border: 0.5px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.25s;
}
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); }
.faq-item__body {
  display: none;
  padding: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--text-4);
  line-height: 1.8;
}
.faq-item.is-open .faq-item__body { display: block; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: #080807;
  border-top: 0.5px solid var(--border-gold);
  padding: 3.5rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; } }

.footer__logo {
  height: 30px;
  width: auto;
  mix-blend-mode: screen;
  margin-bottom: 0.9rem;
  opacity: 0.8;
}
.footer__desc {
  font-size: 0.82rem;
  color: var(--text-4);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  max-width: 280px;
}
.footer__contact-item {
  font-size: 0.85rem;
  color: var(--text-4);
  margin-bottom: 0.3rem;
}
.footer__contact-item a {
  color: var(--text-3);
  transition: color 0.15s;
}
.footer__contact-item a:hover { color: var(--gold); }

.footer__col-title {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.footer__links { }
.footer__links li { margin-bottom: 0.55rem; }
.footer__links a {
  font-size: 0.85rem;
  color: var(--text-4);
  transition: color 0.15s;
}
.footer__links a:hover { color: var(--gold); }

/* Two rows rather than three columns: the credentials line got long enough that a
   single space-between row wrapped it mid-phrase. Grid areas give it its own row
   without restructuring the markup on every page. */
.footer__bottom {
  border-top: 0.5px solid var(--border);
  padding-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .footer__bottom {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "creds creds"
      "legal copy";
    align-items: center;
    gap: 1.35rem 2rem;
  }
  .footer__vet   { grid-area: creds; text-align: center; }
  .footer__legal { grid-area: legal; }
  .footer__copy  { grid-area: copy; justify-self: end; text-align: right; }
}
.footer__copy {
  font-size: 0.78rem;
  color: var(--text-5);
}
.footer__copy a { color: var(--text-5); transition: color 0.15s; text-decoration: underline; text-underline-offset: 2px; }
.footer__copy a:hover { color: var(--gold); }
.footer__vet {
  margin: 0;
  font-size: 0.68rem;
  color: var(--text-5);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1.7;
}
.footer__legal { margin: 0; }

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-fade-up { animation: fadeUp 0.65s ease forwards; }
.anim-delay-1 { animation-delay: 0.1s;  opacity: 0; }
.anim-delay-2 { animation-delay: 0.22s; opacity: 0; }
.anim-delay-3 { animation-delay: 0.36s; opacity: 0; }
.anim-delay-4 { animation-delay: 0.52s; opacity: 0; }
.anim-delay-5 { animation-delay: 0.68s; opacity: 0; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ================================================================
   SHARED JS BEHAVIORS
   ================================================================ */
/*
  Nav hamburger + mobile menu: see nav.js
  FAQ accordion: see faq.js
  Both are standalone — no dependencies.
*/

/* ── Mobile readability improvements ───────────────────────────────────────
   Applied to all screens under 768px. Increases base font size, line height,
   and tightens contrast for text on the dark background. */
@media (max-width: 767px) {
  body { font-size: 1.0625rem; }

  /* Body copy paragraphs */
  p { font-size: 0.975rem; line-height: 1.85; }

  /* Service page hero body */
  .page-hero__body { font-size: 1rem; line-height: 1.8; color: var(--text-3); }

  /* Trust bar items — bump up on small screens */
  .trust-bar__item { font-size: 0.8rem; }

  /* Footer: stronger contrast and larger text on mobile */
  .footer__links a { font-size: 1rem; color: var(--text-3); }
  .footer__link { font-size: 1rem; color: var(--text-3); }
  .footer__col-label { font-size: 0.75rem; }
  .footer__col-title { font-size: 0.72rem; color: var(--text-4); }
  .footer__desc { font-size: 0.95rem; line-height: 1.8; color: var(--text-3); }
  .footer__contact-item { font-size: 0.9rem; color: var(--text-3); }
  .footer__contact-item a { font-size: 0.9rem; color: var(--text-3); }
  .footer__contact-link { font-size: 0.95rem; color: var(--text-3); }
  .footer__copy { font-size: 0.82rem; color: var(--text-4); }
  .footer__vet { font-size: 0.72rem; color: var(--text-4); }
  .footer__grid { gap: 2rem; }
  .footer__links li { margin-bottom: 0.75rem; }

  /* Nav mobile menu — improve readability */
  .nav__mobile-link { font-size: 1.1rem; color: var(--text-2); }
  .nav__mobile-sub-link { font-size: 0.95rem; color: var(--text-3); }

  /* Pricing cards on mobile */
  .pricing-card { padding: 1.5rem 1.25rem; }
  .pricing-card__price { font-size: 2.2rem; }
  .pricing-card__feature { font-size: 0.9rem; }

  /* FAQ items */
  .faq-item__trigger { font-size: 0.95rem; padding: 1rem 0; }
  .faq-item__body p { font-size: 0.9rem; line-height: 1.8; }

  /* Section eyebrows */
  .eyebrow { font-size: 0.7rem; }

  /* Checklist items in knowledge hub */
  .kh-checklist li { font-size: 0.92rem; }
}

/* ── Global mobile readability pass ────────────────────────────────────────
   Applies to all screens under 768px. Lifts color and font-size on all
   elements that use small text or dim colors, site-wide. This is the
   authoritative mobile override — more specific than component rules. */
@media (max-width: 767px) {

  /* Any text using --text-5 or --text-6 gets lifted to --text-4 on mobile */
  [style*="color:var(--text-5)"],
  [style*="color: var(--text-5)"],
  [style*="color:var(--text-6)"],
  [style*="color: var(--text-6)"] { color: var(--text-3) !important; }

  /* Small inline font sizes in body copy */
  [style*="font-size:0.7"],
  [style*="font-size: 0.7"] { font-size: 0.9rem !important; }
  [style*="font-size:0.8"],
  [style*="font-size: 0.8"] { font-size: 0.92rem !important; }

  /* Eyebrows and labels */
  .eyebrow { font-size: 0.72rem; color: var(--gold); }

  /* Trust bar */
  .trust-bar__item { font-size: 0.82rem; color: var(--text-4); }

  /* Service card descriptions */
  .service-card__desc { font-size: 0.88rem; color: var(--text-4); }
  .service-card__price { font-size: 0.9rem; }

  /* Process steps */
  .process-step__body { font-size: 0.9rem; color: var(--text-4); line-height: 1.8; }

  /* Why-section items */
  .why-item__title { font-size: 0.95rem; }
  .why-item__body { font-size: 0.9rem; color: var(--text-4); line-height: 1.8; }

  /* Pricing cards */
  .pricing-card__note { font-size: 0.85rem; color: var(--text-4); }
  .pricing-card__name { font-size: 0.78rem; }
  .pricing-card__feature { font-size: 0.9rem; color: var(--text-3); }

  /* Hero detail line */
  .hero__detail { font-size: 0.85rem; color: var(--text-4); }

  /* Page hero body */
  .page-hero__body { font-size: 1rem; line-height: 1.85; color: var(--text-3); }

  /* Section subtitles and body paragraphs */
  p { font-size: 0.95rem; line-height: 1.85; }
  li { font-size: 0.92rem; }

  /* Knowledge hub */
  .kh-section p { font-size: 0.93rem; color: var(--text-4); }
  .kh-checklist li { font-size: 0.92rem; color: var(--text-4); }
  .kh-table td { font-size: 0.85rem; }

  /* Footer — definitive mobile overrides */
  .footer__col-title { font-size: 0.72rem; color: var(--gold); letter-spacing: 0.14em; }
  .footer__links a { font-size: 1rem !important; color: var(--text-3) !important; }
  .footer__links li { margin-bottom: 0.8rem; }
  .footer__desc { font-size: 0.95rem !important; line-height: 1.8; color: var(--text-3) !important; }
  .footer__contact-item { font-size: 0.92rem; color: var(--text-3); }
  .footer__contact-item a { font-size: 0.92rem; color: var(--text-3) !important; }
  .footer__copy { font-size: 0.85rem !important; color: var(--text-4) !important; line-height: 1.8; }
  .footer__vet { font-size: 0.75rem !important; color: var(--text-4) !important; }
  .footer__grid { gap: 2.5rem; }
  /* Credentials lead here too, matching the desktop grid order. The markup keeps them
     last so the grid areas can place them without touching every page's footer. */
  .footer__bottom { display: flex; flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .footer__bottom .footer__vet { order: -1; align-self: center; text-align: center; }

  /* Review cards */
  .rev-grid > div p { font-size: 0.9rem; line-height: 1.8; }

  /* FAQ */
  .faq-item__trigger { font-size: 0.97rem; line-height: 1.55; }
  .faq-item__body p { font-size: 0.92rem; line-height: 1.85; color: var(--text-4); }

  /* CTA banner */
  .cta-banner__sub { font-size: 0.88rem; color: var(--text-4); }

  /* Inline note text commonly used throughout */
  small, .note, [style*="font-size:0.72rem"], [style*="font-size:0.75rem"],
  [style*="font-size:0.78rem"] { font-size: 0.87rem !important; }
}


/* ==========================================================================
   BLOG  (index grid + post pages — used by /blog/)
   ========================================================================== */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 960px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.blog-card:hover { border-color: var(--gold-dim); transform: translateY(-3px); }
.blog-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background: var(--bg-alt);
}
.blog-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.4rem 1.5rem 1.6rem;
  flex: 1;
}
.blog-card__date {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--text-1);
  line-height: 1.35;
}
.blog-card__excerpt {
  font-size: 0.85rem;
  color: var(--text-4);
  line-height: 1.6;
}

/* --- Post page --- */
.post { max-width: 760px; margin: 0 auto; }
.post__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1rem;
}
.post__title {
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  margin-bottom: 0.5rem;
}
.post__featured {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border-gold);
  margin: 2rem 0 3.25rem;
  display: block;
}
.post-content h2 {
  font-size: clamp(1.4rem, 3.5vw, 1.9rem);
  margin: 2.75rem 0 1.1rem;
}
.post-content h3 {
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  margin: 2rem 0 0.85rem;
}
.post-content p { margin-bottom: 1.35rem; line-height: 1.8; color: var(--text-3); }
.post-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.post-content a:hover { color: var(--text-1); }
.post-content ul, .post-content ol { margin: 0 0 1.15rem 1.4rem; color: var(--text-3); }
.post-content li { margin-bottom: 0.5rem; line-height: 1.7; }
.post-content strong { color: var(--text-2); }
.post-content blockquote {
  border-left: 2px solid var(--gold);
  padding: 0.25rem 0 0.25rem 1.25rem;
  margin: 1.5rem 0;
  color: var(--text-2);
  font-style: italic;
}
.post-content img { max-width: 100%; border-radius: var(--radius); margin: 1.5rem 0; }
.post-content figure { margin: 1.5rem 0; }
.post-content figcaption { font-size: 0.8rem; color: var(--text-5); margin-top: 0.5rem; }

.post__cta {
  background: var(--bg-subtle);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  text-align: center;
  margin-top: 4.5rem;
}
.post__cta h2 { font-size: clamp(1.3rem, 3vw, 1.7rem); margin-bottom: 0.6rem; }
.post__cta p { margin-bottom: 1.4rem; }
.post__back {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1.5rem;
}
.post__back:hover { color: var(--gold); }

/* ================================================================
   THIRD-PARTY WIDGETS
   ================================================================ */
/* hCaptcha renders a fixed ~303px checkbox and writes its own inline styles,
   so the cap has to sit on the column we own: without min-width:0 the grid
   track stretches to the widget and pushes a 320px phone sideways. The widget
   itself scrolls in place rather than being cut off. */
.contact-grid > * { min-width: 0; }
.h-captcha {
  max-width: 100%;
  overflow-x: auto;
}
