:root {
  --ink: #0b1220;
  --ink-2: #121b2c;
  --paper: #f4f0e8;
  --paper-2: #ebe6dc;
  --white: #ffffff;
  --muted: #707887;
  --line: rgba(11, 18, 32, .14);
  --accent: #b99a62;
  --accent-soft: #d7c39a;
  --max: 1240px;
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto 0;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: -.02em;
}

.brand-mark {
  width: 31px;
  height: 24px;
  display: inline-grid;
  align-content: end;
  gap: 3px;
}
.brand-mark span {
  display: block;
  height: 3px;
  background: var(--accent-soft);
  transform-origin: left center;
  border-radius: 999px;
}
.brand-mark span:nth-child(1) { width: 17px; transform: rotate(-14deg); }
.brand-mark span:nth-child(2) { width: 24px; transform: rotate(-8deg); }
.brand-mark span:nth-child(3) { width: 30px; }
.brand-mark.small { transform: scale(.8); transform-origin: left center; }

.nav { display: flex; align-items: center; gap: 30px; font-size: 14px; }
.nav > a:not(.nav-cta) { opacity: .76; }
.nav > a:hover { opacity: 1; }
.nav-cta {
  padding: 11px 17px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 790px;
  padding: 180px max(24px, calc((100vw - var(--max)) / 2)) 100px;
  background:
    radial-gradient(circle at 20% 10%, rgba(185,154,98,.10), transparent 28%),
    linear-gradient(135deg, #09101c 0%, #0d1727 55%, #111d30 100%);
  color: white;
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 70px;
  align-items: center;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}
.hero-orb-one {
  width: 500px; height: 500px;
  right: -210px; top: 70px;
  border: 1px solid rgba(215,195,154,.2);
}
.hero-orb-two {
  width: 730px; height: 730px;
  right: -320px; top: -60px;
  border: 1px solid rgba(215,195,154,.08);
}

.hero-copy, .hero-card { position: relative; z-index: 2; }
.eyebrow, .section-label, .card-kicker {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 700;
}
.eyebrow { color: var(--accent-soft); margin: 0 0 24px; }

h1, h2, h3 { font-family: "Manrope", sans-serif; margin-top: 0; }
h1 {
  font-size: clamp(58px, 7vw, 102px);
  max-width: 900px;
  line-height: .98;
  letter-spacing: -.055em;
  margin-bottom: 32px;
  font-weight: 600;
}
h1 span { color: var(--accent-soft); font-weight: 500; }

.hero-lead {
  max-width: 730px;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
  color: rgba(255,255,255,.72);
  margin: 0 0 38px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  min-height: 52px;
  padding: 0 23px;
  border: 0;
  transition: transform .2s ease, opacity .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--accent-soft); color: var(--ink); font-weight: 700; }
.button-secondary { border: 1px solid rgba(255,255,255,.25); color: white; }

.hero-card {
  align-self: end;
  margin-bottom: 18px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(16px);
}
.card-kicker { color: var(--accent-soft); }
.hero-card h2 {
  font-size: 28px;
  line-height: 1.18;
  letter-spacing: -.03em;
  font-weight: 600;
  margin: 45px 0 38px;
}
.metric { display: grid; grid-template-columns: 90px 1fr; align-items: end; gap: 18px; }
.metric strong { font-family: "Manrope"; font-size: 48px; line-height: 1; font-weight: 500; }
.metric span { color: rgba(255,255,255,.6); line-height: 1.35; font-size: 14px; }
.metric-divider { height: 1px; background: rgba(255,255,255,.12); margin: 27px 0; }
.small-copy { color: rgba(255,255,255,.58); line-height: 1.6; font-size: 14px; margin: 0; }

.statement {
  width: min(calc(100% - 48px), 1050px);
  margin: 0 auto;
  padding: 110px 0;
}
.statement p {
  margin: 0;
  font-family: "Manrope";
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.16;
  letter-spacing: -.045em;
}

.section {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 105px 0;
}
.section-label { color: #897451; margin-bottom: 50px; }
.section-label.light { color: var(--accent-soft); }

.two-col { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.two-col h2, .contact-copy h2 {
  font-size: clamp(38px, 4.5vw, 66px);
  line-height: 1.03;
  letter-spacing: -.045em;
  font-weight: 600;
  margin-bottom: 0;
}
.prose { max-width: 650px; }
.prose p {
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1.75;
  color: #47505d;
}

.section-dark {
  width: 100%;
  max-width: none;
  background: var(--ink);
  color: white;
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
}
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card {
  min-height: 350px;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.11);
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
  display: flex;
  flex-direction: column;
}
.card-number { color: var(--accent-soft); font-size: 12px; letter-spacing: .12em; }
.service-card h3 {
  margin: auto 0 22px;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -.03em;
}
.service-card p { margin: 0; color: rgba(255,255,255,.58); line-height: 1.65; }

.quote-band {
  padding: 115px 24px;
  text-align: center;
  background: var(--paper-2);
}
.quote-rule { width: 50px; height: 2px; margin: 0 auto 35px; background: var(--accent); }
.quote-band blockquote {
  max-width: 900px;
  margin: 0 auto 24px;
  font-family: "Manrope";
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.16;
  letter-spacing: -.04em;
}
.quote-band p { color: var(--muted); }

.contact-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
}
.contact-copy > p { color: #5b6470; font-size: 17px; line-height: 1.65; max-width: 520px; }
.contact-person { margin-top: 55px; display: grid; gap: 6px; }
.contact-person strong { font-size: 18px; }
.contact-person span { color: var(--muted); }
.contact-person a { margin-top: 8px; text-decoration: underline; text-underline-offset: 4px; }

.contact-form {
  background: white;
  padding: 34px;
  border-radius: var(--radius);
  box-shadow: 0 22px 70px rgba(11,18,32,.08);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: grid; gap: 9px; margin-bottom: 18px; }
label > span { font-size: 13px; font-weight: 600; }
input, textarea {
  width: 100%;
  border: 1px solid #d5d8dd;
  border-radius: 12px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fbfbfa;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
input:focus, textarea:focus {
  border-color: #9d865f;
  box-shadow: 0 0 0 3px rgba(185,154,98,.12);
}
textarea { resize: vertical; min-height: 145px; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 8px; }
.privacy-note { color: var(--muted); font-size: 12px; line-height: 1.4; margin: 0; max-width: 260px; }
.submit-button { min-width: 160px; gap: 10px; }
.submit-button[disabled] { opacity: .65; cursor: wait; }
.form-status { min-height: 22px; font-size: 14px; margin-top: 16px; }
.form-status.success { color: #2f6f4e; }
.form-status.error { color: #9a3e3e; }

.disclaimer {
  border-top: 1px solid var(--line);
  padding: 32px 24px;
}
.disclaimer p {
  max-width: var(--max);
  margin: 0 auto;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.site-footer {
  background: #070d16;
  color: white;
  padding: 34px max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  font-size: 13px;
}
.footer-brand { display: flex; align-items: center; gap: 7px; }
.site-footer p { margin: 0; color: rgba(255,255,255,.48); text-align: center; }
.site-footer > a { text-align: right; color: rgba(255,255,255,.7); }

@media (max-width: 900px) {
  .nav > a:not(.nav-cta) { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 155px; }
  .hero-card { max-width: 520px; margin-top: 35px; }
  .two-col, .contact-section { grid-template-columns: 1fr; gap: 45px; }
  .cards { grid-template-columns: 1fr; }
  .service-card { min-height: 260px; }
  .service-card h3 { margin-top: 80px; }
}

@media (max-width: 620px) {
  .site-header { width: calc(100% - 30px); min-height: 76px; }
  .brand-text { font-size: 15px; }
  .nav-cta { padding: 9px 12px; font-size: 12px; }
  .hero { padding-left: 18px; padding-right: 18px; padding-bottom: 70px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-card { padding: 24px; }
  .statement, .section { width: calc(100% - 36px); }
  .statement { padding: 80px 0; }
  .section { padding: 78px 0; }
  .section-dark { width: 100%; padding-left: 18px; padding-right: 18px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 22px; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .site-footer { grid-template-columns: 1fr; text-align: left; }
  .site-footer p, .site-footer > a { text-align: left; }
}


.form-intro { margin-bottom: 28px; }
.form-intro h3 {
  margin: 7px 0 8px;
  font-size: 27px;
  letter-spacing: -.03em;
}
.form-intro p { margin: 0; color: var(--muted); line-height: 1.55; }
.form-step {
  color: #897451;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
}
fieldset { border: 0; margin: 0; padding: 0; }
.choice-group { margin-bottom: 28px; }
.choice-group legend {
  width: 100%;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
}
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.choice-card { position: relative; margin: 0; }
.choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.choice-card > span {
  display: block;
  min-height: 112px;
  padding: 16px;
  border: 1px solid #d8d9dc;
  border-radius: 14px;
  background: #fbfbfa;
  transition: .2s ease;
}
.choice-card strong { display: block; margin-bottom: 6px; font-size: 14px; }
.choice-card small { display: block; color: var(--muted); font-size: 12px; line-height: 1.45; }
.choice-card input:checked + span {
  border-color: #a58859;
  background: #f5efe2;
  box-shadow: inset 0 0 0 1px #a58859;
}
.pill-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.pill-choice { position: relative; margin: 0; }
.pill-choice input { position: absolute; opacity: 0; pointer-events: none; }
.pill-choice span {
  display: inline-flex;
  padding: 10px 14px;
  border: 1px solid #d8d9dc;
  border-radius: 999px;
  background: #fbfbfa;
  font-size: 13px;
  transition: .2s ease;
}
.pill-choice input:checked + span {
  border-color: #a58859;
  background: #f5efe2;
  box-shadow: inset 0 0 0 1px #a58859;
}
select {
  width: 100%;
  border: 1px solid #d5d8dd;
  border-radius: 12px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fbfbfa;
  outline: none;
}
.guidance-note {
  margin: 22px 0 8px;
  padding: 16px 18px;
  border-radius: 14px;
  background: #f1ede4;
  border-left: 3px solid var(--accent);
}
.guidance-note strong { display: block; font-size: 13px; margin-bottom: 5px; }
.guidance-note p { margin: 0; color: #616873; font-size: 12px; line-height: 1.55; }

@media (max-width: 620px) {
  .choice-grid { grid-template-columns: 1fr; }
  .choice-card > span { min-height: auto; }
}

.footer-links{display:flex;justify-content:flex-end;align-items:center;gap:18px;flex-wrap:wrap}.footer-links a{color:rgba(255,255,255,.72)}.footer-links a:hover{color:#fff}
.legal-page{background:#f4f0e8;color:#0b1220}.legal-header{min-height:88px;padding:0 max(24px,calc((100vw - var(--max))/2));display:flex;align-items:center;justify-content:space-between;background:#0b1220;color:#fff}.legal-back{font-size:14px;color:rgba(255,255,255,.72)}.legal-shell{width:min(calc(100% - 48px),980px);margin:0 auto;padding:86px 0 110px}.legal-hero{padding-bottom:48px;border-bottom:1px solid rgba(11,18,32,.12);margin-bottom:54px}.legal-hero .eyebrow{color:#897451;margin-bottom:16px}.legal-hero h1{color:#0b1220;max-width:none;font-size:clamp(48px,7vw,78px);margin-bottom:18px}.legal-updated{color:#707887;margin:0}.legal-content{font-size:17px;line-height:1.75;color:#3d4653}.legal-content h2{color:#0b1220;font-size:26px;letter-spacing:-.025em;margin:48px 0 14px}.legal-content p{margin:0 0 18px}.legal-content ul{margin:0 0 22px;padding-left:22px}.legal-content li{margin:8px 0}.legal-content a{text-decoration:underline;text-underline-offset:3px}
.legal-consent{position:fixed;inset:0;z-index:9999;background:rgba(5,10,18,.84);backdrop-filter:blur(12px);display:flex;align-items:center;justify-content:center;padding:24px}.legal-consent.hidden{display:none}.legal-consent-card{width:min(100%,560px);background:#fff;border-radius:22px;padding:34px;box-shadow:0 28px 90px rgba(0,0,0,.35)}.consent-mark{width:48px;display:grid;gap:5px;margin-bottom:22px}.consent-mark span{height:5px;background:#d7c39a;border-radius:999px;transform-origin:left center}.consent-mark span:nth-child(1){width:26px;transform:rotate(-14deg)}.consent-mark span:nth-child(2){width:36px;transform:rotate(-8deg)}.consent-mark span:nth-child(3){width:46px}.consent-kicker{text-transform:uppercase;letter-spacing:.14em;font-size:11px;font-weight:700;color:#897451;margin:0 0 8px}.legal-consent-card h2{font-size:34px;letter-spacing:-.035em;margin:0 0 16px}.legal-consent-card>p{color:#5b6470;line-height:1.6}.consent-check{display:flex!important;gap:12px!important;align-items:flex-start;margin:22px 0!important}.consent-check input{width:18px;height:18px;margin-top:2px;flex:0 0 auto}.consent-check span{font-size:13px;line-height:1.55}.consent-check a{text-decoration:underline;text-underline-offset:3px}.consent-button{width:100%}.consent-button:disabled{opacity:.45;cursor:not-allowed}body.consent-open{overflow:hidden}
@media(max-width:700px){.footer-links{justify-content:flex-start}.legal-shell{width:calc(100% - 36px);padding:58px 0 80px}.legal-header{padding-left:18px;padding-right:18px;min-height:76px}.legal-consent-card{padding:26px}}
