:root {
  --green: #175b4b;
  --green-dark: #0d3f34;
  --green-pale: #e9f0ed;
  --ink: #17201d;
  --muted: #5e6965;
  --line: #dce3df;
  --soft: #f6f8f7;
  --white: #ffffff;
  --serif: "Libre Caslon Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --shell: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: var(--sans); font-size: 16px; line-height: 1.65; }
img { max-width: 100%; display: block; }
a { color: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.skip-link { position: fixed; left: 12px; top: -60px; z-index: 100; background: var(--green); color: white; padding: 10px 16px; }
.skip-link:focus { top: 12px; }
.svg-filters { position: absolute; overflow: hidden; pointer-events: none; }

.site-header { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(23,91,75,.12); backdrop-filter: blur(14px); }
.nav-wrap { min-height: 86px; display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; line-height: 1.1; min-width: 220px; }
.brand-mark {
  width: 54px;
  height: 54px;
  object-fit: cover;
  object-position: center;
  clip-path: circle(48% at 50% 50%);
  border-radius: 50%;
  flex: 0 0 auto;
}
.brand-copy { display: flex; flex-direction: column; }
.brand-name { color: var(--green); font-family: var(--serif); font-size: 25px; letter-spacing: .01em; }
.brand-role { color: var(--muted); margin-top: 6px; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 23px; margin-left: auto; }
.main-nav a { position: relative; text-decoration: none; font-size: 14px; font-weight: 600; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--green); transition: right .2s ease; }
.main-nav a:hover::after { right: 0; }
.menu-toggle { display: none; }
.mobile-sticky-cta { display: none; }
.back-to-top { display: none; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 24px; border: 1px solid var(--green); background: var(--green); color: var(--white); text-decoration: none; font-size: 14px; font-weight: 700; border-radius: 2px; transition: .2s ease; }
.button:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-1px); }
.button-small { min-height: 43px; padding-inline: 18px; white-space: nowrap; }
.button-outline { color: var(--green); background: transparent; }
.button-outline:hover { color: white; }
.button-outline-light { color: white; border-color: rgba(255,255,255,.6); background: transparent; }
.button-outline-light:hover { color: var(--green-dark); background: white; border-color: white; }
.text-link { color: var(--green); font-weight: 700; text-decoration: none; }
.text-link .link-label { text-decoration: underline; text-underline-offset: 5px; text-decoration-thickness: 1px; }
.text-link span { margin-left: 6px; }
.text-link .link-label { margin-left: 0; }

.hero { overflow: hidden; padding: 76px 0 84px; background: linear-gradient(90deg, var(--white) 0 62%, var(--soft) 62% 100%); }
.hero-grid { display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; gap: clamp(55px, 8vw, 110px); }
.eyebrow { margin: 0 0 17px; color: var(--green); font-size: 12px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
h1, h2 { margin: 0; font-family: var(--serif); font-weight: 400; line-height: 1.03; letter-spacing: -.025em; }
h1 { max-width: 750px; font-size: clamp(47px, 6vw, 78px); }
h1 em, h2 em { color: var(--green); font-style: italic; }
.hero-lead { max-width: 620px; margin: 28px 0 0; color: var(--muted); font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 27px; margin-top: 34px; }
.hero-visual { position: relative; width: min(100%, 390px); margin: 0 0 0 auto; }
.portrait-frame { overflow: hidden; aspect-ratio: .86; background: var(--green-pale); }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
.hero-visual figcaption { position: absolute; left: 14px; bottom: 14px; min-width: 0; padding: 10px 13px; color: var(--green-dark); background: rgba(255,255,255,.76); border: 1px solid rgba(255,255,255,.65); border-radius: 2px; box-shadow: 0 8px 24px rgba(13,63,52,.1); backdrop-filter: blur(8px); font-size: 11px; line-height: 1.35; }
.hero-visual figcaption strong { font-size: 12px; }

.section { padding: 90px 0; }
.section-soft { background: var(--soft); }
.section-heading { margin-bottom: 52px; }
.split-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 60px; }
.section-heading h2, .approach-intro h2, .profile-copy h2, .cabinet-copy h2, .final-cta h2 { font-size: clamp(40px, 5vw, 62px); }
.split-heading > p { max-width: 440px; margin: 0; color: var(--muted); }
.reason-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.reason-card { position: relative; min-height: 285px; overflow: hidden; padding: 32px; background: white; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .2s ease, transform .2s ease; }
.reason-card:hover { z-index: 1; background: #fbfcfb; transform: translateY(-3px); box-shadow: 0 18px 38px rgba(13,63,52,.08); }
.reason-visual { width: 82px; height: 82px; display: flex; align-items: center; justify-content: center; color: var(--green); }
.reason-visual img { width: 72px; height: 72px; object-fit: contain; filter: url(#thin-icon); }
.reason-visual img.raster-icon { filter: none; }
.reason-visual svg { width: 72px; height: 72px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.reason-card h3 { margin: 25px 0 14px; font-family: var(--serif); font-size: 28px; font-weight: 400; line-height: 1.1; }
.reason-card p { margin: 0; color: var(--muted); font-size: 14px; }
.reason-card p a { text-decoration-color: transparent; text-underline-offset: 4px; transition: .2s; }
.reason-card p a:hover { color: var(--green); text-decoration-color: var(--green); }

.approach-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(70px, 10vw, 140px); }
.approach-intro { position: sticky; top: 130px; align-self: start; }
.approach-intro > p:not(.eyebrow) { max-width: 470px; margin: 28px 0 24px; color: var(--muted); }
.approach-steps { margin: 0; border-top: 1px solid var(--line); }
.approach-steps article { padding: 32px 0; border-bottom: 1px solid var(--line); }
.approach-steps article:last-child { padding-bottom: 0; border-bottom: 0; }
.approach-steps h3 { margin: 0 0 8px; font-size: 18px; }
.approach-steps p { margin: 0; color: var(--muted); font-size: 15px; }

.home-pricing-section { background: var(--soft); }
.home-pricing-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(70px, 10vw, 140px); align-items: start; }
.home-pricing-intro h2 { font-size: clamp(40px, 5vw, 62px); }
.home-pricing-intro > p:not(.eyebrow) { max-width: 450px; margin: 26px 0 0; color: var(--muted); }
.home-pricing-details { border-top: 1px solid var(--line); }
.home-price-line { display: grid; grid-template-columns: .7fr 1.3fr; gap: 30px; padding: 27px 0; border-bottom: 1px solid var(--line); }
.home-price-line h3 { margin: 0; font-size: 18px; }
.home-price-line p { margin: 0; color: var(--muted); }
.home-price-line strong { color: var(--ink); }
.home-pricing-details .text-link { display: inline-block; margin-top: 26px; }

.profile-section { padding: 0; background: var(--green-pale); }
.profile-grid { width: 100%; max-width: none; display: grid; grid-template-columns: 1.05fr .95fr; }
.profile-photo { min-height: 660px; }
.profile-photo img { width: 100%; height: 100%; object-fit: cover; }
.profile-copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(60px, 8vw, 125px); }
.profile-copy p:not(.eyebrow) { max-width: 580px; margin: 24px 0 0; color: var(--muted); }
.profile-copy .button { margin-top: 32px; }

.reviews-section { overflow: hidden; }
.reviews-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; }
.reviews-heading h2 { max-width: 700px; }
.review-carousel { position: relative; }
.review-arrow { position: absolute; top: 50%; z-index: 2; width: 48px; height: 48px; display: grid; place-items: center; padding: 0; border: 1px solid rgba(23,91,75,.16); border-radius: 50%; background: rgba(255,255,255,.78); color: var(--green); box-shadow: 0 8px 24px rgba(13,63,52,.1); font-size: 20px; cursor: pointer; transform: translateY(-50%); backdrop-filter: blur(5px); transition: background .2s ease, opacity .2s ease; }
.review-arrow:hover { background: rgba(255,255,255,.96); }
.review-arrow-prev { left: -24px; }
.review-arrow-next { right: -24px; }
.review-track { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 48px) / 3); gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.review-track::-webkit-scrollbar { display: none; }
.review-card { min-height: 325px; display: flex; flex-direction: column; margin: 0; padding: 34px; background: var(--soft); scroll-snap-align: start; }
.stars { color: var(--green); letter-spacing: .13em; font-size: 13px; }
.review-card p { margin: 27px 0 32px; font-family: var(--serif); font-size: 20px; line-height: 1.5; }
.review-card p.is-collapsed { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 8; }
.review-expand { align-self: flex-start; margin: -14px 0 28px; padding: 0 0 4px; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: var(--green); font: inherit; font-size: 13px; font-weight: 700; cursor: pointer; }
.review-card footer { margin-top: auto; color: var(--green); font-weight: 700; }
.review-all { display: inline-block; margin-top: 30px; }

.cabinet-section { padding: 0; color: white; background: var(--green-dark); }
.cabinet-grid { width: 100%; max-width: none; display: grid; grid-template-columns: .8fr 1.2fr; }
.cabinet-copy { padding: clamp(70px, 8vw, 130px); }
.cabinet-copy .eyebrow, .cabinet-copy h2 em { color: #b8d0c8; }
.cabinet-copy p { max-width: 460px; color: rgba(255,255,255,.76); }
.cabinet-copy .address { color: white; font-size: 18px; margin: 30px 0 10px; }
.door-note { padding-left: 18px; border-left: 2px solid #b8d0c8; }
.cabinet-copy .button { margin-top: 25px; }
.cabinet-photo { position: relative; min-height: 680px; overflow: hidden; }
.cabinet-photo img { position: absolute; inset: -3px 0 0; display: block; width: 100%; height: calc(100% + 3px); object-fit: cover; object-position: center top; }

.final-cta { background: var(--green-pale); }
.final-cta-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 70px; }
.final-cta p:not(.eyebrow) { max-width: 720px; color: var(--muted); }
.final-actions { display: flex; flex-direction: column; align-items: center; gap: 15px; }
.contact-link { color: var(--green); font-weight: 700; }
.contact-phone { font-size: 21px; }

.site-footer { padding: 72px 0 24px; color: rgba(255,255,255,.76); background: #092e27; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 50px; }
.footer-brand { display: flex; flex-direction: column; }
.footer-brand .brand-name { color: white; line-height: 25px; }
.footer-brand .brand-role { color: #a9c6bc; }
.footer-brand p { margin-top: 25px; font-size: 14px; }
.footer-grid h2 { min-height: 25px; display: flex; align-items: flex-end; margin: 0 0 20px; color: white; font-family: var(--sans); font-size: 13px; font-weight: 700; line-height: 1; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-grid a { font-size: 14px; text-decoration: none; }
.footer-grid a:hover { color: white; text-decoration: underline; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 60px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: 12px; }

@media (max-width: 1050px) {
  .main-nav { gap: 14px; }
  .main-nav a { font-size: 12px; }
  .nav-cta { display: none; }
  .reason-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .back-to-top { display: inline-flex; align-items: center; justify-content: center; position: fixed; z-index: 91; right: 18px; bottom: max(82px, calc(env(safe-area-inset-bottom) + 70px)); width: 44px; height: 44px; padding: 0; border: 1px solid rgba(255,255,255,.62); border-radius: 50%; background: rgba(23,91,75,.88); box-shadow: 0 7px 20px rgba(10,55,44,.2); color: white; font-size: 23px; line-height: 1; cursor: pointer; opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(10px); transition: opacity .2s ease, visibility .2s ease, transform .2s ease; backdrop-filter: blur(6px); }
  .back-to-top.is-visible { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
  :root { --shell: min(100% - 32px, 620px); }
  .mobile-sticky-cta { display: inline-flex; align-items: center; justify-content: center; position: fixed; z-index: 90; left: 50%; bottom: max(18px, env(safe-area-inset-bottom)); min-height: 48px; padding: 0 22px; transform: translateX(-50%); border: 1px solid var(--green); border-radius: 2px; background: var(--green); box-shadow: 0 8px 24px rgba(10,55,44,.22); color: white; font-size: 14px; font-weight: 700; text-decoration: none; white-space: nowrap; transition: opacity .2s ease, visibility .2s ease, transform .2s ease; }
  .mobile-sticky-cta.is-hidden { visibility: hidden; opacity: 0; pointer-events: none; transform: translate(-50%, 12px); }
  .site-header { position: sticky; }
  .nav-wrap { min-height: 72px; }
  .brand-name { font-size: 22px; }
  .menu-toggle { margin-left: auto; width: 42px; height: 42px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border: 0; background: transparent; }
  .menu-toggle > span:not(.sr-only) { width: 24px; height: 1px; background: var(--green); }
  .main-nav { position: absolute; left: 0; right: 0; top: 72px; display: none; align-items: stretch; flex-direction: column; gap: 0; padding: 12px 16px 22px; background: white; border-bottom: 1px solid var(--line); box-shadow: 0 15px 30px rgba(13,63,52,.08); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 12px; font-size: 15px; }
  .main-nav a::after { display: none; }
  .hero { padding: 52px 0; background: white; }
  .hero-grid { grid-template-columns: 1fr; gap: 45px; }
  h1 { font-size: clamp(43px, 13vw, 62px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 17px; }
  .hero-visual { width: min(84%, 350px); margin-inline: auto; }
  .portrait-frame { aspect-ratio: .87; }
  .hero-visual figcaption { left: 10px; bottom: 10px; }
  .section { padding: 60px 0; }
  .profile-section, .cabinet-section { padding: 0; }
  .split-heading, .approach-grid, .home-pricing-grid, .final-cta-inner { grid-template-columns: 1fr; gap: 30px; }
  .section-heading { margin-bottom: 38px; }
  .reason-grid { grid-template-columns: repeat(2, 1fr); }
  .reason-card { min-height: 245px; padding: 26px; }
  .reason-visual { width: 78px; height: 78px; }
  .reason-visual svg { width: 60px; height: 60px; }
  .reason-card h3 { margin-top: 20px; }
  .approach-intro { position: static; }
  .approach-steps { margin-top: 20px; }
  .profile-grid, .cabinet-grid { grid-template-columns: 1fr; }
  .profile-photo { min-height: 390px; }
  .profile-copy, .cabinet-copy { padding: 48px 24px; }
  .cabinet-copy { display: block; min-height: 0; height: auto; padding: 28px 24px 44px; }
  .review-track { grid-auto-columns: 86%; }
  .review-arrow { width: 42px; height: 42px; background: rgba(255,255,255,.72); }
  .review-arrow-prev { left: -10px; }
  .review-arrow-next { right: -10px; }
  .review-card { min-height: 360px; padding: 27px; }
  .review-card p { font-size: 19px; }
  .cabinet-photo { min-height: 500px; }
  .final-actions { align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .section-heading h2, .approach-intro h2, .home-pricing-intro h2, .profile-copy h2, .cabinet-copy h2, .final-cta h2 { font-size: 42px; }
  .home-price-line { grid-template-columns: 1fr; gap: 8px; padding: 23px 0; }
  .cabinet-photo { min-height: 380px; }
  .reason-grid { grid-template-columns: 1fr; }
  .site-footer { padding: 52px 0 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand p { margin-top: 18px; }
  .footer-grid h2 { margin-bottom: 14px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; margin-top: 42px; }
}

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