/* ═══════════════════════════════════════════════════════════════════════════
   IMPARTIO — Main Styles (main.css)
   
   Requires: index.css (design tokens)
   Covers: reset, base, typography, layout, hero, cards, forms, buttons,
   tabs, badges, utilities, responsive, print.
   Header and footer styles are in header.css and footer.css.
   ═══════════════════════════════════════════════════════════════════════════ */


/* ═══ 1. RESET & BASE ═════════════════════════════════════════════════════ */

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

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

body {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bkg-light);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--ease-fast);
}
a:hover {
  color: var(--accent-hover);
}

::selection {
  background: var(--accent);
  color: var(--bkg-white);
}


/* ═══ 3. TYPOGRAPHY ═══════════════════════════════════════════════════════ */

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--bkg-dark);
  line-height: 1.2;
}

h1 {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
}

h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
}

h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
}

p + p { margin-top: var(--sp-4); }

.text-accent { color: var(--accent); }
.text-dark { color: var(--bkg-dark); }
.text-muted { color: var(--text-muted); }
.text-sm { font-size: 0.85rem; }
.text-xs { font-size: 0.75rem; }
.text-center { text-align: center; }
.text-balance { text-wrap: balance; }

.lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-primary);
  max-width: var(--narrow-width);
}

.section-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}


/* ═══ 4. LAYOUT & GRID ═══════════════════════════════════════════════════ */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.container--narrow {
  max-width: var(--content-width);
}

.section {
  padding: var(--sp-16) 0;
}

.section--sm {
  padding: var(--sp-10) 0;
}

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

.flex {
  display: flex;
  gap: var(--sp-4);
}
.flex--center { align-items: center; justify-content: center; }
.flex--between { align-items: center; justify-content: space-between; }
.flex--col { flex-direction: column; }

/* ═══ 7. HERO SECTIONS ═══════════════════════════════════════════════════ */

.hero {
  background: linear-gradient(135deg, var(--bkg-dark) 0%, var(--bkg-dark-light) 100%);
  padding: var(--sp-16) var(--sp-6);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle pattern overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(200, 155, 60, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(200, 155, 60, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero > * {
  position: relative;
}

.hero h1 {
  color: var(--bkg-white);
  margin-bottom: var(--sp-4);
}

.hero p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: var(--narrow-width);
  margin: 0 auto;
  line-height: 1.7;
}

/* Hero with logo layout */
.hero-inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: var(--sp-8);
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
.hero-inner h1,
.hero-inner p {
  text-align: left;
  margin-left: 0;
}

.hero-logo {
  width: 143px;
  height: 143px;
  object-fit: contain;
  flex-shrink: 0;
}

.hero-text {
  flex: 1;
}

/* Price pill */
.hero-price {
  flex-shrink: 0;
  background: var(--accent);
  border-radius: var(--radius-pill);
  padding: 10px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
  align-self: center;
  box-shadow: var(--shadow-accent);
}
.hero-price .hp-amount {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  color: var(--bkg-white);
  line-height: 1;
}
.hero-price .hp-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.3px;
  margin-top: 3px;
}

/* Hero compact (thank-you pages, etc.) */
.hero--compact {
  padding: var(--sp-10) var(--sp-6);
}


/* ═══ 8. CARDS & CONTENT BLOCKS ══════════════════════════════════════════ */

.card {
  background: var(--bkg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--ease-base), transform var(--ease-base);
}
.card:hover {
  box-shadow: var(--shadow-md);
}

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

/* Callout block (teal left border) */
.callout {
  background: var(--accent-glow);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-md);
  padding: var(--sp-4) var(--sp-5);
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-primary);
}
.callout strong {
  color: var(--bkg-dark);
}

/* Info section (used for CA-specific content, etc.) */
.info-section {
  background: rgba(200, 155, 60, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-6) var(--sp-8);
}

.info-section h3 {
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.info-section h3::before {
  content: '';
  width: 3px;
  height: 16px;
  background: var(--accent);
  border-radius: 2px;
}

.info-items {
  display: grid;
  gap: var(--sp-4);
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.info-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--bkg-dark);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.info-text {
  font-size: 0.85rem;
  color: var(--text-primary);
  line-height: 1.6;
}

/* Benefit / feature item */
.benefit {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
}

.benefit-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bkg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.benefit-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.benefit-text strong {
  font-size: 0.85rem;
  color: var(--bkg-dark);
}
.benefit-text p {
  font-size: 0.8rem;
  color: var(--text-primary);
  line-height: 1.5;
}

/* Step / timeline items */
.step {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bkg-dark);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  flex-shrink: 0;
}

.step-content h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--bkg-dark);
  margin-bottom: var(--sp-1);
}
.step-content p {
  font-size: 0.85rem;
  color: var(--text-primary);
  line-height: 1.6;
}

/* Report section reference tag */
.report-ref {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: var(--sp-1);
  display: inline-block;
}


/* ═══ 9. TABS ════════════════════════════════════════════════════════════ */

.tab-nav {
  background: var(--bkg-white);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tab-btn {
  padding: 14px 20px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: color var(--ease-fast), border-color var(--ease-fast);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  font-family: var(--font-body);
}
.tab-btn:hover {
  color: var(--text-primary);
}
.tab-btn.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.tab-btn--cta {
  color: var(--accent);
  border-bottom-color: var(--accent);
  font-weight: 700;
}
.tab-btn--cta:hover {
  color: var(--accent-hover);
  border-bottom-color: var(--accent-hover);
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}


/* ═══ 10. FORMS ══════════════════════════════════════════════════════════ */

.form-card {
  background: var(--bkg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.form-header {
  background: var(--bkg-dark);
  padding: var(--sp-6) var(--sp-8);
}
.form-header h2 {
  font-size: 1.5rem;
  color: var(--bkg-white);
  margin-bottom: var(--sp-1);
}
.form-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.form-body {
  padding: var(--sp-5) var(--sp-8);
  border-bottom: 1px solid var(--border);
}
.form-body:last-of-type {
  border-bottom: none;
}

/* Field grid */
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3) var(--sp-4);
}
.field-grid--1 {
  grid-template-columns: 1fr;
}
.field-grid .field--full {
  grid-column: 1 / -1;
}

/* Individual field */
.field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.field label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--bkg-dark);
}
.field label .required {
  color: var(--accent);
}

.field input,
.field select,
.field textarea {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  font-size: 0.85rem;
  font-family: var(--font-body);
  color: var(--bkg-dark);
  background: var(--bkg-white);
  transition: border-color var(--ease-fast), box-shadow var(--ease-fast);
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-ring);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.field textarea {
  resize: vertical;
  min-height: 80px;
}

/* Signature field */
.field--signature input {
  font-family: var(--font-sig);
  font-size: 1.25rem;
  padding: 12px;
}

/* Consent checkbox row */
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-8);
  background: var(--bkg-subtle);
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--text-primary);
}
.consent-row input[type="checkbox"] {
  accent-color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
  width: 16px;
  height: 16px;
}

/* Submit area */
.submit-area {
  padding: var(--sp-5) var(--sp-8);
  background: var(--bkg-subtle);
  border-top: 1px solid var(--border);
  text-align: center;
}

.submit-note {
  font-size: 0.72rem;
  color: var(--text-primary);
  margin-top: var(--sp-2);
}


/* ═══ 11. BUTTONS & LINKS ════════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  border-radius: var(--radius-md);
  padding: 11px 28px;
  cursor: pointer;
  transition: background var(--ease-fast), box-shadow var(--ease-fast), transform var(--ease-fast);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: var(--bkg-white);
}
.btn--primary:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-accent);
  color: var(--bkg-white);
}

.btn--secondary {
  background: var(--bkg-white);
  color: var(--accent);
  border: 1px solid var(--accent);
}
.btn--secondary:hover {
  background: var(--accent-glow);
}

.btn--navy {
  background: var(--bkg-dark);
  color: var(--bkg-white);
}
.btn--navy:hover {
  background: var(--bkg-dark-light);
}

.btn--lg {
  padding: 14px 36px;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
}

.btn--pill {
  border-radius: var(--radius-pill);
}

.btn--full {
  width: 100%;
}

/* Link with arrow */
.link-arrow {
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
}
.link-arrow::after {
  content: '→';
  transition: transform var(--ease-fast);
}
.link-arrow:hover::after {
  transform: translateX(3px);
}


/* ═══ 12. STATE BADGES & PILLS ═══════════════════════════════════════════ */

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.badge--teal {
  background: var(--accent-glow);
  color: var(--accent);
}

.badge--navy {
  background: rgba(10, 22, 40, 0.08);
  color: var(--bkg-dark);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--accent);
  color: var(--bkg-white);
  border-radius: var(--radius-pill);
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.pill--lg {
  padding: 10px 28px;
  font-size: 1rem;
}


/* ═══ 13. RESOURCE LINKS ═════════════════════════════════════════════════ */

.resource-link {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bkg-white);
  transition: border-color var(--ease-fast), box-shadow var(--ease-fast);
  text-decoration: none;
}
.resource-link:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.resource-link-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--accent-glow);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.resource-link-text {
  flex: 1;
}
.resource-link-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--bkg-dark);
  margin-bottom: 2px;
}
.resource-link-text span {
  font-size: 0.75rem;
  color: var(--text-primary);
}


/* ═══ 14. AGREEMENT SECTIONS ═════════════════════════════════════════════ */

.agreement-section {
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--border);
}
.agreement-section:last-child {
  border-bottom: none;
}

.agreement-section h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--bkg-dark);
  margin-bottom: var(--sp-2);
}

.agreement-section p {
  font-size: 0.85rem;
  color: var(--text-primary);
  line-height: 1.7;
}

.agreement-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bkg-white);
  font-size: 0.7rem;
  font-weight: 700;
  margin-right: var(--sp-2);
  flex-shrink: 0;
  vertical-align: middle;
}


/* ═══ 15. UTILITY CLASSES ════════════════════════════════════════════════ */

/* ═══ 16. VIDEO PLAYER ══════════════════════════════════════════════════ */

.video-player {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  aspect-ratio: 16 / 9;
  background: var(--bkg-dark);
}

.video-player-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity var(--ease-base);
}

.video-player-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: rgba(200, 155, 60, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease-fast), transform var(--ease-fast), box-shadow var(--ease-fast);
  z-index: 2;
}
.video-player-play::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 22px;
  border-color: transparent transparent transparent var(--bkg-white);
  margin-left: 4px;
}

.video-player:hover .video-player-play {
  background: var(--accent);
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0 0 8px rgba(200, 155, 60, 0.2);
}

.video-player-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-4) var(--sp-5);
  background: linear-gradient(transparent, rgba(10, 22, 40, 0.85));
  color: var(--bkg-white);
  font-size: 0.85rem;
  font-weight: 500;
  z-index: 2;
}

.video-player.is-playing .video-player-thumb,
.video-player.is-playing .video-player-play,
.video-player.is-playing .video-player-label {
  display: none;
}

.video-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


/* ═══ 17. UTILITY CLASSES ════════════════════════════════════════════════ */
.mt-2 { margin-top: var(--sp-2); }
.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }
.mt-8 { margin-top: var(--sp-8); }
.mt-10 { margin-top: var(--sp-10); }
.mt-12 { margin-top: var(--sp-12); }

.mb-2 { margin-bottom: var(--sp-2); }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-6 { margin-bottom: var(--sp-6); }
.mb-8 { margin-bottom: var(--sp-8); }

.pt-6 { padding-top: var(--sp-6); }
.pb-6 { padding-bottom: var(--sp-6); }

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

.bg-white { background: var(--bkg-white); }
.bg-light { background: var(--bkg-light); }
.bg-dark  { background: var(--bkg-dark); }
.bg-subtle { background: var(--bkg-subtle); }

.border-default { border: 1px solid var(--border); }
.rounded { border-radius: var(--radius-md); }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }


/* ═══ 16. RESPONSIVE ═════════════════════════════════════════════════════ */

/* Tablet: 768px and below */
@media (max-width: 768px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }

  .hero { padding: var(--sp-10) var(--sp-4); }
  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: var(--sp-5);
  }
  .hero-inner h1,
  .hero-inner p {
    text-align: center;
  }
  .hero-logo {
    width: 104px;
    height: 104px;
    margin: 0 auto;
  }
  .hero-price {
    align-self: center;
  }

  .info-section { padding: var(--sp-5) var(--sp-5); }
}

/* Mobile: 640px and below */
@media (max-width: 640px) {
  :root {
    --sp-6: 1.25rem;
    --sp-8: 1.5rem;
  }

  .grid--2 { grid-template-columns: 1fr; }
  .grid--3 { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: 1fr; }

  .field-grid { grid-template-columns: 1fr; }

  /* Form adjustments */
  .form-header { padding: var(--sp-5) var(--sp-5); }
  .form-body { padding: var(--sp-4) var(--sp-5); }
  .consent-row { padding: var(--sp-4) var(--sp-5); }
  .submit-area { padding: var(--sp-4) var(--sp-5); }
}

/* Small mobile: 380px and below */
@media (max-width: 380px) {
  h1 { font-size: 1.6rem; }
  .hero-price .hp-amount { font-size: 1.75rem; }
  .btn--lg { padding: 12px 24px; font-size: 0.85rem; }
}


/* ═══ 16b. COOKIE CARDS ═════════════════════════════════════════════════ */

.cookie-card {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin: 0 0 var(--sp-3);
  font-size: 0.8rem;
  overflow: hidden;
}
.cookie-card table {
  width: 100%;
  border-collapse: collapse;
}
.cookie-card td,
.cookie-card th {
  padding: var(--sp-2) var(--sp-3);
  vertical-align: top;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.cookie-card tr:last-child td,
.cookie-card tr:last-child th { border-bottom: none; }
.cookie-card th {
  text-align: right;
  color: var(--bkg-dark);
  min-width: 100px;
  font-weight: 500;
  white-space: nowrap;
  background: var(--bkg-subtle);
}
.cookie-card td { color: var(--text-primary); }
.cookie-card a { color: var(--accent); }


/* ═══ 17. COMING SOON BANNER ════════════════════════════════════════════ */

.coming-soon-banner {
  background: linear-gradient(135deg, var(--bkg-dark) 0%, var(--bkg-dark-light) 100%);
  border: 1px solid rgba(200, 155, 60, 0.25);
  border-radius: var(--radius-lg);
  padding: var(--sp-10) var(--sp-8);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.coming-soon-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(200, 155, 60, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.coming-soon-banner > * {
  position: relative;
}
.coming-soon-icon {
  font-size: 3rem;
  margin-bottom: var(--sp-4);
  display: block;
}
.coming-soon-banner h2 {
  color: var(--bkg-white);
  font-size: 1.5rem;
  margin-bottom: var(--sp-3);
}
.coming-soon-banner p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}
.coming-soon-banner .btn {
  margin-top: var(--sp-6);
}


/* ═══ 18. PRINT ══════════════════════════════════════════════════════════ */

@media print {
  .site-header,
  .teal-rule,
  .site-footer,
  .nav-toggle,
  .btn,
  .submit-area,
  .consent-row {
    display: none !important;
  }

  body {
    background: white;
    color: black;
    font-size: 12pt;
  }

  .hero {
    background: none !important;
    color: black;
    padding: 20px 0;
  }
  .hero h1 { color: black; }
  .hero p { color: #333; }

  .card, .form-card {
    box-shadow: none;
    border: 1px solid #ccc;
  }

  a { color: black; text-decoration: underline; }
  a::after { content: " (" attr(href) ")"; font-size: 0.8em; }
}
