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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:root {
  --blue: #00309b;
  --blue-dark: #001f6b;
  --yellow: #FDC70C;
  --orange: #f59d33;
  --orange-dark: #a15a12;
  --green: #559478;
  --sage-dark: #3f7059;
  --white: #ffffff;
  --light: #f4f6fb;
  --text: #1a1a2e;
  --muted: #6b7280;
  --border: #e2e8f0;
  --blue-tint: #eef2ff;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
}

a { color: inherit; }

.hsk-skip-link {
  position: absolute; top: -48px; left: 0; z-index: 1100;
  background: var(--blue); color: #fff; padding: 0.75rem 1.25rem;
  text-decoration: none; font-weight: 600; font-size: 0.9rem; border-radius: 0 0 8px 0;
  transition: top 0.15s ease;
}
.hsk-skip-link:focus { top: 0; }

/* ══════════════════════ SITE HEADER / NAV ══════════════════════ */
.hsk-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}
.hsk-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.hsk-nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.hsk-nav-logo img { height: 52px; width: auto; }
.hsk-nav-links { display: flex; align-items: center; gap: 1.5rem; flex: 1; justify-content: center; }
.hsk-nav-divider { color: var(--border); font-weight: 300; }
.hsk-nav-links a { color: var(--text); text-decoration: none; font-size: 0.875rem; font-weight: 500; transition: color 0.15s; }
.hsk-nav-links a:hover { color: var(--blue); }
.hsk-nav-home { display: inline-flex; align-items: center; }
.hsk-nav-home svg { width: 20px; height: 20px; display: block; }
.hsk-nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.hsk-nav-cta {
  display: inline-flex; align-items: center; font-size: 0.8rem; font-weight: 700; color: #fff;
  background: var(--blue); border-radius: 24px; padding: 0.55rem 1.25rem; text-decoration: none;
  white-space: nowrap; transition: background 0.2s ease;
}
.hsk-nav-cta:hover { background: var(--blue-dark, #001f6b); }

.hsk-nav-toggle {
  display: none;
  background: none; border: none; padding: 0.4rem; margin: -0.4rem;
  color: var(--blue); cursor: pointer;
}
.hsk-nav-toggle svg { width: 24px; height: 24px; display: block; }

.hsk-nav-mobile { display: none; flex-direction: column; padding: 0.25rem 1.25rem 1rem; border-top: 1px solid var(--border); }
.hsk-nav-mobile a { color: var(--text); text-decoration: none; font-size: 0.95rem; font-weight: 500; padding: 0.85rem 0; border-bottom: 1px solid var(--border); }
.hsk-nav-mobile a:last-child { border-bottom: none; }
.hsk-nav-mobile-portal { margin-top: 0.5rem; border-top: 1px solid var(--border); }

/* Nav-only breakpoint, deliberately higher than the site-wide 900px used elsewhere.
   The desktop row measures 865px of content; at 900px only 837px is available, so it
   overflowed once the Home icon was added. Switching to the hamburger at 960px leaves
   ~31px of margin. Other sections keep their own 900px queries. */
@media (max-width: 960px) {
  .hsk-nav { padding: 0 1.25rem; }
  .hsk-nav-links { display: none; }
  .hsk-nav-logo span { display: none; }
  .hsk-nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .hsk-nav-mobile.open { display: flex; }
}

/* ══════════════════════ HERO ══════════════════════ */
@keyframes hskFadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes hskFadeIn { from { opacity: 0; } to { opacity: 1; } }

.hsk-hero {
  background: #ffffff;
  padding: 1.25rem 3rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hsk-hero-texture {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0,48,155,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hsk-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}
.hsk-hero-inner--tight { grid-template-columns: 7fr 3fr; gap: 1.5rem; }

.hsk-hero-content { position: relative; z-index: 1; }
.hsk-hero-content--nudge { margin-top: 35px; margin-left: 12px; }
.hsk-hero-illustration { display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; }
.hsk-hero-illustration img { width: 100%; max-width: 300px; height: auto; animation: hskFadeIn 1s 0.4s ease both; display: block; }

.hsk-hero-blob {
  position: absolute;
  top: 3.5rem;
  left: -1.5rem;
  right: 5rem;
  bottom: -1rem;
  border-radius: clamp(28px, 3.5vw, 52px);
  background: #dce8fb;
  z-index: 0;
  pointer-events: none;
}

.hsk-hero-pathnav { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1.25rem; animation: hskFadeUp 0.6s ease forwards; }
.hsk-hero-pathnav-item {
  display: block; width: 14px; height: 14px; border-radius: 50%;
  opacity: 0.45; transition: opacity 0.15s ease, transform 0.15s ease;
}
.hsk-hero-pathnav-item:hover { opacity: 0.75; transform: scale(1.15); }
.hsk-hero-pathnav-item--blue { background: #4da6ff; }
.hsk-hero-pathnav-item--orange { background: #ff8c66; }
.hsk-hero-pathnav-item--sage { background: #b7d5c4; }
.hsk-hero-pathnav-item--cream { background: #f4e6d7; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1); }
.hsk-hero-pathnav-item.is-current {
  width: 20px; height: 20px; opacity: 1; transform: none;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.hsk-hero-pathnav-item.is-current:hover { transform: none; }
.hsk-hero-pathnav-item--blue.is-current { background: var(--blue); }
.hsk-hero-pathnav-item--orange.is-current { background: var(--orange); }
.hsk-hero-pathnav-item--sage.is-current { background: var(--green); }
.hsk-hero-pathnav-item--cream.is-current { background: #a9762e; box-shadow: 0 1px 4px rgba(0,0,0,0.2); }

.hsk-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--orange-dark); margin-bottom: 0.875rem;
  animation: hskFadeUp 0.6s ease forwards;
}
.hsk-hero-eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--orange); border-radius: 2px; }

.hsk-hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700; color: var(--blue); line-height: 1.1; letter-spacing: -0.025em;
  margin-bottom: 1.125rem;
  animation: hskFadeUp 0.7s 0.1s ease both;
}
.hsk-hero-headline em { font-style: italic; font-family: 'Playfair Display', serif; font-weight: 900; color: var(--blue); }

.hsk-hero-animated {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 3.3rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 1.125rem;
  animation: hskFadeUp 0.7s 0.18s ease both;
}
.hsk-hero-animated-phrase {
  color: var(--blue);
  display: inline-block;
  transition: opacity 0.3s ease;
}

.hsk-hero-sub { font-size: 1.4rem; color: var(--muted); line-height: 1.6; max-width: 620px; font-weight: 300; margin-top: 1.25rem; animation: hskFadeUp 0.7s 0.3s ease both; }
.hsk-hero-sub strong { color: var(--text); font-weight: 700; }
/* Per-page opt-in (data.subFullWidth), same convention as imageMaxWidth/heroRoomy.
   For subs whose sentences are hard-broken with <br> and must each hold one line:
   drops the 620px cap and sizes down just enough to fit the text column. */
.hsk-hero-sub--fullwidth { max-width: none; font-size: 1.25rem; }
/* Homepage only (--tight is set solely by the homepage hero): the enlarged headline
   left the sub-line looking undersized, so scale it to match. Self-select pages keep 1.4rem. */
.hsk-hero-inner--tight .hsk-hero-sub { font-size: clamp(1.4rem, 1.9vw, 1.75rem); max-width: 720px; }

.hsk-hero-inner--solo { grid-template-columns: 1fr; max-width: 640px; }
.hsk-hero-inner--roomy { grid-template-columns: 3fr 2fr; gap: 3rem; }
.hsk-hero-headline--compact { font-size: clamp(2rem, 3.6vw, 2.75rem); line-height: 1.45; }
.hsk-hero-headline--compact-tight { font-size: clamp(2.2rem, 4.6vw, 4.3rem); line-height: 1.3; }

@media (max-width: 900px) {
  .hsk-hero { padding: 1.25rem 1.5rem 1rem; }
  .hsk-hero-inner { grid-template-columns: 1fr; gap: 1rem; }
  .hsk-hero-illustration { order: -1; }
  .hsk-hero-illustration img { max-width: 220px; }
}

/* ══════════════════════ THREE PILLARS ══════════════════════ */
.hsk-pillars { background: var(--light); padding: 1.25rem 3rem; }
.hsk-pillars-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.hsk-pillar { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.6rem; }
.hsk-pillar-icon,
.hsk-pillar-badge {
  width: 128px; height: 128px; border-radius: 50%; background: var(--blue-tint);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hsk-pillar-icon {
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 2.8rem; color: var(--blue);
}
.hsk-pillar-icon-img { width: 68px; height: 68px; object-fit: contain; }
.hsk-pillar-title { font-weight: 700; font-size: 1.05rem; }
.hsk-pillar-desc { color: var(--muted); font-size: 0.9rem; }

@media (max-width: 700px) {
  .hsk-pillars { padding: 1.5rem; }
  .hsk-pillars-inner { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ══════════════════════ SELF-ID CARDS ══════════════════════ */
.hsk-selfid { background: #fafaf8; padding: 4rem 2rem 5rem; }
.hsk-selfid-inner { max-width: 1140px; margin: 0 auto; }
.hsk-selfid-eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--orange-dark); margin-bottom: 0.75rem;
}
.hsk-selfid-eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--orange); border-radius: 2px; }
.hsk-selfid-heading {
  font-family: 'Playfair Display', serif; font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700; color: var(--blue); letter-spacing: -0.02em; margin-bottom: 2.5rem;
}
.hsk-selfid-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.hsk-selfid-card {
  position: relative; border-radius: 20px; overflow: hidden; height: 420px;
  text-decoration: none; display: block; cursor: pointer; transform: translateY(0);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.38s ease;
}
.hsk-selfid-card:hover { transform: translateY(-14px); box-shadow: 0 32px 60px rgba(0,0,0,0.16); }
.hsk-selfid-card-1 { background: #4da6ff; }
.hsk-selfid-card-2 { background: #ff8c66; }
.hsk-selfid-card-3 { background: #b7d5c4; }
.hsk-selfid-card-4 { background: #f4e6d7; }
.hsk-selfid-card-top { padding: 1.75rem 1.5rem 0; position: relative; z-index: 2; }
.hsk-selfid-card-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(26,26,46,0.85); margin-bottom: 0.5rem; }
.hsk-selfid-card-textstack { display: grid; }
.hsk-selfid-card-textstack > * { grid-area: 1 / 1; }
.hsk-selfid-card-title {
  font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--text);
  line-height: 1.25; letter-spacing: -0.01em; opacity: 1; transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.hsk-selfid-card-desc {
  font-size: 1rem; color: rgba(26,26,46,0.85); line-height: 1.65; font-weight: 300; max-width: 210px;
  opacity: 0; transform: translateY(10px); transition: opacity 0.3s ease 0.08s, transform 0.3s ease 0.08s;
}
.hsk-selfid-card-arrow {
  position: absolute; top: 1.5rem; right: 1.5rem; width: 34px; height: 34px;
  background: rgba(0,0,0,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateX(-6px); transition: opacity 0.3s ease, transform 0.3s ease; z-index: 3;
}
.hsk-selfid-card:hover .hsk-selfid-card-arrow { opacity: 1; transform: translateX(0); }
.hsk-selfid-card:hover .hsk-selfid-card-title { opacity: 0; transform: translateY(-10px); }
.hsk-selfid-card:hover .hsk-selfid-card-desc { opacity: 1; transform: translateY(0); }
.hsk-selfid-card-art {
  position: absolute; bottom: -6px; left: 0; right: 0; display: flex; justify-content: center; align-items: flex-end;
  padding: 0 1.25rem; transform: translateY(0); transition: transform 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hsk-selfid-card:hover .hsk-selfid-card-art { transform: translateY(-14px); }
.hsk-selfid-card-art img { width: 85%; max-width: 220px; height: auto; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15)); }

@media (max-width: 960px) {
  .hsk-selfid-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .hsk-selfid-card { height: 380px; }
}
@media (max-width: 560px) {
  .hsk-selfid { padding: 3rem 1.25rem 4rem; }
  .hsk-selfid-grid { grid-template-columns: repeat(2, 1fr); gap: 0.875rem; }
  .hsk-selfid-card { height: 300px; border-radius: 14px; }
  .hsk-selfid-card-title { font-size: 1.05rem; }
  .hsk-selfid-card-top { padding: 1.25rem 1.1rem 0; }
}

/* ══════════════════════ SOCIAL PROOF / OUTCOMES ══════════════════════ */
.proof-section { background: var(--light); padding: 4.5rem 3rem; }
.proof-inner { max-width: 1280px; margin: 0 auto; }
.section-eyebrow {
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange-dark);
  margin-bottom: 0.625rem; display: flex; align-items: center; gap: 0.5rem;
}
.section-eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--orange); border-radius: 2px; }
.section-heading {
  font-family: 'Playfair Display', serif; font-size: clamp(1.625rem, 3vw, 2.25rem); font-weight: 700;
  color: var(--text); margin-bottom: 2rem; line-height: 1.2; letter-spacing: -0.015em;
}
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 1.25rem; }
.stat-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 16px; padding: 2.25rem 2rem; position: relative; overflow: hidden; transition: box-shadow 0.2s ease, transform 0.2s ease; display: flex; flex-direction: column; }
.stat-card:hover { box-shadow: 0 6px 24px rgba(0,48,155,0.07); transform: translateY(-2px); }
.stat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.card-blue::before { background: #4da6ff; }
.card-green::before { background: #b7d5c4; }
.card-orange::before { background: #ff8c66; }
.card-teal::before { background: #f4e6d7; }
.stat-tag { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.875rem; line-height: 1.5; min-height: 2.9rem; display: flex; align-items: flex-end; }
.card-blue .stat-tag { color: var(--blue); }
.card-green .stat-tag { color: var(--sage-dark); }
.card-orange .stat-tag { color: var(--orange-dark); }
.card-teal .stat-tag { color: #a9762e; }
.stat-number { font-family: 'Playfair Display', serif; font-weight: 900; line-height: 1; margin-bottom: 0.75rem; font-size: clamp(2rem, 3.5vw, 2.75rem); }
.card-blue .stat-number { color: var(--blue); font-size: clamp(1.25rem, 2vw, 1.3125rem); line-height: 1.25; }
.card-green .stat-number { color: var(--sage-dark); font-size: clamp(1.25rem, 2vw, 1.3125rem); line-height: 1.25; }
.card-orange .stat-number { color: var(--orange-dark); font-size: clamp(1.25rem, 2vw, 1.3125rem); line-height: 1.25; }
.card-teal .stat-number { color: #a9762e; font-size: clamp(1.25rem, 2vw, 1.3125rem); line-height: 1.25; }
.stat-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.6; font-weight: 300; }
.stat-desc strong { color: var(--text); font-weight: 500; }
.stat-divider { width: 28px; height: 2px; border-radius: 2px; margin: 0.875rem 0; opacity: 0.2; margin-top: auto; }
.card-blue .stat-divider { background: #4da6ff; }
.card-green .stat-divider { background: #b7d5c4; }
.card-orange .stat-divider { background: #ff8c66; }
.card-teal .stat-divider { background: #f4e6d7; }
.stat-outcome { display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.7rem; font-weight: 600; padding: 0.2rem 0.6rem; border-radius: 20px; align-self: flex-start; }
.card-blue .stat-outcome { background: var(--blue-tint); color: var(--blue); }
.card-green .stat-outcome { background: #f0faf6; color: var(--sage-dark); }
.card-orange .stat-outcome { background: #fff7ed; color: var(--orange-dark); }
.card-teal .stat-outcome { background: #fdf3e6; color: #a9762e; }

.quote-carousel { position: relative; background: var(--blue); border-radius: 16px; padding: 2.25rem 2.5rem 3rem; overflow: hidden; min-height: 160px; }
.quote-carousel--linked { cursor: pointer; transition: background 0.2s ease; }
.quote-carousel--linked:hover, .quote-carousel--linked:focus-visible { background: var(--blue-dark, #001f6b); }
.quote-carousel--linked:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; }
.quote-google-link {
  position: absolute; top: 1.1rem; right: 1.5rem; z-index: 1;
  font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
}
.quote-slide { position: absolute; inset: 0; padding: 2.25rem 2.5rem 3rem; display: flex; align-items: flex-start; gap: 1.5rem; opacity: 0; transition: opacity 1.5s ease; pointer-events: none; }
.quote-slide.active { opacity: 1; pointer-events: auto; position: relative; inset: auto; padding: 0; }
.quote-mark { font-family: 'Playfair Display', serif; font-size: 5rem; line-height: 0.75; color: var(--yellow); flex-shrink: 0; margin-top: 0.25rem; opacity: 0.8; }
.quote-content { flex: 1; }
.quote-text { font-family: 'Playfair Display', serif; font-size: clamp(1rem, 2vw, 1.25rem); font-style: italic; color: var(--white); line-height: 1.7; margin-bottom: 0.875rem; }
.quote-stars { color: var(--yellow); font-size: 1rem; margin-bottom: 0.25rem; }
.quote-attr { font-size: 0.825rem; color: rgba(255,255,255,0.5); font-weight: 300; }
.quote-controls { display: flex; align-items: center; justify-content: center; margin-top: 1.5rem; }
.quote-playpause {
  display: flex; align-items: center; justify-content: center; width: 34px; height: 34px;
  border-radius: 50%; border: 1.5px solid var(--border); background: var(--white); color: var(--text);
  cursor: pointer; transition: background 0.15s ease, border-color 0.15s ease;
}
.quote-playpause:hover { background: var(--light); border-color: var(--blue); }
.quote-playpause svg { width: 15px; height: 15px; }
.quote-playpause svg[hidden] { display: none; }
.quote-progress-bar { position: absolute; bottom: 0; left: 0; height: 2px; background: var(--yellow); opacity: 0.4; border-radius: 0 2px 2px 0; animation: progress-fill 8s linear infinite; transform-origin: left; }
@keyframes progress-fill { from { width: 0%; } to { width: 100%; } }

@media (max-width: 900px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } .proof-section { padding: 3.5rem 1.5rem; } }
@media (max-width: 640px) { .stat-grid { grid-template-columns: 1fr; } .quote-mark { font-size: 3rem; } }

/* ══════════════════════ WHY KIM ══════════════════════ */
.s5 { padding: 4.5rem 3rem; background: var(--white); }
.s5-inner { max-width: 960px; margin: 0 auto; }
.kim-block { display: grid; grid-template-columns: 200px 1fr; gap: 2.5rem; align-items: center; margin-top: 1.5rem; }
.kim-photo-wrap { display: flex; justify-content: center; }
.kim-photo { width: 180px; height: 180px; border-radius: 50%; overflow: hidden; background: var(--blue-tint); display: flex; align-items: center; justify-content: center; }
.kim-photo img { width: 100%; height: 100%; object-fit: cover; }
.kim-photo-placeholder { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: var(--blue); }
.kim-name { font-size: 1.25rem; font-weight: 700; }
.kim-title { color: var(--muted); font-size: 0.95rem; margin-bottom: 0.875rem; }
.kim-bio { line-height: 1.7; color: var(--text); margin-bottom: 1rem; font-weight: 300; }
.kim-badges .badge { display: inline-block; background: var(--blue-tint); color: var(--blue); font-size: 0.75rem; font-weight: 600; padding: 0.3rem 0.75rem; border-radius: 20px; }
@media (max-width: 700px) { .kim-block { grid-template-columns: 1fr; text-align: center; } }

/* ══════════════════════ CTA ══════════════════════ */
.s8 { background: var(--blue); padding: 4.5rem 3rem; text-align: center; }
.s8-inner { max-width: 720px; margin: 0 auto; }
.cta-headline { font-family: 'Playfair Display', serif; color: var(--white); font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; line-height: 1.3; margin-bottom: 0.75rem; }
.cta-sub { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin: 1rem 0 1.75rem; }
.cta-btn {
  display: inline-flex; align-items: center; gap: 0.6rem; background: var(--yellow); color: var(--blue);
  font-weight: 700; padding: 0.9rem 1.75rem; border-radius: 30px; text-decoration: none; font-size: 1rem;
  transition: transform 0.2s ease;
}
.cta-btn:hover { transform: translateY(-2px); }
.cta-btn svg { width: 16px; height: 16px; }
.cta-note { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-top: 1rem; }

/* ══════════════════════ FOOTER ══════════════════════ */
.hsk-footer { background: var(--white); padding: 4rem 3rem 0; border-top: 1px solid var(--border); }

.hsk-footer-inner {
  max-width: 960px; margin: 0 auto;
  display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
  padding-bottom: 3rem; border-bottom: 1px solid var(--border);
}
.hsk-footer-col-heading { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-dark); margin-bottom: 1rem; display: block; }
.hsk-footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.hsk-footer-links a { font-size: 1.15rem; color: var(--muted); text-decoration: none; transition: color 0.15s; font-weight: 300; }
.hsk-footer-links a:hover { color: var(--blue-dark); }

.hsk-footer-bottom {
  max-width: 960px; margin: 0 auto;
  padding: 2rem 0 2.5rem;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1.5rem;
}
.hsk-footer-copyright { font-size: 0.8rem; color: var(--muted); font-weight: 300; text-align: left; }
.hsk-footer-gna { justify-self: center; }
.hsk-footer-gna img { height: 52px; width: auto; opacity: 0.8; transition: opacity 0.2s; }
.hsk-footer-gna img:hover { opacity: 1; }
.hsk-footer-social { display: flex; align-items: center; gap: 1rem; justify-self: end; }
.hsk-footer-social a {
  display: flex; align-items: center; justify-content: center; width: 38px; height: 38px;
  border-radius: 50%; background: var(--light); color: var(--muted); text-decoration: none;
  transition: all 0.2s ease;
}
.hsk-footer-social a:hover { background: var(--blue-tint); color: var(--blue-dark); transform: translateY(-2px); }
.hsk-footer-social svg { width: 17px; height: 17px; }

@media (max-width: 900px) { .hsk-footer { padding: 3rem 1.5rem 0; } }
@media (max-width: 640px) {
  .hsk-footer-inner { flex-direction: column; gap: 2rem; }
  .hsk-footer-bottom { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 1.5rem; }
  .hsk-footer-copyright { text-align: center; }
}

/* ══════════════════════ ADMIN ══════════════════════ */
.admin-body { background: var(--light); min-height: 100vh; font-family: 'DM Sans', sans-serif; }
.admin-header { background: var(--blue); color: #fff; padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; }
.admin-header a { color: #fff; text-decoration: none; }
.admin-container { max-width: 720px; margin: 2rem auto; padding: 0 1.5rem; }
.admin-card { background: #fff; border-radius: 12px; padding: 2rem; box-shadow: 0 2px 12px rgba(0,0,0,0.06); margin-bottom: 1.5rem; }
.admin-field { margin-bottom: 1.25rem; }
.admin-field label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 0.4rem; color: var(--text); }
.admin-field input[type=text], .admin-field input[type=email], .admin-field input[type=password], .admin-field input[type=url], .admin-field textarea {
  width: 100%; padding: 0.6rem 0.75rem; border: 1.5px solid var(--border); border-radius: 8px; font-size: 0.95rem; font-family: inherit;
}
.admin-field textarea { min-height: 80px; resize: vertical; }
.admin-btn { background: var(--blue); color: #fff; border: none; padding: 0.7rem 1.5rem; border-radius: 8px; font-weight: 600; cursor: pointer; font-size: 0.95rem; }
.admin-btn:hover { opacity: 0.9; }
.admin-page-list a { display: block; padding: 0.9rem 1rem; border: 1.5px solid var(--border); border-radius: 8px; margin-bottom: 0.6rem; text-decoration: none; color: var(--text); font-weight: 600; }
.admin-page-list a:hover { border-color: var(--blue); }
.admin-section-title { font-weight: 700; margin: 1.5rem 0 0.75rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.admin-section-title:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.admin-locked-note { color: var(--muted); font-size: 0.85rem; font-style: italic; }
.admin-flash { background: #f0faf6; border: 1px solid #b7d5c4; color: #1a1a2e; padding: 0.75rem 1rem; border-radius: 8px; margin-bottom: 1.25rem; font-size: 0.9rem; }
.admin-error { background: #fff5f5; border: 1px solid #fca5a5; color: #991b1b; padding: 0.75rem 1rem; border-radius: 8px; margin-bottom: 1.25rem; font-size: 0.9rem; }
.admin-repeat-item { border: 1px solid var(--border); border-radius: 8px; padding: 1rem; margin-bottom: 0.75rem; }

/* ══════════════════════ A REAL OUTCOME ══════════════════════ */
.outcome-section { background: var(--light); padding: 4rem 3rem; }
.outcome-inner { max-width: 800px; margin: 0 auto; }
.outcome-card { background: var(--white); border-radius: 16px; padding: 2.5rem; box-shadow: 0 2px 20px rgba(0,48,155,0.06); position: relative; overflow: hidden; }
.outcome-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--yellow); }
.outcome-title { font-family: 'Playfair Display', serif; font-size: clamp(1.25rem, 2.5vw, 1.6rem); font-weight: 700; color: var(--blue); margin-bottom: 1rem; line-height: 1.3; }
.outcome-subtitle { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 600; color: var(--muted); margin-bottom: 1.25rem; }
.outcome-body p { font-size: 0.95rem; line-height: 1.8; color: var(--text); margin-bottom: 0.875rem; font-weight: 300; }
.outcome-quote { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.outcome-quote-text { font-family: 'Playfair Display', serif; font-style: italic; color: var(--muted); font-size: 1rem; line-height: 1.7; margin-bottom: 0.5rem; }
.outcome-quote-attr { font-size: 0.8rem; color: var(--muted); font-weight: 600; }

/* ══════════════════════ SOUND FAMILIAR? (story grid) ══════════════════════ */
.story-section { background: var(--light); padding: 4rem 3rem; }
.story-inner { max-width: 1100px; margin: 0 auto; }
.story-heading { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--blue); text-align: center; margin-bottom: 2.25rem; letter-spacing: -0.015em; }
.story-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.story-card { background: var(--white); border-radius: 16px; padding: 2rem 1.75rem; box-shadow: 0 2px 20px rgba(0,48,155,0.06); position: relative; overflow: hidden; }
.story-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--yellow); }
.story-card-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--blue-tint); display: flex; align-items: center; justify-content: center; color: var(--orange-dark); margin-bottom: 1rem; }
.story-card-icon svg { width: 20px; height: 20px; }
.story-card-text { font-family: 'Manrope', sans-serif; font-weight: 500; font-size: 0.95rem; line-height: 1.75; color: var(--text); }

/* ══════════════════════ WHAT NOBODY TELLS YOU (truth block) ══════════════════════ */
.truth-section { background: var(--blue-dark); padding: 4.5rem 3rem; }
.truth-inner { max-width: 720px; margin: 0 auto; }
.truth-heading { font-family: 'Playfair Display', serif; font-size: clamp(1.75rem, 3.5vw, 2.35rem); font-weight: 700; color: var(--white); line-height: 1.3; letter-spacing: -0.015em; text-align: center; margin-bottom: 2.25rem; }
.truth-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.truth-icon { flex-shrink: 0; width: 26px; height: 26px; color: var(--yellow); margin-top: 0.15rem; }
.truth-icon svg { width: 100%; height: 100%; }
.truth-body p { font-family: 'Manrope', sans-serif; font-size: 1rem; line-height: 1.8; color: rgba(255,255,255,0.8); margin: 0; }
.truth-body p strong { color: var(--white); font-weight: 700; }
.truth-closer { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.15); text-align: center; }
.truth-closer p { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 700; font-size: clamp(1.15rem, 2.5vw, 1.4rem); color: var(--yellow); line-height: 1.4; margin: 0; }

/* ══════════════════════ WITHOUT / WITH ══════════════════════ */
.ww-section { background: var(--white); padding: 4rem 3rem; }
.ww-inner { max-width: 800px; margin: 0 auto; }
.ww-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 1.5rem; }
.ww-without { background: var(--light); border: 1px solid var(--border); border-radius: 14px; padding: 1.75rem; }
.ww-with { background: var(--blue); border-radius: 14px; padding: 1.75rem; }
.ww-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1rem; }
/* --muted here measured 4.47:1 on the light card — under the 4.5:1 AA floor, and Kim
   flagged it as "too light and hard to read". --text is 15.8:1. */
.ww-without .ww-label { color: var(--text); }
.ww-with .ww-label { color: var(--yellow); }
.ww-items { display: flex; flex-direction: column; gap: 0.75rem; }
.ww-item { font-size: 0.9rem; line-height: 1.6; padding-left: 1.25rem; position: relative; font-weight: 300; }
.ww-without .ww-item { color: var(--text); }
.ww-with .ww-item { color: rgba(255,255,255,0.9); }
.ww-without .ww-item::before { content: '—'; position: absolute; left: 0; color: #94a0b3; }
.ww-with .ww-item::before { content: '✓'; position: absolute; left: 0; color: var(--yellow); font-size: 0.8rem; top: 0.1rem; }
@media (max-width: 700px) { .ww-grid { grid-template-columns: 1fr; } .ww-section { padding: 3rem 1.5rem; } }

/* ══════════════════════ KIM QUOTE ══════════════════════ */
.kimquote-section { background: var(--text); padding: 4rem 3rem; position: relative; overflow: hidden; }
.kimquote-section::before { content: '"'; position: absolute; top: -1rem; left: 1.5rem; font-family: 'Playfair Display', serif; font-size: 12rem; color: rgba(253,199,12,0.08); line-height: 1; pointer-events: none; user-select: none; }
.kimquote-inner { max-width: 700px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.kimquote-text { font-family: 'Manrope', sans-serif; font-weight: 500; color: rgba(255,255,255,0.9); font-size: clamp(1.1rem, 2.5vw, 1.4rem); line-height: 1.7; }
.kimquote-attr { margin-top: 1.25rem; font-size: 0.85rem; color: rgba(255,255,255,0.45); font-weight: 600; letter-spacing: 0.04em; }

/* ══════════════════════ 3-STEP PLAN ══════════════════════ */
.steps-section { background: var(--blue); padding: 4rem 3rem; position: relative; overflow: hidden; }
.steps-section::before { content: ''; position: absolute; top: -60px; right: -60px; width: 300px; height: 300px; border-radius: 50%; background: rgba(253,199,12,0.06); pointer-events: none; }
.steps-inner { max-width: 960px; margin: 0 auto; position: relative; z-index: 1; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2rem; }
.step-item { text-align: left; border: 1px solid rgba(255,255,255,0.18); border-radius: 14px; padding: 1.75rem 1.5rem; }
.step-num { width: 52px; height: 52px; border-radius: 50%; background: var(--yellow); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--blue); margin: 0 0 1rem; }
.step-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.step-desc { font-size: 0.875rem; color: rgba(255,255,255,0.7); line-height: 1.6; font-weight: 300; }
@media (max-width: 700px) { .steps-grid { grid-template-columns: 1fr; gap: 1.5rem; } .steps-section { padding: 3rem 1.5rem; } }

/* ══════════════════════ STORY ACCORDION (long-form "Sound familiar?") ══════════════════════ */
.story-acc-section { background: var(--light); padding: 4rem 3rem; }
.story-acc-inner { max-width: 800px; margin: 0 auto; }
.story-acc-heading { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--blue); text-align: center; margin-bottom: 2rem; letter-spacing: -0.015em; }
.story-acc-list { display: flex; flex-direction: column; gap: 1rem; }
.story-acc-item { background: var(--white); border-radius: 16px; box-shadow: 0 2px 20px rgba(0,48,155,0.06); overflow: hidden; position: relative; }
.story-acc-item::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--yellow); }
.story-acc-trigger { width: 100%; padding: 1.75rem 2rem; display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; cursor: pointer; background: none; border: none; text-align: left; font-family: 'Manrope', sans-serif; }
.story-acc-hook { font-size: 1rem; font-weight: 600; color: var(--text); line-height: 1.6; }
.story-acc-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; color: var(--muted); transition: all 0.2s ease; margin-top: 0.1rem; }
.story-acc-item.open .story-acc-icon { background: var(--blue); color: #fff; transform: rotate(45deg); }
.story-acc-body { display: none; padding: 0 2rem 2rem; }
.story-acc-item.open .story-acc-body { display: block; }
.story-acc-body-inner { border-top: 1px solid var(--border); padding-top: 1.25rem; }
.story-acc-body-inner p { font-size: 1.05rem; line-height: 1.8; color: var(--text); margin-bottom: 0.875rem; font-weight: 300; }
.story-acc-quote { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.story-acc-quote-text { font-family: 'Playfair Display', serif; font-style: italic; color: var(--muted); font-size: 1rem; line-height: 1.7; margin-bottom: 0.5rem; }
.story-acc-quote-attr { font-size: 0.8rem; color: var(--muted); font-weight: 600; }
@media (max-width: 700px) { .story-acc-section { padding: 3rem 1.5rem; } .story-acc-trigger { padding: 1.5rem; } .story-acc-body { padding: 0 1.5rem 1.5rem; } }

/* ══════════════════════ FAQ ══════════════════════ */
.faq-section { background: var(--light); padding: 4rem 3rem; }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-viewall { display: inline-block; margin-top: 1.5rem; font-size: 0.9rem; font-weight: 600; color: var(--blue); text-decoration: none; }
.faq-viewall:hover { text-decoration: underline; }
.faq-category { margin-top: 2rem; }
.faq-category:first-child { margin-top: 1.5rem; }
.faq-category-name { font-weight: 700; font-size: 1rem; color: var(--blue); margin-bottom: 0.875rem; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: #fff; border: 1.5px solid var(--border); border-radius: 10px; overflow: hidden; }
.faq-item.open { border-color: var(--blue); }
.faq-trigger { width: 100%; padding: 1.1rem 1.25rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; cursor: pointer; background: none; border: none; text-align: left; font-size: 0.92rem; font-weight: 600; color: var(--text); font-family: 'DM Sans', sans-serif; }
.faq-trigger:hover { color: var(--blue); }
.faq-icon { width: 24px; height: 24px; border-radius: 50%; background: var(--light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; color: var(--muted); transition: all 0.3s ease; }
.faq-item.open .faq-icon { background: var(--blue); color: #fff; transform: rotate(45deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-body { max-height: 400px; }
.faq-body-inner { padding: 0 1.25rem 1.25rem; font-size: 0.88rem; color: var(--muted); line-height: 1.75; border-top: 1px solid var(--border); padding-top: 1rem; margin: 0 1.25rem 0; font-weight: 300; }

/* ══════════════════════ RICH TEXT (About Kim, What is an Advocate) ══════════════════════ */
.richtext-section { background: #fff; padding: 4rem 3rem; }
.richtext-inner { max-width: 760px; margin: 0 auto; }
.richtext-eyebrow { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange-dark); margin-bottom: 0.625rem; }
.richtext-heading { font-family: 'Playfair Display', serif; font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 700; color: var(--blue); margin-bottom: 1.5rem; line-height: 1.25; }
.richtext-photo { float: right; width: 180px; height: 180px; border-radius: 50%; overflow: hidden; margin: 0 0 1.5rem 2rem; background: var(--blue-tint); }
.richtext-photo img { width: 100%; height: 100%; object-fit: cover; }
.richtext-inner p { font-size: 1rem; line-height: 1.85; color: var(--text); margin-bottom: 1.125rem; font-weight: 300; }
@media (max-width: 640px) { .richtext-photo { float: none; margin: 0 auto 1.5rem; display: block; } .richtext-section { padding: 3rem 1.5rem; } }

/* ══════════════════════ VIDEO EMBED ══════════════════════ */
.video-section { background: var(--light); padding: 0 3rem 4rem; }
.video-inner { max-width: 760px; margin: 0 auto; }
.video-placeholder { aspect-ratio: 16/9; background: #e2e8f0; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 0.9rem; text-align: center; padding: 2rem; }
.video-embed { position: relative; padding-bottom: 56.25%; height: 0; border-radius: 12px; overflow: hidden; }
.video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* ══════════════════════ LEGAL DOC ══════════════════════ */
.legal-section { background: #fff; padding: 3.5rem 3rem 5rem; }
.legal-inner { max-width: 760px; margin: 0 auto; }
.legal-heading { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--blue); margin-bottom: 0.5rem; }
.legal-updated { font-size: 0.8rem; color: var(--muted); margin-bottom: 2rem; }
.legal-body { white-space: pre-wrap; font-size: 0.92rem; line-height: 1.85; color: var(--text); font-weight: 300; }

/* ══════════════════════ CONTACT FORM ══════════════════════ */
.contact-section { background: var(--light); padding: 4rem 3rem 5rem; }
.contact-inner { max-width: 560px; margin: 0 auto; }
.contact-heading { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--blue); margin-bottom: 0.5rem; }
.contact-sub { color: var(--muted); margin-bottom: 2rem; font-weight: 300; }
.contact-field { margin-bottom: 1.25rem; }
.contact-field label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 0.4rem; }
.contact-field input, .contact-field textarea { width: 100%; padding: 0.75rem 0.9rem; border: 1.5px solid var(--border); border-radius: 8px; font-family: inherit; font-size: 0.95rem; }
.contact-field textarea { min-height: 120px; resize: vertical; }
.contact-submit { background: var(--blue); color: #fff; border: none; padding: 0.85rem 2rem; border-radius: 30px; font-weight: 700; cursor: pointer; font-size: 0.95rem; }
.contact-success { background: #f0faf6; border: 1px solid #b7d5c4; color: var(--text); padding: 1.25rem; border-radius: 10px; }
.contact-error { background: #fff5f5; border: 1px solid #fca5a5; color: #991b1b; padding: 1rem; border-radius: 10px; margin-bottom: 1.25rem; }

/* ══════════════════════ LEAD MAGNET (trigger card) ══════════════════════ */
.hsk-leadmagnet { background: var(--light); padding: 2.5rem 3rem; }
.hsk-leadmagnet-inner {
  max-width: 900px; margin: 0 auto; background: #fff; border: 1.5px solid var(--border); border-radius: 20px;
  padding: 2rem 2.25rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  box-shadow: 0 2px 20px rgba(0,48,155,0.05);
}
.hsk-leadmagnet-icon {
  width: 56px; height: 56px; border-radius: 50%; background: var(--blue-tint); color: var(--blue);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hsk-leadmagnet-icon svg { width: 26px; height: 26px; }
.hsk-leadmagnet-content { flex: 1; min-width: 220px; }
.hsk-leadmagnet-eyebrow { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange-dark); margin-bottom: 0.4rem; }
.hsk-leadmagnet-headline { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--text); margin-bottom: 0.4rem; line-height: 1.3; }
.hsk-leadmagnet-desc { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }
.hsk-leadmagnet-btn {
  flex-shrink: 0; background: var(--blue); color: #fff; border: none; border-radius: 24px;
  padding: 0.75rem 1.5rem; font-size: 0.85rem; font-weight: 700; cursor: pointer; transition: background 0.2s ease;
  white-space: nowrap;
}
.hsk-leadmagnet-btn:hover { background: var(--blue-dark, #001f6b); }

@media (max-width: 700px) {
  .hsk-leadmagnet { padding: 1.5rem; }
  .hsk-leadmagnet-inner { flex-direction: column; text-align: center; padding: 1.75rem; }
  .hsk-leadmagnet-btn { width: 100%; }
}

/* ══════════════════════ MODAL (generic — first one in the codebase) ══════════════════════ */
.hsk-modal-overlay {
  position: fixed; inset: 0; background: rgba(10,14,30,0.55); z-index: 1000;
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
  animation: hskFadeIn 0.2s ease both;
}
.hsk-modal-overlay[hidden] { display: none; }
.hsk-modal-card {
  background: #fff; border-radius: 20px; max-width: 440px; width: 100%; padding: 2.25rem 2rem;
  position: relative; box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.hsk-modal-close {
  position: absolute; top: 0.9rem; right: 0.9rem; width: 32px; height: 32px; border-radius: 50%;
  border: none; background: var(--light); color: var(--muted); font-size: 1.25rem; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.15s ease;
}
.hsk-modal-close:hover { background: var(--border); }
.hsk-modal-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--blue); margin-bottom: 0.5rem; line-height: 1.3; padding-right: 1.5rem; }
.hsk-modal-sub { color: var(--muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.5rem; }
.hsk-modal-form label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text); margin-bottom: 0.4rem; }
.hsk-modal-form input[type="email"] {
  width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--border); border-radius: 10px; font-size: 0.95rem;
  font-family: inherit; margin-bottom: 1rem;
}
.hsk-modal-form input[type="email"]:focus { outline: none; border-color: var(--blue); }
.hsk-modal-honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.hsk-modal-error { background: #fff5f5; color: #c0392b; font-size: 0.85rem; padding: 0.6rem 0.9rem; border-radius: 8px; margin-bottom: 1rem; }
.hsk-modal-submit {
  width: 100%; background: var(--blue); color: #fff; border: none; border-radius: 24px; padding: 0.8rem;
  font-size: 0.9rem; font-weight: 700; cursor: pointer; transition: background 0.2s ease;
}
.hsk-modal-submit:hover { background: var(--blue-dark, #001f6b); }
.hsk-modal-submit:disabled { opacity: 0.6; cursor: default; }
.hsk-modal-success { text-align: center; padding: 1rem 0; font-size: 1.05rem; color: var(--text); font-weight: 500; }

/* ══════════════════════ ERROR PAGES (404 / 500) ══════════════════════ */
.hsk-error { background: var(--white); padding: 5rem 3rem 6rem; }
.hsk-error-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.hsk-error-code {
  font-family: 'Playfair Display', serif; font-weight: 900; font-size: clamp(4rem, 12vw, 7rem);
  line-height: 1; color: #dce8fb; letter-spacing: -0.03em; margin-bottom: 0.5rem;
}
.hsk-error-headline {
  font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4.5vw, 2.75rem); font-weight: 700;
  color: var(--blue); line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 1rem;
}
.hsk-error-sub { font-size: 1.15rem; color: var(--muted); line-height: 1.6; font-weight: 300; }

.hsk-error-paths { margin-top: 3rem; }
.hsk-error-paths-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--orange-dark); margin-bottom: 1rem;
}
.hsk-error-path-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }
.hsk-error-path {
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 1rem 0.75rem; border-radius: 12px; text-decoration: none;
  font-size: 0.9rem; font-weight: 600; color: var(--text);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.hsk-error-path:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,48,155,0.1); }
/* Same pastels as the homepage self-ID cards, so the four paths stay recognisable. */
.hsk-error-path--blue { background: #4da6ff; }
.hsk-error-path--orange { background: #ff8c66; }
.hsk-error-path--sage { background: #b7d5c4; }
.hsk-error-path--cream { background: #f4e6d7; }

.hsk-error-actions { display: flex; gap: 0.75rem; justify-content: center; margin-top: 3rem; flex-wrap: wrap; }
.hsk-error-btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--blue); color: #fff; border-radius: 24px; padding: 0.75rem 1.75rem;
  text-decoration: none; font-size: 0.9rem; font-weight: 700; transition: background 0.2s ease;
}
.hsk-error-btn:hover { background: var(--blue-dark); }
.hsk-error-btn--ghost { background: transparent; color: var(--blue); box-shadow: inset 0 0 0 1.5px var(--blue); }
.hsk-error-btn--ghost:hover { background: var(--blue-tint); }

@media (max-width: 900px) {
  .hsk-error { padding: 3.5rem 1.5rem 4rem; }
  .hsk-error-path-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hsk-error-path-grid { grid-template-columns: 1fr; }
}

/* ── Admin: submissions log ── */
.admin-back { font-size: 0.85rem; color: var(--blue); text-decoration: none; font-weight: 600; }
.admin-back:hover { text-decoration: underline; }
.admin-note { font-size: 0.85rem; color: var(--muted); line-height: 1.55; margin-bottom: 1.25rem; }
.admin-note strong { color: var(--text); }
.admin-empty { font-size: 0.9rem; color: var(--muted); padding: 1.5rem 0; }
.admin-table-scroll { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.admin-table th {
  text-align: left; font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); border-bottom: 1.5px solid var(--border); padding: 0 0.75rem 0.6rem 0;
}
.admin-table td { padding: 0.8rem 0.75rem 0.8rem 0; border-bottom: 1px solid var(--border); vertical-align: top; }
.admin-table a { color: var(--blue); }
.admin-nowrap { white-space: nowrap; }
.admin-subject { color: var(--muted); }
.admin-pill {
  display: inline-block; font-size: 0.7rem; font-weight: 700; padding: 0.2rem 0.6rem;
  border-radius: 20px; background: var(--border); color: var(--text); white-space: nowrap;
}
.admin-pill--ok { background: #e8f5ee; color: #1d6b45; }
.admin-pill--bad { background: #fdeaea; color: #a3231f; }
.admin-error-detail { font-size: 0.7rem; color: #a3231f; margin-top: 0.35rem; max-width: 260px; }
