/* =========================================================
   The Stag Dental & Wellbeing Centre — Design System
   ========================================================= */

:root {
  --forest: #2b3a2e;
  --forest-deep: #1d2820;
  --forest-soft: #3d5040;
  --sage: #a8b5a0;
  --sage-pale: #d9dfd4;
  --cream: #f5efe6;
  --cream-light: #fbf7ef;
  --paper: #fffdf8;
  --gold: #b89968;
  --gold-soft: #d4b888;
  --charcoal: #1e1e1e;
  --ink: #2c2c2c;
  --muted: #6b6b6b;
  --line: rgba(43, 58, 46, 0.12);

  --font-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max: 1280px;
  --pad: clamp(20px, 4vw, 56px);
  --radius: 4px;

  --shadow-sm: 0 2px 12px rgba(29, 40, 32, 0.06);
  --shadow-md: 0 10px 40px rgba(29, 40, 32, 0.08);
  --shadow-lg: 0 24px 80px rgba(29, 40, 32, 0.12);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
button { font: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: normal;
  color: var(--forest-deep);
  letter-spacing: -0.015em;
  margin: 0 0 .6em;
  line-height: 1.1;
}
h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); font-weight: 300; }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
h4 { font-size: 1.25rem; }
p  { margin: 0 0 1.2em; color: var(--ink); }
.lede { font-size: clamp(1.05rem, 1.4vw, 1.25rem); line-height: 1.7; color: var(--forest-soft); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

/* ---------- Layout ---------- */
.wrap { max-width: var(--max); margin: 0 auto; padding-inline: var(--pad); }
section { padding-block: clamp(64px, 9vw, 140px); }
.grid { display: grid; gap: clamp(24px, 3vw, 48px); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .cols-2-tablet { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all .3s var(--ease);
  cursor: pointer;
  position: relative;
  white-space: nowrap;
}
.btn-primary {
  background: var(--forest);
  color: var(--cream-light);
}
.btn-primary:hover {
  background: var(--forest-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover {
  background: #a3854f;
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--forest-deep);
  border: 1px solid var(--forest);
}
.btn-ghost:hover {
  background: var(--forest);
  color: var(--cream-light);
}
.btn-light {
  background: var(--cream-light);
  color: var(--forest-deep);
}
.btn-light:hover { background: #fff; }
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest-deep);
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: gap .3s var(--ease);
}
.link-arrow:hover { gap: 14px; color: var(--gold); }

/* ---------- Top notice bar ---------- */
.notice {
  background: var(--forest-deep);
  color: var(--cream-light);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 10px 16px;
}
.notice a { color: var(--gold-soft); border-bottom: 1px solid currentColor; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-mark { width: 38px; height: 44px; }
.brand-mark path { fill: var(--forest-deep); }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--forest-deep);
  letter-spacing: 0.02em;
}
.brand-tag {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-phone {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--forest-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-phone svg { width: 16px; height: 16px; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--forest-deep);
  position: relative;
}
.menu-toggle span::before, .menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 1.5px;
  background: var(--forest-deep);
  transition: transform .3s var(--ease);
}
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after  { top: 7px; }

@media (max-width: 1024px) {
  .nav-links, .nav-phone { display: none; }
  .menu-toggle { display: inline-flex; }
}

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 200;
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
  display: flex;
  flex-direction: column;
  padding: 24px;
}
.drawer.open { transform: translateY(0); }
.drawer-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.drawer-close { width: 44px; height: 44px; font-size: 24px; color: var(--forest-deep); }
.drawer ul {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.drawer a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--forest-deep);
  padding-block: 8px;
}
.drawer-foot { margin-top: auto; padding-top: 32px; border-top: 1px solid var(--line); font-size: 0.9rem; color: var(--muted); }
.drawer-foot a { color: var(--forest-deep); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(29,40,32,0) 0%, rgba(29,40,32,0.5) 100%),
    radial-gradient(ellipse at 70% 30%, #4a5e4d 0%, #2b3a2e 55%, #1d2820 100%);
  color: var(--cream-light);
  padding-block: 120px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(184,153,104,0.18) 0%, transparent 28%),
    radial-gradient(circle at 88% 75%, rgba(168,181,160,0.18) 0%, transparent 32%);
  pointer-events: none;
}
.hero::after {
  /* subtle film grain */
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
}
.hero .wrap { position: relative; z-index: 2; width: 100%; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1024px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } }
.hero h1 {
  color: var(--cream-light);
  font-weight: 300;
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 300;
}
.hero .eyebrow { color: var(--gold-soft); }
.hero .eyebrow::before { background: var(--gold-soft); }
.hero p { color: rgba(245, 239, 230, 0.82); font-size: 1.1rem; max-width: 52ch; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.hero-actions .btn-primary {
  background: var(--gold);
  color: #fff;
}
.hero-actions .btn-primary:hover { background: var(--gold-soft); }
.hero-actions .btn-ghost {
  border-color: rgba(245, 239, 230, 0.4);
  color: var(--cream-light);
}
.hero-actions .btn-ghost:hover {
  background: var(--cream-light);
  color: var(--forest-deep);
  border-color: var(--cream-light);
}

.hero-card {
  background: rgba(245, 239, 230, 0.06);
  border: 1px solid rgba(245, 239, 230, 0.18);
  backdrop-filter: blur(20px);
  border-radius: 8px;
  padding: 40px;
  position: relative;
}
.hero-card h4 {
  color: var(--gold-soft);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 600;
}
.hero-card-row {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid rgba(245, 239, 230, 0.12);
  font-size: 0.95rem;
}
.hero-card-row:last-child { border-bottom: 0; padding-bottom: 0; }
.hero-card-row span:first-child { color: rgba(245, 239, 230, 0.7); }
.hero-card-row span:last-child { color: var(--cream-light); font-weight: 500; }

.hero-trust {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px 56px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 239, 230, 0.7);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 10px; }
.hero-trust span::before {
  content: "";
  width: 5px; height: 5px;
  background: var(--gold-soft);
  border-radius: 50%;
}

/* ---------- Marquee/values strip ---------- */
.values {
  background: var(--cream);
  border-block: 1px solid var(--line);
}
.values .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 900px) {
  .values .wrap { grid-template-columns: repeat(2, 1fr); }
}
.value {
  padding: 40px 28px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.value:last-child { border-right: 0; }
@media (max-width: 900px) {
  .value:nth-child(2n) { border-right: 0; }
  .value { border-bottom: 1px solid var(--line); }
}
.value svg { width: 32px; height: 32px; margin: 0 auto 16px; }
.value svg path, .value svg circle { stroke: var(--forest); }
.value h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest-deep);
  margin-bottom: 6px;
}
.value p { font-size: 0.9rem; color: var(--muted); margin: 0; }

/* ---------- Section: Intro ---------- */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}
@media (max-width: 900px) { .intro-grid { grid-template-columns: 1fr; } }
.intro-img {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--sage) 0%, var(--forest-soft) 100%);
  border-radius: 4px;
  overflow: hidden;
}
.intro-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(245,239,230,0.4) 0%, transparent 50%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 12px);
}
.intro-img svg {
  position: absolute;
  bottom: 32px;
  right: 32px;
  width: 90px;
  opacity: 0.45;
}
.intro-img svg path { fill: var(--cream-light); }
.intro-img-tag {
  position: absolute;
  bottom: 32px;
  left: 32px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--cream-light);
  max-width: 60%;
  line-height: 1.3;
}

/* ---------- Treatments ---------- */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 64px;
}
.section-head h2 { max-width: 18ch; margin: 0; }
.section-head .lede { max-width: 42ch; margin: 0; }

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
@media (max-width: 900px) { .treatment-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .treatment-grid { grid-template-columns: 1fr; } }

.treatment {
  position: relative;
  padding: 48px 36px 44px;
  background: var(--cream-light);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all .4s var(--ease);
  min-height: 320px;
  display: flex;
  flex-direction: column;
}
.treatment:hover {
  background: var(--forest);
  color: var(--cream-light);
  transform: translateY(-4px);
}
.treatment:hover h3, .treatment:hover .t-num, .treatment:hover p { color: var(--cream-light); }
.treatment:hover .t-icon path { stroke: var(--gold-soft); }
.t-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: auto;
}
.t-icon { width: 44px; height: 44px; margin-bottom: 24px; }
.t-icon path, .t-icon circle { stroke: var(--forest); }
.treatment h3 { margin-bottom: 10px; font-size: 1.4rem; }
.treatment p { font-size: 0.95rem; color: var(--muted); margin-bottom: 24px; }
.treatment .link-arrow { font-size: 0.78rem; color: inherit; }

/* ---------- Split block (Wellness) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split-img {
  background: linear-gradient(135deg, #5c6e58 0%, #2b3a2e 100%);
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.split-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 40%, rgba(184,153,104,0.25) 0%, transparent 45%),
    radial-gradient(circle at 25% 80%, rgba(168,181,160,0.3) 0%, transparent 40%);
}
.split-img svg {
  position: absolute;
  width: 50%;
  max-width: 280px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.6;
}
.split-img svg path { fill: var(--cream-light); }
.split-content {
  background: var(--forest);
  color: var(--cream-light);
  padding: clamp(48px, 8vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-content h2 { color: var(--cream-light); font-weight: 300; }
.split-content .eyebrow { color: var(--gold-soft); }
.split-content .eyebrow::before { background: var(--gold-soft); }
.split-content p { color: rgba(245, 239, 230, 0.82); }
.split-list {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  display: grid;
  gap: 16px;
}
.split-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(245, 239, 230, 0.12);
  font-size: 1rem;
}
.split-list li:last-child { border-bottom: 1px solid rgba(245, 239, 230, 0.12); }
.split-list li strong { color: var(--gold-soft); font-weight: 500; margin-right: 4px; font-family: var(--font-display); font-style: italic; }

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 1024px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .team-grid { grid-template-columns: 1fr; } }
.member {
  display: flex;
  flex-direction: column;
}
.member-photo {
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, var(--sage-pale), var(--sage));
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 4px;
}
.member-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(29, 40, 32, 0.3) 100%);
}
.member-photo svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  max-width: 140px;
  opacity: 0.5;
}
.member-photo svg path { fill: var(--forest-deep); }
.member-initials {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--cream-light);
  z-index: 1;
  letter-spacing: 0.02em;
}
.member-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--forest-deep);
  margin: 0 0 4px;
}
.member-role {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.member-gdc {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 8px;
}

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--cream);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }
.quote {
  background: var(--paper);
  padding: 40px 32px;
  border-radius: 4px;
  border: 1px solid var(--line);
  position: relative;
}
.quote::before {
  content: """;
  position: absolute;
  top: -20px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--gold);
  line-height: 1;
}
.quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--forest-deep);
  margin: 16px 0 24px;
}
.quote-author {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.stars { display: flex; gap: 2px; }
.stars svg { width: 16px; height: 16px; }
.stars svg path { fill: var(--gold); }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: var(--forest-deep);
  color: var(--cream-light);
  text-align: center;
  padding-block: clamp(80px, 12vw, 160px);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(184,153,104,0.2) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(168,181,160,0.15) 0%, transparent 40%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 {
  color: var(--cream-light);
  font-weight: 300;
  max-width: 18ch;
  margin: 0 auto 24px;
}
.cta-banner h2 em { font-style: italic; color: var(--gold-soft); }
.cta-banner p { color: rgba(245, 239, 230, 0.8); max-width: 50ch; margin: 0 auto 36px; }
.cta-banner .btn { background: var(--gold); color: #fff; }
.cta-banner .btn:hover { background: var(--gold-soft); }

/* ---------- Footer ---------- */
.footer {
  background: var(--forest-deep);
  color: rgba(245, 239, 230, 0.7);
  padding-block: 80px 32px;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h4 {
  color: var(--gold-soft);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 24px;
}
.footer .brand-mark path { fill: var(--cream-light); }
.footer .brand-name { color: var(--cream-light); }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer a:hover { color: var(--gold-soft); }
.footer .footer-text { margin-top: 24px; max-width: 36ch; }
.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 239, 230, 0.2);
  border-radius: 50%;
  transition: all .25s var(--ease);
}
.socials a:hover { background: var(--gold); border-color: var(--gold); }
.socials svg { width: 16px; height: 16px; }
.socials svg path { fill: var(--cream-light); }
.legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(245, 239, 230, 0.12);
  font-size: 0.8rem;
}
.legal-links { display: flex; gap: 24px; flex-wrap: wrap; }

/* ---------- Page hero (inner) ---------- */
.page-hero {
  background: linear-gradient(180deg, var(--forest) 0%, var(--forest-deep) 100%);
  color: var(--cream-light);
  padding: clamp(100px, 14vw, 180px) 0 clamp(80px, 10vw, 130px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(184,153,104,0.15) 0%, transparent 40%);
}
.page-hero h1 { color: var(--cream-light); margin: 0; font-weight: 300; }
.page-hero p { color: rgba(245, 239, 230, 0.8); max-width: 56ch; margin: 24px auto 0; font-size: 1.05rem; }
.breadcrumbs {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 24px;
}
.breadcrumbs a { border-bottom: 1px solid transparent; }
.breadcrumbs a:hover { border-color: currentColor; }
.breadcrumbs .sep { margin: 0 12px; opacity: 0.5; }

/* ---------- Pricing ---------- */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 800px) { .plan-grid { grid-template-columns: 1fr; } }
.plan {
  background: var(--cream-light);
  border: 1px solid var(--line);
  padding: 48px 40px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
}
.plan.featured {
  background: var(--forest);
  color: var(--cream-light);
  border-color: var(--forest);
  position: relative;
}
.plan.featured h3, .plan.featured .price { color: var(--cream-light); }
.plan.featured .price-unit { color: var(--gold-soft); }
.plan .tag {
  display: inline-block;
  padding: 6px 12px;
  background: var(--gold);
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 16px;
  align-self: flex-start;
}
.plan h3 { margin-bottom: 8px; }
.plan-sub { color: var(--muted); margin-bottom: 24px; }
.plan.featured .plan-sub { color: rgba(245, 239, 230, 0.7); }
.price { font-family: var(--font-display); font-size: 3rem; font-weight: 300; color: var(--forest-deep); line-height: 1; }
.price-unit { font-size: 0.9rem; color: var(--muted); margin-left: 4px; font-family: var(--font-body); }
.plan ul { list-style: none; padding: 0; margin: 32px 0; display: grid; gap: 14px; }
.plan li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.95rem; }
.plan li::before {
  content: "";
  width: 16px;
  height: 16px;
  margin-top: 4px;
  flex-shrink: 0;
  background: var(--gold);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 13l4 4L19 7' stroke='currentColor' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 13l4 4L19 7' stroke='currentColor' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain;
}
.plan .btn { margin-top: auto; align-self: stretch; }

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 48px;
}
.price-table th, .price-table td {
  text-align: left;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}
.price-table th {
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest-deep);
  font-weight: 500;
}
.price-table td { font-size: 0.95rem; }
.price-table tr:hover td { background: var(--cream-light); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }
.info-block { margin-bottom: 36px; }
.info-block h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.info-block p { font-size: 1.05rem; color: var(--forest-deep); margin: 0; }
.info-block a { font-size: 1.05rem; color: var(--forest-deep); border-bottom: 1px solid var(--line); }
.info-block a:hover { color: var(--gold); border-color: var(--gold); }

.hours-table { width: 100%; margin-top: 12px; }
.hours-table tr td {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.hours-table tr td:first-child { color: var(--muted); }
.hours-table tr td:last-child { text-align: right; color: var(--forest-deep); font-weight: 500; }
.hours-table tr.closed td:last-child { color: var(--muted); font-weight: 400; }

form { display: grid; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--forest-deep);
  transition: border-color .25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-color: var(--gold);
  background: var(--paper);
}
.field textarea { min-height: 140px; resize: vertical; }
form .btn { justify-self: start; }

.map-block {
  margin-top: 48px;
  height: 360px;
  background: linear-gradient(135deg, var(--sage-pale), var(--sage));
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-block iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .08s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .16s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .24s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .32s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: .4s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: .48s; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: .56s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  * { animation: none !important; }
}
