/*
  Reveal+ site stylesheet.
  Last edited: 2026-05-10 (STORY-7.5 — palette correction after Playwright audit of live site)
  Tokens + hierarchy source: brand/brand-sheet.md (ground-truth palette captured
  from getComputedStyle() against https://reveal-plus.com, not the audit's
  brand-tokens.md which mis-extracted #1a4d7a navy as primary instead of
  #1a1a1a black).
*/

/* ============================================================
   1. Tokens — ground truth from getComputedStyle() on the live site
   ============================================================ */

:root {
  /* Dark surfaces (hero, page-header, footer) */
  --primary:        #1a1a1a;   /* near-black; hero gradient start, footer bg, default heading color */
  --primary-deep:   #0a0a0a;   /* gradient end on hero/page-header */

  /* Gold */
  --gold:           #C9A86A;   /* primary accent — hero h1, section h2 on cream, all .feature/.credential/.stat h3 */
  --gold-deep:      #B89A5F;   /* btn-primary gradient end */
  --gold-classic:   #D4AF37;   /* "Most Popular" badge on pricing */

  /* Surfaces */
  --bg-white:       #FFFFFF;   /* header bg, .about section, cards */
  --bg-cream:       #F8F6F3;   /* .features, .contact, alternating sections */
  --bg-divider:    #E8E8E8;

  /* Text */
  --text-strong:    #1a1a1a;   /* H2 on white, .info-item h3 */
  --text-mid:       #2a2a2a;   /* body, nav links */
  --text-muted:    #5a5a5a;
  --text-light:    #8a8a8a;

  /* Secondary CTA accent — the one navy on the live site, used for btn-secondary text */
  --accent-navy:    #2c4a7c;

  /* Semantic */
  --success:        #28a745;
  --warning:        #856404;
  --danger:         #721c24;

  /* Type */
  --font-heading:   "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body:      "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --container-width: 1200px;
  --section-padding-desktop: 80px;
  --section-padding-mobile: 56px;
  --radius-card: 12px;
  --radius-button: 999px;        /* live buttons are pill-shaped */

  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 4px 8px rgba(0, 0, 0, 0.06), 0 12px 24px rgba(0, 0, 0, 0.10);
}

/* ============================================================
   2. Base + resets
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-mid);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent-navy); text-decoration: none; }
a:hover { color: var(--gold-deep); text-decoration: underline; }

ul, ol { padding-left: 1.25em; }

button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* ============================================================
   3. Typography hierarchy
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-strong);
  margin: 0 0 0.5em;
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: 56px; }
h2 { font-size: 30px; font-weight: 600; }
h3 { font-size: 20px; font-weight: 600; }
h4 { font-size: 14px; font-family: var(--font-body); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-strong); }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

strong { color: var(--text-strong); }

@media (max-width: 768px) {
  h1 { font-size: 36px; }
  h2 { font-size: 26px; }
  h3 { font-size: 18px; }
}

/* ============================================================
   4. Layout primitives
   ============================================================ */

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

.section { padding: var(--section-padding-desktop) 0; }
@media (max-width: 768px) { .section { padding: var(--section-padding-mobile) 0; } }

.text-center { text-align: center; }

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* ============================================================
   5. Header / nav — WHITE bg, dark text (matches live site)
   ============================================================ */

.header {
  background: var(--bg-white);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.header .logo { display: inline-block; }
.header .logo img { height: 32px; width: auto; display: block; }

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 36px;
}

.nav-menu a {
  color: var(--text-mid);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  text-decoration: none;
}

.nav-menu a:hover { color: var(--gold-deep); }

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--text-strong);
  font-size: 28px;
  padding: 4px 8px;
  line-height: 1;
}

@media (max-width: 860px) {
  .menu-toggle { display: inline-flex; align-items: center; }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg-white);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: max-height 0.25s ease;
  }
  .nav-menu.open { max-height: 480px; }
  .nav-menu li { border-top: 1px solid var(--bg-divider); }
  .nav-menu a { display: block; padding: 16px 24px; }
}

/* ============================================================
   6. Buttons — gold gradient primary, white-pill secondary
   ============================================================ */

.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: var(--radius-button);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 0;
  transition: background 0.2s, color 0.2s, transform 0.1s, box-shadow 0.2s;
  cursor: pointer;
  text-align: center;
}

.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(201, 168, 106, 0.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-deep) 0%, #A6822E 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(201, 168, 106, 0.4);
}

.btn-secondary {
  background: var(--bg-white);
  color: var(--accent-navy);
  border: 0;
}
.btn-secondary:hover {
  background: var(--bg-cream);
  color: var(--accent-navy);
}

.btn-dark {
  background: var(--primary);
  color: var(--bg-white);
}
.btn-dark:hover { background: #000; color: var(--bg-white); }

.btn[aria-disabled="true"],
.btn-disabled {
  background: var(--bg-divider);
  color: var(--text-light);
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}

/* ============================================================
   7. Hero — black 135deg gradient with gold H1
   ============================================================ */

.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: var(--bg-white);
  padding: 112px 0 128px;
  text-align: center;
}

.hero h1 {
  color: var(--gold);
  font-size: 56px;
  font-weight: 700;
  max-width: 880px;
  margin: 0 auto 24px;
}

.hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  max-width: 720px;
  margin: 0 auto 40px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero { padding: 72px 0 88px; }
  .hero h1 { font-size: 36px; }
  .hero-subtitle { font-size: 17px; }
}

/* ============================================================
   8. Page header (inner pages) — same black gradient as hero
   ============================================================ */

.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: var(--bg-white);
  padding: 80px 24px 64px;
  text-align: center;
}
.page-header h1 { color: var(--gold); margin-bottom: 12px; font-size: 48px; }
.page-header .subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.92);
  max-width: 720px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .page-header { padding: 56px 24px 48px; }
  .page-header h1 { font-size: 32px; }
}

/* ============================================================
   9. Section backgrounds
   ============================================================ */

.features { background: var(--bg-cream); }
.features h2 { color: var(--gold); text-align: center; }
.features .section-subtitle { color: var(--text-muted); }

.about { background: var(--bg-white); }
.about h2 { color: var(--text-strong); }  /* DARK heading on white section per live site */

.contact-cta, .contact { background: var(--bg-cream); }
.contact-cta h2, .contact h2 { color: var(--gold); text-align: center; }

/* ============================================================
   10. Cards
   ============================================================ */

.card {
  background: var(--bg-white);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

.feature-card { text-align: center; }
.feature-card .feature-icon {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 16px;
}
.feature-card h3 { color: var(--gold); margin-bottom: 12px; font-weight: 600; }
.feature-card p { color: var(--text-muted); font-size: 15px; }

/* ============================================================
   11. About / stats — gold numbers per live site
   ============================================================ */

.about-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-text h2 { margin-bottom: 24px; }
.about-text p { color: var(--text-mid); }

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.highlight-item {
  background: var(--bg-cream);
  padding: 28px 32px;
  border-radius: var(--radius-card);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}
.highlight-item h3 {
  color: var(--gold);
  font-size: 48px;
  font-weight: 600;
  margin: 0 0 4px;
  line-height: 1;
  font-family: var(--font-heading);
}
.highlight-item p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

@media (max-width: 860px) {
  .about-content { grid-template-columns: 1fr; gap: 40px; }
  .highlight-item h3 { font-size: 36px; }
}

/* ============================================================
   12. Contact info-item — DARK h3 per live site
   ============================================================ */

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.info-item {
  background: var(--bg-white);
  padding: 28px 24px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  text-align: center;
}
.info-item h3 { color: var(--text-strong); font-size: 20px; margin-bottom: 8px; }
.info-item p, .info-item a { color: var(--text-mid); font-size: 16px; margin: 0; }
.info-item a:hover { color: var(--gold-deep); }

@media (max-width: 640px) {
  .contact-info-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   13. Bio page
   ============================================================ */

.bio-intro {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
}
.bio-portrait img {
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}
.bio-intro-text h2 { color: var(--text-strong); }
.bio-intro-text p { color: var(--text-mid); }
.bio-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.bio-stat {
  background: var(--bg-cream);
  padding: 16px 20px;
  border-radius: var(--radius-card);
  flex: 1;
  min-width: 140px;
}
.bio-stat strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 28px;
  font-weight: 700;
}
.bio-stat span { font-size: 14px; color: var(--text-muted); }

.credentials-grid, .achievement-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.credential-card, .achievement-badge {
  background: var(--bg-white);
  padding: 24px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  text-align: center;
}
.credential-card .icon, .achievement-badge .icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.credential-card h3, .achievement-badge h3 {
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--gold);
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.01em;
}

.career-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.career-list li {
  background: var(--bg-white);
  border-left: 4px solid var(--gold);
  padding: 24px 28px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}
.career-list h3 { color: var(--text-strong); margin-bottom: 4px; font-weight: 600; }
.career-meta { color: var(--gold-deep); font-size: 14px; font-weight: 500; margin-bottom: 8px; display: block; }

@media (max-width: 860px) {
  .bio-intro { grid-template-columns: 1fr; gap: 32px; }
  .credentials-grid, .achievement-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .credentials-grid, .achievement-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   14. Supplements page
   ============================================================ */

.supplements-page .overview-box {
  background: var(--bg-white);
  border-left: 4px solid var(--gold);
  padding: 24px 28px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  max-width: 880px;
  margin: 0 auto 48px;
}
.supplements-page .overview-box .important {
  color: var(--warning);
  font-weight: 500;
  margin-top: 12px;
}

.quiz-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: var(--bg-white);
  padding: 48px 32px;
  border-radius: var(--radius-card);
  text-align: center;
  margin: 0 auto 48px;
  max-width: 960px;
}
.quiz-cta h2 { color: var(--gold); margin-bottom: 12px; }
.quiz-cta p { color: rgba(255, 255, 255, 0.92); max-width: 640px; margin: 0 auto 24px; }
.quiz-cta .coming-soon-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 999px;
  text-transform: uppercase;
}

.supplement-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.supplement-card {
  background: var(--bg-white);
  padding: 28px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}
.supplement-card h3 { color: var(--text-strong); margin-bottom: 4px; }
.supplement-card .purpose { color: var(--text-muted); font-style: italic; margin-bottom: 12px; }
.supplement-card .dosage {
  background: var(--bg-cream);
  padding: 10px 14px;
  border-radius: var(--radius-card);
  font-weight: 600;
  color: var(--gold-deep);
  display: inline-block;
  margin-bottom: 16px;
  font-size: 14px;
}
.supplement-card h4 {
  font-size: 13px;
  color: var(--text-strong);
  letter-spacing: 0.05em;
  margin: 16px 0 8px;
}
.supplement-card ul { padding-left: 20px; color: var(--text-mid); font-size: 15px; }
.supplement-card ul li { margin-bottom: 4px; }

@media (max-width: 768px) {
  .supplement-list { grid-template-columns: 1fr; }
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.shop-card {
  background: var(--bg-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0.92;
}
.product-image-placeholder {
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-divider) 100%);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.shop-card-body { padding: 20px 24px; flex: 1; display: flex; flex-direction: column; }
.shop-card-body h3 { font-size: 17px; color: var(--text-strong); margin-bottom: 8px; }
.shop-card-body p { font-size: 14px; color: var(--text-muted); flex: 1; }
.shop-card-body .coming-soon-tag {
  display: inline-block;
  background: var(--bg-cream);
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  margin-top: 12px;
  align-self: flex-start;
}

@media (max-width: 960px) { .shop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .shop-grid { grid-template-columns: 1fr; } }

.quality-list {
  background: var(--bg-white);
  padding: 32px 36px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  max-width: 720px;
  margin: 48px auto;
}
.quality-list h2 { color: var(--text-strong); }
.quality-list ul { color: var(--text-mid); }

.summary-table-wrap {
  overflow-x: auto;
  margin: 32px 0;
}
.summary-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  font-size: 14px;
}
.summary-table th, .summary-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--bg-divider);
}
.summary-table th {
  background: var(--primary);
  color: var(--bg-white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.summary-table tbody tr:nth-child(even) { background: var(--bg-cream); }

/* ============================================================
   15. Pricing page
   ============================================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0 64px;
  align-items: stretch;
}
.tier-card {
  background: var(--bg-white);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.tier-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.tier-card.featured {
  border: 2px solid var(--gold-classic);
  transform: scale(1.02);
}
.tier-card.featured:hover { transform: scale(1.02) translateY(-3px); }
.tier-card .popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-classic);
  color: var(--primary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.tier-card h3 { color: var(--text-strong); margin-bottom: 8px; font-size: 22px; }
.tier-card .price {
  font-family: var(--font-heading);
  color: var(--gold-deep);
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1;
}
.tier-card .price-meta { color: var(--text-muted); font-size: 14px; margin-bottom: 16px; }
.tier-card .tier-desc { color: var(--text-mid); margin-bottom: 20px; }
.tier-card ul.tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}
.tier-card ul.tier-features li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--text-mid);
  font-size: 15px;
  border-bottom: 1px solid var(--bg-divider);
}
.tier-card ul.tier-features li:last-child { border-bottom: 0; }
.tier-card ul.tier-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}
.tier-card .tier-cta { margin-bottom: 12px; }
.tier-card .guarantee {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin: 0;
}

@media (max-width: 960px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .tier-card.featured { transform: none; }
  .tier-card.featured:hover { transform: translateY(-3px); }
}

.compare-table-wrap { overflow-x: auto; margin: 32px 0; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  font-size: 15px;
}
.compare-table th, .compare-table td {
  padding: 14px 16px;
  text-align: center;
  border-bottom: 1px solid var(--bg-divider);
}
.compare-table th { background: var(--primary); color: var(--bg-white); font-family: var(--font-body); font-weight: 600; font-size: 14px; }
.compare-table th:first-child, .compare-table td:first-child { text-align: left; }
.compare-table tbody tr:nth-child(even) { background: var(--bg-cream); }
.compare-table .yes { color: var(--success); font-weight: 700; }
.compare-table .no { color: var(--text-light); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 880px;
  margin: 32px auto 0;
}
.faq-item {
  background: var(--bg-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 24px 28px;
}
.faq-item h3 {
  font-size: 18px;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text-strong);
  margin-bottom: 8px;
}
.faq-item p { color: var(--text-mid); margin: 0; }

.final-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: var(--bg-white);
  padding: 64px 32px;
  text-align: center;
  border-radius: var(--radius-card);
  margin: 64px auto 0;
  max-width: 960px;
}
.final-cta h2 { color: var(--gold); }
.final-cta p { color: rgba(255, 255, 255, 0.92); max-width: 640px; margin: 0 auto 12px; }
.final-cta .note { font-size: 14px; color: rgba(255, 255, 255, 0.75); margin-bottom: 24px; }

/* ============================================================
   16. Contact page
   ============================================================ */

.contact-page-body {
  padding: 64px 0 80px;
  background: var(--bg-white);
}
.contact-page-body .contact-info-grid { margin-top: 48px; }
.contact-lead {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 17px;
  color: var(--text-mid);
}
.contact-lead a { color: var(--accent-navy); font-weight: 500; }
.contact-lead a:hover { color: var(--gold-deep); }

/* ============================================================
   17. Legal pages
   ============================================================ */

.legal-page { padding: 0 0 80px; background: var(--bg-cream); }
.legal-content {
  max-width: 880px;
  margin: -32px auto 0;
  padding: 48px 40px;
  background: var(--bg-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  position: relative;
}
.legal-content section { margin-bottom: 32px; }
.legal-content h2 {
  color: var(--text-strong);
  font-size: 24px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
}
.legal-content h3 {
  color: var(--text-strong);
  font-size: 18px;
  font-family: var(--font-body);
  font-weight: 600;
  margin: 20px 0 8px;
}
.legal-content p, .legal-content li { color: var(--text-mid); font-size: 15px; }
.legal-content ul { margin: 8px 0 16px; }
.legal-content .contact-box {
  background: var(--bg-cream);
  padding: 20px 24px;
  border-radius: var(--radius-card);
  border-left: 4px solid var(--gold);
  margin-top: 16px;
}
.legal-content .contact-box p { margin: 4px 0; }
.legal-content .last-updated {
  color: var(--text-light);
  font-size: 13px;
  text-align: right;
  margin-top: 32px;
  font-style: italic;
}

/* ============================================================
   18. Footer — BLACK bg per live site
   ============================================================ */

.footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.85);
  padding: 64px 0 32px;
  margin-top: 80px;
}
.footer-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand p { font-size: 14px; color: rgba(255, 255, 255, 0.7); }
.footer-logo-link img { height: 40px; width: auto; margin-bottom: 16px; }
.footer h4 {
  color: var(--gold);
  font-size: 13px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer ul li { margin-bottom: 8px; font-size: 14px; }
.footer a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
  text-decoration: none;
}
.footer a:hover { color: var(--gold); }
.footer-contact li, .footer-contact a { color: rgba(255, 255, 255, 0.8); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  margin-top: 48px;
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: rgba(255, 255, 255, 0.7); margin: 4px 0; }
.footer-bottom .disclaimer { font-size: 12px; color: rgba(255, 255, 255, 0.5); max-width: 880px; margin: 8px auto 0; }

@media (max-width: 860px) {
  .footer-content { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-content { grid-template-columns: 1fr; }
  .footer { padding: 48px 0 24px; margin-top: 56px; }
}

/* ============================================================
   19. Utilities
   ============================================================ */

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.coming-soon {
  display: inline-block;
  background: var(--bg-cream);
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border-radius: 999px;
  text-transform: uppercase;
}
