/* ---------- Tokens ---------- */
:root {
  --navy-950: #0b1220;
  --navy-900: #0f1b2d;
  --navy-800: #16273f;
  --navy-700: #1f3556;
  --ink: #1a2233;
  --ink-soft: #4a5568;
  --paper: #ffffff;
  --paper-alt: #f6f4ef;
  --gold: #c8963e;
  --gold-soft: #e9d3a8;
  --border: #e6e1d6;
  --radius: 14px;
  --shadow: 0 10px 30px -12px rgba(15, 27, 45, 0.18);
  --container: 1120px;
  --font-sans: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-serif: 'Fraunces', Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
}
.eyebrow.center { text-align: center; }

.serif-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--navy-900);
}
.section-title.center { text-align: center; }

.section-sub {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 0 40px;
}
.section-sub.center { margin-left: auto; margin-right: auto; text-align: center; }

.section { padding: 96px 0; }
.section-alt { background: var(--paper-alt); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn-primary {
  background: var(--navy-900);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--navy-800); }
.btn-ghost {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--navy-900);
}
.btn-ghost:hover { background: var(--navy-900); color: #fff; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--navy-900);
  color: var(--gold-soft);
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}
.brand-name {
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--navy-900);
}
.nav-desktop { display: flex; align-items: center; gap: 32px; }
.nav-desktop a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.nav-desktop a:hover { color: var(--navy-900); }
.nav-cta {
  background: var(--navy-900);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--navy-800); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  height: 2px;
  width: 100%;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 8px 24px 20px;
  border-top: 1px solid var(--border);
}
.nav-mobile a {
  padding: 12px 0;
  font-weight: 600;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile .nav-cta {
  text-align: center;
  margin-top: 12px;
  border-bottom: none !important;
}

.site-header.nav-open .nav-mobile { display: flex; }
.site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1100px 600px at 85% -10%, rgba(200,150,62,0.16), transparent 60%),
    linear-gradient(180deg, var(--navy-950), var(--navy-900) 60%, var(--navy-800));
  color: #fff;
  padding: 110px 0 90px;
}
.hero-inner { max-width: 780px; }
.hero h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.12;
  margin: 0 0 22px;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  max-width: 620px;
  margin: 0 0 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 56px; }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.4); }
.hero .btn-ghost:hover { background: #fff; color: var(--navy-900); }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stats div { display: flex; flex-direction: column; gap: 4px; }
.hero-stats strong {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold-soft);
}
.hero-stats span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}

/* ---------- Trust bar ---------- */
.trust-bar { background: var(--navy-900); border-top: 1px solid rgba(255,255,255,0.08); }
.trust-inner { padding: 22px 24px; text-align: center; }
.trust-inner p {
  margin: 0;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  font-weight: 500;
}

/* ---------- Cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--paper-alt);
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin: 0 0 10px;
  color: var(--navy-900);
}
.card p { margin: 0; color: var(--ink-soft); font-size: 0.96rem; }

/* ---------- Approach ---------- */
.approach-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.steps { display: flex; flex-direction: column; gap: 32px; }
.steps li { display: flex; gap: 20px; }
.step-num {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold);
  min-width: 44px;
}
.steps h3 { margin: 0 0 6px; font-size: 1.05rem; color: var(--navy-900); }
.steps p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.about-photo-inner {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold-soft);
  box-shadow: var(--shadow);
}
.about p { color: var(--ink-soft); }
.checklist { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.checklist li {
  padding-left: 28px;
  position: relative;
  font-weight: 600;
  color: var(--navy-900);
  font-size: 0.95rem;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 800;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 6px 24px;
}
.faq-item summary {
  cursor: pointer;
  padding: 18px 0;
  font-weight: 700;
  color: var(--navy-900);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--gold);
  margin-left: 12px;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin: 0 0 20px; color: var(--ink-soft); }

/* ---------- Contact ---------- */
.contact { background: var(--paper-alt); }
.contact-inner { max-width: 680px; }
.contact-form {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-900);
}
.contact-form input,
.contact-form textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--paper-alt);
  color: var(--ink);
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.form-note {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  min-height: 1.2em;
  text-align: center;
}
.form-note.success { color: #2f7a4d; font-weight: 600; }
.form-note.error { color: #b3261e; font-weight: 600; }
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.7);
  padding: 48px 0;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.site-footer .brand-name { color: #fff; }
.footer-tag { margin: 4px 0 0; font-size: 0.9rem; }
.footer-copy { margin: 16px 0 0; font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
  .cards { grid-template-columns: 1fr 1fr; }
  .approach-grid, .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { order: -1; max-width: 280px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .hero { padding: 90px 0 60px; }
  .hero-stats { gap: 28px; }
}
