/* ===== ClayTable — Global Styles ===== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --cream: #FDF8F2;
  --linen: #F0E6D9;
  --clay-light: #E8C9A0;
  --clay: #B87333;
  --clay-dark: #8B5A2B;
  --espresso: #2C1810;
  --warm-gray: #6B5C52;
  --warm-gray-light: #A89990;
  --white: #FFFFFF;
  --border: #DDD0C4;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(44,24,16,0.08);
  --shadow: 0 4px 16px rgba(44,24,16,0.10);
  --shadow-lg: 0 12px 40px rgba(44,24,16,0.14);

  --max-width: 1200px;
  --section-gap: 96px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--espresso);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

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

/* === Typography === */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 600; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }
p { font-size: 1rem; line-height: 1.75; color: var(--warm-gray); }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--clay);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(184,115,51,0.35);
}
.btn-primary:hover {
  background: var(--clay-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(184,115,51,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--clay);
  border: 2px solid var(--clay);
}
.btn-outline:hover {
  background: var(--clay);
  color: var(--white);
}
.btn-lg { padding: 18px 40px; font-size: 1.0625rem; }
.btn-full { width: 100%; }

/* === Header / Nav === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253,248,242,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--espresso);
  letter-spacing: -0.02em;
}
.logo span { color: var(--clay); }
.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--warm-gray);
  transition: color 0.15s;
}
.site-nav a:hover { color: var(--espresso); }
.nav-cta { display: none; }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--espresso);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px 24px;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 0; font-size: 1rem; width: 100%; border-bottom: 1px solid var(--linen); }
  .nav-cta { display: block; margin-top: 12px; }
  .menu-toggle { display: flex; }
  .header-btn { display: none; }
}

/* === Hero Section === */
.hero {
  padding: 80px 0 72px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clay);
  background: rgba(184,115,51,0.1);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero h1 {
  margin-bottom: 20px;
  color: var(--espresso);
}
.hero h1 em {
  font-style: italic;
  color: var(--clay-dark);
}
.hero-lead {
  font-size: 1.0625rem;
  color: var(--warm-gray);
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-note {
  font-size: 0.875rem;
  color: var(--warm-gray-light);
}
.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image-wrap img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(253,248,242,0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
}
.hero-badge-icon { font-size: 1.5rem; }
.hero-badge-text strong { display: block; font-size: 0.9375rem; font-weight: 600; color: var(--espresso); }
.hero-badge-text span { font-size: 0.8125rem; color: var(--warm-gray); }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-wrap { order: -1; }
  .hero h1 { font-size: 2rem; }
}
@media (max-width: 600px) {
  .hero { padding: 48px 0 56px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}

/* === Stats bar === */
.stats-bar {
  background: var(--espresso);
  padding: 32px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--clay-light);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}
@media (max-width: 600px) {
  .stats-inner { grid-template-columns: 1fr; gap: 24px; }
  .stat-item { border-right: none; }
}

/* === Section Shared === */
.section { padding: var(--section-gap) 0; }
.section-alt { background: var(--linen); }
.section-dark { background: var(--espresso); }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header h2 { color: var(--espresso); margin-bottom: 14px; }
.section-header p { font-size: 1.0625rem; max-width: 580px; }
.section-header.center p { margin: 0 auto; }
.overline {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 12px;
}

/* === Outcomes === */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.outcome-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.outcome-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.outcome-icon {
  width: 48px;
  height: 48px;
  background: rgba(184,115,51,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  margin-bottom: 16px;
}
.outcome-card h4 { color: var(--espresso); margin-bottom: 8px; }
.outcome-card p { font-size: 0.9375rem; color: var(--warm-gray); }

/* === Format === */
.format-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.format-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.format-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.format-list { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.format-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.format-item-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--linen);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}
.format-item-text strong { display: block; font-size: 0.9375rem; font-weight: 600; color: var(--espresso); margin-bottom: 2px; }
.format-item-text span { font-size: 0.875rem; color: var(--warm-gray); }
@media (max-width: 860px) {
  .format-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* === Process === */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.67% + 28px);
  right: calc(16.67% + 28px);
  height: 2px;
  background: var(--clay-light);
  z-index: 0;
}
.process-step { position: relative; z-index: 1; }
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--clay);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 0 0 8px var(--linen);
}
.process-step h4 { color: var(--espresso); margin-bottom: 10px; font-size: 1.125rem; }
.process-step p { font-size: 0.9375rem; }
@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr; gap: 24px; }
  .process-steps::before { display: none; }
}

/* === Teacher === */
.teacher-inner {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 64px;
  align-items: start;
}
.teacher-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.teacher-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.teacher-name {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 6px;
}
.teacher-title { font-size: 0.9375rem; color: var(--warm-gray); margin-bottom: 20px; }
.teacher-bio {
  font-size: 1.0625rem;
  color: var(--warm-gray);
  margin-bottom: 28px;
  font-style: italic;
  font-family: var(--font-display);
  line-height: 1.6;
  border-left: 3px solid var(--clay-light);
  padding-left: 20px;
}
.teacher-facts { display: flex; flex-direction: column; gap: 12px; }
.teacher-fact {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--warm-gray);
}
.teacher-fact::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clay);
}
@media (max-width: 900px) {
  .teacher-inner { grid-template-columns: 1fr; }
  .teacher-photo { max-width: 320px; }
}

/* === Materials === */
.materials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.materials-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.materials-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.materials-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.material-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--espresso);
}
.material-item span:first-child { font-size: 1.25rem; }
.material-note {
  margin-top: 20px;
  padding: 16px;
  background: rgba(184,115,51,0.08);
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--clay-dark);
}
@media (max-width: 768px) {
  .materials-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* === Lead Form === */
.lead-form-section {
  padding: var(--section-gap) 0;
}
.lead-form-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: center;
}
.lead-form-text h2 { color: var(--white); margin-bottom: 16px; }
.lead-form-text p { color: rgba(255,255,255,0.7); font-size: 1.0625rem; }
.lead-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.lead-form-card h3 { color: var(--espresso); margin-bottom: 8px; font-size: 1.375rem; }
.lead-form-card .form-subtitle { color: var(--warm-gray); font-size: 0.9375rem; margin-bottom: 28px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 6px;
}
.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--espresso);
  background: var(--cream);
  transition: border-color 0.15s;
  outline: none;
}
.form-group input:focus { border-color: var(--clay); background: var(--white); }
.form-group input::placeholder { color: var(--warm-gray-light); }
.form-submit { margin-top: 8px; }
.form-agreement {
  margin-top: 14px;
  font-size: 0.8125rem;
  color: var(--warm-gray-light);
  text-align: center;
  line-height: 1.5;
}
.form-agreement a { color: var(--clay); text-decoration: underline; }

@media (max-width: 960px) {
  .lead-form-inner { grid-template-columns: 1fr; gap: 40px; }
  .lead-form-card { max-width: 480px; }
}
@media (max-width: 600px) {
  .lead-form-card { padding: 28px 20px; }
}

/* === FAQ === */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--espresso);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  transition: color 0.15s;
}
.faq-question:hover { color: var(--clay); }
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--linen);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  transition: transform 0.25s, background 0.25s;
  color: var(--clay);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--clay); color: var(--white); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, padding 0.3s;
}
.faq-answer-inner {
  padding: 0 0 20px;
  font-size: 0.9375rem;
  color: var(--warm-gray);
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* === Results === */
.results-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.results-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.results-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.results-list { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.result-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.result-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--clay);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  margin-top: 2px;
}
.result-item p { font-size: 0.9375rem; }
@media (max-width: 768px) {
  .results-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* === Footer === */
.site-footer {
  background: var(--espresso);
  padding: 56px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { color: var(--white); }
.footer-brand .logo span { color: var(--clay-light); }
.footer-tagline {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
  margin-top: 10px;
  max-width: 280px;
  line-height: 1.6;
}
.footer-col h5 {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--clay-light); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 28px;
}
.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.15s;
}
.footer-legal a:hover { color: var(--clay-light); }
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* === Cookie Banner === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--espresso);
  border-top: 2px solid var(--clay);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  max-width: 700px;
  line-height: 1.5;
}
.cookie-text a { color: var(--clay-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept {
  padding: 10px 20px;
  background: var(--clay);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.15s;
  font-family: var(--font-body);
}
.cookie-accept:hover { background: var(--clay-dark); }
.cookie-decline {
  padding: 10px 20px;
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  font-family: var(--font-body);
}
.cookie-decline:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; }
  .cookie-accept, .cookie-decline { flex: 1; text-align: center; }
}

/* === Success Page === */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: var(--cream);
}
.success-card {
  max-width: 480px;
  width: 100%;
  text-align: center;
}
.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(184,115,51,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  margin: 0 auto 24px;
}
.success-card h1 { font-size: 2rem; color: var(--espresso); margin-bottom: 14px; }
.success-card p { color: var(--warm-gray); margin-bottom: 32px; font-size: 1.0625rem; }
.success-steps {
  text-align: left;
  background: var(--linen);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.success-step {
  display: flex;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--warm-gray);
  align-items: flex-start;
}
.success-step-num {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--clay);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* === Legal Pages === */
.legal-page { padding: 80px 0; }
.legal-page h1 { margin-bottom: 8px; }
.legal-meta { font-size: 0.875rem; color: var(--warm-gray-light); margin-bottom: 48px; }
.legal-content h2 { font-size: 1.375rem; margin-top: 40px; margin-bottom: 12px; }
.legal-content h3 { font-size: 1.0625rem; margin-top: 28px; margin-bottom: 8px; }
.legal-content p { margin-bottom: 16px; }
.legal-content ul { padding-left: 20px; list-style: disc; margin-bottom: 16px; }
.legal-content ul li { margin-bottom: 8px; font-size: 0.9375rem; color: var(--warm-gray); }
.legal-content a { color: var(--clay); text-decoration: underline; }

/* === Animations === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up {
  animation: fadeInUp 0.6s ease both;
}
.fade-in-up-delay-1 { animation-delay: 0.1s; }
.fade-in-up-delay-2 { animation-delay: 0.2s; }
.fade-in-up-delay-3 { animation-delay: 0.3s; }

/* === Utilities === */
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.hidden { display: none !important; }
