:root {
  --ink: #17383d;
  --deep-ink: #08252a;
  --ink-soft: #4d6669;
  --lake: #0b5362;
  --lake-dark: #073b47;
  --lake-light: #dcecef;
  --linen: #f7f1e7;
  --linen-deep: #eee3d3;
  --paper: #fffdf8;
  --coral: #d96d57;
  --coral-dark: #b9513e;
  --white: #ffffff;
  --line: rgba(23, 56, 61, .14);
  --shadow: 0 1px 0 rgba(23, 56, 61, .04), 0 12px 35px rgba(23, 56, 61, .08);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 36px;
  --shell: min(1180px, calc(100% - 40px));
  --font: "Noto Sans", "DejaVu Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.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; top: 10px; left: 10px; z-index: 1000;
  padding: 10px 16px; background: var(--white); color: var(--lake);
  border-radius: 8px; transform: translateY(-150%); transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }

.shell { width: var(--shell); margin-inline: auto; }
.section-pad { padding: 110px 0; }

.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255, 253, 248, .9);
  border-bottom: 1px solid transparent; backdrop-filter: blur(16px);
  transition: border-color .2s, box-shadow .2s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(23, 56, 61, .05); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 46px; height: 46px; display: grid; place-items: center; flex: none;
  color: var(--white); background: var(--lake); border-radius: 50% 50% 44% 56% / 58% 45% 55% 42%;
  font-weight: 800; font-size: 13px; letter-spacing: .04em;
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.2; }
.brand-copy strong { font-size: 15px; letter-spacing: .01em; text-transform: uppercase; }
.brand-copy small { margin-top: 4px; color: var(--ink-soft); font-size: 11px; }
.primary-nav { display: flex; align-items: center; gap: 30px; }
.primary-nav > a { font-size: 14px; font-weight: 650; text-decoration: none; }
.primary-nav > a:not(.button) { position: relative; }
.primary-nav > a:not(.button)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px;
  background: var(--coral); transition: right .2s ease;
}
.primary-nav > a:not(.button):hover::after { right: 0; }
.menu-toggle { display: none; width: 48px; height: 48px; padding: 12px; border: 0; background: transparent; border-radius: 12px; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--ink); transition: transform .2s, opacity .2s; }

.button {
  display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 12px;
  padding: 13px 22px; border: 1px solid var(--lake); border-radius: 999px;
  background: var(--lake); color: var(--white); font-weight: 750; text-decoration: none;
  box-shadow: 0 8px 20px rgba(11, 83, 98, .16); transition: transform .2s, background .2s, box-shadow .2s;
}
.button:hover { transform: translateY(-2px); background: var(--lake-dark); box-shadow: 0 12px 24px rgba(11, 83, 98, .22); }
.button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button-small { min-height: 42px; padding: 9px 18px; font-size: 13px !important; }
.button-light { color: var(--lake-dark); background: var(--white); border-color: var(--white); box-shadow: none; }
.button-light:hover { background: var(--linen); }
.text-link { font-weight: 750; text-decoration: none; border-bottom: 1px solid var(--ink); }

.hero { position: relative; overflow: hidden; padding-top: 80px; background: linear-gradient(145deg, var(--paper) 0%, var(--linen) 100%); }
.hero::before {
  content: ""; position: absolute; width: 420px; height: 420px; left: -230px; bottom: -250px;
  border: 1px solid rgba(11, 83, 98, .14); border-radius: 50%; box-shadow: 0 0 0 48px rgba(11, 83, 98, .03), 0 0 0 96px rgba(11, 83, 98, .025);
}
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 80px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 22px; color: var(--coral-dark); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow span { width: 30px; height: 1px; background: currentColor; }
h1, h2, h3, p { text-wrap: pretty; }
h1, h2, h3 { margin-top: 0; line-height: 1.12; letter-spacing: -.035em; }
h1 { margin-bottom: 28px; font-size: clamp(45px, 5.5vw, 76px); font-weight: 780; }
h1 em { color: var(--coral-dark); font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
h2 { margin-bottom: 22px; font-size: clamp(34px, 4vw, 54px); font-weight: 760; }
h3 { font-size: 23px; }
.hero-lead { max-width: 620px; margin: 0 0 34px; color: var(--ink-soft); font-size: 19px; }
.hero-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.hero-notes { display: flex; flex-wrap: wrap; gap: 14px 24px; margin: 40px 0 0; padding: 0; list-style: none; color: var(--ink-soft); font-size: 13px; font-weight: 650; }
.hero-notes span { color: var(--coral-dark); }
.hero-visual { position: relative; padding: 0 20px 35px 0; }
.visual-card { overflow: hidden; background: var(--white); border: 10px solid var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); transform: rotate(1.5deg); }
.visual-card > img { width: 100%; aspect-ratio: 4 / 4.25; object-fit: cover; background: var(--lake-light); border-radius: 27px; }
.visual-caption { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: center; padding: 20px 16px 12px; }
.caption-number { color: var(--coral-dark); font-size: 12px; font-weight: 800; }
.visual-caption p { margin: 0; font-size: 13px; line-height: 1.45; }
.floating-note {
  position: absolute; right: -20px; bottom: 5px; display: flex; align-items: center; gap: 12px;
  padding: 15px 18px; color: var(--white); background: var(--coral); border: 6px solid var(--paper);
  border-radius: 18px; box-shadow: var(--shadow); font-size: 12px; line-height: 1.2; transform: rotate(-3deg);
}
.drop-icon { width: 34px; height: 34px; display: grid; place-items: center; background: rgba(255,255,255,.16); border-radius: 50%; font-size: 24px; }

.truth-strip { padding: 30px 0; background: var(--lake); color: var(--white); }
.truth-grid { display: grid; grid-template-columns: 230px 1fr; gap: 40px; align-items: center; }
.truth-grid p { margin: 0; }
.truth-label { font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; opacity: .75; }
.truth-grid p:last-child { max-width: 830px; font-size: 16px; }

.section-heading { display: grid; grid-template-columns: 1.4fr .6fr; align-items: end; gap: 70px; margin-bottom: 54px; }
.section-heading > p { margin: 0 0 6px; color: var(--ink-soft); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  position: relative; min-height: 335px; padding: 34px; overflow: hidden;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md);
  box-shadow: 0 8px 30px rgba(23, 56, 61, .035); transition: transform .25s, box-shadow .25s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card-large { display: grid; grid-template-columns: 1.05fr .95fr; grid-column: span 3; min-height: 390px; padding: 0; background: var(--linen); }
.service-content { padding: 60px 45px 45px 10px; align-self: center; }
.service-card p { max-width: 510px; margin-bottom: 0; color: var(--ink-soft); }
.service-index { display: block; margin-bottom: 42px; color: var(--coral-dark); font-size: 11px; font-weight: 800; }
.service-card-large .service-index { margin-bottom: 24px; }
.service-icon { width: 74px; height: 74px; display: grid; place-items: center; margin-bottom: 56px; color: var(--lake); background: var(--lake-light); border-radius: 50%; }
.service-icon svg { width: 42px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card-blue { color: var(--white); background: var(--lake); border-color: var(--lake); }
.service-card-blue p { color: rgba(255,255,255,.72); }
.service-card-blue .service-index { color: #f2af9f; }
.service-card-blue .service-icon { color: var(--white); background: rgba(255,255,255,.12); }
.service-card-outline { background: transparent; border-style: dashed; }
.service-art { position: relative; min-height: 390px; overflow: hidden; background: linear-gradient(150deg, #d8eaec, #b6d7da); }
.service-art::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(11,83,98,.12) 1px, transparent 1px); background-size: 12px 12px; }
.sofa-back, .sofa-seat, .sofa-arm { position: absolute; background: var(--coral); box-shadow: inset -8px -10px 0 rgba(130,45,32,.08); }
.sofa-back { left: 18%; right: 18%; bottom: 35%; height: 37%; border-radius: 26px 26px 10px 10px; }
.sofa-seat { left: 17%; right: 17%; bottom: 20%; height: 21%; border-radius: 12px 12px 20px 20px; }
.sofa-arm { bottom: 19%; width: 18%; height: 32%; border-radius: 16px; }
.sofa-arm.left { left: 8%; } .sofa-arm.right { right: 8%; }

.process { position: relative; overflow: hidden; color: var(--white); background: var(--lake-dark); }
.process::after { content: ""; position: absolute; width: 500px; height: 500px; right: -280px; top: -250px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 65px rgba(255,255,255,.02), 0 0 0 130px rgba(255,255,255,.015); }
.section-heading.light > p { color: rgba(255,255,255,.66); }
.process .eyebrow { color: #f2af9f; }
.process-list { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.18); }
.process-list li { padding: 34px 28px 10px 0; }
.process-list li + li { padding-left: 28px; border-left: 1px solid rgba(255,255,255,.18); }
.step-number { display: block; margin-bottom: 68px; color: #f2af9f; font-size: 12px; font-weight: 800; }
.process-list h3 { margin-bottom: 15px; font-size: 21px; }
.process-list p { margin: 0; color: rgba(255,255,255,.66); font-size: 14px; }

.estimate { background: var(--linen); }
.estimate-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 90px; align-items: center; }
.estimate-copy > p:not(.eyebrow):not(.privacy-note) { max-width: 600px; margin-bottom: 30px; color: var(--ink-soft); font-size: 17px; }
.privacy-note { max-width: 520px; margin: 18px 0 0; color: var(--ink-soft); font-size: 12px; }
.estimate-card { padding: 42px; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.card-kicker { margin: 0 0 26px; color: var(--coral-dark); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.estimate-card ol { margin: 0; padding: 0; list-style: none; }
.estimate-card li { display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding: 20px 0; border-top: 1px solid var(--line); }
.estimate-card li > span { width: 34px; height: 34px; display: grid; place-items: center; color: var(--lake); background: var(--lake-light); border-radius: 50%; font-size: 12px; font-weight: 800; }
.estimate-card li div { display: flex; flex-direction: column; }
.estimate-card strong { font-size: 15px; }
.estimate-card small { margin-top: 5px; color: var(--ink-soft); font-size: 12px; line-height: 1.5; }

.story { padding-bottom: 0; background: var(--paper); }
.story-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; overflow: hidden; background: var(--lake-light); border-radius: var(--radius-lg); }
.story-visual { position: relative; min-height: 440px; overflow: hidden; background: linear-gradient(165deg, #b7dade, #e0eef0); }
.story-word { position: absolute; left: 8%; top: 15%; z-index: 1; color: rgba(11,83,98,.12); font-size: clamp(70px, 10vw, 150px); font-weight: 900; letter-spacing: -.08em; writing-mode: vertical-rl; transform: rotate(180deg); }
.story-visual svg { position: absolute; inset: auto 0 0; width: 100%; height: 65%; fill: var(--lake); }
.story-visual svg path:last-child { fill: none; stroke: rgba(255,255,255,.42); stroke-width: 2; }
.story-copy { padding: 70px 70px 70px 60px; }
.story-copy p:last-child { color: var(--ink-soft); }

.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; align-items: start; }
.faq-intro { max-width: 340px; color: var(--ink-soft); }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { position: relative; display: flex; justify-content: space-between; gap: 20px; padding: 25px 0; cursor: pointer; font-size: 17px; font-weight: 750; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary span { color: var(--coral-dark); font-size: 24px; font-weight: 400; transition: transform .2s; }
details[open] summary span { transform: rotate(45deg); }
details p { max-width: 680px; margin: -4px 45px 24px 0; color: var(--ink-soft); font-size: 14px; }

.final-cta { padding: 80px 0; color: var(--white); background: var(--coral); }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.final-cta .eyebrow { color: var(--deep-ink); }
.final-cta h2 { max-width: 730px; margin: 0; color: var(--deep-ink); }
.site-footer { padding: 70px 0 25px; color: rgba(255,255,255,.72); background: #102f34; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .5fr .6fr; gap: 60px; padding-bottom: 55px; }
.footer-brand { color: var(--white); }
.footer-brand .brand-mark { color: var(--lake-dark); background: var(--linen); }
.footer-brand small { color: rgba(255,255,255,.58); }
.footer-grid > div:first-child > p { max-width: 390px; margin: 24px 0 0; font-size: 14px; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; font-size: 13px; }
.footer-links strong { margin-bottom: 6px; color: var(--white); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: 11px; }
.footer-bottom p { margin: 0; }

@media (max-width: 960px) {
  .section-pad { padding: 85px 0; }
  .hero-grid, .estimate-grid, .story-grid { gap: 50px; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .section-heading { grid-template-columns: 1fr; gap: 10px; }
  .section-heading > p { max-width: 650px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card-large { grid-column: span 2; }
  .service-card:last-child { grid-column: span 2; }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .process-list li:nth-child(3) { padding-left: 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.18); }
  .process-list li:nth-child(4) { border-top: 1px solid rgba(255,255,255,.18); }
  .faq-grid { gap: 55px; }
  .story-copy { padding: 50px 35px; }
}

@media (max-width: 780px) {
  :root { --shell: min(100% - 28px, 680px); }
  .nav-wrap { min-height: 72px; }
  .menu-toggle { display: block; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav {
    position: absolute; top: 72px; left: 14px; right: 14px; display: none; align-items: stretch; flex-direction: column; gap: 0;
    padding: 14px; background: var(--white); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow);
  }
  .primary-nav.open { display: flex; }
  .primary-nav > a { min-height: 48px; display: flex; align-items: center; padding: 8px 12px; }
  .primary-nav .button { margin-top: 6px; justify-content: center; }
  .hero { padding-top: 52px; }
  .hero-grid, .estimate-grid, .story-grid, .faq-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 58px; }
  .hero-copy { position: relative; z-index: 1; }
  .hero-visual { width: min(90%, 520px); margin-inline: auto; }
  .truth-grid { grid-template-columns: 1fr; gap: 8px; }
  .service-card-large { grid-template-columns: 1fr; }
  .service-art { min-height: 300px; }
  .service-content { padding: 38px 32px; }
  .estimate-grid, .faq-grid { gap: 50px; }
  .story-grid { gap: 0; }
  .story-visual { min-height: 300px; }
  .final-cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: span 2; }
}

@media (max-width: 560px) {
  .section-pad { padding: 70px 0; }
  .brand-copy strong { font-size: 12px; }
  .brand-copy small { font-size: 9px; }
  h1 { font-size: clamp(40px, 13vw, 58px); }
  h2 { font-size: 34px; }
  .hero-lead { font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-actions .button, .estimate-copy .button { width: 100%; }
  .hero-notes { flex-direction: column; gap: 8px; }
  .floating-note { right: -8px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card-large, .service-card:last-child { grid-column: span 1; }
  .service-card { min-height: 310px; padding: 28px; }
  .service-card-large { padding: 0; }
  .service-content { padding: 34px 28px; }
  .service-index { margin-bottom: 32px; }
  .service-icon { margin-bottom: 42px; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li, .process-list li + li { padding: 28px 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.18); }
  .step-number { margin-bottom: 35px; }
  .estimate-card { padding: 28px 22px; border-radius: var(--radius-md); }
  .story-copy { padding: 42px 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-grid > div:first-child { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

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