:root {
  --ink: #10221f;
  --teal: #0b4f4a;
  --teal-deep: #072e2b;
  --gold: #c4a35a;
  --gold-soft: #e2c98a;
  --cream: #f4eee4;
  --sand: #e7d8c0;
  --paper: #fbf7f0;
  --terracotta: #b56a4a;
  --line: rgba(11, 79, 74, 0.14);
  --shadow: 0 24px 50px -28px rgba(7, 46, 43, 0.45);
  --radius: 22px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, video { max-width: 100%; display: block; }
a { color: inherit; }

body {
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-weight: 400;
}

h1, h2, h3, .brand strong, .eyebrow {
  font-family: "Fraunces", Georgia, serif;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: 12px;
  top: 12px;
  background: #fff;
  padding: 8px 12px;
  z-index: 20;
}

.nav {
  position: fixed;
  inset: 12px 16px auto;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 14px;
  background: rgba(251, 247, 240, 0.78);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--cream);
}
.brand strong { display: block; font-size: 0.92rem; font-weight: 600; line-height: 1.1; }
.brand em { font-style: normal; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); }
.nav-links { display: none; gap: 18px; margin-left: auto; font-size: 0.92rem; }
.nav-links a { text-decoration: none; color: var(--teal-deep); }
.nav-call {
  margin-left: auto;
  text-decoration: none;
  background: var(--teal);
  color: var(--cream);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--cream);
  isolation: isolate;
}
.hero-layer { position: absolute; inset: 0; will-change: transform; }
.hero-media { z-index: 0; }
.hero-video {
  width: 100%;
  height: 120%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
}
.hero-veil {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7,22,20,0.25) 0%, rgba(7,22,20,0.18) 40%, rgba(7,22,20,0.72) 100%),
    radial-gradient(80% 50% at 70% 20%, transparent, rgba(7,46,43,0.35));
}
.hero-copy {
  z-index: 2;
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0 7vw 11vh;
  max-width: 920px;
}
.hero-ornament {
  z-index: 2;
  position: absolute;
  right: 8vw;
  top: 22vh;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(196,163,90,0.45);
  border-radius: 50%;
  pointer-events: none;
}
.hero-ornament::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1px dashed rgba(244,238,228,0.28);
}
.eyebrow {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold-soft);
  margin-bottom: 12px;
  font-weight: 600;
}
.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  line-height: 1.05;
  font-weight: 600;
  text-wrap: balance;
}
.lede {
  margin: 16px 0 26px;
  max-width: 36rem;
  font-size: 1.08rem;
  color: rgba(244,238,228,0.86);
  font-weight: 300;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 500;
  border: 1px solid transparent;
  transition: transform 0.25s ease, background 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--teal-deep); }
.btn-ghost { background: transparent; border-color: rgba(244,238,228,0.4); color: var(--cream); }
.btn-dark { background: var(--teal-deep); color: var(--cream); }
.hero-meta { margin-top: 18px; font-size: 0.88rem; color: rgba(244,238,228,0.7); }

.about, .services, .reviews, .visit {
  padding: 88px 7vw;
}
.about {
  display: grid;
  gap: 48px;
  align-items: center;
  background:
    radial-gradient(60% 80% at 0% 100%, rgba(196,163,90,0.12), transparent 60%),
    var(--paper);
}
.about-visual {
  position: relative;
  min-height: 380px;
}
.frame { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.frame img { width: 100%; height: 100%; object-fit: cover; }
.frame-a { width: 78%; }
.frame-b {
  position: absolute;
  width: 48%;
  right: 0;
  bottom: -28px;
  border: 6px solid var(--paper);
}
.about-copy h2, .section-head h2, .visit-card h2 {
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 16px;
}
.about-copy p { margin-bottom: 14px; color: #3a4a46; max-width: 38rem; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin-top: 18px; }
.pills li {
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.86rem;
  color: var(--teal);
}

.services { background: var(--cream); }
.section-head { margin-bottom: 36px; max-width: 36rem; }
.cards {
  display: grid;
  gap: 20px;
}
.card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.card img { height: 210px; width: 100%; object-fit: cover; }
.card h3 { padding: 18px 20px 6px; font-size: 1.25rem; }
.card p { padding: 0 20px 22px; color: #4a5855; }

.reviews { background: var(--teal-deep); color: var(--cream); }
.reviews .eyebrow { color: var(--gold); }
.quotes { display: grid; gap: 18px; }
blockquote {
  background: rgba(244,238,228,0.06);
  border-left: 3px solid var(--gold);
  padding: 22px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
}
blockquote p { font-family: "Fraunces", serif; font-size: 1.25rem; line-height: 1.4; }
blockquote footer { margin-top: 12px; font-size: 0.82rem; color: var(--gold-soft); letter-spacing: 0.04em; }

.visit {
  display: grid;
  gap: 24px;
  background:
    linear-gradient(180deg, var(--paper), var(--sand));
}
.visit-card {
  background: #fff;
  padding: 32px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.facts { display: grid; gap: 16px; margin: 22px 0 26px; }
.facts dt { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal); }
.facts dd { font-size: 1.05rem; }
.facts a { color: var(--ink); }
.map-link {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 280px;
}
.map-link img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; filter: saturate(1.05); }
.map-link span {
  position: absolute;
  left: 18px; bottom: 18px;
  background: rgba(251,247,240,0.92);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 500;
}

.foot {
  background: var(--ink);
  color: var(--cream);
  padding: 36px 7vw 28px;
  display: grid;
  gap: 18px;
}
.foot-brand { display: flex; gap: 12px; align-items: center; }
.foot-brand img { width: 48px; height: 48px; border-radius: 50%; background: var(--cream); }
.foot-brand p { color: rgba(244,238,228,0.65); font-size: 0.9rem; }
.foot-contact { display: flex; flex-wrap: wrap; gap: 16px; }
.foot-contact a { color: var(--gold-soft); }
.fine { font-size: 0.78rem; color: rgba(244,238,228,0.45); }

@media (min-width: 800px) {
  .nav-links { display: flex; }
  .nav-call { margin-left: 0; }
  .about { grid-template-columns: 1.05fr 0.95fr; }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .quotes { grid-template-columns: 0.7fr 1.3fr; }
  .visit { grid-template-columns: 1fr 1fr; align-items: stretch; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-layer, .hero-ornament { transform: none !important; }
  .btn { transition: none; }
}
