@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400&family=Lora:ital,wght@0,400;0,500;0,600;1,400&display=swap");


/* PlatformCo — Brand-Agnostic Static Website */
:root {
  /* RESERVE MEDS — Locked Brand Palette (2026-04-21) */
  --navy: #0B1D3A;           /* Reserve Navy — primary wordmark, headers, body */
  --navy-dark: #060F20;      /* near-black navy, for hover / deep shadows */
  --ivory: #F7F2E8;          /* Vellum Ivory — primary background */
  --parchment: #EFE8D8;      /* Parchment — card backgrounds, soft zones */
  --hairline: #D4C9A8;       /* Hairline — subtle borders */
  --gold: #B08A48;           /* Heritage Gold — accent lines, pricing, eyebrow */
  --gold-soft: #C9A878;      /* lighter gold for secondary accents */
  --oxblood: #5A1B27;        /* Oxblood Seal — signature/concierge mark */
  --oxblood-deep: #3D0E18;   /* deep oxblood — hover/stamp */
  --ink: #2A2A2A;            /* body ink — not pure black */
  --ink-soft: #4A5A75;       /* muted navy — meta/caption text */

  /* Status tokens — desaturated for luxury register */
  --status-green: #2E5D3A;
  --status-yellow: #A88728;
  --status-red: #7A2420;

  /* Legacy token aliases (back-compat so we don't have to rewrite 116 var refs) */
  --ice: #F7F2E8;            /* was light blue — now ivory */
  --ice-soft: #EFE8D8;       /* was lighter blue — now parchment */
  --coral: #B08A48;          /* was coral — now gold accent */
  --teal: #5A1B27;           /* was teal — now oxblood accent */
  --grey: #4A5A75;           /* was plain grey — now muted navy */
  --grey-soft: #EFE8D8;      /* was grey — now parchment */
  --white: #F7F2E8;          /* pure white replaced with ivory */
  --text: #2A2A2A;           /* body ink */

  --radius: 4px;             /* tighter radius — luxury reads less rounded */
  --shadow: 0 1px 3px rgba(11,29,58,0.08);
  --shadow-lg: 0 6px 22px rgba(11,29,58,0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Lora", "Source Serif 4", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
  background: var(--white);
}
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--coral); text-decoration: underline; }
img { max-width: 100%; height: auto; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 20px; }

/* Header */
header.site-header {
  background: var(--navy);
  color: var(--ice);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}
header.site-header .inner {
  max-width: 1160px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-weight: 700; font-size: 20px; color: var(--white);
  letter-spacing: 0.5px;
}
.logo a { color: var(--white); }
nav.top a {
  color: var(--ice); margin-left: 20px; font-size: 14px;
}
nav.top a:hover { color: var(--coral); }
.cta-btn {
  display: inline-block;
  background: var(--coral); color: var(--white) !important;
  padding: 10px 20px; border-radius: var(--radius);
  font-weight: 600; font-size: 14px;
  transition: background 0.2s ease;
}
.cta-btn:hover { background: #E04a50; text-decoration: none; }
.cta-btn-secondary {
  display: inline-block;
  background: transparent; color: var(--navy) !important;
  border: 2px solid var(--navy);
  padding: 10px 20px; border-radius: var(--radius);
  font-weight: 600; font-size: 14px;
}
.cta-btn-secondary:hover { background: var(--navy); color: var(--white) !important; text-decoration: none; }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}
.hero h1 {
  font-size: 48px; line-height: 1.2; margin: 0 0 20px;
  font-weight: 700;
}
.hero .tagline {
  font-size: 22px; color: var(--ice); margin: 0 auto 32px; max-width: 720px;
}
.hero .cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Sections */
section { padding: 72px 0; }
section.band { background: var(--ice-soft); }
section h2 {
  font-size: 34px; margin: 0 0 16px; color: var(--navy); line-height: 1.25;
}
section h2.center { text-align: center; }
section .lead { font-size: 18px; color: var(--grey); max-width: 760px; margin: 0 auto 40px; text-align: center; }

/* Grid */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* Card */
.card {
  background: var(--white);
  border: 1px solid var(--ice-soft);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.2s ease;
}
.card:hover { box-shadow: var(--shadow-lg); border-color: var(--ice); transform: translateY(-2px); }
.card h3 { margin: 0 0 8px; color: var(--navy); font-size: 18px; }
.card p { margin: 0; color: var(--grey); font-size: 14px; }
.card .meta { font-size: 11px; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }

/* Pills / badges */
.pill {
  display: inline-block;
  background: var(--ice-soft); color: var(--navy);
  padding: 3px 10px; border-radius: 12px;
  font-size: 11px; font-weight: 600;
  margin-right: 6px; margin-bottom: 4px;
}
.pill.tier-1 { background: var(--coral); color: var(--white); }
.pill.tier-2 { background: var(--gold); color: var(--white); }
.pill.tier-3 { background: var(--grey); color: var(--white); }
.pill.teal { background: var(--teal); color: var(--white); }

/* Drug / disease detail */
.detail-header {
  background: var(--ice-soft);
  padding: 48px 0 32px;
}
.detail-header .breadcrumb {
  font-size: 13px; color: var(--grey); margin-bottom: 12px;
}
.detail-header h1 {
  font-size: 38px; margin: 0 0 8px; color: var(--navy);
}
.detail-header .sub {
  color: var(--grey); font-size: 18px; margin: 0 0 16px;
}
.detail-body { padding: 48px 0; }
.detail-body h2 { font-size: 24px; color: var(--navy); margin: 32px 0 12px; }
.detail-body h3 { font-size: 18px; color: var(--navy); margin: 24px 0 8px; }
.detail-body ul { padding-left: 22px; }
.detail-body li { margin-bottom: 8px; }

/* Two-col layout */
.two-col { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; } }
.sidebar .card { background: var(--ice-soft); border: none; }

/* Stat blocks */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin: 32px 0; }
.stat {
  background: var(--white); padding: 24px; border-radius: var(--radius);
  text-align: center; border-top: 4px solid var(--coral);
  box-shadow: var(--shadow);
}
.stat .num { font-size: 42px; font-weight: 700; color: var(--navy); display: block; line-height: 1.1; }
.stat .label { font-size: 13px; color: var(--grey); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 6px; }

/* Process */
.process { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.step {
  text-align: center; padding: 20px;
}
.step .num-circle {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 700; margin: 0 auto 14px;
}
.step h4 { margin: 0 0 8px; color: var(--navy); font-size: 17px; }
.step p { margin: 0; color: var(--grey); font-size: 14px; }

/* Footer */
footer.site-footer {
  background: var(--navy-dark); color: var(--ice);
  padding: 56px 0 24px; margin-top: 80px; font-size: 14px;
}
footer .cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; }
footer h5 { color: var(--white); font-size: 15px; margin: 0 0 16px; text-transform: uppercase; letter-spacing: 1px; }
footer a { color: var(--ice); display: block; margin-bottom: 8px; }
footer a:hover { color: var(--coral); }
footer .legal {
  border-top: 1px solid rgba(202,220,252,0.2);
  margin-top: 32px; padding-top: 20px; font-size: 12px;
  color: var(--ice); opacity: 0.8;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}

/* Form */
form.request-form { max-width: 640px; margin: 0 auto; }
form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 560px) { form .row { grid-template-columns: 1fr; } }
form .field { margin-bottom: 16px; }
form label { display: block; font-weight: 600; font-size: 14px; color: var(--navy); margin-bottom: 6px; }
form input, form select, form textarea {
  width: 100%; padding: 10px 12px;
  border: 1px solid #D0D0D8; border-radius: 6px;
  font-family: inherit; font-size: 14px; background: var(--white);
}
form input:focus, form select:focus, form textarea:focus {
  outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(30,39,97,0.12);
}
form textarea { min-height: 120px; resize: vertical; }
form .submit { text-align: center; margin-top: 20px; }
form button {
  background: var(--coral); color: var(--white); border: none;
  padding: 14px 40px; border-radius: var(--radius);
  font-size: 16px; font-weight: 600; cursor: pointer;
}
form button:hover { background: #E04a50; }

/* Alphabetical index listing */
.index-list { columns: 2; gap: 32px; margin-top: 24px; }
@media (min-width: 720px) { .index-list { columns: 3; } }
@media (min-width: 980px) { .index-list { columns: 4; } }
.index-list a { display: block; padding: 4px 0; font-size: 14px; break-inside: avoid; }
.index-list .letter { font-weight: 700; color: var(--navy); margin-top: 20px; text-transform: uppercase; break-after: avoid; border-bottom: 2px solid var(--ice); padding-bottom: 4px; }

/* Trust / compliance banner */
.trust-strip {
  background: var(--ice-soft); padding: 32px 0; text-align: center;
}
.trust-strip .icons { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; font-size: 14px; color: var(--grey); }
.trust-strip .icons span { font-weight: 600; color: var(--navy); }

/* Small text helpers */
.text-sm { font-size: 13px; color: var(--grey); }
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 32px; }

/* Print: hide nav/CTAs */
@media print {
  header.site-header, footer.site-footer, .cta-row, nav.top { display: none; }
  body { font-size: 11pt; }
}
/* trust_block.css — scoped .tb-* — mobile-first */

.tb-wrap {
  max-width: 960px;
  margin: 2rem auto;
  padding: 1.5rem 1rem;
  font-family: var(--site-font, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif);
  color: var(--site-text, #1a1a1a);
  border-top: 1px solid var(--site-border, #e5e7eb);
  box-sizing: border-box;
}
.tb-wrap *,
.tb-wrap *::before,
.tb-wrap *::after { box-sizing: border-box; }

.tb-title {
  font-size: 1.25rem;
  color: var(--site-heading, #0a2342);
  margin: 0 0 1.25rem 0;
  line-height: 1.3;
}

.tb-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.tb-card {
  background: var(--site-soft-bg, #f7f9fc);
  border: 1px solid var(--site-border, #e5e7eb);
  border-radius: 12px;
  padding: 1rem;
}
.tb-card-head {
  display: flex; gap: 0.75rem; align-items: flex-start;
  margin-bottom: 0.65rem;
}
.tb-card-title {
  font-size: 1rem;
  margin: 0 0 0.1rem 0;
  color: var(--site-heading, #0a2342);
}
.tb-card-sub {
  font-size: 0.8rem;
  color: var(--site-muted, #4a5568);
  margin: 0;
}
.tb-avatar {
  flex: 0 0 40px;
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #fff;
  font-size: 0.9rem;
}
.tb-avatar-rx { background: #0d9488; }
.tb-avatar-rc { background: #4f46e5; }

.tb-card-body {
  margin: 0 0 0.6rem 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--site-text, #1a1a1a);
}
.tb-ai-disclosure {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--site-muted, #4a5568);
  padding: 0.5rem 0.7rem;
  background: #fff;
  border-left: 3px solid #f59e0b;
  border-radius: 4px;
}
.tb-ai-disclosure strong { color: #92400e; }

.tb-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.tb-badge {
  display: flex; flex-direction: column; gap: 0.15rem;
  padding: 0.6rem 0.7rem;
  border: 1px solid var(--site-border, #e5e7eb);
  border-radius: 8px;
  background: #fff;
}
.tb-badge strong {
  font-size: 0.85rem; color: var(--site-heading, #0a2342);
}
.tb-badge span {
  font-size: 0.75rem; color: var(--site-muted, #4a5568);
}

.tb-posture {
  font-size: 0.85rem;
  color: var(--site-text, #1a1a1a);
  line-height: 1.55;
  margin: 0 0 0.7rem 0;
}
.tb-link { color: var(--site-accent, #2563eb); text-decoration: underline; }
.tb-reviewed {
  font-size: 0.75rem;
  color: var(--site-muted, #718096);
  margin: 0;
}

@media (min-width: 720px) {
  .tb-grid { grid-template-columns: 1fr 1fr; }
  .tb-badges { grid-template-columns: repeat(4, 1fr); }
  .tb-title { font-size: 1.4rem; }
}
@media (min-width: 960px) {
  .tb-wrap { padding: 2rem 0; }
}
/* pricing_bands.css — scoped .pb-* — mobile-first */

.pb-wrap {
  max-width: 720px;
  margin: 2rem auto;
  padding: 1.25rem 1rem;
  border: 1px solid var(--site-border, #e5e7eb);
  border-radius: 12px;
  background: #fff;
  font-family: var(--site-font, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif);
  color: var(--site-text, #1a1a1a);
  box-sizing: border-box;
}
.pb-wrap *, .pb-wrap *::before, .pb-wrap *::after { box-sizing: border-box; }

.pb-title {
  font-size: 1.2rem;
  color: var(--site-heading, #0a2342);
  margin: 0 0 0.25rem 0;
}
.pb-sub {
  font-size: 0.85rem;
  color: var(--site-muted, #4a5568);
  margin: 0 0 1rem 0;
}

.pb-card {
  background: var(--site-soft-bg, #f7f9fc);
  border: 1px solid var(--site-border, #e5e7eb);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
}
.pb-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--site-border, #e5e7eb);
}
.pb-row:last-of-type { border-bottom: 0; }
.pb-k {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--site-muted, #4a5568);
  flex: 0 0 auto;
}
.pb-v {
  font-size: 0.95rem;
  color: var(--site-text, #1a1a1a);
  text-align: right;
}
.pb-range {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--site-heading, #0a2342);
}
.pb-range small {
  display: block;
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--site-muted, #718096);
  margin-top: 2px;
}
.pb-note {
  font-size: 0.85rem;
  color: var(--site-muted, #4a5568);
  line-height: 1.5;
  margin: 0.75rem 0 0 0;
  padding-top: 0.65rem;
  border-top: 1px solid var(--site-border, #e5e7eb);
}
.pb-disclaimers {
  margin: 0 0 1rem 0;
  padding-left: 1.1rem;
  font-size: 0.8rem;
  color: var(--site-muted, #4a5568);
  line-height: 1.55;
}
.pb-disclaimers li { margin-bottom: 0.2rem; }

.pb-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  background: var(--site-accent, #2563eb);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  min-height: 44px;
}
.pb-cta:hover { background: var(--site-accent-hover, #1d4ed8); }

@media (min-width: 640px) {
  .pb-wrap { padding: 1.5rem 1.5rem; }
  .pb-title { font-size: 1.35rem; }
}
/* intake_form.css — scoped to .if-* classes. Mobile-first.
   Works with site's existing tokens; fallback values provided. */

.if-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 1.5rem 1rem;
  font-family: var(--site-font, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif);
  color: var(--site-text, #1a1a1a);
  box-sizing: border-box;
}
.if-wrap *,
.if-wrap *::before,
.if-wrap *::after { box-sizing: border-box; }

.if-header { margin-bottom: 1.25rem; }
.if-title {
  font-size: 1.5rem;
  line-height: 1.25;
  margin: 0 0 0.5rem 0;
  color: var(--site-heading, #0a2342);
}
.if-sub {
  font-size: 0.95rem;
  color: var(--site-muted, #4a5568);
  margin: 0;
  line-height: 1.5;
}

.if-form { display: flex; flex-direction: column; gap: 1.1rem; }

.if-field { display: flex; flex-direction: column; gap: 0.4rem; }
.if-fieldset { border: 0; padding: 0; margin: 0; }

.if-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--site-heading, #0a2342);
}
.if-req { color: #c0392b; margin-left: 2px; }
.if-help { font-size: 0.8rem; color: var(--site-muted, #718096); }

.if-input {
  width: 100%;
  padding: 0.7rem 0.85rem;
  font-size: 1rem;
  line-height: 1.3;
  border: 1px solid var(--site-border, #d1d5db);
  border-radius: 8px;
  background: #fff;
  color: inherit;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 120ms ease, box-shadow 120ms ease;
}
.if-input:focus {
  outline: none;
  border-color: var(--site-accent, #2563eb);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
}
.if-textarea { resize: vertical; min-height: 90px; font-family: inherit; }

.if-autocomplete { position: relative; }
.if-ac-list {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  right: 0;
  max-height: 240px;
  overflow-y: auto;
  margin: 0;
  padding: 4px 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--site-border, #d1d5db);
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  z-index: 10;
}
.if-ac-item {
  padding: 0.55rem 0.85rem;
  cursor: pointer;
  font-size: 0.95rem;
}
.if-ac-item:hover,
.if-ac-item[aria-selected="true"] {
  background: var(--site-accent-soft, #eef2ff);
}
.if-ac-item .if-ac-sub {
  display: block;
  font-size: 0.8rem;
  color: var(--site-muted, #718096);
}

.if-radio-group { display: flex; flex-direction: column; gap: 0.45rem; margin-top: 0.25rem; }
.if-radio,
.if-check {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.95rem;
  cursor: pointer;
  line-height: 1.45;
}
.if-radio input,
.if-check input {
  margin-top: 0.2rem;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.if-phone-row { display: grid; grid-template-columns: 120px 1fr; gap: 0.5rem; }
.if-cc { padding-left: 0.55rem; padding-right: 0.55rem; font-size: 0.9rem; }

.if-consent { background: var(--site-soft-bg, #f7f9fc); padding: 0.9rem; border-radius: 10px; border: 1px solid var(--site-border, #e5e7eb); }
.if-consent .if-check span { font-size: 0.85rem; color: var(--site-muted, #4a5568); line-height: 1.55; }

.if-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.if-actions { margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.5rem; }
.if-actions-note { font-size: 0.8rem; color: var(--site-muted, #718096); margin: 0; }

.if-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 120ms ease, transform 80ms ease;
  min-height: 48px;
}
.if-btn:active { transform: translateY(1px); }
.if-btn-primary { background: var(--site-accent, #2563eb); color: #fff; }
.if-btn-primary:hover { background: var(--site-accent-hover, #1d4ed8); }
.if-btn-primary:disabled { background: #94a3b8; cursor: not-allowed; }
.if-btn-wa { background: #25D366; color: #fff; }
.if-btn-wa:hover { background: #1da851; }

.if-error {
  background: #fff1f0;
  border: 1px solid #fca5a5;
  color: #991b1b;
  padding: 0.7rem 0.85rem;
  border-radius: 8px;
  font-size: 0.9rem;
}

.if-thankyou {
  padding: 1.5rem 1rem;
  text-align: center;
  border: 1px solid var(--site-border, #e5e7eb);
  border-radius: 12px;
  background: #f0fdf4;
}
.if-thankyou h3 { margin: 0 0 0.5rem 0; color: #166534; }
.if-thankyou p { margin: 0.5rem 0; font-size: 0.95rem; color: var(--site-text, #1a1a1a); line-height: 1.5; }
.if-thankyou code { background: #fff; padding: 2px 6px; border-radius: 4px; font-size: 0.85rem; }
.if-thankyou .if-btn { margin: 0.75rem auto; min-width: 220px; }

/* Tablet+ */
@media (min-width: 640px) {
  .if-wrap { padding: 2rem 1.25rem; }
  .if-title { font-size: 1.85rem; }
  .if-radio-group { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem 1rem; }
}
@media (min-width: 960px) {
  .if-wrap { padding: 2.5rem 0; }
}

/* RTL support (site may flip via dir=rtl on <html>) */
[dir="rtl"] .if-phone-row { grid-template-columns: 1fr 120px; }
[dir="rtl"] .if-hp { left: auto; right: -9999px; }

/* RESERVE MEDS — Brand typography + component overrides */

h1, h2, h3, h4, .hero h1, .wordmark {
  font-family: "Didot", "Bodoni 72", "Playfair Display", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--navy);
}
.hero h1 { letter-spacing: 0.04em; }
.cta-btn {
  background: var(--navy) \!important;
  color: var(--ivory) \!important;
  border: 1px solid var(--navy) \!important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85em;
  font-weight: 500;
}
.cta-btn:hover { background: var(--oxblood) \!important; border-color: var(--oxblood) \!important; color: var(--ivory) \!important; }
.cta-btn-secondary {
  background: transparent \!important;
  color: var(--navy) \!important;
  border: 1px solid var(--navy) \!important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85em;
  font-weight: 500;
}
.cta-btn-secondary:hover { background: var(--navy) \!important; color: var(--ivory) \!important; }
.logo a { font-family: "Didot","Bodoni 72","Playfair Display",Georgia,serif; letter-spacing: 0.14em; font-weight: 400; color: var(--ivory) \!important; text-transform: uppercase; }
.status-green { color: var(--status-green); border-color: var(--status-green); }
.status-yellow { color: var(--status-yellow); border-color: var(--status-yellow); }
.status-red { color: var(--status-red); border-color: var(--status-red); }
.price-display { font-family: "Didot","Bodoni 72",Georgia,serif; color: var(--navy); letter-spacing: 0.02em; }
.eyebrow { font-family: "Didot",Georgia,serif; color: var(--gold); letter-spacing: 0.2em; text-transform: uppercase; font-size: 0.78em; }
hr, .hairline { border: none; border-top: 0.5px solid var(--hairline); margin: 28px 0; }
footer .logo-seal { display: block; margin: 0 auto 16px; max-width: 240px; opacity: 0.92; }
