:root {
  --bg: #000000;
  --bg-2: #0c0c0c;
  --bg-3: #141414;
  --ink: #f0ece4;
  --ink-soft: #9a958e;
  --ink-muted: #6e6962;
  --gold: #d4a64a;
  --gold-bright: #e8c074;
  --gold-deep: #8a6a25;
  --line: rgba(212, 166, 74, 0.22);
  --line-soft: rgba(212, 166, 74, 0.10);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  line-height: 1.7;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
}

.serif, .display { font-family: 'Newsreader', Georgia, serif; }

/* ============ ANNOUNCEMENT BAR ============ */
.announcement-bar {
  background: var(--gold);
  color: #1a1a1a;
  text-align: center;
  padding: 0.6rem 1.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  z-index: 200;
}
.announcement-bar a {
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}
.announcement-bar a:hover { text-decoration: none; }

/* ============ NAV ============ */
nav.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 4vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000;
  border-bottom: 1px solid var(--line);
  box-shadow: 0px 12px 48px 0px rgba(212, 166, 74, 0.06);
}
.logo-mark {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}
.logo-img {
  height: 76px;
  width: auto;
  max-width: 320px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
  transition: filter 0.3s, transform 0.4s;
}
.logo-mark:hover .logo-img { transform: scale(1.02); }
nav.site-nav .logo-text { display: none; }
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  transition: color 0.3s;
  font-weight: 500;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-bright); }

.nav-cta {
  background: var(--gold);
  color: #1a1a1a;
  border: 1px solid var(--gold);
  padding: 0.75rem 1.5rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  white-space: nowrap;
  border-radius: 2px;
}
.nav-cta svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--gold-bright); border-color: var(--gold-bright); }

/* ============ FADE-IN ANIMATIONS ============ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.fade-in {
  animation: fadeInUp 0.9s ease 0.2s both;
}

/* ============ PAGE HEADER (non-home) ============ */
.page-header {
  padding: 8rem 4vw 5rem;
  text-align: center;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: var(--gold);
}
.page-header .section-eyebrow { justify-content: center; }
.page-header .section-eyebrow::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.page-header h1 {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--gold);
}
.page-header h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
}
.page-header p.lede {
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--ink-soft);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ============ HERO (home) ============ */
.hero {
  min-height: 92vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 4vw 7rem;
  overflow: hidden;
  background: var(--bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: grayscale(0.2) brightness(0.45) contrast(1.05);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.85) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.95) 100%);
}
.hero-content {
  max-width: 1000px;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1.2s ease-out;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  font-weight: 600;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 700;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 1.75rem;
  color: var(--gold);
}
.hero h1 em {
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  display: block;
}
.hero-tagline {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--ink-soft);
  margin: 0 auto 3rem;
  max-width: 640px;
  line-height: 1.5;
}
.hero-cta-group {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.btn-primary {
  background: var(--gold);
  color: #1a1a1a;
  padding: 1.1rem 2.4rem;
  text-decoration: none;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  transition: all 0.35s;
  font-weight: 600;
  display: inline-block;
  border-radius: 2px;
  border: 1px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-2px);
}
.btn-primary span { position: relative; z-index: 1; }

.btn-ghost {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  padding: 1.1rem 2rem;
  border: 1px solid var(--gold);
  transition: all 0.3s;
  font-weight: 500;
  display: inline-block;
  border-radius: 2px;
}
.btn-ghost:hover { background: var(--gold); color: #1a1a1a; }

.hero-rating {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  color: var(--ink-soft);
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  font-size: 1.1rem;
}
.hero-rating .stars { color: var(--gold); letter-spacing: 0.1em; }

/* ============ SECTION SHARED ============ */
section { padding: 7rem 4vw; position: relative; }
.section-eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
}
.section-eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--gold);
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
}

/* ============ ABOUT ============ */
.about {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text p {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}
.about-text p:first-of-type::first-letter {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 700;
  font-size: 4.5rem;
  float: left;
  line-height: 0.9;
  padding-right: 0.7rem;
  padding-top: 0.4rem;
  color: var(--gold);
}
.about-text strong { color: var(--ink); font-weight: 600; }
.about-text a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
  font-weight: 500;
}
.about-text a:hover { color: var(--gold-bright); }
.about-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
}
.about-image::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid var(--gold);
  z-index: 2;
  pointer-events: none;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.05);
  transition: transform 0.8s;
}
.about-image:hover img { transform: scale(1.04); }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.about-stat {
  border: 1px solid var(--line);
  padding: 1.4rem 0.6rem;
  text-align: center;
  background: rgba(212, 166, 74, 0.03);
}
.about-stat-num {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}
.about-stat-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-soft);
  margin-top: 0.7rem;
  font-weight: 600;
}

/* ============ SERVICES ============ */
.services-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 5rem;
}
.services-header .section-eyebrow { justify-content: center; }
.services-header .section-eyebrow::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.services-header p {
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1.3rem;
  margin-top: 1rem;
  line-height: 1.5;
}
.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service-card {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.4s;
  position: relative;
  text-decoration: none;
  color: inherit;
  display: block;
  background: var(--bg);
}
.service-card:hover {
  background: rgba(212, 166, 74, 0.05);
}
.service-card:hover .service-name { color: var(--gold-bright); }
.service-number {
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
  font-weight: 400;
}
.service-name {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 700;
  font-size: 1.7rem;
  margin-bottom: 1rem;
  color: var(--gold);
  letter-spacing: -0.01em;
  transition: color 0.3s;
}
.service-desc {
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
}
.service-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-deep);
  padding: 0.3rem 0.8rem;
  font-weight: 600;
}
.service-link {
  margin-top: 1.5rem;
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* ============ GALLERY ============ */
.gallery {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.gallery-header {
  max-width: 1200px;
  margin: 0 auto 4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2rem;
}
.gallery-header p {
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1.2rem;
  max-width: 420px;
  line-height: 1.5;
}
.gallery-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.75rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s, filter 0.6s;
  filter: grayscale(0.1);
}
.gallery-item:hover img { transform: scale(1.06); filter: grayscale(0); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(212, 166, 74, 0);
  transition: border-color 0.4s;
  pointer-events: none;
}
.gallery-item:hover::after { border-color: rgba(212, 166, 74, 0.55); }
.g-1 { grid-column: span 5; aspect-ratio: 4/5; }
.g-2 { grid-column: span 7; aspect-ratio: 7/5; }
.g-3 { grid-column: span 4; aspect-ratio: 3/4; }
.g-4 { grid-column: span 4; aspect-ratio: 3/4; }
.g-5 { grid-column: span 4; aspect-ratio: 3/4; }
.g-6 { grid-column: span 7; aspect-ratio: 7/5; }
.g-7 { grid-column: span 5; aspect-ratio: 4/5; }
.g-8 { grid-column: span 4; aspect-ratio: 3/4; }
.g-9 { grid-column: span 4; aspect-ratio: 3/4; }
.g-10 { grid-column: span 4; aspect-ratio: 3/4; }

/* ============ REVIEWS ============ */
.reviews {
  text-align: center;
  background: var(--bg);
}
.reviews-header { max-width: 800px; margin: 0 auto 3rem; }
.reviews-header .section-eyebrow { justify-content: center; }
.reviews-header .section-eyebrow::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.reviews-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  text-align: left;
}
.review-card-block {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.85rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
}
.review-card-block:hover {
  border-color: rgba(212, 166, 74, 0.6);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(212, 166, 74, 0.08);
}
.review-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  flex-shrink: 0;
}
.review-avatar.av-1 { background: linear-gradient(135deg, #d4a64a, #8a6a25); }
.review-avatar.av-2 { background: linear-gradient(135deg, #6b5b95, #3f3461); }
.review-avatar.av-3 { background: linear-gradient(135deg, #2a8c8a, #1c5e5d); }
.review-avatar.av-4 { background: linear-gradient(135deg, #b85c3a, #7a3a22); }
.review-avatar.av-5 { background: linear-gradient(135deg, #4a7d8c, #2a4d57); }
.review-avatar.av-6 { background: linear-gradient(135deg, #8c4a8a, #5e2a5d); }
.review-name-wrap { flex: 1; min-width: 0; }
.review-name {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 0.25rem;
  letter-spacing: 0;
  text-transform: none;
}
.review-time {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.review-google-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-google-badge svg { width: 16px; height: 16px; }
.review-stars-row {
  color: var(--gold);
  letter-spacing: 0.2em;
  font-size: 1rem;
}
.review-text {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.review-text strong { color: var(--ink); font-weight: 600; }
.review-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  font-weight: 500;
}
.review-location svg { width: 14px; height: 14px; fill: var(--gold); flex-shrink: 0; }

.reviews-summary {
  max-width: 820px;
  margin: 0 auto 4rem;
  background: linear-gradient(135deg, rgba(212, 166, 74, 0.18), rgba(212, 166, 74, 0.05));
  border: 1px solid rgba(212, 166, 74, 0.5);
  border-radius: 8px;
  padding: 2.5rem 2.25rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
.reviews-summary-text h3 {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.reviews-summary-text p {
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0;
}
.reviews-summary-stats {
  text-align: right;
  border-left: 1px solid var(--line);
  padding-left: 2rem;
}
.reviews-summary-rating {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 700;
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
}
.reviews-summary-stars {
  color: var(--gold);
  letter-spacing: 0.15em;
  margin: 0.4rem 0;
}
.reviews-summary-count {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}
@media (max-width: 720px) {
  .reviews-summary {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .reviews-summary-stats {
    border-left: none;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 1.5rem;
    text-align: center;
  }
}

.reviews-cta { margin-top: 4rem; text-align: center; }
.reviews-cta a {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  border-bottom: 1px solid var(--gold-deep);
  padding-bottom: 4px;
  transition: color 0.3s;
  font-weight: 600;
}
.reviews-cta a:hover { color: var(--gold-bright); }

/* ============ EXPERIENCE / QUOTE ============ */
.experience {
  background:
    radial-gradient(ellipse at center, rgba(212, 166, 74, 0.06) 0%, transparent 60%),
    var(--bg-2);
  text-align: center;
  padding: 9rem 4vw;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.experience-quote {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  line-height: 1.2;
  max-width: 1000px;
  margin: 0 auto;
  color: var(--ink);
}
.experience-quote em {
  font-style: italic;
  color: var(--gold);
  font-weight: 700;
}
.experience-quote::before,
.experience-quote::after {
  content: '';
  display: block;
  width: 80px;
  height: 1px;
  background: var(--gold);
  margin: 2.5rem auto;
}
.experience-attribution {
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1rem;
  font-weight: 600;
}

/* ============ CTA BANNER (Book by Phone) ============ */
.cta-banner {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: #1a1a1a;
  text-align: center;
  padding: 5rem 4vw;
  position: relative;
  overflow: hidden;
}
.cta-banner::before,
.cta-banner::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.05));
}
.cta-banner h2 {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}
.cta-banner h2 em { font-style: italic; font-weight: 400; }
.cta-banner p {
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: rgba(26, 26, 26, 0.78);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .btn-call {
  display: inline-block;
  background: #1a1a1a;
  color: var(--gold);
  padding: 1.1rem 2.6rem;
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 700;
  transition: all 0.3s;
  border-radius: 2px;
  border: 1px solid #1a1a1a;
}
.cta-banner .btn-call:hover {
  background: #000;
  color: var(--gold-bright);
}

/* ============ VISIT ============ */
.visit {
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.visit-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}
.visit-info-block {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--line);
}
.visit-info-block:first-of-type { padding-top: 0; }
.visit-label {
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 600;
}
.visit-value {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 700;
  font-size: 1.9rem;
  line-height: 1.2;
  color: var(--ink);
  text-decoration: none;
  display: block;
  transition: color 0.3s;
  letter-spacing: -0.01em;
}
a.visit-value:hover { color: var(--gold); }
.visit-detail {
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-top: 0.5rem;
  line-height: 1.5;
}
.hours-list { list-style: none; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-family: 'Newsreader', Georgia, serif;
  font-size: 1.1rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line-soft);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li span:first-child {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  font-weight: 600;
}

/* ============ FINAL CTA ============ */
.final-cta {
  text-align: center;
  padding: 7rem 4vw;
  border-top: 1px solid var(--line);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.final-cta h2 {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.final-cta h2 em { font-style: italic; font-weight: 400; color: var(--ink); }
.final-cta p {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
.final-cta-group {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ============ SERVICE DETAIL PAGES ============ */
.service-detail {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 4vw;
}
.service-detail .price-tag {
  display: inline-block;
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.55rem 1.4rem;
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
  border-radius: 2px;
}
.service-detail h2 {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--gold);
  margin: 3rem 0 1.5rem;
  letter-spacing: -0.01em;
}
.service-detail h2 em { font-style: italic; font-weight: 400; color: var(--ink); }
.service-detail p {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}
.service-detail ul { list-style: none; padding: 0; margin: 1.5rem 0 2rem; }
.service-detail ul li {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--ink-soft);
  padding: 0.65rem 0 0.65rem 2rem;
  position: relative;
  border-bottom: 1px solid var(--line-soft);
}
.service-detail ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.service-detail ul li strong { color: var(--ink); font-weight: 600; }
.service-detail .cta-row {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
}
.service-detail .other-services {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}
.service-detail .other-services h3 {
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.service-detail .other-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}
.service-detail .other-services-grid a {
  border: 1px solid var(--line);
  padding: 1.1rem 1.2rem;
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s;
  border-radius: 2px;
  background: var(--bg-3);
}
.service-detail .other-services-grid a:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  background: rgba(212, 166, 74, 0.05);
}

/* ============ FOOTER ============ */
footer.site-footer {
  padding: 0 0 3rem;
  text-align: center;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.footer-map {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 3rem 4vw 0;
}
.footer-map-eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-weight: 600;
}
.footer-map-eyebrow::before,
.footer-map-eyebrow::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.footer-map iframe {
  width: 100%;
  height: 420px;
  border: 1px solid var(--line);
  filter: grayscale(0.7) contrast(1.05) brightness(0.9);
  transition: filter 0.5s;
}
.footer-map iframe:hover { filter: grayscale(0) contrast(1) brightness(1); }
.footer-bottom { padding: 0 4vw; }
footer .logo-mark { justify-content: center; margin-bottom: 1.5rem; }
footer .logo-img { height: 100px; max-width: 360px; margin: 0 auto; }
footer .logo-text { display: none; }
footer p {
  font-size: 0.78rem;
  color: var(--ink-soft);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 1rem;
  font-weight: 500;
}
.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.footer-links a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.3s;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  font-weight: 500;
}
.footer-links a:hover {
  color: var(--gold-bright);
  border-bottom-color: var(--gold);
}
.footer-sep { color: var(--gold-deep); }
.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin: 1.5rem 0;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  transition: all 0.3s;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }

/* ============ MOBILE HAMBURGER NAV ============ */
.mobile-nav { display: none; position: relative; }
.mobile-nav summary {
  list-style: none;
  cursor: pointer;
  padding: 8px 4px;
  color: var(--gold);
  display: flex;
  align-items: center;
  user-select: none;
}
.mobile-nav summary::-webkit-details-marker,
.mobile-nav summary::marker { display: none; content: ''; }
.mobile-nav summary svg {
  width: 26px;
  height: 18px;
  fill: currentColor;
  display: block;
}
.mobile-nav[open] summary svg { transform: rotate(90deg); transition: transform 0.3s; }
.mobile-nav { position: static; }
.mobile-nav-panel {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  width: 100%;
  background: #000;
  padding: 1.5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  z-index: 99;
  animation: fadeIn 0.25s ease;
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.85);
  max-height: calc(100vh - 64px);
  overflow-y: auto;
}
.mobile-nav-panel a {
  color: var(--ink);
  text-decoration: none;
  font-size: 1.05rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  font-family: 'Newsreader', Georgia, serif;
}
.mobile-nav-panel a:hover,
.mobile-nav-panel a.active {
  color: var(--gold-bright);
}
.mobile-nav-panel .mobile-nav-cta {
  background: var(--gold);
  color: #1a1a1a;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
  font-weight: 600;
  border: none;
  letter-spacing: 0.18em;
}
.mobile-nav-panel .mobile-nav-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 38px;
  height: 38px;
  font-size: 1.4rem;
  cursor: pointer;
  font-family: 'Newsreader', Georgia, serif;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  nav.site-nav { padding: 0.75rem 1.25rem; }
  .nav-links { display: none; }
  .mobile-nav { display: block; }
  .logo-img { height: 56px; max-width: 240px; }
  footer .logo-img { height: 80px; max-width: 280px; }
  section { padding: 4rem 1.25rem; }
  .hero { min-height: 86vh; padding: 4rem 1.25rem 5rem; }
  .page-header { padding: 6rem 1.25rem 3.5rem; }
  .about-grid, .visit-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image { max-width: 400px; margin: 0 auto; }
  .experience-quote::before, .experience-quote::after { width: 50px; margin: 1.5rem auto; }
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { text-align: center; }
  .nav-cta { padding: 0.6rem 1rem; font-size: 0.72rem; }
  .nav-cta svg { width: 12px; height: 12px; }
  .g-1, .g-2, .g-3, .g-4, .g-5, .g-6, .g-7, .g-8, .g-9, .g-10 {
    grid-column: span 6;
    aspect-ratio: 3/4;
  }
  .footer-map { padding: 2rem 1.25rem 0; }
  .footer-map iframe { height: 320px; }
  .footer-bottom { padding: 0 1.25rem; }
  .service-detail { padding: 3rem 1.25rem; }
  .announcement-bar { font-size: 0.7rem; letter-spacing: 0.14em; }
}
