/*
Theme Name:        ALIGN Yoga
Theme URI:         https://align-kataifi-83cfe2.netlify.app/
Author:            Prashant (ALIGN)
Author URI:        https://align-kataifi-83cfe2.netlify.app/
Description:       A custom WordPress theme for ALIGN — India's most structured yoga system. Converted from the V7 static build (teal + orange design system, Fraunces + Manrope, single-page marketing layout with carousels).
Version:           1.0.0
Requires at least: 6.0
Tested up to:      6.5
Requires PHP:      7.4
License:           GNU General Public License v2 or later
License URI:       https://www.gnu.org/licenses/gpl-2.0.html
Text Domain:       align
Tags:              custom-theme, yoga, one-page, landing-page, full-width-template
*/

/* ============================================================
   ALIGN CSS — copied verbatim from the V7 build (between the
   <style>…</style> tags of v7align-homepage.html). All custom
   properties, component styles, and media queries are below.
   ============================================================ */

/* ═══════════════════════════════════════════════════════════
   ALIGN — V6 DESIGN SYSTEM
   Teal green (#215a5c) + Bright orange (#ff671f) + Warm cream
   Fraunces (display) + Manrope (body)
   ═══════════════════════════════════════════════════════════ */
:root {
  --green-deep: #215a5c;
  --green-dark: #163e40;
  --green-mid: #2d7679;
  --orange: #ff671f;
  --orange-hover: #e5541a;
  --orange-soft: #ff8647;
  --cream: #f5f1ea;
  --cream-warm: #ede6d8;
  --stone: #e3ddd0;
  --ink: #1a1a1a;
  --ink-soft: #5a5653;
  --line: rgba(26, 26, 26, 0.1);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', -apple-system, sans-serif;
  --section-pad: clamp(4rem, 10vw, 8rem);
  --container: 1240px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 3rem); }
.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-variation-settings: "opsz" 144;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}
.eyebrow--light { color: var(--cream); }
.eyebrow--sanskrit {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: 0.95rem;
  color: var(--cream);
}

/* ═══ 01. ANNOUNCEMENT BAR ═══ */
.announcement {
  background: var(--green-deep);
  color: var(--cream);
  font-size: 0.85rem;
  padding: 0.65rem 1.5rem;
  text-align: center;
  letter-spacing: 0.02em;
}
.announcement a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  margin-left: 0.35rem;
}

/* ═══ 02. NAVIGATION ═══ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 241, 234, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem clamp(1.5rem, 4vw, 3rem);
  gap: 2rem;
}
.logo {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--green-deep);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo__mark {
  width: 32px;
  height: 32px;
  background: var(--green-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 1rem;
  font-weight: 600;
}
.nav__links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav__links a {
  color: var(--green-deep);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--orange); }
.nav__cta {
  background: var(--orange);
  color: var(--cream);
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.nav__cta:hover { background: var(--orange-hover); transform: translateY(-1px); }

@media (max-width: 960px) { 
  .nav__links { 
    display: none; 
  } 
}

/* ═══ REUSABLE BUTTONS ═══ */
.btn-primary {
  background: var(--orange);
  color: var(--cream);
  padding: 1.05rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}
.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 103, 31, 0.32);
}
.btn-primary .arrow { transition: transform 0.2s; }
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-outline {
  color: var(--ink);
  border: 1.5px solid var(--ink);
  padding: 1.05rem 1.8rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s;
  background: transparent;
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.btn-outline--light { color: var(--cream); border-color: var(--cream); }
.btn-outline--light:hover { background: var(--cream); color: var(--green-deep); }

/* ═══ CAROUSEL — reusable pattern for Hero, Pain, Founder ═══ */
.carousel { position: relative; }
.carousel__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  min-width: 0;
}
.carousel__dots {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.carousel__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(26, 26, 26, 0.25);
  cursor: pointer;
  padding: 0;
  transition: all 0.25s;
}
.carousel__dot.is-active {
  background: var(--orange);
  transform: scale(1.25);
}
.carousel__dot:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
.carousel__dots--light .carousel__dot { background: rgba(245, 241, 234, 0.3); }
.carousel__dots--light .carousel__dot.is-active { background: var(--orange); }

/* ═══ 03. HERO CAROUSEL ═══ */
.hero {
  position: relative;
  background: var(--green-deep);
  padding: 0 0 3.5rem;
}
.hero__carousel { position: relative; }
.hero__slide {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(22, 62, 64, 0.88) 0%, rgba(22, 62, 64, 0.55) 55%, rgba(22, 62, 64, 0.15) 100%);
  z-index: 2;
}
.hero__slide-inner {
  position: relative;
  z-index: 3;
  max-width: var(--container);
  margin: 0 auto;
  padding: 5rem clamp(1.5rem, 4vw, 3rem) 4rem;
  width: 100%;
}
.hero__eyebrow {
  color: var(--orange);
  margin-bottom: 1.5rem;
}
.hero__headline {
  color: var(--cream);
  font-size: clamp(2.25rem, 6.2vw, 4.8rem);
  max-width: 900px;
  margin-bottom: 1.5rem;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.hero__headline em {
  font-style: italic;
  color: var(--orange);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.hero__sub {
  color: rgba(245, 241, 234, 0.85);
  font-size: 1.1rem;
  max-width: 640px;
  line-height: 1.55;
}
/* Hero slide 2 — philosophy */
.hero__sankalpa {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.8vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  font-style: italic;
  max-width: 820px;
  margin-bottom: 1.5rem;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.hero__ctas {
  max-width: var(--container);
  margin: 2rem auto 0;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.hero .carousel__dots { margin-top: 1.75rem; }

/* ═══ 04. MAT & INTERNET STRIP ═══ */
.mat-strip {
  padding: 3rem clamp(1.5rem, 4vw, 3rem);
  background: var(--cream);
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.mat-strip__lead {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 1.85rem);
  color: var(--green-deep);
  letter-spacing: -0.01em;
  max-width: 900px;
  margin: 0 auto 1.75rem;
  font-weight: 400;
}
.mat-strip__lead em {
  color: var(--orange);
  font-style: italic;
}
.mat-strip__pills {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.mat-pill {
  background: var(--stone);
  color: var(--green-deep);
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.mat-pill svg { width: 16px; height: 16px; color: var(--orange); }

/* ═══ 05. PAIN CAROUSEL ═══ */
.pain {
  background: var(--ink);
  color: var(--cream);
  padding: 4.5rem clamp(1.5rem, 4vw, 3rem);
}
.pain__track { max-width: 900px; margin: 0 auto; }
.pain__slide {
  text-align: center;
  padding: 0.5rem 0;
}
.pain__text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.3vw, 2.25rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.pain__text em, .pain__text strong {
  color: var(--orange);
  font-weight: 500;
  font-style: italic;
}

/* ═══ SECTION HEAD (reusable) ═══ */
.section-head { text-align: center; margin-bottom: 3.5rem; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--green-deep);
  max-width: 820px;
  margin: 1rem auto 0;
  font-variation-settings: "opsz" 144;
}
.section-head h2 em { font-style: italic; color: var(--orange); }

/* ═══ 06. MEMBERSHIPS ═══ */
.memberships { padding: var(--section-pad) 0; background: var(--cream); }
.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}
@media (max-width: 980px) { .membership-grid { grid-template-columns: 1fr; max-width: 500px; } }
.mcard {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--line);
  position: relative;
}
.mcard:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(33, 90, 92, 0.1); }
.mcard--highlight {
  border: 2px solid var(--orange);
  transform: scale(1.02);
}
.mcard--highlight:hover { transform: scale(1.02) translateY(-4px); }
.mcard__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--orange);
  color: white;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 3;
}
.mcard__media {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.mcard__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mcard__body { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
.mcard__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--green-deep);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.mcard__desc {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex: 1;
  line-height: 1.55;
}
.mcard__price {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--green-deep);
  margin-bottom: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
}
.mcard__price-unit {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-weight: 400;
  margin-left: 0.35rem;
}
.mcard__cta {
  background: var(--orange);
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  text-align: center;
  transition: background 0.2s;
  margin-bottom: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.mcard__cta:hover { background: var(--orange-hover); }
.mcard__gift {
  color: var(--green-deep);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  align-self: center;
  transition: color 0.2s, border-color 0.2s;
}
.mcard__gift:hover { color: var(--orange); border-color: var(--orange); }

/* ═══ 07. PROMISE LINE ═══ */
.promise {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg, #215a5c 0%, #163e40 100%);
  overflow: hidden;
}
.promise__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(255, 103, 31, 0.25), transparent 55%),
    radial-gradient(circle at 75% 60%, rgba(255, 103, 31, 0.15), transparent 50%);
}
.promise__text {
  position: relative;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.75rem, 4.5vw, 3.2rem);
  color: var(--cream);
  text-align: center;
  max-width: 900px;
  line-height: 1.2;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.promise__text::before,
.promise__text::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: var(--orange);
  margin: 0 auto;
  opacity: 0.6;
}
.promise__text::before { margin-bottom: 1.75rem; }
.promise__text::after { margin-top: 1.75rem; }
.promise__text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-style: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.55);
  margin-top: 1.25rem;
  font-weight: 500;
}

/* ═══ 08. POWER OF 5 ═══ */
.power5 {
  padding: var(--section-pad) 0;
  background: var(--cream-warm);
}
.power5__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) { .power5__grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.power5__head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green-deep);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 1rem 0 0;
  font-variation-settings: "opsz" 144;
}
.power5__head h2 em { color: var(--orange); font-style: italic; }
.power5__list { list-style: none; }
.power5__item {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(26, 26, 26, 0.12);
}
.power5__item:last-child { border-bottom: 1px solid rgba(26, 26, 26, 0.12); }
.power5__num {
  font-family: var(--font-display);
  font-size: 3.25rem;
  font-weight: 300;
  color: var(--orange);
  line-height: 0.9;
  font-variation-settings: "opsz" 144;
}
.power5__item-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--green-deep);
  margin-bottom: 0.25rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.power5__item-desc { color: var(--ink-soft); font-size: 0.95rem; }
.power5__footer {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 2rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--green-deep);
}

/* ═══ 09. ALIGN METHOD — PILLARS ═══ */
.method { padding: var(--section-pad) 0; background: var(--cream); }
.method__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: var(--container);
  margin: 0 auto;
}
@media (max-width: 1100px) { .method__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .method__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .method__grid { grid-template-columns: 1fr; } }
.pillar {
  padding: 2.25rem 1.75rem;
  border-right: 1px solid var(--line);
  transition: background 0.3s;
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: var(--cream-warm); }
@media (max-width: 1100px) { .pillar { border-bottom: 1px solid var(--line); } }
.pillar__num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--orange);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  display: block;
}
.pillar__icon {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--green-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--green-deep);
}
.pillar__icon svg { width: 18px; height: 18px; }
.pillar__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--green-deep);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
  font-weight: 500;
}
.pillar__desc { color: var(--ink-soft); font-size: 0.9rem; line-height: 1.5; }
.method__link {
  text-align: center;
  margin-top: 2.5rem;
}
.method__link a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--orange);
  padding-bottom: 2px;
}

/* ═══ 09b. FIVE DISCIPLINES ═══ */
.disciplines { padding: var(--section-pad) 0; background: var(--cream-warm); }
.disciplines__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}
@media (max-width: 1100px) { .disciplines__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px) { .disciplines__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .disciplines__grid { grid-template-columns: 1fr; } }
.dcard {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  transition: transform 0.3s, box-shadow 0.3s;
}
.dcard:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(33, 90, 92, 0.08); }
.dcard__media { aspect-ratio: 3/4; position: relative; overflow: hidden; }
.dcard__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dcard__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.65) 100%);
  z-index: 1;
  pointer-events: none;
}
.dcard__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--cream);
  color: var(--green-deep);
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 2;
}
.dcard__title {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.2rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 1.6vw, 1.75rem);
  color: var(--cream);
  line-height: 1.08;
  z-index: 2;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}
.dcard__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.dcard__desc { color: var(--ink); font-size: 0.92rem; line-height: 1.5; margin-bottom: 1.25rem; flex: 1; }
.dcard__meta { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 1.1rem; }
.dcard__pill {
  background: var(--stone);
  color: var(--green-deep);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
}
.dcard__cta {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  align-self: flex-start;
}

/* ═══ 10. THE FIVE — conversion section ═══ */
.the-five {
  padding: var(--section-pad) 0;
  background: var(--green-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.the-five__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(255, 103, 31, 0.2), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(255, 103, 31, 0.15), transparent 50%);
  pointer-events: none;
  background-size: cover;
}
.the-five__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4.5rem;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}
@media (max-width: 960px) { .the-five__grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.the-five__visual {
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
.the-five__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.the-five__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 62, 64, 0.15) 0%, rgba(22, 62, 64, 0.7) 100%);
}
.the-five__visual-label {
  position: absolute;
  bottom: 1.75rem;
  left: 1.75rem;
  right: 1.75rem;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-style: italic;
  color: var(--cream);
  z-index: 2;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.the-five h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 1.1rem 0 1.1rem;
  font-variation-settings: "opsz" 144;
}
.the-five h2 em { font-style: italic; color: var(--orange); }
.the-five > .the-five__grid > .the-five__content > p {
  color: rgba(245, 241, 234, 0.78);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
  max-width: 520px;
}
.five-facts { list-style: none; margin-bottom: 2rem; }
.five-facts li {
  padding: 0.95rem 0;
  border-top: 1px solid rgba(245, 241, 234, 0.12);
  font-size: 1rem;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 1rem;
  align-items: baseline;
  line-height: 1.5;
}
.five-facts li:last-child { border-bottom: 1px solid rgba(245, 241, 234, 0.12); }
.five-facts__num {
  font-family: var(--font-display);
  color: var(--orange);
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}
.the-five__price {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(245, 241, 234, 0.15);
}
.the-five__price .amount {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 500;
  color: var(--cream);
}
.the-five__price .per { color: rgba(245, 241, 234, 0.6); font-size: 0.9rem; }
.the-five__trust {
  color: rgba(245, 241, 234, 0.55);
  font-size: 0.85rem;
  margin-top: 1rem;
  line-height: 1.5;
}

/* ═══ 11. BEFORE YOUR FIRST CLASS ═══ */
.before {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.before__card {
  max-width: 980px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  position: relative;
}
.before__card::before {
  content: "";
  position: absolute;
  top: 2.5rem;
  bottom: 2.5rem;
  left: 50%;
  width: 1px;
  background: var(--orange);
  opacity: 0.35;
}
@media (max-width: 780px) {
  .before__card { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }
  .before__card::before { top: auto; bottom: auto; left: 2rem; right: 2rem; width: auto; height: 1px; position: relative; margin: 0; }
}
.before__col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.before__list { list-style: none; }
.before__list li {
  padding: 0.55rem 0 0.55rem 1.5rem;
  position: relative;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.45;
}
.before__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 600;
}

/* ═══ 12. LIVE TIMETABLE ═══ */
.timetable { padding: var(--section-pad) 0; background: var(--cream-warm); }
.timetable__head { text-align: center; margin-bottom: 2.5rem; }
.timetable__sub {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-top: 0.5rem;
}
.timetable__wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  overflow-x: auto;
}
.tt-grid {
  display: grid;
  grid-template-columns: 110px repeat(6, 1fr);
  min-width: 720px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.tt-cell {
  padding: 0.85rem 0.7rem;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  font-size: 0.8rem;
  min-height: 70px;
}
.tt-cell:last-child, .tt-cell:nth-child(7n) { border-right: none; }
.tt-head {
  background: var(--green-deep);
  color: var(--cream);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  text-align: center;
  padding: 0.9rem 0.5rem;
}
.tt-time {
  font-family: var(--font-display);
  color: var(--green-deep);
  background: var(--cream);
  font-size: 0.82rem;
  font-style: italic;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}
.tt-class { color: var(--ink); }
.tt-class__name { font-weight: 600; color: var(--green-deep); font-size: 0.85rem; margin-bottom: 0.15rem; }
.tt-class__tag { color: var(--ink-soft); font-size: 0.72rem; }
.tt-empty {
  background:
    repeating-linear-gradient(
      135deg,
      transparent,
      transparent 8px,
      rgba(33, 90, 92, 0.06) 8px,
      rgba(33, 90, 92, 0.06) 9px
    );
}
.timetable__foot {
  max-width: 720px;
  margin: 1.5rem auto 0;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-style: italic;
}
.placeholder-note {
  display: inline-block;
  background: rgba(255, 103, 31, 0.12);
  color: var(--orange-hover);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: 0.75rem;
  font-style: normal;
}

/* ═══ 13. TESTIMONIALS ═══ */
.testimonials { padding: var(--section-pad) 0; background: var(--cream); }
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}
@media (max-width: 900px) { .test-grid { grid-template-columns: 1fr; } }
.quote {
  background: white;
  padding: 2.25rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.quote__mark {
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: var(--orange);
  line-height: 0.5;
  margin-bottom: 1rem;
  font-style: italic;
  opacity: 0.3;
}
.quote__text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--green-deep);
  flex: 1;
  margin-bottom: 1.75rem;
  font-weight: 400;
}
.quote__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.quote__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--green-mid));
  flex-shrink: 0;
}
.quote__name { font-weight: 600; color: var(--green-deep); font-size: 0.95rem; }
.quote__detail { color: var(--ink-soft); font-size: 0.8rem; margin-top: 2px; }

/* ═══ 14. COMMUNITY STRIP ═══ */
.community {
  padding: 4rem 0;
  background: var(--cream-warm);
}
.community__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 780px) {
  .community__inner { grid-template-columns: 1fr; text-align: center; }
}
.community h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--green-deep);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0.75rem 0 0.75rem;
}
.community p { color: var(--ink-soft); font-size: 0.98rem; line-height: 1.55; max-width: 560px; }
@media (max-width: 780px) { .community p { margin: 0 auto; } }
.community__channels {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 780px) { .community__channels { justify-content: center; } }
.channel {
  background: white;
  color: var(--green-deep);
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s;
}
.channel:hover { color: var(--orange); border-color: var(--orange); transform: translateY(-2px); }

/* ═══ 15. TWO WAYS TO PRACTISE ═══ */
.two-ways { padding: var(--section-pad) 0; background: var(--cream); }
.two-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  max-width: 1000px;
  margin: 3rem auto 1.25rem;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}
@media (max-width: 780px) { .two-grid { grid-template-columns: 1fr; max-width: 520px; } }
.tway {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
}
.tway:hover { transform: translateY(-4px); }
.tway__media {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
}
.tway__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tway__body { padding: 1.75rem; }
.tway__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--green-deep);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.tway__desc { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 1.25rem; line-height: 1.5; }
.tway__link {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}
.two-ways__note {
  max-width: 720px;
  margin: 1.75rem auto 0;
  text-align: center;
  font-style: italic;
  color: var(--ink-soft);
  font-size: 0.9rem;
  padding: 0 1.5rem;
}

/* ═══ 16. FOUNDER CAROUSEL ═══ */
.founder {
  padding: var(--section-pad) 0;
  background: var(--cream-warm);
}
.founder__slide {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}
.founder__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) { .founder__grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.founder__portrait {
  aspect-ratio: 4/5;
  border-radius: 24px;
  background: var(--stone);
  position: relative;
  overflow: hidden;
}
.founder__portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.founder h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--green-deep);
  margin: 1.1rem 0 1.3rem;
  font-variation-settings: "opsz" 144;
}
.founder h2 em { font-style: italic; color: var(--orange); }
.founder__quote, .founder__bio {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 1.1rem;
  max-width: 540px;
}
.founder__quote { font-family: var(--font-display); font-style: italic; color: var(--green-deep); font-size: 1.15rem; }
.founder__creds {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.75rem 0;
}
.cred {
  background: var(--stone);
  color: var(--green-deep);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
}
.founder__link {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--orange);
  padding-bottom: 2px;
}

/* ═══ 17. TEAM ═══ */
.team { padding: var(--section-pad) 0; background: var(--cream); }
.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 3rem auto 2rem;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}
@media (max-width: 860px) { .team__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .team__grid { grid-template-columns: 1fr; max-width: 300px; } }
.tm {
  text-align: center;
}
.tm__photo {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  background: var(--stone);
  margin-bottom: 1rem;
  max-width: 180px;
  margin-left: auto;
  margin-right: auto;
}
.tm__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.tm__name {
  font-family: var(--font-display);
  color: var(--green-deep);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.15rem;
}
.tm__role { color: var(--ink-soft); font-size: 0.85rem; }
.team__link {
  text-align: center;
  margin-top: 0.5rem;
}
.team__link a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--orange);
  padding-bottom: 2px;
}

/* ═══ 18. BOOKS ═══ */
.books { padding: var(--section-pad) 0; background: var(--stone); }
.books__head { text-align: center; margin-bottom: 3.5rem; }
.books__head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green-deep);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-top: 1rem;
  font-variation-settings: "opsz" 144;
}
.books__head h2 em { color: var(--orange); font-style: italic; }
.books__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}
@media (max-width: 640px) { .books__grid { grid-template-columns: 1fr; max-width: 340px; } }
.book { text-align: center; }
.book__cover {
  aspect-ratio: 3/4;
  border-radius: 8px;
  margin-bottom: 1.25rem;
  box-shadow: 0 20px 40px rgba(33, 90, 92, 0.18), 0 6px 15px rgba(33, 90, 92, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.75rem 1.35rem;
  transition: transform 0.3s;
  position: relative;
  overflow: hidden;
}
.book__cover:hover { transform: translateY(-6px); }
.book__cover--1 { background: linear-gradient(160deg, #215a5c 0%, #163e40 100%); }
.book__cover--2 { background: linear-gradient(160deg, #ff671f 0%, #e5541a 100%); }
.book__cover-author {
  font-family: var(--font-body);
  color: rgba(245, 241, 234, 0.7);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: left;
}
.book__cover-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cream);
  font-style: italic;
  text-align: left;
  line-height: 1.1;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.book__title { font-family: var(--font-display); font-size: 1.2rem; color: var(--green-deep); font-weight: 500; }
.book__year { color: var(--ink-soft); font-size: 0.85rem; }

/* ═══ 19. TEACHER TRAINING BANNER ═══ */
.tt-banner {
  padding: var(--section-pad) 0;
  background: var(--green-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.tt-banner__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 100%, rgba(255, 103, 31, 0.25), transparent 55%),
    radial-gradient(ellipse at 90% 0%, rgba(45, 118, 121, 0.5), transparent 55%);
}
.tt-banner__inner { position: relative; max-width: 780px; margin: 0 auto; padding: 0 1.5rem; }
.tt-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 1rem 0 1.25rem;
  font-variation-settings: "opsz" 144;
}
.tt-banner h2 em { font-style: italic; color: var(--orange); }
.tt-banner p { color: rgba(245, 241, 234, 0.75); font-size: 1.05rem; margin-bottom: 2.25rem; max-width: 540px; margin-inline: auto; }

/* ═══ 20. MINI FAQ ═══ */
.faq { padding: var(--section-pad) 0; background: var(--cream); }
.faq__wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}
.faq__item {
  border-top: 1px solid var(--line);
  padding: 0.25rem 0;
}
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.4rem 2.5rem 1.4rem 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--green-deep);
  font-weight: 500;
  letter-spacing: -0.01em;
  position: relative;
  line-height: 1.35;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 1.25rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--orange);
  transition: transform 0.2s;
  font-weight: 300;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__answer {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.6;
  padding: 0 0 1.5rem;
  max-width: 620px;
}
.faq__foot { text-align: center; margin-top: 2rem; }
.faq__foot a { color: var(--orange); text-decoration: none; font-weight: 600; border-bottom: 1px solid var(--orange); padding-bottom: 2px; }

/* ═══ 21. NEWSLETTER ═══ */
.newsletter { padding: var(--section-pad) 0; background: var(--cream-warm); text-align: center; }
.newsletter__inner { max-width: 640px; margin: 0 auto; padding: 0 1.5rem; }
.newsletter h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.4vw, 2.4rem);
  font-weight: 400;
  color: var(--green-deep);
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 144;
}
.newsletter h2 em { color: var(--orange); font-style: italic; }
.newsletter p { color: var(--ink-soft); margin-bottom: 2rem; font-size: 1rem; }
.newsletter__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  max-width: 560px;
  margin: 0 auto;
}
.newsletter__form .newsletter__btn { grid-column: 1 / -1; }
@media (max-width: 500px) { .newsletter__form { grid-template-columns: 1fr; } }
.newsletter__input {
  padding: 0.95rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: white;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}
.newsletter__input:focus { border-color: var(--orange); }
.newsletter__btn {
  width: 100%;
  justify-content: center;
}

/* ═══ 22. FOOTER ═══ */
footer { background: var(--green-deep); color: var(--cream); padding: 5rem 0 2rem; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: var(--container);
  margin: 0 auto 3rem;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}
@media (max-width: 800px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 500px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__tagline { color: rgba(245, 241, 234, 0.6); font-size: 0.95rem; line-height: 1.55; max-width: 300px; }
.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.25rem;
}
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 0.7rem; }
.footer__col a { color: rgba(245, 241, 234, 0.75); text-decoration: none; font-size: 0.95rem; transition: color 0.2s; }
.footer__col a:hover { color: var(--cream); }
.footer__bottom {
  border-top: 1px solid rgba(245, 241, 234, 0.1);
  padding: 2rem clamp(1.5rem, 4vw, 3rem) 0;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(245, 241, 234, 0.5);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__social { display: flex; gap: 1.25rem; }
.footer__social a { color: rgba(245, 241, 234, 0.6); text-decoration: none; transition: color 0.2s; }
.footer__social a:hover { color: var(--orange); }

/* ═══ MOBILE STICKY CTA ═══ */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.9rem 1rem;
  background: rgba(245, 241, 234, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  z-index: 50;
}
.mobile-cta .btn-primary { width: 100%; justify-content: center; }
@media (max-width: 700px) { .mobile-cta { display: block; } footer { padding-bottom: 6rem; } }

/* ═══ MOTION ═══ */
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.hero__eyebrow, .hero__headline, .hero__sub, .hero__sankalpa { animation: rise 0.9s ease-out backwards; }
.hero__headline, .hero__sankalpa { animation-delay: 0.1s; }
.hero__sub { animation-delay: 0.25s; }

/* ===== LOGO SIZE FIX ===== */
.custom-logo {
  height: 50px !important;
  width: auto !important;
}

.custom-logo-link img {
  max-height: 50px !important;
}

/* =====WHITE LOGO ===== */
.nav .custom-logo {
  filter: none !important;
}