@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/dm-sans-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url('/assets/fonts/manrope-latin.woff2') format('woff2');
}

:root {
  --paper: #fbf7ef;
  --paper-deep: #f0e8da;
  --ink: #15211d;
  --muted: #59635f;
  --green: #17352c;
  --green-2: #245b48;
  --mint: #cce8d5;
  --red: #b92724;
  --red-dark: #8f1f1d;
  --yellow: #f5bf43;
  --white: #ffffff;
  --line: #d9d2c6;
  --shadow: 0 18px 44px rgba(20, 33, 29, .13);
  --radius: 16px;
  --display: 'Manrope', sans-serif;
  --body: 'DM Sans', sans-serif;
  --shell: min(1160px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body::selection { color: var(--white); background: var(--red); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-underline-offset: .22em; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -100px; z-index: 999; background: var(--ink); color: white; padding: 10px 14px; border-radius: 8px; }
.skip-link:focus { top: 16px; }
.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; }

h1, h2, h3, h4 { font-family: var(--display); line-height: 1.08; letter-spacing: -.035em; margin: 0 0 .55em; text-wrap: balance; }
h1 { font-size: clamp(2.55rem, 6vw, 5.15rem); max-width: 15ch; }
h2 { font-size: clamp(2rem, 4vw, 3.75rem); max-width: 18ch; }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
p { margin: 0 0 1.15em; }
.lead { font-size: clamp(1.08rem, 1.7vw, 1.3rem); max-width: 62ch; color: var(--muted); }
.section { padding-block: clamp(68px, 9vw, 112px); }
.section-tight { padding-block: clamp(48px, 7vw, 80px); }
.section-ink { color: var(--white); background: var(--green); }
.section-paper-deep { background: var(--paper-deep); }
.section-red { color: var(--white); background: var(--red); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: 44px; }
.section-head p { max-width: 55ch; margin: 0; color: var(--muted); }
.section-ink .section-head p { color: #c8d6d0; }

.utility-bar { background: var(--green); color: #dcebe5; font-size: .86rem; }
.utility-inner { min-height: 36px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.site-header { position: sticky; top: 0; z-index: 40; background: rgba(251,247,239,.96); border-bottom: 1px solid rgba(21,33,29,.13); backdrop-filter: blur(14px); }
.nav-wrap { min-height: 88px; display: flex; align-items: center; gap: 28px; }
.brand { display: block; margin-right: auto; }
.brand img { width: 220px; }
.primary-nav { display: flex; align-items: center; gap: 24px; font-family: var(--display); font-weight: 700; font-size: .94rem; }
.primary-nav a { text-decoration: none; padding-block: 10px; position: relative; }
.primary-nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: 5px; height: 2px; background: var(--red); transition: right .25s ease; }
.primary-nav a:hover::after, .primary-nav a[aria-current='page']::after { right: 0; }
.nav-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.nav-toggle span:not(.sr-only) { width: 25px; height: 2px; background: var(--ink); display: block; margin: 5px 0; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 24px; border-radius: 999px; background: var(--red); color: var(--white); font-family: var(--display); font-weight: 800; text-decoration: none; box-shadow: 0 8px 22px rgba(185,39,36,.24); transition: transform .22s ease, background .22s ease, box-shadow .22s ease; }
.button:hover { transform: translateY(-2px); background: var(--red-dark); box-shadow: 0 12px 28px rgba(143,31,29,.3); }
.button-small { min-height: 45px; padding-inline: 18px; font-size: .88rem; }
.button-light { background: var(--white); color: var(--green); box-shadow: 0 8px 22px rgba(0,0,0,.18); }
.button-light:hover { background: var(--paper); color: var(--green); }
.button-secondary { background: var(--green); box-shadow: 0 8px 22px rgba(23,53,44,.2); }
.button-secondary:hover { background: var(--green-2); }
.text-link { font-family: var(--display); font-weight: 800; color: var(--green); }
.text-link-light { color: var(--white); }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 30px; }

.hero { overflow: hidden; padding: clamp(54px, 8vw, 96px) 0 64px; position: relative; }
.hero::before { content: ''; position: absolute; width: 240px; height: 240px; right: -80px; top: 35px; border-radius: 50%; background: var(--yellow); opacity: .34; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: clamp(36px, 6vw, 84px); }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 em { font-style: normal; color: var(--red); }
.hero-copy .lead { max-width: 54ch; }
.hero-points { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.hero-points span { border-left: 1px solid var(--red); padding: 3px 10px; font-weight: 700; font-size: .88rem; }
.hero-visual { position: relative; }
.hero-visual::before { content: ''; position: absolute; inset: 20px -20px -20px 26px; border-radius: 28px; background: var(--green); transform: rotate(2deg); }
.hero-visual img { position: relative; z-index: 1; aspect-ratio: 16/13; object-fit: cover; border-radius: 28px; box-shadow: var(--shadow); }
.sort-tag { position: absolute; z-index: 2; right: -10px; bottom: 20px; width: 174px; padding: 16px 18px; color: white; background: var(--red); border-radius: 14px; transform: rotate(-3deg); box-shadow: 0 12px 28px rgba(21,33,29,.25); font-family: var(--display); font-weight: 800; line-height: 1.2; }
.sort-tag small { display: block; font-family: var(--body); font-size: .74rem; font-weight: 600; opacity: .88; margin-top: 5px; }
.trust-strip { border-block: 1px solid var(--line); background: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 26px 22px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; font-family: var(--display); font-size: 1.02rem; }
.trust-item span { color: var(--muted); font-size: .9rem; }

.service-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 64px; }
.service-intro { position: sticky; top: 130px; align-self: start; }
.service-list { border-top: 1px solid #466259; }
.service-row { display: grid; grid-template-columns: 56px 1fr auto; gap: 24px; align-items: start; padding: 30px 0; border-bottom: 1px solid #466259; }
.service-row img { width: 46px; height: 46px; padding: 10px; background: var(--mint); border-radius: 14px; }
.service-row p { margin: 0; color: #c8d6d0; }
.service-row a { color: var(--white); font-weight: 800; white-space: nowrap; }

.process-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; }
.process-track::before { content: ''; position: absolute; left: 18px; right: 18px; top: 18px; height: 3px; background: var(--red); transform: scaleX(.08); transform-origin: left; transition: transform 1s cubic-bezier(.2,.75,.25,1); }
.process-track.is-active::before { transform: scaleX(1); }
.process-step { position: relative; padding: 0 12px 0 0; }
.process-step .step-marker { position: relative; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 4px; background: var(--red); color: var(--white); box-shadow: 0 0 0 7px var(--paper-deep); font-family: var(--display); font-weight: 800; margin-bottom: 24px; }
.process-track.is-active .process-step .step-marker { animation: route-settle .42s cubic-bezier(.2,.8,.3,1.2) both; }
.process-track.is-active .process-step:nth-child(2) .step-marker { animation-delay: .28s; }
.process-track.is-active .process-step:nth-child(3) .step-marker { animation-delay: .56s; }
@keyframes route-settle { from { transform: translateX(-9px) scale(.84); } to { transform: translateX(0) scale(1); } }
.process-step p { color: var(--muted); margin-bottom: 0; }

.split-feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 7vw, 90px); align-items: center; }
.feature-media { position: relative; }
.feature-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 24px; box-shadow: var(--shadow); }
.feature-media::after { content: ''; position: absolute; width: 72px; height: 72px; right: -18px; top: -18px; border-radius: 18px; background: var(--yellow); transform: rotate(9deg); z-index: -1; }
.check-list { list-style: none; padding: 0; margin: 28px 0; }
.check-list li { position: relative; padding: 12px 0 12px 34px; border-bottom: 1px solid var(--line); }
.check-list li::before { content: '✓'; position: absolute; left: 0; top: 11px; width: 22px; height: 22px; display: grid; place-items: center; color: white; background: var(--green); border-radius: 50%; font-size: .78rem; font-weight: 800; }
.note { padding: 20px 22px; border-radius: 14px; background: var(--mint); color: var(--green); }
.note strong { font-family: var(--display); }

.estimate-board { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 34px; }
.estimate-board div { padding: 12px 22px; border-left: 1px solid var(--yellow); }
.estimate-board strong { display: block; font-family: var(--display); font-size: 1.1rem; margin-bottom: 4px; }
.estimate-board span { color: #c8d6d0; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card { background: var(--white); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; display: flex; flex-direction: column; }
.blog-card.featured { grid-column: span 2; display: grid; grid-template-columns: 1.08fr .92fr; }
.blog-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.blog-card.featured img { height: 100%; }
.blog-card-content { min-width: 0; padding: 25px; display: flex; flex-direction: column; align-items: start; }
.blog-card h2 { max-width: none; font-size: clamp(1.25rem, 2vw, 1.875rem); line-height: 1.14; overflow-wrap: anywhere; }
.blog-card h3 { font-size: clamp(1.25rem, 2.2vw, 1.8rem); }
.blog-card p { color: var(--muted); }
.blog-card .text-link { margin-top: auto; }
.meta { display: flex; flex-wrap: wrap; gap: 8px 14px; color: var(--muted); font-size: .85rem; margin-bottom: 14px; }

.faq-list { max-width: 900px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { list-style: none; cursor: pointer; padding: 24px 50px 24px 0; font-family: var(--display); font-size: 1.12rem; font-weight: 800; position: relative; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; position: absolute; right: 10px; top: 18px; font-size: 1.8rem; color: var(--red); transition: transform .2s ease; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-answer { max-width: 70ch; padding: 0 44px 22px 0; color: var(--muted); }

.page-hero { padding-block: clamp(58px, 8vw, 94px); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; width: 190px; height: 190px; right: 8vw; top: -75px; border-radius: 42%; background: var(--mint); transform: rotate(18deg); }
.page-hero h1 { font-size: clamp(2.6rem, 5.6vw, 4.8rem); }
.page-hero .lead { margin-bottom: 0; }
.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(44px, 7vw, 84px); align-items: start; }
.prose { max-width: 76ch; overflow-wrap: anywhere; }
.prose h2 { margin-top: 1.6em; font-size: clamp(1.75rem, 3.5vw, 2.6rem); }
.prose h3 { margin-top: 1.55em; }
.prose ul, .prose ol { padding-left: 1.25em; }
.prose li { margin-bottom: .55em; }
.prose a { color: var(--green-2); font-weight: 700; }
.prose img { border-radius: 20px; margin: 30px 0; }
.prose blockquote { margin: 30px 0; padding: 22px 26px; border-radius: 14px; background: var(--paper-deep); font-size: 1.08rem; }
.prose table { width: 100%; max-width: 100%; border-collapse: collapse; margin: 28px 0; font-size: .95rem; }
.prose th, .prose td { padding: 14px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.prose th { background: var(--green); color: white; font-family: var(--display); }
.sidebar { position: sticky; top: 130px; }
.side-panel { padding: 26px; border-radius: var(--radius); background: var(--green); color: white; }
.side-panel h2 { font-size: 1.55rem; }
.side-panel p { color: #c8d6d0; }
.side-panel .button { width: 100%; margin-bottom: 14px; }
.side-links { margin-top: 18px; padding-top: 18px; border-top: 1px solid #466259; }
.side-links a { display: block; margin: 9px 0; color: white; }

.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact-card { padding: 30px; border-radius: var(--radius); background: var(--white); box-shadow: 0 10px 30px rgba(21,33,29,.08); }
.contact-card img { width: 48px; height: 48px; padding: 10px; background: var(--mint); border-radius: 14px; margin-bottom: 24px; }
.contact-card a { color: var(--green); font-family: var(--display); font-weight: 800; overflow-wrap: anywhere; }
.hours-table { width: 100%; max-width: 620px; border-collapse: collapse; }
.hours-table td { padding: 13px 0; border-bottom: 1px solid var(--line); }
.hours-table td:last-child { text-align: right; font-weight: 800; }

.legal { max-width: 76ch; }
.legal h2 { font-size: 1.7rem; margin-top: 1.8em; }

.article-header { padding: clamp(56px, 8vw, 92px) 0 42px; }
.article-header h1 { max-width: 18ch; font-size: clamp(2.5rem, 5vw, 4.5rem); }
.article-deck { max-width: 65ch; font-size: 1.2rem; color: var(--muted); }
.article-hero { width: var(--shell); margin: 0 auto; }
.article-hero img { width: 100%; max-height: 620px; aspect-ratio: 16/8; object-fit: cover; border-radius: 24px; box-shadow: var(--shadow); }
.article-layout { display: grid; grid-template-columns: minmax(0, 760px) 280px; justify-content: space-between; gap: 60px; padding-block: 64px 100px; }
.source-list { font-size: .9rem; color: var(--muted); }
.source-list li { margin-bottom: 8px; }

.final-cta { padding-block: 58px; background: var(--red); color: white; }
.final-cta-grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; }
.final-cta h2 { margin-bottom: .25em; }
.final-cta p { margin: 0; max-width: 56ch; color: #ffe5df; }
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.site-footer { padding: 66px 0 22px; color: #dcebe5; background: #10271f; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 48px; }
.footer-brand img { width: 220px; margin-bottom: 20px; }
.footer-brand p { max-width: 35ch; color: #aebfb8; }
.site-footer h2 { font-size: 1rem; letter-spacing: .03em; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: inherit; }
.footer-bottom { margin-top: 46px; padding-top: 20px; border-top: 1px solid #345047; display: flex; justify-content: space-between; gap: 20px; color: #91a69d; font-size: .86rem; }

.error-page { min-height: 64vh; display: grid; place-items: center; text-align: center; padding: 80px 20px; }
.error-code { font: 800 clamp(5rem, 20vw, 12rem)/.8 var(--display); color: var(--red); letter-spacing: -.08em; }

@media (max-width: 980px) {
  .header-call { display: none; }
  .hero-grid, .split-feature, .service-layout, .content-grid, .article-layout { grid-template-columns: 1fr; }
  .service-intro, .sidebar { position: static; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.2fr repeat(2, 1fr); }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 28px, 1160px); }
  .hours-short { display: none; }
  .nav-wrap { min-height: 74px; }
  .brand img { width: 188px; }
  .nav-toggle { display: block; }
  .primary-nav { position: absolute; left: 14px; right: 14px; top: calc(100% + 8px); display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 14px; border-radius: 14px; background: var(--white); box-shadow: var(--shadow); }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: 12px; }
  .hero { padding-top: 46px; }
  .hero-grid { gap: 42px; }
  .hero-visual::before { inset: 12px -7px -12px 15px; }
  .sort-tag { right: 8px; width: 155px; }
  .section-head, .final-cta-grid { display: block; }
  .section-head p { margin-top: 18px; }
  .process-track, .estimate-board, .blog-grid { grid-template-columns: 1fr; }
  .process-track::before { left: 18px; right: auto; top: 18px; bottom: 18px; width: 3px; height: auto; transform: scaleY(.08); transform-origin: top; }
  .process-track.is-active::before { transform: scaleY(1); }
  .process-step { padding-left: 58px; }
  .process-step .step-marker { position: absolute; left: 0; top: 0; }
  .blog-card.featured { grid-column: auto; display: flex; }
  .service-row { grid-template-columns: 46px 1fr; gap: 16px; }
  .service-row > a { grid-column: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .cta-actions { align-items: stretch; margin-top: 26px; }
  .article-hero img { aspect-ratio: 4/3; }
  .prose table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .prose th, .prose td { min-width: 145px; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.45rem; }
  h2 { font-size: 2rem; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .button-row { align-items: stretch; flex-direction: column; }
  .button-row .button { width: 100%; }
  .hero-points { display: grid; grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
}

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