﻿:root {
  --ink: #1C1917;
  --paper: #FAF9F6;
  --warm: #F5F1EB;
  --gold: #A67C2E;
  --gold-bg: #F3EBDA;
  --stone: #78716C;
  --light: #D6D3CD;
  --border: #E7E5E0;
  --white: #FFFFFF;
  --red-bg: #FDF0EE;
  --red: #9B3728;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Karla', sans-serif;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.6;
}

.serif { font-family: 'Libre Caslon Text', Georgia, serif; }

a { color: inherit; text-decoration: none; }
img { display: block; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 32px; }

/* ====================== NAV ====================== */
.nav-bar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,249,246,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Karla', sans-serif;
  font-weight: 700; font-size: 22px; letter-spacing: .02em;
}
.nav-brand img { height: 38px; width: 38px; object-fit: contain; }
.nav-right { display: flex; align-items: center; gap: 24px; }
.nav-link { font-size: 14px; color: var(--stone); font-weight: 500; }
.nav-cta {
  font-size: 13px; font-weight: 700; color: var(--white);
  background: var(--ink); padding: 9px 20px; border-radius: 6px;
}

/* ====================== HERO ====================== */
.hero { padding: 80px 0 64px; }
.hero-inner {
  display: grid; grid-template-columns: 1fr 380px; gap: 56px; align-items: start;
}
.hero-label {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase;
  color: var(--gold); background: var(--gold-bg);
  padding: 6px 12px; border-radius: 4px; margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Libre Caslon Text', Georgia, serif;
  font-size: 46px; font-weight: 700; line-height: 1.12;
  letter-spacing: -.02em; color: var(--ink);
}
.hero-desc {
  font-size: 17px; line-height: 1.7; color: var(--stone);
  margin-top: 20px; max-width: 480px;
}
.hero-btns { display: flex; gap: 10px; margin-top: 28px; }
.btn-dark {
  display: inline-block; font-size: 14px; font-weight: 700;
  color: var(--white); background: var(--ink);
  padding: 13px 24px; border-radius: 8px;
}
.btn-outline {
  display: inline-block; font-size: 14px; font-weight: 500;
  color: var(--ink); border: 1px solid var(--border);
  background: var(--white); padding: 13px 24px; border-radius: 8px;
}
.hero-note {
  font-size: 13px; color: var(--stone); margin-top: 16px;
}

/* HERO ASIDE */
.hero-aside { display: flex; flex-direction: column; gap: 14px; }
.aside-alert {
  background: var(--ink); color: var(--white);
  border-radius: 14px; padding: 22px;
}
.aside-alert-tag {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: #E5C068; margin-bottom: 10px;
}
.aside-alert p {
  font-size: 14px; line-height: 1.65; color: rgba(255,255,255,.7); margin: 0;
}
.aside-alert p strong { color: #E5C068; }
.aside-nums {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.aside-num {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 18px;
}
.aside-num b {
  display: block; font-family: 'Libre Caslon Text', Georgia, serif;
  font-size: 32px; color: var(--gold); line-height: 1;
}
.aside-num span { font-size: 13px; color: var(--stone); display: block; margin-top: 4px; }

/* ====================== STRIP ====================== */
.strip {
  background: var(--ink); padding: 36px 0;
}
.strip-inner {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(255,255,255,.08);
}
.strip-item { background: var(--ink); padding: 20px 28px; }
.strip-item b {
  display: block; font-family: 'Libre Caslon Text', Georgia, serif;
  font-size: 36px; color: var(--gold); line-height: 1;
}
.strip-item span { font-size: 14px; color: rgba(255,255,255,.45); display: block; margin-top: 6px; }

/* ====================== SECTION ====================== */
.section { padding: 72px 0; }
.section-on-white { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-label {
  font-size: 12px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.section-title {
  font-family: 'Libre Caslon Text', Georgia, serif;
  font-size: 34px; font-weight: 700; line-height: 1.15;
  letter-spacing: -.015em;
}
.section-desc {
  font-size: 16px; line-height: 1.7; color: var(--stone);
  margin-top: 12px; max-width: 480px;
}

/* ====================== SERVICES ====================== */
.svc-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden; margin-top: 36px;
}
.svc {
  background: var(--white); padding: 32px;
}
.svc-num {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.svc h3 {
  font-family: 'Karla', sans-serif;
  font-size: 18px; font-weight: 700; line-height: 1.25;
  margin-bottom: 10px;
}
.svc p { font-size: 15px; line-height: 1.7; color: var(--stone); margin: 0; }

/* ====================== DATA ====================== */
.data-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start; margin-top: 36px;
}
.data-text { }
.data-text p { font-size: 15px; line-height: 1.75; color: var(--stone); }
.bars { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.bar-item {}
.bar-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 6px;
}
.bar-head span { font-size: 14px; font-weight: 500; color: var(--ink); }
.bar-head b { font-size: 14px; font-weight: 700; color: var(--gold); }
.bar-track { height: 8px; background: var(--warm); border-radius: 4px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--gold); border-radius: 4px; }
.bar-src { font-size: 12px; color: var(--light); margin-top: 16px; }

.stat-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stat-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px;
}
.stat-card b {
  display: block; font-family: 'Libre Caslon Text', Georgia, serif;
  font-size: 36px; color: var(--gold); line-height: 1;
}
.stat-card p { font-size: 14px; color: var(--stone); margin: 8px 0 0; line-height: 1.5; }
.stat-card .src { font-size: 11px; color: var(--light); margin-top: 8px; }
.stat-card-alert {
  background: var(--red-bg); border-color: #EAC9C4;
}
.stat-card-alert b { color: var(--red); font-size: 26px; }
.stat-card-alert p { color: #7A3A2F; }

/* ====================== LEGAL ====================== */
.legal-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-top: 36px;
}
.legal-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px;
}
.legal-card .tag {
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.legal-card h3 {
  font-family: 'Karla', sans-serif;
  font-size: 17px; font-weight: 700; margin-bottom: 8px; line-height: 1.25;
}
.legal-card p { font-size: 14px; color: var(--stone); line-height: 1.65; margin: 0 0 14px; }
.pill {
  display: inline-block; padding: 4px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 700;
  background: var(--gold-bg); color: var(--gold);
}
.pill-red { background: var(--red-bg); color: var(--red); }

/* ====================== PROOF ====================== */
.proof { background: var(--ink); color: var(--white); }
.proof-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.proof .section-title { color: var(--white); }
.proof p { color: rgba(255,255,255,.55); font-size: 16px; line-height: 1.75; margin-top: 16px; }
.proof-quote {
  background: rgba(255,255,255,.05); border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0; padding: 24px; margin-bottom: 24px;
}
.proof-quote p {
  font-family: 'Libre Caslon Text', Georgia, serif;
  font-style: italic; font-size: 19px; line-height: 1.55;
  color: rgba(255,255,255,.75); margin: 0;
}
.proof-nums { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.proof-num {
  background: rgba(255,255,255,.05); border-radius: 12px; padding: 20px;
}
.proof-num b {
  display: block; font-family: 'Libre Caslon Text', Georgia, serif;
  font-size: 32px; color: var(--gold); line-height: 1;
}
.proof-num span { font-size: 13px; color: rgba(255,255,255,.4); display: block; margin-top: 4px; }

/* ====================== CONTACT ====================== */
.contact-layout { display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; align-items: start; margin-top: 36px; }
.contact-methods { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.contact-method {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px; background: var(--white); border: 1px solid var(--border);
  border-radius: 10px;
}
.contact-method .ico { font-size: 18px; width: 28px; text-align: center; flex-shrink: 0; }
.contact-method small { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--stone); display: block; }
.contact-method b { font-size: 15px; font-weight: 600; display: block; margin-top: 2px; }

form {
  background: var(--warm); border: 1px solid var(--border);
  border-radius: 14px; padding: 28px;
}
.form-title { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.form-sub { font-size: 14px; color: var(--stone); margin-bottom: 20px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.f-group { display: flex; flex-direction: column; gap: 4px; margin-bottom: 10px; }
.f-group label { font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--stone); }
.f-group input, .f-group select, .f-group textarea {
  font-family: 'Karla', sans-serif; font-size: 15px; color: var(--ink);
  background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; padding: 10px 13px; outline: none; width: 100%;
}
.f-group input:focus, .f-group select:focus, .f-group textarea:focus { border-color: var(--gold); }
.f-group input::placeholder, .f-group textarea::placeholder { color: #C8C4BD; }
.f-group textarea { min-height: 72px; resize: none; }
.f-submit {
  width: 100%; font-family: 'Karla', sans-serif; font-size: 14px; font-weight: 700;
  color: var(--white); background: var(--ink); border: none; border-radius: 8px;
  padding: 13px; cursor: pointer; margin-top: 4px;
}
.f-privacy { font-size: 12px; color: var(--light); margin-top: 10px; line-height: 1.55; }

/* ====================== CTA ====================== */
.cta-band {
  background: var(--gold-bg); border-top: 1px solid #E5D5B0;
  border-bottom: 1px solid #E5D5B0; padding: 64px 0; text-align: center;
}
.cta-band .section-title { max-width: 520px; margin: 0 auto 12px; }
.cta-band p { color: var(--stone); font-size: 16px; margin-bottom: 28px; }
.cta-btns { display: flex; gap: 10px; justify-content: center; }

/* ====================== FOOTER ====================== */
footer {
  padding: 24px 0; border-top: 1px solid var(--border);
}
.foot { display: flex; align-items: center; justify-content: space-between; }
.foot-brand { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; color: var(--stone); }
.foot-brand img { height: 18px; width: 18px; object-fit: contain; opacity: .45; }
.foot-copy { font-size: 12px; color: var(--light); }

/* ====================== RESPONSIVE ====================== */
@media (max-width: 860px) {
  .hero-inner, .data-layout, .proof-layout, .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .svc-grid, .legal-grid, .stat-cards { grid-template-columns: 1fr; }
  .strip-inner { grid-template-columns: 1fr; }
  .aside-nums { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 34px; }
  .f-row { grid-template-columns: 1fr; }
  .nav-link { display: none; }
  .foot { flex-direction: column; gap: 8px; text-align: center; }
  .proof-nums { grid-template-columns: 1fr 1fr; }
}