:root {
  --ink: #0A1622;
  --ink-2: #152536;
  --cream: #F3F1EC;
  --paper: #F7F6F3;
  --stone: #ECEAE4;
  --brass: #C4A46B;
  --brass-dark: #8F7340;
  --text: #12181F;
  --muted: #5A6570;
  --white: #FFFFFF;
  --line: rgba(10, 22, 34, 0.08);
  --shadow: 0 1px 2px rgba(10, 22, 34, 0.04), 0 16px 40px rgba(10, 22, 34, 0.06);
  --sans: "Outfit", "Segoe UI", Helvetica, Arial, sans-serif;
  --max: 1160px;
  --radius: 16px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--ink); text-underline-offset: 3px; }
a:hover { color: var(--brass-dark); }
.wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-dark);
  font-weight: 600;
  margin: 0 0 12px;
}
h1, h2, h3, .display {
  font-family: var(--sans);
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
}
h1 { font-size: clamp(2.2rem, 5.4vw, 4.1rem); margin: 0 0 18px; }
h2 { font-size: clamp(1.7rem, 3vw, 2.55rem); margin: 0 0 14px; }
h3 { font-size: 1.28rem; letter-spacing: -0.025em; margin: 0 0 8px; }
p { margin: 0 0 14px; }
.lede { font-size: 1.12rem; color: var(--muted); max-width: 40rem; font-weight: 400; }
.muted { color: var(--muted); }

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(247, 246, 243, 0.86);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 68px; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand-mark {
  width: 36px; height: 36px; border: 0; border-radius: 0;
  background: var(--ink); color: #fff;
  display: grid; place-items: center; position: relative; flex: none;
}
.brand-mark span { font-size: 11px; font-weight: 650; letter-spacing: 0.04em; color: #fff; }
.brand-mark i { display: none !important; }
.brand-name { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name strong { font-size: 14px; font-weight: 650; letter-spacing: 0.04em; }
.brand-name small { font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 18px; list-style: none; margin: 0; padding: 0; }
.nav-links a { text-decoration: none; font-size: 14px; font-weight: 500; color: var(--muted); }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.menu-btn {
  display: none; background: var(--ink); color: #fff; border: 0; border-radius: 999px;
  padding: 8px 14px; font: inherit; font-size: 13px; font-weight: 600;
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: #fff !important;
  text-decoration: none; padding: 12px 18px;
  font-size: 14px; font-weight: 600; letter-spacing: 0;
  text-transform: none; border: 1px solid var(--ink);
  border-radius: 999px; transition: 0.18s ease;
}
.btn:hover { background: transparent; color: var(--ink) !important; }
.btn-ghost { background: transparent; color: var(--ink) !important; }
.btn-ghost:hover { background: var(--ink); color: #fff !important; }
.btn-gold { background: var(--brass); border-color: var(--brass); color: var(--ink) !important; }
.btn-gold:hover { background: transparent; }

.hero {
  position: relative; min-height: 88vh;
  display: grid; align-items: stretch;
  grid-template-columns: 1.15fr 0.85fr;
  background: var(--ink);
  color: #F3F1EC;
}
.hero::after { display: none; }
.hero-inner {
  position: relative; z-index: 1;
  padding: 88px 0 72px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero.photo {
  background: var(--ink) center/cover no-repeat;
  grid-template-columns: 1fr;
}
.hero.photo::after {
  display: block; content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,22,34,0.92) 0%, rgba(10,22,34,0.55) 55%, rgba(10,22,34,0.2) 100%);
}
.hero h1, .hero .eyebrow { color: #F3F1EC; }
.hero .lede { color: rgba(243,241,236,0.78); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.hero .btn-ghost { color: #F3F1EC !important; border-color: rgba(243,241,236,0.35); }
.hero .btn-ghost:hover { background: #F3F1EC; color: var(--ink) !important; }
.hero-visual {
  background: center/cover no-repeat;
  min-height: 420px;
}

section { padding: 80px 0; }
.band-ink { background: var(--ink); color: #F3F1EC; }
.band-ink h2, .band-ink h3 { color: #F3F1EC; }
.band-cream { background: var(--cream); }
.band-stone { background: var(--stone); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split img { border-radius: var(--radius); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
  background: var(--white); border: 1px solid var(--line);
  padding: 24px; border-radius: var(--radius);
  box-shadow: none; height: 100%;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card h3 { margin-top: 6px; }
.card .num { font-weight: 650; color: var(--brass-dark); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; }
.card a.more { font-size: 14px; font-weight: 600; text-decoration: none; }
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.stat { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; }
.stat b { display: block; font-size: 1.7rem; color: var(--ink); font-weight: 600; letter-spacing: -0.04em; }
.stat span { color: var(--muted); font-size: 13px; }
.quote {
  font-size: 1.28rem; line-height: 1.35; color: var(--ink); font-weight: 500;
  letter-spacing: -0.02em;
  border-left: 3px solid var(--brass); padding-left: 18px; margin: 0 0 14px;
}
.cite { font-size: 13px; color: var(--muted); }
.people { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.person { border-top: 1px solid var(--line); padding-top: 14px; }
.person strong { display: block; font-size: 1.15rem; color: var(--ink); font-weight: 600; }
.person em { color: var(--brass-dark); font-style: normal; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }

.insight-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.insight-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: grid; grid-template-rows: auto 1fr; }
.insight-card img { height: 180px; width: 100%; object-fit: cover; }
.insight-card .body { padding: 20px; }
.article { width: min(720px, calc(100% - 40px)); margin: 36px auto 72px; }
.article header { margin-bottom: 24px; }
.article-meta { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.article h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.download-bar {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between;
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 14px 16px; margin: 24px 0;
}
.contact-panel { background: var(--ink); color: #F3F1EC; padding: 28px; margin-top: 40px; border-radius: var(--radius); }
.contact-panel h2, .contact-panel a { color: #F3F1EC; }

form { display: grid; gap: 14px; }
label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
input, select, textarea {
  width: 100%; border: 1px solid var(--line); background: var(--white);
  padding: 12px 14px; font: inherit; color: var(--text); border-radius: 10px;
}
textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.site-footer { background: var(--ink); color: #C9D0D6; padding: 56px 0 24px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; }
.site-footer a { color: #F3F1EC; text-decoration: none; }
.site-footer h3 { color: #F3F1EC; font-size: 1rem; font-weight: 600; }
.legal { border-top: 1px solid rgba(243,241,236,0.1); margin-top: 32px; padding-top: 16px; font-size: 13px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.li-icon {
  width: 34px; height: 34px; border: 1px solid rgba(196,164,107,0.6); border-radius: 8px;
  display: grid; place-items: center; color: #F3F1EC; text-decoration: none; font-size: 13px; font-weight: 700;
}
.faq details { border-bottom: 1px solid var(--line); padding: 14px 0; }
.faq summary { cursor: pointer; font-weight: 600; color: var(--ink); }
.breadcrumbs { font-size: 13px; color: var(--muted); margin: 18px 0; }
.page-hero { padding: 64px 0 20px; background: var(--cream); border-bottom: 1px solid var(--line); }

.doors { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.door {
  background: var(--white); border: 1px solid var(--line); padding: 28px;
  border-radius: var(--radius); min-height: 100%;
}
.door.ink { background: var(--ink); color: #F3F1EC; border-color: var(--ink); }
.door.ink h2, .door.ink h3 { color: #F3F1EC; }
.door.ink p { color: rgba(243,241,236,0.78); }
.mandate { border-top: 3px solid var(--brass); padding-top: 16px; border-radius: 0 0 var(--radius) var(--radius); }
.mandate .meta { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brass-dark); margin: 0 0 8px; font-weight: 650; }
.sharebar {
  display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center; justify-content: space-between;
  background: var(--ink); color: #F3F1EC; padding: 14px 0; font-size: 14px;
}
.sharebar a { color: var(--brass); text-decoration: none; }
.proof-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 28px; }

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { min-height: 280px; }
  .split, .cards, .stat-row, .insight-grid, .people, .foot-grid, .form-row, .doors, .proof-list { grid-template-columns: 1fr; }
  .menu-btn { display: block; }
  .nav-links {
    display: none; position: absolute; inset: 68px 0 auto; background: var(--paper);
    flex-direction: column; padding: 16px 20px 24px; border-bottom: 1px solid var(--line); align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .nav { position: relative; }
  section { padding: 56px 0; }
}

.creds { white-space: nowrap; }
.li-icon { border: 0 !important; width: auto !important; height: auto !important; background: none !important; padding: 0 !important; }
.li-icon svg { display: block; border-radius: 4px; }
.press { font-size: 13px; letter-spacing: 0.04em; color: var(--muted); }
.press strong { color: var(--ink); font-weight: 600; letter-spacing: 0; }

.article-figure { margin: 8px 0 28px; }
.article-figure img { width: 100%; height: 280px; object-fit: cover; display: block; border: 1px solid var(--line); }
.article-figure figcaption { font-size: 12px; letter-spacing: 0.04em; color: var(--muted); margin-top: 8px; }
