:root {
  --ink: #11100f;
  --ink-soft: #1b1917;
  --paper: #f2efe9;
  --white: #fffdf8;
  --gold: #c6a15b;
  --gold-light: #dcc28e;
  --muted: #8f8a82;
  --line: rgba(17, 16, 15, .16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.skip-link { position: fixed; left: 1rem; top: -4rem; z-index: 100; background: var(--gold); color: var(--ink); padding: .75rem 1rem; font-weight: 700; }
.skip-link:focus { top: 1rem; }
.site-header { position: absolute; inset: 0 0 auto 0; z-index: 10; height: 100px; padding: 0 clamp(1.25rem, 5vw, 5rem); display: flex; align-items: center; justify-content: space-between; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.16); }
.brand { display: inline-flex; align-items: center; }
.brand img { display: block; width: clamp(10.5rem, 14vw, 13.5rem); height: auto; }
.site-nav { display: flex; align-items: center; gap: clamp(1.4rem, 3vw, 3.25rem); font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.site-nav > a:not(.nav-cta) { position: relative; }
.site-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -.5rem; height: 1px; background: var(--gold); transition: right .25s; }
.site-nav > a:hover::after, .site-nav > a:focus-visible::after { right: 0; }
.nav-cta { border: 1px solid var(--gold); padding: .8rem 1.15rem; transition: .25s; }
.nav-cta:hover { background: var(--gold); color: var(--ink); }
.menu-toggle { display: none; background: none; border: 0; width: 48px; height: 48px; padding: 13px 9px; }
.menu-toggle span { display: block; height: 1px; background: white; margin: 8px 0; transition: .25s; }
.hero { min-height: 760px; height: 100svh; position: relative; display: flex; align-items: center; padding: 7rem clamp(1.25rem, 8vw, 8rem) 8rem; overflow: hidden; color: var(--white); background: var(--ink); }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,9,8,.94) 0%, rgba(10,9,8,.82) 30%, rgba(10,9,8,.18) 64%, rgba(10,9,8,.2) 100%), linear-gradient(0deg, rgba(10,9,8,.6), transparent 40%); }
.hero-copy { position: relative; z-index: 1; max-width: 650px; }
.eyebrow { margin: 0 0 1.5rem; display: flex; align-items: center; gap: .85rem; text-transform: uppercase; letter-spacing: .22em; font-size: .72rem; font-weight: 700; color: var(--gold-light); }
.eyebrow span { width: 2.5rem; height: 1px; background: currentColor; }
.eyebrow.dark { color: #8c6c34; }
h1, h2 { margin: 0; font-family: var(--serif); line-height: .96; font-weight: 400; letter-spacing: -.045em; }
h1 { font-size: clamp(4rem, 7.7vw, 8.25rem); }
h1 em, h2 em { color: var(--gold); font-weight: 400; }
.hero-lede { max-width: 520px; color: rgba(255,255,255,.72); font-size: clamp(1rem, 1.4vw, 1.2rem); margin: 2rem 0 2.3rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 1.4rem; padding: .85rem 1.4rem; text-transform: uppercase; letter-spacing: .12em; font-size: .73rem; font-weight: 800; border: 1px solid transparent; transition: transform .2s, background .2s, color .2s; }
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: var(--ink); }
.button-gold:hover { background: var(--gold-light); }
.button-ghost { border-color: rgba(255,255,255,.38); color: white; }
.button-ghost:hover { background: white; color: var(--ink); }
.hero-meta { position: absolute; z-index: 1; right: clamp(1.25rem, 5vw, 5rem); bottom: 3rem; display: flex; gap: 3.5rem; }
.hero-meta div, .hero-meta a { display: flex; flex-direction: column; }
.hero-meta span { color: rgba(255,255,255,.5); font-size: .65rem; letter-spacing: .16em; text-transform: uppercase; }
.hero-meta strong { font-family: var(--serif); font-size: 1rem; font-weight: 400; margin-top: .2rem; }
.scroll-cue { position: absolute; z-index: 1; left: clamp(1.25rem, 5vw, 5rem); bottom: 3rem; display: flex; align-items: center; gap: .8rem; font-size: .66rem; text-transform: uppercase; letter-spacing: .22em; color: rgba(255,255,255,.55); }
.scroll-cue span { height: 1px; width: 2.5rem; background: var(--gold); }
.section { padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 6vw, 6rem); }
.section-heading { display: grid; grid-template-columns: 1fr 2fr 1fr; align-items: end; gap: 2rem; margin-bottom: 4rem; }
.section-heading .eyebrow { align-self: start; }
h2 { font-size: clamp(3.1rem, 5.6vw, 6rem); }
.section-heading > p:last-child { color: #6d6861; max-width: 320px; margin: 0; }
.service-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-card { position: relative; min-height: 390px; padding: 2.2rem; border-right: 1px solid var(--line); display: flex; flex-direction: column; transition: background .3s, color .3s, transform .3s; }
.service-card:last-child { border-right: 0; }
.service-card:hover, .service-card.featured { background: var(--ink); color: var(--white); transform: translateY(-8px); }
.service-number { font-size: .68rem; letter-spacing: .18em; color: var(--muted); }
.service-icon { margin: 4rem 0 2.2rem; font-family: var(--serif); color: var(--gold); font-size: 2.4rem; }
.service-card h3 { font-family: var(--serif); font-size: 2rem; margin: 0 0 .8rem; font-weight: 400; }
.service-card p { color: var(--muted); margin: 0 0 2rem; }
.service-card a { margin-top: auto; width: fit-content; text-transform: uppercase; letter-spacing: .14em; font-size: .68rem; font-weight: 700; }
.service-card a span { color: var(--gold); margin-left: .55rem; }
.approach { background: var(--ink); color: var(--white); display: grid; grid-template-columns: minmax(280px, .8fr) 1.2fr; gap: clamp(3rem, 8vw, 9rem); align-items: center; overflow: hidden; }
.approach-visual { min-height: 620px; position: relative; display: grid; place-content: center; border: 1px solid rgba(198,161,91,.3); background: radial-gradient(circle at 50% 45%, rgba(198,161,91,.14), transparent 50%), repeating-linear-gradient(135deg, transparent 0 22px, rgba(255,255,255,.018) 22px 23px); }
.approach-visual::before, .approach-visual::after { content: ""; position: absolute; inset: 2rem; border: 1px solid rgba(255,255,255,.08); }
.approach-visual::after { inset: 4rem; border-color: rgba(198,161,91,.18); }
.monogram-logo { width: clamp(9rem, 17vw, 14rem); height: auto; filter: drop-shadow(0 20px 45px rgba(0,0,0,.28)); }
.approach-visual p { text-align: center; letter-spacing: .34em; font-size: .6rem; color: var(--gold-light); line-height: 2; margin: 1.5rem 0 0; }
.approach-copy { max-width: 680px; }
.large-copy { color: rgba(255,255,255,.65); font-size: clamp(1.05rem, 1.5vw, 1.25rem); margin: 2.2rem 0 3.5rem; max-width: 600px; }
.principles { list-style: none; padding: 0; margin: 0; border-top: 1px solid rgba(255,255,255,.14); }
.principles li { display: grid; grid-template-columns: 48px 1fr; padding: 1.4rem 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.principles li > span { color: var(--gold); font-family: var(--serif); }
.principles strong { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }
.principles p { color: rgba(255,255,255,.5); margin: .25rem 0 0; font-size: .9rem; }
.reviews { background: var(--white); }
.reviews-heading { display: grid; grid-template-columns: 1.4fr .6fr; align-items: end; gap: 3rem; margin-bottom: 4rem; }
.reviews-heading h2 em { color: var(--gold); }
.rating-summary { justify-self: end; display: flex; align-items: center; gap: 1.5rem; padding-bottom: .7rem; }
.rating-summary > strong { font-family: var(--serif); font-size: clamp(4rem, 7vw, 6.5rem); line-height: .8; font-weight: 400; letter-spacing: -.06em; }
.rating-summary .stars { font-size: 1rem; letter-spacing: .12em; }
.rating-summary p { margin: .35rem 0 0; color: var(--muted); font-size: .8rem; }
.stars { color: var(--gold); letter-spacing: .16em; white-space: nowrap; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.review-card { min-height: 360px; margin: 0; padding: 2.2rem; border-right: 1px solid var(--line); display: flex; flex-direction: column; background: var(--paper); }
.review-card:last-child { border-right: 0; }
.review-card.featured-review { background: var(--ink); color: var(--white); transform: translateY(-1rem); box-shadow: 0 24px 55px rgba(17,16,15,.14); }
.review-top { display: flex; justify-content: space-between; gap: 1rem; font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.review-card blockquote { margin: 3rem 0; font-family: var(--serif); font-size: clamp(1.25rem, 1.7vw, 1.6rem); line-height: 1.45; font-weight: 400; }
.review-card figcaption { margin-top: auto; padding-top: 1.4rem; border-top: 1px solid var(--line); display: flex; align-items: center; gap: .9rem; }
.featured-review figcaption { border-color: rgba(255,255,255,.14); }
.avatar { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid var(--gold); color: var(--gold); font-family: var(--serif); font-size: .85rem; }
.review-card figcaption div { display: flex; flex-direction: column; }
.review-card figcaption strong { font-size: .85rem; }
.review-card figcaption div span { color: var(--muted); font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; }
.reviews-link { display: flex; width: fit-content; gap: .7rem; margin: 2.5rem 0 0 auto; padding-bottom: .35rem; border-bottom: 1px solid var(--ink); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; }
.reviews-link span { color: var(--gold); }
.contact { background: var(--gold); }
.contact-intro { display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 2rem; align-items: end; margin-bottom: 4rem; }
.contact-intro .eyebrow { align-self: start; color: rgba(17,16,15,.7); }
.contact-intro h2 em { color: var(--white); }
.phone { font-family: var(--serif); font-size: clamp(1.15rem, 1.7vw, 1.5rem); border-bottom: 1px solid rgba(17,16,15,.4); padding-bottom: .55rem; display: flex; justify-content: space-between; }
.contact-grid { display: grid; grid-template-columns: 1.2fr .9fr .9fr; background: var(--paper); }
.contact-card { min-height: 290px; padding: 2.2rem; border-right: 1px solid var(--line); display: flex; flex-direction: column; }
.contact-card:last-child { border: 0; }
.card-label { margin: 0 0 2.2rem; font-size: .68rem; letter-spacing: .2em; font-weight: 800; color: #806329; }
.contact-card address { font-family: var(--serif); font-size: 1.3rem; line-height: 1.55; font-style: normal; }
.contact-card > a:not(.button) { margin-top: auto; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; }
.hours div { display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px solid var(--line); padding-bottom: 1rem; }
.hours p:last-child { color: var(--muted); }
.action-card { background: var(--white); }
.action-card > p:nth-child(2) { margin: 0; color: #6d6861; }
.button-dark { background: var(--ink); color: var(--white); margin-top: auto; align-self: flex-start; }
footer { min-height: 150px; padding: 2.5rem clamp(1.25rem, 6vw, 6rem); background: var(--ink); color: rgba(255,255,255,.5); display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-brand img { width: 11.5rem; }
footer p:nth-child(2) { text-align: center; }
footer p:last-child { text-align: right; }
.mobile-book { display: none; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .reveal { opacity: 1; transform: none; transition: none; } }
@media (min-width: 901px) and (max-width: 1180px) {
  .service-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card:nth-child(even) { border-right: 0; }
  .service-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 900px) {
  .site-header { height: 82px; }
  .menu-toggle { display: block; position: relative; z-index: 2; }
  .site-nav { position: fixed; inset: 0; padding: 7rem 1.5rem 2rem; background: rgba(17,16,15,.98); flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; transform: translateX(100%); transition: transform .3s; }
  .site-nav.open { transform: none; }
  .site-nav a { padding: 1.25rem 0; border-bottom: 1px solid rgba(255,255,255,.14); font-family: var(--serif); font-size: 1.7rem; text-transform: none; letter-spacing: 0; }
  .site-nav .nav-cta { border: 0; color: var(--gold); }
  .menu-toggle.active span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle.active span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
  .hero { min-height: 720px; align-items: flex-end; padding-bottom: 10rem; }
  .hero-image { object-position: 62% center; opacity: .78; }
  .hero-shade { background: linear-gradient(0deg, rgba(10,9,8,.97) 0%, rgba(10,9,8,.6) 52%, rgba(10,9,8,.3) 100%); }
  .hero-meta { left: 1.25rem; right: 1.25rem; bottom: 2.3rem; gap: 1.5rem; justify-content: space-between; }
  .hero-meta div:nth-child(2) { display: none; }
  .scroll-cue { display: none; }
  .section-heading, .contact-intro { grid-template-columns: 1fr; align-items: start; }
  .section-heading > p:last-child { max-width: 520px; }
  .service-list { grid-template-columns: 1fr; }
  .service-card { min-height: 310px; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-card:last-child { border-bottom: 0; }
  .service-card.featured { transform: none; }
  .service-icon { margin: 2.5rem 0 1.5rem; }
  .approach { grid-template-columns: 1fr; }
  .approach-visual { min-height: 460px; max-width: 600px; width: 100%; }
  .reviews-heading { grid-template-columns: 1fr; }
  .rating-summary { justify-self: start; }
  .review-grid { grid-template-columns: 1fr; }
  .review-card { min-height: 300px; border-right: 0; border-bottom: 1px solid var(--line); }
  .review-card:last-child { border-bottom: 0; }
  .review-card.featured-review { transform: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { min-height: 250px; border-right: 0; border-bottom: 1px solid var(--line); }
  footer { grid-template-columns: 1fr; gap: 1.5rem; padding-bottom: 7rem; }
  footer p, footer p:nth-child(2), footer p:last-child { text-align: left; margin: 0; }
  .mobile-book { position: fixed; z-index: 20; display: flex; left: .75rem; right: .75rem; bottom: .75rem; background: var(--gold); color: var(--ink); padding: .8rem 1rem; justify-content: space-between; align-items: center; box-shadow: 0 12px 40px rgba(0,0,0,.28); font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; }
  .mobile-book strong { font-size: .78rem; }
}
@media (max-width: 560px) {
  .hero { padding-left: 1.25rem; padding-right: 1.25rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .section { padding-left: 1.25rem; padding-right: 1.25rem; }
  .section-heading, .contact-intro { margin-bottom: 2.8rem; }
  .approach { padding-left: 1.25rem; padding-right: 1.25rem; }
  .approach-visual { min-height: 380px; }
  .approach-visual::after { inset: 3rem; }
  .contact-card { padding: 1.6rem; }
  .phone { width: 100%; }
}
