:root {
  --ink: #1d2421;
  --muted: #5f6863;
  --paper: #f5f0e7;
  --cream: #fbf8f2;
  --green: #173a35;
  --green-soft: #dbe6df;
  --accent: #dc8f67;
  --line: rgba(29, 36, 33, 0.16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1240px;
  --shadow: 0 24px 70px rgba(31, 43, 38, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: clip; color: var(--ink); background: var(--cream); font-family: var(--sans); line-height: 1.6; }
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }

.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; }
.skip-link { position: fixed; z-index: 100; left: 1rem; top: 1rem; transform: translateY(-200%); padding: 0.75rem 1rem; background: white; border-radius: 0.25rem; }
.skip-link:focus { transform: none; }

.utility-bar { min-height: 38px; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 0.45rem max(4vw, calc((100vw - var(--max)) / 2)); color: #fff; background: var(--green); font-size: 0.73rem; letter-spacing: 0.1em; text-transform: uppercase; }
.utility-bar p { margin: 0; }
.utility-bar a { text-decoration: none; font-weight: 700; }
.utility-bar a span { color: var(--accent); }

.site-header { position: sticky; z-index: 50; top: 0; min-height: 82px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 2.25rem; padding: 0.8rem max(4vw, calc((100vw - var(--max)) / 2)); background: rgba(251, 248, 242, 0.92); border-bottom: 1px solid transparent; backdrop-filter: blur(14px); transition: border-color 180ms ease, box-shadow 180ms ease; }
.site-header.scrolled { border-color: var(--line); box-shadow: 0 12px 30px rgba(20, 37, 31, 0.06); }
.brand { display: inline-flex; align-items: center; gap: 0.75rem; color: var(--ink); text-decoration: none; }
.brand-mark { display: grid; place-items: center; width: 42px; height: 42px; color: #fff; background: var(--green); border-radius: 50% 44% 50% 42%; font: 700 0.78rem/1 var(--serif); letter-spacing: 0.06em; transform: rotate(-5deg); }
.brand-mark::first-line { transform: rotate(5deg); }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font: 700 1.2rem/1 var(--serif); }
.brand-copy small { margin-top: 0.3rem; color: var(--muted); font-size: 0.61rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; }
.site-nav { justify-self: end; display: flex; gap: clamp(1rem, 2.4vw, 2.2rem); }
.site-nav a { position: relative; padding: 0.5rem 0; color: #39443f; font-size: 0.84rem; font-weight: 650; text-decoration: none; }
.site-nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: var(--green); transform: scaleX(0); transform-origin: right; transition: transform 180ms ease; }
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-toggle { display: none; border: 0; background: transparent; }

.button { display: inline-flex; justify-content: center; align-items: center; min-height: 52px; padding: 0.9rem 1.45rem; color: #fff; background: var(--green); border: 1px solid var(--green); border-radius: 999px; font-size: 0.82rem; font-weight: 800; letter-spacing: 0.04em; text-decoration: none; transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(23, 58, 53, 0.18); }
.button-small { min-height: 44px; padding: 0.65rem 1.1rem; }
.button-light { color: var(--green); background: #fff; border-color: #fff; }
.button-accent { color: var(--ink); background: var(--accent); border-color: var(--accent); }
.text-link { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.55rem 0; font-size: 0.82rem; font-weight: 800; text-underline-offset: 0.35rem; }

.section-pad { padding: clamp(5.5rem, 10vw, 9rem) max(4vw, calc((100vw - var(--max)) / 2)); }
.eyebrow { margin: 0 0 1.1rem; color: var(--green); font-size: 0.7rem; font-weight: 850; letter-spacing: 0.18em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.045em; }
h1 { max-width: 790px; margin-bottom: 1.65rem; font-size: clamp(3.7rem, 7.3vw, 7.2rem); line-height: 0.92; }
h2 { margin-bottom: 1.2rem; font-size: clamp(2.75rem, 5vw, 5rem); line-height: 0.98; }
h3 { font-family: var(--serif); font-size: 1.7rem; line-height: 1.1; }

.hero { min-height: calc(100svh - 120px); display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.62fr); align-items: center; gap: clamp(3rem, 8vw, 8rem); background: radial-gradient(circle at 75% 28%, rgba(220, 143, 103, 0.16), transparent 29%), var(--paper); overflow: hidden; }
.hero-copy { position: relative; z-index: 1; min-width: 0; }
.hero-lede { max-width: 650px; margin-bottom: 2rem; color: #46514c; font-size: clamp(1.05rem, 1.7vw, 1.32rem); line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 1.5rem; }
.hero-note { margin: 1.15rem 0 0; color: var(--muted); font-size: 0.78rem; }
.hero-media { position: relative; min-height: 620px; }
.hero-media::before { content: ""; position: absolute; inset: 3rem -12rem -4rem 8rem; background: var(--green-soft); border-radius: 52% 48% 44% 56%; transform: rotate(8deg); }
.hero-image-wrap { position: absolute; inset: 0 1.5rem 1rem 0; overflow: hidden; border-radius: 46% 46% 1rem 1rem; box-shadow: var(--shadow); }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-card { position: absolute; z-index: 1; left: -5rem; bottom: 2.5rem; display: flex; align-items: center; gap: 0.9rem; max-width: 290px; padding: 1rem 1.2rem; background: #fff; border-radius: 0.75rem; box-shadow: var(--shadow); }
.hero-card p { margin: 0; color: var(--muted); font-size: 0.76rem; line-height: 1.45; }
.hero-card strong { color: var(--ink); font-size: 0.84rem; }
.hero-card-icon { display: grid; flex: 0 0 auto; place-items: center; width: 42px; height: 42px; color: var(--green); background: var(--green-soft); border-radius: 50%; }

.proof-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--cream); }
.proof-strip div { min-height: 134px; display: flex; align-items: center; gap: 1.2rem; padding: 1.8rem clamp(1.2rem, 3vw, 2.8rem); border-right: 1px solid var(--line); }
.proof-strip div:last-child { border-right: 0; }
.proof-strip strong { color: var(--accent); font: 500 1.35rem/1 var(--serif); }
.proof-strip span { font-size: 0.8rem; font-weight: 700; line-height: 1.45; }

.results { background: var(--cream); }
.section-heading { display: grid; grid-template-columns: 1.2fr 0.65fr; align-items: end; gap: 4rem; margin-bottom: clamp(3rem, 6vw, 5.5rem); }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 500px; margin: 0; color: var(--muted); }
.results-grid { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 1rem; }
.result-card { position: relative; min-height: 390px; margin: 0; overflow: hidden; background: #e2ddd4; }
.result-card-wide { grid-row: span 2; min-height: 790px; }
.result-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.result-card:hover img { transform: scale(1.025); }
.result-card figcaption { position: absolute; inset: auto 1rem 1rem; display: flex; justify-content: space-between; gap: 1rem; align-items: center; padding: 0.9rem 1rem; color: #fff; background: rgba(23, 58, 53, 0.88); backdrop-filter: blur(8px); }
.result-card figcaption span { font-size: 0.65rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.result-card figcaption strong { font: 500 1rem/1.2 var(--serif); }
.inline-cta { display: flex; justify-content: space-between; align-items: center; gap: 2rem; margin-top: 1rem; padding: 1.5rem 1.6rem 1.5rem 2rem; color: #fff; background: var(--green); }
.inline-cta p { max-width: 760px; margin: 0; }

.services { background: var(--paper); }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.service-card { min-height: 380px; display: grid; grid-template-rows: auto 1fr auto; padding: clamp(1.7rem, 4vw, 3rem); background: var(--cream); border: 1px solid var(--line); }
.service-card:has(.service-image) { grid-template-rows: 220px auto 1fr auto; }
.service-image { width: calc(100% + clamp(3.4rem, 8vw, 6rem)); height: 220px; margin: calc(-1 * clamp(1.7rem, 4vw, 3rem)) calc(-1 * clamp(1.7rem, 4vw, 3rem)) 1.7rem; object-fit: cover; }
.service-number { color: var(--accent); font: 500 1.3rem/1 var(--serif); }
.service-card h3 { margin-bottom: 1rem; font-size: clamp(2rem, 3vw, 3rem); }
.service-card p { max-width: 500px; color: var(--muted); }
.service-card footer { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-top: 1.5rem; border-top: 1px solid var(--line); font-size: 0.75rem; font-weight: 750; }
.service-card footer a { text-underline-offset: 0.3rem; }
.service-card-photo { position: relative; min-height: 620px; padding: 0; overflow: hidden; border: 0; }
.service-card-photo:has(.service-image) { grid-template-rows: auto; }
.service-card-photo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.service-photo-copy { z-index: 1; align-self: end; padding: 2.3rem; color: #fff; background: linear-gradient(transparent, rgba(15, 34, 31, 0.96) 32%); }
.service-photo-copy p { color: rgba(255, 255, 255, 0.78); }
.service-photo-copy footer { border-color: rgba(255, 255, 255, 0.26); }
.service-card-dark { min-height: 620px; color: #fff; background: var(--green); border-color: var(--green); }
.service-card-dark p { color: rgba(255, 255, 255, 0.74); }
.service-card-dark footer { border-color: rgba(255, 255, 255, 0.25); }
.price-list { margin: 2rem 0 0; padding: 0; list-style: none; }
.price-list li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.75rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.18); font-size: 0.82rem; }
.pricing-note { max-width: 740px; margin: 2rem 0 0; color: var(--muted); font-size: 0.78rem; }

.difference { display: grid; grid-template-columns: 0.82fr 1fr; align-items: center; gap: clamp(3rem, 9vw, 9rem); background: var(--cream); }
.difference-media { position: relative; padding: 0 0 4rem 3rem; }
.difference-media::before { content: ""; position: absolute; inset: 4rem 3rem 0 0; background: var(--green-soft); }
.difference-media img { position: relative; width: 100%; max-height: 720px; object-fit: cover; box-shadow: var(--shadow); }
.image-note { position: absolute; right: -1.5rem; bottom: 1rem; max-width: 235px; padding: 1.25rem 1.4rem; color: #fff; background: var(--green); font: 500 1.2rem/1.3 var(--serif); }
.difference-lede { max-width: 650px; margin-bottom: 3rem; color: var(--muted); font-size: 1.08rem; }
.principles article { display: grid; grid-template-columns: 42px 1fr; gap: 1.3rem; padding: 1.4rem 0; border-top: 1px solid var(--line); }
.principles article > span { color: var(--accent); font: 500 1.15rem/1.2 var(--serif); }
.principles h3 { margin-bottom: 0.45rem; font: 700 1.05rem/1.3 var(--sans); }
.principles p { margin: 0; color: var(--muted); font-size: 0.86rem; }

.team-note { display: grid; grid-template-columns: 1fr minmax(280px, 0.48fr); align-items: center; gap: clamp(3rem, 9vw, 9rem); background: var(--green-soft); }
.team-note-copy { max-width: 760px; }
.team-note-copy p:not(.eyebrow) { max-width: 680px; color: #4a5751; font-size: 1rem; }
.team-note-image { width: 100%; max-height: 590px; object-fit: cover; box-shadow: var(--shadow); }

.reviews { color: #fff; background: var(--green); }
.section-heading-light .eyebrow { color: var(--accent); }
.text-link-light { color: #fff; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.review-card { min-height: 320px; display: flex; flex-direction: column; margin: 0; padding: 2rem; background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.15); }
.stars { color: var(--accent); letter-spacing: 0.15em; }
.review-card blockquote { flex: 1; margin: 2.2rem 0; font: 500 clamp(1.35rem, 2vw, 1.8rem)/1.35 var(--serif); }
.review-card figcaption { font-size: 0.78rem; font-weight: 800; }
.review-card figcaption span { display: block; margin-top: 0.2rem; color: rgba(255, 255, 255, 0.55); font-weight: 500; }
.reviews-cta { display: flex; justify-content: space-between; align-items: center; gap: 2rem; margin-top: 4rem; padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.2); }
.reviews-cta p { display: grid; margin: 0; }
.reviews-cta span { color: var(--accent); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.reviews-cta strong { margin-top: 0.4rem; font: 500 1.5rem/1.2 var(--serif); }

.booking { background: var(--paper); }
.booking-intro { max-width: 760px; margin-bottom: 4rem; }
.booking-intro p:last-child { max-width: 650px; color: var(--muted); }
.booking-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.booking-card { min-height: 360px; display: flex; flex-direction: column; padding: 2rem; color: var(--ink); background: var(--cream); border: 1px solid var(--line); text-decoration: none; transition: transform 180ms ease, box-shadow 180ms ease; }
.booking-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.booking-card-primary { color: #fff; background: var(--green); border-color: var(--green); }
.booking-icon { display: grid; place-items: center; width: 44px; height: 44px; margin-bottom: auto; color: var(--green); background: var(--green-soft); border-radius: 50%; font: 500 1rem/1 var(--serif); }
.booking-card-primary .booking-icon { color: var(--green); background: var(--accent); }
.booking-card > strong { margin-top: 2rem; font: 500 2rem/1.1 var(--serif); }
.booking-card p { color: var(--muted); font-size: 0.86rem; }
.booking-card-primary p { color: rgba(255, 255, 255, 0.72); }
.booking-card b { margin-top: auto; font-size: 0.8rem; text-decoration: underline; text-underline-offset: 0.3rem; }

.visit { display: grid; grid-template-columns: 0.82fr 1fr; align-items: center; gap: clamp(3rem, 9vw, 9rem); background: var(--cream); }
.visit-map { position: relative; }
.visit-map img { width: 100%; max-height: 680px; object-fit: cover; }
.visit-map > a { position: absolute; right: 1rem; bottom: 1rem; padding: 0.85rem 1.1rem; color: #fff; background: var(--green); font-size: 0.78rem; font-weight: 800; text-decoration: none; }
.visit-copy address { margin: 2rem 0; font-style: normal; font-size: 1rem; }
.contact-list { margin: 2rem 0; border-top: 1px solid var(--line); }
.contact-list div { display: grid; grid-template-columns: 130px 1fr; padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
.contact-list dt { color: var(--muted); font-size: 0.74rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-list dd { margin: 0; font-size: 0.88rem; font-weight: 650; }
.visit-note { color: var(--muted); font-size: 0.8rem; }

.site-footer { display: grid; grid-template-columns: 1fr 1.1fr; gap: 2rem 4rem; align-items: end; padding: 4rem max(4vw, calc((100vw - var(--max)) / 2)); color: #fff; background: #102a26; }
.brand-footer { color: #fff; }
.brand-footer .brand-mark { color: var(--green); background: var(--accent); }
.brand-footer .brand-copy small { color: rgba(255, 255, 255, 0.58); }
.site-footer > p { max-width: 520px; margin: 0; color: rgba(255, 255, 255, 0.66); }
.site-footer nav { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 1.5rem; }
.site-footer nav a { font-size: 0.78rem; font-weight: 750; }
.site-footer > small { grid-column: 1 / -1; padding-top: 2rem; color: rgba(255, 255, 255, 0.45); border-top: 1px solid rgba(255, 255, 255, 0.15); }
.mobile-actions { display: none; }

.reveal { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: auto auto 1fr auto; }
  .site-nav { position: fixed; inset: 82px 0 auto; display: grid; gap: 0; padding: 1rem 4vw 2rem; background: var(--cream); border-bottom: 1px solid var(--line); transform: translateY(-140%); transition: transform 220ms ease; }
  .site-nav.open { transform: none; }
  .site-nav a { padding: 0.95rem 0; border-bottom: 1px solid var(--line); }
  .nav-toggle { justify-self: end; display: grid; gap: 4px; width: 38px; height: 38px; place-content: center; cursor: pointer; }
  .nav-toggle span:not(.sr-only) { width: 20px; height: 2px; background: var(--ink); }
  .hero { grid-template-columns: 1fr 0.7fr; gap: 4rem; }
  .hero-media { min-height: 540px; }
  .hero-card { left: -3rem; }
  .proof-strip { grid-template-columns: repeat(2, 1fr); }
  .proof-strip div:nth-child(2) { border-right: 0; }
  .proof-strip div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .result-card-wide { grid-column: 1 / -1; grid-row: auto; min-height: 600px; }
}

@media (max-width: 760px) {
  body { padding-bottom: 68px; }
  .utility-bar { justify-content: center; min-height: 34px; font-size: 0.64rem; }
  .utility-bar p { display: none; }
  .site-header { min-height: 72px; grid-template-columns: 1fr auto; gap: 0.5rem; padding-block: 0.65rem; }
  .site-nav { inset: 72px 0 auto; }
  .header-cta { display: none; }
  .brand-mark { width: 38px; height: 38px; }
  .section-pad { padding-block: 5.4rem; }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 3.2rem; padding-top: 4.6rem; }
  h1 { font-size: clamp(2.85rem, 11vw, 4rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 0.7rem; }
  .hero-media { min-height: 520px; }
  .hero-image-wrap { right: 0; }
  .hero-card { left: 1rem; right: 1rem; bottom: -1rem; max-width: none; }
  .proof-strip { grid-template-columns: 1fr; }
  .proof-strip div { min-height: 100px; border-right: 0; border-bottom: 1px solid var(--line); }
  .section-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .results-grid { grid-template-columns: 1fr; }
  .result-card, .result-card-wide { grid-column: auto; min-height: 430px; }
  .inline-cta, .reviews-cta { align-items: flex-start; flex-direction: column; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 350px; }
  .service-card-photo, .service-card-dark { min-height: 580px; }
  .difference, .visit { grid-template-columns: 1fr; }
  .difference-media { padding: 0 1.5rem 3rem 0; }
  .image-note { right: 0; }
  .team-note { grid-template-columns: 1fr; }
  .team-note-image { max-height: 500px; }
  .review-grid, .booking-options { grid-template-columns: 1fr; }
  .review-card { min-height: 280px; }
  .booking-card { min-height: 320px; }
  .site-footer { grid-template-columns: 1fr; padding-bottom: 3rem; }
  .site-footer nav { justify-content: flex-start; }
  .mobile-actions { position: fixed; z-index: 70; inset: auto 0 0; display: grid; grid-template-columns: 0.8fr 1.2fr; min-height: 68px; padding: 0.55rem; background: rgba(251, 248, 242, 0.96); border-top: 1px solid var(--line); backdrop-filter: blur(12px); }
  .mobile-actions a { display: grid; place-items: center; font-size: 0.76rem; font-weight: 850; text-decoration: none; text-transform: uppercase; letter-spacing: 0.08em; }
  .mobile-actions a:last-child { color: #fff; background: var(--green); border-radius: 999px; }
}

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