:root {
  --bg: #0c0c10;
  --panel: rgba(255,255,255,0.06);
  --panel-soft: rgba(255,255,255,0.04);
  --text: #f5f1eb;
  --muted: #cbbfb1;
  --line: rgba(255,255,255,0.12);
  --accent: #e1b88c;
  --accent-2: #f1d5b7;
  --shadow: 0 20px 50px rgba(0,0,0,0.28);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: radial-gradient(circle at top right, rgba(225,184,140,0.16), transparent 28%),
              linear-gradient(180deg, #111116 0%, #0c0c10 100%);
  color: var(--text);
  line-height: 1.6;
}
a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.narrow { width: min(820px, calc(100% - 32px)); }
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(12,12,16,0.82); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--text); }
.brand:hover { text-decoration: none; }
.brand small { display: block; color: var(--muted); }
.brand-mark {
  width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), #fff0de); color: #141414; font-weight: 800;
  box-shadow: var(--shadow);
}
.main-nav { display: flex; gap: 18px; flex-wrap: wrap; justify-content: flex-end; }
.main-nav a { color: var(--muted); }
.hero { padding: 92px 0 54px; }
.hero-grid, .split, .contact-grid { display: grid; gap: 28px; }
.hero-grid { grid-template-columns: 1.2fr 0.8fr; align-items: center; }
.split { grid-template-columns: 1fr 1fr; }
.contact-grid { grid-template-columns: 0.85fr 1.15fr; align-items: start; }
.eyebrow {
  display: inline-block; margin: 0 0 12px; padding: 6px 12px; border-radius: 999px;
  background: rgba(225,184,140,0.12); color: var(--accent-2); border: 1px solid rgba(225,184,140,0.18);
  font-size: 0.92rem;
}
h1, h2, h3 { line-height: 1.15; margin: 0 0 14px; }
h1 { font-size: clamp(2.2rem, 5vw, 4.3rem); max-width: 12ch; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.2rem; }
.lead { font-size: 1.1rem; color: var(--muted); max-width: 58ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 22px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 18px;
  border-radius: 14px; border: 1px solid var(--line); font-weight: 700; text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: linear-gradient(135deg, var(--accent), #fff0de); color: #161616; }
.btn-secondary { background: rgba(255,255,255,0.04); color: var(--text); }
.hero-points { margin: 0; padding-left: 18px; color: var(--muted); }
.hero-card .glass-card,
.card,
.info-panel,
.contact-form,
.contact-box,
.soft {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.glass-card { padding: 28px; }
.card-kicker { margin: 0 0 8px; color: var(--accent-2); }
.service-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.service-badges span,
.cards .card { backdrop-filter: blur(8px); }
.service-badges span {
  padding: 9px 12px; border-radius: 999px; background: rgba(255,255,255,0.05); border: 1px solid var(--line);
}
.section { padding: 68px 0; }
.section.alt { background: rgba(255,255,255,0.02); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { margin-bottom: 24px; }
.cards.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { padding: 24px; }
.info-panel, .contact-box, .soft { padding: 24px; }
.checklist ul { margin: 0; padding-left: 18px; }
.contact-form { padding: 24px; }
.form-row { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
label { font-weight: 600; }
input, select, textarea {
  width: 100%; border-radius: 14px; border: 1px solid var(--line); background: rgba(255,255,255,0.04);
  color: var(--text); padding: 14px 16px; font: inherit;
}
select option { color: #111; }
.checkbox-row { flex-direction: row; align-items: flex-start; }
.checkbox-row input { width: 18px; height: 18px; margin-top: 4px; }
.email-protect {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--line); cursor: pointer;
}
.site-footer { padding: 28px 0 48px; }
.footer-grid { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; padding-top: 12px; border-top: 1px solid var(--line); }
.footer-grid a { margin-right: 16px; }
.legal-page { min-height: 100vh; padding: 48px 0 72px; }
.back-link { display: inline-block; margin-bottom: 24px; }
@media (max-width: 920px) {
  .hero-grid, .split, .contact-grid, .cards.three { grid-template-columns: 1fr; }
  .main-nav { gap: 12px; }
  h1 { max-width: none; }
}
@media (max-width: 640px) {
  .nav-wrap { align-items: flex-start; flex-direction: column; }
  .hero { padding-top: 64px; }
  .btn { width: 100%; }
  .hero-actions { flex-direction: column; }
}
