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

:root {
  --green-950: #0c2b22;
  --green-900: #163f32;
  --green-800: #205542;
  --green-100: #dcebe4;
  --gold: #f1c75b;
  --gold-soft: #fae9af;
  --sand: #f7f3e8;
  --paper: #fffdf7;
  --ink: #17221e;
  --muted: #52625b;
  --line: #c9d3cd;
  --white: #fff;
  --radius: 16px;
  --shadow: 0 18px 42px rgba(12, 43, 34, .14);
  --page: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: var(--green-800); text-decoration-thickness: 1.5px; text-underline-offset: .2em; }
a:hover { color: var(--green-950); }
::selection { background: var(--gold); color: var(--green-950); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--sand); }
::-webkit-scrollbar-thumb { background: var(--green-800); border: 3px solid var(--sand); border-radius: 10px; }
h1, h2, h3, h4 { margin: 0 0 .55em; font-family: "Manrope", sans-serif; line-height: 1.08; letter-spacing: -.03em; text-wrap: balance; }
h1 { font-size: clamp(2.65rem, 5vw, 5rem); }
h2 { font-size: clamp(2rem, 3.7vw, 3.65rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.7rem); }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.3em; }
.skip-link { position: fixed; left: 16px; top: 10px; z-index: 100; padding: 10px 16px; background: var(--gold); color: var(--green-950); transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }
.site-header {
  width: var(--page);
  min-height: 92px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 235px 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand img { width: 220px; height: auto; }
.desktop-nav { display: flex; justify-content: center; gap: clamp(18px, 2.3vw, 34px); }
.desktop-nav a, .nav-menu a { color: var(--ink); font-weight: 700; text-decoration: none; }
.desktop-nav a:hover, .desktop-nav a[aria-current="page"], .nav-menu a:hover, .nav-menu a[aria-current="page"] { color: var(--green-800); text-decoration: underline; text-decoration-color: var(--gold); text-decoration-thickness: 4px; }
.nav-menu { display: none; }
.header-phone { color: var(--green-950); font-family: "Manrope", sans-serif; font-weight: 800; text-decoration: none; text-align: right; }
.header-phone span { display: block; color: var(--muted); font-family: "DM Sans", sans-serif; font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  transition: transform .22s cubic-bezier(.16, 1, .3, 1), box-shadow .22s cubic-bezier(.16, 1, .3, 1), background-color .2s;
}
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: var(--green-950); box-shadow: 0 12px 24px rgba(241, 199, 91, .18); }
.button-gold:hover { background: #ffd76f; color: var(--green-950); box-shadow: 0 16px 30px rgba(241, 199, 91, .25); }
.button-light { background: var(--paper); color: var(--green-950); }
.button-ghost { border-color: rgba(255,255,255,.46); color: var(--white); }
.button-ghost:hover { border-color: var(--gold); color: var(--gold); }
.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background: var(--green-950);
}
.hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,43,34,.96) 0%, rgba(12,43,34,.84) 42%, rgba(12,43,34,.12) 78%); }
.hero-inner { position: relative; z-index: 1; width: var(--page); margin: 0 auto; padding: 112px 0 140px; color: var(--white); }
.hero-copy { max-width: 660px; }
.hero h1 { max-width: 12ch; font-size: clamp(3.1rem, 6vw, 5.75rem); }
.hero .lead { max-width: 57ch; color: #e8f1ec; font-size: clamp(1.08rem, 1.7vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }
.hero-note { display: flex; gap: 18px; align-items: center; margin-top: 34px; color: #d7e5de; font-size: .93rem; }
.hero-note img { width: 30px; height: 30px; color: var(--gold); }
.route-strip { position: relative; z-index: 2; width: var(--page); margin: -72px auto 0; padding: 26px 30px; border-radius: var(--radius); background: var(--gold); color: var(--green-950); box-shadow: var(--shadow); }
.route-strip { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 22px; align-items: center; }
.route-strip strong { display: block; font: 800 1.1rem/1.2 "Manrope", sans-serif; }
.route-strip span { font-size: .9rem; }
.route-strip .strip-title { font: 800 1.45rem/1.15 "Manrope", sans-serif; letter-spacing: -.02em; }
.section { padding: clamp(76px, 9vw, 118px) 0; }
.section-compact { padding: 64px 0; }
.wrap { width: var(--page); margin: 0 auto; }
.narrow { max-width: 780px; }
.section-head { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(280px, .7fr); gap: clamp(30px, 6vw, 90px); align-items: end; margin-bottom: 52px; }
.section-head p { color: var(--muted); font-size: 1.08rem; }
.service-board { display: grid; grid-template-columns: .9fr 1.1fr; border-radius: var(--radius); overflow: hidden; background: var(--green-900); color: var(--white); }
.service-intro { padding: clamp(34px, 6vw, 70px); display: flex; flex-direction: column; justify-content: space-between; min-height: 540px; }
.service-intro p { color: #d8e8df; }
.service-intro img { width: 46px; height: 46px; color: var(--gold); }
.service-list { margin: 0; padding: 0; list-style: none; background: var(--sand); color: var(--ink); }
.service-list li { display: grid; grid-template-columns: 64px 1fr; gap: 22px; padding: 26px 34px; border-bottom: 1px solid var(--line); }
.service-list li:last-child { border-bottom: 0; }
.service-list b { display: grid; place-items: center; width: 54px; height: 42px; border-radius: 999px; background: var(--gold-soft); color: var(--green-900); font-family: "Manrope", sans-serif; font-size: .82rem; }
.service-list h3 { margin-bottom: 6px; }
.service-list p { margin: 0; color: var(--muted); }
.process { background: var(--sand); }
.process-path { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.process-path::before { content: ""; position: absolute; left: 10%; right: 10%; top: 33px; height: 2px; background: var(--gold); }
.process-step { position: relative; padding-top: 86px; }
.process-step::before { content: attr(data-step); position: absolute; top: 0; left: 0; display: grid; place-items: center; width: 66px; height: 66px; border-radius: 50%; background: var(--green-900); color: var(--gold); font: 800 1.1rem/1 "Manrope", sans-serif; box-shadow: 0 12px 28px rgba(12,43,34,.18); }
.process-step p { color: var(--muted); }
.scope-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 6vw, 84px); align-items: center; }
.photo-frame { position: relative; }
.photo-frame img { width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.photo-frame figcaption { position: absolute; right: -18px; bottom: 24px; width: min(300px, 72%); padding: 20px 22px; border-radius: 14px; background: var(--gold); color: var(--green-950); font-weight: 700; box-shadow: var(--shadow); }
.check-list { padding: 0; list-style: none; }
.check-list li { position: relative; margin: 0 0 15px; padding-left: 36px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: .1em; display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--green-100); color: var(--green-900); font-weight: 800; }
.estimate-band { background: var(--green-950); color: var(--white); }
.estimate-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(34px, 7vw, 100px); align-items: start; }
.estimate-grid > p { color: #d7e5de; font-size: 1.08rem; }
.factors { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.factor { padding: 22px; border-radius: 14px; background: #174637; }
.factor strong { display: block; margin-bottom: 6px; color: var(--gold); font-family: "Manrope", sans-serif; }
.guides-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; }
.guide-card { grid-column: span 4; overflow: hidden; border-radius: var(--radius); background: var(--sand); color: var(--ink); text-decoration: none; box-shadow: 0 12px 30px rgba(12,43,34,.08); transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s; }
.guide-card:nth-child(1), .guide-card:nth-child(2) { grid-column: span 6; }
.guide-card:hover { color: var(--ink); transform: translateY(-5px); box-shadow: var(--shadow); }
.guide-card img { width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; }
.guide-card-copy { padding: 24px; }
.guide-card h3 { font-size: 1.35rem; }
.guide-card p { color: var(--muted); }
.text-link { color: var(--green-800); font-weight: 800; text-decoration: underline; text-decoration-color: var(--gold); text-decoration-thickness: 3px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { cursor: pointer; padding: 22px 44px 22px 0; list-style: none; font: 800 1.13rem/1.35 "Manrope", sans-serif; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; float: right; margin-right: -34px; color: var(--green-800); font-size: 1.6rem; line-height: .8; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { max-width: 70ch; color: var(--muted); padding-bottom: 16px; }
.final-cta { position: relative; overflow: hidden; background: var(--gold); color: var(--green-950); }
.final-cta::before { content: ""; position: absolute; width: 460px; height: 460px; right: -80px; top: -220px; border: 2px solid rgba(22,63,50,.22); border-radius: 50%; box-shadow: 0 0 0 60px rgba(22,63,50,.05), 0 0 0 120px rgba(22,63,50,.04); }
.final-grid { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: center; }
.final-grid p { max-width: 60ch; }
.page-hero { background: var(--green-950); color: var(--white); padding: clamp(80px, 10vw, 130px) 0; }
.page-hero .wrap { display: grid; grid-template-columns: 1fr .6fr; gap: 50px; align-items: end; }
.page-hero p { max-width: 58ch; color: #d7e5de; font-size: 1.12rem; }
.page-hero .page-marker { justify-self: end; width: 210px; height: 210px; border: 2px solid var(--gold); border-radius: 50%; display: grid; place-items: center; color: var(--gold); font: 800 1rem/1.3 "Manrope", sans-serif; text-align: center; padding: 28px; transform: rotate(6deg); }
.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(240px, .42fr); gap: clamp(38px, 7vw, 96px); align-items: start; }
.content-grid h2 { margin-top: 1.4em; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.content-grid h2:first-child { margin-top: 0; }
.side-panel { position: sticky; top: 24px; padding: 28px; border-radius: var(--radius); background: var(--sand); }
.side-panel h2 { font-size: 1.35rem; }
.side-panel a { display: block; margin: 12px 0; font-weight: 700; }
.contact-lines { display: grid; gap: 14px; margin-top: 25px; }
.contact-line { padding: 22px; border-radius: 14px; background: var(--sand); }
.contact-line span { display: block; color: var(--muted); font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.contact-line a { font: 800 clamp(1.05rem, 2vw, 1.3rem)/1.3 "Manrope", sans-serif; overflow-wrap: anywhere; }
.policy { max-width: 780px; }
.policy h2 { margin-top: 1.6em; font-size: 1.7rem; }
.article-hero { padding: 64px 0 0; background: var(--sand); }
.article-hero .wrap { max-width: 1000px; }
.article-hero h1 { max-width: 17ch; font-size: clamp(2.5rem, 5vw, 4.8rem); }
.article-meta { display: flex; gap: 16px; flex-wrap: wrap; color: var(--muted); }
.article-hero img { width: 100%; height: auto; aspect-ratio: 16/8; margin-top: 40px; object-fit: cover; border-radius: var(--radius) var(--radius) 0 0; }
.article-layout { display: grid; grid-template-columns: minmax(0, 740px) 230px; gap: 70px; align-items: start; }
.article-body { font-size: 1.06rem; }
.article-body > p:first-child { font-size: 1.25rem; color: var(--green-900); }
.article-body h2 { margin-top: 1.7em; font-size: clamp(1.7rem, 3vw, 2.55rem); }
.article-body h3 { margin-top: 1.5em; }
.article-body table { width: 100%; border-collapse: collapse; margin: 28px 0; font-size: .95rem; }
.article-body th, .article-body td { padding: 14px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.article-body th { background: var(--green-900); color: var(--white); font-family: "Manrope", sans-serif; }
.article-body blockquote { margin: 28px 0; padding: 24px 28px; border-radius: 14px; background: var(--gold-soft); color: var(--green-950); }
.article-body .source-note { font-size: .9rem; color: var(--muted); }
.toc { position: sticky; top: 24px; padding: 22px; border-radius: 14px; background: var(--sand); }
.toc h2 { font-size: 1rem; letter-spacing: 0; }
.toc a { display: block; margin: 10px 0; font-size: .9rem; font-weight: 700; }
.site-footer { background: var(--green-950); color: #d7e5de; }
.footer-lead { width: var(--page); margin: 0 auto; padding: 54px 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-bottom: 1px solid rgba(255,255,255,.15); }
.footer-mark { color: var(--white); font: 800 clamp(1.7rem, 3vw, 2.65rem)/1.08 "Manrope", sans-serif; letter-spacing: -.03em; }
.footer-grid { width: var(--page); margin: 0 auto; padding: 54px 0; display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 44px; }
.footer-grid img { margin-bottom: 16px; }
.footer-grid h2 { color: var(--gold); font-size: 1rem; letter-spacing: .05em; text-transform: uppercase; }
.footer-grid a { display: block; color: #d7e5de; margin: 8px 0; }
.legal-owner { color: var(--gold-soft); }
.footer-bottom { width: var(--page); margin: 0 auto; padding: 22px 0; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.15); font-size: .85rem; }
.footer-bottom p { margin: 0; }

@media (max-width: 900px) {
  :root { --page: min(100% - 30px, 720px); }
  .site-header { grid-template-columns: 1fr auto; min-height: 78px; }
  .brand img { width: 184px; }
  .header-phone { display: none; }
  .desktop-nav { display: none; }
  .nav-menu { display: block; position: relative; justify-self: end; }
  .nav-menu summary { display: grid; gap: 5px; width: 46px; height: 46px; padding: 12px; border-radius: 50%; background: var(--green-900); cursor: pointer; list-style: none; }
  .nav-menu summary::-webkit-details-marker { display: none; }
  .nav-menu summary span { height: 2px; background: var(--white); }
  .nav-menu nav { position: absolute; right: 0; top: 55px; z-index: 20; min-width: 230px; padding: 18px; border-radius: 14px; background: var(--paper); box-shadow: var(--shadow); flex-direction: column; gap: 4px; }
  .nav-menu:not([open]) nav { display: none; }
  .nav-menu a { padding: 8px; }
  .hero { min-height: 660px; }
  .hero > img { object-position: 62% center; }
  .hero::after { background: linear-gradient(90deg, rgba(12,43,34,.97), rgba(12,43,34,.77) 70%, rgba(12,43,34,.35)); }
  .route-strip { grid-template-columns: 1fr; margin-top: -54px; }
  .route-strip > div:not(:first-child) { padding-top: 14px; border-top: 1px solid rgba(12,43,34,.22); }
  .section-head, .service-board, .scope-grid, .estimate-grid, .page-hero .wrap, .content-grid, .article-layout { grid-template-columns: 1fr; }
  .process-path { grid-template-columns: 1fr; }
  .process-path::before { left: 32px; right: auto; top: 30px; bottom: 30px; width: 2px; height: auto; }
  .process-step { padding: 0 0 0 88px; min-height: 86px; }
  .guide-card, .guide-card:nth-child(1), .guide-card:nth-child(2) { grid-column: span 6; }
  .page-hero .page-marker { justify-self: start; width: 150px; height: 150px; }
  .side-panel, .toc { position: static; }
  .footer-grid { grid-template-columns: 1.4fr 1fr; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  h1 { font-size: 2.55rem; }
  .hero { min-height: 700px; }
  .hero-inner { padding: 76px 0 126px; }
  .hero h1 { font-size: 3rem; }
  .hero-note { align-items: flex-start; }
  .button { width: 100%; }
  .service-intro { min-height: 420px; }
  .service-list li { grid-template-columns: 48px 1fr; padding: 22px 18px; gap: 14px; }
  .service-list b { width: 44px; }
  .factors { grid-template-columns: 1fr; }
  .guide-card, .guide-card:nth-child(1), .guide-card:nth-child(2) { grid-column: 1 / -1; }
  .photo-frame figcaption { right: 12px; }
  .final-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 70px 0; }
  .page-hero .page-marker { display: none; }
  .article-hero img { aspect-ratio: 4/3; }
  .article-body table { display: block; overflow-x: auto; }
  .footer-lead, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
}

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