:root {
  --navy: #334355;
  --navy-deep: #1f2b37;
  --teal: #3b8281;
  --teal-dark: #2f6c6b;
  --ink: #17212a;
  --muted: #66717c;
  --paper: #f7f6f2;
  --paper-2: #eeece6;
  --white: #ffffff;
  --line: #d9ddd9;
  --shadow: 0 22px 60px rgba(31, 43, 55, .12);
  --radius: 20px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--ink); background: var(--paper); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.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; left: 16px; top: -100px; z-index: 999; background: var(--white); padding: 10px 14px; border-radius: 8px; box-shadow: var(--shadow); }
.skip-link:focus { top: 16px; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(247,246,242,.94); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(51,67,85,.08); }
.nav-wrap { height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: 188px; height: auto; }
.primary-nav { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 650; color: var(--navy); }
.primary-nav a { text-decoration: none; }
.primary-nav a:not(.nav-cta):hover { color: var(--teal-dark); }
.nav-cta { padding: 11px 16px; background: var(--navy); color: var(--white); border-radius: 999px; transition: .2s ease; }
.nav-cta:hover { background: var(--teal-dark); transform: translateY(-1px); }
.menu-button { display: none; border: 0; background: transparent; padding: 8px; }
.menu-button span:not(.sr-only) { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; }

.hero { position: relative; overflow: hidden; padding: 86px 0 90px; }
.hero::before { content:""; position:absolute; inset: 0 0 auto auto; width: 52vw; height: 52vw; max-width: 760px; max-height:760px; background: radial-gradient(circle, rgba(59,130,129,.12), rgba(59,130,129,0) 68%); transform: translate(14%,-28%); pointer-events:none; }
.hero-grid { display:grid; grid-template-columns: 1.18fr .82fr; gap: 76px; align-items:center; }
.eyebrow { margin:0 0 14px; text-transform:uppercase; letter-spacing:.16em; font-size:12px; font-weight:800; color:var(--teal-dark); }
.eyebrow.light { color:#92cfcc; }
h1,h2,h3 { font-family: Georgia, "Times New Roman", serif; color: var(--navy-deep); line-height:1.08; margin-top:0; }
h1 { font-size: clamp(44px, 6vw, 78px); letter-spacing:-.045em; margin-bottom:24px; max-width: 850px; }
h2 { font-size: clamp(34px, 4vw, 52px); letter-spacing:-.03em; margin-bottom:18px; }
h3 { font-size: 24px; margin-bottom:12px; }
.hero-text { font-size:20px; max-width:760px; color:#43505b; margin:0 0 32px; }
.hero-actions { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:22px; }
.button { display:inline-flex; align-items:center; justify-content:center; min-height:50px; padding:13px 20px; border-radius:999px; text-decoration:none; font-weight:750; border:1px solid transparent; cursor:pointer; transition:.18s ease; }
.button:hover { transform:translateY(-1px); }
.button-primary { background:var(--teal); color:var(--white); box-shadow:0 10px 24px rgba(59,130,129,.22); }
.button-primary:hover { background:var(--teal-dark); }
.button-secondary { border-color:#b8c1c4; color:var(--navy); background:rgba(255,255,255,.45); }
.button-secondary:hover { border-color:var(--navy); background:var(--white); }
.button-full { width:100%; border:0; }
.hero-note { font-size:14px; color:var(--muted); max-width:630px; }
.hero-card { position:relative; overflow:hidden; padding:38px; background:var(--navy-deep); color:#e8eeee; border-radius:28px; box-shadow:var(--shadow); min-height:440px; }
.hero-card h2 { color:var(--white); font-size:38px; position:relative; z-index:1; }
.hero-card .card-kicker { color:#9fd1cf; text-transform:uppercase; letter-spacing:.14em; font-weight:800; font-size:12px; position:relative; z-index:1; }
.tree-watermark { position:absolute; right:-50px; bottom:-60px; width:320px; opacity:.08; }
.check-list { list-style:none; padding:0; margin:30px 0 0; position:relative; z-index:1; }
.check-list li { padding:12px 0 12px 30px; border-top:1px solid rgba(255,255,255,.10); position:relative; }
.check-list li::before { content:""; position:absolute; left:2px; top:19px; width:9px; height:9px; border:2px solid #76b7b4; border-radius:50%; }

.trust-strip { background:var(--white); border-block:1px solid var(--line); }
.trust-grid { display:grid; grid-template-columns:repeat(4,1fr); }
.trust-grid div { padding:25px 22px; border-right:1px solid var(--line); }
.trust-grid div:first-child { padding-left:0; }
.trust-grid div:last-child { border-right:0; }
.trust-grid strong { display:block; color:var(--navy); font-size:15px; }
.trust-grid span { display:block; color:var(--muted); font-size:13px; margin-top:3px; }

.section { padding:100px 0; }
.section-tint { background:var(--paper-2); }
.section-heading { max-width:750px; margin-bottom:42px; }
.section-heading > p:not(.eyebrow) { color:var(--muted); font-size:18px; }
.cards { display:grid; gap:22px; }
.three-up { grid-template-columns:repeat(3,1fr); }
.info-card { background:var(--white); border:1px solid #e1e4e1; border-radius:var(--radius); padding:30px; min-height:270px; box-shadow:0 10px 28px rgba(31,43,55,.045); }
.card-number { display:block; width:42px; height:42px; border-radius:50%; background:rgba(59,130,129,.10); color:var(--teal-dark); display:grid; place-items:center; font-weight:800; font-size:12px; margin-bottom:48px; }
.info-card p { color:var(--muted); }
.process-layout { display:grid; grid-template-columns:.8fr 1.2fr; gap:90px; }
.process-list { list-style:none; padding:0; margin:0; }
.process-list li { display:grid; grid-template-columns:58px 1fr; gap:22px; padding:26px 0; border-top:1px solid #d7d6d0; }
.process-list li:first-child { border-top:0; padding-top:0; }
.process-list li > span { width:46px; height:46px; display:grid; place-items:center; border:1px solid #a9b1b2; border-radius:50%; color:var(--teal-dark); font-weight:800; }
.process-list h3 { margin:3px 0 7px; font-size:22px; }
.process-list p { margin:0; color:var(--muted); }

.about-grid { display:grid; grid-template-columns:.7fr 1.3fr; gap:90px; align-items:center; }
.about-mark { background:var(--navy-deep); padding:56px; border-radius:28px; min-height:460px; display:grid; place-items:center; overflow:hidden; }
.about-mark img { width:min(360px,100%); }
.about-copy p:not(.eyebrow) { color:var(--muted); font-size:18px; }
.text-link { display:inline-flex; gap:8px; align-items:center; text-decoration:none; color:var(--teal-dark); font-weight:800; margin-top:10px; }
.text-link:hover { gap:13px; }
.section-dark { background:var(--navy-deep); color:#dce5e8; }
.section-dark h2 { color:var(--white); }
.split-callout { display:grid; grid-template-columns:1fr 1fr; gap:90px; align-items:start; }
.split-callout p { font-size:18px; color:#c7d0d3; }

.faq-layout { display:grid; grid-template-columns:.62fr 1.38fr; gap:90px; align-items:start; }
.faq-list details { border-top:1px solid var(--line); padding:22px 0; }
.faq-list details:last-child { border-bottom:1px solid var(--line); }
.faq-list summary { cursor:pointer; list-style:none; font-weight:750; color:var(--navy); padding-right:36px; position:relative; }
.faq-list summary::-webkit-details-marker { display:none; }
.faq-list summary::after { content:"+"; position:absolute; right:5px; top:-2px; font-size:24px; color:var(--teal-dark); font-weight:400; }
.faq-list details[open] summary::after { content:"–"; }
.faq-list details p { color:var(--muted); max-width:730px; margin-bottom:0; }

.contact-section { background:#e9efed; }
.contact-grid { display:grid; grid-template-columns:.78fr 1.22fr; gap:80px; align-items:start; }
.contact-copy { position:sticky; top:120px; }
.contact-copy > p:not(.eyebrow) { font-size:18px; color:var(--muted); }
.contact-direct { margin-top:32px; padding-top:24px; border-top:1px solid #cdd7d3; }
.contact-direct p { margin:0 0 8px; }
.contact-links { display:flex; flex-direction:column; gap:6px; }
.contact-links a { color:var(--teal-dark); font-weight:750; text-decoration:none; }
.lead-form { background:var(--white); padding:36px; border-radius:24px; box-shadow:var(--shadow); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.lead-form label { display:flex; flex-direction:column; gap:7px; margin-bottom:16px; font-size:13px; font-weight:750; color:var(--navy); }
.lead-form input, .lead-form textarea, .lead-form select { width:100%; border:1px solid #cfd6d4; border-radius:10px; padding:13px 14px; background:#fbfcfb; color:var(--ink); outline:none; transition:.15s ease; }
.lead-form input:focus, .lead-form textarea:focus, .lead-form select:focus { border-color:var(--teal); box-shadow:0 0 0 3px rgba(59,130,129,.10); }
.lead-form textarea { resize:vertical; }
.lead-form .consent { display:grid; grid-template-columns:20px 1fr; gap:10px; align-items:start; color:var(--muted); font-weight:500; }
.lead-form .consent input { width:17px; height:17px; margin-top:3px; }
.honeypot { position:absolute !important; left:-9999px !important; }
.form-status { min-height:24px; margin:12px 0 0; font-size:14px; }
.form-status.success { color:#26645e; }
.form-status.error { color:#9b3939; }
.form-privacy { color:var(--muted); font-size:12px; text-align:center; margin-bottom:0; }
.form-privacy a { color:var(--teal-dark); }

.site-footer { background:#111a22; color:#aab6bd; padding:70px 0 24px; }
.footer-grid { display:grid; grid-template-columns:1.5fr .6fr 1fr; gap:70px; }
.footer-brand img { width:220px; filter:brightness(1.55); opacity:.95; margin-bottom:18px; }
.footer-grid a { display:block; text-decoration:none; margin:8px 0; color:#d3dde1; }
.footer-grid a:hover { color:#8fc9c6; }
.footer-title { color:var(--white); font-weight:800; margin-top:0; }
.footer-small { font-size:12px; line-height:1.55; max-width:420px; }
.footer-bottom { display:flex; justify-content:space-between; gap:20px; border-top:1px solid rgba(255,255,255,.10); margin-top:50px; padding-top:22px; font-size:12px; }
.footer-bottom a { color:#d3dde1; text-decoration:none; }

.legal { padding:90px 0; }
.legal .container { max-width:850px; }
.legal h1 { font-size:54px; }
.legal h2 { font-size:28px; margin-top:38px; }
.legal p, .legal li { color:var(--muted); }

.reveal { opacity:0; transform:translateY(14px); transition:opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior:auto; } .reveal { opacity:1; transform:none; transition:none; } .button:hover { transform:none; } }

@media (max-width: 940px) {
  .menu-button { display:block; }
  .primary-nav { position:absolute; top:84px; left:0; right:0; display:none; flex-direction:column; align-items:stretch; gap:0; padding:10px 20px 24px; background:var(--paper); border-bottom:1px solid var(--line); box-shadow:0 16px 30px rgba(31,43,55,.08); }
  .primary-nav.open { display:flex; }
  .primary-nav a { padding:12px 0; }
  .primary-nav .nav-cta { margin-top:8px; text-align:center; padding:12px 16px; }
  .hero { padding-top:60px; }
  .hero-grid, .process-layout, .about-grid, .faq-layout, .contact-grid, .split-callout { grid-template-columns:1fr; gap:48px; }
  .hero-card { min-height:unset; }
  .three-up { grid-template-columns:1fr; }
  .info-card { min-height:unset; }
  .card-number { margin-bottom:28px; }
  .trust-grid { grid-template-columns:repeat(2,1fr); }
  .trust-grid div:nth-child(2) { border-right:0; }
  .trust-grid div:nth-child(-n+2) { border-bottom:1px solid var(--line); }
  .trust-grid div:nth-child(3) { padding-left:0; }
  .about-mark { min-height:340px; }
  .contact-copy { position:static; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-brand { grid-column:1 / -1; }
}

@media (max-width: 620px) {
  .container { width:min(100% - 28px, var(--max)); }
  .nav-wrap { height:74px; }
  .brand img { width:155px; }
  .primary-nav { top:74px; }
  .hero { padding:48px 0 62px; }
  h1 { font-size:46px; }
  h2 { font-size:36px; }
  .hero-text { font-size:18px; }
  .hero-actions .button { width:100%; }
  .hero-card { padding:28px; border-radius:20px; }
  .hero-card h2 { font-size:31px; }
  .trust-grid { grid-template-columns:1fr; }
  .trust-grid div, .trust-grid div:nth-child(3) { padding:18px 0; border-right:0; border-bottom:1px solid var(--line); }
  .trust-grid div:last-child { border-bottom:0; }
  .section { padding:72px 0; }
  .form-row { grid-template-columns:1fr; gap:0; }
  .lead-form { padding:24px 18px; border-radius:18px; }
  .footer-grid { grid-template-columns:1fr; gap:34px; }
  .footer-brand { grid-column:auto; }
  .footer-bottom { flex-direction:column; }
  .legal h1 { font-size:44px; }
}
