:root {
  --ink: #171410;
  --ink-soft: #4f4941;
  --paper: #fffdf9;
  --warm: #f3eee7;
  --gold: #b79553;
  --gold-light: #dcc99e;
  --line: #ded6ca;
  --white: #ffffff;
  --radius: 1.25rem;
  --shadow: 0 1.2rem 3.5rem rgba(38, 29, 18, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.wrap { width: min(100% - 2rem, 72rem); margin-inline: auto; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; background: var(--white); padding: .8rem 1rem; }
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 249, .94);
  border-bottom: 1px solid rgba(222, 214, 202, .85);
  backdrop-filter: blur(12px);
}
.header-inner { min-height: 4.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand img { width: 4.3rem; height: 4.3rem; object-fit: contain; }
nav { display: flex; align-items: center; gap: 1.2rem; font-size: .92rem; }
nav a { text-decoration: none; font-weight: 650; }
.nav-cta { padding: .72rem 1rem; background: var(--ink); color: var(--white); border-radius: 999px; }

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(183, 149, 83, .18), transparent 31rem),
    linear-gradient(145deg, #fffdf9 0%, #f5efe6 100%);
}
.hero-grid { min-height: auto; display: grid; align-items: center; gap: 1.6rem; padding-block: 2.8rem 3.2rem; }
.hero-copy { position: relative; z-index: 1; }
.eyebrow { margin: 0 0 1rem; color: #806731; font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; line-height: 1.08; text-wrap: balance; }
h1 { max-width: 13ch; font-size: clamp(2.7rem, 9vw, 5.7rem); font-weight: 500; letter-spacing: -.045em; }
h2 { max-width: 18ch; font-size: clamp(2rem, 6vw, 3.7rem); font-weight: 500; letter-spacing: -.035em; }
h3 { font-size: 1.55rem; font-weight: 600; }
.hero-text { max-width: 42rem; margin: 1.5rem 0 0; color: var(--ink-soft); font-size: clamp(1.05rem, 3.5vw, 1.22rem); }
.hero-actions { display: flex; flex-direction: column; align-items: stretch; gap: .85rem; margin-top: 1.6rem; }
.button { min-height: 3.35rem; display: inline-flex; align-items: center; justify-content: center; padding: .9rem 1.2rem; border: 1px solid transparent; border-radius: 999px; font-weight: 800; line-height: 1.2; text-align: center; text-decoration: none; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, summary:focus-visible { outline: 3px solid #8e6b22; outline-offset: 3px; }
.button-primary { background: var(--ink); color: var(--white); box-shadow: 0 .9rem 2rem rgba(23, 20, 16, .18); }
.text-link { align-self: center; font-weight: 750; text-underline-offset: .25rem; }
.appointment-note { max-width: 39rem; margin: 1rem 0 0; color: var(--ink-soft); font-size: .9rem; }
.hero-mark {
  display: none;
  width: min(70vw, 22rem);
  aspect-ratio: 1;
  justify-self: center;
  display: grid;
  place-content: center;
  place-items: center;
  gap: .8rem;
  border: 1px solid rgba(183, 149, 83, .55);
  border-radius: 50%;
  color: #826a38;
  letter-spacing: .16em;
  font-size: .72rem;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1rem rgba(255,255,255,.33), var(--shadow);
}
.monogram { color: var(--ink); font-family: Georgia, serif; font-size: clamp(5rem, 24vw, 9rem); line-height: .8; letter-spacing: -.12em; transform: translateX(-.08em); }
.fine-line { width: 4rem; height: 1px; background: var(--gold); }

.section { padding-block: clamp(3.2rem, 7vw, 5.8rem); }
.intro-grid, .faq-grid { display: grid; gap: 2rem; }
.prose { max-width: 42rem; color: var(--ink-soft); font-size: 1.08rem; }
.prose p { margin: 0 0 1.2rem; }
.services { background: var(--warm); }
.section-lead { max-width: 43rem; margin: 1.3rem 0 0; color: var(--ink-soft); font-size: 1.06rem; }
.service-grid { display: grid; gap: .85rem; margin-top: 2rem; }
.service-card { min-height: auto; padding: 1.35rem; background: rgba(255, 255, 255, .78); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 .35rem 1rem rgba(38, 29, 18, .035); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease; }
.service-number { display: block; margin-bottom: 1.25rem; color: #806731; font-size: .8rem; font-weight: 850; letter-spacing: .12em; }
.service-card p { margin: 1rem 0 0; color: var(--ink-soft); }
.center-action { display: flex; justify-content: center; margin-top: 2rem; }
.button-dark { background: var(--ink); color: var(--white); }

.location-grid { display: grid; gap: 2.2rem; align-items: center; }
address { margin-top: 1.5rem; color: var(--ink-soft); font-style: normal; font-size: 1.08rem; }
address strong { color: var(--ink); }
.hours { max-width: 31rem; color: var(--ink-soft); }
.hours strong, .hours span { display: block; }
.hours strong { margin-bottom: .2rem; color: var(--ink); }
.location-actions { display: flex; flex-direction: column; align-items: stretch; gap: 1rem; margin-top: 1.7rem; }
.button-outline { border-color: var(--ink); }
.phone-link { align-self: center; font-weight: 800; text-underline-offset: .25rem; }
.map-card { min-height: 18rem; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; background: radial-gradient(circle at 78% 18%, rgba(220,201,158,.38), transparent 9rem), linear-gradient(145deg, #1f1b16, #0f0d0b); color: var(--white); border: 1px solid #40372b; border-radius: var(--radius); box-shadow: var(--shadow); text-decoration: none; transition: transform .25s ease, box-shadow .25s ease; }
.map-card::before, .map-card::after { content: ""; position: absolute; border: 1px solid rgba(220,201,158,.2); border-radius: 50%; }
.map-card::before { width: 12rem; height: 12rem; top: -4rem; right: -2rem; }
.map-card::after { width: 7rem; height: 7rem; top: -1.5rem; right: .5rem; }
.map-pin { position: absolute; top: 1.2rem; left: 1.4rem; color: var(--gold-light); font-size: 2.3rem; line-height: 1; }
.map-card strong { position: relative; z-index: 1; font-family: Georgia, serif; font-size: clamp(2rem, 8vw, 3rem); font-weight: 500; line-height: 1.05; }
.map-card small { position: relative; z-index: 1; margin-top: .8rem; color: #d6d0c7; font-size: .92rem; }
.map-action { position: relative; z-index: 1; align-self: flex-start; margin-top: 1.3rem; padding: .7rem .95rem; background: var(--gold-light); color: var(--ink); border-radius: 999px; font-size: .86rem; font-weight: 850; }

.faq { background: #f7f3ed; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { position: relative; padding: 1.25rem 2.5rem 1.25rem 0; cursor: pointer; font-weight: 800; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: .2rem; top: 1rem; font-size: 1.5rem; font-weight: 400; }
details[open] summary::after { content: "–"; }
details p { margin: 0; padding: 0 1rem 1.15rem 0; color: var(--ink-soft); }

.reveal { opacity: 0; transform: translateY(1.4rem); transition: opacity .55s ease var(--reveal-delay, 0ms), transform .55s cubic-bezier(.2,.75,.25,1) var(--reveal-delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.final-cta { padding-block: clamp(5rem, 12vw, 9rem); background: var(--ink); color: var(--white); text-align: center; }
.final-cta-inner { display: grid; justify-items: center; }
.final-cta .eyebrow { color: var(--gold-light); }
.final-cta h2 { max-width: 19ch; }
.final-cta p:not(.eyebrow) { max-width: 40rem; margin: 1.3rem 0 2rem; color: #d5d0c9; }
.button-gold { background: var(--gold-light); color: var(--ink); }

footer { padding: 3rem 0 7rem; background: #0e0c0a; color: #d6d0c7; }
.footer-inner { display: grid; gap: 2rem; }
.footer-inner p { margin: .3rem 0; }
.footer-inner strong { color: var(--white); }
.footer-inner a { text-underline-offset: .2rem; }
.footer-brand img { width: 6.25rem; height: 6.25rem; object-fit: contain; border-radius: .5rem; }
.footer-brand p { color: var(--gold-light); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; }
.legal { margin-top: 2.5rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.13); font-size: .82rem; }

.mobile-cta { position: fixed; right: 0; bottom: 0; left: 0; z-index: 30; padding: .65rem max(.75rem, env(safe-area-inset-right)) max(.65rem, env(safe-area-inset-bottom)) max(.75rem, env(safe-area-inset-left)); background: rgba(255,253,249,.96); border-top: 1px solid var(--line); }
.mobile-cta a { min-height: 3.2rem; display: flex; align-items: center; justify-content: center; padding: .8rem 1rem; background: #1d7b4b; color: var(--white); border-radius: 999px; font-size: .94rem; font-weight: 850; line-height: 1.2; text-align: center; text-decoration: none; }

@media (min-width: 48rem) {
  .wrap { width: min(100% - 3rem, 72rem); }
  .hero-grid { min-height: min(45rem, 82vh); grid-template-columns: 1.25fr .75fr; padding-block: 4rem; }
  .hero-mark { display: grid; }
  .hero-actions { flex-direction: row; align-items: center; }
  .intro-grid, .faq-grid { grid-template-columns: .85fr 1.15fr; gap: 5rem; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: 1fr .8fr; gap: 5rem; }
  .location-actions { flex-direction: row; align-items: center; }
  .footer-inner { grid-template-columns: 1fr 1fr 1fr; }
  .mobile-cta { display: none; }
  footer { padding-bottom: 3rem; }
}

@media (min-width: 70rem) {
  .service-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 38rem) {
  nav > a:not(.nav-cta) { display: none; }
  .nav-cta { padding: .65rem .85rem; font-size: .85rem; }
  .hero-grid { padding-top: 2.2rem; }
  h1 { font-size: clamp(2.55rem, 12.5vw, 3.7rem); }
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .intro-grid, .faq-grid { gap: 1.4rem; }
  .service-card p { margin-top: .7rem; }
  .center-action { margin-top: 1.4rem; }
  .location-grid { gap: 1.6rem; }
  .map-card { min-height: 16rem; }
  summary { padding-block: 1rem; }
  summary::after { top: .72rem; }
  .final-cta { padding-block: 4rem; }
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover { transform: translateY(-.5rem); border-color: var(--gold-light); background: var(--white); box-shadow: 0 1.2rem 2.4rem rgba(38, 29, 18, .13); }
  .map-card:hover { transform: translateY(-.35rem); box-shadow: 0 1.5rem 3.8rem rgba(38, 29, 18, .18); }
}

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