:root {
  --brand: #0B1F3A;
  --accent: #C6A664;
  --neutral: #E8E3DA;
  --ink: #111111;
  --bg: #FFFFFF;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0,0,0,.10);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
  Ubuntu, Cantarell, 'Helvetica Neue', Arial, 'Apple Color Emoji', 'Segoe UI Emoji', sans-serif;
  line-height: 1.55; color: var(--ink); background: var(--bg);
}

.container { width: min(1120px, 92%); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.9); backdrop-filter: blur(8px);
  border-bottom: 1px solid #eee;
}
.header-inner { display: flex; align-items: center; gap: 24px; padding: 14px 0; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-text { font-weight: 700; color: var(--brand); letter-spacing: .3px; }
.nav a { margin-left: 18px; text-decoration: none; color: #333; }
.nav a:hover { color: var(--brand); }
.nav-toggle { display: none; margin-left: auto; background: transparent; border: 1px solid #ccc; padding: 8px 12px; border-radius: 8px; }

.mobile-menu { display: none; flex-direction: column; padding: 10px 4%; gap: 10px; border-bottom: 1px solid #eee; }
.mobile-menu a { padding: 10px 8px; text-decoration: none; color: #333; }
.mobile-menu .btn--small { align-self: start; }

.hero {
  background: linear-gradient(180deg, rgba(11,31,58,.06), transparent 60%), radial-gradient(1200px 400px at 70% -20%, rgba(198,166,100,.15), transparent);
  padding: 72px 0 36px;
}
.hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 38px; align-items: center; }
.hero h1 { font-size: clamp(2.2rem, 3.2vw + 1rem, 3.6rem); line-height: 1.05; margin: 0 0 12px; color: var(--brand); }
.lead { font-size: 1.15rem; color: #333; }
.cta-row { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
.badges { display: flex; gap: 10px; list-style: none; padding: 0; margin: 16px 0 0; }
.badges li { background: var(--neutral); padding: 6px 10px; border-radius: 999px; font-size: .9rem; }

.card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; border: 1px solid #eee; }
.card-media { height: 180px; background: radial-gradient(400px 120px at 70% 30%, var(--accent), transparent), linear-gradient(135deg, var(--brand), #152b4a); }
.card-body { padding: 16px 18px; }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.section { padding: 64px 0; }
.section--alt { background: #FAFAFA; }
.section--highlight { background: linear-gradient(180deg, #fff, #fbf8f3); }
.section-head h2 { margin-top: 0; color: var(--brand); }
.section-head p { margin: 6px 0 24px; color: #444; }

.grid.quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.quote { background: #fff; border: 1px solid #eee; border-radius: 12px; padding: 16px; box-shadow: var(--shadow); }
.quote p { font-weight: 600; }
.quote footer { font-size: .95rem; color: #666; }

.about-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; align-items: start; }
.aside { background: #fff; border: 1px solid #eee; border-radius: 12px; padding: 16px; box-shadow: var(--shadow); }
.checklist { list-style: none; padding: 0; }
.checklist li::before { content: "✓ "; color: var(--accent); font-weight: bold; }
.checklist li { margin: 8px 0; }

.form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row:nth-child(3) { grid-column: 1 / -1; }
.form-actions { grid-column: 1 / -1; display: flex; align-items: center; gap: 16px; }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 18px; border-radius: 10px; text-decoration: none; border: 1px solid transparent; cursor: pointer; font-weight: 600; }
.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { filter: brightness(1.06); }
.btn--ghost { background: transparent; border-color: var(--brand); color: var(--brand); }
.btn--ghost:hover { background: rgba(11,31,58,.06); }
.btn--small { padding: 8px 12px; font-size: .95rem; }
.btn--block { width: 100%; }

.link-arrow { text-decoration: none; color: var(--brand); font-weight: 600; }
.link-arrow::after { content: " →"; }

.site-footer { border-top: 1px solid #eee; padding: 20px 0; background: #fff; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer-nav a { margin-left: 18px; text-decoration: none; color: #444; }
.footer-nav a:hover { color: var(--brand); }

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .cards-3 { grid-template-columns: 1fr; }
  .grid.quotes { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .form { grid-template-columns: 1fr; }
  .nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-menu { display: flex; }
}
