:root {
  --navy: #0b1f3a;
  --navy-mid: #16325a;
  --navy-soft: #1e3f6f;
  --gold: #c4a35a;
  --gold-deep: #9d7d35;
  --cream: #f6f1e8;
  --cream-dark: #e8dfcf;
  --ink: #14181f;
  --slate: #5c6b7a;
  --line: rgba(11, 31, 58, 0.12);
  --white: #ffffff;
  --ok: #1f6b4a;
  --err: #9b2c2c;
  --shadow: 0 18px 50px rgba(11, 31, 58, 0.08);
  --radius: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 78px; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 52px; height: 52px; object-fit: contain; }
.brand-name { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.45rem; letter-spacing: .18em; font-weight: 600; color: var(--navy); }
.brand-tag { display: block; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); margin-top: -2px; }
nav { display: flex; gap: 22px; align-items: center; }
nav a { font-size: .92rem; letter-spacing: .04em; color: var(--navy-mid); }
nav a:hover, nav a.active { color: var(--gold-deep); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 22px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 600; letter-spacing: .03em; cursor: pointer;
  transition: .2s ease;
}
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-soft); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: #d4b56e; }
.btn-ghost { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-ghost:hover { background: var(--navy); color: #fff; }
.menu-toggle { display: none; background: none; border: 0; font-size: 1.4rem; color: var(--navy); }

/* Hero */
.hero {
  position: relative; overflow: hidden;
  background: var(--navy);
  color: #fff;
  padding: 88px 0 96px;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(11,31,58,.92) 0%, rgba(11,31,58,.72) 48%, rgba(11,31,58,.35) 100%),
    url("../img/fulfillment.jpg") center/cover no-repeat;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.kicker {
  color: var(--gold); letter-spacing: .22em; text-transform: uppercase;
  font-size: .78rem; font-weight: 600; margin-bottom: 16px;
}
.hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.08; font-weight: 500; max-width: 14ch;
}
.hero p.lede { max-width: 38rem; margin: 22px 0 32px; color: #e8e4db; font-size: 1.12rem; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 28px; margin-top: 48px; flex-wrap: wrap; }
.hero-meta div { border-left: 2px solid var(--gold); padding-left: 14px; }
.hero-meta strong { display: block; font-size: 1.15rem; }
.hero-meta span { font-size: .82rem; color: #c9d0d8; }

/* Sections */
section { padding: 84px 0; }
.section-cream { background: var(--cream); }
.section-navy { background: var(--navy); color: #fff; }
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 3rem); font-weight: 500; line-height: 1.15;
  color: var(--navy);
}
.section-navy h2 { color: #fff; }
.subhead { color: var(--slate); max-width: 40rem; margin: 12px 0 36px; }
.section-navy .subhead { color: #c9d0d8; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow);
}
.card h3 { font-size: 1.15rem; margin-bottom: 8px; color: var(--navy); }
.icon-mark {
  width: 42px; height: 42px; border-radius: 12px; margin-bottom: 16px;
  display: grid; place-items: center; background: var(--cream); color: var(--gold-deep);
  font-weight: 700;
}
.categories { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.chip {
  border: 1px solid var(--line); background: #fff; color: var(--navy-mid);
  padding: 8px 14px; border-radius: 999px; font-size: .88rem;
}

/* Why partner */
.why-list { display: grid; gap: 18px; }
.why-item { display: grid; grid-template-columns: 64px 1fr; gap: 16px; align-items: start; }
.why-num {
  font-family: "Cormorant Garamond", serif; font-size: 2rem; color: var(--gold-deep);
}
.photo-frame { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }

/* Legitimacy */
.cred-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.cred {
  background: #fff; border-radius: var(--radius); padding: 24px; border: 1px solid var(--line);
}
.cred dt { font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); }
.cred dd { margin-top: 6px; font-size: 1.05rem; color: var(--navy); }

/* Form */
.form-wrap {
  background: #fff; border-radius: 24px; padding: 36px; border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.form-progress { display: flex; gap: 8px; margin-bottom: 28px; }
.form-progress span {
  height: 4px; flex: 1; background: var(--cream-dark); border-radius: 99px;
}
.form-progress span.on { background: var(--gold); }
.form-step { display: none; }
.form-step.active { display: block; animation: fade .25s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.field { margin-bottom: 16px; }
label { display: block; font-size: .86rem; font-weight: 600; margin-bottom: 6px; color: var(--navy); }
.req { color: var(--gold-deep); }
input, select, textarea {
  width: 100%; padding: 12px 14px; border-radius: 12px;
  border: 1px solid var(--line); font: inherit; background: #fbfaf7;
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(196,163,90,.45); border-color: var(--gold);
}
.hint { font-size: .78rem; color: var(--slate); margin-top: 4px; }
.error { color: var(--err); font-size: .8rem; min-height: 1.1em; margin-top: 4px; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 8px; }
.success-panel { text-align: center; padding: 28px 8px; display: none; }
.success-panel.show { display: block; }
.success-panel h3 { font-family: "Cormorant Garamond", serif; font-size: 2rem; color: var(--navy); }

/* FAQ */
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 16px 20px; margin-bottom: 10px;
}
.faq summary { cursor: pointer; font-weight: 600; color: var(--navy); list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--gold-deep); }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin-top: 10px; color: var(--slate); }

footer {
  background: #081628; color: #c9d0d8; padding: 48px 0 24px; font-size: .92rem;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; margin-bottom: 32px; }
footer a:hover { color: var(--gold); }
.legal { border-top: 1px solid rgba(255,255,255,.08); padding-top: 16px; font-size: .8rem; color: #8b97a5; }

.banner-note {
  background: #fff7e6; border: 1px solid #ead7a4; color: #5c4a1e;
  padding: 12px 16px; border-radius: 12px; font-size: .88rem; margin-bottom: 20px;
}

@media (max-width: 860px) {
  nav { display: none; }
  nav.open {
    display: flex; flex-direction: column; position: absolute; top: 78px; left: 0; right: 0;
    background: #fff; padding: 16px 20px 24px; border-bottom: 1px solid var(--line);
  }
  .menu-toggle { display: block; }
  .grid-3, .grid-2, .cred-grid, .row-2, .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 72px; }
}
