:root {
  --bg: #f6f3ec;
  --bg-2: #eee9de;
  --bg-3: #e4ded0;
  --sage: #9fb0a4;
  --sage-deep: #5c7263;
  --sage-ink: #3f5246;
  --ink: #23282b;
  --ink-soft: #5b6266;
  --ink-mute: #8a9094;
  --line: #ddd6c8;
  --white: #fffdf9;
  --serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --sans: "Manrope", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --max: 1160px;
  --gutter: clamp(20px, 5vw, 48px);
  --radius: 6px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sage-ink); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.15; margin: 0 0 .5em; color: var(--ink); }
h1 { font-size: clamp(38px, 6vw, 64px); letter-spacing: -.01em; }
h2 { font-size: clamp(30px, 4.2vw, 44px); }
h3 { font-size: clamp(22px, 2.6vw, 27px); }
p { margin: 0 0 1em; }
ul { margin: 0 0 1em; padding-left: 1.2em; }
li { margin-bottom: .35em; }
.lead { font-size: clamp(18px, 2.2vw, 21px); color: var(--ink-soft); max-width: 40em; }
.eyebrow { font-family: var(--sans); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--sage-deep); margin-bottom: 14px; }
.muted { color: var(--ink-soft); }
.small { font-size: 15px; }

.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.section { padding: clamp(56px, 9vw, 112px) 0; }
.section--tint { background: var(--bg-2); }
.section--deep { background: var(--sage-ink); color: var(--bg); }
.section--deep h2, .section--deep h3 { color: var(--white); }
.section--deep a { color: var(--white); }
.section-head { max-width: 46em; margin-bottom: clamp(28px, 4vw, 48px); }

/* header */
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(246, 243, 236, .92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 68px; }
.brand { display: flex; flex-direction: column; text-decoration: none; color: var(--ink); line-height: 1; }
.brand__name { font-family: var(--serif); font-size: 24px; letter-spacing: .22em; font-weight: 500; }
.brand__sub { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); margin-top: 5px; }
.nav { display: none; gap: 28px; align-items: center; }
.nav a { font-size: 15px; text-decoration: none; color: var(--ink-soft); }
.nav a[aria-current="page"], .nav a:hover { color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.phone { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; color: var(--ink); font-weight: 600; font-size: 15px; white-space: nowrap; }
.phone svg { width: 18px; height: 18px; }
.phone__num { display: none; }
.menu-toggle { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; padding: 0 8px; background: none; border: 1px solid var(--line); border-radius: var(--radius); cursor: pointer; }
.menu-toggle span { display: block; height: 1.5px; background: var(--ink); }
.mobile-nav { display: none; border-top: 1px solid var(--line); background: var(--bg); }
.mobile-nav.is-open { display: block; }
.mobile-nav a { display: block; padding: 14px var(--gutter); text-decoration: none; color: var(--ink); border-bottom: 1px solid var(--line); font-size: 17px; }
@media (min-width: 900px) {
  .nav { display: flex; }
  .menu-toggle, .mobile-nav { display: none !important; }
  .phone__num { display: inline; }
}

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 24px; border-radius: var(--radius); font-weight: 600; font-size: 15px; text-decoration: none; border: 1px solid transparent; cursor: pointer; line-height: 1.2; transition: background .15s, color .15s, border-color .15s; }
.btn--primary { background: var(--sage-deep); color: var(--white); }
.btn--primary:hover { background: var(--sage-ink); color: var(--white); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--white); }
.btn--light { background: var(--white); color: var(--ink); }
.btn--light:hover { background: var(--bg-2); color: var(--ink); }
.btn svg { width: 18px; height: 18px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* hero */
.hero { padding: clamp(40px, 7vw, 96px) 0 0; overflow: hidden; }
.hero__grid { display: grid; gap: clamp(28px, 5vw, 64px); align-items: center; }
.hero__text { max-width: 36em; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 8px 22px; margin: 22px 0 28px; color: var(--ink-soft); font-size: 15px; }
.hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta svg { width: 16px; height: 16px; color: var(--sage-deep); }
.hero__media { border-radius: var(--radius); overflow: hidden; box-shadow: 0 30px 60px -40px rgba(35, 40, 43, .5); }
.hero__media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
@media (min-width: 900px) {
  .hero { padding-bottom: clamp(40px, 7vw, 96px); }
  .hero__grid { grid-template-columns: 1fr 1.05fr; }
}

/* grids & cards */
.grid { display: grid; gap: 20px; }
@media (min-width: 640px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } .grid--4 { grid-template-columns: repeat(4, 1fr); } }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 26px 22px; }
.card h3 { margin-bottom: 10px; }
.card ul { padding-left: 1.1em; margin-bottom: 0; color: var(--ink-soft); }
.card--photo { padding: 0; overflow: hidden; }
.card--photo img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.card--photo .card__body { padding: 22px 24px 24px; }
.card__meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: 14px; color: var(--ink-soft); margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); }
.card__meta strong { color: var(--ink); }

/* steps */
.steps { counter-reset: step; display: grid; gap: 18px; list-style: none; padding: 0; margin: 0; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(5, 1fr); } }
.step { position: relative; padding-top: 14px; }
.step::before { counter-increment: step; content: "0" counter(step); font-family: var(--serif); font-size: 30px; color: var(--sage); display: block; margin-bottom: 8px; line-height: 1; }
.step h3 { font-size: 20px; }
.step p { color: var(--ink-soft); font-size: 15px; margin: 0; }
.facts { display: grid; gap: 18px; margin-top: clamp(28px, 4vw, 48px); padding-top: clamp(28px, 4vw, 40px); border-top: 1px solid var(--line); }
@media (min-width: 640px) { .facts { grid-template-columns: repeat(3, 1fr); } }
.fact strong { display: block; font-family: var(--serif); font-size: 30px; font-weight: 500; line-height: 1.1; }
.fact span { color: var(--ink-soft); font-size: 15px; }

/* accordion */
.acc { border-top: 1px solid var(--line); }
.acc details { border-bottom: 1px solid var(--line); }
.acc summary { list-style: none; cursor: pointer; padding: 18px 40px 18px 0; position: relative; font-family: var(--serif); font-size: 22px; font-weight: 500; }
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after { content: ""; position: absolute; right: 6px; top: 50%; width: 10px; height: 10px; border-right: 1.5px solid var(--sage-deep); border-bottom: 1.5px solid var(--sage-deep); transform: translateY(-70%) rotate(45deg); transition: transform .2s; }
.acc details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.acc .acc__body { padding: 0 0 20px; color: var(--ink-soft); max-width: 46em; }
.acc .acc__body p:last-child { margin-bottom: 0; }

/* two-column split */
.split { display: grid; gap: clamp(28px, 5vw, 64px); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } .split--media-right .split__media { order: 2; } }
.split__media img { border-radius: var(--radius); width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.check { list-style: none; padding: 0; }
.check li { padding-left: 26px; position: relative; }
.check li::before { content: ""; position: absolute; left: 0; top: .55em; width: 12px; height: 7px; border-left: 1.5px solid var(--sage-deep); border-bottom: 1.5px solid var(--sage-deep); transform: rotate(-45deg); }

/* red flags */
.flags { display: grid; gap: 16px; }
@media (min-width: 640px) { .flags { grid-template-columns: repeat(2, 1fr); } }
.flag { border-left: 2px solid var(--sage); padding-left: 18px; }
.flag h3 { font-size: 20px; margin-bottom: 6px; }
.flag p { margin: 0; color: var(--ink-soft); font-size: 15px; }

/* testimonials */
.quotes { display: grid; gap: 18px; }
@media (min-width: 900px) { .quotes { grid-template-columns: repeat(2, 1fr); } }
.quote { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.quote p { font-family: var(--serif); font-size: 21px; line-height: 1.4; margin-bottom: 14px; }
.quote footer { font-size: 14px; color: var(--ink-soft); }

/* contact form */
.form { display: grid; gap: 14px; max-width: 420px; }
.form label { display: grid; gap: 6px; font-size: 14px; color: var(--ink-soft); }
.form input { font: inherit; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); color: var(--ink); }
.form input:focus { outline: 2px solid var(--sage); outline-offset: 1px; }
.hp { position: absolute; left: -9999px; }
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.contact-list li { display: grid; gap: 2px; }
.contact-list .k { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); }
.contact-list a { font-size: 19px; text-decoration: none; }

/* footer */
.site-footer { border-top: 1px solid var(--line); padding: 40px 0 28px; color: var(--ink-soft); font-size: 14px; }
.site-footer .wrap { display: grid; gap: 20px; }
@media (min-width: 900px) { .site-footer .wrap { grid-template-columns: 1fr auto; align-items: center; } }
.site-footer a { color: var(--ink-soft); }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 18px; }

/* utilities */
.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; }
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 30; display: flex; gap: 8px; padding: 10px var(--gutter); background: rgba(246, 243, 236, .96); border-top: 1px solid var(--line); backdrop-filter: blur(8px); }
.sticky-cta .btn { flex: 1; }
@media (min-width: 900px) { .sticky-cta { display: none; } }
body.has-sticky { padding-bottom: 72px; }
@media (min-width: 900px) { body.has-sticky { padding-bottom: 0; } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .btn, .acc summary::after { transition: none; } }
