:root {
  --navy: #10283b;
  --navy-deep: #071c2d;
  --cream: #f6f0e5;
  --cream-light: #fffaf1;
  --gold: #f1ab24;
  --coral: #ed7558;
  --mint: #85b9a9;
  --ink: #102536;
  --muted: #65717a;
  --line: rgba(16, 40, 59, 0.15);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream-light); color: var(--ink); font-family: var(--sans); }
body, button, input, textarea, select { font-family: var(--sans); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { color: inherit; }
::selection { background: var(--gold); color: var(--navy-deep); }

.site-header {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 112px;
  padding: 12px clamp(24px, 4vw, 70px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}
.brand { display: inline-flex; align-items: center; width: max-content; padding: 3px 7px; border-radius: 16px; background: var(--navy-deep); }
.brand img { width: clamp(230px, 21vw, 290px); height: auto; }
.desktop-nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 44px); }
.desktop-nav a { font-size: 14px; font-weight: 650; transition: opacity 180ms ease; }
.desktop-nav a:hover { opacity: 0.55; }
.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  padding: 13px 17px;
  border: 1px solid rgba(16, 40, 59, 0.3);
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease;
}
.header-cta:hover { background: var(--navy); color: white; }
.header-cta svg, .button svg, .round-arrow svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.menu-button, .mobile-nav { display: none; }
.mobile-nav[hidden] { display: none !important; }

.hero {
  position: relative;
  min-height: 790px;
  display: grid;
  grid-template-columns: 50% 50%;
  overflow: hidden;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.hero-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  padding: 150px 5vw 88px max(24px, calc((100vw - 1320px) / 2));
}
.eyebrow {
  margin: 0 0 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #51606a;
  text-transform: uppercase;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 850;
  letter-spacing: 0.16em;
}
.eyebrow > span { width: 28px; height: 2px; background: var(--gold); }
.hero h1, .section h2, .method-intro h2, .contact-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.92;
}
.hero h1 { font-size: clamp(64px, 7vw, 112px); max-width: 800px; }
.hero h1 em, .method-intro h2 em, .about-story h2 em, .training-copy h2 em, .faq-heading h2 em, .contact-copy h2 em { color: var(--coral); font-weight: 400; }
.hero-lead { max-width: 600px; margin: 34px 0 0; font-size: 18px; line-height: 1.65; color: #52606a; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.button {
  display: inline-flex;
  width: max-content;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 21px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 820;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--navy); color: white; box-shadow: 0 12px 26px rgba(16, 40, 59, 0.18); }
.button-primary:hover { box-shadow: 0 15px 30px rgba(16, 40, 59, 0.26); }
.text-link { font-size: 14px; font-weight: 750; border-bottom: 1px solid rgba(16, 40, 59, 0.35); padding: 5px 0; }
.text-link span { color: var(--coral); margin-left: 4px; }
.hero-note { display: flex; align-items: center; gap: 15px; margin-top: 54px; font-size: 12px; line-height: 1.45; color: #6b7479; }
.hero-note strong { color: var(--ink); font-size: 13px; }
.zoom-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  background: #2d8cff;
  color: white;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(45, 140, 255, 0.22);
}
.hero-visual { position: relative; overflow: hidden; }
.hero-visual::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  width: 28%;
  background: linear-gradient(90deg, var(--cream), rgba(246, 240, 229, 0));
  pointer-events: none;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.hero-caption {
  position: absolute;
  z-index: 3;
  left: clamp(24px, 4vw, 64px);
  bottom: 45px;
  margin: 0;
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.92);
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}
.hero-badge {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 4vw, 64px);
  top: 138px;
  width: 128px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  background: var(--coral);
  color: white;
  transform: rotate(7deg);
  box-shadow: 0 14px 30px rgba(68, 32, 22, 0.18);
}
.hero-badge strong { max-width: 94px; font-family: var(--serif); font-size: 21px; line-height: 0.95; }
.hero-badge span { font-size: 11px; font-weight: 800; margin-top: 3px; }

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 max(24px, calc((100vw - 1320px) / 2));
  background: #fffaf2;
  border-bottom: 1px solid var(--line);
}
.proof-strip p { margin: 0; padding: 26px clamp(16px, 2.4vw, 38px); border-right: 1px solid var(--line); }
.proof-strip p:first-child { border-left: 1px solid var(--line); }
.proof-strip strong, .proof-strip span { display: block; }
.proof-strip strong { font-size: 14px; }
.proof-strip span { margin-top: 5px; color: #74808a; font-size: 11px; }

.section { width: min(1320px, calc(100% - 48px)); margin: 0 auto; }
.courses { padding-top: 130px; padding-bottom: 145px; }
.split-heading { display: grid; grid-template-columns: 1.2fr 0.8fr; align-items: end; gap: 90px; }
.section-heading h2 { font-size: clamp(48px, 5.4vw, 82px); }
.split-heading > p { max-width: 480px; margin: 0 0 8px; color: var(--muted); line-height: 1.75; font-size: 16px; }
.language-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 62px; }
.language-card {
  position: relative;
  min-height: 240px;
  padding: 23px 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 22px;
  overflow: hidden;
  background: #e9c1a9;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.language-card:hover { transform: translateY(-5px); box-shadow: 0 20px 35px rgba(16, 40, 59, 0.11); }
.language-card::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  right: -40px;
  top: -50px;
  border: 36px solid rgba(255, 255, 255, 0.33);
}
.language-card.mint { background: #b9d9cd; }
.language-card.gold { background: #f4c760; }
.language-card.sky { background: #b9d0df; }
.language-card.rose { background: #e8afa9; }
.language-card.violet { background: #c9c3df; }
.language-card.aqua { background: #9fd0cf; }
.language-card.language-wide { grid-column: 1 / -1; min-height: 185px; }
.language-index { position: absolute; top: 23px; left: 25px; font-size: 11px; font-weight: 850; opacity: 0.6; }
.language-hello { font-family: var(--serif); font-size: 34px; font-style: italic; line-height: 1.1; }
.language-card strong { margin-top: 8px; font-size: 14px; }
.round-arrow { position: absolute; right: 22px; bottom: 22px; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,0.54); }

.method-section { background: var(--navy-deep); color: #f7f0e5; }
.method-inner { min-height: 900px; display: grid; grid-template-columns: 0.76fr 1.24fr; gap: 76px; align-items: center; padding-top: 110px; padding-bottom: 110px; }
.eyebrow.light { color: #acbbc4; }
.method-intro h2 { font-size: clamp(56px, 6vw, 88px); }
.method-intro > p:not(.eyebrow) { max-width: 410px; margin: 34px 0; color: #afbdc5; font-size: 16px; line-height: 1.75; }
.button-light { background: #f9f2e7; color: var(--navy-deep); }
.pillar-grid { display: grid; grid-template-columns: 1fr 1fr; border-left: 1px solid rgba(255,255,255,0.13); border-top: 1px solid rgba(255,255,255,0.13); }
.pillar { min-height: 230px; padding: 30px; border-right: 1px solid rgba(255,255,255,0.13); border-bottom: 1px solid rgba(255,255,255,0.13); }
.pillar > span { color: var(--gold); font-size: 11px; font-weight: 850; letter-spacing: 0.12em; }
.pillar h3 { margin: 35px 0 13px; font-family: var(--serif); font-size: 27px; font-weight: 500; }
.pillar p { margin: 0; color: #adbbc4; line-height: 1.65; font-size: 14px; }

.moments { padding-top: 135px; padding-bottom: 150px; }
.moments-copy { display: grid; grid-template-columns: 0.9fr 1.4fr 0.7fr; gap: 50px; align-items: end; margin-bottom: 56px; }
.moments-copy .eyebrow { align-self: start; }
.moments-copy h2 { font-size: clamp(48px, 5vw, 76px); }
.moments-copy > p:last-child { margin: 0 0 6px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.photo-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; grid-template-rows: 260px 260px 330px; gap: 14px; }
.photo-grid figure { position: relative; overflow: hidden; margin: 0; border-radius: 18px; }
.photo-grid .photo-main { grid-row: 1 / span 2; }
.photo-grid .photo-wide { grid-column: 1 / -1; }
.photo-grid .photo-wide img { object-position: 50% 44%; }
.photo-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.photo-grid figure:hover img { transform: scale(1.025); }
.photo-grid figcaption { position: absolute; left: 15px; bottom: 15px; padding: 9px 12px; border-radius: 999px; background: rgba(255,250,241,0.9); color: var(--navy); font-size: 10px; font-weight: 800; backdrop-filter: blur(8px); }

.testimonial-section { background: #f1c24e; }
.testimonial-inner { padding-top: 90px; padding-bottom: 84px; }
.testimonial-topline { display: flex; align-items: center; justify-content: space-between; }
.testimonial-topline .eyebrow { margin: 0; color: rgba(16,37,54,0.72); }
.testimonial-topline .eyebrow span { background: var(--navy); }
.carousel-controls { display: flex; gap: 8px; }
.carousel-controls button { width: 46px; height: 46px; border: 1px solid rgba(16,37,54,0.35); border-radius: 50%; background: transparent; cursor: pointer; transition: background 150ms ease, color 150ms ease; }
.carousel-controls button:hover { background: var(--navy); color: white; }
.carousel-controls svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.carousel-controls svg.flip { transform: rotate(180deg); }
.testimonial { position: relative; max-width: 1050px; margin: 76px auto 0; text-align: center; }
.quote-mark { position: absolute; left: -55px; top: -58px; font-family: var(--serif); font-size: 150px; line-height: 1; color: rgba(16,37,54,0.12); }
.testimonial blockquote { margin: 0; min-height: 360px; display: grid; place-items: center; font-family: var(--serif); font-size: clamp(27px, 2.7vw, 40px); line-height: 1.25; letter-spacing: -0.03em; }
.testimonial > p { margin: 35px 0 0; }
.testimonial > p strong, .testimonial > p span { display: block; }
.testimonial > p strong { font-size: 14px; }
.testimonial > p span { margin-top: 4px; color: rgba(16,37,54,0.65); font-size: 11px; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.carousel-dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; background: rgba(16,37,54,0.25); cursor: pointer; }
.carousel-dots button.active { width: 27px; border-radius: 999px; background: var(--navy); }
.reviews-link-wrap { margin-top: 28px; text-align: center; }
.reviews-link { display: inline-flex; align-items: center; gap: 8px; padding: 11px 16px; border: 1px solid rgba(16,37,54,0.35); border-radius: 999px; font-size: 13px; font-weight: 800; transition: background 150ms ease, color 150ms ease; }
.reviews-link:hover { background: var(--navy); color: white; }

.about-section { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 90px; padding-top: 145px; padding-bottom: 145px; }
.about-story h2 { font-size: clamp(52px, 5.8vw, 86px); }
.about-bilingual { max-width: 760px; display: grid; gap: 0; margin-top: 48px; border-top: 1px solid var(--line); }
.about-language { padding: 28px 0; border-bottom: 1px solid var(--line); }
.about-language h3 { margin: 0 0 14px; font-family: var(--serif); font-size: 25px; font-weight: 600; }
.about-language p { margin: 0 0 12px; color: var(--muted); line-height: 1.72; font-size: 15px; }
.about-language p:last-child { margin-bottom: 0; }
.about-language.english { padding-left: 24px; border-left: 3px solid var(--gold); }
.about-facts { display: flex; gap: clamp(24px, 5vw, 72px); margin-top: 64px; padding-top: 30px; border-top: 1px solid var(--line); }
.about-facts span { color: #79838a; font-size: 11px; text-transform: uppercase; letter-spacing: 0.09em; }
.about-facts strong { display: block; margin-bottom: 4px; color: var(--ink); font-family: var(--serif); font-size: 34px; font-weight: 500; text-transform: none; letter-spacing: -0.04em; }
.team-panel { padding: 34px; border-radius: 26px; background: #e8dfd1; }
.team-heading { display: flex; justify-content: space-between; gap: 20px; align-items: start; padding-bottom: 28px; border-bottom: 1px solid rgba(16,40,59,0.14); }
.team-heading h3 { margin: 0; font-family: var(--serif); font-size: 32px; font-weight: 500; letter-spacing: -0.035em; }
.team-heading > span { color: #778087; font-size: 10px; line-height: 1.5; text-align: right; text-transform: uppercase; letter-spacing: 0.08em; }
.teacher-list { display: grid; }
.teacher { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: center; padding: 22px 0; border-bottom: 1px solid rgba(16,40,59,0.12); }
.teacher:last-child { border-bottom: 0; }
.teacher-avatar { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: var(--gold); color: var(--navy); font-family: var(--serif); font-weight: 700; }
.teacher-avatar.teacher-coral { background: #df967e; }
.teacher-avatar.teacher-mint { background: #9fc6ba; }
.teacher-avatar.teacher-blue { background: #aebfd0; }
.teacher h4 { margin: 0 0 5px; font-size: 15px; }
.teacher p { margin: 0; color: #707a81; font-size: 12px; line-height: 1.5; }

.pricing-section { padding: 135px 0 130px; background: #eee6d9; }
.pricing-heading { align-items: end; }
.pricing-heading h2 { font-size: clamp(50px, 5.4vw, 80px); }
.first-class-note { justify-self: end; display: flex; align-items: center; gap: 15px; margin-bottom: 5px; }
.first-class-note > span { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; background: var(--coral); color: white; font-weight: 850; }
.first-class-note p { margin: 0; color: #69757d; font-size: 12px; line-height: 1.55; }
.first-class-note strong { color: var(--ink); font-size: 14px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 65px; }
.price-card { position: relative; min-height: 410px; display: flex; flex-direction: column; padding: 28px 25px; border: 1px solid rgba(16,40,59,0.12); border-radius: 20px; background: #faf5ec; }
.price-card.featured { background: var(--navy-deep); color: #f8f1e7; transform: translateY(-12px); box-shadow: 0 24px 45px rgba(7,28,45,0.18); }
.popular-label { position: absolute; top: 20px; right: 18px; padding: 7px 9px; border-radius: 99px; background: var(--gold); color: var(--navy-deep); font-size: 8px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em; }
.price-label { margin: 0; font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: 0.11em; }
.price { margin: 46px 0 36px; }
.price strong, .price span { display: block; }
.price strong { font-family: var(--serif); font-size: 52px; font-weight: 500; letter-spacing: -0.05em; }
.price span { margin-top: 5px; color: #77828a; font-size: 11px; }
.featured .price span { color: #aebbc3; }
.price-card ul { padding: 0; margin: 0 0 38px; list-style: none; }
.price-card li { display: flex; gap: 9px; padding: 8px 0; color: #66747c; font-size: 12px; }
.featured li { color: #adbbc4; }
.price-card li span { color: var(--coral); font-weight: 900; }
.price-card > a { margin-top: auto; display: flex; justify-content: space-between; align-items: center; padding-top: 18px; border-top: 1px solid rgba(16,40,59,0.14); font-size: 12px; font-weight: 850; }
.featured > a { border-color: rgba(255,255,255,0.15); }
.price-card > a svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.pricing-footnote { margin: 26px 0 0; color: #7b858b; font-size: 10px; }

.training-section { overflow: hidden; background: var(--navy-deep); color: #f8f1e7; }
.training-inner { min-height: 700px; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 100px; align-items: center; padding-top: 100px; padding-bottom: 100px; }
.training-visual { position: relative; min-height: 470px; border-radius: 250px 250px 34px 34px; background: #173a4f; overflow: hidden; }
.training-visual::after { content: ""; position: absolute; inset: 55px 55px -120px; border: 44px solid var(--gold); border-radius: 50%; opacity: 0.95; }
.training-visual > div { position: absolute; z-index: 2; inset: 50% auto auto 50%; width: 145px; height: 145px; display: grid; place-items: center; border-radius: 50%; background: var(--cream); color: var(--navy); font-size: 35px; font-weight: 900; transform: translate(-50%, -50%) rotate(-7deg); }
.training-visual > span { position: absolute; z-index: 3; padding: 10px 15px; border-radius: 999px; color: var(--navy-deep); font-family: var(--serif); font-size: 20px; font-style: italic; }
.training-visual > span:nth-child(1) { left: 10%; top: 21%; background: var(--mint); transform: rotate(-8deg); }
.training-visual > span:nth-child(2) { right: 8%; top: 36%; background: #e6a18f; transform: rotate(8deg); }
.training-visual > span:nth-child(3) { left: 18%; bottom: 16%; background: var(--gold); transform: rotate(5deg); }
.training-copy h2 { font-size: clamp(52px, 5.5vw, 80px); }
.training-copy > p:not(.eyebrow) { max-width: 570px; margin: 35px 0; color: #afbdc5; line-height: 1.75; }
.training-details { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 38px 0; padding: 25px 0; border-top: 1px solid rgba(255,255,255,0.13); border-bottom: 1px solid rgba(255,255,255,0.13); }
.training-details span { color: #9eafb9; font-size: 10px; line-height: 1.5; text-transform: uppercase; letter-spacing: 0.08em; }
.training-details strong { display: block; margin-bottom: 3px; color: white; font-size: 13px; text-transform: none; letter-spacing: 0; }

.faq-section { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 100px; padding-top: 140px; padding-bottom: 140px; }
.faq-heading h2 { font-size: clamp(52px, 5.2vw, 76px); }
.faq-heading > p:last-child { max-width: 420px; margin: 35px 0 0; color: var(--muted); line-height: 1.7; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 92px; display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 13px; cursor: pointer; list-style: none; font-family: var(--serif); font-size: 22px; font-weight: 600; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary > span { color: var(--coral); font-family: var(--sans); font-size: 10px; font-weight: 850; }
.faq-list summary i { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line); font-family: var(--sans); font-size: 19px; font-style: normal; font-weight: 400; transition: transform 180ms ease; }
.faq-list details[open] summary i { transform: rotate(45deg); }
.faq-list details > p { margin: -7px 46px 28px 55px; color: var(--muted); font-size: 14px; line-height: 1.75; }

.contact-section { color: #f7f0e5; background: var(--navy); }
.contact-inner { min-height: 830px; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 90px; align-items: center; padding-top: 105px; padding-bottom: 105px; }
.contact-copy h2 { font-size: clamp(50px, 5.4vw, 80px); }
.contact-copy > p:not(.eyebrow) { max-width: 520px; margin: 32px 0; color: #aebcc5; font-size: 15px; line-height: 1.75; }
.contact-details { display: grid; gap: 18px; margin-top: 48px; }
.contact-details p { margin: 0; color: #e9eef0; font-size: 14px; line-height: 1.55; }
.contact-details p > span { display: block; margin-bottom: 3px; color: #8498a5; font-size: 9px; text-transform: uppercase; letter-spacing: 0.12em; }
.contact-details a { border-bottom: 1px solid rgba(255,255,255,0.35); }
.email-card { padding: clamp(30px, 4vw, 54px); border-radius: 25px; background: #f8f2e8; color: var(--navy-deep); }
.email-card > p:first-child { margin: 0 0 28px; color: #6b777f; font-size: 14px; }
.email-link { display: block; width: max-content; max-width: 100%; margin-bottom: 42px; font-family: var(--serif); font-size: clamp(30px, 3.5vw, 53px); line-height: 1.05; letter-spacing: -0.04em; }
.email-link span { display: block; }
.email-link:hover { color: var(--coral); }
.button-gold { border: 0; cursor: pointer; background: var(--gold); color: var(--navy-deep); }
.email-note { margin: 20px 0 0; color: #879198; font-size: 11px; line-height: 1.5; }

.site-footer { padding: 72px max(24px, calc((100vw - 1320px) / 2)) 28px; background: #f9f3e8; }
.footer-brand { margin-bottom: 25px; }
.footer-brand img { width: 230px; }
.site-footer > p { max-width: 520px; color: var(--muted); line-height: 1.7; }
.footer-contact { display: flex; flex-wrap: wrap; gap: 16px 30px; margin: 40px 0 75px; font-size: clamp(19px, 2.4vw, 31px); font-family: var(--serif); }
.footer-contact a { border-bottom: 1px solid var(--line); }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; gap: 15px; border-top: 1px solid var(--line); color: #788188; font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-cta { display: none; }
  .menu-button { justify-self: end; width: 46px; height: 46px; display: grid; place-content: center; gap: 6px; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,250,241,0.7); }
  .menu-button span { width: 19px; height: 2px; background: var(--navy); transition: transform 180ms ease; }
  .mobile-nav { position: absolute; display: grid; top: 78px; left: 24px; right: 24px; padding: 18px; border-radius: 18px; background: var(--navy-deep); color: white; box-shadow: 0 16px 40px rgba(6,21,32,0.25); }
  .mobile-nav a { padding: 13px 10px; border-bottom: 1px solid rgba(255,255,255,0.12); font-weight: 700; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { padding: 135px 24px 54px; }
  .hero-visual { min-height: 500px; }
  .hero-visual::before { inset: 0 0 auto; width: 100%; height: 20%; background: linear-gradient(180deg, var(--cream), rgba(246,240,229,0)); }
  .proof-strip { grid-template-columns: 1fr 1fr; padding: 0 24px; }
  .proof-strip p, .proof-strip p:first-child { border: 1px solid var(--line); border-top: 0; }
  .split-heading, .method-inner { grid-template-columns: 1fr; }
  .method-inner { gap: 70px; }
  .moments-copy { grid-template-columns: 1fr 1fr; }
  .moments-copy .eyebrow { grid-column: 1 / -1; }
  .moments-copy > p:last-child { align-self: end; }
  .language-grid { grid-template-columns: 1fr 1fr; }
  .about-section, .training-inner, .faq-section, .contact-inner { grid-template-columns: 1fr; }
  .team-panel { max-width: 720px; }
  .pricing-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .price-card.featured { transform: none; }
  .training-visual { max-width: 660px; width: 100%; justify-self: center; }
  .contact-inner { gap: 60px; }
}

@media (max-width: 650px) {
  .site-header { min-height: 88px; padding: 10px 18px; }
  .brand img { width: 170px; }
  .mobile-nav { left: 18px; right: 18px; }
  .hero-copy { padding-left: 20px; padding-right: 20px; }
  .hero h1 { font-size: clamp(56px, 18vw, 78px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 17px; }
  .hero-visual { min-height: 470px; }
  .hero-visual img { object-position: 50% 39%; }
  .hero-caption { left: 18px; bottom: 20px; }
  .hero-badge { width: 102px; right: 18px; top: 54px; }
  .hero-badge strong { font-size: 18px; }
  .proof-strip { grid-template-columns: 1fr 1fr; padding: 0; }
  .proof-strip p { padding: 20px 15px; }
  .section { width: min(100% - 36px, 1320px); }
  .courses, .moments { padding-top: 92px; padding-bottom: 98px; }
  .split-heading, .moments-copy { grid-template-columns: 1fr; gap: 28px; }
  .section-heading h2, .moments-copy h2 { font-size: 48px; }
  .language-grid { grid-template-columns: 1fr; margin-top: 42px; }
  .language-card { min-height: 200px; }
  .language-card.language-wide { grid-column: auto; min-height: 200px; }
  .method-inner { padding-top: 88px; padding-bottom: 88px; }
  .method-intro h2 { font-size: 55px; }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar { min-height: 210px; }
  .pillar h3 { margin-top: 38px; }
  .photo-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; margin-right: -18px; padding-right: 18px; }
  .photo-grid figure, .photo-grid .photo-main { min-width: 84vw; height: 370px; scroll-snap-align: start; }
  .testimonial-inner { padding-top: 65px; padding-bottom: 65px; }
  .testimonial-topline { align-items: flex-start; gap: 20px; }
  .testimonial-topline .eyebrow { max-width: 180px; }
  .carousel-controls button { width: 42px; height: 42px; }
  .testimonial { margin-top: 58px; }
  .testimonial blockquote { min-height: 470px; font-size: 27px; }
  .quote-mark { left: -5px; top: -50px; font-size: 110px; }
  .about-section { gap: 65px; padding-top: 95px; padding-bottom: 95px; }
  .about-story h2 { font-size: 52px; }
  .about-bilingual { margin-top: 34px; }
  .about-language.english { padding-left: 18px; }
  .about-facts { gap: 22px; justify-content: space-between; }
  .about-facts strong { font-size: 28px; }
  .team-panel { padding: 25px 20px; }
  .teacher-avatar { width: 52px; height: 52px; }
  .pricing-section { padding-top: 92px; padding-bottom: 90px; }
  .pricing-heading .first-class-note { justify-self: start; }
  .pricing-grid { grid-template-columns: 1fr; margin-top: 45px; }
  .price-card { min-height: 365px; }
  .training-inner { min-height: auto; gap: 65px; padding-top: 85px; padding-bottom: 85px; }
  .training-visual { min-height: 390px; }
  .training-copy h2 { font-size: 50px; }
  .training-details { grid-template-columns: 1fr; }
  .faq-section { gap: 55px; padding-top: 95px; padding-bottom: 95px; }
  .faq-heading h2 { font-size: 50px; }
  .faq-list summary { min-height: 85px; grid-template-columns: 28px 1fr auto; font-size: 19px; }
  .faq-list details > p { margin-left: 41px; margin-right: 38px; }
  .contact-inner { min-height: auto; gap: 55px; padding-top: 90px; padding-bottom: 90px; }
  .contact-copy h2 { font-size: 50px; }
  .email-card { padding: 28px 22px; }
  .email-card .button { width: 100%; }
  .site-footer { padding: 58px 20px 25px; }
  .footer-contact { flex-direction: column; margin-bottom: 55px; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
