/* Design system */
@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/dm-sans-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/dm-sans-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-extra-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700 800;
  font-display: swap;
}

:root {
  --forest-950: #102923;
  --forest-900: #17352f;
  --forest-800: #21463d;
  --forest-700: #2c5a4e;
  --sage-300: #b9cbb9;
  --sage-200: #d9e3d7;
  --sage-100: #edf2e9;
  --cream: #fbf8f1;
  --ivory: #f6f2e9;
  --sand: #e9dfcf;
  --sand-light: #f2ebe0;
  --terracotta: #b8573d;
  --terracotta-dark: #94412f;
  --ink: #19251f;
  --muted: #5b665f;
  --white: #fff;
  --line: rgba(25, 37, 31, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --font-display: "Manrope", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --shadow-sm: 0 10px 30px rgba(31, 46, 39, 0.08);
  --shadow-md: 0 24px 60px rgba(24, 42, 35, 0.14);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --content: 1180px;
  --reading: 720px;
  --header-height: 76px;
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 24px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
figure { margin: 0; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
p, ul, ol, blockquote { margin-top: 0; }
svg { display: block; }

h1, h2, h3 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.04em;
  line-height: 1.08;
}
h1 { font-size: clamp(3.15rem, 6.8vw, 6.35rem); font-weight: 700; }
h2 { font-size: clamp(2.35rem, 4.7vw, 4.7rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2vw, 1.55rem); font-weight: 700; letter-spacing: -0.025em; }

:focus-visible {
  outline: 3px solid #f0b37e;
  outline-offset: 4px;
  border-radius: 4px;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--forest-950);
  background: var(--white);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 180ms ease-out;
}
.skip-link:focus { transform: translateY(0); }

.content-shell, .header-inner, .hero-shell, .proof-shell {
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
}
.section { padding: clamp(84px, 10vw, 144px) 0; }
.section-ivory { background: var(--cream); }
.section-sand { background: var(--sand-light); }
.section-forest { color: var(--cream); background: var(--forest-900); }
.section-sage { background: var(--sage-100); }
.section-terracotta { color: var(--cream); background: var(--terracotta); }

.eyebrow {
  display: flex;
  gap: 11px;
  align-items: center;
  margin-bottom: 22px;
  color: var(--sage-200);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow > span { width: 24px; height: 1px; background: currentColor; }
.eyebrow.dark { color: var(--forest-700); }
.eyebrow.sage { color: var(--sage-300); }
.eyebrow.cream { color: #f8ddc7; }
.micro-label {
  margin-bottom: 8px;
  color: var(--terracotta);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}
.section-heading { max-width: 760px; }
.section-heading h2 { max-width: 780px; }
.section-lead { max-width: 700px; margin: 30px 0 0; color: var(--muted); font-size: 1.15rem; line-height: 1.72; }
.section-heading.compact h3 { max-width: 580px; font-size: clamp(1.9rem, 3.2vw, 3rem); }

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  color: var(--cream);
  background: rgba(16, 41, 35, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  transition: background 220ms ease, box-shadow 220ms ease;
}
.site-header.scrolled { background: rgba(16, 41, 35, 0.96); box-shadow: 0 8px 30px rgba(11, 28, 24, 0.2); }
.header-inner { display: flex; height: 100%; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; line-height: 1; }
.brand-mark { display: grid; width: 38px; height: 38px; place-items: center; color: var(--cream); border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 50%; }
.brand-mark svg { width: 24px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.brand-copy { display: grid; gap: 5px; }
.brand-copy strong { font-family: var(--font-display); font-size: 0.9rem; letter-spacing: -0.02em; }
.brand-copy small { color: var(--sage-300); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; }
.desktop-nav { display: flex; gap: 30px; align-items: center; }
.desktop-nav a { position: relative; color: rgba(255,255,255,.78); font-size: 0.85rem; font-weight: 600; }
.desktop-nav a::after { position: absolute; right: 0; bottom: -7px; left: 0; height: 1px; background: var(--sage-300); content: ""; transform: scaleX(0); transform-origin: right; transition: transform 180ms ease-out; }
.desktop-nav a:hover { color: var(--white); }
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; gap: 18px; align-items: center; }
.phone-link { display: flex; gap: 9px; align-items: center; font-size: 0.84rem; font-weight: 700; }
.phone-link svg { width: 16px; fill: none; stroke: var(--sage-300); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.menu-button { display: none; width: 44px; height: 44px; padding: 11px 9px; background: transparent; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; cursor: pointer; }
.menu-button span { display: block; width: 20px; height: 1px; margin: 5px auto; background: currentColor; transition: transform 200ms ease, opacity 150ms ease; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-nav { position: fixed; top: var(--header-height); right: 0; left: 0; display: grid; gap: 0; padding: 24px; background: var(--forest-950); border-top: 1px solid var(--line-light); box-shadow: var(--shadow-md); }
.mobile-nav[hidden] { display: none; }
.mobile-nav a { padding: 15px 4px; color: var(--cream); font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; border-bottom: 1px solid var(--line-light); }
.mobile-nav a:last-child { margin-top: 18px; text-align: center; background: var(--cream); color: var(--forest-950); border: 0; border-radius: 999px; }

/* Hero */
.hero {
  position: relative;
  min-height: 900px;
  padding: calc(var(--header-height) + clamp(62px, 8vw, 106px)) 0 86px;
  overflow: hidden;
  color: var(--cream);
  background:
    radial-gradient(circle at 70% 28%, rgba(87, 132, 111, .28), transparent 34%),
    linear-gradient(135deg, var(--forest-950), var(--forest-900) 64%, #1d4037);
}
.hero::before { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px); background-size: 64px 64px; content: ""; mask-image: linear-gradient(to bottom, black, transparent 88%); }
.hero::after { position: absolute; top: -160px; right: -240px; width: 700px; height: 700px; border: 1px solid rgba(185,203,185,.15); border-radius: 50%; box-shadow: 0 0 0 100px rgba(185,203,185,.025), 0 0 0 220px rgba(185,203,185,.018); content: ""; }
.hero-grain { position: absolute; z-index: 2; inset: 0; pointer-events: none; opacity: .11; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.3'/%3E%3C/svg%3E"); }
.hero-shell { position: relative; z-index: 3; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(390px, .84fr); gap: clamp(42px, 7vw, 92px); align-items: center; }
.hero-copy { padding-top: 10px; }
.hero h1 { margin-bottom: 30px; max-width: 760px; }
.hero h1 em { color: var(--sage-300); font-family: inherit; font-style: normal; font-weight: 500; }
.article-meta { display: flex; gap: 8px; align-items: center; margin: -12px 0 20px; color: rgba(255,255,255,.48); font-size: .68rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.hero-intro { max-width: 720px; margin-bottom: 34px; color: rgba(255,255,255,.78); font-size: clamp(1rem, 1.3vw, 1.1rem); line-height: 1.78; }
.hero-actions { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.button { display: inline-flex; min-height: 52px; padding: 0 24px; gap: 13px; align-items: center; justify-content: center; font-size: .84rem; font-weight: 700; letter-spacing: .01em; border-radius: 999px; transition: transform 130ms ease, box-shadow 180ms ease, background 180ms ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,.16); }
.button:active { transform: translateY(0); }
.button svg { width: 17px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.button-light { color: var(--forest-950); background: var(--cream); }
.button-cream { color: var(--terracotta-dark); background: #fff5e8; }
.text-link { display: inline-flex; gap: 10px; align-items: center; padding: 10px 2px; font-size: .86rem; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,.35); }
.text-link span { transition: transform 160ms ease-out; }
.text-link:hover span { transform: translateY(3px); }
.hero-trust { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 52px; padding-top: 25px; border-top: 1px solid var(--line-light); }
.hero-trust div { display: grid; gap: 4px; padding-right: 18px; }
.hero-trust div + div { padding-left: 18px; border-left: 1px solid var(--line-light); }
.hero-trust strong { font-family: var(--font-display); font-size: .84rem; }
.hero-trust span { color: rgba(255,255,255,.55); font-size: .7rem; }
.hero-visual { position: relative; justify-self: end; width: 100%; max-width: 510px; }
.image-frame { position: relative; overflow: hidden; }
.hero-image-frame { aspect-ratio: .78; border-radius: 220px 220px var(--radius-md) var(--radius-md); box-shadow: 0 35px 75px rgba(0,0,0,.27); }
.hero-image-frame::before { position: absolute; z-index: 2; inset: 16px; border: 1px solid rgba(255,255,255,.34); border-radius: 210px 210px 10px 10px; content: ""; pointer-events: none; }
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% center; }
.image-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,37,31,.54), transparent 44%); }
.floating-note { position: absolute; z-index: 4; right: 24px; bottom: 24px; left: 24px; display: flex; gap: 13px; align-items: center; padding: 16px 18px; color: var(--forest-950); background: rgba(251,248,241,.94); border-radius: 13px; backdrop-filter: blur(8px); }
.note-icon { display: grid; width: 34px; height: 34px; flex: 0 0 auto; place-items: center; color: var(--cream); background: var(--terracotta); border-radius: 50%; }
.note-icon svg { width: 18px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
.floating-note > span:last-child { display: grid; gap: 2px; }
.floating-note small { color: var(--muted); font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.floating-note strong { font-family: var(--font-display); font-size: .84rem; }
.hero-visual figcaption { margin-top: 14px; padding: 0 16px; color: rgba(255,255,255,.52); font-size: .69rem; line-height: 1.5; }
.scroll-cue { position: absolute; z-index: 4; bottom: 22px; left: 50%; display: flex; gap: 10px; align-items: center; color: rgba(255,255,255,.45); font-size: .66rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; transform: translateX(-50%); }
.scroll-cue span { width: 1px; height: 24px; background: linear-gradient(to bottom, transparent, var(--sage-300)); }

/* Proof strip */
.proof-strip { padding: 24px 0; color: var(--cream); background: var(--forest-800); border-top: 1px solid rgba(255,255,255,.08); }
.proof-shell { display: grid; grid-template-columns: .75fr 2fr; gap: 42px; align-items: center; }
.proof-intro { display: grid; line-height: 1.3; }
.proof-intro span { color: var(--sage-300); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.proof-intro strong { font-family: var(--font-display); font-size: .95rem; }
.proof-strip ul { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 0; list-style: none; }
.proof-strip li { display: flex; gap: 11px; align-items: center; padding: 5px 24px; border-left: 1px solid var(--line-light); }
.proof-strip svg { width: 24px; flex: 0 0 auto; fill: none; stroke: var(--sage-300); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.proof-strip li > span { display: grid; line-height: 1.35; }
.proof-strip li strong { font-family: var(--font-display); font-size: .82rem; }
.proof-strip li span span { color: rgba(255,255,255,.56); font-size: .67rem; }

/* Choosing section */
.two-column { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(50px, 9vw, 120px); align-items: end; }
.pull-quote { position: relative; padding: 30px 0 10px 34px; border-left: 1px solid var(--terracotta); }
.quote-mark { position: absolute; top: -20px; left: 24px; color: rgba(184,87,61,.16); font-family: Georgia, serif; font-size: 7rem; line-height: 1; }
.pull-quote blockquote { position: relative; margin: 0 0 14px; font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; line-height: 1.45; }
.pull-quote p { margin: 0; color: var(--muted); font-size: .78rem; }
.checklist-layout { display: grid; grid-template-columns: 1.08fr .78fr; gap: clamp(50px, 8vw, 100px); margin-top: 82px; align-items: center; }
.criteria-list { border-top: 1px solid var(--line); }
.criterion { display: grid; grid-template-columns: 58px 1fr; gap: 24px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.criterion-number { padding-top: 3px; color: var(--terracotta); font-family: var(--font-display); font-size: .7rem; font-weight: 700; letter-spacing: .13em; }
.criterion h3 { margin-bottom: 13px; }
.criterion p { margin: 0; color: var(--muted); font-size: .95rem; }
.stacked-figure { position: sticky; top: calc(var(--header-height) + 28px); padding: 18px 18px 0 0; }
.stacked-figure::before { position: absolute; z-index: 0; top: 0; right: 0; bottom: 85px; left: 18px; background: var(--sage-200); border-radius: 150px 150px var(--radius-md) var(--radius-md); content: ""; }
.stacked-figure img { position: relative; z-index: 1; width: 100%; aspect-ratio: .84; object-fit: cover; border-radius: 150px 150px var(--radius-md) var(--radius-md); box-shadow: var(--shadow-md); }
.stacked-figure figcaption { position: relative; z-index: 2; width: calc(100% - 28px); margin: -52px 0 0 28px; padding: 22px 24px; color: var(--cream); background: var(--forest-900); border-radius: 10px; font-size: .77rem; line-height: 1.55; box-shadow: var(--shadow-sm); }
.stacked-figure figcaption strong { display: block; margin-bottom: 4px; color: var(--sage-300); font-family: var(--font-display); }
.red-flags { display: grid; grid-template-columns: .8fr 1.2fr; gap: 45px; margin-top: 90px; padding: 38px 44px; color: var(--cream); background: var(--terracotta); border-radius: var(--radius-md); }
.red-flags-title { display: flex; gap: 16px; align-items: flex-start; }
.alert-icon { display: grid; width: 42px; height: 42px; flex: 0 0 auto; place-items: center; color: var(--terracotta); background: #fff0df; border-radius: 50%; }
.alert-icon svg { width: 22px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.red-flags .micro-label { color: #fedcc5; }
.red-flags h3 { font-size: 1.3rem; }
.red-flags ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 32px; margin: 0; padding: 0; list-style: none; }
.red-flags li { position: relative; padding-left: 17px; color: rgba(255,255,255,.82); font-size: .82rem; }
.red-flags li::before { position: absolute; top: .76em; left: 0; width: 5px; height: 5px; background: #ffd9c2; border-radius: 50%; content: ""; }

/* Process */
.process-intro { display: grid; grid-template-columns: 1fr .82fr; gap: 90px; align-items: end; }
.process-intro h2 { max-width: 700px; }
.process-summary { padding-left: 30px; color: rgba(255,255,255,.68); border-left: 1px solid var(--line-light); font-size: .97rem; }
.process-summary p:last-child { margin-bottom: 0; }
.process-summary strong, .process-summary em { color: var(--cream); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 76px; padding: 0; background: var(--line-light); border: 1px solid var(--line-light); border-radius: var(--radius-md); overflow: hidden; list-style: none; }
.process-card { position: relative; min-height: 400px; padding: 32px 28px; background: var(--forest-900); }
.process-card::after { position: absolute; right: 0; bottom: 0; left: 0; height: 3px; background: var(--terracotta); content: ""; transform: scaleX(0); transform-origin: left; transition: transform 220ms ease-out; }
.process-card:hover::after { transform: scaleX(1); }
.process-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 54px; color: var(--sage-300); }
.process-card-top span { font-family: var(--font-display); font-size: .72rem; letter-spacing: .14em; }
.process-card-top svg { width: 27px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.25; }
.process-card h3 { margin-bottom: 18px; font-size: 1.3rem; }
.process-card p { margin-bottom: 30px; color: rgba(255,255,255,.62); font-size: .85rem; line-height: 1.7; }
.process-card small { position: absolute; right: 28px; bottom: 28px; left: 28px; padding-top: 14px; color: var(--sage-300); font-size: .67rem; font-weight: 700; border-top: 1px solid var(--line-light); }
.comparison-wrap { margin-top: 90px; padding-top: 65px; border-top: 1px solid var(--line-light); }
.comparison-heading { display: grid; grid-template-columns: .8fr .9fr 1fr; gap: 40px; align-items: start; margin-bottom: 34px; }
.comparison-heading .micro-label { color: var(--sage-300); }
.comparison-heading h3 { font-size: clamp(1.55rem, 2.5vw, 2.3rem); }
.comparison-heading > p:last-child { color: rgba(255,255,255,.62); font-size: .86rem; }
.comparison-table { overflow-x: auto; border: 1px solid var(--line-light); border-radius: 12px; }
table { width: 100%; min-width: 720px; border-collapse: collapse; font-size: .85rem; }
th, td { padding: 21px 24px; text-align: left; border-bottom: 1px solid var(--line-light); }
thead th { color: var(--sage-300); background: rgba(0,0,0,.12); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
tbody th { width: 24%; color: var(--cream); font-family: var(--font-display); }
tbody td { color: rgba(255,255,255,.66); }
tbody td strong { color: var(--cream); }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }

/* Services */
.service-heading { display: grid; grid-template-columns: 1.15fr .75fr; gap: 90px; align-items: end; }
.service-heading > p { margin: 0; color: var(--muted); }
.service-showcase { margin-top: 70px; }
.service-feature { display: grid; grid-template-columns: 1.02fr .86fr; min-height: 590px; overflow: hidden; background: var(--cream); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.service-feature figure { position: relative; min-height: 540px; overflow: hidden; }
.service-feature figure::after { position: absolute; inset: auto 0 0; height: 45%; background: linear-gradient(transparent, rgba(10,25,21,.68)); content: ""; }
.service-feature figure img { width: 100%; height: 100%; object-fit: cover; }
.service-feature figcaption { position: absolute; z-index: 2; right: 28px; bottom: 26px; left: 28px; color: rgba(255,255,255,.82); font-size: .72rem; line-height: 1.5; }
.service-copy { align-self: center; padding: 55px clamp(34px, 5vw, 72px); }
.service-index { display: inline-block; margin-bottom: 24px; color: var(--terracotta); font-size: .7rem; font-weight: 700; letter-spacing: .13em; }
.service-copy h3 { margin-bottom: 24px; font-size: clamp(1.7rem, 3vw, 2.6rem); }
.service-copy > p { color: var(--muted); font-size: .93rem; }
.tick-list { display: grid; gap: 9px; margin: 27px 0 0; padding: 24px 0 0; border-top: 1px solid var(--line); list-style: none; }
.tick-list li { position: relative; padding-left: 23px; font-size: .82rem; font-weight: 600; }
.tick-list li::before { position: absolute; top: .42em; left: 0; width: 12px; height: 7px; border-bottom: 1.5px solid var(--terracotta); border-left: 1.5px solid var(--terracotta); content: ""; transform: rotate(-45deg); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 18px; }
.service-mini { position: relative; padding: 34px; background: rgba(255,255,255,.62); border: 1px solid rgba(25,37,31,.08); border-radius: var(--radius-md); transition: transform 180ms ease-out, background 180ms ease-out, box-shadow 180ms ease-out; }
.service-mini:hover { background: var(--cream); box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.service-mini .service-index { position: absolute; top: 26px; right: 28px; }
.service-icon { display: grid; width: 48px; height: 48px; margin-bottom: 28px; place-items: center; color: var(--terracotta); background: #f4dfd3; border-radius: 50%; }
.service-icon svg { width: 25px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.45; }
.service-mini h3 { margin-bottom: 16px; }
.service-mini p { margin: 0; color: var(--muted); font-size: .84rem; line-height: 1.72; }
.materials-callout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; margin-top: 70px; padding-top: 45px; border-top: 1px solid var(--line); }
.materials-callout h3 { max-width: 400px; font-size: clamp(1.5rem, 2.4vw, 2.15rem); }
.materials-callout > p { margin: 0; color: var(--muted); font-size: .9rem; }

/* Investment */
.investment-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(60px, 9vw, 110px); align-items: start; }
.investment-copy { position: sticky; top: calc(var(--header-height) + 32px); }
.investment-copy h2 { margin-bottom: 30px; font-size: clamp(2.35rem, 4.3vw, 4.15rem); }
.investment-copy > p { color: var(--muted); font-size: .94rem; }
.stat-note { display: grid; grid-template-columns: auto 1fr; gap: 20px; margin-top: 38px; padding-top: 30px; border-top: 1px solid var(--line); }
.stat-note > span { color: var(--terracotta); font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; letter-spacing: -.06em; }
.stat-note p { margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.58; }
.industry-note { margin: 28px 0 0; padding: 18px 20px; background: var(--sage-100); border-left: 3px solid var(--forest-700); border-radius: 0 8px 8px 0; color: var(--muted); font-size: .76rem !important; line-height: 1.58; }
.industry-note strong { color: var(--ink); }
.cost-cards { display: grid; gap: 14px; }
.cost-card { padding: 32px 36px; background: var(--white); border: 1px solid rgba(25,37,31,.08); border-radius: var(--radius-md); box-shadow: 0 6px 20px rgba(25,37,31,.04); }
.cost-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 23px; }
.cost-card-head span { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; }
.cost-card-head svg { width: 27px; fill: none; stroke: var(--terracotta); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.4; }
.cost-row { display: flex; gap: 24px; align-items: center; justify-content: space-between; padding: 12px 0; border-top: 1px solid var(--line); font-size: .86rem; }
.cost-row span { color: var(--muted); }
.cost-row strong { color: var(--forest-800); font-family: var(--font-display); white-space: nowrap; }
.cost-card > p { margin: 18px 0 0; color: var(--muted); font-size: .72rem; }
.cost-card > p b { color: var(--ink); }
.value-band { display: grid; grid-template-columns: 1.25fr .75fr; gap: 72px; margin-top: 86px; padding: 48px 54px; color: var(--cream); background: var(--forest-900); border-radius: var(--radius-lg); }
.value-main .micro-label { color: var(--sage-300); }
.value-main h3 { margin-bottom: 20px; font-size: clamp(1.7rem, 3vw, 2.65rem); }
.value-main > p:last-child { margin: 0; color: rgba(255,255,255,.67); font-size: .9rem; }
.value-metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; align-content: center; }
.value-metrics div { display: grid; gap: 7px; justify-items: center; padding: 25px 14px; text-align: center; border: 1px solid var(--line-light); border-radius: 50% 50% 16px 16px; }
.value-metrics strong { color: var(--sage-300); font-family: var(--font-display); font-size: 2.35rem; line-height: 1; }
.value-metrics span { color: rgba(255,255,255,.68); font-size: .66rem; line-height: 1.35; }
.value-metrics small { grid-column: 1 / -1; color: rgba(255,255,255,.42); font-size: .62rem; text-align: center; }
.budget-tips { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; margin-top: 100px; }
.numbered-tips { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; counter-reset: tips; }
.numbered-tips li { display: grid; grid-template-columns: 38px 1fr; gap: 22px; padding: 25px 0; border-bottom: 1px solid var(--line); }
.numbered-tips li > span { display: grid; width: 32px; height: 32px; place-items: center; color: var(--cream); background: var(--terracotta); border-radius: 50%; font-family: var(--font-display); font-size: .72rem; font-weight: 700; }
.numbered-tips strong { display: block; margin-bottom: 6px; font-family: var(--font-display); font-size: .98rem; }
.numbered-tips p { margin: 0; color: var(--muted); font-size: .82rem; }

/* Expert section */
.expert-layout { display: grid; grid-template-columns: 1.23fr .67fr; gap: clamp(60px, 9vw, 118px); align-items: center; }
.expert-copy h2 { max-width: 760px; margin-bottom: 32px; }
.expert-copy > p { max-width: 760px; color: rgba(255,255,255,.78); }
.expert-copy strong, .expert-copy em { color: var(--white); }
.inline-external-link { color: #fff7e9; font-weight: 700; text-decoration: underline; text-decoration-color: rgba(255,255,255,.45); text-decoration-thickness: 1px; text-underline-offset: 4px; transition: text-decoration-color 150ms ease; }
.inline-external-link:hover { text-decoration-color: currentColor; }
.expert-panel { padding: 36px; color: var(--ink); background: #fff2e2; border-radius: 180px 180px var(--radius-md) var(--radius-md); box-shadow: 0 30px 70px rgba(98,33,22,.22); }
.expert-panel-head { display: flex; flex-direction: column; gap: 18px; align-items: center; margin: 58px 0 34px; text-align: center; }
.brand-mark.large { width: 64px; height: 64px; color: var(--terracotta); border-color: rgba(184,87,61,.35); }
.brand-mark.large svg { width: 37px; }
.expert-panel-head div { display: grid; gap: 4px; }
.expert-panel-head strong { font-family: var(--font-display); font-size: 1.14rem; }
.expert-panel-head span { color: var(--terracotta); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.expert-panel ul { display: grid; gap: 0; margin: 0 0 30px; padding: 0; border-top: 1px solid rgba(25,37,31,.12); list-style: none; }
.expert-panel li { display: flex; gap: 12px; align-items: center; padding: 17px 0; border-bottom: 1px solid rgba(25,37,31,.12); }
.expert-panel li svg { width: 20px; flex: 0 0 auto; fill: none; stroke: var(--terracotta); stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
.expert-panel li span { display: grid; line-height: 1.35; }
.expert-panel li strong { font-family: var(--font-display); font-size: .82rem; }
.expert-panel li span { color: var(--muted); font-size: .68rem; }
.expert-panel .button { width: 100%; color: var(--cream); background: var(--terracotta); }

/* Expectations */
.expectations-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(60px, 9vw, 112px); align-items: center; }
.interior-figure { position: relative; }
.interior-figure::before { position: absolute; z-index: 0; inset: -15px 15px 55px -15px; background: var(--sage-200); border-radius: var(--radius-md) 150px var(--radius-md) var(--radius-md); content: ""; }
.interior-figure img { position: relative; z-index: 1; width: 100%; aspect-ratio: .8; object-fit: cover; border-radius: var(--radius-md) 150px var(--radius-md) var(--radius-md); box-shadow: var(--shadow-md); }
.interior-figure figcaption { position: relative; z-index: 2; width: 84%; margin: -40px 0 0 auto; padding: 18px 22px; color: var(--cream); background: var(--forest-800); border-radius: var(--radius-sm); font-size: .7rem; line-height: 1.5; }
.expectations-copy h2 { margin-bottom: 28px; font-size: clamp(2.25rem, 4vw, 4rem); }
.expectations-copy > p { color: var(--muted); }
.expectation-accordion { margin-top: 35px; border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item h3 { margin: 0; }
.accordion-item button { display: flex; width: 100%; gap: 20px; align-items: center; justify-content: space-between; padding: 22px 0; text-align: left; background: transparent; border: 0; cursor: pointer; }
.accordion-item button span { font-family: var(--font-display); font-size: 1rem; font-weight: 700; letter-spacing: -.02em; }
.accordion-item button svg { width: 20px; flex: 0 0 auto; fill: none; stroke: var(--terracotta); stroke-linecap: round; stroke-width: 1.5; transition: transform 200ms ease-out; }
.accordion-item button[aria-expanded="true"] svg { transform: rotate(45deg); }
.accordion-panel { padding: 0 42px 22px 0; }
.accordion-panel[hidden] { display: none; }
.accordion-panel p { margin: 0; color: var(--muted); font-size: .85rem; }

/* FAQ */
.faq-section { border-top: 1px solid var(--line); }
.faq-layout { display: grid; grid-template-columns: .68fr 1.32fr; gap: clamp(70px, 10vw, 130px); align-items: start; }
.faq-heading { position: sticky; top: calc(var(--header-height) + 34px); }
.faq-heading h2 { margin-bottom: 26px; font-size: clamp(2.4rem, 4.5vw, 4.4rem); }
.faq-heading > p { color: var(--muted); }
.faq-contact { display: grid; gap: 5px; margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line); }
.faq-contact span { color: var(--muted); font-size: .75rem; }
.faq-contact a { color: var(--terracotta); font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item button { padding: 27px 0; }
.faq-item button span { max-width: 88%; font-size: clamp(1.05rem, 2vw, 1.25rem); }
.faq-item .accordion-panel { padding-bottom: 27px; }
.faq-item .accordion-panel p { max-width: 680px; font-size: .92rem; }

/* Conclusion and map */
.conclusion { color: var(--cream); background: var(--forest-950); }
.conclusion-grid { display: grid; grid-template-columns: 1.2fr .62fr; gap: clamp(60px, 9vw, 120px); align-items: center; }
.conclusion-copy h2 { max-width: 780px; margin-bottom: 32px; }
.conclusion-copy p { max-width: 800px; color: rgba(255,255,255,.7); }
.conclusion-copy p:last-child { margin-bottom: 0; }
.conclusion-copy strong { color: var(--cream); }
.conclusion-card { padding: 42px 38px; color: var(--ink); background: var(--sage-200); border-radius: 120px 120px var(--radius-md) var(--radius-md); text-align: center; }
.conclusion-card > p { margin: 38px 0 8px; color: var(--forest-700); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.conclusion-card h3 { margin-bottom: 13px; font-size: 2rem; }
.conclusion-card > span { display: block; margin-bottom: 26px; color: var(--muted); font-size: .82rem; }
.conclusion-card .button { width: 100%; margin-bottom: 17px; color: var(--cream); background: var(--forest-800); }
.conclusion-card small { display: block; color: var(--muted); font-size: .65rem; }
.location-section { padding-top: 90px; background: var(--cream); }
.location-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: end; margin-bottom: 46px; }
.location-heading h2 { font-size: clamp(2.1rem, 4vw, 3.8rem); }
.location-details { display: grid; grid-template-columns: 1fr 1.2fr; gap: 34px; }
.location-details p { margin: 0; color: var(--muted); font-size: .82rem; }
.location-details strong { color: var(--ink); }
.map-wrap { position: relative; width: 100%; height: min(58vw, 520px); min-height: 360px; overflow: hidden; background: var(--sage-200); }
.map-frame { width: 100%; height: 100%; border: 0; filter: saturate(.72) contrast(.98); }

/* Footer */
.site-footer { padding: 70px 0 24px; color: var(--cream); background: #0a211c; border-top: 1px solid rgba(255,255,255,.08); }
.footer-grid { display: grid; grid-template-columns: 1.25fr .55fr .55fr; gap: 80px; padding-bottom: 60px; }
.brand.inverse .brand-mark { color: var(--sage-300); }
.footer-brand > p { max-width: 380px; margin: 24px 0 0; color: rgba(255,255,255,.5); font-size: .79rem; }
.footer-grid nav, .footer-contact { display: flex; flex-direction: column; gap: 9px; }
.footer-grid nav strong, .footer-contact > strong { margin-bottom: 9px; color: var(--sage-300); font-family: var(--font-display); font-size: .77rem; letter-spacing: .09em; text-transform: uppercase; }
.footer-grid nav a, .footer-contact a, .footer-contact span { color: rgba(255,255,255,.58); font-size: .76rem; }
.footer-grid nav a:hover, .footer-contact a:hover { color: var(--white); }
.footer-contact a { color: var(--cream); font-family: var(--font-display); font-size: 1rem; font-weight: 700; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 22px; color: rgba(255,255,255,.36); font-size: .67rem; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom a { display: inline-flex; gap: 8px; color: rgba(255,255,255,.65); }

/* Reveal motion */
.js-ready .reveal { opacity: 0; transform: translateY(24px); transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1); transition-delay: var(--reveal-delay, 0ms); }
.js-ready .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .hero-shell { grid-template-columns: 1fr .72fr; gap: 44px; }
  .hero h1 { font-size: clamp(3.25rem, 7vw, 5.15rem); }
  .hero-intro { font-size: .95rem; }
  .hero-trust { grid-template-columns: 1fr; gap: 10px; }
  .hero-trust div, .hero-trust div + div { padding: 0; border: 0; }
  .hero-trust div + div { display: none; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-card { min-height: 350px; }
  .comparison-heading { grid-template-columns: .7fr 1fr; }
  .comparison-heading > p:last-child { grid-column: 2; }
  .service-grid { grid-template-columns: 1fr; }
  .service-mini { min-height: 0; }
  .expert-layout { grid-template-columns: 1fr .72fr; gap: 55px; }
}

@media (max-width: 820px) {
  :root { --header-height: 70px; }
  body { font-size: 16px; }
  .content-shell, .header-inner, .hero-shell, .proof-shell { width: min(calc(100% - 32px), var(--content)); }
  .section { padding: 84px 0; }
  .phone-link span { display: none; }
  .hero { min-height: 0; padding-top: calc(var(--header-height) + 65px); }
  .hero-shell { grid-template-columns: 1fr; }
  .hero-copy { max-width: 700px; }
  .hero h1 { font-size: clamp(3.3rem, 12.5vw, 5.6rem); }
  .hero-visual { width: min(100%, 610px); margin-top: 15px; justify-self: start; }
  .hero-image-frame { aspect-ratio: 1.03; border-radius: 180px 180px var(--radius-md) var(--radius-md); }
  .hero-image-frame::before { border-radius: 170px 170px 10px 10px; }
  .scroll-cue { display: none; }
  .proof-shell { grid-template-columns: 1fr; gap: 18px; }
  .proof-intro { display: none; }
  .proof-strip li { padding: 4px 14px; }
  .two-column, .checklist-layout, .process-intro, .service-heading, .service-feature, .materials-callout, .investment-grid, .value-band, .budget-tips, .expert-layout, .expectations-grid, .faq-layout, .conclusion-grid, .location-heading { grid-template-columns: 1fr; }
  .pull-quote { max-width: 560px; margin-top: 10px; }
  .checklist-layout { gap: 65px; }
  .stacked-figure { position: relative; top: auto; width: min(100%, 600px); }
  .stacked-figure img { aspect-ratio: 1.1; border-radius: 180px 180px var(--radius-md) var(--radius-md); }
  .red-flags { grid-template-columns: 1fr; }
  .process-intro { gap: 38px; }
  .process-summary { padding: 0; border: 0; }
  .service-heading { gap: 26px; }
  .service-feature { min-height: 0; }
  .service-feature figure { min-height: 420px; }
  .materials-callout { gap: 24px; }
  .investment-grid { gap: 65px; }
  .investment-copy, .faq-heading { position: relative; top: auto; }
  .value-band { gap: 38px; }
  .value-metrics { max-width: 400px; }
  .budget-tips { gap: 40px; }
  .expert-copy h2 { font-size: clamp(2.35rem, 8vw, 4.2rem); }
  .expert-panel { width: min(100%, 470px); margin-inline: auto; }
  .interior-figure { width: min(100%, 590px); }
  .faq-layout { gap: 50px; }
  .conclusion-card { width: min(100%, 470px); margin-inline: auto; }
  .location-heading { gap: 30px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr; gap: 50px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .brand-copy small { display: none; }
  .phone-link { width: 42px; height: 42px; justify-content: center; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; }
  .header-actions { gap: 8px; }
  .hero { padding-bottom: 58px; }
  .hero h1 { font-size: clamp(2.8rem, 14.7vw, 4.4rem); }
  .hero-intro { font-size: .93rem; line-height: 1.7; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { align-self: flex-start; }
  .hero-trust { margin-top: 34px; }
  .hero-image-frame { border-radius: 120px 120px var(--radius-md) var(--radius-md); }
  .hero-image-frame::before { inset: 10px; border-radius: 112px 112px 10px 10px; }
  .floating-note { right: 14px; bottom: 14px; left: 14px; padding: 13px; }
  .hero-visual figcaption { padding: 0 4px; }
  .proof-strip ul { grid-template-columns: 1fr; gap: 0; }
  .proof-strip li { padding: 10px 0; border: 0; }
  .criterion { grid-template-columns: 38px 1fr; gap: 14px; }
  .criterion p { font-size: .89rem; }
  .stacked-figure { padding: 10px 10px 0 0; }
  .stacked-figure img { aspect-ratio: .92; border-radius: 110px 110px var(--radius-md) var(--radius-md); }
  .stacked-figure figcaption { width: calc(100% - 10px); margin-left: 10px; }
  .red-flags { gap: 28px; padding: 30px 25px; }
  .red-flags ul { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-card { min-height: 330px; }
  .comparison-heading { grid-template-columns: 1fr; gap: 18px; }
  .comparison-heading > p:last-child { grid-column: auto; }
  .service-feature figure { min-height: 350px; }
  .service-copy { padding: 38px 25px; }
  .service-mini { padding: 28px 25px; }
  .cost-card { padding: 27px 24px; }
  .cost-row { align-items: flex-start; flex-direction: column; gap: 2px; }
  .value-band { padding: 34px 24px; }
  .value-metrics { gap: 10px; }
  .value-metrics strong { font-size: 1.9rem; }
  .numbered-tips li { grid-template-columns: 34px 1fr; gap: 13px; }
  .expert-panel { padding: 28px 22px; border-radius: 120px 120px var(--radius-md) var(--radius-md); }
  .interior-figure img { border-radius: var(--radius-md) 95px var(--radius-md) var(--radius-md); }
  .accordion-item button span { font-size: .96rem; }
  .faq-item button { padding: 23px 0; }
  .faq-item button span { max-width: 84%; }
  .conclusion-card { padding: 36px 24px; border-radius: 95px 95px var(--radius-md) var(--radius-md); }
  .location-details { grid-template-columns: 1fr; gap: 12px; }
  .map-wrap { height: 440px; min-height: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 12px; }
}

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

@media (prefers-contrast: more) {
  :root { --muted: #37413b; --line: rgba(0,0,0,.34); }
  .hero-intro, .process-summary, .process-card p, .expert-copy > p, .conclusion-copy p { color: rgba(255,255,255,.88); }
  .site-header { background: var(--forest-950); }
}
