/* ============================================
   HEY CLIO — SITE STYLESHEET
   Version: 1.0 (Production)
   Last updated: 2026-02-28
   ============================================ */

/* ============================================
   CSS VARIABLES — BRAND SYSTEM
   ============================================ */
:root {
  --coral: #E86252;
  --coral-light: #F5B4AC;
  --coral-pale: #FCEAE7;
  --teal: #2A7B7B;
  --teal-light: #8BBDBD;
  --teal-pale: #EDF5F5;
  --charcoal: #2D3436;
  --charcoal-80: rgba(45, 52, 54, 0.8);
  --charcoal-60: rgba(45, 52, 54, 0.6);
  --charcoal-30: rgba(45, 52, 54, 0.3);
  --charcoal-12: rgba(45, 52, 54, 0.12);
  --cream: #F8F5F1;
  --cream-dark: #EDE8E1;
  --white: #FFFFFF;

  --font-display: 'Nunito', sans-serif;
  --font-body: 'Inter', sans-serif;

  --max-width: 1080px;
  --narrow-width: 640px;
  --content-width: 720px;
  --section-padding: 96px;
  --section-padding-mobile: 56px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
}

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

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

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

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

/* ============================================
   HEADER
   ============================================ */
.site-header {
  padding: 24px 0;
  background: var(--cream);
  position: relative;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.header-wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  line-height: 1;
}

.header-wordmark span {
  color: var(--coral);
}

.header-tagline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  color: var(--charcoal-60);
  letter-spacing: 0.04em;
  font-style: italic;
}

.header-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.header-nav a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  color: var(--charcoal-80);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.header-nav a:hover {
  color: var(--coral);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--charcoal);
  padding: 56px 0 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.footer-brand-wordmark span {
  color: var(--coral);
}

.footer-brand-tagline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
  letter-spacing: 0.04em;
}

.footer-nav-heading {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 16px;
}

.footer-nav a {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--coral-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.footer-copyright {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-signoff {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: var(--teal-light);
  opacity: 0.6;
  font-style: italic;
}

/* ============================================
   SHARED: PAGE HERO (About, Commitment, Privacy, Terms)
   ============================================ */
.page-hero {
  padding: 64px 0 48px;
  text-align: center;
}

.page-hero-eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
}

.page-hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.page-hero-lead {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 19px;
  line-height: 1.7;
  color: var(--charcoal-80);
  max-width: 580px;
  margin: 0 auto;
}

.page-hero-effective {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--charcoal-60);
}

/* ============================================
   SHARED: CTA BUTTON
   ============================================ */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--coral);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 8px;
  transition: background 0.2s, gap 0.2s;
  letter-spacing: 0.01em;
}

.cta-btn:hover {
  background: #d5553f;
  gap: 12px;
}

/* ============================================
   HOME PAGE
   ============================================ */

/* Home Hero */
.hero {
  padding: 48px 0 var(--section-padding);
}

.hero-content {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.hero-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 28px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(232, 98, 82, 0.18);
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  background: var(--coral-pale);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 48px;
  line-height: 1.12;
  color: var(--charcoal);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-headline em {
  font-style: italic;
  color: var(--coral);
}

.hero-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 19px;
  line-height: 1.7;
  color: var(--charcoal-80);
  max-width: 520px;
  margin: 0 auto;
}

/* Home Value Props */
.value-props {
  padding: 0 0 var(--section-padding);
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.value-card {
  background: var(--white);
  padding: 40px 32px;
  position: relative;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.value-card:nth-child(1)::before { background: var(--coral); }
.value-card:nth-child(2)::before { background: var(--teal); }
.value-card:nth-child(3)::before { background: var(--charcoal); }
.value-card:nth-child(4)::before { background: var(--coral-light); }

.value-card-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.3;
}

.value-card-heading em {
  font-style: italic;
  color: var(--coral);
}

.value-card-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.75;
  color: var(--charcoal-60);
}

.value-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--coral);
  transition: gap 0.2s;
}

.value-card-link:hover {
  gap: 10px;
}

/* Home Mission Callout */
.mission {
  background: var(--charcoal);
  padding: var(--section-padding) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mission-callout::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--coral);
  opacity: 0.06;
}

.mission-callout::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.08;
}

.mission-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.mission-eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
}

.mission-statement {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 22px;
  line-height: 1.7;
  color: var(--cream);
}

.mission-pbc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--teal-light);
  margin-top: 28px;
  letter-spacing: 0.02em;
}

.mission-link {
  display: inline-block;
  margin-top: 28px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--teal-light);
  transition: color 0.2s;
}

.mission-link:hover {
  color: var(--coral-light);
}

/* Home Contact */
.contact-section {
  padding: var(--section-padding) 0;
  text-align: center;
}

.contact-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.contact-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal-60);
  max-width: 460px;
  margin: 0 auto 28px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

/* About Origin */
.origin {
  padding: 0 0 var(--section-padding);
}

.origin p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.85;
  color: var(--charcoal-80);
  margin-bottom: 20px;
}

.origin p:last-of-type {
  margin-bottom: 0;
}

.origin p strong {
  font-weight: 600;
  color: var(--charcoal);
}

/* About Pull Quote */
.pull-quote {
  margin: 0 0 40px;
  padding: 0 0 40px;
  border-bottom: 1px solid var(--charcoal-12);
}

.pull-quote .pull-quote-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 24px;
  line-height: 1.45;
  color: var(--coral);
  border-left: 3px solid var(--coral);
  padding-left: 24px;
}

.pull-quote-cite {
  display: block;
  margin-top: 12px;
  padding-left: 27px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--charcoal-60);
  font-style: normal;
}

/* About Two-Column (Name/Wake Word) */
.about-two-col {
  background: var(--teal-pale);
  padding: var(--section-padding) 0;
}

.about-two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.about-two-col h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--teal);
  margin-bottom: 12px;
}

.about-two-col p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: var(--charcoal-80);
}

/* About Mission */
.about-mission {
  background: var(--charcoal);
  padding: var(--section-padding) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-mission::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--coral);
  opacity: 0.06;
}

.about-mission::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.08;
}

.about-mission-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.about-mission-eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
}

.about-mission-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 16px;
}

.about-mission-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.85;
  color: var(--cream);
  text-align: left;
  margin-bottom: 20px;
}

.about-mission-note {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  margin-top: 24px;
}

/* About Founders */
.founders {
  padding: var(--section-padding) 0;
}

.founders-header {
  text-align: center;
  margin-bottom: 48px;
}

.founders-eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}

.founders-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  color: var(--teal);
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 720px;
  margin: 0 auto;
}

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

.founder-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  color: var(--white);
}

.founder-photo-placeholder.ec {
  background: linear-gradient(135deg, var(--coral), #c94535);
}

.founder-photo-placeholder.ma {
  background: linear-gradient(135deg, var(--teal), #1d5656);
}

.founder-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.founder-role {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--coral);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.founder-bio {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  color: var(--charcoal-60);
}

/* About CTA */
.about-cta {
  padding: 0 0 var(--section-padding);
  text-align: center;
}

.about-cta-label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--charcoal-60);
  margin-bottom: 16px;
}

/* ============================================
   COMMITMENT PAGE
   ============================================ */

/* Commitment PBC Explainer */
.pbc-explainer {
  padding: 0 0 var(--section-padding);
}

.pbc-explainer h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  color: var(--teal);
  margin-bottom: 20px;
}

.pbc-explainer p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.85;
  color: var(--charcoal-80);
  margin-bottom: 20px;
}

.pbc-explainer p:last-of-type {
  margin-bottom: 0;
}

.pbc-explainer p strong {
  font-weight: 600;
  color: var(--charcoal);
}

/* Commitment Pledges */
.pledges {
  padding: 0 0 var(--section-padding);
}

.pledges-header {
  text-align: center;
  margin-bottom: 40px;
}

.pledges-eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}

.pledges-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  color: var(--teal);
  letter-spacing: -0.01em;
}

.pledges-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
}

.pledge-card {
  background: var(--white);
  padding: 40px 32px;
  position: relative;
}

.pledge-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.pledge-card:nth-child(1)::before { background: var(--coral); }
.pledge-card:nth-child(2)::before { background: var(--teal); }
.pledge-card:nth-child(3)::before { background: var(--charcoal); }

.pledge-card-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.3;
}

.pledge-card-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.75;
  color: var(--charcoal-60);
}

/* Commitment Pull Quote */
.commitment-quote {
  padding: 0 0 var(--section-padding);
}

.commitment-quote-inner {
  border-left: 3px solid var(--coral);
  padding: 24px 0 24px 28px;
  max-width: var(--narrow-width);
  margin: 0 auto;
}

.commitment-quote-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--coral);
}

/* Commitment Council */
.council {
  background: var(--charcoal);
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

.council::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--coral);
  opacity: 0.06;
}

.council::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.08;
}

.council-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.council-eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
}

.council-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.council-body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.85;
  color: var(--cream);
  text-align: left;
}

.council-body p {
  margin-bottom: 20px;
}

.council-body p:last-child {
  margin-bottom: 0;
}

/* Commitment CTA */
.page-cta {
  padding: var(--section-padding) 0;
  text-align: center;
}

.page-cta-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.page-cta-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal-60);
  max-width: 460px;
  margin: 0 auto 28px;
}

/* ============================================
   PRIVACY & TERMS — LEGAL PAGES
   ============================================ */

/* Version Toggle (Privacy) */
.version-toggle {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 32px auto 48px;
  max-width: 360px;
  background: var(--cream-dark);
  border-radius: 8px;
  padding: 4px;
}

.version-btn {
  flex: 1;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--charcoal-60);
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}

.version-btn.active {
  background: var(--white);
  color: var(--charcoal);
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.version-btn:hover:not(.active) {
  color: var(--charcoal-80);
}

/* Legal Content Container */
.legal-content {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 32px 64px;
}

.legal-content[data-version] {
  display: none;
}

.legal-content.active {
  display: block;
}

/* Legal Sections */
.legal-section {
  margin-bottom: 40px;
}

.legal-section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--teal);
  margin-bottom: 16px;
}

.legal-section h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--charcoal);
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-section p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: var(--charcoal-80);
  margin-bottom: 12px;
}

.legal-section ul {
  list-style: none;
  margin-bottom: 12px;
}

.legal-section ul li {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: var(--charcoal-80);
  padding: 3px 0 3px 20px;
  position: relative;
}

.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--charcoal-30);
}

.legal-section .item-label {
  font-weight: 600;
  color: var(--charcoal);
}

.legal-section .important-note {
  background: var(--coral-pale);
  border-radius: 8px;
  padding: 20px 24px;
  margin: 16px 0;
}

.legal-section .important-note p {
  color: var(--charcoal);
  margin-bottom: 0;
  font-size: 14px;
}

/* Key Definitions (Terms) */
.definitions-list { margin-bottom: 16px; }
.definitions-list dt { font-family: var(--font-body); font-weight: 600; font-size: 15px; color: var(--charcoal); margin-top: 12px; }
.definitions-list dd { font-family: var(--font-body); font-weight: 400; font-size: 15px; line-height: 1.7; color: var(--charcoal-80); margin-left: 0; margin-bottom: 4px; }

/* Legal Contact Box */
.legal-contact {
  background: var(--white);
  border-radius: 8px;
  padding: 28px;
  margin-top: 40px;
}

.legal-contact h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--teal);
  margin-bottom: 12px;
}

.legal-contact p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--charcoal-80);
  margin-bottom: 8px;
}

/* ============================================
   PRIVACY — PLAIN LANGUAGE VERSION
   ============================================ */
.plain-intro {
  text-align: center;
  margin-bottom: 48px;
}

.plain-intro-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  color: var(--charcoal-80);
  max-width: 540px;
  margin: 0 auto;
}

.plain-promises {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  margin-bottom: 48px;
}

.plain-promise {
  background: var(--white);
  padding: 28px 24px;
  position: relative;
}

.plain-promise::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}

.plain-promise:nth-child(1)::before { background: var(--coral); }
.plain-promise:nth-child(2)::before { background: var(--teal); }
.plain-promise:nth-child(3)::before { background: var(--charcoal); }

.plain-promise h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.plain-promise p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  color: var(--charcoal-60);
}

.plain-section {
  margin-bottom: 48px;
}

.plain-section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--teal);
  margin-bottom: 16px;
}

.plain-section h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--charcoal);
  margin-top: 28px;
  margin-bottom: 8px;
}

.plain-section p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: var(--charcoal-80);
  margin-bottom: 16px;
}

.plain-section ul {
  list-style: none;
  margin-bottom: 16px;
}

.plain-section ul li {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: var(--charcoal-80);
  padding: 4px 0 4px 20px;
  position: relative;
}

.plain-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral-light);
}

/* Do / Don't Table */
.do-dont-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-family: var(--font-body);
  font-size: 14px;
}

.do-dont-table th {
  padding: 10px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.do-dont-table th.do-col { background: var(--teal-pale); color: var(--teal); }
.do-dont-table th.dont-col { background: var(--coral-pale); color: var(--coral); }

.do-dont-table td {
  padding: 8px 16px;
  border-bottom: 1px solid var(--charcoal-12);
  color: var(--charcoal-80);
  line-height: 1.6;
}

/* Visibility Grid */
.visibility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin: 16px 0 24px;
}

.visibility-col {
  background: var(--white);
  padding: 20px;
}

.visibility-col h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.visibility-col.student h4 { color: var(--teal); }
.visibility-col.parent h4 { color: var(--coral); }

.visibility-col li { font-size: 14px; }

/* Rights List */
.rights-list { list-style: none; margin-bottom: 16px; }
.rights-list li { padding: 12px 0; border-bottom: 1px solid var(--charcoal-12); }
.rights-list li:last-child { border-bottom: none; }
.rights-list li::before { display: none; }
.rights-list strong { font-weight: 600; color: var(--charcoal); display: block; margin-bottom: 2px; }
.rights-list span { font-family: var(--font-body); font-size: 14px; line-height: 1.6; color: var(--charcoal-60); }

/* Retention Items */
.retention-item { padding: 12px 0; border-bottom: 1px solid var(--charcoal-12); }
.retention-item:last-child { border-bottom: none; }
.retention-item strong { font-weight: 600; color: var(--charcoal); display: block; margin-bottom: 2px; font-size: 15px; }
.retention-item span { font-family: var(--font-body); font-size: 14px; line-height: 1.6; color: var(--charcoal-60); }

/* PBC Callout (Privacy) */
.pbc-callout {
  background: var(--teal-pale);
  border-radius: 8px;
  padding: 24px 28px;
  margin: 24px 0;
}

.pbc-callout p {
  color: var(--charcoal-80);
  margin-bottom: 0;
}

/* Legal Note */
.legal-note {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--charcoal-12);
  margin-top: 48px;
}

.legal-note p { font-size: 14px; color: var(--charcoal-60); }
.legal-note a { color: var(--coral); cursor: pointer; }
.legal-note a:hover { text-decoration: underline; }

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .container--narrow { padding: 0 20px; }
  .legal-content { padding: 0 20px 64px; }

  /* Header */
  .header-nav { display: none; }
  .header-nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 20px 32px;
    gap: 16px;
    border-bottom: 1px solid var(--cream-dark);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }
  .nav-toggle { display: block; }

  /* Home Hero */
  .hero-headline { font-size: 36px; }
  .hero-sub { font-size: 16px; }
  .hero-icon { width: 72px; height: 72px; border-radius: 16px; margin-bottom: 20px; }

  /* Home Value Props */
  .value-grid { grid-template-columns: 1fr; }
  .value-card { padding: 32px 24px; }

  /* Page Hero */
  .page-hero { padding: 40px 0 32px; }
  .page-hero-headline { font-size: 32px; }
  .page-hero-lead { font-size: 16px; }

  /* About */
  .pull-quote .pull-quote-text { font-size: 20px; }
  .about-two-col-grid { grid-template-columns: 1fr; gap: 32px; padding: 0 20px; }
  .founders-grid { grid-template-columns: 1fr; gap: 40px; }
  .founders-heading { font-size: 26px; }

  /* Commitment */
  .pledges-grid { grid-template-columns: 1fr; }
  .pledges-headline { font-size: 26px; }
  .pledge-card { padding: 32px 24px; }
  .commitment-quote-text { font-size: 18px; }
  .council-headline { font-size: 26px; }
  .council-body { font-size: 16px; }

  /* Privacy */
  .plain-promises { grid-template-columns: 1fr; }
  .visibility-grid { grid-template-columns: 1fr; }
  .do-dont-table { font-size: 13px; }
  .do-dont-table th, .do-dont-table td { padding: 8px 12px; }

  /* Footer */
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 32px; }
  .page-hero-headline { font-size: 28px; }
  .pledge-card-heading { font-size: 19px; }
  .commitment-quote-text { font-size: 17px; }
  .version-toggle { max-width: 100%; margin-left: 20px; margin-right: 20px; }
}
