:root {
  --ink: #13211d;
  --muted: #53635d;
  --paper: #f5f3ec;
  --surface: #fffdf8;
  --line: #d9ddd6;
  --forest: #0e493b;
  --forest-dark: #08372d;
  --mint: #dcebe5;
  --signal: #d7ff72;
  --warm: #ede4d4;
  --shadow: 0 20px 60px rgba(19, 33, 29, .10);
  --radius: 20px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img, svg { max-width: 100%; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(790px, calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 10px; z-index: 20; background: white; padding: 10px; }
.skip-link:focus { left: 10px; }
.site-header { border-bottom: 1px solid rgba(19,33,29,.12); background: rgba(245,243,236,.94); }
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { text-decoration: none; font-weight: 850; letter-spacing: -.045em; font-size: 1.45rem; }
.nav-links { display: flex; align-items: center; gap: 24px; font-size: .92rem; font-weight: 650; }
.nav-links a { text-decoration: none; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--forest); text-decoration: underline; text-underline-offset: 6px; }
.nav-cta { border: 1px solid var(--ink); border-radius: 999px; padding: 9px 16px; }
.hero { padding: 104px 0 72px; overflow: hidden; position: relative; }
.hero::after { content: ""; position: absolute; width: 460px; height: 460px; right: -170px; top: -160px; border-radius: 50%; background: var(--mint); z-index: -1; }
.hero-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 76px; align-items: end; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; font-size: .76rem; text-transform: uppercase; letter-spacing: .13em; font-weight: 800; color: var(--forest); margin: 0 0 22px; }
.eyebrow::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 0 5px rgba(14,73,59,.09); }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.04em; margin-top: 0; }
h1 { font-size: clamp(3.15rem, 7vw, 6.6rem); max-width: 980px; margin-bottom: 30px; }
.page-hero h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.45rem); margin-bottom: 22px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; }
.lead { color: var(--muted); font-size: clamp(1.12rem, 2vw, 1.35rem); max-width: 760px; margin: 0 0 34px; }
.hero-note { border-left: 3px solid var(--forest); padding: 3px 0 3px 22px; color: var(--muted); font-size: .96rem; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 52px; padding: 12px 22px; border: 1px solid var(--forest); border-radius: 999px; text-decoration: none; font-weight: 800; font-size: .94rem; }
.button-primary { color: white; background: var(--forest); }
.button-primary:hover { background: var(--forest-dark); }
.button-secondary:hover { background: var(--mint); }
.section { padding: 86px 0; }
.section-tight { padding: 56px 0; }
.section-dark { background: var(--forest-dark); color: white; }
.section-dark .lead, .section-dark .muted { color: #bed0c9; }
.section-mint { background: var(--mint); }
.section-warm { background: var(--warm); }
.section-head { max-width: 790px; margin-bottom: 42px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.card-accent { background: var(--forest); color: white; border-color: var(--forest); box-shadow: var(--shadow); }
.card-accent .muted { color: #c5d4cf; }
.card p:last-child { margin-bottom: 0; }
.kicker { font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; color: var(--forest); margin-bottom: 15px; }
.card-accent .kicker { color: var(--signal); }
.muted { color: var(--muted); }
.price { font-size: 2.1rem; line-height: 1.1; letter-spacing: -.04em; font-weight: 850; margin: 12px 0; }
.clean-list { list-style: none; margin: 22px 0 0; padding: 0; }
.clean-list li { position: relative; padding: 10px 0 10px 28px; border-top: 1px solid rgba(83,99,93,.22); }
.clean-list li::before { content: "✓"; position: absolute; left: 1px; color: var(--forest); font-weight: 900; }
.card-accent .clean-list li { border-color: rgba(255,255,255,.18); }
.card-accent .clean-list li::before { color: var(--signal); }
.step { position: relative; padding-top: 54px; }
.step-number { position: absolute; top: 0; left: 0; width: 36px; height: 36px; border-radius: 50%; background: var(--signal); color: var(--ink); display: grid; place-items: center; font-weight: 900; }
.metric-strip { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.metric { padding: 26px; text-align: center; border-right: 1px solid var(--line); }
.metric:last-child { border-right: 0; }
.metric strong { display: block; font-size: 1.35rem; letter-spacing: -.03em; }
.notice { padding: 26px 28px; border-radius: 16px; background: var(--mint); border-left: 5px solid var(--forest); }
.cta-panel { background: var(--surface); border: 1px solid var(--line); border-radius: 28px; padding: clamp(32px, 6vw, 70px); box-shadow: var(--shadow); }
.contact-fields { padding: 0; list-style: none; display: grid; gap: 10px; }
.contact-fields li { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 14px 18px; }
.small { font-size: .85rem; }
.button-light { color: var(--ink); background: var(--signal); border-color: var(--signal); }
.button-light:hover, .button-signal:hover { background: #c7ee63; }
.button-signal { background: var(--signal); color: var(--ink); border-color: var(--signal); }
.holding-hero h1 { max-width: 1080px; }
.holdings-grid { align-items: stretch; }
.holding-card { display: flex; flex-direction: column; min-height: 320px; }
.holding-type { margin: 0 0 32px; color: var(--forest); font-size: .72rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.card-accent .holding-type { color: var(--signal); }
.holding-focus { margin: 0 0 18px; font-weight: 750; }
.holding-meta { display: inline-block; margin-top: auto; padding-top: 28px; font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.card-accent .holding-meta { color: #c5d4cf; }
.service-feature { align-items: center; gap: clamp(34px, 7vw, 90px); }
.offer-stack { display: grid; gap: 12px; }
.offer-line { display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 16px; padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); }
.offer-line > span { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: var(--mint); color: var(--forest); font-size: .76rem; font-weight: 900; }
.offer-line strong, .offer-line small { display: block; }
.offer-line small { color: var(--muted); margin-top: 3px; }
.offer-line b { white-space: nowrap; }
.offer-line.featured { background: var(--forest); color: white; border-color: var(--forest); box-shadow: var(--shadow); }
.offer-line.featured small { color: #c5d4cf; }
.offer-line.featured > span { background: var(--signal); color: var(--ink); }
.legacy-card { margin: 0; padding: clamp(28px, 5vw, 48px); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); font-size: 1.18rem; }
.legacy-card footer { margin-top: 28px; color: var(--muted); font-size: .72rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.package-note { margin-top: 24px; }
.site-footer { padding: 42px 0; border-top: 1px solid var(--line); }
.footer-row { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 18px 28px; color: var(--muted); font-size: .87rem; }
.footer-row strong { color: var(--ink); }
.footer-row a { text-underline-offset: 4px; }
.text-link { color: var(--forest); text-decoration: underline; text-underline-offset: 4px; }
.card-accent .text-link { color: var(--signal); }
@media (max-width: 850px) {
  .hero { padding-top: 72px; }
  .hero-grid, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 18px; }
  .grid-2 { grid-template-columns: 1fr; }
  .hero-note { margin-top: 14px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .metric-strip { grid-template-columns: 1fr; }
  .metric { border-right: 0; border-bottom: 1px solid var(--line); }
  .metric:last-child { border-bottom: 0; }
}
@media (max-width: 520px) {
  body { font-size: 16px; }
  .container, .narrow { width: min(100% - 28px, 1160px); }
  .nav { min-height: 66px; }
  .nav-cta { padding: 8px 12px; }
  .hero { padding: 58px 0 48px; }
  h1 { font-size: 2.85rem; }
  .section { padding: 64px 0; }
  .card { padding: 24px; }
  .offer-line { grid-template-columns: 32px 1fr; }
  .offer-line b { grid-column: 2; white-space: normal; }
  .actions .button { width: 100%; }
  .footer-row { align-items: flex-start; flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

.contact-form { display: grid; gap: 14px; }
.contact-form label, .assistant-form label { display: grid; gap: 6px; font-weight: 800; }
.contact-form input, .contact-form textarea, .contact-form select, .assistant-form input, .assistant-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 13px 14px; font: inherit; background: var(--surface); color: var(--ink); }
.contact-form textarea, .assistant-form textarea { resize: vertical; }
.hp { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }
.leverty-assistant { position: fixed; right: 22px; bottom: 22px; z-index: 50; font-family: inherit; }
.assistant-toggle { border: 0; border-radius: 999px; padding: 15px 20px; background: var(--signal); color: var(--ink); box-shadow: var(--shadow); font-weight: 900; cursor: pointer; }
.assistant-panel { position: absolute; right: 0; bottom: 64px; width: min(390px, calc(100vw - 32px)); max-height: min(720px, calc(100vh - 120px)); overflow: auto; background: var(--surface); border: 1px solid var(--line); border-radius: 22px; padding: 24px; box-shadow: var(--shadow); }
.assistant-close { position: absolute; right: 14px; top: 10px; border: 0; background: transparent; font-size: 1.7rem; cursor: pointer; color: var(--muted); }
.assistant-kicker { margin: 0 0 8px; color: var(--forest); text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; font-weight: 900; }
.assistant-panel h2 { font-size: 1.55rem; margin-bottom: 10px; }
.assistant-panel p { color: var(--muted); margin-top: 0; }
.assistant-choices { display: grid; gap: 8px; margin: 14px 0 18px; }
.assistant-choices button { text-align: left; border: 1px solid var(--line); border-radius: 12px; padding: 12px; background: var(--mint); color: var(--ink); font-weight: 850; cursor: pointer; }
.assistant-form { display: grid; gap: 11px; }
.assistant-form label span { color: var(--muted); font-weight: 600; }
@media (max-width: 520px) { .leverty-assistant { right: 14px; bottom: 14px; } .assistant-toggle { padding: 13px 16px; } }
