/* =========================================================
   Paradise International School — Stylesheet
   Elegant, modern, editorial-aligned design
   ========================================================= */

:root {
  /* Brand palette */
  --ink:        #0a1c3d;          /* deep midnight navy */
  --ink-soft:   #1a2f55;
  --ink-mute:   #5b6a86;

  --cream:      #faf6ef;          /* warm ivory base */
  --cream-2:    #f3ecdf;
  --cream-3:    #ece2cd;

  --gold:       #b08a3e;          /* warm museum gold */
  --gold-soft:  #d4b06a;
  --gold-glow:  #f0d9a3;

  --rose:       #c97b63;          /* warm coral accent */
  --sage:       #7a8c6e;

  --line:       rgba(10, 28, 61, 0.12);
  --line-soft:  rgba(10, 28, 61, 0.06);

  /* Type */
  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Radius / shadow */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;

  --shadow-sm: 0 2px 8px rgba(10, 28, 61, 0.06);
  --shadow-md: 0 20px 50px -20px rgba(10, 28, 61, 0.18);
  --shadow-lg: 0 40px 80px -30px rgba(10, 28, 61, 0.28);

  --easing: cubic-bezier(.2,.7,.2,1);
}

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

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* =========================================================
   Layout
   ========================================================= */
.container {
  width: 100%;
  max-width: 1280px;
  padding: 0 32px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .container { padding: 0 22px; }
}

.section {
  padding: 140px 0;
  position: relative;
}
@media (max-width: 900px) { .section { padding: 90px 0; } }

.section__head { max-width: 760px; margin-bottom: 70px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__head--split {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px;
  align-items: end; max-width: none; margin-bottom: 80px;
}
@media (max-width: 900px) { .section__head--split { grid-template-columns: 1fr; gap: 28px; } }

.section__eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 22px;
}
.section__eyebrow--light { color: var(--gold-glow); }

.section__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--ink);
}
.section__title em {
  font-style: italic;
  color: var(--gold);
}
.section__lede {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-mute);
  max-width: 640px;
  margin: 0;
}
.section__head--center .section__lede { margin-left: auto; margin-right: auto; }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: all .35s var(--easing);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform .35s var(--easing); }
.btn:hover svg { transform: translateX(4px); }

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

.btn--ghost {
  border-color: var(--line);
  color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.btn--ghost-light {
  border-color: rgba(255,255,255,0.3);
  color: var(--cream);
}
.btn--ghost-light:hover {
  background: var(--cream);
  color: var(--ink);
}

.btn--lg {
  padding: 18px 30px;
  font-size: 15px;
}

/* =========================================================
   Announcement bar
   ========================================================= */
.announcement {
  background: var(--ink);
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  padding: 12px 0;
  animation: marquee 45s linear infinite;
  width: max-content;
}
.marquee span { padding-right: 60px; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* =========================================================
   Navigation
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 239, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line-soft);
  transition: padding .35s var(--easing), background .35s var(--easing);
}
.nav.is-scrolled {
  background: rgba(250, 246, 239, 0.95);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 40px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand__logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
}
.brand__text {
  display: flex; flex-direction: column; line-height: 1;
}
.brand__name {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand__sub {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 4px;
}
.brand--light .brand__name,
.brand--light .brand__mark { color: var(--cream); }
.brand--light .brand__sub { color: rgba(250,246,239,0.6); }

.nav__links {
  display: flex;
  gap: 36px;
  font-size: 14px;
  font-weight: 500;
  margin-left: auto;
}
.nav__links a {
  position: relative;
  padding: 4px 0;
  color: var(--ink-soft);
  transition: color .25s var(--easing);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -4px;
  width: 0; height: 1px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width .35s var(--easing);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { margin-left: 8px; }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink);
  margin: 0 auto;
  transition: all .3s;
}

@media (max-width: 1024px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding: 80px 0 120px;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
  opacity: 0.5;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.hero__orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--gold-glow), transparent 70%);
  top: -100px; left: -100px;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #c5d4e8, transparent 70%);
  bottom: 100px; right: -100px;
}
.hero__orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #e8d4d4, transparent 70%);
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 75vh;
}
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 60px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
  margin-bottom: 32px;
}
.eyebrow__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(176, 138, 62, 0.2);
}

.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 0 32px;
  color: var(--ink);
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  position: relative;
}

.hero__lede {
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-mute);
  max-width: 540px;
  margin: 0 0 40px;
}
.hero__lede strong { color: var(--ink); font-weight: 600; }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 60px;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  max-width: 560px;
}
@media (max-width: 540px) {
  .hero__meta { grid-template-columns: 1fr; gap: 20px; }
}
.hero__meta-num {
  display: block;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}
.hero__meta-label {
  display: block;
  font-size: 12px;
  color: var(--ink-mute);
  line-height: 1.4;
  letter-spacing: 0.02em;
}

/* Hero visual */
.hero__visual {
  position: relative;
  height: 540px;
}
@media (max-width: 1024px) {
  .hero__visual { height: 480px; max-width: 520px; margin: 0 auto; }
}

.hero__card {
  position: absolute;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  transition: transform .6s var(--easing);
}
.hero__card--main {
  top: 30px; left: 0;
  width: 75%;
  padding: 36px;
  background: linear-gradient(160deg, #ffffff 0%, var(--cream-2) 100%);
}
.hero__card--main:hover { transform: translateY(-6px); }
.hero__card-tag {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero__card--main h3 {
  font-family: var(--serif);
  font-size: 84px;
  font-weight: 300;
  letter-spacing: -0.04em;
  margin: 0;
  color: var(--ink);
  line-height: 0.9;
}
.hero__card--main p {
  font-size: 14px;
  color: var(--ink-mute);
  margin: 16px 0 32px;
  max-width: 240px;
}
.hero__card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero__card-foot svg { width: 18px; height: 18px; }

.hero__card--alt {
  bottom: 40px; right: 0;
  width: 65%;
  padding: 24px 28px;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 14px;
  border: 0;
}
.hero__card--alt:hover { transform: translateY(-6px); }
.hero__card--alt p { margin: 0; font-size: 13px; line-height: 1.5; }
.hero__card--alt .dot {
  width: 10px; height: 10px; flex: 0 0 10px;
  background: var(--gold-glow);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(240, 217, 163, 0.2);
}

.hero__card--badge {
  top: 0; right: 30px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: grid;
  place-items: center;
  animation: spin 25s linear infinite;
  box-shadow: var(--shadow-md);
  border: 0;
}
.hero__card--badge svg { width: 100%; height: 100%; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  z-index: 1;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--ink-mute), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 40px;
  background: var(--gold);
  animation: scrollDown 2.5s var(--easing) infinite;
}
@keyframes scrollDown {
  to { transform: translateY(80px); }
}

@media (max-width: 1024px) {
  .hero__scroll { display: none; }
}

/* =========================================================
   Strip
   ========================================================= */
.strip {
  background: var(--ink);
  color: var(--cream);
  padding: 70px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.strip__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .strip__inner { grid-template-columns: 1fr; gap: 40px; }
}
.strip__lede {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 300;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.02em;
}
.strip__lede em { color: var(--gold-soft); font-style: italic; }
.strip__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 50px;
}
.strip__items div {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-size: 15px;
  color: rgba(250,246,239,0.85);
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.strip__items span {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--gold-soft);
}

/* =========================================================
   About
   ========================================================= */
.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: start;
}
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; gap: 50px; }
}

.about__head { position: sticky; top: 120px; }
.about__body p { font-size: 16px; color: var(--ink-mute); margin: 0 0 24px; }
.about__body .lead {
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-soft);
  font-weight: 400;
}

.about__vm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
@media (max-width: 600px) { .about__vm { grid-template-columns: 1fr; gap: 20px; } }
.about__vm-item h4 {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
}
.about__vm-item p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}
.about__vm-item em {
  font-style: italic;
  color: var(--ink);
  font-weight: 500;
}

.about__signature {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.about__signature strong {
  display: block;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}
.about__signature span {
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.about__divider {
  width: 1px;
  height: 40px;
  background: var(--line);
}

/* =========================================================
   Curriculum / Benefits
   ========================================================= */
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-bottom: 100px;
}
@media (max-width: 900px) { .benefits { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .benefits { grid-template-columns: 1fr; } }

.benefit {
  padding: 50px 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  transition: background .4s var(--easing);
  position: relative;
}
.benefit:hover { background: var(--cream-2); }

.benefit__num {
  display: inline-block;
  font-family: var(--serif);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}
.benefit h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: var(--ink);
}
.benefit p {
  font-size: 14px;
  color: var(--ink-mute);
  margin: 0;
  line-height: 1.6;
}

/* Comparison */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 800px) { .compare { grid-template-columns: 1fr; } }

.compare__col {
  padding: 50px 40px;
  border-radius: var(--r-lg);
  background: var(--cream-2);
  border: 1px solid var(--line);
}
.compare__col:first-child {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.compare__col:first-child li { color: rgba(250,246,239,0.8); border-color: rgba(255,255,255,0.08); }

.compare__tag {
  display: inline-block;
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 30px;
  font-weight: 500;
}
.compare__tag--accent { color: var(--gold-soft); }

.compare__col ul li {
  font-size: 15px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-mute);
  position: relative;
  padding-left: 24px;
}
.compare__col ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 24px;
  width: 12px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.compare__col ul li:last-child { border-bottom: 0; }

/* =========================================================
   Programs
   ========================================================= */
.programs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1024px) { .programs__grid { grid-template-columns: 1fr; } }

.program {
  position: relative;
  padding: 50px 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: transform .5s var(--easing), box-shadow .5s var(--easing);
  overflow: hidden;
}
.program::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, var(--cream-2) 100%);
  opacity: 0;
  transition: opacity .5s var(--easing);
}
.program:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.program:hover::before { opacity: 1; }

.program__num {
  position: relative;
  font-family: var(--serif);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.program__num::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.program__body { position: relative; }

.program h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.15;
  margin: 0 0 8px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.program__range {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 18px;
}
.program p {
  font-size: 15px;
  color: var(--ink-mute);
  margin: 0 0 28px;
  line-height: 1.65;
}
.program__list {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.program__list li {
  font-size: 14px;
  color: var(--ink-soft);
  padding: 8px 0 8px 22px;
  position: relative;
}
.program__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* =========================================================
   Bento / Campus
   ========================================================= */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 24px;
}
@media (max-width: 1024px) { .bento { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .bento { grid-template-columns: 1fr; } }

.bento__cell {
  position: relative;
  padding: 36px;
  border-radius: var(--r-lg);
  background: var(--cream-2);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .5s var(--easing);
  display: flex;
  flex-direction: column;
}
.bento__cell:hover { transform: translateY(-4px); }

.bento__cell--lg { grid-column: span 2; grid-row: span 2; min-height: 460px; }
.bento__cell--md { grid-column: span 2; }
@media (max-width: 1024px) {
  .bento__cell--lg { grid-column: span 2; grid-row: auto; min-height: 360px; }
  .bento__cell--md { grid-column: span 1; }
}
@media (max-width: 600px) {
  .bento__cell--lg, .bento__cell--md { grid-column: span 1; }
}

.bento__tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 500;
}
.bento__cell h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: var(--ink);
}
.bento__cell p {
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.6;
  margin: 0;
}

.bento__sports {
  background: var(--ink);
  color: var(--cream);
  position: relative;
}
.bento__sports .bento__tag { color: var(--gold-glow); }
.bento__sports h3 {
  color: var(--cream);
  font-size: 38px;
  max-width: 80%;
}
.bento__sports p { color: rgba(250,246,239,0.7); max-width: 80%; }
.bento__content { position: relative; z-index: 1; }

.bento__art {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  color: rgba(255,255,255,0.1);
  animation: spin 60s linear infinite;
}
.bento__art svg { width: 100%; height: 100%; }

.bento__science { background: linear-gradient(135deg, var(--cream-2), var(--cream-3)); }
.bento__library { background: var(--cream-2); }
.bento__arts {
  background: linear-gradient(160deg, #efe4d4, #e6d4b8);
}
.bento__transport {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
}
.bento__transport h3 { margin-top: 8px; }
.bento__nature {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  background: linear-gradient(135deg, #e3ead9, #d4dec4);
}
.bento__nature .bento__tag { color: var(--sage); }

.bento__icon {
  flex: 0 0 80px;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink);
}
.bento__icon svg { width: 32px; height: 32px; }

/* =========================================================
   Brainy Tab
   ========================================================= */
.brainy {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}
.brainy__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: center;
}
@media (max-width: 1024px) { .brainy__grid { grid-template-columns: 1fr; gap: 60px; } }

.brainy__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 400px;
}

.brainy__img {
  position: relative;
  z-index: 1;
  max-width: 380px;
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
  filter: drop-shadow(0 30px 60px rgba(10, 28, 61, 0.25));
  transition: transform .8s var(--easing);
}
.brainy__img:hover { transform: translateY(-8px); }

.brainy__pulse {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 500px;
  height: 500px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176,138,62,0.2), transparent 60%);
  z-index: -1;
  animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.3; }
}

.brainy__specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 20px;
  margin: 40px 0;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 540px) { .brainy__specs { grid-template-columns: repeat(2, 1fr); } }
.brainy__specs strong {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.brainy__specs span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.brainy__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.brainy__chips span {
  padding: 8px 16px;
  font-size: 12px;
  letter-spacing: 0.04em;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255,255,255,0.5);
}

/* =========================================================
   Leadership
   ========================================================= */
.leaders {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .leaders { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .leaders { grid-template-columns: 1fr; } }

.leader {
  padding: 30px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: all .4s var(--easing);
  display: flex;
  flex-direction: column;
}
.leader:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.leader__photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 22px;
  border: 2px solid var(--line);
  flex-shrink: 0;
}
.leader__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: var(--ink);
  line-height: 1.25;
}
.leader__role {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.leader p {
  font-size: 13px;
  color: var(--ink-mute);
  margin: 0 0 18px;
  line-height: 1.6;
  flex: 1;
}

.leader__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0;
  transition: color .3s var(--easing);
  align-self: flex-start;
}
.leader__more:hover { color: var(--ink); }

/* =========================================================
   Leader profile modal
   ========================================================= */
.modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--easing), visibility .35s;
}
.modal.is-active {
  opacity: 1;
  visibility: visible;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 28, 61, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal__dialog {
  position: relative;
  background: var(--cream);
  border-radius: var(--r-lg);
  max-width: 760px;
  width: 92%;
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: translateY(30px) scale(0.97);
  transition: transform .4s var(--easing);
}
.modal.is-active .modal__dialog {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: absolute;
  top: 20px; right: 20px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cream-2);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  z-index: 2;
  transition: background .3s;
}
.modal__close:hover { background: var(--cream-3); }
.modal__close svg { width: 18px; height: 18px; }

.modal__body {
  display: flex;
  gap: 40px;
  padding: 48px;
}
@media (max-width: 600px) {
  .modal__body { flex-direction: column; gap: 24px; padding: 32px 24px; }
}

.modal__photo {
  flex: 0 0 180px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--line);
}
@media (max-width: 600px) {
  .modal__photo { width: 120px; height: 120px; flex: 0 0 120px; margin: 0 auto; }
}
.modal__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal__info { flex: 1; min-width: 0; }

.modal__role {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 10px;
}
.modal__info h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--ink);
  line-height: 1.2;
}
.modal__tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.modal__bio {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-mute);
}
.modal__bio p { margin: 0 0 12px; }
.modal__bio p:last-child { margin-bottom: 0; }

/* =========================================================
   Journey / Gallery
   ========================================================= */
.journey {
  background: var(--cream-2);
  overflow: hidden;
}

/* Filter tabs */
.gallery__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
}
.gallery__tab {
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  border: 1px solid var(--line);
  color: var(--ink-mute);
  background: transparent;
  transition: all .3s var(--easing);
}
.gallery__tab:hover { color: var(--ink); border-color: var(--ink); }
.gallery__tab.is-active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

/* Photo grid */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) { .gallery__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .gallery__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px)  { .gallery__grid { grid-template-columns: 1fr; } }

.gallery__item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  background: var(--cream-3);
  border: 1px solid var(--line);
  transition: transform .4s var(--easing), box-shadow .4s var(--easing);
}
.gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.gallery__item.is-hidden {
  display: none;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--easing);
}
.gallery__item:hover img { transform: scale(1.06); }

.gallery__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 16px 14px;
  background: linear-gradient(to top, rgba(10,28,61,0.7), transparent);
  color: #fff;
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s var(--easing);
}
.gallery__item:hover .gallery__caption { opacity: 1; }
.gallery__caption span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* =========================================================
   Lightbox
   ========================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--easing), visibility .3s;
}
.lightbox.is-active {
  opacity: 1;
  visibility: visible;
}
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 28, 61, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.lightbox__content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox__content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}
.lightbox__caption {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(250,246,239,0.8);
  letter-spacing: 0.04em;
}
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  z-index: 2;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  display: grid;
  place-items: center;
  transition: background .3s;
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover { background: rgba(255,255,255,0.25); }
.lightbox__close svg,
.lightbox__prev svg,
.lightbox__next svg { width: 20px; height: 20px; }
.lightbox__close { top: 24px; right: 24px; }
.lightbox__prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 24px; top: 50%; transform: translateY(-50%); }
@media (max-width: 600px) {
  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }
  .lightbox__close { top: 12px; right: 12px; }
}

/* =========================================================
   Admissions CTA
   ========================================================= */
.admissions { padding-top: 60px; }
.cta {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--r-xl);
  padding: 100px 60px;
  overflow: hidden;
  text-align: center;
}
@media (max-width: 720px) { .cta { padding: 70px 28px; border-radius: var(--r-lg); } }

.cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta__orb {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176,138,62,0.4), transparent 60%);
  filter: blur(60px);
  top: -200px;
  left: -200px;
}
.cta__orb--2 {
  top: auto; left: auto;
  bottom: -250px; right: -200px;
  background: radial-gradient(circle, rgba(201,123,99,0.3), transparent 60%);
}

.cta__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.cta__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 14px 0 18px;
  color: var(--cream);
}
.cta__title em { color: var(--gold-soft); font-style: italic; }
.cta__content > p {
  font-size: 15px;
  color: rgba(250,246,239,0.75);
  margin: 0 0 50px;
  letter-spacing: 0.04em;
}

.cta__form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 12px;
  margin-bottom: 30px;
  text-align: left;
}
@media (max-width: 760px) {
  .cta__form { grid-template-columns: 1fr; }
}
.cta__form input,
.cta__form select {
  padding: 16px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  color: var(--cream);
  font-size: 14px;
  outline: none;
  transition: all .3s;
}
.cta__form input::placeholder { color: rgba(250,246,239,0.5); }
.cta__form input:focus,
.cta__form select:focus {
  border-color: var(--gold-soft);
  background: rgba(255,255,255,0.1);
}
.cta__form select option { background: var(--ink); color: var(--cream); }
.cta__form button {
  background: var(--gold);
  color: var(--ink);
  border: 0;
}
.cta__form button:hover { background: var(--gold-glow); }

.cta__or {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,246,239,0.4);
  margin: 24px 0 16px;
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: var(--ink);
  color: rgba(250,246,239,0.7);
  padding: 100px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 540px) {
  .footer__grid { grid-template-columns: 1fr; }
}

.footer__brand p {
  font-size: 14px;
  margin: 24px 0 0;
  max-width: 320px;
  line-height: 1.6;
}

.footer__col h4 {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 22px;
}
.footer__col p {
  font-size: 14px;
  margin: 0;
  line-height: 1.85;
}
.footer__col a {
  color: rgba(250,246,239,0.75);
  transition: color .3s;
}
.footer__col a:hover { color: var(--gold-soft); }
.footer__col ul li { padding: 4px 0; font-size: 14px; }
.muted { color: rgba(250,246,239,0.45); font-size: 12px; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  font-size: 12px;
}
.footer__bottom p { margin: 0; }
@media (max-width: 720px) {
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* =========================================================
   Reveal animations
   ========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--easing), transform 1s var(--easing);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* =========================================================
   Mobile menu open state
   ========================================================= */
.nav.is-open { z-index: 9999; }
.nav.is-open .nav__links {
  display: flex;
  position: fixed;
  top: 64px; left: 0; right: 0;
  bottom: auto;
  flex-direction: column;
  background: var(--cream);
  padding: 16px 24px 24px;
  gap: 0;
  font-size: 16px;
  z-index: 9998;
  border-top: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.nav.is-open .nav__links a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
  font-weight: 500;
}
.nav.is-open .nav__links a:last-child { border-bottom: none; }
.nav.is-open .nav__links a::after { display: none; }
.nav.is-open .nav__toggle {
  position: relative;
  z-index: 10000;
}
.nav.is-open .nav__toggle span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}
.nav.is-open .nav__cta {
  display: flex;
  margin-top: 8px;
  justify-content: center;
  position: static;
  font-size: 14px;
}

/* =========================================================
   Mobile responsive
   ========================================================= */

/* ----- Nav height on mobile ----- */
@media (max-width: 720px) {
  .nav__inner { height: 64px; gap: 16px; }
  .brand__logo { width: 36px; height: 36px; }
  .brand__name { font-size: 18px; }
  .brand__sub { font-size: 8px; }
  .nav.is-open .nav__links { top: 64px; }
}

/* ----- Hero mobile ----- */
@media (max-width: 1024px) {
  .hero { padding: 40px 0 80px; }
  .hero__inner { min-height: auto; }
}
@media (max-width: 720px) {
  .hero { padding: 30px 0 60px; }
  .hero__title { font-size: clamp(36px, 10vw, 56px); margin-bottom: 22px; }
  .hero__lede { font-size: 16px; margin-bottom: 28px; }
  .hero__cta { gap: 10px; }
  .hero__cta .btn--lg { padding: 14px 22px; font-size: 14px; width: 100%; justify-content: center; }
  .hero__meta { gap: 20px; grid-template-columns: repeat(3, 1fr); padding-top: 28px; }
  .hero__meta-num { font-size: 26px; }
  .hero__meta-label { font-size: 11px; }
}
@media (max-width: 480px) {
  .hero__meta { grid-template-columns: 1fr; }
  .eyebrow { font-size: 10px; padding: 6px 12px; }
}

/* ----- Hero visual cards mobile ----- */
@media (max-width: 1024px) {
  .hero__visual {
    height: auto;
    min-height: 320px;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
  }
  .hero__card--main { width: 70%; top: 20px; left: 0; padding: 28px; }
  .hero__card--main h3 { font-size: 64px; }
  .hero__card--alt { bottom: 20px; right: 0; width: 60%; }
  .hero__card--badge { width: 80px; height: 80px; right: 10px; top: 0; }
}
@media (max-width: 540px) {
  .hero__visual { min-height: 260px; max-width: 300px; }
  .hero__card--main { width: 75%; padding: 22px; top: 10px; }
  .hero__card--main h3 { font-size: 48px; }
  .hero__card--main p { font-size: 12px; margin: 8px 0 16px; max-width: 180px; }
  .hero__card-tag { font-size: 9px; padding: 4px 10px; margin-bottom: 16px; }
  .hero__card-foot { padding-top: 12px; font-size: 11px; }
  .hero__card--alt { width: 65%; padding: 14px 18px; bottom: 10px; }
  .hero__card--alt p { font-size: 11px; }
  .hero__card--badge { width: 60px; height: 60px; right: 5px; top: -5px; }
}

/* ----- Strip mobile ----- */
@media (max-width: 600px) {
  .strip { padding: 50px 0; }
  .strip__items { grid-template-columns: 1fr; gap: 18px; }
  .strip__items div { font-size: 14px; }
}

/* ----- About mobile ----- */
@media (max-width: 720px) {
  .about__grid { gap: 40px; }
  .about__head { position: static; }
  .about__body .lead { font-size: 17px; }
  .about__signature { flex-direction: column; align-items: flex-start; gap: 20px; }
  .about__divider { width: 40px; height: 1px; }
}

/* ----- Benefits / Curriculum mobile ----- */
@media (max-width: 720px) {
  .benefit { padding: 36px 28px; }
  .benefit h3 { font-size: 22px; }
  .compare__col { padding: 36px 28px; }
}

/* ----- Programs mobile ----- */
@media (max-width: 720px) {
  .program { padding: 36px 28px; }
  .program h3 { font-size: 24px; }
}

/* ----- Bento / Campus mobile ----- */
@media (max-width: 720px) {
  .bento { gap: 16px; }
  .bento__cell { padding: 28px; }
  .bento__sports h3 { font-size: 28px; max-width: 100%; }
  .bento__sports p { max-width: 100%; }
  .bento__transport,
  .bento__nature {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .bento__icon { width: 60px; height: 60px; flex: 0 0 60px; }
  .bento__icon svg { width: 26px; height: 26px; }
}

/* ----- Brainy Tab mobile ----- */
@media (max-width: 720px) {
  .brainy__visual { min-height: auto; }
  .brainy__img { max-width: 280px; }
  .brainy__pulse { width: 350px; height: 350px; }
  .brainy__specs { grid-template-columns: repeat(2, 1fr); gap: 18px 16px; }
  .brainy__specs strong { font-size: 18px; }
}

/* ----- Leadership mobile ----- */
@media (max-width: 720px) {
  .leader { padding: 28px 24px; }
  .leader__avatar { width: 52px; height: 52px; font-size: 15px; margin-bottom: 18px; }
  .leader h3 { font-size: 17px; }
}

/* ----- Gallery mobile ----- */
@media (max-width: 600px) {
  .gallery__tabs { gap: 6px; }
  .gallery__tab { padding: 8px 16px; font-size: 12px; }
}

/* ----- CTA / Admissions mobile ----- */
@media (max-width: 720px) {
  .cta { padding: 50px 24px; }
  .cta__title { font-size: clamp(30px, 7vw, 48px); }
  .cta__content > p { font-size: 14px; margin-bottom: 36px; }
  .cta__form { gap: 10px; }
  .cta__form input, .cta__form select { padding: 14px 18px; font-size: 14px; }
  .cta__form button { width: 100%; justify-content: center; }
  .btn--ghost-light.btn--lg { width: 100%; justify-content: center; }
}

/* ----- Footer mobile ----- */
@media (max-width: 720px) {
  .footer { padding: 60px 0 24px; }
  .footer__grid { gap: 32px; padding-bottom: 40px; }
  .footer__col h4 { margin-bottom: 14px; }
}

/* ----- Section head mobile ----- */
@media (max-width: 720px) {
  .section__head { margin-bottom: 48px; }
  .section__lede { font-size: 16px; }
  .section__eyebrow { font-size: 11px; margin-bottom: 16px; }
}

/* ----- General typography mobile ----- */
@media (max-width: 480px) {
  body { font-size: 15px; }
  .section { padding: 70px 0; }
  .container { padding: 0 18px; }
}
