:root {
  --cream: #f5f2ea;
  --navy: #0f2634;
  --navy-2: #123a4f;
  --teal: #1d5b6e;
  --teal-hover: #123a4f;
  --ink: #17303d;
  --prose: #3a4c57;
  --muted: #4a5f6a;
  --muted-2: #546570;
  --card-border: #e4ded1;
  --card-border-hover: #c9c0ac;
  --gold: #8a7f68;
  --accent-light: #7fb7c4;
  --divider: #e0d9ca;
  --pad-x: 48px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Archivo', sans-serif;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-hover); }
.serif { font-family: 'Spectral', serif; }
img { max-width: 100%; display: block; }

.wrap { max-width: 1240px; margin: 0 auto; }
.eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.24em; color: var(--teal); margin-bottom: 16px; }

/* ---------- Header ---------- */
.site-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--pad-x); z-index: 50;
}
.site-header--overlay {
  position: fixed; top: 0; left: 0; right: 0;
  backdrop-filter: blur(10px);
  background: rgba(15, 38, 52, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.site-header--solid {
  position: sticky; top: 0;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.logo { display: flex; flex-direction: column; line-height: 1; color: #fff; }
.logo .mark { font-family: 'Spectral', serif; font-weight: 500; font-size: 22px; letter-spacing: 0.14em; color: #fff; }
.logo .sub { font-size: 10px; letter-spacing: 0.42em; font-weight: 600; color: rgba(255, 255, 255, 0.72); margin-top: 4px; }
nav { display: flex; gap: 38px; align-items: center; }
nav .link { color: rgba(255, 255, 255, 0.86); font-size: 14px; font-weight: 500; letter-spacing: 0.02em; }
nav .link:hover { color: #fff; }
.nav-cta {
  display: inline-block; padding: 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.55); border-radius: 2px;
  color: #fff; font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  transition: background .2s, color .2s, border-color .2s;
}
.nav-cta:hover { background: #fff; color: var(--navy); border-color: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; width: 100%;
  display: flex; align-items: center;
  background:
    linear-gradient(180deg, rgba(12, 30, 42, 0.55) 0%, rgba(12, 30, 42, 0.18) 38%, rgba(12, 30, 42, 0.62) 100%),
    url('hero.jpg') center / cover no-repeat;
}
.hero-content { width: 100%; padding: 0 var(--pad-x); }
.hero-inner { max-width: 760px; }
.badge {
  display: inline-block; padding: 7px 16px;
  border: 1px solid rgba(255, 255, 255, 0.5); border-radius: 2px;
  color: #fff; font-size: 11px; font-weight: 600; letter-spacing: 0.28em; margin-bottom: 28px;
}
.hero h1 {
  font-family: 'Spectral', serif; font-weight: 400;
  font-size: clamp(38px, 7vw, 64px); line-height: 1.08;
  color: #fff; letter-spacing: -0.01em; text-wrap: pretty; margin-bottom: 26px;
}
.hero p {
  font-size: clamp(16px, 2.2vw, 19px); line-height: 1.6;
  color: rgba(255, 255, 255, 0.9); max-width: 560px; text-wrap: pretty;
}
.hero-actions { display: flex; gap: 16px; margin-top: 38px; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 15px 30px; font-size: 14px;
  font-weight: 600; letter-spacing: 0.03em; border-radius: 2px;
  transition: background .2s, color .2s, border-color .2s;
}
.btn-solid { background: #fff; color: var(--navy); }
.btn-solid:hover { background: #e8e2d4; color: var(--navy); }
.btn-outline { border: 1px solid rgba(255, 255, 255, 0.6); color: #fff; }
.btn-outline:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }

/* ---------- Sub-page hero ---------- */
.subpage-hero { padding: 64px var(--pad-x) 0; }
.subpage-hero .eyebrow { margin-bottom: 14px; }
.subpage-hero h1 {
  font-family: 'Spectral', serif; font-weight: 400;
  font-size: clamp(34px, 5vw, 48px); line-height: 1.1;
  color: var(--navy-2); letter-spacing: -0.01em; text-wrap: pretty;
}
.subpage-hero .meta { margin-top: 14px; font-size: 14px; color: var(--muted); }

/* ---------- Brands ---------- */
.section { padding: 110px var(--pad-x); }
.brands-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; margin-bottom: 60px; flex-wrap: wrap;
}
.brands-head h2 {
  font-family: 'Spectral', serif; font-weight: 400;
  font-size: clamp(30px, 4.5vw, 44px); line-height: 1.12;
  color: var(--navy-2); letter-spacing: -0.01em; text-wrap: pretty; max-width: 640px;
}
.brands-head p { max-width: 360px; font-size: 16px; line-height: 1.65; color: var(--muted); text-wrap: pretty; }
.brands-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.brand-card {
  background: #fff; border: 1px solid var(--card-border); border-radius: 6px;
  overflow: hidden; display: flex; flex-direction: column; transition: border-color .2s;
}
.brand-card:hover { border-color: var(--card-border-hover); }
.brand-banner { height: 200px; }
.brand-body { padding: 34px 36px 38px; }
.brand-title { display: flex; align-items: baseline; gap: 14px; margin-bottom: 6px; flex-wrap: wrap; }
.brand-title h3 { font-family: 'Spectral', serif; font-weight: 500; font-size: 30px; color: var(--navy-2); letter-spacing: 0.01em; }
.brand-tag { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; color: var(--teal); text-transform: uppercase; }
.brand-body p { font-size: 15px; line-height: 1.65; color: var(--muted-2); text-wrap: pretty; }

/* ---------- Support band (home) ---------- */
.support { background: var(--navy-2); padding: 100px var(--pad-x); }
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.support .eyebrow { color: var(--accent-light); }
.support h2 {
  font-family: 'Spectral', serif; font-weight: 400;
  font-size: clamp(30px, 4vw, 40px); line-height: 1.14;
  color: #fff; letter-spacing: -0.01em; text-wrap: pretty; margin-bottom: 22px;
}
.support-lead { font-size: 17px; line-height: 1.65; color: rgba(255, 255, 255, 0.82); max-width: 480px; text-wrap: pretty; }
.support-cta { margin-top: 26px; }
.support-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.support-card {
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px; padding: 28px; transition: background .2s, border-color .2s;
}
a.support-card:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.28); }
.support-card .h { font-family: 'Spectral', serif; font-size: 26px; color: #fff; margin-bottom: 8px; }
.support-card p { font-size: 14px; line-height: 1.6; color: rgba(255, 255, 255, 0.72); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact h2 {
  font-family: 'Spectral', serif; font-weight: 400;
  font-size: clamp(30px, 4vw, 40px); line-height: 1.14;
  color: var(--navy-2); letter-spacing: -0.01em; text-wrap: pretty; margin-bottom: 24px;
}
.contact-intro { font-size: 17px; line-height: 1.65; color: var(--muted); max-width: 440px; text-wrap: pretty; }
.contact-list { display: flex; flex-direction: column; gap: 26px; }
.contact-item { border-top: 1px solid var(--divider); padding-top: 20px; }
.contact-item .label { font-size: 12px; font-weight: 700; letter-spacing: 0.18em; color: var(--gold); margin-bottom: 8px; }
.contact-item .val { font-size: 18px; color: var(--navy-2); line-height: 1.5; }

/* ---------- Prose (legal / support content) ---------- */
.prose { max-width: 760px; }
.prose .lead { font-size: 18px; line-height: 1.7; color: var(--ink); margin-bottom: 8px; }
.prose h2 { font-family: 'Spectral', serif; font-weight: 500; font-size: 24px; color: var(--navy-2); margin: 44px 0 14px; }
.prose h3 { font-family: 'Spectral', serif; font-weight: 500; font-size: 19px; color: var(--navy-2); margin: 26px 0 10px; }
.prose p { font-size: 16px; line-height: 1.72; color: var(--prose); margin-bottom: 16px; }
.prose ul { margin: 0 0 16px 22px; }
.prose li { font-size: 16px; line-height: 1.72; color: var(--prose); margin-bottom: 9px; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { color: var(--teal); text-decoration: underline; }
.callout {
  background: #fff; border: 1px solid var(--card-border); border-left: 3px solid var(--teal);
  border-radius: 6px; padding: 22px 26px; margin: 4px 0 8px;
}
.callout p:last-child { margin-bottom: 0; }

/* ---------- Support-page cards ---------- */
.help-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 760px; }
.help-card { background: #fff; border: 1px solid var(--card-border); border-radius: 6px; padding: 28px 30px; }
.help-card h3 { font-family: 'Spectral', serif; font-weight: 500; font-size: 21px; color: var(--navy-2); margin-bottom: 8px; }
.help-card p { font-size: 15px; line-height: 1.65; color: var(--muted-2); }

/* ---------- Footer ---------- */
footer { background: var(--navy); padding: 52px var(--pad-x); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.footer-logo { display: flex; flex-direction: column; line-height: 1; }
.footer-logo .mark { font-family: 'Spectral', serif; font-weight: 500; font-size: 20px; letter-spacing: 0.14em; color: #fff; }
.footer-logo .sub { font-size: 10px; letter-spacing: 0.42em; font-weight: 600; color: rgba(255, 255, 255, 0.6); margin-top: 4px; }
.footer-brands { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-brands span { font-size: 13px; color: rgba(255, 255, 255, 0.72); font-weight: 500; }
.footer-brands .dot { color: rgba(255, 255, 255, 0.34); }
.footer-copy { font-size: 13px; color: rgba(255, 255, 255, 0.5); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: rgba(255, 255, 255, 0.72); }
.footer-links a:hover { color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  :root { --pad-x: 24px; }
  .section, .support { padding-top: 72px; padding-bottom: 72px; }
  .brands-grid, .help-grid { grid-template-columns: 1fr; }
  .support-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  nav { gap: 20px; }
}
@media (max-width: 560px) {
  .site-header { padding: 14px 20px; }
  nav { gap: 14px; }
  nav .link { font-size: 13px; }
  .nav-cta { padding: 8px 16px; }
  .support-cards { grid-template-columns: 1fr; }
  .btn { flex: 1 1 auto; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
