/* =========================================
   CALLISTART — GLOBAL STYLES
   ========================================= */

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

:root {
  --cream: #f7f3ec;
  --cream-dark: #ede7d9;
  --ink: #2a2118;
  --ink-mid: #4a3f34;
  --ink-light: #7a6e64;
  --amber: #b87c40;
  --amber-light: #d4a05a;
  --amber-pale: #f0e0c8;
  --white: #ffffff;
  --border: #d8cdbf;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --max-w: 1120px;
  --radius: 4px;
  --transition: 0.25s ease;
}

*, *::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(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.2rem; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 1rem;
}

/* =========================================
   LAYOUT
   ========================================= */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}

.section-intro {
  max-width: 640px;
  margin-bottom: 3.5rem;
}

.section-intro p {
  color: var(--ink-mid);
  margin-top: 0.75rem;
  font-size: 1.05rem;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(247, 243, 236, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--border);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.logo span {
  color: var(--amber);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-mid);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--amber); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: 1.5px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
}

.btn-primary:hover {
  background: #a06c34;
  border-color: #a06c34;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn-large {
  padding: 0.95rem 2.2rem;
  font-size: 0.95rem;
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: all var(--transition);
}

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

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    font-size: 1.2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 99;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links .btn {
    font-size: 1rem;
    padding: 0.9rem 2rem;
  }

  .hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

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

.hero {
  padding-top: 8rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background: var(--cream);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--amber);
}

.hero h1 {
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--amber);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--ink-mid);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-note {
  font-size: 0.82rem;
  color: var(--ink-light);
}

.hero-image-wrap {
  position: relative;
}

.hero-image-wrap img {
  width: 100%;
  border-radius: 2px;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 4px 20px rgba(42, 33, 24, 0.08);
}

.hero-badge-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.hero-badge-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--ink);
}

.hero-badge-text span {
  font-size: 0.78rem;
  color: var(--ink-light);
}

/* =========================================
   DIVIDER
   ========================================= */

.divider {
  height: 1px;
  background: var(--border);
  margin: 0 1.5rem;
}

/* =========================================
   ABOUT COURSE
   ========================================= */

.about-course {
  background: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img {
  border-radius: 2px;
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

.about-text p {
  color: var(--ink-mid);
  margin-bottom: 1.1rem;
  font-size: 1rem;
}

.about-text p:last-child { margin-bottom: 0; }

.about-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.detail-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.detail-item span {
  font-size: 0.82rem;
  color: var(--ink-light);
}

/* =========================================
   FOR WHOM
   ========================================= */

.for-whom {
  background: var(--cream);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.audience-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.audience-card:hover {
  border-color: var(--amber-light);
  box-shadow: 0 4px 24px rgba(184, 124, 64, 0.08);
}

.audience-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.audience-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.audience-card p {
  font-size: 0.9rem;
  color: var(--ink-mid);
  line-height: 1.6;
}

/* =========================================
   WHAT YOU'LL LEARN
   ========================================= */

.skills-section {
  background: var(--ink);
  color: var(--cream);
}

.skills-section .section-label { color: var(--amber-light); }
.skills-section h2 { color: var(--cream); }
.skills-section .section-intro p { color: rgba(247, 243, 236, 0.65); }

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid rgba(247, 243, 236, 0.12);
}

.skill-item {
  padding: 1.75rem 2rem;
  border-right: 1px solid rgba(247, 243, 236, 0.12);
  border-bottom: 1px solid rgba(247, 243, 236, 0.12);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.skill-item:nth-child(2n) { border-right: none; }
.skill-item:nth-last-child(-n+2) { border-bottom: none; }

.skill-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--amber-light);
  line-height: 1;
  flex-shrink: 0;
  width: 2.5rem;
  opacity: 0.6;
}

.skill-item h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 0.35rem;
}

.skill-item p {
  font-size: 0.87rem;
  color: rgba(247, 243, 236, 0.6);
  line-height: 1.55;
}

/* =========================================
   PROGRAM
   ========================================= */

.program {
  background: var(--cream);
}

.program-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.program-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

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

.program-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--amber-pale);
  line-height: 1;
  font-weight: 300;
}

.program-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.program-body p {
  font-size: 0.92rem;
  color: var(--ink-mid);
}

.program-body .program-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.program-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--amber);
  background: var(--amber-pale);
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
}

/* =========================================
   FORMAT
   ========================================= */

.format-section {
  background: var(--white);
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.format-card {
  text-align: center;
  padding: 2rem 1.25rem;
}

.format-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.format-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.format-card p {
  font-size: 0.85rem;
  color: var(--ink-mid);
  line-height: 1.55;
}

/* =========================================
   TEACHER
   ========================================= */

.teacher {
  background: var(--cream-dark);
}

.teacher-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 5rem;
  align-items: start;
}

.teacher-photo {
  width: 100%;
  border-radius: 2px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
}

.teacher-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.teacher-title {
  font-size: 0.85rem;
  color: var(--amber);
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.teacher-text p {
  color: var(--ink-mid);
  margin-bottom: 1rem;
  font-size: 1rem;
}

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

/* =========================================
   RESULTS / STUDENT WORK
   ========================================= */

.results {
  background: var(--white);
}

.results-img {
  width: 100%;
  border-radius: 2px;
  max-height: 440px;
  object-fit: cover;
  object-position: center;
  margin-top: 2rem;
}

.results-caption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-light);
  margin-top: 1rem;
  font-style: italic;
}

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

.faq {
  background: var(--cream);
}

.faq-list {
  max-width: 720px;
}

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

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--ink);
  transition: color var(--transition);
}

.faq-question:hover { color: var(--amber); }

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--ink-mid);
  transition: all var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
  padding-bottom: 1.25rem;
  font-size: 0.93rem;
  color: var(--ink-mid);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* =========================================
   LEAD FORM
   ========================================= */

.lead-form-section {
  background: linear-gradient(135deg, #2a2118 0%, #3d3020 100%);
  color: var(--cream);
}

.lead-form-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.lead-form-intro .section-label { color: var(--amber-light); }
.lead-form-intro h2 { color: var(--cream); font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
.lead-form-intro p {
  color: rgba(247, 243, 236, 0.7);
  margin-top: 0.75rem;
  font-size: 1rem;
  line-height: 1.7;
}

.lead-form-promises {
  list-style: none;
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.lead-form-promises li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(247, 243, 236, 0.75);
}

.lead-form-promises li::before {
  content: '✓';
  color: var(--amber-light);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 0.05em;
}

.form-card {
  background: rgba(247, 243, 236, 0.06);
  border: 1px solid rgba(247, 243, 236, 0.12);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.form-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(247, 243, 236, 0.65);
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}

.form-group input {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(247, 243, 236, 0.08);
  border: 1px solid rgba(247, 243, 236, 0.18);
  border-radius: var(--radius);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
}

.form-group input::placeholder { color: rgba(247, 243, 236, 0.3); }
.form-group input:focus { border-color: var(--amber-light); }

.form-submit {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.95rem;
  font-size: 0.95rem;
  font-weight: 500;
  background: var(--amber);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-body);
  letter-spacing: 0.03em;
  transition: background var(--transition);
}

.form-submit:hover { background: #a06c34; }

.form-disclaimer {
  margin-top: 0.9rem;
  font-size: 0.75rem;
  color: rgba(247, 243, 236, 0.35);
  line-height: 1.5;
  text-align: center;
}

.form-disclaimer a {
  color: rgba(247, 243, 236, 0.55);
  text-decoration: underline;
}

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

.site-footer {
  background: var(--ink);
  color: rgba(247, 243, 236, 0.5);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(247, 243, 236, 0.1);
  align-items: start;
}

.footer-brand .logo {
  color: var(--cream);
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.6;
  max-width: 340px;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.82rem;
  color: rgba(247, 243, 236, 0.5);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--cream); }

.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 0.78rem;
  line-height: 1.7;
}

.footer-legal p { margin-bottom: 0.2rem; }

/* =========================================
   COOKIE BANNER
   ========================================= */

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 700px;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 8px 32px rgba(42, 33, 24, 0.3);
  z-index: 200;
  transition: opacity 0.3s, transform 0.3s;
}

.cookie-banner.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(1rem);
}

.cookie-text {
  flex: 1;
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(247, 243, 236, 0.8);
}

.cookie-text a {
  color: var(--amber-light);
  text-decoration: underline;
}

.cookie-accept {
  flex-shrink: 0;
  padding: 0.6rem 1.25rem;
  background: var(--amber);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}

.cookie-accept:hover { background: #a06c34; }

/* =========================================
   SUCCESS PAGE
   ========================================= */

.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: var(--cream);
}

.success-card {
  max-width: 540px;
}

.success-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.success-card h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.success-card p {
  color: var(--ink-mid);
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.success-card .btn {
  margin-top: 2rem;
}

/* =========================================
   LEGAL PAGES
   ========================================= */

.legal-page {
  padding-top: 7rem;
  padding-bottom: 5rem;
}

.legal-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.legal-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.legal-header .updated {
  font-size: 0.82rem;
  color: var(--ink-light);
}

.legal-content {
  max-width: 720px;
}

.legal-content h2 {
  font-size: 1.3rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.legal-content h3 {
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.legal-content p {
  color: var(--ink-mid);
  margin-bottom: 0.9rem;
  font-size: 0.93rem;
  line-height: 1.75;
}

.legal-content ul {
  color: var(--ink-mid);
  margin-bottom: 0.9rem;
  padding-left: 1.5rem;
  font-size: 0.93rem;
  line-height: 1.75;
}

.legal-content li {
  margin-bottom: 0.35rem;
}

.legal-back {
  margin-bottom: 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.87rem;
  color: var(--ink-mid);
  transition: color var(--transition);
}

.legal-back:hover { color: var(--amber); }

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-image-wrap { order: -1; }
  .hero-badge { left: 0; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .teacher-inner { grid-template-columns: 1fr; gap: 3rem; }
  .teacher-photo { max-width: 320px; }
  .lead-form-inner { grid-template-columns: 1fr; gap: 3rem; }
  .format-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  section { padding: 3.5rem 0; }
  .hero { padding-top: 6rem; }
  .hero h1 { font-size: 2rem; }
  .audience-grid { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr; }
  .skill-item:nth-child(2n) { border-right: none; }
  .skill-item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(247, 243, 236, 0.12); }
  .skill-item:last-child { border-bottom: none; }
  .format-grid { grid-template-columns: 1fr 1fr; }
  .program-item { grid-template-columns: 50px 1fr; gap: 1rem; }
  .program-num { font-size: 2.2rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-links { flex-wrap: wrap; gap: 1rem; }
  .footer-bottom { flex-direction: column; }
  .cookie-banner { flex-direction: column; gap: 1rem; text-align: center; }
  .lead-form-inner { gap: 2rem; }
  .about-details { grid-template-columns: 1fr 1fr; }
}
