:root {
  --navy: #1d3a8a;
  --gold: #e8541a;
  --cream: #f4ede2;
  --ink: #0e1530;
  --muted: #5b6478;
  --line: rgba(0, 0, 0, 0.08);
  --line-strong: rgba(0, 0, 0, 0.14);
  --bg: #ffffff;
  --shadow-sm: 0 1px 2px rgba(14, 21, 48, 0.04), 0 2px 8px rgba(14, 21, 48, 0.04);
  --shadow-md: 0 6px 20px rgba(14, 21, 48, 0.08);
  --radius: 14px;
  --radius-lg: 20px;
  --display: 'Cormorant Garamond', 'Times New Roman', serif;
  --body: 'DM Sans', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: 1100px; margin: 0 auto;
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand .wordmark {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 22px; font-weight: 800; letter-spacing: -0.01em; line-height: 1;
}
.brand .wordmark .a { color: var(--navy); }
.brand .wordmark .b { color: var(--gold); }
.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 14px; color: var(--navy);
  padding: 10px 16px; border: 1px solid var(--line-strong);
  border-radius: 999px; transition: all .2s ease;
}
.header-cta:hover { background: var(--navy); color: #fff; border-color: var(--navy); text-decoration: none; }

/* Hero */
.hero {
  padding: 88px 0 56px;
  background:
    radial-gradient(1100px 480px at 80% -10%, rgba(232, 84, 26, 0.08), transparent 60%),
    radial-gradient(900px 500px at 0% 10%, rgba(29, 58, 138, 0.07), transparent 60%),
    var(--cream);
  border-bottom: 1px solid var(--line);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.hero-single { max-width: 820px; text-align: center; margin: 0 auto; }
.hero-single .lead { margin-left: auto; margin-right: auto; }
.hero-single .hero-points { max-width: 520px; margin: 0 auto 28px; }
.hero-cta { margin-top: 32px; display: flex; justify-content: center; }
.btn-inline { display: inline-flex; width: auto; padding: 14px 28px; font-size: 16px; }
.eyebrow {
  display: inline-block; padding: 6px 12px;
  background: rgba(29, 58, 138, 0.08); color: var(--navy);
  font-weight: 600; font-size: 12.5px; letter-spacing: 0.04em;
  text-transform: uppercase; border-radius: 999px; margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.05;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.hero h1 .accent { color: var(--gold); font-style: italic; }
.hero p.lead {
  font-size: 18px; color: var(--muted); margin: 0 0 28px; max-width: 560px;
}
.hero-points { list-style: none; padding: 0; margin: 0 0 12px; display: grid; gap: 10px; }
.hero-points li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--ink); }
.hero-points li::before {
  content: ""; flex: 0 0 18px; width: 18px; height: 18px; margin-top: 3px;
  background: var(--navy); border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19l12-12-1.4-1.4z'/></svg>") center/14px no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19l12-12-1.4-1.4z'/></svg>") center/14px no-repeat;
}

/* Form section */
.form-section {
  background:
    radial-gradient(800px 400px at 100% 0%, rgba(232, 84, 26, 0.06), transparent 60%),
    radial-gradient(700px 380px at 0% 100%, rgba(29, 58, 138, 0.06), transparent 60%),
    var(--cream);
  border-bottom: 1px solid var(--line);
}
.form-wrap { max-width: 640px; margin: 0 auto; }
.form-intro { text-align: center; margin-bottom: 28px; }
.form-intro h2 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(32px, 4.5vw, 44px); margin: 0 0 6px; letter-spacing: -0.01em;
}
.form-intro p { color: var(--muted); font-size: 17px; margin: 0; }

/* Form card */
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-md);
}
.form-card h2 {
  font-family: var(--display); font-weight: 700; font-size: 28px;
  margin: 0 0 6px; letter-spacing: -0.01em;
}
.form-card .sub { color: var(--muted); font-size: 14.5px; margin: 0 0 20px; }
.field { display: grid; gap: 6px; margin-bottom: 14px; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.field .hint { font-size: 12.5px; color: var(--muted); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 15px; color: var(--ink);
  border: 1px solid var(--line-strong); background: #fff;
  border-radius: 10px; padding: 11px 13px; outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 88px; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(29, 58, 138, 0.12);
}
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.consent {
  display: flex; gap: 10px; align-items: flex-start;
  margin: 8px 0 14px; padding: 12px;
  background: var(--cream); border-radius: 10px;
  font-size: 13px; color: var(--ink);
}
.consent input { margin-top: 3px; accent-color: var(--navy); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--navy); color: #fff; font-weight: 700; font-size: 15px;
  padding: 13px 18px; border-radius: 10px; border: none; cursor: pointer;
  transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
  width: 100%;
}
.btn:hover { background: #16306f; box-shadow: 0 6px 18px rgba(29,58,138,0.25); }
.btn:active { transform: translateY(1px); }
.btn:disabled { background: #c5cad6; cursor: not-allowed; box-shadow: none; }
.btn.gold { background: var(--gold); }
.btn.gold:hover { background: #c84613; box-shadow: 0 6px 18px rgba(232,84,26,0.3); }

.form-msg { margin-top: 12px; padding: 12px; border-radius: 10px; font-size: 14px; display: none; }
.form-msg.ok { background: #ecfdf3; color: #065f46; border: 1px solid #a7f3d0; display: block; }
.form-msg.err { background: #fef2f2; color: #9b1c1c; border: 1px solid #fecaca; display: block; }

/* Sections */
section { padding: 72px 0; border-bottom: 1px solid var(--line); }
section h2 {
  font-family: var(--display); font-weight: 700; font-size: clamp(30px, 4vw, 42px);
  margin: 0 0 12px; letter-spacing: -0.01em;
}
section .sec-lead { color: var(--muted); font-size: 17px; max-width: 640px; margin: 0 0 36px; }

.benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.benefit-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow-sm);
}
.benefit-card .ico {
  width: 38px; height: 38px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(29, 58, 138, 0.08); color: var(--navy);
  margin-bottom: 12px; font-weight: 800;
}
.benefit-card h3 { margin: 0 0 6px; font-size: 16px; font-weight: 700; }
.benefit-card p { margin: 0; color: var(--muted); font-size: 14px; }

/* Space types grid */
.spaces { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.space {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px; background: #fff; border: 1px solid var(--line);
  border-radius: 12px; font-weight: 600; font-size: 14.5px;
  transition: border-color .15s ease, transform .15s ease;
}
.space:hover { border-color: var(--navy); transform: translateY(-2px); }
.space .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex: 0 0 8px; }

/* FAQ */
.faq { display: grid; gap: 12px; max-width: 780px; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 16px 18px; transition: border-color .15s ease;
}
.faq details[open] { border-color: var(--navy); }
.faq summary {
  cursor: pointer; font-weight: 700; font-size: 16px; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; color: var(--navy); font-weight: 800; font-size: 22px; line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq p { margin: 10px 0 0; color: var(--muted); font-size: 14.5px; }

/* Footer */
.site-footer {
  padding: 36px 0; background: var(--ink); color: #c8cee0;
}
.site-footer .inner {
  display: flex; flex-direction: column; gap: 14px; align-items: center; text-align: center;
}
.site-footer .wordmark .a { color: #fff; }
.site-footer .wordmark .b { color: var(--gold); }
.site-footer p { margin: 0; font-size: 13.5px; }
.site-footer a { color: #fff; }

/* Privacy page */
.legal { padding: 56px 0 80px; }
.legal h1 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(32px, 5vw, 46px); margin: 0 0 6px; letter-spacing: -0.01em;
}
.legal .meta { color: var(--muted); font-size: 14px; margin: 0 0 28px; }
.legal h2 {
  font-family: var(--display); font-weight: 700; font-size: 24px;
  margin: 32px 0 8px;
}
.legal p, .legal ul { color: var(--ink); font-size: 15.5px; }
.legal ul { padding-left: 22px; }

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .spaces { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 56px 0 40px; }
  section { padding: 56px 0; }
}
@media (max-width: 600px) {
  .row-2 { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: 1fr; }
  .spaces { grid-template-columns: 1fr; }
  .header-cta { display: none; }
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
