/* ==========================================================================
   MarkedHomes — Branson Real Estate Photography & Videography
   Design tokens mirror the production build (dark obsidian + gold accent).
   ========================================================================== */

:root {
  --background: 0 0% 4%;
  --foreground: 45 20% 95%;
  --charcoal: 0 0% 8%;
  --obsidian: 0 0% 6%;
  --onyx: 0 0% 12%;
  --gold: 42 65% 55%;
  --champagne: 42 35% 75%;
  --cream: 42 30% 92%;
  --card: 0 0% 7%;
  --card-foreground: 45 20% 95%;
  --primary: 42 65% 55%;
  --primary-foreground: 0 0% 4%;
  --secondary: 0 0% 12%;
  --secondary-foreground: 45 20% 95%;
  --muted: 0 0% 14%;
  --muted-foreground: 0 0% 55%;
  --accent: 42 65% 55%;
  --destructive: 0 72% 51%;
  --border: 0 0% 18%;
  --input: 0 0% 14%;
  --ring: 42 65% 55%;
  --radius: 0.5rem;

  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Outfit", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --container: 1280px;
  --nav-h: 80px; /* 40px logo + 1.25rem padding-block */
}

/* Light-inverted section scopes (used for alternating bands) */
.light-section {
  --background: 0 0% 100%;
  --foreground: 0 0% 8%;
  --card: 0 0% 98%;
  --card-foreground: 0 0% 8%;
  --border: 0 0% 88%;
  --input: 0 0% 94%;
  --muted: 0 0% 96%;
  --muted-foreground: 0 0% 40%;
  --secondary: 0 0% 94%;
  --secondary-foreground: 0 0% 8%;
  --primary-foreground: 0 0% 8%;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
}

.muted-section {
  --background: 0 0% 96%;
  --foreground: 0 0% 8%;
  --card: 0 0% 100%;
  --card-foreground: 0 0% 8%;
  --border: 0 0% 88%;
  --input: 0 0% 94%;
  --muted: 0 0% 92%;
  --muted-foreground: 0 0% 40%;
  --secondary: 0 0% 94%;
  --secondary-foreground: 0 0% 8%;
  --primary-foreground: 0 0% 8%;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
}

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

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

[hidden] { display: none !important; }

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

button, input, textarea, select {
  font: inherit;
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
}

ul { list-style: none; padding: 0; }

:focus-visible {
  outline: 2px solid hsl(var(--ring));
  outline-offset: 3px;
}

.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;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -120%);
  z-index: 200;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 0.75rem 1.25rem;
  font-size: 0.8125rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translate(-50%, 0); }

/* ------------------------------------------------------------ structure -- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.container-narrow { max-width: 900px; }
.container-mid { max-width: 1100px; }

section { position: relative; }

.section { padding-block: 8rem; }
.section-md { padding-block: 6rem; }
.section-sm { padding-block: 4rem; }
.section-xs { padding-block: 3rem; }

.bg-charcoal { background-color: hsl(var(--charcoal)); }
.bg-obsidian { background-color: hsl(var(--obsidian)); }
.border-y { border-block: 1px solid hsl(var(--border) / 0.3); }
.border-t { border-top: 1px solid hsl(var(--border) / 0.3); }

/* ------------------------------------------------------------ typography - */
.eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: hsl(var(--primary));
  font-weight: 400;
}

.eyebrow-muted { color: hsl(var(--muted-foreground)); }

.lede {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
}

.muted { color: hsl(var(--muted-foreground)); }

.h-display {
  font-size: clamp(2.25rem, 6.2vw, 4.5rem);
  line-height: 0.95;
}

.h1 { font-size: clamp(2.25rem, 5.5vw, 3.75rem); }
.h2 { font-size: clamp(1.875rem, 4vw, 3rem); }
.h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
.h4 { font-size: 1.25rem; }

.text-primary { color: hsl(var(--primary)); }

.text-gradient {
  background-image: linear-gradient(
    to right,
    hsl(var(--primary)),
    hsl(var(--champagne)),
    hsl(var(--primary))
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  to { background-position: 200% center; }
}

/* --------------------------------------------------------------- badge --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid hsl(var(--primary) / 0.3);
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.badge svg { width: 1rem; height: 1rem; }

/* -------------------------------------------------------------- buttons -- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid transparent;
  border-radius: calc(var(--radius) - 2px);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn svg { width: 1rem; height: 1rem; }

.btn-lg { padding: 1rem 2rem; font-size: 0.9375rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.8125rem; }
.btn-block { width: 100%; }

.btn-luxury {
  background-image: linear-gradient(
    to right,
    hsl(var(--primary)),
    hsl(var(--champagne)),
    hsl(var(--primary))
  );
  color: hsl(0 0% 4%);
  font-weight: 600;
  box-shadow: 0 10px 15px -3px hsl(var(--primary) / 0.3);
}
.btn-luxury:hover {
  box-shadow: 0 10px 25px -3px hsl(var(--primary) / 0.5);
  transform: scale(1.05);
}

.btn-default {
  background: hsl(var(--primary));
  color: hsl(0 0% 4%);
  font-weight: 600;
}
.btn-default:hover { background: hsl(var(--primary) / 0.9); }

.btn-glass {
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: hsl(var(--foreground) / 0.1);
  border-color: hsl(var(--foreground) / 0.2);
  color: hsl(var(--foreground));
}
.btn-glass:hover { background: hsl(var(--foreground) / 0.2); }

.btn-outline {
  border-color: hsl(var(--border));
  background: transparent;
  color: hsl(var(--foreground));
}
.btn-outline:hover {
  border-color: hsl(var(--primary));
  color: hsl(var(--primary));
}

.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

.btn-arrow { transition: transform 0.3s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ---------------------------------------------------------------- cards -- */
.card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
}

.glass-card {
  border: 1px solid hsl(var(--border) / 0.5);
  background: hsl(var(--card) / 0.8);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  box-shadow: 0 0 80px #00000080, inset 0 1px #ffffff0d;
}

.hover-lift {
  transition: transform 0.5s cubic-bezier(0, 0, 0.2, 1),
              box-shadow 0.5s cubic-bezier(0, 0, 0.2, 1);
}
.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -20px #0009, 0 0 40px #bf9b481a;
}

.glow { box-shadow: 0 0 60px hsl(var(--primary) / 0.15); }

.rounded { border-radius: 1rem; }
.rounded-lg { border-radius: 1.5rem; }

/* ------------------------------------------------------------- reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.reveal-blur { filter: blur(12px); transform: none; }
.reveal.reveal-blur-scale { filter: blur(12px); transform: scale(0.96); }
.reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: none; }
}

.animate-fade-in { animation: fade-in 0.6s ease-out both; }
.animate-fade-in-up { animation: fade-in-up 0.8s ease-out both; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; filter: none; }
}

/* ------------------------------------------------------------- header ---- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: var(--banner-h, 0px);
  z-index: 100;
  padding-block: 1.25rem;
  background: hsl(0 0% 4% / 0.8);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-bottom: 1px solid hsl(0 0% 18% / 0.3);
}

/* Browsers without backdrop-filter get a solid bar rather than a see-through one. */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header { background: hsl(0 0% 4% / 0.97); }
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo img { height: 40px; width: auto; }

.nav-links {
  display: none;
  align-items: center;
  gap: 2.75rem;
}

.nav-link {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: hsl(var(--muted-foreground));
  transition: color 0.3s ease;
}
.nav-link:hover { color: hsl(var(--foreground)); }
.nav-link.is-active { color: hsl(var(--primary)); }

.nav-actions {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: 0;
  color: hsl(var(--foreground));
  cursor: pointer;
}

/* Icon state is driven by aria-expanded, not the `hidden` property —
   SVG elements are SVGElement and have no HTMLElement.hidden. */
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-top: 1px solid hsl(var(--border) / 0.3);
  animation: fade-in 0.4s ease-out;
}
.mobile-menu.is-open { display: flex; }

@media (min-width: 900px) {
  .nav-links, .nav-actions { display: flex; }
  .nav-toggle { display: none; }
  .mobile-menu, .mobile-menu.is-open { display: none; }
}

/* --------------------------------------------------------------- hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  filter: blur(12px);
  transition: opacity 3s ease-out, filter 3s ease-out;
}
.hero-img.is-loaded { opacity: 1; filter: blur(0); }

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    hsl(var(--background) / 0.9),
    hsl(var(--background) / 0.7) 50%,
    hsl(var(--background))
  );
}

.hero-inner {
  position: relative;
  z-index: 10;
  padding-top: 8rem;
  padding-bottom: 5rem;
  text-align: center;
}

.hero-copy { max-width: 64rem; margin-inline: auto; }

.hero h1 { margin-block: 2rem; }

.hero-sub {
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  color: hsl(var(--muted-foreground));
  max-width: 42rem;
  margin: 0 auto 3rem;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-cta { flex-direction: row; }
}

.hero-stat {
  max-width: 28rem;
  margin: 6rem auto 0;
  padding-top: 3rem;
  border-top: 1px solid hsl(var(--border) / 0.3);
  text-align: center;
}

.hero-stat-value {
  font-family: var(--font-serif);
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  color: hsl(var(--primary));
  margin-bottom: 0.5rem;
}

.hero-stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: hsl(var(--muted-foreground));
}

/* -------------------------------------------------------------- grids ---- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 700px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.stack-center {
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1000px) {
  .split { grid-template-columns: repeat(2, 1fr); gap: 4rem; }
  .split-flip .split-media { order: -1; }
}

/* ------------------------------------------------------------- media ----- */
.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid hsl(var(--border) / 0.3);
  box-shadow: 0 25px 50px -12px #00000080;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(var(--background) / 0.4), transparent 60%);
  pointer-events: none;
}

.media-frame.is-zoom:hover img { transform: scale(1.05); }

.ratio-4-3 { aspect-ratio: 4 / 3; }
.ratio-4-5 { aspect-ratio: 4 / 5; }
.ratio-16-9 { aspect-ratio: 16 / 9; }
.ratio-4-3 img, .ratio-4-5 img, .ratio-16-9 img { position: absolute; inset: 0; }

.lake-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 640px) {
  .lake-grid > :nth-child(1),
  .lake-grid > :nth-child(4) { margin-top: 2rem; }
}

/* ------------------------------------------------------- process cards --- */
.icon-circle {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: hsl(var(--primary) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary));
}
.icon-circle svg { width: 1.75rem; height: 1.75rem; }

.icon-square {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  border: 1px solid hsl(var(--primary) / 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary));
}
.icon-square svg { width: 1.75rem; height: 1.75rem; }

.icon-rounded {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: hsl(var(--primary) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary));
  flex-shrink: 0;
}
.icon-rounded svg { width: 1.75rem; height: 1.75rem; }

.step-card {
  text-align: center;
  padding: 2rem;
  border: 1px solid hsl(var(--border) / 0.3);
  border-radius: 1rem;
  background: hsl(var(--card));
}
.step-card h3 { margin-bottom: 0.75rem; font-size: 1.25rem; }
.step-card p { color: hsl(var(--muted-foreground)); }

/* ------------------------------------------------------ service cards ---- */
.service-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  padding: 2.5rem;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0, 0, 0.2, 1),
              box-shadow 0.5s cubic-bezier(0, 0, 0.2, 1),
              border-color 0.4s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: hsl(var(--primary) / 0.5);
  box-shadow: 0 30px 60px -20px #0009, 0 0 40px #bf9b481a;
}
.service-card .icon-square { margin-inline: 0; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.service-card p { color: hsl(var(--muted-foreground)); margin-bottom: 1.5rem; }
.service-price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: hsl(var(--primary));
}
.service-price span {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  display: block;
  margin-bottom: 0.25rem;
}

/* ---------------------------------------------------- featured projects -- */
.feature-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.feature-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.feature-tile:hover img { transform: scale(1.1); }

.feature-tile-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(var(--background)), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.feature-tile:hover .feature-tile-scrim { opacity: 1; }

.feature-tile-caption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}
.feature-tile:hover .feature-tile-caption { transform: translateY(0); }
.feature-tile-caption p:first-child {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: hsl(var(--primary));
  margin-bottom: 0.5rem;
}
.feature-tile-caption p:last-child {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: hsl(45 20% 95%);
}

.section-head-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4rem;
}
@media (min-width: 800px) {
  .section-head-row { flex-direction: row; align-items: flex-end; }
}

/* -------------------------------------------------------------- pricing -- */
.price-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  padding: 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card.is-featured { border: 2px solid hsl(var(--primary)); }

.price-flag {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: hsl(var(--primary));
  color: hsl(0 0% 4%);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0.5rem 1rem;
  white-space: nowrap;
}

.price-tier {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}
.price-card.is-featured .price-tier { color: hsl(var(--primary)); }

.price-amount {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: hsl(var(--foreground));
  margin-bottom: 2rem;
}

.price-list { display: grid; gap: 1rem; margin-bottom: 2.5rem; }
.price-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: hsl(var(--muted-foreground));
}
.price-list svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--primary));
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.price-card .btn { margin-top: auto; }

/* ----------------------------------------------------------- faa strip --- */
.faa-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}
@media (min-width: 800px) {
  .faa-row { flex-direction: row; gap: 3rem; text-align: left; }
}

.faa-seal {
  width: 7rem;
  height: 7rem;
  flex-shrink: 0;
  border: 2px solid hsl(var(--primary));
  background: hsl(var(--primary) / 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  color: hsl(var(--primary));
}
.faa-seal svg { width: 2.5rem; height: 2.5rem; margin-bottom: 0.5rem; }
.faa-seal span {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
}

/* ------------------------------------------------------------ coverage --- */
.map-wrap {
  position: relative;
  background: hsl(var(--card) / 0.5);
  border: 1px solid hsl(var(--border) / 0.5);
  padding: 2rem;
  overflow: hidden;
}
.map-wrap svg { width: 100%; height: auto; }
.map-wrap path {
  fill: hsl(0 0% 14%);
  stroke: hsl(0 0% 20%);
  stroke-width: 0.6;
  transition: fill 0.3s ease;
}
.map-wrap path.is-active { fill: hsl(42 65% 55%); }
.map-wrap path.is-active:hover { fill: hsl(42 65% 65%); }

.map-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 24rem; height: 24rem;
  background: hsl(var(--primary) / 0.1);
  border-radius: 50%;
  filter: blur(64px);
  pointer-events: none;
}

.map-legend {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.map-legend div { display: flex; align-items: center; gap: 0.75rem; }
.map-legend span:first-child { width: 1rem; height: 1rem; display: block; }
.map-legend .swatch-active { background: hsl(var(--primary)); }
.map-legend .swatch-muted { background: hsl(var(--muted)); }
.map-legend span:last-child { font-size: 0.875rem; color: hsl(var(--muted-foreground)); }

.area-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  padding: 1.5rem;
  text-align: center;
}
.area-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.area-card p { font-size: 0.875rem; color: hsl(var(--muted-foreground)); }

/* -------------------------------------------------------------- forms ---- */
.field { display: block; margin-bottom: 1.25rem; }

.field-label {
  display: block;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.5rem;
}

.input, .textarea, .select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: hsl(var(--muted) / 0.3);
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) - 2px);
  color: hsl(var(--foreground));
  font-size: 1rem;
  transition: border-color 0.2s ease;
}
.input::placeholder, .textarea::placeholder { color: hsl(var(--muted-foreground) / 0.7); }
.input:focus, .textarea:focus, .select:focus {
  outline: none;
  border-color: hsl(var(--primary));
}
.textarea { resize: vertical; min-height: 7rem; }

.form-note {
  font-size: 0.875rem;
  text-align: center;
  color: hsl(var(--muted-foreground));
  margin-top: 0.75rem;
}

/* ------------------------------------------------------------ booking ---- */
.booking-shell { max-width: 42rem; margin-inline: auto; }

.progress-track { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
.progress-track span {
  height: 4px;
  flex: 1;
  border-radius: 999px;
  background: hsl(var(--border));
  transition: background-color 0.3s ease;
}
.progress-track span.is-done { background: hsl(var(--primary)); }

.step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.25rem;
}
.step-count {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: hsl(var(--muted-foreground));
}
.step-estimate { font-size: 0.875rem; color: hsl(var(--muted-foreground)); }
.step-estimate strong {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.125rem;
  color: hsl(var(--primary));
}

.step-title { font-size: 1.375rem; margin-bottom: 0.25rem; }
.step-sub { color: hsl(var(--muted-foreground)); margin-bottom: 1.5rem; }

.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
.choice-grid.cols-1 { grid-template-columns: 1fr; }

.choice {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  padding: 0.9rem;
  background: transparent;
  border: 1px solid hsl(var(--border));
  cursor: pointer;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.choice:hover { border-color: hsl(var(--primary) / 0.5); }
.choice.is-selected {
  border-color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.05);
}
.choice-label { font-size: 0.95rem; color: hsl(var(--foreground)); }
.choice-detail { font-size: 0.8125rem; color: hsl(var(--muted-foreground)); }
.choice-extra { font-size: 0.8125rem; color: hsl(var(--primary)); }
.choice-icons { display: flex; gap: 0.35rem; color: hsl(var(--primary)); margin-bottom: 0.15rem; }
.choice-icons svg { width: 1.15rem; height: 1.15rem; }

.choice-wide {
  flex-direction: row;
  align-items: flex-start;
  text-align: left;
  gap: 0.9rem;
  padding: 1.1rem;
}
.choice-wide .choice-body { flex: 1; }
.choice-includes {
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
  margin-top: 0.35rem;
  line-height: 1.5;
}
.choice-price {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: hsl(var(--primary));
}

.step-nav { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.5rem; }
.step-nav .btn-next { flex: 1; }

.time-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); gap: 0.5rem; }

.booking-success { text-align: center; padding-block: 3rem; }
.booking-success .icon-circle { color: hsl(var(--primary)); }

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.6rem;
  border-bottom: 1px solid hsl(var(--border) / 0.5);
  font-size: 0.9375rem;
}
.summary-line:last-child { border-bottom: 0; }
.summary-line dt { color: hsl(var(--muted-foreground)); }
.summary-line dd { color: hsl(var(--foreground)); text-align: right; }
.summary-total dd {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: hsl(var(--primary));
}

/* ----------------------------------------------------------- portfolio --- */
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  background: transparent;
  border: 1px solid hsl(var(--border));
  color: hsl(var(--muted-foreground));
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-btn:hover { border-color: hsl(var(--primary) / 0.6); color: hsl(var(--foreground)); }
.filter-btn.is-active {
  border-color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 0;
  padding: 0;
  background: hsl(var(--card));
  cursor: zoom-in;
  display: block;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item[hidden] { display: none; }

.gallery-caption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1.25rem;
  text-align: left;
  background: linear-gradient(to top, hsl(0 0% 0% / 0.85), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-caption,
.gallery-item:focus-visible .gallery-caption { opacity: 1; }
.gallery-caption .cat {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: hsl(var(--primary));
  display: block;
  margin-bottom: 0.25rem;
}
.gallery-caption .title {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  color: #fff;
}

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: hsl(0 0% 0% / 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.lightbox.is-open { display: flex; animation: fade-in 0.25s ease-out; }
.lightbox img {
  max-width: min(1200px, 92vw);
  max-height: 82vh;
  object-fit: contain;
}
.lightbox-caption {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.lightbox-caption .cat {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: hsl(var(--primary));
  display: block;
}
.lightbox-caption .title { font-family: var(--font-serif); font-size: 1.25rem; color: #fff; }

.lightbox-btn {
  position: absolute;
  background: hsl(0 0% 100% / 0.08);
  border: 1px solid hsl(0 0% 100% / 0.18);
  color: #fff;
  width: 3rem; height: 3rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background-color 0.25s ease;
}
.lightbox-btn:hover { background: hsl(0 0% 100% / 0.18); }
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

.tour-card {
  border: 1px solid hsl(var(--border) / 0.5);
  background: hsl(var(--card));
  overflow: hidden;
}
.tour-card iframe { width: 100%; height: 420px; border: 0; display: block; background: #000; }
.tour-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
}
.tour-card-foot h3 { font-size: 1.125rem; }

/* -------------------------------------------------------------- about ---- */
.value-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  padding: 2rem;
  text-align: center;
  height: 100%;
}
.value-card h3 { font-size: 1.375rem; margin-bottom: 0.75rem; }
.value-card p { color: hsl(var(--muted-foreground)); }

.apart-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.apart-item h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.apart-item p { color: hsl(var(--muted-foreground)); }

/* ------------------------------------------------------------ contact ---- */
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 2rem; }
.contact-detail h3 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: hsl(var(--primary));
  margin-bottom: 0.35rem;
  font-weight: 400;
}
.contact-detail p, .contact-detail a { color: hsl(var(--muted-foreground)); }
.contact-detail a:hover { color: hsl(var(--foreground)); }

/* --------------------------------------------------------------- blog ---- */
.article-hero { padding-top: calc(var(--nav-h) + 4rem); padding-bottom: 3rem; }
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  margin-top: 2rem;
}
.article-meta div { display: flex; align-items: center; gap: 0.5rem; }
.article-meta svg { width: 1rem; height: 1rem; color: hsl(var(--primary)); }

.figure-caption {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  text-align: center;
  margin-top: 1rem;
  font-style: italic;
}

.prose { display: grid; gap: 3.5rem; }
.prose section { display: grid; gap: 1.5rem; }
.prose h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.25rem);
  color: hsl(var(--primary));
}
.prose p {
  font-size: 1.0625rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.8;
}

.callout { border-radius: 1rem; padding: 2rem; }
@media (min-width: 700px) { .callout { padding: 2.5rem; } }
.callout-row { display: flex; gap: 1.25rem; align-items: flex-start; }
.callout h3 {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.check-list { display: grid; gap: 0.75rem; margin-top: 1rem; }
.check-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}
.check-list svg {
  width: 1.25rem; height: 1.25rem;
  color: hsl(var(--primary));
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.fact-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 700px) { .fact-grid { grid-template-columns: repeat(2, 1fr); } }

.fact-card {
  border-radius: 1rem;
  padding: 1.75rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.fact-card h3 {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.fact-card p { font-size: 0.9375rem; color: hsl(var(--muted-foreground)); line-height: 1.65; }

.mini-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 700px) { .mini-grid { grid-template-columns: repeat(3, 1fr); } }
.mini-card { text-align: center; padding: 1.5rem; }
.mini-card .icon-rounded { margin: 0 auto 1rem; }
.mini-card h3 {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.mini-card p { font-size: 0.875rem; color: hsl(var(--muted-foreground)); line-height: 1.65; }

.related-card {
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: transform 0.5s cubic-bezier(0, 0, 0.2, 1),
              box-shadow 0.5s cubic-bezier(0, 0, 0.2, 1);
}
.related-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -20px #0009; }
.related-card h3 {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}
.related-card:hover h3 { color: hsl(var(--primary)); }
.related-card p { font-size: 0.875rem; color: hsl(var(--muted-foreground)); line-height: 1.65; }

/* ------------------------------------------------------------- footer ---- */
.site-footer {
  background: hsl(var(--obsidian));
  border-top: 1px solid hsl(var(--border) / 0.3);
  padding-block: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 4fr 2fr 3fr 3fr; }
}

.footer-logo img { height: 48px; width: auto; margin-bottom: 1.5rem; }
.footer-blurb { color: hsl(var(--muted-foreground)); max-width: 24rem; line-height: 1.75; }

.footer-locale { display: flex; align-items: center; gap: 1rem; margin-top: 2rem; }
.footer-locale img { height: 56px; width: auto; }
.footer-locale span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: hsl(var(--muted-foreground));
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: hsl(var(--primary));
  margin-bottom: 1.5rem;
}
.footer-col .stack { display: flex; flex-direction: column; gap: 1rem; }
.footer-col a, .footer-col span {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  transition: color 0.3s ease;
}
.footer-col a:hover { color: hsl(var(--foreground)); }

.footer-contact-link { display: flex; align-items: center; gap: 0.75rem; }
.footer-contact-link svg { width: 1rem; height: 1rem; color: hsl(var(--primary)); flex-shrink: 0; }

.footer-social { display: flex; gap: 1.25rem; margin-top: 1rem; }
.footer-social a { color: hsl(var(--muted-foreground)); }
.footer-social a:hover { color: hsl(var(--primary)); }
.footer-social svg { width: 1.125rem; height: 1.125rem; }

.footer-base {
  border-top: 1px solid hsl(var(--border) / 0.3);
  margin-top: 4rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
}
@media (min-width: 700px) { .footer-base { flex-direction: row; } }
.footer-base .links { display: flex; gap: 1.5rem; }
.footer-base a:hover { color: hsl(var(--foreground)); }

/* -------------------------------------------------- newsletter popover --- */
.promo {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 120;
  width: min(360px, calc(100vw - 3rem));
  background: #fff;
  color: #111;
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: 0 30px 80px -20px #000000cc;
  animation: fade-in-up 0.5s ease-out both;
}
.promo[hidden] { display: none; }
.promo .icon-rounded { background: hsl(42 65% 55% / 0.15); margin-bottom: 1rem; }
.promo h3 { font-size: 1.375rem; margin-bottom: 0.5rem; color: #111; }
.promo p { font-size: 0.9375rem; color: #555; line-height: 1.6; margin-bottom: 1.25rem; }
.promo input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d6d6d6;
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
  color: #111;
  background: #fff;
}
.promo input:focus { outline: none; border-color: hsl(42 65% 55%); }
.promo .btn { width: 100%; }
.promo-close {
  position: absolute;
  top: 0.9rem; right: 0.9rem;
  background: none; border: 0;
  color: #999;
  cursor: pointer;
  width: 2rem; height: 2rem;
  display: flex; align-items: center; justify-content: center;
}
.promo-close:hover { color: #111; }
.promo-done { font-size: 0.9375rem; color: #2c7a3f; }

@media (max-width: 640px) {
  .promo {
    right: 0.75rem;
    left: 0.75rem;
    bottom: 0.75rem;
    width: auto;
    padding: 1.25rem;
  }
  .promo h3 { font-size: 1.125rem; }
  .promo p { font-size: 0.875rem; margin-bottom: 0.875rem; }
  .promo .icon-rounded { width: 2.5rem; height: 2.5rem; margin-bottom: 0.75rem; }
  .promo .icon-rounded svg { width: 1.25rem; height: 1.25rem; }
}

/* ---------------------------------------------------------- headshots --- */
.hs-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(88vh, 780px);
  padding-top: var(--nav-h);
  background: #000;
  overflow: hidden;
}

/* No imagery in this hero by design; depth comes from a soft gold wash. */
.hs-hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 55% at 50% 18%, hsl(var(--primary) / 0.16), transparent 70%),
    radial-gradient(80% 60% at 50% 100%, hsl(var(--charcoal)), transparent 65%);
}

.hs-hero-inner {
  position: relative;
  z-index: 10;
  padding-block: 5rem 4rem;
  text-align: center;
}

.hs-hero-copy { max-width: 52rem; margin-inline: auto; }

.hs-hero h1 { margin-block: 1.75rem 1.5rem; }

.hs-sub {
  font-size: clamp(1.0625rem, 1.6vw, 1.1875rem);
  color: hsl(var(--muted-foreground));
  max-width: 36rem;
  margin: 0 auto 2rem;
  line-height: 1.75;
}

.hs-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 2rem;
}

.hs-price-amount {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 4rem);
  line-height: 1;
  color: hsl(var(--primary));
}

.hs-price-note {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: hsl(var(--muted-foreground));
}

.hs-cta { display: flex; justify-content: center; }

.hs-trust {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  max-width: 34rem;
  margin: 1.75rem auto 0;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: hsl(var(--muted-foreground));
  text-align: left;
}

.hs-trust svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: hsl(var(--primary));
}

.hs-details { display: grid; gap: 0; }

.hs-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.25rem;
  padding-block: 1rem;
  border-bottom: 1px solid hsl(var(--border) / 0.5);
}
.hs-detail:last-child { border-bottom: 0; }

@media (min-width: 560px) {
  .hs-detail { grid-template-columns: 9rem 1fr; gap: 1.5rem; align-items: baseline; }
}

.hs-detail dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: hsl(var(--primary));
}

.hs-detail dd { margin: 0; color: hsl(var(--foreground)); line-height: 1.7; }

/* Unfilled [[PLACEHOLDER]] tokens are flagged loudly so the page cannot be
   sent out with them still in place. */
.hs-todo {
  background: hsl(0 72% 51% / 0.15);
  color: hsl(0 85% 72%);
  border: 1px dashed hsl(0 72% 51% / 0.6);
  padding: 0.1em 0.45em;
  border-radius: 3px;
  font-weight: 500;
}

.hs-banner {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 150;
  background: hsl(0 72% 51%);
  color: #fff;
  text-align: center;
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  line-height: 1.45;
}

/* --------------------------------------------------------------- 404 ----- */
.err-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.25rem;
  padding: 2rem;
}
.err-code {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 14vw, 8rem);
  color: hsl(var(--primary));
  line-height: 1;
}

/* ------------------------------------------------------------- utility --- */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mt-8 { margin-top: 4rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }
.mb-8 { margin-bottom: 4rem; }
.text-center { text-align: center; }
.page-main { padding-top: 8rem; } /* matches the original's pt-32 below the fixed nav */
