/* ===========================================================
   MKHP Academy — Stylesheet
   Smooth, premium badminton academy landing page
   Palette: Deep Navy · Cream · Emerald · Saffron · Gold
   Type:    Fraunces (display) · Inter (body)
   =========================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand */
  --navy:       #0f3a5f;
  --navy-2:     #0a2b48;
  --navy-3:     #061e36;
  --cream:      #faf6ef;
  --cream-2:    #f1ead9;
  --paper:      #ffffff;
  --line:       rgba(15, 58, 95, 0.12);

  --emerald:    #0f8a5f;
  --emerald-d:  #0a6849;
  --saffron:    #e85a1f;
  --saffron-d:  #c44912;
  --gold:       #d4a23a;
  --gold-2:     #b8862a;

  --text:       #14283e;
  --text-2:     #4d5b73;
  --muted:      #8693ad;

  --radius-sm:  10px;
  --radius:     18px;
  --radius-lg:  28px;

  --shadow-sm:  0 4px 16px rgba(15, 58, 95, 0.08);
  --shadow-md:  0 14px 40px rgba(15, 58, 95, 0.10);
  --shadow-lg:  0 30px 80px rgba(15, 58, 95, 0.18);

  --container:  1240px;
  --nav-h:      78px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; }

.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }

/* ============================ TYPOGRAPHY ============================ */
em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--saffron);
}

/* ============================ EYEBROW ============================ */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--emerald-d);
  padding: 6px 14px;
  background: rgba(15, 138, 95, 0.10);
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow--light { color: var(--gold); background: rgba(212, 162, 58, 0.18); }

/* ============================ SECTION COMMON ============================ */
.section {
  padding: clamp(70px, 9vw, 120px) 0;
  position: relative;
}
.section__head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.section__head--light h2,
.section__head--light em { color: #f1ead9; }
.section__head--light .section__sub { color: rgba(241, 234, 217, 0.7); }

.section__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.5px;
  color: var(--navy);
  margin: 8px 0 12px;
}
.section__sub {
  color: var(--text-2);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-top: 10px;
}

/* ============================ BUTTONS ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn--primary:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(232, 90, 31, 0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--ghost:hover { background: var(--navy); color: #fff; }
.btn--cream {
  background: var(--cream);
  color: var(--navy);
  border-color: var(--cream);
}
.btn--cream:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-2px); }
.btn--block { width: 100%; }

/* ============================ NAVBAR ============================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}
.nav.is-scrolled { box-shadow: var(--shadow-sm); }
.nav__inner {
  display: flex;
  align-items: center;
  gap: 22px;
  height: var(--nav-h);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__logo {
  height: 50px;
  width: 50px;
  border-radius: 10px;
  background: var(--navy);
  object-fit: contain;
  padding: 6px;
}
.nav__brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav__brand-text strong {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: var(--navy);
}
.nav__brand-text small {
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-top: 3px;
}
.nav__menu {
  display: flex;
  gap: 2px;
  margin-left: auto;
}
.nav__menu a {
  padding: 10px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 999px;
  transition: 0.2s;
}
.nav__menu a:hover,
.nav__menu a.is-active {
  color: var(--navy);
  background: rgba(15, 58, 95, 0.07);
}
.nav__cta { margin-left: 8px; }

.nav__burger {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
}
.nav__burger span {
  position: absolute;
  inset-inline: 12px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: 0.3s ease;
}
.nav__burger span:nth-child(1) { top: 16px; }
.nav__burger span:nth-child(2) { top: 21px; }
.nav__burger span:nth-child(3) { top: 26px; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* ============================ HERO ============================ */
.hero {
  padding: clamp(60px, 8vw, 100px) 0 clamp(70px, 9vw, 110px);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -150px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 138, 95, 0.10), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -150px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 90, 31, 0.08), transparent 60%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--emerald-d);
  padding: 8px 16px;
  background: rgba(15, 138, 95, 0.08);
  border: 1px solid rgba(15, 138, 95, 0.25);
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -1.5px;
  color: var(--navy);
  margin-bottom: 22px;
}
.hero__title em {
  font-weight: 500;
  font-style: italic;
}

.hero__lead {
  font-size: 1.08rem;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 12px;
}
.hero__sub {
  font-size: 0.95rem;
  color: var(--emerald-d);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero__stats strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.hero__stats span {
  font-size: 0.82rem;
  color: var(--text-2);
  display: block;
  margin-top: 4px;
  line-height: 1.3;
}

/* Hero visual */
.hero__visual {
  position: relative;
}
.hero__photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--paper);
}
.hero__chip {
  position: absolute;
  bottom: -20px;
  left: -10px;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: left;
  border: 4px solid var(--paper);
}
.hero__chip span {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 600;
}
.hero__chip small {
  display: block;
  font-size: 0.78rem;
  color: var(--navy-2);
  font-weight: 600;
  margin-top: 3px;
  letter-spacing: 0.5px;
}

/* ============================ TRUST ============================ */
.trust {
  padding: 40px 0;
  background: var(--paper);
  border-block: 1px solid var(--line);
}
.trust__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.trust__title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--muted);
  font-weight: 600;
}
.trust__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px 56px;
  width: 100%;
}
.trust__items > div {
  text-align: center;
  min-width: 130px;
}
.trust__items strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.trust__items span {
  font-size: 0.8rem;
  color: var(--text-2);
  letter-spacing: 0.3px;
}

/* ============================ PATHWAY ============================ */
.pathway {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--paper);
}
.pathway__poster {
  margin: 0 auto 80px;
  max-width: 1200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  background: var(--cream);
}
.pathway__poster img {
  width: 100%;
  height: auto;
  display: block;
}

/* 3 Tiers */
.pathway__tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.tier {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tier:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tier--hi { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.tier.tier--hi h3 { color: #ffffff; }
.tier--hi .tier__sub { color: var(--gold); }
.tier--hi p { color: rgba(250, 246, 239, 0.85); }

.tier__num {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-d));
  color: #fff;
  display: grid;
  place-items: center;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.3rem;
}
.tier--hi .tier__num { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: var(--navy); }

.tier h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.tier__sub {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--emerald-d);
  margin-bottom: 12px;
}
.tier p { font-size: 0.95rem; line-height: 1.65; }

.pathway__goal {
  text-align: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 500;
  color: var(--navy);
  max-width: 720px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

/* Four Dimensions */
.dims {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
}
.dims__head {
  text-align: center;
  margin-bottom: 36px;
}
.dims__head h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.dims__head p {
  color: var(--text-2);
  font-size: 0.95rem;
}
.dims__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 36px;
}
.dim {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  text-align: left;
  transition: 0.25s ease;
}
.dim:hover { border-color: var(--emerald); transform: translateY(-3px); }
.dim__icon {
  display: inline-grid;
  place-items: center;
  width: 48px; height: 48px;
  background: rgba(15, 138, 95, 0.12);
  color: var(--emerald-d);
  border-radius: 12px;
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.dim h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.dim p { font-size: 0.9rem; color: var(--text-2); line-height: 1.55; }
.dims__goal {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-2);
  padding-top: 24px;
  border-top: 1px dashed var(--line);
}
.dims__goal em {
  display: block;
  margin-top: 6px;
  font-size: 1.05rem;
  color: var(--saffron);
}

/* ============================ FOUNDERS ============================ */
.founders {
  background: var(--cream);
  padding: clamp(70px, 9vw, 110px) 0;
}
.founders__grid {
  display: grid;
  gap: 60px;
  max-width: 1080px;
  margin: 0 auto;
}
.founder {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 50px;
  align-items: flex-start;
}
.founder--reverse { grid-template-columns: 1fr 360px; }
.founder--reverse .founder__media { order: 2; }
.founder--reverse .founder__body { order: 1; }

.founder__media {
  position: relative;
}
.founder__media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center right;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.founder__role {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--emerald-d);
  margin-bottom: 8px;
}
.founder h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}
.founder__sub {
  font-size: 0.95rem;
  color: var(--saffron);
  font-weight: 600;
  margin-bottom: 18px;
}
.founder p {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 16px;
}
.founder__sub2 {
  font-style: italic;
  color: var(--navy) !important;
  font-weight: 500;
}
.founder__quote {
  margin: 24px 0;
  padding: 22px 26px;
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.55;
  position: relative;
}
.founder__quote cite {
  display: block;
  margin-top: 10px;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 500;
}

/* ============================ COACHING TEAM ============================ */
.coaching {
  padding: clamp(70px, 9vw, 110px) 0;
  background: var(--paper);
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}
.team__card {
  padding: 36px 28px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: 0.3s ease;
  text-align: left;
}
.team__card:hover { transform: translateY(-4px); border-color: var(--emerald); box-shadow: var(--shadow-md); }
.team__role {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--emerald-d);
  background: rgba(15, 138, 95, 0.10);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.team__card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.team__card p { color: var(--text-2); font-size: 0.95rem; line-height: 1.6; }

.team__motto {
  text-align: center;
  padding: 40px 24px;
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius-lg);
}
.team__motto p strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 10px;
}
.team__motto p:not(:first-child) {
  color: rgba(250, 246, 239, 0.85);
  font-size: 1rem;
  max-width: 580px;
  margin: 0 auto;
}

/* ============================ RESULTS ============================ */
.results {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.results::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 138, 95, 0.18), transparent 70%);
  pointer-events: none;
}
.results::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 90, 31, 0.16), transparent 70%);
  pointer-events: none;
}
.results__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
  z-index: 1;
}
.result {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(241, 234, 217, 0.15);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  transition: 0.3s ease;
}
.result:hover { background: rgba(255, 255, 255, 0.10); transform: translateY(-4px); }
.result--feature {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.result__media {
  height: 320px;
  overflow: hidden;
  position: relative;
}
.result__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}
.result--feature:hover .result__media img { transform: scale(1.04); }
.result__body { padding: 30px 32px; }
.result__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.result h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
}
.result__meta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}
.result p { color: rgba(250, 246, 239, 0.78); font-size: 0.95rem; line-height: 1.6; }

.result--stat {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--navy-2);
  flex-direction: column;
  gap: 8px;
}
.result--stat strong {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.result--stat span {
  font-size: 0.82rem;
  color: rgba(250, 246, 239, 0.8);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* ============================ GLOBAL EXPERIENCE ============================ */
.global {
  padding: clamp(70px, 9vw, 110px) 0;
  background: var(--paper);
}
.global__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.global__media {
  position: relative;
}
.global__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.global__chip {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--gold);
  color: var(--navy);
  padding: 12px 22px;
  border-radius: var(--radius);
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}
.global__content p {
  color: var(--text-2);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 14px;
}
.global__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.global__list li {
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
}
.global__list li::before {
  content: '✦';
  position: absolute;
  left: 0; top: 0;
  color: var(--emerald);
  font-size: 1.1rem;
}

/* ============================ DIFFERENTIATORS ============================ */
.diff {
  padding: clamp(70px, 9vw, 110px) 0;
  background: var(--cream);
}
.diff__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.diff__card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: 0.25s ease;
  position: relative;
}
.diff__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--saffron));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: 0.25s;
}
.diff__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.diff__card:hover::before { opacity: 1; }
.diff__card h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.diff__card p { color: var(--text-2); font-size: 0.95rem; line-height: 1.6; }

/* ============================ LOCATIONS ============================ */
.locations {
  padding: clamp(70px, 9vw, 110px) 0;
  background: var(--paper);
}
.locations__grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}
.locations__grid li {
  padding: 22px 14px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  transition: 0.25s ease;
}
.locations__grid li:hover {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
  transform: translateY(-3px);
}
.locations__cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.locations__note {
  color: var(--text-2);
  font-size: 0.95rem;
  font-style: italic;
}

/* ============================ REVIEWS ============================ */
.reviews {
  padding: clamp(70px, 9vw, 110px) 0;
  background: var(--cream);
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}
.reviews__grid figure {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: 0.25s ease;
}
.reviews__grid figure:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--emerald);
}
.reviews__grid figure img {
  width: 100%;
  height: auto;
  display: block;
  background: var(--cream-2);
}
.reviews__cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================ HIGHLIGHTS / MOMENTS ============================ */
.highlights {
  padding: clamp(70px, 9vw, 110px) 0;
  background: var(--cream);
}
.highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.highlight {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--navy);
  aspect-ratio: 4 / 5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.highlight:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.highlight img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.highlight:hover img { transform: scale(1.05); }
.highlight__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px 24px;
  background: linear-gradient(0deg, rgba(6, 30, 54, 0.95), transparent);
  color: var(--cream);
}
.highlight__caption span {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.highlight__caption h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.25;
}

@media (max-width: 1100px) {
  .highlights__grid { grid-template-columns: repeat(2, 1fr); }
  .highlight:last-child { grid-column: span 2; }
}
@media (max-width: 560px) {
  .highlights__grid { grid-template-columns: 1fr; gap: 18px; }
  .highlight:last-child { grid-column: span 1; }
}

/* ============================ CTA STRIP ============================ */
.cta {
  padding: 80px 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(15, 138, 95, 0.20), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(232, 90, 31, 0.18), transparent 50%),
    var(--navy);
  color: var(--cream);
}
.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 6px;
}
.cta p { color: rgba(250, 246, 239, 0.78); max-width: 520px; }

/* ============================ CONTACT ============================ */
.contact {
  padding: clamp(70px, 9vw, 110px) 0;
  background: var(--paper);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}
.contact .section__title { text-align: left; }
.lead { color: var(--text-2); font-size: 1.05rem; line-height: 1.7; margin-bottom: 14px; }

.contact__list {
  list-style: none;
  display: grid;
  gap: 18px;
  margin: 24px 0 32px;
}
.contact__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.contact__icon {
  font-size: 1.4rem;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  background: rgba(15, 138, 95, 0.12);
  border-radius: 12px;
  flex-shrink: 0;
}
.contact__list strong {
  display: block;
  color: var(--navy);
  margin-bottom: 4px;
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 600;
}
.contact__list p { color: var(--text-2); font-size: 0.9rem; line-height: 1.55; }
.contact__list a:hover { color: var(--saffron); }

.socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.socials a {
  padding: 10px 18px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  transition: 0.2s;
}
.socials a:hover {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}

.contact__form {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact__form h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.contact__form-sub {
  color: var(--text-2);
  font-size: 0.92rem;
  margin-bottom: 22px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact__form label {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}
.contact__form label span {
  font-size: 0.85rem;
  color: var(--text-2);
  font-weight: 500;
}
.contact__form input,
.contact__form select,
.contact__form textarea {
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  transition: 0.2s ease;
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(232, 90, 31, 0.15);
}
.contact__form textarea { resize: vertical; min-height: 110px; }
.form__note {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
}
.form__note.is-success { color: var(--emerald-d); font-weight: 600; }

/* ============================ FOOTER ============================ */
.footer {
  padding: 70px 0 28px;
  background: var(--navy-3);
  color: var(--cream);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(250, 246, 239, 0.12);
}
.footer__brand .footer__logo {
  width: 80px;
  height: 80px;
  border-radius: 14px;
  background: var(--paper);
  padding: 10px;
  margin-bottom: 16px;
}
.footer__brand p { color: rgba(250, 246, 239, 0.78); font-size: 0.92rem; line-height: 1.7; }
.footer__brand p strong {
  display: block;
  color: var(--gold);
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.footer__col h5 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer__col ul {
  list-style: none;
  display: grid;
  gap: 10px;
}
.footer__col ul a {
  color: rgba(250, 246, 239, 0.78);
  font-size: 0.92rem;
  transition: 0.2s;
}
.footer__col ul a:hover { color: var(--gold); padding-left: 4px; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.85rem;
  color: rgba(250, 246, 239, 0.55);
  flex-wrap: wrap;
  gap: 10px;
}

/* ============================ FAB WHATSAPP ============================ */
.fab-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
  z-index: 50;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 10px 50px rgba(37, 211, 102, 0.7); }
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 1100px) {
  .hero__grid,
  .founders .founder,
  .founders .founder--reverse,
  .global__grid,
  .contact__grid { grid-template-columns: 1fr; gap: 50px; }
  .founder--reverse .founder__media { order: 0; }
  .founder--reverse .founder__body { order: 0; }
  .founder__media img { height: 380px; }
  .pathway__tiers,
  .team__grid,
  .diff__grid { grid-template-columns: 1fr 1fr; }
  .dims__grid { grid-template-columns: repeat(2, 1fr); }
  .locations__grid { grid-template-columns: repeat(4, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  :root { --nav-h: 68px; }
  .nav__menu {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    background: var(--cream);
    backdrop-filter: blur(14px);
    flex-direction: column;
    padding: 20px 24px 30px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
  }
  .nav__menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__menu a { padding: 14px 18px; font-size: 1rem; }
  .nav__burger { display: block; margin-left: auto; }
  .nav__cta { display: none; }
  .nav__brand-text small { display: none; }
  .nav__logo { height: 44px; width: 44px; }

  .hero__title { font-size: clamp(2.4rem, 8vw, 3.4rem); }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .hero__chip { bottom: -16px; left: 12px; padding: 12px 18px; }
  .trust__items { gap: 24px 36px; }

  .pathway__tiers,
  .team__grid,
  .diff__grid,
  .dims__grid { grid-template-columns: 1fr; }
  .results__grid { grid-template-columns: 1fr; }
  .result--feature { grid-column: span 1; grid-row: auto; }
  .result--feature .result__media { height: 260px; }
  .locations__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .cta__inner { flex-direction: column; text-align: center; }

  .contact__form { padding: 28px; }
  .form__row { grid-template-columns: 1fr; }
  .dims { padding: 30px 22px; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 24px, var(--container)); }
  .hero__cta .btn { flex: 1; }
  .fab-whatsapp { width: 50px; height: 50px; right: 16px; bottom: 16px; font-size: 1.3rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}