/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ivory:    #F6F1E9;
  --ivory-2:  #ECE2D3;
  --stone:    #C9AF8F;
  --stone-2:  #A6845E;
  --clay:     #C08361;
  --espresso: #211A15;
  --espresso-2: #2A2119;
  --white:    #FFFFFF;
  --text:     #2E2620;
  --text-mid: #7A6B5D;
  --text-light: #A8988A;
  --gold:     #C9A063;

  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans:  'Inter', system-ui, sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-sans);
  background: var(--ivory);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone-2);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--espresso);
  margin-bottom: 24px;
}
.section-title em { font-style: italic; color: var(--text-mid); }

.section-desc {
  font-family: var(--ff-sans);
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 480px;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}
.section-header .section-desc { margin: 0 auto; }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  white-space: nowrap;
}

.btn-light {
  background: var(--white);
  color: var(--espresso);
  border-color: var(--white);
}
.btn-light:hover { background: transparent; color: var(--white); }

.btn-dark {
  background: var(--espresso);
  color: var(--white);
  border-color: var(--espresso);
}
.btn-dark:hover { background: transparent; color: var(--espresso); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); }

.btn-outline-dark {
  background: transparent;
  color: var(--espresso);
  border-color: var(--espresso);
}
.btn-outline-dark:hover { background: var(--espresso); color: var(--white); }

.btn-lg { padding: 20px 48px; font-size: 13px; }

/* ─── NAV ────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  transition: background 0.5s var(--ease-out), padding 0.4s var(--ease-out), backdrop-filter 0.5s;
}

.nav.scrolled {
  background: rgba(246, 241, 233, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 18px 48px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  transition: color 0.4s;
}
.nav.scrolled .nav-logo { color: var(--espresso); }

.nav-logo-svg { flex-shrink: 0; }

.nav-logo-text {
  font-family: var(--ff-serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
}
.nav.scrolled .nav-links a { color: var(--text-mid); }
.nav-links a:hover { color: var(--white); }
.nav.scrolled .nav-links a:hover { color: var(--espresso); }

.nav-cta {
  border: 1px solid rgba(255,255,255,0.5) !important;
  padding: 10px 24px !important;
  color: var(--white) !important;
  transition: all 0.3s !important;
}
.nav-cta:hover { background: rgba(255,255,255,0.12) !important; }
.nav.scrolled .nav-cta {
  border-color: var(--espresso) !important;
  color: var(--espresso) !important;
}
.nav.scrolled .nav-cta:hover { background: var(--espresso) !important; color: var(--white) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}
.nav.scrolled .nav-hamburger span { background: var(--espresso); }

/* ─── MOBILE MENU ──────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: var(--espresso);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 36px;
  text-align: center;
}

.mobile-link {
  font-family: var(--ff-serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.04em;
  transition: color 0.3s;
}
.mobile-link:hover { color: var(--stone); }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--espresso);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% 30%;
  transform: scale(1.05);
  transition: transform 8s var(--ease-out);
}
.hero-portrait.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,15,10,0.25) 0%,
    rgba(20,15,10,0.1) 35%,
    rgba(20,15,10,0.65) 78%,
    rgba(20,15,10,0.88) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px 150px;
  max-width: 760px;
}

.hero-eyebrow {
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
}

.hero-title-line {
  display: block;
  overflow: hidden;
}

.hero-title-italic {
  font-style: italic;
  font-weight: 300;
  color: var(--stone);
}

.hero-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 48px;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(20px);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}

.hero-brand-stamp {
  position: absolute;
  bottom: 100px;
  right: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}

.hero-scroll {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.7);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ─── MARQUEE ────────────────────────────────────────────────── */
.marquee-wrap {
  background: var(--espresso);
  overflow: hidden;
  padding: 18px 0;
}

.marquee-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 0 28px;
}
.marquee-track .sep {
  color: var(--gold);
  font-size: 8px;
  padding: 0 4px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── ABOUT ──────────────────────────────────────────────────── */
.about {
  padding: 140px 0;
  background: var(--ivory);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-img-col { position: relative; }

.about-img-frame {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% 60%;
  filter: grayscale(10%);
  transition: filter 0.6s;
}
.about-img-frame:hover .about-img { filter: grayscale(0%); }

.about-img-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 60%;
  height: 60%;
  border: 1px solid var(--stone);
  z-index: -1;
}

.about-text-col { padding-right: 20px; }

.about-body {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 20px;
}
.about-body strong { color: var(--espresso); font-weight: 500; }

.about-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 48px 0 36px;
  padding: 36px 0;
  border-top: 1px solid var(--ivory-2);
  border-bottom: 1px solid var(--ivory-2);
}

.stat { display: flex; flex-direction: column; gap: 6px; }

.stat-num, .stat-num-text {
  font-family: var(--ff-serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--espresso);
  line-height: 1;
}
.stat-num sup { font-size: 18px; vertical-align: super; }
.stat-num-text { font-style: italic; }

.stat-label {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--ivory-2);
  flex-shrink: 0;
}

.about-ig-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-mid);
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--stone);
  padding-bottom: 4px;
  transition: color 0.3s, border-color 0.3s;
}
.about-ig-link:hover { color: var(--espresso); border-color: var(--espresso); }

/* ─── SERVICES ───────────────────────────────────────────────── */
.services {
  padding: 140px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--ivory-2);
}

.service-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out);
}
.service-card:hover { transform: translateY(-4px); }

.service-card-media {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: var(--ivory);
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  transition: transform 0.7s var(--ease-out);
}
.service-card:hover .service-card-media img { transform: scale(1.06); }

.service-card-media--dark {
  background: var(--espresso-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201,160,99,0.45);
}

.service-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card-num {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  font-weight: 400;
}

.service-card-title {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 12px;
  line-height: 1.2;
}

.service-card-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 24px;
}

.service-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--espresso);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}
.service-link:hover { gap: 12px; }
.service-link span { transition: transform 0.3s; }
.service-link:hover span { transform: translateX(4px); }

/* ─── THERAPY AREAS ──────────────────────────────────────────── */
.areas {
  padding: 100px 0 140px;
  background: var(--white);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ivory-2);
  border: 1px solid var(--ivory-2);
}

.area-item {
  background: var(--ivory);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  transition: background 0.4s var(--ease-out);
}
.area-item:hover { background: var(--white); }

.area-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--stone);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone-2);
  flex-shrink: 0;
  transition: background 0.35s var(--ease-out), color 0.35s var(--ease-out);
}
.area-item:hover .area-icon { background: var(--espresso); color: var(--stone); border-color: var(--espresso); }

.area-item span {
  font-family: var(--ff-serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--espresso);
  line-height: 1.3;
}

/* ─── DIVIDER ────────────────────────────────────────────────── */
.full-divider {
  position: relative;
  height: 60vh;
  overflow: hidden;
}

.divider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 25% center;
  filter: grayscale(65%) brightness(0.55);
}

.divider-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20,15,10,0.35);
}

.divider-quote {
  font-family: var(--ff-serif);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  text-align: center;
  line-height: 1.25;
  letter-spacing: 0.02em;
}
.divider-quote em {
  display: block;
  font-weight: 300;
  color: var(--stone);
}

/* ─── PRICING ────────────────────────────────────────────────── */
.pricing {
  padding: 140px 0;
  background: var(--ivory);
}

.pricing-accordion {
  max-width: 800px;
  margin: 0 auto 60px;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.price-group {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.price-group-header {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: opacity 0.2s;
}
.price-group-header:hover { opacity: 0.7; }

.price-group-num {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.15em;
  font-weight: 400;
  min-width: 28px;
}

.price-group-name {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--espresso);
  flex: 1;
}

.price-toggle {
  color: var(--text-light);
  transition: transform 0.35s var(--ease-out);
  flex-shrink: 0;
}
.price-group-header[aria-expanded="true"] .price-toggle { transform: rotate(180deg); }

.price-group-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s var(--ease-out);
}
.price-group-body.open { max-height: 600px; }

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0 14px 48px;
  font-size: 14px;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.price-row:last-child { border-bottom: none; padding-bottom: 24px; }

.price {
  font-family: var(--ff-serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--espresso);
  white-space: nowrap;
}

.price--free {
  color: var(--stone-2);
  font-size: 15px;
}

.pricing-cta {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-note {
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

/* ─── TRUST ──────────────────────────────────────────────────── */
.trust {
  background: var(--espresso);
  padding: 100px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

.trust-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.trust-icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone);
  margin-bottom: 8px;
}

.trust-item h4 {
  font-family: var(--ff-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
}

.trust-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

/* ─── ACADEMY ────────────────────────────────────────────────── */
.academy {
  padding: 140px 0;
  background: var(--ivory);
}

.academy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.academy-body {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 36px;
}

.academy-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 44px;
}

.academy-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}
.academy-list li strong { color: var(--espresso); font-weight: 500; }

.academy-list-icon {
  color: var(--stone-2);
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 4px;
}

.academy-img-col { position: relative; }

.academy-img-frame {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.academy-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 40%;
}

.academy-img-badge {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.academy-img-badge span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
}

.academy-img-badge strong {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--espresso);
}

.academy-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 52%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 4px solid var(--ivory);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.academy-img-secondary img { object-position: center 55%; }

/* ─── CONTACT ────────────────────────────────────────────────── */
.contact-inner {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
}

.contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 15% center;
  filter: grayscale(25%) brightness(0.45);
}

.contact-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,15,10,0.7) 0%, rgba(33,26,21,0.6) 100%);
}

.contact-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 48px;
  max-width: 700px;
}

.contact-eyebrow { color: rgba(255,255,255,0.6) !important; }

.contact-title {
  font-family: var(--ff-serif);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.contact-title em { font-style: italic; color: var(--stone); }

.contact-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 56px;
  line-height: 1.7;
}

.contact-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.contact-details {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}
.contact-detail:hover { color: var(--white); }

.contact-detail-sep { opacity: 0.4; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--espresso-2);
  padding-top: 64px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
}

.footer-name {
  font-family: var(--ff-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.03em;
}

.footer-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--white); }

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}
.footer-social a:hover { color: var(--white); }

.footer-bottom {
  padding: 24px 48px;
  text-align: center;
}
.footer-bottom p {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.08em;
}

/* ─── ANIMATION CLASSES ──────────────────────────────────────── */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .about-grid, .academy-grid { gap: 60px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .services-grid { grid-template-columns: 1fr; gap: 2px; }
  .service-card-media { aspect-ratio: 16/9; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .academy-img-secondary { display: none; }
}

@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content { padding: 0 24px 80px; }
  .hero-brand-stamp { display: none; }
  .hero-scroll { display: none; }

  .container { padding: 0 24px; }
  .about, .services, .academy, .pricing, .areas { padding: 80px 0; }

  .about-grid, .academy-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-img-accent { display: none; }
  .about-img-frame { aspect-ratio: 4/3; }

  .trust-grid { grid-template-columns: 1fr 1fr; gap: 28px; }

  .contact-content { padding: 80px 24px; }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .footer-bottom { padding: 24px; }
  .academy-img-frame { aspect-ratio: 4/3; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 48px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .trust-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; gap: 20px; }
  .stat-divider { width: 48px; height: 1px; }
  .contact-actions { flex-direction: column; align-items: center; }
  .footer-links { display: none; }
}
