:root {
  --jade-950: #0a2a25;
  --jade-900: #10362f;
  --jade-800: #17483f;
  --ivory: #f5f0e5;
  --stone: #e9e1d3;
  --paper: #fbf8f1;
  --bronze: #b28a50;
  --bronze-light: #d3b57d;
  --charcoal: #242824;
  --muted: #62665f;
  --line: rgba(36, 40, 36, 0.18);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Manrope", "Segoe UI", Arial, sans-serif;
  --shell: min(1160px, calc(100% - 48px));
  --section-space: clamp(5rem, 8vw, 8.5rem);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body, button, a { -webkit-tap-highlight-color: transparent; }

a { color: inherit; }
address { font-style: normal; }
button { font: inherit; }

h1, h2, h3, p, blockquote { margin-top: 0; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.02;
}

h1 { font-size: clamp(3.5rem, 7.2vw, 6.75rem); }
h2 { font-size: clamp(2.75rem, 5vw, 4.7rem); }
h3 { font-size: clamp(1.75rem, 2.5vw, 2.25rem); }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding-block: var(--section-space); }

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--paper);
  color: var(--jade-950);
  font-weight: 700;
  transform: translateY(-200%);
}

.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid #e1b86d;
  outline-offset: 4px;
}

.eyebrow {
  margin-bottom: 1.2rem;
  color: #725b34;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow.light { color: var(--bronze-light); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(245, 240, 229, 0.97);
  border-bottom: 1px solid rgba(36, 40, 36, 0.16);
  transition: box-shadow 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled { box-shadow: 0 8px 30px rgba(10, 42, 37, 0.09); }

.header-inner {
  min-height: 84px;
  display: grid;
  grid-template-columns: minmax(225px, 1fr) auto minmax(210px, 1fr);
  align-items: center;
  gap: 2rem;
}

.brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.monogram {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--jade-900);
  color: var(--jade-900);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.brand-copy { display: grid; line-height: 1.2; }
.brand-copy strong { font-family: var(--serif); font-size: 1.34rem; letter-spacing: 0.01em; }
.brand-copy small { margin-top: 0.18rem; color: var(--muted); font-size: 0.61rem; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; }

.primary-nav { display: flex; align-items: center; }
.primary-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.9rem;
  color: #3f443f;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}
.primary-nav a:hover { color: var(--jade-800); }

.header-phone {
  justify-self: end;
  display: grid;
  color: var(--jade-900);
  line-height: 1.2;
  text-align: right;
  text-decoration: none;
}
.header-phone span { color: var(--muted); font-size: 0.63rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.header-phone strong { margin-top: 0.25rem; font-size: 0.9rem; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  background: var(--jade-900);
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: repeating-linear-gradient(90deg, transparent 0, transparent 79px, #fff 80px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  min-height: min(780px, calc(100vh - 84px));
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.72fr);
  gap: clamp(3rem, 8vw, 8.5rem);
  align-items: stretch;
}

.hero-copy { padding-block: clamp(5rem, 9vw, 8.5rem); align-self: center; }
.hero h1 { max-width: 860px; margin-bottom: 2rem; }
.hero-intro { max-width: 700px; margin-bottom: 2.25rem; color: rgba(255,255,255,0.78); font-size: clamp(1rem, 1.4vw, 1.12rem); }

.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.35rem;
  border: 1px solid transparent;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}
.button-bronze { background: var(--bronze); color: #14251f; }
.button-bronze:hover { background: #c19a5d; }
.button-quiet { border-color: rgba(255,255,255,0.35); color: white; }
.button-quiet:hover { border-color: white; background: white; color: var(--jade-950); }
.button-dark { background: var(--jade-900); color: white; }
.button-dark:hover { background: var(--jade-800); }
.button-outline { border-color: var(--jade-900); color: var(--jade-900); }
.button-outline:hover { background: var(--jade-900); color: white; }

.location-link {
  width: fit-content;
  max-width: 100%;
  display: flex;
  gap: 0.65rem;
  margin-top: 2rem;
  color: rgba(255,255,255,0.74);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-decoration: none;
}
.location-link:hover { color: white; }

.hero-proof {
  position: relative;
  width: calc(100% + max(24px, (100vw - 1160px) / 2));
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-inline: 1px solid rgba(255,255,255,0.15);
}

.linework { position: absolute; inset: 0; overflow: hidden; }
.linework::before, .linework::after, .linework span { content: ""; position: absolute; border: 1px solid rgba(211,181,125,0.25); }
.linework::before { width: 72%; height: 42%; right: 14%; top: 12%; }
.linework::after { width: 43%; height: 59%; right: -1px; top: 2%; }
.linework span:nth-child(1) { width: 1px; height: 70%; border: 0; background: rgba(211,181,125,0.22); left: 27%; top: 0; }
.linework span:nth-child(2) { width: 76%; height: 1px; border: 0; background: rgba(211,181,125,0.18); right: 0; top: 33%; }
.linework span:nth-child(3) { width: 40%; height: 28%; border-left: 0; right: 0; top: 53%; }
.linework span:nth-child(4) { width: 14px; height: 14px; right: 20%; top: 24%; border-color: var(--bronze-light); }

.hero-signature { position: relative; padding: 2rem; background: rgba(10,42,37,0.82); }
.signature-rule { width: 32px; height: 1px; display: block; margin-bottom: 1rem; background: var(--bronze); }
.hero-signature p { margin-bottom: 0.15rem; color: white; font-family: var(--serif); font-size: 1.65rem; line-height: 1.1; }
.hero-signature strong, .hero-signature small { display: block; }
.hero-signature strong { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; }
.hero-signature small { margin-top: 0.25rem; color: rgba(255,255,255,0.62); font-size: 0.68rem; }

.rating { position: relative; display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: center; padding: 1.5rem 2rem; background: var(--ivory); color: var(--charcoal); }
.rating strong { color: var(--jade-900); font-family: var(--serif); font-size: 2.3rem; line-height: 1; }
.rating strong span { color: var(--bronze); font-family: var(--sans); font-size: 0.82rem; }
.rating p { margin: 0; color: var(--muted); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.09em; line-height: 1.5; text-transform: uppercase; }

.intro { background: var(--ivory); }
.intro-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(3rem, 9vw, 9rem); align-items: start; }
.intro h2 { margin-bottom: 0; color: var(--jade-900); }
.intro-copy { padding-top: 2.25rem; border-top: 1px solid var(--line); }
.intro-copy p { margin-bottom: 1.35rem; color: #4d524d; font-size: 1.02rem; }

.arrow-link { min-height: 44px; display: inline-flex; align-items: center; gap: 0.7rem; color: var(--jade-900); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-decoration: none; text-transform: uppercase; }
.arrow-link span { transition: transform 160ms ease; }
.arrow-link:hover span { transform: translateX(4px); }

.services { background: var(--paper); }
.section-heading { max-width: 870px; margin-bottom: clamp(3rem, 6vw, 5.5rem); }
.section-heading h2 { margin-bottom: 1.4rem; color: var(--jade-900); }
.section-heading > p:last-child { max-width: 620px; color: var(--muted); }

.service-list { border-top: 1px solid var(--line); }
.service-item {
  display: grid;
  grid-template-columns: 70px minmax(220px, 0.75fr) minmax(280px, 1fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: start;
  padding-block: 2rem;
  border-bottom: 1px solid var(--line);
}
.service-number { padding-top: 0.35rem; color: #7a6038; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; }
.service-item h3 { margin: 0; color: var(--jade-900); }
.service-item p { max-width: 550px; margin: 0; color: var(--muted); }
.service-note { display: flex; gap: 1rem; max-width: 780px; margin: 2.25rem 0 0 auto; color: var(--muted); font-size: 0.83rem; }
.service-note span { color: var(--bronze); font-family: var(--serif); font-size: 1.55rem; line-height: 1; }

.reviews { background: var(--jade-950); color: white; }
.reviews-heading { display: flex; justify-content: space-between; gap: 3rem; align-items: end; margin-bottom: 3.75rem; }
.reviews-heading h2 { margin: 0; }
.rating-summary { flex: 0 0 auto; display: flex; gap: 1rem; align-items: center; padding-left: 2rem; border-left: 1px solid rgba(255,255,255,0.2); }
.rating-summary > strong { font-family: var(--serif); font-size: 3.2rem; font-weight: 500; line-height: 1; }
.rating-summary span { display: grid; color: rgba(255,255,255,0.65); font-size: 0.63rem; font-weight: 700; letter-spacing: 0.1em; line-height: 1.5; text-transform: uppercase; }
.rating-summary b { color: var(--bronze-light); font-size: 0.7rem; letter-spacing: 0.17em; }
.rating-summary i { color: rgba(255,255,255,0.2); font-style: normal; }

.review-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr; }
.review-card { min-height: 390px; display: flex; flex-direction: column; padding: clamp(1.7rem, 3vw, 2.5rem); border: 1px solid rgba(255,255,255,0.16); border-right: 0; }
.review-card:last-child { border-right: 1px solid rgba(255,255,255,0.16); }
.featured-review { background: var(--jade-900); }
.quote-mark { height: 43px; margin-bottom: 1.5rem; color: var(--bronze-light); font-family: var(--serif); font-size: 4rem; line-height: 1; }
.review-card blockquote { margin-bottom: 2.5rem; color: rgba(255,255,255,0.87); font-family: var(--serif); font-size: clamp(1.18rem, 1.7vw, 1.5rem); line-height: 1.38; }
.review-card footer { display: grid; gap: 0.2rem; margin-top: auto; }
.review-card footer strong { font-size: 0.77rem; letter-spacing: 0.06em; text-transform: uppercase; }
.review-card footer span { color: rgba(255,255,255,0.58); font-size: 0.74rem; }
.review-secondary { display: grid; grid-template-columns: 1fr 1fr; border-inline: 1px solid rgba(255,255,255,0.16); border-bottom: 1px solid rgba(255,255,255,0.16); }
.review-secondary article { padding: 1.5rem 2rem; }
.review-secondary article + article { border-left: 1px solid rgba(255,255,255,0.16); }
.review-secondary blockquote { margin-bottom: 0.7rem; color: rgba(255,255,255,0.78); font-family: var(--serif); font-size: 1.15rem; }
.review-secondary p { margin: 0; color: rgba(255,255,255,0.48); font-size: 0.65rem; }
.review-secondary strong { color: rgba(255,255,255,0.78); }
.review-source { margin: 1.3rem 0 0; color: rgba(255,255,255,0.58); font-size: 0.76rem; }

.contact { background: var(--stone); }
.contact-grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: clamp(3rem, 9vw, 9rem); }
.contact-lead h2 { max-width: 650px; margin-bottom: 1.5rem; color: var(--jade-900); }
.contact-lead > p:not(.eyebrow):not(.visit-note) { max-width: 570px; color: var(--muted); }
.contact-actions { margin-top: 2.1rem; }
.visit-note { margin: 1.4rem 0 0; color: var(--muted); font-size: 0.78rem; font-weight: 600; }
.contact-details { border-top: 1px solid var(--line); }
.contact-details section { display: grid; grid-template-columns: 145px 1fr; gap: 1rem; padding-block: 1.55rem; border-bottom: 1px solid var(--line); }
.contact-details h3 { margin: 0; color: #735d37; font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; }
.contact-details a, .contact-details address { grid-column: 2; color: var(--jade-900); font-size: 0.95rem; font-weight: 600; line-height: 1.8; }
.contact-details a { width: fit-content; min-height: 44px; display: inline-flex; align-items: center; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.contact-details section:first-child a + a { margin-top: -0.7rem; }

.site-footer { padding: 4rem 0 2rem; background: #071e1b; color: white; }
.footer-main { display: flex; justify-content: space-between; gap: 2rem; align-items: start; padding-bottom: 3rem; }
.footer-brand { display: flex; gap: 1.1rem; align-items: center; }
.footer-brand .monogram { border-color: rgba(255,255,255,0.5); color: white; }
.footer-brand p { display: grid; margin: 0; line-height: 1.35; }
.footer-brand strong { font-family: var(--serif); font-size: 1.45rem; }
.footer-brand span { color: rgba(255,255,255,0.5); font-size: 0.68rem; }
.footer-links { display: grid; gap: 0.4rem; text-align: right; }
.footer-links a { min-height: 44px; display: inline-flex; align-items: center; justify-content: flex-end; color: rgba(255,255,255,0.82); font-size: 0.85rem; text-underline-offset: 4px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.14); }
.footer-bottom p { max-width: 780px; margin: 0; color: rgba(255,255,255,0.6); font-size: 0.76rem; line-height: 1.65; }
.footer-bottom p:last-child { flex: 0 0 auto; }
.mobile-call { display: none; }

@media (max-width: 1024px) {
  .header-inner { grid-template-columns: minmax(210px, 1fr) auto auto; gap: 1rem; }
  .primary-nav a { padding-inline: 0.6rem; }
  .header-phone span { display: none; }
  .hero-grid { grid-template-columns: minmax(0, 1.4fr) minmax(270px, 0.6fr); gap: 3rem; }
  .service-item { grid-template-columns: 50px minmax(200px, 0.75fr) 1fr; gap: 2rem; }
  .review-grid { grid-template-columns: 1.12fr 1fr; }
  .review-card:nth-child(3) { grid-column: 1 / -1; min-height: 290px; border-top: 0; border-left: 1px solid rgba(255,255,255,0.16); }
  .review-card:nth-child(2) { border-right: 1px solid rgba(255,255,255,0.16); }
}

@media (max-width: 840px) {
  :root { --shell: min(100% - 36px, 720px); }
  .header-inner { min-height: 74px; grid-template-columns: 1fr auto; }
  .brand-copy small span { display: none; }
  .menu-toggle {
    position: relative;
    z-index: 2;
    min-width: 74px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.7rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--jade-900);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .menu-icon { width: 20px; display: grid; gap: 5px; }
  .menu-icon i { height: 1px; display: block; background: currentColor; transition: transform 160ms ease; }
  .menu-toggle[aria-expanded="true"] .menu-icon i:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-icon i:last-child { transform: translateY(-3px) rotate(-45deg); }
  .primary-nav {
    position: absolute;
    inset: 74px 0 auto;
    display: none;
    padding: 0.8rem 18px 1rem;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(10,42,37,0.12);
  }
  .primary-nav.is-open { display: grid; }
  .primary-nav a { min-height: 48px; padding: 0.4rem 0; border-bottom: 1px solid var(--line); }
  .primary-nav a:last-child { border-bottom: 0; }
  .header-phone { display: none; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 0; }
  .hero-copy { padding-block: 5.2rem 4.5rem; }
  .hero-proof { width: 100%; min-height: 450px; border-top: 1px solid rgba(255,255,255,0.15); }
  .intro-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .intro-copy { padding-top: 1.7rem; }
  .service-item { grid-template-columns: 42px 1fr; gap: 1.2rem; }
  .service-item p { grid-column: 2; }
  .reviews-heading { align-items: start; }
  .review-grid { grid-template-columns: 1fr; }
  .review-card, .review-card:nth-child(3) { min-height: auto; grid-column: auto; border: 1px solid rgba(255,255,255,0.16); border-bottom: 0; }
  .review-card:last-child { border-bottom: 1px solid rgba(255,255,255,0.16); }
  .review-secondary { grid-template-columns: 1fr; }
  .review-secondary article + article { border-left: 0; border-top: 1px solid rgba(255,255,255,0.16); }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 32px); --section-space: 4.5rem; }
  body { padding-bottom: 64px; }
  h1 { font-size: clamp(3.15rem, 16vw, 4.4rem); }
  h2 { font-size: clamp(2.55rem, 12vw, 3.5rem); }
  .brand { gap: 0.65rem; }
  .brand .monogram { width: 39px; height: 39px; }
  .brand-copy strong { font-size: 1.15rem; }
  .brand-copy small { font-size: 0.52rem; }
  .hero-copy { padding-block: 4.5rem 3.7rem; }
  .hero h1 { margin-bottom: 1.5rem; }
  .hero-actions, .contact-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button, .contact-actions .button { width: 100%; }
  .location-link { font-size: 0.7rem; }
  .hero-proof { min-height: 390px; }
  .hero-signature, .rating { padding-inline: 1.25rem; }
  .intro h2 br { display: none; }
  .service-item { grid-template-columns: 32px 1fr; padding-block: 1.65rem; }
  .service-item h3 { font-size: 1.75rem; }
  .service-item p { font-size: 0.92rem; }
  .service-note { margin-top: 1.75rem; }
  .reviews-heading { display: grid; margin-bottom: 2.5rem; }
  .rating-summary { padding: 1.25rem 0 0; border-top: 1px solid rgba(255,255,255,0.2); border-left: 0; }
  .review-card { padding: 1.5rem; }
  .review-card blockquote { margin-bottom: 2rem; }
  .review-secondary article { padding: 1.35rem 1.5rem; }
  .contact-details section { grid-template-columns: 1fr; gap: 0.55rem; }
  .contact-details a, .contact-details address { grid-column: 1; }
  .contact-details section:first-child a + a { margin-top: 0; }
  .footer-main, .footer-bottom { flex-direction: column; }
  .footer-main { padding-bottom: 2rem; }
  .footer-links { text-align: left; }
  .footer-links a { justify-content: flex-start; }
  .footer-bottom { gap: 1rem; }
  .mobile-call {
    position: fixed;
    z-index: 90;
    inset: auto 0 0;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: var(--bronze);
    color: #10231f;
    text-decoration: none;
    box-shadow: 0 -8px 30px rgba(10,42,37,0.2);
  }
  .mobile-call span { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
  .mobile-call strong { font-size: 0.9rem; }
}

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

@media print {
  .site-header, .mobile-call { display: none; }
  body { padding: 0; }
  .hero, .reviews, .site-footer { color: black; background: white; }
}
