/* ============================================================
   PRODUCER SITE - SHARED DESIGN SYSTEM
   Source of truth: references/brand-tokens.md
   This file is IDENTICAL across every producer build.
   Do not vary per producer. Producer values live in the HTML.
   ============================================================ */

:root {
  --navy: #0A1F44;
  --navy-deep: #061534;
  --gold: #D4A93A;
  --gold-bright: #E8C04A;
  --off-white: #F8F6F0;
  --paper: #F4F5EF;
  --ink: #111111;
  --ink-soft: #3A3A3A;
  --muted: #6A6A6A;
  --line: rgba(17,17,17,0.10);
  --cro-orange: #F97316;

  --sp-xs: 8px;
  --sp-sm: 16px;
  --sp-md: 24px;
  --sp-lg: 40px;
  --sp-xl: 64px;
  --sp-2xl: 96px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 1.15;
  margin: 0;
}
p { margin: 0 0 var(--sp-sm); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 760px; margin: 0 auto; padding: 0 32px; }

/* ---------- SKIP LINK (a11y) ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--gold); color: var(--navy);
  padding: 12px 20px; font-weight: 700; font-size: 14px;
}
.skip-link:focus { left: 0; }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244,245,239,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(10,31,68,0.1);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; gap: 24px; }
.wordmark {
  font-family: 'Lora', Georgia, serif; font-size: 24px; font-weight: 600;
  color: var(--navy); display: flex; align-items: center; letter-spacing: -0.4px;
  white-space: nowrap;
}
.wordmark .pipe { display: inline-block; width: 2px; height: 20px; background: var(--gold); margin: 0 12px; }
.wordmark .light { font-weight: 400; color: var(--muted); font-size: 20px; }
.nav-links {
  display: flex; gap: 30px; align-items: center;
  font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
}
.nav-links a { color: var(--navy); opacity: 0.7; transition: opacity 0.15s; }
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-links a.active { border-bottom: 2px solid var(--gold); padding-bottom: 3px; }
@media (max-width: 860px) { .nav-links { display: none; } .nav-inner .btn { padding: 10px 16px; font-size: 12px; } .wordmark { font-size: 20px; } }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block; padding: 18px 36px;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 15px;
  letter-spacing: 0.5px; text-transform: uppercase;
  border: none; border-radius: 3px; cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, color 0.15s;
}
.btn-primary {
  background: var(--gold); color: var(--navy);
  box-shadow: 6px 6px 0 rgba(0,0,0,0.15);
}
.btn-primary:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 rgba(0,0,0,0.2); background: var(--gold-bright); }
.btn-secondary {
  background: transparent; color: var(--off-white);
  border: 1.5px solid var(--gold); padding: 16.5px 34.5px;
}
.btn-secondary:hover { background: var(--gold); color: var(--navy); }
.btn-outline {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--navy); padding: 16.5px 34.5px;
}
.btn-outline:hover { background: var(--navy); color: var(--off-white); }
.btn-sm { padding: 13px 24px; font-size: 13px; letter-spacing: 1.2px; box-shadow: 4px 4px 0 rgba(0,0,0,0.13); }
.btn-sm:hover { box-shadow: 6px 6px 0 rgba(0,0,0,0.18); }
.btn-lg { padding: 22px 48px; font-size: 16px; }

/* ---------- SECTIONS ---------- */
section { padding: var(--sp-2xl) 0; }
.section-dark { background: var(--navy); color: var(--off-white); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--off-white); }
.section-deep { background: var(--navy-deep); color: var(--off-white); }
.section-deep h2, .section-deep h3 { color: var(--off-white); }
.section-light { background: var(--paper); color: var(--ink); }
.section-cream { background: var(--off-white); color: var(--ink); }

.eyebrow, .section-eyebrow {
  font-size: 12px; letter-spacing: 4px; text-transform: uppercase;
  font-weight: 700; color: var(--gold); margin-bottom: 20px;
  padding-left: 32px; position: relative; display: inline-block;
}
.eyebrow::before, .section-eyebrow::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 22px; height: 1px; background: var(--gold);
}
h2 { font-size: 46px; margin-bottom: var(--sp-md); max-width: 820px; }
h2.center { margin-left: auto; margin-right: auto; text-align: center; }

/* signature gold hairline under a headline */
.rule-gold { width: 40%; max-width: 220px; height: 3px; background: var(--gold); margin: 0 0 var(--sp-md); border: none; }
.rule-gold.center { margin-left: auto; margin-right: auto; }

/* italic gold accent phrase inside a serif headline */
.accent { color: var(--gold-bright); font-style: italic; font-weight: 500; }
.section-light .accent, .section-cream .accent { color: var(--gold); }

.section-sub { font-size: 18px; color: var(--muted); margin-bottom: 56px; max-width: 720px; }
.section-dark .section-sub, .section-deep .section-sub { color: rgba(248,246,240,0.78); }
.section-sub.center { margin-left: auto; margin-right: auto; text-align: center; }
@media (max-width: 720px) { h2 { font-size: 32px; } section { padding: var(--sp-xl) 0; } }

/* ---------- HERO (home) ---------- */
.hero { background: var(--navy); color: var(--off-white); padding: var(--sp-2xl) 0 112px; position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(212,169,58,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(212,169,58,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero::after {
  content: ''; position: absolute; top: -20%; right: -10%; width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(212,169,58,0.13) 0%, rgba(212,169,58,0) 68%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: var(--sp-xl); align-items: center; position: relative; z-index: 1; }
.hero h1 { font-size: 60px; margin-bottom: var(--sp-md); color: var(--off-white); line-height: 1.06; }
.hero .sub { font-size: 19px; color: rgba(248,246,240,0.84); margin-bottom: var(--sp-md); max-width: 600px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin: var(--sp-lg) 0 var(--sp-md); }
.cta-subtext { font-size: 14.5px; color: rgba(248,246,240,0.62); margin: 0 0 var(--sp-lg); font-style: italic; }
.trust-strip { display: flex; flex-wrap: wrap; gap: 26px; font-size: 12px; color: rgba(248,246,240,0.75); letter-spacing: 1px; text-transform: uppercase; font-weight: 500; }
.trust-strip span { display: flex; align-items: center; gap: 8px; }
.trust-strip span::before { content: '\25C6'; color: var(--gold); font-size: 8px; }

/* portrait frame with gold offset slab */
.portrait-wrap { position: relative; max-width: 400px; margin-left: auto; }
.portrait-wrap::after {
  content: ''; position: absolute; bottom: -16px; right: -16px;
  width: 100%; height: 100%; background: var(--gold); z-index: 0;
}
.portrait {
  width: 100%; height: auto; display: block; position: relative; z-index: 1;
  /* Harmonizes a warm studio backdrop with the navy/gold palette.
     Remove this filter when a neutral-background headshot is supplied. */
  filter: saturate(0.42) contrast(1.04) brightness(1.02);
}
.portrait-caption {
  position: relative; z-index: 1; margin-top: 22px;
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); font-weight: 700;
}
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero h1 { font-size: 40px; }
  .hero { padding: var(--sp-xl) 0; }
  .portrait-wrap { margin-left: 0; max-width: 320px; }
}

/* ---------- PAGE HEADER (inner pages) ---------- */
.page-header { background: var(--navy); color: var(--off-white); padding: var(--sp-2xl) 0 80px; position: relative; overflow: hidden; }
.page-header::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(212,169,58,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(212,169,58,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-header .inner { position: relative; z-index: 1; }
.page-header h1 { font-size: 58px; margin-bottom: var(--sp-md); max-width: 880px; line-height: 1.05; color: var(--off-white); }
.page-header .lede { font-size: 19px; color: rgba(248,246,240,0.85); max-width: 720px; margin: 0; }
@media (max-width: 720px) { .page-header { padding: var(--sp-xl) 0 56px; } .page-header h1 { font-size: 36px; } }

/* ---------- PROSE ---------- */
.prose p { font-size: 18px; line-height: 1.75; color: var(--ink-soft); margin: 0 0 var(--sp-md); }
.prose strong { color: var(--navy); font-weight: 700; }
.prose ul { font-size: 18px; line-height: 1.75; color: var(--ink-soft); padding-left: 22px; margin: 0 0 var(--sp-md); }
.prose li { margin-bottom: 10px; }
.prose li::marker { color: var(--gold); }

/* ---------- PULLQUOTE / TURN ---------- */
.turn {
  font-family: 'Lora', Georgia, serif; font-size: 25px; line-height: 1.42;
  margin: var(--sp-lg) 0; padding: var(--sp-lg);
  background: var(--navy); color: var(--off-white);
  max-width: 860px; border-left: 4px solid var(--gold);
}
.turn strong { color: var(--gold-bright); font-style: italic; font-weight: 500; }
.section-dark .turn { background: rgba(212,169,58,0.09); }

/* ---------- STEPS ---------- */
.steps { display: grid; gap: 0; margin-top: 56px; }
.step { display: grid; grid-template-columns: 96px 1fr; gap: var(--sp-lg); align-items: start; padding: 36px 0; border-top: 1px solid rgba(212,169,58,0.22); }
.step:last-child { border-bottom: 1px solid rgba(212,169,58,0.22); }
.step-num { font-family: 'Lora', Georgia, serif; font-size: 60px; font-weight: 500; color: var(--gold); line-height: 1; }
.step-num::before { content: '0'; opacity: 0.38; }
.step-title { font-family: 'Lora', Georgia, serif; font-size: 27px; font-weight: 600; color: var(--off-white); margin-bottom: 10px; }
.step-body { color: rgba(248,246,240,0.78); font-size: 16.5px; max-width: 740px; margin: 0; }
@media (max-width: 720px) { .step { grid-template-columns: 62px 1fr; gap: 18px; } .step-num { font-size: 44px; } .step-title { font-size: 22px; } }

/* ---------- CREDENTIALS STRIP ---------- */
.creds-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(212,169,58,0.25); border: 1px solid rgba(212,169,58,0.25); }
.cred-cell { background: var(--navy); padding: 36px 26px; text-align: center; }
.section-light .cred-cell, .section-cream .cred-cell { background: var(--paper); }
.cred-stat { font-family: 'Lora', Georgia, serif; font-size: 40px; font-weight: 600; color: var(--gold-bright); line-height: 1; margin-bottom: 12px; letter-spacing: -1px; }
.section-light .cred-stat, .section-cream .cred-stat { color: var(--navy); }
.cred-label { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; color: rgba(248,246,240,0.72); line-height: 1.5; }
.section-light .cred-label, .section-cream .cred-label { color: var(--muted); }
@media (max-width: 860px) { .creds-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .creds-strip { grid-template-columns: 1fr; } .cred-cell { padding: 26px 20px; } }

/* ---------- CARDS ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-md); margin-top: 56px; }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-md); margin-top: 56px; }
.card { background: var(--paper); border-top: 4px solid var(--gold); padding: var(--sp-lg) 32px; transition: transform 0.2s, box-shadow 0.2s; }
.section-light .card { background: var(--off-white); }
.section-dark .card, .section-deep .card { background: rgba(248,246,240,0.05); border-top-color: var(--gold); }
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px -18px rgba(10,31,68,0.28); }
.card-num { font-size: 12px; color: var(--gold); letter-spacing: 4px; margin-bottom: var(--sp-sm); font-weight: 700; text-transform: uppercase; }
.card h3 { font-size: 24px; color: var(--navy); margin-bottom: 14px; line-height: 1.22; }
.section-dark .card h3, .section-deep .card h3 { color: var(--off-white); }
.card p { color: var(--muted); font-size: 15.5px; margin: 0; line-height: 1.65; }
.section-dark .card p, .section-deep .card p { color: rgba(248,246,240,0.8); }
@media (max-width: 900px) { .cards-3, .cards-2 { grid-template-columns: 1fr; } }

/* ---------- CHECKLIST ---------- */
.checklist { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 56px; margin-top: var(--sp-lg); }
.check-item { display: grid; grid-template-columns: 26px 1fr; gap: 14px; padding: 17px 0; border-bottom: 1px solid var(--line); align-items: start; }
.section-dark .check-item, .section-deep .check-item { border-bottom-color: rgba(248,246,240,0.12); }
.check-item .mark { width: 22px; height: 22px; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; margin-top: 2px; }
.section-dark .check-item .mark, .section-deep .check-item .mark { background: var(--gold); color: var(--navy); }
.check-item .txt { font-size: 15.5px; line-height: 1.55; }
@media (max-width: 720px) { .checklist { grid-template-columns: 1fr; } }

/* ---------- ABOUT / BIO ---------- */
.about-grid { display: grid; grid-template-columns: 340px 1fr; gap: var(--sp-xl); align-items: start; }
.about-creds { display: grid; gap: 20px; margin: var(--sp-lg) 0; padding: 32px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-creds .cred { display: grid; grid-template-columns: 96px 1fr; gap: 20px; align-items: center; }
.about-creds .stat { font-family: 'Lora', Georgia, serif; font-size: 30px; font-weight: 600; color: var(--navy); line-height: 1; }
.about-creds .label { font-size: 15.5px; color: var(--muted); }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: var(--sp-lg); } .portrait-wrap { max-width: 320px; margin-left: 0; } }

/* ---------- STATES LIST ---------- */
.states { display: flex; flex-wrap: wrap; gap: 10px; margin: var(--sp-md) 0 0; padding: 0; list-style: none; }
.states li {
  font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  padding: 9px 16px; border: 1px solid rgba(212,169,58,0.45); color: var(--navy); border-radius: 2px;
}
.section-dark .states li, .section-deep .states li { color: var(--off-white); border-color: rgba(212,169,58,0.5); }

/* ---------- FAQ ---------- */
.faq-list { margin-top: var(--sp-lg); max-width: 900px; }
.faq-list.center { margin-left: auto; margin-right: auto; }
details { border-bottom: 1px solid var(--line); }
.section-dark details, .section-deep details { border-bottom-color: rgba(248,246,240,0.14); }
summary {
  padding: 26px 0; font-family: 'Lora', Georgia, serif; font-size: 21px; font-weight: 600;
  color: var(--navy); cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: var(--sp-md);
}
.section-dark summary, .section-deep summary { color: var(--off-white); }
summary::-webkit-details-marker { display: none; }
summary::after { content: '\2192'; color: var(--gold); font-size: 21px; flex-shrink: 0; transition: transform 0.2s; }
details[open] summary::after { transform: rotate(90deg); }
details .ans { padding: 0 0 26px; color: var(--ink-soft); font-size: 16.5px; line-height: 1.7; max-width: 780px; }
.section-dark details .ans, .section-deep details .ans { color: rgba(248,246,240,0.82); }

/* ---------- BLOG / INSIGHTS ---------- */
.posts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.post-card { background: var(--off-white); border: 1px solid rgba(10,31,68,0.08); border-radius: 4px; padding: var(--sp-lg) 36px; transition: all 0.2s; display: block; }
.post-card:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 16px 40px -16px rgba(10,31,68,0.15); }
.post-card .meta { font-size: 12px; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; font-weight: 600; margin-bottom: 14px; }
.post-card .meta .dot { display: inline-block; width: 4px; height: 4px; background: var(--gold); border-radius: 50%; margin: 0 10px; vertical-align: middle; }
.post-card h3 { font-size: 25px; color: var(--navy); margin-bottom: var(--sp-sm); line-height: 1.2; }
.post-card .excerpt { color: var(--muted); font-size: 15.5px; margin: 0 0 20px; line-height: 1.6; }
.post-card .read-more { font-size: 13px; color: var(--navy); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.post-card .read-more::after { content: ' \2192'; color: var(--gold); }
.empty-state { border: 1px dashed rgba(10,31,68,0.25); background: var(--off-white); padding: 72px 40px; text-align: center; border-radius: 4px; }
.empty-state h3 { font-size: 28px; color: var(--navy); margin-bottom: 14px; }
.empty-state p { color: var(--muted); max-width: 560px; margin: 0 auto var(--sp-md); }
@media (max-width: 720px) { .posts-grid { grid-template-columns: 1fr; } }

/* ---------- CONTACT ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-xl); align-items: start; }
.contact-list { list-style: none; padding: 0; margin: var(--sp-lg) 0 0; }
.contact-list li { padding: 22px 0; border-bottom: 1px solid var(--line); }
.contact-list .k { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 8px; }
.contact-list .v { font-family: 'Lora', Georgia, serif; font-size: 24px; color: var(--navy); font-weight: 500; }
.contact-list .v a:hover { color: var(--gold); }
.contact-note { font-size: 14px; color: var(--muted); margin-top: 8px; }
.contact-panel { background: var(--navy); color: var(--off-white); padding: 48px 44px; border-top: 4px solid var(--gold); }
.contact-panel h3 { font-size: 28px; color: var(--off-white); margin-bottom: 14px; }
.contact-panel p { color: rgba(248,246,240,0.82); font-size: 16px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: var(--sp-lg); } .contact-panel { padding: 36px 28px; } }

/* ---------- FINAL CTA ---------- */
.final-cta { text-align: center; }
.final-cta h2 { margin: 0 auto var(--sp-md); }
.final-cta p { font-size: 18px; max-width: 660px; margin: 0 auto var(--sp-lg); color: rgba(248,246,240,0.85); }

/* ---------- FOOTER ---------- */
footer { background: var(--navy-deep); color: rgba(248,246,240,0.65); padding: 72px 0 40px; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px; margin-bottom: var(--sp-lg); }
.footer-wordmark { font-family: 'Lora', Georgia, serif; font-size: 26px; font-weight: 600; color: var(--off-white); margin-bottom: 14px; display: flex; align-items: center; }
.footer-wordmark .pipe { display: inline-block; width: 2px; height: 20px; background: var(--gold); margin: 0 12px; }
.footer-tag { font-size: 14px; color: var(--gold-bright); }
.footer-col h4 { font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; font-weight: 700; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a:hover { color: var(--off-white); }
.footer-disclosure {
  border-top: 1px solid rgba(248,246,240,0.08);
  padding-top: var(--sp-md); margin-bottom: var(--sp-md);
  font-size: 12px; line-height: 1.65; color: rgba(248,246,240,0.45); max-width: 980px;
}
.footer-bottom { padding-top: var(--sp-md); border-top: 1px solid rgba(248,246,240,0.08); display: flex; justify-content: space-between; font-size: 13px; flex-wrap: wrap; gap: var(--sp-sm); }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: var(--sp-lg); } }

/* ---------- STICKY MOBILE CTA ---------- */
.sticky-cta {
  display: none; position: fixed; bottom: 16px; right: 16px; z-index: 60;
  padding: 14px 24px; background: var(--gold); color: var(--navy); font-weight: 700;
  box-shadow: 0 12px 32px rgba(0,0,0,0.3); font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase;
  border-radius: 3px;
}
@media (max-width: 860px) { .sticky-cta { display: inline-block; } }

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
  .card:hover, .btn-primary:hover, .post-card:hover { transform: none; }
}
