/* ============================================================
   FONTS — served locally, no Google Fonts requests
   ============================================================ */

@font-face {
  font-family: 'Barlow Condensed';
  src: url('/assets/fonts/barlow-condensed-v13-latin-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow Condensed';
  src: url('/assets/fonts/barlow-condensed-v13-latin-800.woff2') format('woff2');
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow Condensed';
  src: url('/assets/fonts/barlow-condensed-v13-latin-900.woff2') format('woff2');
  font-weight: 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('/assets/fonts/barlow-v13-latin-regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('/assets/fonts/barlow-v13-latin-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('/assets/fonts/barlow-v13-latin-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */

:root {
  --pink:      #FF0759;
  --pink-dk:   #CC0044;
  --teal:      #00D4C8;
  --dark:      #0d0d14;
  --dark2:     #14141f;
  --dark3:     #1c1c2e;
  --offwhite:  #f5f5f0;
  --text:      #1a1a2a;
  --muted:     #666;
  --border:    #e0e0e0;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin-bottom: 1em;
}

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

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

/* ============================================================
   HEADINGS
   ============================================================ */

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.08;
}

h1 { font-weight: 900; }
h2 { font-weight: 800; }
h3 { font-weight: 700; }

/* ============================================================
   NAV
   ============================================================ */

.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  gap: 32px;
}

.nav-logo {
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.15s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 3px;
  white-space: nowrap;
  transition: background 0.15s;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--pink-dk);
  color: #fff;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.2s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--dark3);
  padding: 24px 40px;
  gap: 0;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.15s;
}

.nav-mobile a:last-child {
  border-bottom: none;
  margin-top: 8px;
  color: var(--pink);
  font-weight: 700;
}

.nav-mobile a:hover {
  color: #fff;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  background: var(--dark);
  padding: 88px 40px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 55%;
  height: 160%;
  background: radial-gradient(ellipse at center, rgba(255, 7, 89, 0.13) 0%, transparent 68%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 72px;
  align-items: center;
  position: relative;
}

.hero.centered .hero-inner {
  grid-template-columns: 1fr;
  max-width: 720px;
  text-align: center;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.03;
  color: #fff;
  margin-bottom: 24px;
}

.hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 36px;
}

.hero.centered p {
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero.centered .hero-ctas {
  justify-content: center;
}

.hero-image {
  width: 100%;
  max-width: 360px;
  border-radius: 6px;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

/* ============================================================
   SECTIONS
   ============================================================ */

.section {
  padding: 72px 40px;
  background: #fff;
}

.section-alt {
  padding: 72px 40px;
  background: var(--offwhite);
}

.section-dark {
  padding: 72px 40px;
  background: var(--dark2);
  color: #fff;
}

.section-dark .section-desc {
  color: rgba(255, 255, 255, 0.75);
}

.section-dark .section-title {
  color: #fff;
}

.section-inner {
  max-width: 1060px;
  margin: 0 auto;
}

/* ============================================================
   SECTION TYPOGRAPHY
   ============================================================ */

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.06;
  color: var(--text);
  margin-bottom: 20px;
}

.section-divider {
  width: 48px;
  height: 3px;
  background: var(--pink);
  margin: 0 auto 32px;
}

.section-divider.left {
  margin-left: 0;
  margin-right: auto;
}

.section-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 40px;
}

/* ============================================================
   CENTERED LAYOUT UTILITY
   ============================================================ */

.centered {
  text-align: center;
}

.centered .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.centered .section-divider {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   TWO-COLUMN SPLIT LAYOUT
   ============================================================ */

.section-split {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.section-split.reverse {
  direction: rtl;
}

.section-split.reverse > * {
  direction: ltr;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn-primary {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 3px;
  border: 2px solid var(--pink);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  line-height: 1;
}

.btn-primary:hover {
  background: var(--pink-dk);
  border-color: var(--pink-dk);
  color: #fff;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--pink);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 3px;
  border: 2px solid var(--pink);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  line-height: 1;
}

.btn-outline:hover {
  background: var(--pink);
  color: #fff;
}

.section-dark .btn-outline {
  color: #fff;
  border-color: #fff;
}

.section-dark .btn-outline:hover {
  background: #fff;
  color: var(--dark2);
}

/* ============================================================
   CARDS
   ============================================================ */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1060px;
  margin: 0 auto;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
}

.section-alt .card {
  background: #fff;
}

.section-dark .card {
  background: var(--dark3);
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.card-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}

.card-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.1;
}

.section-dark .card-title {
  color: #fff;
}

.card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 0;
}

.section-dark .card p {
  color: rgba(255, 255, 255, 0.65);
}

.card-featured {
  border-top: 3px solid var(--pink);
}

.card-outline-pink {
  border-color: rgba(255, 7, 89, 0.5);
}

.badge-coming-soon {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  background: var(--offwhite);
  color: var(--muted);
  border: 1px solid var(--border);
  margin-top: 16px;
}

.card-coming-soon {
  opacity: 0.7;
}

.card-badge {
  display: block;
  width: fit-content;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 3px;
  margin-top: 16px;
  margin-bottom: 4px;
}

.card-badge-popular {
  background: rgba(245, 158, 11, 0.12);
  color: #d97706;
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.25);
}

.section-dark .card-badge-popular {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  box-shadow: 0 0 14px rgba(245, 158, 11, 0.5);
}

.card-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 0.04em;
}

.card-link:hover {
  color: var(--pink-dk);
}

/* ============================================================
   FORMS
   ============================================================ */

.form-honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input:not([type="checkbox"]),
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: #fff;
  transition: border-color 0.15s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--pink);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  cursor: pointer;
}

.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--pink);
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 1;
}

.section-dark .form-consent input[type="checkbox"] {
  color-scheme: light;
}

.form-consent a {
  color: var(--pink);
  text-decoration: underline;
}

.form-actions {
  margin-top: 28px;
}

.form-message {
  padding: 14px 20px;
  border-radius: 4px;
  font-size: 15px;
  margin-bottom: 24px;
}

.form-message.success {
  background: #e6f9f0;
  color: #1a6640;
  border: 1px solid #b3e8cf;
}

.form-message.error {
  background: #ffeaea;
  color: #9b1c1c;
  border: 1px solid #f8c4c4;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
}

.footer-newsletter {
  background: var(--dark3);
  padding: 56px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-newsletter-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.footer-newsletter .section-label {
  color: var(--pink);
}

.footer-newsletter h3 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}

.footer-newsletter p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 28px;
}

.footer-newsletter-fields {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.footer-newsletter-fields input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.15s;
}

.footer-newsletter-fields input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter-fields input:focus {
  outline: none;
  border-color: var(--pink);
}

.footer-newsletter-fields button {
  background: var(--pink);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}

.footer-newsletter-fields button:hover {
  background: var(--pink-dk);
}

.footer-newsletter-success {
  color: #6ee7b7;
  font-size: 16px;
  font-weight: 600;
}

.footer-links {
  padding: 56px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-links-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.15s;
}

.footer-col ul a:hover {
  color: #fff;
}

.footer-contact {
  padding: 32px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-contact-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-contact a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.15s;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-contact-separator {
  color: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
  padding: 24px 40px;
}

.footer-bottom-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

.footer-bottom a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.15s;
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================================
   BLOG
   ============================================================ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1060px;
  margin: 0 auto;
}

.blog-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--dark3);
}

.blog-card-body {
  padding: 24px;
}

.blog-card-date {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.blog-card-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 12px;
}

.blog-card-title a:hover {
  color: var(--pink);
}

.blog-card-excerpt {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* Post page */

.post-hero {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}

.post-layout {
  max-width: 740px;
  margin: 0 auto;
  padding: 56px 40px 80px;
}

.post-header {
  margin-bottom: 40px;
}

.post-date {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.post-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.04;
  color: var(--text);
  margin-bottom: 0;
}

.post-body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
}

.post-body h2 {
  font-size: 28px;
  margin: 48px 0 16px;
}

.post-body h3 {
  font-size: 22px;
  margin: 36px 0 12px;
}

.post-body p {
  margin-bottom: 1.4em;
}

.post-body ul,
.post-body ol {
  margin-bottom: 1.4em;
  padding-left: 1.6em;
}

.post-body li {
  margin-bottom: 0.4em;
}

.post-body a {
  color: var(--pink);
  text-decoration: underline;
}

.post-body a:hover {
  color: var(--pink-dk);
}

.post-body strong {
  font-weight: 600;
}

.post-body blockquote {
  border-left: 3px solid var(--pink);
  padding: 4px 0 4px 24px;
  margin: 32px 0;
  font-size: 18px;
  color: var(--muted);
  font-style: italic;
}

.post-body code {
  font-size: 14px;
  background: var(--offwhite);
  padding: 2px 6px;
  border-radius: 3px;
  font-family: monospace;
}

.post-body pre {
  background: var(--dark3);
  color: rgba(255, 255, 255, 0.85);
  padding: 24px;
  border-radius: 6px;
  overflow-x: auto;
  margin: 28px 0;
  font-size: 14px;
}

.post-body pre code {
  background: none;
  padding: 0;
  color: inherit;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.testimonial {
  padding: 32px;
  border-left: 3px solid var(--pink);
  background: var(--offwhite);
  border-radius: 0 6px 6px 0;
}

.section-dark .testimonial {
  background: var(--dark3);
}

.testimonial-quote {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
  font-style: italic;
}

.section-dark .testimonial-quote {
  color: rgba(255, 255, 255, 0.8);
}

.testimonial-attr {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.section-dark .testimonial-attr {
  color: rgba(255, 255, 255, 0.45);
}

/* ============================================================
   CALLOUT / NOTICE BOX
   ============================================================ */

.callout {
  background: var(--offwhite);
  border-left: 3px solid var(--pink);
  padding: 20px 24px;
  border-radius: 0 6px 6px 0;
  font-size: 15px;
  color: var(--text);
  max-width: 860px;
  margin: 32px auto 0;
}

.callout a {
  color: var(--pink);
  font-weight: 600;
}

.callout a:hover {
  color: var(--pink-dk);
}

/* ============================================================
   SECTION CTA (bottom of dark sections)
   ============================================================ */

.section-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.centered .section-cta-group {
  justify-content: center;
}

/* ============================================================
   KEYNOTE / SERVICE DETAIL LAYOUT
   ============================================================ */

.keynote-header {
  max-width: 860px;
  margin: 0 auto 48px;
}

.keynote-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.keynote-meta-item {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.keynote-meta-item span {
  color: var(--text);
}

.keynote-subtitle {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
  margin-top: 8px;
}

.keynote-body {
  max-width: 860px;
  margin: 0 auto;
}

.keynote-body p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 1.4em;
}

.keynote-outcomes {
  margin-top: 32px;
}

.keynote-outcomes h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 16px;
}

.keynote-outcomes ul {
  list-style: none;
  padding: 0;
}

.keynote-outcomes ul li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 16px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.keynote-outcomes ul li:last-child {
  border-bottom: none;
}

.keynote-outcomes ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink);
}

/* ============================================================
   KEYNOTE TECHNICAL REQUIREMENTS
   ============================================================ */

.keynote-tech {
  margin-top: 28px;
  padding: 16px 20px;
  background: var(--offwhite);
  border-left: 3px solid var(--border);
  border-radius: 0 4px 4px 0;
  font-size: 14px;
  color: var(--muted);
  max-width: 700px;
}

.keynote-tech strong {
  color: var(--text);
  font-weight: 600;
}

/* ============================================================
   ATTENDEE QUOTE GRID
   ============================================================ */

.attendee-quote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1060px;
  margin: 0 auto;
}

.attendee-quote {
  background: var(--offwhite);
  border-radius: 6px;
  padding: 24px;
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  font-style: italic;
}

@media (max-width: 720px) {
  .attendee-quote-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-grid {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-direct {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-direct a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--text);
  transition: color 0.15s;
}

.contact-direct a:hover {
  color: var(--pink);
}

.btn-whatsapp {
  display: inline-block;
  background: #25d366;
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 3px;
  transition: background 0.15s;
  width: fit-content;
}

.btn-whatsapp:hover {
  background: #1da851;
  color: #fff !important;
}

/* ============================================================
   EXPERIENCE STATS / CREDENTIAL BLOCKS
   ============================================================ */

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 860px;
  margin: 0 auto 40px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.4;
}

/* ============================================================
   FAQ LIST
   ============================================================ */

.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.15;
}

.faq-answer {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 720px;
}

.faq-answer p {
  margin: 0;
}

/* ============================================================
   BENEFIT / FEATURE LIST (used in newsletter section, etc.)
   ============================================================ */

.benefit-list {
  list-style: none;
  padding: 0;
  max-width: 480px;
  margin: 0 auto 32px;
  text-align: left;
}

.benefit-list li {
  padding: 10px 0 10px 24px;
  position: relative;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 1.55;
}

.benefit-list li:last-child {
  border-bottom: none;
}

.benefit-list--light li {
  color: var(--text);
  border-bottom-color: var(--border);
}

.benefit-list--light {
  max-width: 100%;
  margin-left: 0;
}

.benefit-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 17px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
}

/* ============================================================
   RESOURCES PAGE
   ============================================================ */

.resource-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px;
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}

.resource-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
}

/* ============================================================
   KEYNOTE OVERVIEW CARDS (compact variant for the overview grid)
   ============================================================ */

.keynote-card-subtitle {
  font-size: 13px;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 6px;
  line-height: 1.4;
}

.section-dark .keynote-card-subtitle {
  color: rgba(255, 255, 255, 0.5);
}

.keynote-card-meta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

/* ============================================================
   RESPONSIVE VIDEO EMBED (YouTube, Vimeo — 16:9)
   ============================================================ */

.video-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ============================================================
   MEDIA / AS SEEN ON STRIP
   ============================================================ */

.media-strip {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
}

.media-outlet {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.media-outlet img {
  height: 56px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.podcast-feature {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--offwhite);
  border-left: 3px solid var(--pink);
  border-radius: 0 6px 6px 0;
  max-width: 540px;
}

.podcast-feature img {
  width: 64px;
  height: 64px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.podcast-feature-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 4px;
}

.podcast-feature-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 2px;
}

.podcast-feature-host {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
}

@media (max-width: 720px) {
  .media-strip {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 24px;
  }
  .media-outlet img {
    height: 40px;
    max-width: 110px;
  }
}

.media-podcast-link {
  display: inline-block;
  margin-top: 28px;
  font-size: 15px;
  color: var(--text);
}

.media-podcast-link a {
  color: var(--pink);
  font-weight: 600;
}

.media-podcast-link a:hover {
  color: var(--pink-dk);
}

/* Narrow section inner (860px vs default 1060px) */
.section-inner.narrow {
  max-width: 860px;
}

/* ============================================================
   LEGAL DOCUMENT TABLES (Terms of Service)
   ============================================================ */

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 15px;
  line-height: 1.65;
}

.legal-table tr {
  border-bottom: 1px solid var(--border);
}

.legal-table tr:first-child td {
  background: var(--pink);
  color: #fff;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  padding: 16px 20px;
}

.legal-table td {
  padding: 14px 16px;
  vertical-align: top;
  color: var(--text);
}

.legal-table tr:not(:first-child) td:first-child {
  font-weight: 600;
  width: 30%;
  background: var(--offwhite);
  color: var(--text);
}

.legal-table tr:not(:first-child) td:last-child {
  width: 70%;
}

.legal-footer-links {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 2px solid var(--border);
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.legal-footer-links div {
  flex: 1;
  min-width: 200px;
}

.legal-footer-links h3 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 8px;
}

.legal-footer-links a {
  font-size: 14px;
  color: var(--pink);
}

.legal-footer-links a:hover {
  color: var(--pink-dk);
}

@media (max-width: 720px) {
  .legal-table tr:not(:first-child) td:first-child,
  .legal-table tr:not(:first-child) td:last-child {
    display: block;
    width: 100%;
  }
  .legal-table tr:not(:first-child) td:first-child {
    border-bottom: 2px solid var(--pink);
  }
  .legal-footer-links {
    flex-direction: column;
  }
}

/* ============================================================
   EVENTS LIST
   ============================================================ */

.events-list {
  max-width: 860px;
  margin: 0 auto;
}

.event-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.event-item:last-child {
  border-bottom: none;
}

.event-calendar {
  flex-shrink: 0;
  width: 62px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  text-align: center;
  margin-top: 2px;
}

.event-cal-month {
  background: var(--pink);
  color: #fff;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 4px 4px;
}

.event-cal-day {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  padding: 8px 4px;
}

.event-body {
  flex: 1;
  min-width: 0;
}

.event-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.event-date-time {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.event-format {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
}

.event-format--in-person {
  background: rgba(255, 7, 89, 0.1);
  color: var(--pink);
}

.event-format--online {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.event-format--hybrid {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}

.event-title {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 6px;
}

.event-location {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 10px;
}

.event-description {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 20px;
  max-width: 680px;
}

/* ============================================================
   LOGO STRIP
   ============================================================ */

.logo-strip {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  opacity: 0.55;
}

.logo-strip img {
  height: 36px;
  width: auto;
}

/* ============================================================
   RESPONSIVE — 720px breakpoint
   ============================================================ */

@media (max-width: 720px) {
  /* Nav */
  .nav {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-mobile {
    display: none;
  }

  .nav-mobile.open {
    display: flex;
  }

  /* Hero */
  .hero {
    padding: 60px 24px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(40px, 10vw, 56px);
  }

  .hero p {
    font-size: 16px;
  }

  .hero-image {
    max-width: 280px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
  }

  /* Sections */
  .section,
  .section-alt,
  .section-dark {
    padding: 52px 24px;
  }

  /* Section split */
  .section-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-split.reverse {
    direction: ltr;
  }

  /* Cards */
  .cards-grid,
  .cards-grid-3 {
    grid-template-columns: 1fr;
  }

  /* Forms */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Blog grid */
  .blog-grid {
    grid-template-columns: 1fr;
  }

  /* Footer newsletter */
  .footer-newsletter {
    padding: 48px 24px;
  }

  .footer-newsletter-fields {
    flex-direction: column;
  }

  /* Footer links */
  .footer-links {
    padding: 48px 24px;
  }

  .footer-links-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  /* Footer contact */
  .footer-contact {
    padding: 28px 24px;
    flex-direction: column;
    gap: 12px;
  }

  .footer-contact-separator {
    display: none;
  }

  .footer-contact-inner {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  /* Footer bottom */
  .footer-bottom {
    padding: 20px 24px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Contact grid */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Stats */
  .stats-row {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: left;
  }

  /* Post */
  .post-layout {
    padding: 40px 24px 60px;
  }

  /* Speaker kit */
  .kit-docs-grid {
    grid-template-columns: 1fr;
  }
  .kit-photo-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .kit-photo-grid-2 {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}

/* ============================================================
   RESOURCES PAGE
   ============================================================ */

/* Square image mask for tool cards */
.card-img-square {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 20px;
  display: block;
  background: var(--border);
}

/* Newsletter 2-column layout */
.newsletter-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 40px;
}

.newsletter-img-col img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}

/* Podcast 2-column layout */
.podcast-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.podcast-copy h2 {
  color: #fff;
}

.podcast-copy p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.7;
}

.podcast-copy p + p {
  margin-top: 14px;
}

/* Safe Sec Sunday cards */
.sss-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.sss-card {
  border-radius: 10px;
  overflow: hidden;
  background: var(--dark);
  display: flex;
  flex-direction: column;
}

.sss-card-img {
  aspect-ratio: 9 / 16;
  overflow: hidden;
  flex-shrink: 0;
}

.sss-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.sss-card:hover .sss-card-img img {
  transform: scale(1.04);
}

.sss-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.sss-card-title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #fff;
  line-height: 1.2;
}

.sss-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
  flex: 1;
}

.sss-card-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--pink);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.sss-card-link:hover {
  text-decoration: underline;
}

/* Social strip */
.social-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.15s;
}

.social-link:hover {
  color: #fff;
}

.social-link svg {
  width: 28px;
  height: 28px;
}

/* ============================================================
   SPEAKER KIT
   ============================================================ */

.file-type {
  display: inline-block;
  padding: 3px 9px;
  background: var(--pink);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 3px;
  font-family: var(--font-body);
  flex-shrink: 0;
}

.file-type--html {
  background: var(--teal);
  color: #0d0d14;
}

/* Bio cards */
.bio-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.bio-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bio-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.bio-length-label {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text);
}

.bio-word-count {
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}

.bio-copy-btn {
  padding: 7px 16px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  font-family: var(--font-body);
  white-space: nowrap;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  flex-shrink: 0;
}

.bio-copy-btn:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.bio-copy-btn--copied {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(0, 212, 200, 0.08);
}

.bio-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.bio-text p + p {
  margin-top: 10px;
}

/* Document cards */
.kit-docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.kit-doc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.kit-doc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.kit-doc-badges {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.kit-doc-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.kit-doc-card p {
  flex: 1;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.kit-doc-btn {
  align-self: flex-start;
  padding: 10px 20px;
  font-size: 14px;
}

.kit-pill-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.kit-pill {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 99px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: opacity 0.15s;
  white-space: nowrap;
}

.kit-pill:hover { opacity: 0.82; }

.kit-pill--pink {
  background: var(--pink);
  color: #fff;
}

.kit-pill--teal {
  background: var(--teal);
  color: #fff;
}

/* Photo grids */
.kit-photo-grid {
  display: grid;
  gap: 24px;
  margin-top: 40px;
}

.kit-photo-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.kit-photo-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 560px;
}

.kit-photo-item img {
  width: 100%;
  aspect-ratio: auto;
  display: block;
  border-radius: 6px;
  background: var(--border);
}

.kit-photo-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 10px;
}

.kit-photo-download {
  font-size: 13px;
  color: var(--pink);
  text-decoration: none;
  font-weight: 600;
}

.kit-photo-download:hover {
  text-decoration: underline;
}

/* Talk-specific group label */
.kit-talk-group {
  margin-top: 0;
}

.kit-talk-label {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 0;
  padding-bottom: 0;
}

/* ============================================================
   LEGAL PAGES (privacy notice, terms)
   ============================================================ */

.legal-h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
  margin: 36px 0 12px;
}

.legal-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
}

.legal-body p { margin-bottom: 1.2em; }
.legal-body ul,
.legal-body ol { margin-bottom: 1.2em; padding-left: 1.5em; }
.legal-body li { margin-bottom: 0.35em; }
.legal-body a { color: var(--pink); text-decoration: underline; }
.legal-body a:hover { color: var(--pink-dk); }

.legal-callout {
  margin-top: 32px;
  padding: 28px 32px;
  background: var(--offwhite);
  border-left: 4px solid var(--pink);
  border-radius: 0 6px 6px 0;
}

.legal-callout-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}

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

/* ============================================================
   RESPONSIVE — resources/speaker-kit overrides
   Must appear after their desktop definitions to win the cascade
   ============================================================ */

@media (max-width: 720px) {
  .podcast-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .newsletter-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .newsletter-img-col {
    display: none;
  }
  .sss-grid {
    grid-template-columns: 1fr;
  }
}
