:root {
  --ink: #17201d;
  --ink-soft: #4f5d57;
  --forest: #173d36;
  --forest-2: #214d44;
  --sage: #9db7a9;
  --sage-light: #dfe8e1;
  --paper: #f5f2ec;
  --white: #fffefa;
  --line: rgba(23, 32, 29, .12);
  --radius: 28px;
  --shadow: 0 22px 60px rgba(27, 45, 39, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
svg { display: block; }
button, a { -webkit-tap-highlight-color: transparent; }
.shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 999; transform: translateY(-150%); background: #fff; padding: 10px 14px; border-radius: 10px; }
.skip-link:focus { transform: translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(0,0,0,.03); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { width: 42px; height: 42px; border-radius: 14px; background: var(--forest); display: grid; place-items: center; }
.brand-mark svg { width: 25px; fill: var(--paper); }
.brand-copy { display: flex; flex-direction: column; line-height: 1.25; }
.brand-copy strong { font-size: 15px; letter-spacing: -.015em; }
.brand-copy small { color: var(--ink-soft); font-size: 11px; margin-top: 3px; }
.site-nav { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 600; }
.site-nav > a:not(.nav-cta) { color: #405049; }
.site-nav > a:not(.nav-cta):hover { color: var(--forest); }
.nav-cta { padding: 11px 16px; border: 1px solid rgba(23,61,54,.18); border-radius: 999px; }
.menu-toggle { display: none; border: 0; background: none; width: 42px; height: 42px; padding: 10px; }
.menu-toggle span:not(.sr-only) { display: block; width: 100%; height: 1.5px; background: var(--ink); margin: 5px 0; transition: transform .25s ease, opacity .25s ease; }

.hero { position: relative; overflow: hidden; padding: 92px 0 86px; min-height: 720px; display: grid; align-items: center; }
.hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(23,61,54,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(23,61,54,.035) 1px, transparent 1px); background-size: 44px 44px; mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent); pointer-events: none; }
.hero-glow { position: absolute; border-radius: 999px; filter: blur(30px); opacity: .45; pointer-events: none; }
.hero-glow-one { width: 420px; height: 420px; background: #dae5dc; top: 10%; right: 4%; }
.hero-glow-two { width: 300px; height: 300px; background: #e8dfcf; bottom: 6%; left: -8%; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 80px; }
.eyebrow { margin: 0 0 20px; display: flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: .14em; font-size: 11px; font-weight: 800; color: #64726c; }
.eyebrow > span { width: 26px; height: 1px; background: currentColor; }
.eyebrow-light { color: #b8c9c0; }
.hero h1, .section h2, .location-card h2, .cta-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .97;
  margin: 0;
}
.hero h1 { font-size: clamp(52px, 6vw, 86px); max-width: 780px; }
.hero h1 em { font-style: italic; color: var(--forest); }
.hero-lead { max-width: 650px; font-size: 18px; color: var(--ink-soft); margin: 30px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 20px; border-radius: 999px; font-size: 14px; font-weight: 750; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 17px; fill: currentColor; }
.button-primary { background: var(--forest); color: #fff; box-shadow: 0 10px 30px rgba(23,61,54,.18); }
.button-primary:hover { background: #0f332d; }
.button-ghost { border: 1px solid var(--line); background: rgba(255,255,255,.35); }
.button-light { background: var(--paper); color: var(--forest); }
.hero-meta { margin-top: 46px; padding-top: 24px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 600px; }
.hero-meta div { display: flex; flex-direction: column; }
.hero-meta strong { font-size: 13px; }
.hero-meta span { color: var(--ink-soft); font-size: 12px; margin-top: 3px; }

.hero-visual { position: relative; min-height: 570px; display: grid; place-items: center; }
.visual-card { width: min(100%, 480px); aspect-ratio: .82; border: 1px solid rgba(23,61,54,.15); border-radius: 38px; background: rgba(255,254,250,.68); backdrop-filter: blur(18px); box-shadow: var(--shadow); position: relative; overflow: hidden; }
.visual-card::before { content:""; position:absolute; width:280px; height:280px; border-radius:50%; background:radial-gradient(circle,#d7e4da 0%,rgba(215,228,218,0) 70%); top:100px; left:100px; }
.visual-topline { position: absolute; top: 26px; left: 28px; right: 28px; z-index: 2; display: flex; justify-content: space-between; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; color: #6d7a74; }
.status-dot { display: flex; align-items: center; gap: 6px; }
.status-dot::before { content:""; width:7px; height:7px; border-radius:50%; background:#6b9c83; box-shadow:0 0 0 5px rgba(107,156,131,.13); }
.body-line { position:absolute; width: 90%; left: 6%; top: 10%; }
.visual-caption { position:absolute; left:28px; right:28px; bottom:26px; padding-top:18px; border-top:1px solid var(--line); display:flex; gap:18px; align-items:flex-start; }
.caption-index { font-family: Georgia,serif; color: var(--forest); font-size: 28px; line-height:1; }
.visual-caption p { margin:0; color:var(--ink-soft); font-size:13px; line-height:1.45; }
.floating-pill { position:absolute; background:rgba(255,254,250,.85); backdrop-filter:blur(10px); border:1px solid rgba(23,61,54,.12); box-shadow:0 12px 34px rgba(35,55,47,.08); padding:10px 14px; border-radius:999px; font-size:11px; font-weight:750; color:var(--forest); }
.floating-pill-a { left:-18px; top:35%; }
.floating-pill-b { right:-12px; bottom:25%; }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.22); }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-grid span { padding: 18px 18px; text-align:center; font-size:11px; font-weight:750; color:#58665f; border-right:1px solid var(--line); }
.trust-grid span:last-child { border-right:0; }

.section { padding: 120px 0; }
.section-head { display:grid; grid-template-columns: 1.2fr .8fr; gap:70px; align-items:end; margin-bottom:54px; }
.section h2, .location-card h2 { font-size: clamp(42px,5vw,68px); }
.section-head > p { margin:0; color:var(--ink-soft); font-size:16px; max-width:490px; }
.service-grid { display:grid; grid-template-columns:repeat(2,1fr); border-top:1px solid var(--line); border-left:1px solid var(--line); }
.service-card { position:relative; padding:36px; min-height:310px; background:rgba(255,255,255,.18); border-right:1px solid var(--line); border-bottom:1px solid var(--line); overflow:hidden; transition:background .25s ease; }
.service-card:hover { background:rgba(255,255,255,.5); }
.service-number { position:absolute; top:26px; right:28px; font-family:Georgia,serif; color:#9caaa3; font-size:14px; }
.service-icon { width:56px; height:56px; border-radius:18px; background:var(--sage-light); display:grid; place-items:center; margin-bottom:44px; }
.service-icon svg { width:30px; fill:none; stroke:var(--forest); stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.service-card h3 { margin:0 0 13px; font-size:21px; letter-spacing:-.025em; }
.service-card p { margin:0; color:var(--ink-soft); max-width:480px; font-size:14px; }

.section-dark { position:relative; background:var(--forest); color:#f8f5ef; overflow:hidden; }
.section-dark::after { content:""; position:absolute; width:600px; height:600px; border:1px solid rgba(255,255,255,.07); border-radius:50%; right:-200px; bottom:-260px; box-shadow:0 0 0 100px rgba(255,255,255,.02),0 0 0 200px rgba(255,255,255,.015); }
.philosophy-grid { position:relative; z-index:1; display:grid; grid-template-columns:1fr 1fr; gap:110px; align-items:start; }
.philosophy-copy h2 { font-size:clamp(44px,5vw,70px); }
.lead-light { color:#c8d5ce; font-size:17px; max-width:590px; margin:28px 0 40px; }
.quote-card { margin-top:50px; border-top:1px solid rgba(255,255,255,.16); padding-top:28px; }
.quote-card p { font-family:Georgia,serif; font-style:italic; font-size:22px; line-height:1.45; margin:0 0 14px; color:#eef3ef; }
.quote-card span { font-size:11px; color:#9bb0a5; text-transform:uppercase; letter-spacing:.1em; }
.principles { border-top:1px solid rgba(255,255,255,.15); }
.principle { display:grid; grid-template-columns:56px 1fr; gap:20px; padding:30px 0; border-bottom:1px solid rgba(255,255,255,.15); }
.principle > span { font-family:Georgia,serif; font-size:14px; color:#95ad9f; }
.principle h3 { margin:0 0 7px; font-size:19px; }
.principle p { margin:0; color:#adbbb4; font-size:14px; }

.visit-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:100px; align-items:start; }
.visit-copy > p:not(.eyebrow) { color:var(--ink-soft); max-width:480px; margin:26px 0; }
.text-link { display:inline-flex; gap:12px; align-items:center; font-weight:800; color:var(--forest); border-bottom:1px solid var(--forest); padding-bottom:4px; }
.hours-card { background:var(--white); border-radius:var(--radius); padding:34px 38px 26px; border:1px solid var(--line); box-shadow:var(--shadow); }
.hours-head { display:flex; justify-content:space-between; gap:20px; align-items:center; border-bottom:1px solid var(--line); padding-bottom:20px; }
.hours-head h3 { margin:0; font-size:20px; }
.hours-head span { font-size:10px; text-transform:uppercase; letter-spacing:.09em; color:#819089; }
.hours-list { margin:0; }
.hours-list > div { display:grid; grid-template-columns:1fr 1fr; gap:30px; padding:16px 0; border-bottom:1px solid var(--line); }
.hours-list dt { color:#5d6b64; }
.hours-list dd { margin:0; font-weight:750; text-align:right; }
.hours-note { margin:18px 0 0; color:#77847e; font-size:11px; }

.location-section { padding:0 0 120px; }
.location-grid { display:grid; grid-template-columns:.92fr 1.08fr; background:#e6ebe6; border-radius:36px; overflow:hidden; min-height:560px; }
.location-card { padding:66px; display:flex; flex-direction:column; align-items:flex-start; justify-content:center; }
.location-card address { font-style:normal; color:var(--ink-soft); margin:26px 0; line-height:1.8; }
.contact-lines { width:100%; margin:0 0 28px; border-top:1px solid rgba(23,61,54,.12); }
.contact-lines > * { padding:14px 0; border-bottom:1px solid rgba(23,61,54,.12); display:flex; justify-content:space-between; gap:20px; }
.contact-lines span { color:#6f7b75; font-size:12px; }
.contact-lines strong { font-size:13px; }
.map-art { position:relative; background:#d6ded6; min-height:560px; overflow:hidden; }
.map-art::before { content:""; position:absolute; inset:0; background:radial-gradient(circle at 50% 45%,rgba(255,255,255,.55),transparent 45%); }
.map-art svg { width:100%; height:100%; position:absolute; inset:0; }
.map-art path { fill:none; stroke:rgba(23,61,54,.18); stroke-width:8; stroke-linecap:round; }
.map-ring { fill:rgba(23,61,54,.08); stroke:rgba(23,61,54,.2); stroke-width:2; }
.map-dot { fill:var(--forest); }
.map-label { position:absolute; left:50%; top:60%; transform:translate(-50%,-50%); background:rgba(255,254,250,.9); backdrop-filter:blur(10px); padding:12px 15px; border-radius:12px; box-shadow:0 12px 30px rgba(23,61,54,.12); display:flex; flex-direction:column; min-width:190px; }
.map-label strong { font-size:12px; }
.map-label span { color:#6f7b75; font-size:10px; }

.cta-section { padding:0 0 100px; }
.cta-card { background:var(--forest); color:#fff; border-radius:36px; padding:58px 64px; display:flex; justify-content:space-between; gap:40px; align-items:end; box-shadow:0 30px 70px rgba(23,61,54,.16); }
.cta-card h2 { font-size:clamp(38px,4.2vw,58px); }

.site-footer { padding:0 0 34px; }
.footer-grid { border-top:1px solid var(--line); padding:48px 0 38px; display:grid; grid-template-columns:1fr 1fr; gap:60px; }
.brand-footer .brand-mark { width:38px; height:38px; }
.footer-note { color:var(--ink-soft); font-size:12px; max-width:520px; margin:20px 0 0; }
.footer-links { display:grid; grid-template-columns:1fr 1fr; gap:14px 30px; align-content:start; justify-self:end; min-width:280px; }
.footer-links a { font-size:13px; font-weight:650; }
.footer-bottom { border-top:1px solid var(--line); padding-top:20px; display:flex; justify-content:space-between; gap:20px; color:#7c8882; font-size:10px; text-transform:uppercase; letter-spacing:.08em; }

.reveal { opacity:0; transform:translateY(18px); transition:opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity:1; transform:none; }

@media (max-width: 980px) {
  .hero-grid, .philosophy-grid, .visit-grid { grid-template-columns:1fr; }
  .hero-grid { gap:40px; }
  .hero { padding-top:68px; }
  .hero-visual { min-height:500px; }
  .visual-card { max-width:440px; }
  .trust-grid { grid-template-columns:1fr 1fr; }
  .trust-grid span:nth-child(2) { border-right:0; }
  .trust-grid span:nth-child(-n+2) { border-bottom:1px solid var(--line); }
  .section-head { grid-template-columns:1fr; gap:24px; }
  .philosophy-grid, .visit-grid { gap:60px; }
  .location-grid { grid-template-columns:1fr; }
  .map-art { min-height:420px; }
  .cta-card { align-items:flex-start; flex-direction:column; }
}

@media (max-width: 760px) {
  .shell { width:min(100% - 30px,1180px); }
  .nav-wrap { min-height:72px; }
  .menu-toggle { display:block; }
  .site-nav { position:fixed; left:15px; right:15px; top:80px; background:rgba(255,254,250,.97); backdrop-filter:blur(18px); border:1px solid var(--line); border-radius:20px; box-shadow:var(--shadow); padding:18px; flex-direction:column; align-items:stretch; gap:4px; opacity:0; pointer-events:none; transform:translateY(-10px); transition:.25s ease; }
  .site-nav a { padding:12px 10px; }
  .site-nav .nav-cta { text-align:center; margin-top:8px; }
  .menu-open .site-nav { opacity:1; pointer-events:auto; transform:none; }
  .menu-open .menu-toggle span:nth-child(1) { transform:translateY(6.5px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(2) { opacity:0; }
  .menu-open .menu-toggle span:nth-child(3) { transform:translateY(-6.5px) rotate(-45deg); }
  .brand-copy small { display:none; }
  .hero { min-height:0; padding:54px 0 70px; }
  .hero h1 { font-size:50px; }
  .hero-lead { font-size:16px; }
  .hero-actions { flex-direction:column; align-items:stretch; }
  .hero-meta { grid-template-columns:1fr; }
  .hero-visual { min-height:430px; }
  .visual-card { width:92%; }
  .floating-pill-a { left:0; }
  .floating-pill-b { right:0; }
  .trust-grid { grid-template-columns:1fr; }
  .trust-grid span { border-right:0; border-bottom:1px solid var(--line); }
  .trust-grid span:last-child { border-bottom:0; }
  .section { padding:86px 0; }
  .service-grid { grid-template-columns:1fr; }
  .service-card { min-height:275px; padding:30px; }
  .section h2, .location-card h2 { font-size:46px; }
  .philosophy-grid { gap:50px; }
  .quote-card p { font-size:19px; }
  .visit-grid { gap:44px; }
  .hours-card { padding:26px 24px 20px; }
  .hours-head { align-items:flex-start; flex-direction:column; gap:4px; }
  .location-section { padding-bottom:80px; }
  .location-grid { border-radius:28px; }
  .location-card { padding:42px 26px; }
  .map-art { min-height:340px; }
  .cta-section { padding-bottom:74px; }
  .cta-card { padding:42px 28px; border-radius:28px; }
  .footer-grid { grid-template-columns:1fr; gap:34px; }
  .footer-links { justify-self:start; min-width:0; }
  .footer-bottom { flex-direction:column; }
}

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