:root {
  --green-deep:   #2b1a0f;
  --green-mid:    #4a2e1a;
  --green-light:  #7a4e2d;
  --gold:         #c9964a;
  --gold-light:   #e8c07a;
  --cream:        #faf6ef;
  --cream-dark:   #f0e9dd;
  --bark:         #1c1410;
  --bark-mid:     #3d2e22;
  --sand:         #a89070;
  --white:        #ffffff;
  --radius:       4px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  overflow-x: hidden;
  font-family: 'Lora', Georgia, serif;
  background: var(--cream);
  color: var(--bark);
  font-size: 17px;
  line-height: 1.7;
}

/* ── FOCUS VISIBLE ── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
nav a:focus-visible,
nav button:focus-visible { outline-color: var(--gold-light); }
.about a:focus-visible,
footer a:focus-visible,
.sidebar-card a:focus-visible { outline-color: var(--gold-light); }
.cta-band a:focus-visible { outline-color: var(--green-deep); }

/* ── UTILITY ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.tag {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--green-deep);
  border-bottom: 1px solid rgba(201,150,74,0.2);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 112px;
}
.nav-brand {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
}
.nav-logo {
  width: 58px; height: 58px;
  object-fit: contain; flex-shrink: 0;
  filter: brightness(0) invert(1);
}
.nav-wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 400;
  color: var(--cream); line-height: 1.25;
}
.nav-wordmark span {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 9.5px; font-weight: 300;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-light); margin-top: 1px;
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}
.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 13px; font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(250,246,239,0.75);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--cream); background: rgba(255,255,255,0.08); }
.nav-links a.active {
  color: var(--gold-light);
  background: rgba(255,255,255,0.08);
}
.nav-cta {
  font-family: 'Jost', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.09em;
  background: var(--gold);
  color: var(--green-deep);
  text-decoration: none;
  padding: 10px 22px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  margin-left: 12px;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.nav-hamburger { display: none; }

/* ── BUTTONS ── */
.btn-primary {
  font-family: 'Jost', sans-serif;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--gold);
  color: var(--green-deep);
  text-decoration: none;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(201,150,74,0.35);
}
.btn-ghost {
  font-family: 'Jost', sans-serif;
  font-size: 13px; font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(250,246,239,0.8);
  text-decoration: none;
  display: flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--cream); }
.btn-ghost svg { transition: transform 0.2s; }
.btn-ghost:hover svg { transform: translateX(4px); }
.btn-dark {
  font-family: 'Jost', sans-serif;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--green-deep);
  color: var(--cream);
  text-decoration: none;
  padding: 14px 32px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-dark:hover { background: var(--green-mid); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(43,26,15,0.25); }
.btn-outline {
  font-family: 'Jost', sans-serif;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: transparent;
  color: var(--green-deep);
  border: 1.5px solid rgba(43,26,15,0.45);
  text-decoration: none;
  padding: 12.5px 30px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-outline:hover { background: rgba(43,26,15,0.1); border-color: rgba(43,26,15,0.75); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  background: var(--green-deep);
  position: relative; overflow: hidden;
  min-height: 680px;
  display: flex; align-items: center;
}
.hero-bg-panels {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
}
.hero-bg-panels > div { opacity: 0.18; }
.hero-bg-panels > div:nth-child(1) { background: var(--green-mid); }
.hero-bg-panels > div:nth-child(2) { background: var(--green-light); }
.hero-bg-panels > div:nth-child(3) { background: var(--green-mid); }
.hero-stripe {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
}
.hero-inner {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  padding: 30px 0 60px;
}
.hero-photo-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: start;
  width: 70%;
  margin-right: auto;
}
.photo-block {
  border-radius: 6px; overflow: hidden; position: relative;
}
.photo-block:first-child { grid-column: 1 / 3; }
.photo-block:nth-child(3) { aspect-ratio: 1; }
.photo-block:nth-child(3) img { height: 100%; object-fit: cover; }
.photo-block-inner { width: 100%; }
.photo-block-inner img { width: 100%; height: auto; display: block; }
.hero-text { color: var(--cream); }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 24px;
}
.hero-eyebrow-line { width: 32px; height: 1px; background: var(--gold); }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 400; line-height: 1.15;
  color: var(--cream); margin-bottom: 24px;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: 17px; line-height: 1.65;
  color: rgba(250,246,239,0.75);
  max-width: 440px; margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--cream-dark);
  border-bottom: 1px solid rgba(168,144,112,0.3);
}
.trust-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  padding: 20px 40px;
  border-right: 1px solid rgba(168,144,112,0.3);
}
.trust-item:last-child { border-right: none; }
.trust-num {
  font-family: 'Playfair Display', serif;
  font-size: 30px; font-weight: 700;
  color: var(--green-mid); line-height: 1;
}
.trust-label {
  font-family: 'Jost', sans-serif;
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--sand); line-height: 1.4;
}

/* ── SERVICES ── */
.services { padding: 100px 0; }
.section-header { margin-bottom: 56px; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 40px; font-weight: 400;
  color: var(--bark); line-height: 1.2; margin-top: 10px;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(168,144,112,0.25);
  border: 1px solid rgba(168,144,112,0.25);
}
.service-card {
  background: var(--cream); padding: 48px 40px;
  position: relative;
  display: flex; flex-direction: column;
  transition: background 0.25s, box-shadow 0.25s;
}
.service-card:hover { background: var(--white); box-shadow: inset 0 0 0 1px rgba(201,150,74,0.3); }
.service-number {
  font-family: 'Playfair Display', serif;
  font-size: 72px; font-weight: 700;
  color: rgba(168,144,112,0.2);
  line-height: 1; margin-bottom: 20px; user-select: none;
}
.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 400;
  color: var(--green-deep); margin-bottom: 16px;
}
.service-body {
  font-size: 15px; line-height: 1.75;
  color: var(--bark-mid); margin-bottom: 28px;
  flex: 1;
}
.service-price {
  font-family: 'Jost', sans-serif;
  font-size: 13px; font-weight: 500;
  color: var(--gold); letter-spacing: 0.04em;
  border-top: 1px solid rgba(168,144,112,0.25);
  padding-top: 20px;
}
.service-price strong {
  display: block; font-size: 20px; font-weight: 600;
  color: var(--green-mid); margin-bottom: 2px;
}
.service-price a { color: inherit; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Jost', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green-light); text-decoration: none; margin-top: 20px;
  transition: color 0.2s;
}
.service-link:hover { color: var(--gold); }
.service-link svg { transition: transform 0.2s; }
.service-link:hover svg { transform: translateX(4px); }

/* ── ABOUT ── */
.about {
  background: var(--green-deep);
  padding: 100px 0; position: relative; overflow: hidden;
}
.about::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 40%; height: 100%;
  background: rgba(255,255,255,0.025);
}
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; position: relative;
}
.about-photo-stack { position: relative; height: 540px; }
.about-photo { position: absolute; border-radius: 6px; overflow: hidden; }
.about-photo-main { width: 100%; height: 420px; top: 0; left: 0; }
.about-photo-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-photo-accent {
  width: 220px; height: 180px;
  bottom: 0; right: -20px;
  border: 4px solid var(--green-deep);
}
.about-photo-accent img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-photo-caption {
  position: absolute; bottom: 220px; left: -20px;
  background: var(--gold); color: var(--green-deep);
  font-family: 'Jost', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 10px 18px; border-radius: var(--radius);
}
.photo-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 10px; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase; text-align: center;
}
.about-text { color: var(--cream); }
.about-text .section-title { color: var(--cream); }
.about-body {
  font-size: 16px; line-height: 1.85;
  color: rgba(250,246,239,0.75); margin-bottom: 20px;
}
.about-body + .about-body { margin-top: 0; }
.about-cta {
  margin-top: 36px;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Jost', sans-serif;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  border-bottom: 1px solid rgba(201,150,74,0.4);
  padding-bottom: 4px; transition: border-color 0.2s, color 0.2s;
}
.about-cta:hover { border-color: var(--gold); color: var(--gold-light); }
.about-cta svg { transition: transform 0.2s; }
.about-cta:hover svg { transform: translateX(4px); }

/* ── PULL QUOTE ── */
.pullquote {
  background: var(--cream-dark); padding: 88px 0;
  border-top: 1px solid rgba(168,144,112,0.3);
  border-bottom: 1px solid rgba(168,144,112,0.3);
}
.pullquote-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.pullquote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 80px; line-height: 0.6;
  color: var(--gold); margin-bottom: 28px; display: block;
}
.pullquote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 3vw, 28px);
  font-style: italic; font-weight: 400;
  line-height: 1.55; color: var(--bark); margin-bottom: 28px;
}
.pullquote cite {
  font-family: 'Jost', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--sand); font-style: normal;
}

/* ── FAQ ── */
.faq-section { padding: 100px 0; }
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px 80px; margin-top: 56px;
}
.section-header + .faq-grid { margin-top: 0; }
.faq-item { border-top: 1px solid rgba(168,144,112,0.3); padding-top: 24px; }
.faq-q {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 400;
  color: var(--green-deep); margin-bottom: 12px; line-height: 1.35;
}
.faq-a { font-size: 15px; line-height: 1.75; color: var(--bark-mid); }
.faq-a a { color: var(--green-light); }
.faq-more { margin-top: 56px; text-align: center; }

/* ── SERVICE AREA / LOCATIONS ── */
.locations {
  background: var(--green-deep); padding: 64px 0;
}
.locations-inner {
  display: flex; align-items: center;
  gap: 40px; flex-wrap: wrap;
}
.locations-label {
  font-family: 'Jost', sans-serif;
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  white-space: nowrap; flex-shrink: 0;
}
.locations-divider {
  width: 1px; height: 40px;
  background: rgba(201,150,74,0.25); flex-shrink: 0;
}
.locations-list {
  display: flex; flex-wrap: wrap; gap: 8px; list-style: none;
}
.locations-list a {
  font-family: 'Jost', sans-serif;
  font-size: 13px; font-weight: 400;
  color: rgba(250,246,239,0.7); text-decoration: none;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.12); border-radius: 20px;
  transition: border-color 0.2s, color 0.2s;
}
.locations-list a:hover { border-color: var(--gold); color: var(--gold); }

/* ── CTA BAND ── */
.cta-band { background: var(--gold); padding: 64px 0; }
.cta-band-inner {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 24px;
}
.cta-band-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px; font-weight: 400;
  color: var(--green-deep); margin-bottom: 6px;
}
.cta-band-text p { font-size: 15px; color: var(--bark-mid); line-height: 1.6; }
.cta-band-text .cta-note {
  font-family: 'Jost', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green-deep); margin-top: 6px; margin-bottom: 4px;
  display: block;
}
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ── FOOTER ── */
footer {
  background: var(--bark);
  border-top: 3px solid rgba(201,150,74,0.35);
  padding: 72px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 400;
  color: var(--cream); margin-bottom: 6px;
}
.footer-tagline {
  font-family: 'Jost', sans-serif;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sand); margin-bottom: 20px;
}
.footer-contact-line {
  font-size: 14px; line-height: 1.9;
  color: rgba(250,246,239,0.6);
}
.footer-contact-line a { color: var(--gold); text-decoration: none; }
.footer-map-link { color: inherit; text-decoration: none; display: inline-flex; align-items: center; margin-left: 5px; vertical-align: middle; }
.footer-map-link:hover { color: var(--gold-light); }
.footer-heading {
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sand); margin-bottom: 16px;
}
.footer-links { list-style: none; }
.footer-links li + li { margin-top: 10px; }
.footer-links a {
  font-family: 'Jost', sans-serif;
  font-size: 13px; color: rgba(250,246,239,0.6);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 14px; margin-top: 20px; }
.footer-social a { color: var(--sand); transition: color 0.2s; display: flex; align-items: center; }
.footer-social a:hover { color: var(--gold-light); }
.footer-social svg { display: block; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy a { color: inherit; text-decoration: none; font-family: inherit; font-size: inherit; font-weight: inherit; }
.footer-copy a:hover { color: var(--gold-light); }
.footer-copy {
  font-family: 'Jost', sans-serif;
  font-size: 12px; color: rgba(250,246,239,0.35);
}

/* ── PAGE HERO (interior) ── */
.page-hero {
  background: var(--green-deep);
  padding: 32px 0 56px;
  border-bottom: 3px solid var(--gold);
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400; line-height: 1.1; color: var(--cream); margin-top: 10px;
}
.page-hero p {
  font-size: 17px; color: rgba(250,246,239,0.72);
  max-width: 560px; margin-top: 16px; line-height: 1.65;
}

/* ── INTERIOR LAYOUT ── */
.interior { padding: 80px 0; }
.interior-grid {
  display: grid; grid-template-columns: 1fr 300px;
  gap: 64px; align-items: start;
}
.interior-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 400;
  color: var(--green-deep);
  margin: 36px 0 14px;
  padding-top: 32px;
  border-top: 1px solid rgba(168,144,112,0.25);
}
.interior-content h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.interior-content p { font-size: 16px; line-height: 1.85; color: var(--bark-mid); margin-bottom: 16px; }
.interior-content ul { margin: 0 0 16px 20px; }
.interior-content ul li { font-size: 16px; line-height: 1.85; color: var(--bark-mid); }
.interior-content a { color: var(--green-light); }
.interior-content strong { color: var(--bark); }

/* ── SIDEBAR ── */
.sidebar-card {
  background: var(--green-deep); color: var(--cream);
  padding: 32px 28px; border-radius: 6px;
  position: sticky; top: 132px;
}
.sidebar-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 400;
  color: var(--cream); margin-bottom: 20px;
}
.rate-row {
  display: flex; justify-content: space-between; align-items: baseline;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 12px 0; font-size: 14px;
}
.rate-row:last-of-type { border-bottom: none; }
.rate-label { color: rgba(250,246,239,0.7); font-size: 13px; }
.rate-price { font-family: 'Jost', sans-serif; font-weight: 500; color: var(--gold); }
.sidebar-hours {
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px; color: rgba(250,246,239,0.7); line-height: 1.85;
}
.sidebar-cta {
  display: block; margin-top: 24px;
  font-family: 'Jost', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--gold); color: var(--green-deep);
  text-decoration: none; text-align: center;
  padding: 13px 20px; border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
}
.sidebar-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ── VIDEO GRID ── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px; margin-top: 48px;
}
.video-card {
  border-radius: 6px; overflow: hidden;
  border: 1px solid rgba(168,144,112,0.2);
  transition: box-shadow 0.25s, transform 0.25s;
  cursor: pointer;
  background: var(--white); text-decoration: none;
}
.video-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.18); transform: translateY(-3px); }
.video-thumb { position: relative; overflow: hidden; }
.video-thumb img {
  width: 100%; display: block;
  aspect-ratio: 4/3; object-fit: cover;
  transition: transform 0.4s ease;
}
.video-card:hover .video-thumb img { transform: scale(1.06); }
.vid-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.08) 55%, transparent 100%);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s;
}
.video-card:hover .vid-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.2) 55%, transparent 100%);
}
.play-ring {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.8);
  background: rgba(0,0,0,0.32);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.video-card:hover .play-ring { background: rgba(201,150,74,0.9); border-color: var(--gold); }
.video-card-label {
  padding: 12px 14px;
  font-family: 'Jost', sans-serif;
  font-size: 12px; font-weight: 400;
  letter-spacing: 0.04em; color: var(--bark-mid);
  background: var(--white);
}

/* ── VIDEO MODAL ── */
#vid-modal {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
#vid-modal.open { opacity: 1; pointer-events: all; }
#modal-wrap { position: relative; max-width: min(900px, 92vw); width: 100%; aspect-ratio: 16/9; }
#modal-iframe { width: 100%; height: 100%; border: none; display: block; border-radius: 4px; }
#modal-close {
  position: absolute; top: -46px; right: 0;
  background: transparent; border: none;
  color: rgba(255,255,255,0.6); font-size: 2rem; line-height: 1;
  cursor: pointer; padding: 4px 10px;
  transition: color 0.2s;
}
#modal-close:hover { color: #fff; }

/* ── PHOTO GALLERY ── */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px; margin-top: 48px;
}
.photo-gallery img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; display: block;
  border-radius: 4px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.photo-gallery img:hover { transform: scale(1.02); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

/* ── DIRECTIONS ── */
.directions-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; margin-top: 32px;
}
.directions-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 400;
  color: var(--green-deep); margin-bottom: 16px;
}
.directions-block ul { margin-left: 18px; }
.directions-block ul li { font-size: 15px; line-height: 1.85; color: var(--bark-mid); }

/* ── REVIEWS PAGE ── */
.reviews-section { padding: 72px 0 100px; }
.rating-summary {
  background: var(--green-deep); border-radius: 6px;
  padding: 40px 48px;
  display: flex; align-items: center; gap: 48px;
  margin-bottom: 64px; flex-wrap: wrap;
}
.rating-score { text-align: center; flex-shrink: 0; }
.rating-number {
  font-family: 'Playfair Display', serif;
  font-size: 64px; font-weight: 700;
  color: var(--cream); line-height: 1;
}
.rating-stars { display: flex; gap: 4px; justify-content: center; margin: 10px 0 6px; }
.star { color: var(--gold); font-size: 20px; }
.rating-source {
  font-family: 'Jost', sans-serif;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(250,246,239,0.6);
}
.rating-divider {
  width: 1px; height: 80px;
  background: rgba(201,150,74,0.25); flex-shrink: 0;
}
.rating-body { color: var(--cream); flex: 1; }
.rating-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 400;
  color: var(--cream); margin-bottom: 10px;
}
.rating-body p {
  font-size: 15px; color: rgba(250,246,239,0.6); line-height: 1.7; max-width: 460px;
}
.rating-cta { margin-left: auto; flex-shrink: 0; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 64px;
}
.review-card {
  background: var(--white);
  border: 1px solid rgba(168,144,112,0.2);
  border-radius: 6px; padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.review-card:hover { box-shadow: 0 8px 28px rgba(43,26,15,0.1); transform: translateY(-2px); }
.review-card-stars { display: flex; gap: 3px; margin-bottom: 18px; }
.review-card-stars .star { font-size: 15px; }
.review-body {
  font-family: 'Lora', Georgia, serif;
  font-size: 15px; line-height: 1.85;
  color: var(--bark-mid); font-style: italic;
  flex: 1; margin-bottom: 24px; position: relative;
}
.review-body::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 40px; color: var(--gold);
  line-height: 0; vertical-align: -16px; margin-right: 3px;
}
.review-body::after {
  content: '\201D';
  font-family: 'Playfair Display', serif;
  font-size: 40px; color: var(--gold);
  line-height: 0; vertical-align: -16px; margin-left: 3px;
}
.review-meta {
  border-top: 1px solid rgba(168,144,112,0.2);
  padding-top: 18px; display: flex; align-items: center; gap: 12px;
}
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--green-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Jost', sans-serif;
  font-size: 13px; font-weight: 500; color: var(--gold); flex-shrink: 0;
}
.review-author {
  font-family: 'Jost', sans-serif;
  font-size: 13px; font-weight: 500;
  color: var(--bark); letter-spacing: 0.02em;
}
.review-date { font-family: 'Jost', sans-serif; font-size: 11px; color: var(--sand); margin-top: 2px; }
.review-google { margin-left: auto; }
.google-cta {
  background: var(--cream-dark);
  border: 1px solid rgba(168,144,112,0.25);
  border-radius: 6px; padding: 48px; text-align: center;
}
.google-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 400;
  color: var(--bark); margin-bottom: 12px;
}
.google-cta p {
  font-size: 15px; color: var(--bark-mid);
  margin-bottom: 28px; line-height: 1.7;
  max-width: 480px; margin-left: auto; margin-right: auto;
}
.google-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.featured-review {
  background: var(--white);
  border: 1px solid rgba(168,144,112,0.2);
  border-radius: 6px; margin-bottom: 24px; overflow: hidden;
  transition: box-shadow 0.2s;
}
.featured-review:hover { box-shadow: 0 8px 32px rgba(43,26,15,0.1); }
.featured-review-inner { padding: 36px 36px 28px; }
.featured-review-header {
  display: flex; align-items: center; gap: 16px; margin-bottom: 20px;
}
.featured-review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Jost', sans-serif;
  font-size: 15px; font-weight: 500; color: var(--gold); flex-shrink: 0;
}
.featured-review-name {
  font-family: 'Jost', sans-serif;
  font-size: 15px; font-weight: 500; color: var(--bark); letter-spacing: 0.02em;
}
.featured-review-meta { font-family: 'Jost', sans-serif; font-size: 12px; color: var(--sand); margin-top: 2px; }
.featured-review-stars { display: flex; gap: 3px; margin-bottom: 18px; }
.featured-review-stars .star { font-size: 18px; }
.featured-review-body {
  font-family: 'Lora', Georgia, serif;
  font-size: 16px; line-height: 1.9;
  color: var(--bark-mid); font-style: italic;
  margin-bottom: 8px; position: relative;
}
.featured-review-body::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 44px; color: var(--gold);
  line-height: 0; vertical-align: -18px; margin-right: 3px;
}
.featured-review-body::after {
  content: '\201D';
  font-family: 'Playfair Display', serif;
  font-size: 44px; color: var(--gold);
  line-height: 0; vertical-align: -18px; margin-left: 3px;
}
.featured-review-photos {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border-top: 1px solid rgba(168,144,112,0.15); margin-top: 28px;
}
.featured-review-photos img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
}
.featured-review-photos img:not(:last-child) { border-right: 2px solid var(--cream); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }

  /* Nav */
  @keyframes navItemIn {
    from { opacity: 0; transform: translateX(-8px); }
    to   { opacity: 1; transform: translateX(0); }
  }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--bark);
    border-top: 1px solid rgba(201,150,74,0.25);
    padding: 8px 0 36px;
    z-index: 99;
    overflow-y: auto;
  }
  .nav-links.open li:not(.nav-book-mobile) {
    border-bottom: 1px solid rgba(201,150,74,0.14);
    animation: navItemIn 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  .nav-links.open li:not(.nav-book-mobile):first-child {
    border-top: 1px solid rgba(201,150,74,0.14);
  }
  .nav-links.open li:nth-child(1) { animation-delay: 0.04s; }
  .nav-links.open li:nth-child(2) { animation-delay: 0.08s; }
  .nav-links.open li:nth-child(3) { animation-delay: 0.12s; }
  .nav-links.open li:nth-child(4) { animation-delay: 0.16s; }
  .nav-links.open li:nth-child(5) { animation-delay: 0.20s; }
  .nav-links.open li:nth-child(6) { animation-delay: 0.24s; }
  .nav-links.open li:nth-child(7) { animation-delay: 0.28s; }
  .nav-links.open li:not(.nav-book-mobile) a {
    display: block;
    padding: 11px 32px;
    border-radius: 0;
    font-family: 'Playfair Display', serif;
    font-size: 20px; font-weight: 400;
    color: var(--cream);
    letter-spacing: 0.01em;
    transition: color 0.18s, background 0.18s;
  }
  .nav-links.open li:not(.nav-book-mobile) a:hover {
    color: var(--gold-light);
    background: rgba(201,150,74,0.06);
  }
  .nav-cta { display: none; }
  .nav-hamburger {
    display: flex; flex-direction: column; justify-content: center;
    gap: 5px; width: 44px; height: 44px;
    background: none; border: none; cursor: pointer; padding: 8px;
  }
  .nav-hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--cream); border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-inner { height: 72px; position: relative; }
  .nav-logo { width: 60px; height: 60px; }
  .nav-wordmark { font-size: 13px; }
  .nav-wordmark span { font-size: 10px; }

  /* Hero */
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 0 50px; }
  .hero-photo-mosaic { order: 2; width: 100%; }

  /* About */
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-photo-stack { height: 280px; }
  .about-photo-main { height: 280px; }
  .about-photo-accent { display: none; }
  .about-photo-caption { display: none; }

  /* Grids */
  .services-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .interior-grid { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .directions-grid { grid-template-columns: 1fr; }

  /* Trust bar */
  .trust-inner { justify-content: flex-start; }
  .trust-item {
    padding: 16px 24px 16px 0;
    border-right: none;
    border-bottom: 1px solid rgba(168,144,112,0.3);
    width: 100%;
  }
  .trust-item:last-child { border-bottom: none; }

  /* CTA band */
  .cta-actions { width: 100%; }
  .cta-actions .btn-dark,
  .cta-actions .btn-outline { flex: 1; text-align: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }

  /* Reviews */
  .rating-summary { padding: 28px 24px; gap: 24px; }
  .rating-divider { display: none; }
  .rating-cta { margin-left: 0; }
  .reviews-grid { grid-template-columns: 1fr; }
  .featured-review-inner { padding: 24px 20px 20px; }
  .featured-review-photos { grid-template-columns: repeat(2, 1fr); }
  .featured-review-photos img:nth-child(2) { border-right: 2px solid var(--cream); }
  .featured-review-photos img:nth-child(1),
  .featured-review-photos img:nth-child(2) { border-bottom: 2px solid var(--cream); }
  .featured-review-photos img:nth-child(3),
  .featured-review-photos img:nth-child(4) { border-right: none; }
  .google-cta { padding: 32px 24px; }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
