:root {
  --bg: #f8f5ef;
  --surface: #ffffff;
  --surface-soft: #f1ece3;
  --ink: #22313a;
  --muted: #69747a;
  --line: rgba(34, 49, 58, 0.14);
  --gold: #c9a46a;
  --gold-dark: #9e7b43;
  --blue: #2d4655;
  --shadow: 0 24px 70px rgba(34, 49, 58, 0.10);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 8%, rgba(201, 164, 106, 0.22), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(45, 70, 85, 0.10), transparent 26%),
    linear-gradient(180deg, #fbf9f4 0%, var(--bg) 48%, #f4efe6 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Arial, sans-serif;
  line-height: 1.55;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248, 245, 239, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(34, 49, 58, 0.08);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 220px;
}

.brand img { width: 58px; height: 58px; object-fit: contain; border-radius: 50%; }
.brand-text { display: grid; line-height: 1.05; }
.brand-title { font-size: 16px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; }
.brand-subtitle { color: var(--muted); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; margin-top: 5px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--ink); }

.button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 650;
  letter-spacing: .01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 12px 34px rgba(45, 70, 85, 0.22); }
.btn-primary:hover { box-shadow: 0 16px 42px rgba(45, 70, 85, 0.28); }
.btn-gold { background: var(--gold); color: #1c272e; box-shadow: 0 12px 34px rgba(201, 164, 106, 0.24); }
.btn-secondary { background: rgba(255,255,255,.72); color: var(--ink); border-color: var(--line); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }

.hero { padding: 84px 0 56px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr);
  gap: 50px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 42px; height: 1px; background: var(--gold); display: inline-block; }

h1, h2, h3 { line-height: 1.08; margin: 0; }
h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 6vw, 76px);
  letter-spacing: -0.045em;
  color: var(--ink);
}
.lead {
  font-size: clamp(18px, 2.3vw, 23px);
  color: #425059;
  max-width: 710px;
  margin: 24px 0 0;
}
.hero-note {
  margin-top: 22px;
  color: var(--muted);
  font-size: 15px;
  max-width: 650px;
}
.hero .button-row { margin-top: 32px; }

.hero-card {
  position: relative;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.84), rgba(255,255,255,0.56)),
    radial-gradient(circle at 80% 8%, rgba(201, 164, 106, 0.25), transparent 34%);
  border: 1px solid rgba(34, 49, 58, 0.10);
  box-shadow: var(--shadow);
  padding: 34px;
  overflow: hidden;
}
.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -80px -92px auto;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  border: 1px solid rgba(201,164,106,.42);
}
.hero-logo { width: min(315px, 90%); margin: 0 auto 26px; opacity: .94; }
.stat-list { display: grid; gap: 14px; }
.stat-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(34,49,58,.08);
  background: rgba(255,255,255,.68);
  border-radius: 18px;
}
.stat-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(201,164,106,.18);
  color: var(--gold-dark);
  display: grid;
  place-items: center;
  font-weight: 800;
}
.stat-item strong { display: block; margin-bottom: 2px; }
.stat-item span { color: var(--muted); font-size: 14px; }

.section { padding: 58px 0; }
.section-header { max-width: 780px; margin-bottom: 30px; }
.section-kicker { color: var(--gold-dark); text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 750; margin-bottom: 12px; }
h2 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(34px, 4vw, 52px); letter-spacing: -0.035em; }
.section-header p { color: var(--muted); font-size: 18px; margin: 14px 0 0; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.card {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(34,49,58,.10);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 18px 54px rgba(34,49,58,.055);
}
.card h3 { font-size: 21px; margin-bottom: 10px; }
.card p { color: var(--muted); margin: 0; }
.card ul { padding-left: 20px; margin: 14px 0 0; color: var(--muted); }
.card li { margin: 8px 0; }

.band {
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(45,70,85,.96), rgba(37,54,65,.96)),
    radial-gradient(circle at 78% 12%, rgba(201,164,106,.45), transparent 28%);
  color: #fff;
  box-shadow: 0 30px 80px rgba(45,70,85,.22);
}
.band p { color: rgba(255,255,255,.74); margin: 12px 0 0; }
.band .btn-secondary { background: rgba(255,255,255,.10); color:#fff; border-color: rgba(255,255,255,.18); }
.band-flex { display: flex; justify-content: space-between; gap: 28px; align-items: center; }

.steps { counter-reset: step; display: grid; gap: 14px; }
.step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(34,49,58,.09);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(201,164,106,.18);
  color: var(--gold-dark);
  display: grid; place-items: center;
  font-weight: 850; font-size: 20px;
}
.step strong { display: block; font-size: 18px; margin-bottom: 4px; }
.step span { color: var(--muted); }

.quote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.disclaimer {
  font-size: 14px;
  color: var(--muted);
  padding: 18px 20px;
  border: 1px dashed rgba(34,49,58,.22);
  border-radius: 18px;
  background: rgba(255,255,255,.52);
}

.footer { padding: 44px 0; border-top: 1px solid rgba(34,49,58,.10); color: var(--muted); }
.footer-flex { display: flex; justify-content: space-between; gap: 18px; align-items: center; flex-wrap: wrap; }
.footer a { color: var(--ink); text-decoration: none; }

/* Survey */
.survey-hero { padding: 58px 0 26px; }
.survey-wrap {
  display: grid;
  grid-template-columns: minmax(0, .76fr) minmax(320px, 1.24fr);
  gap: 30px;
  align-items: start;
}
.survey-panel {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(34,49,58,.10);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 26px;
}
.form { display: grid; gap: 22px; }
.fieldset { padding: 0 0 20px; border: 0; border-bottom: 1px solid rgba(34,49,58,.10); margin: 0; }
.fieldset:last-of-type { border-bottom: 0; padding-bottom: 0; }
.legend { display: block; font-weight: 750; font-size: 18px; margin-bottom: 10px; }
.hint { color: var(--muted); font-size: 14px; margin: -4px 0 12px; }
.options { display: grid; gap: 10px; }
.option {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  border: 1px solid rgba(34,49,58,.10);
  border-radius: 14px;
  background: rgba(248,245,239,.52);
}
.option input { margin-top: 4px; accent-color: var(--blue); }
.input, .textarea, select {
  width: 100%;
  border: 1px solid rgba(34,49,58,.16);
  border-radius: 14px;
  min-height: 46px;
  padding: 12px 14px;
  background: rgba(255,255,255,.86);
  color: var(--ink);
  font: inherit;
}
.textarea { min-height: 112px; resize: vertical; }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.status {
  display: none;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(201,164,106,.14);
  border: 1px solid rgba(201,164,106,.28);
  color: #644b22;
  margin-top: 14px;
}
.status.show { display: block; }
.copy-box {
  display: none;
  width: 100%;
  min-height: 140px;
  border: 1px solid rgba(34,49,58,.14);
  border-radius: 14px;
  padding: 14px;
  background: #fff;
  color: var(--ink);
  font: 14px/1.45 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}
.copy-box.show { display: block; }

@media (max-width: 900px) {
  .hero-grid, .survey-wrap { grid-template-columns: 1fr; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .band-flex { align-items: flex-start; flex-direction: column; }
  .nav-links { display: none; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 26px, var(--max)); }
  .hero { padding-top: 54px; }
  .brand-text { display: none; }
  .card, .hero-card, .band, .survey-panel { padding: 20px; }
  .button-row, .form-actions { align-items: stretch; }
  .btn { width: 100%; }
}
