/* =========================================================
   NLP Practitioner Mumbai – Hypnotherapy Pvt Ltd
   Design system + global styles
   ========================================================= */

:root {
  /* Brand palette – calm, therapeutic, premium */
  --lavender-50:  #f7f4fb;
  --lavender-100: #ede5f6;
  --lavender-200: #d9c8eb;
  --lavender-300: #b89cd9;
  --lavender-500: #7d5bbd;
  --lavender-700: #4a2f86;
  --lavender-900: #2a1a52;

  --blue-50:  #f1f6fc;
  --blue-100: #e2edf8;
  --blue-300: #a8c4e8;
  --blue-500: #6a8fc4;

  --gold-300: #e6c98a;
  --gold-500: #c8a14a;
  --gold-600: #a8842f;

  --grey-50:  #fafafa;
  --grey-100: #f3f3f5;
  --grey-200: #e6e6ec;
  --grey-300: #cfcfd6;
  --grey-500: #8a8a96;
  --grey-700: #4d4d57;
  --grey-900: #1c1c24;

  --white: #ffffff;
  --ink:   #20203a;

  /* Gradients */
  --grad-hero: radial-gradient(120% 90% at 80% 0%, #efe6fb 0%, #e6eef9 50%, #ffffff 90%);
  --grad-soft: linear-gradient(135deg, #f7f4fb 0%, #f1f6fc 100%);
  --grad-cta:  linear-gradient(135deg, #4a2f86 0%, #7d5bbd 60%, #a8c4e8 130%);
  --grad-gold: linear-gradient(135deg, #c8a14a 0%, #e6c98a 100%);

  /* Type */
  --font-heading: 'Playfair Display', 'Lora', Georgia, serif;
  --font-body:    'Inter', 'DM Sans', system-ui, -apple-system, Segoe UI, sans-serif;

  /* Spacing & sizing */
  --container: 1240px;
  --radius-sm: 10px;
  --radius:    18px;
  --radius-lg: 28px;
  --shadow-sm: 0 6px 18px rgba(42, 26, 82, 0.06);
  --shadow:    0 18px 40px rgba(42, 26, 82, 0.10);
  --shadow-lg: 0 30px 70px rgba(42, 26, 82, 0.15);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }

a { color: var(--lavender-700); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--gold-600); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--lavender-900);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0 0 .6em;
}

h1 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
p  { margin: 0 0 1em; color: var(--grey-700); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--lavender-700);
  padding: 6px 14px;
  border: 1px solid var(--lavender-200);
  border-radius: 999px;
  background: var(--lavender-50);
  margin-bottom: 18px;
}

.eyebrow.gold { color: var(--gold-600); border-color: rgba(200, 161, 74, 0.3); background: rgba(230, 201, 138, 0.12); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: clamp(70px, 9vw, 130px) 0; position: relative; }
.section-tight { padding: clamp(50px, 7vw, 90px) 0; }

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 70px);
  text-align: center;
}
.section-head p { font-size: 1.05rem; }

.text-center { text-align: center; }
.flex { display: flex; }
.grid { display: grid; gap: 24px; }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
  white-space: nowrap;
}
.btn .arr { transition: transform .35s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

.btn-primary {
  background: var(--grad-cta);
  color: #fff;
  box-shadow: 0 14px 30px rgba(74, 47, 134, 0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 40px rgba(74, 47, 134, 0.36); color: #fff; }

.btn-ghost {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  color: var(--lavender-900);
  border-color: var(--lavender-200);
}
.btn-ghost:hover { background: #fff; border-color: var(--lavender-500); color: var(--lavender-900); }

.btn-gold {
  background: var(--grad-gold);
  color: #2c1f00;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(168, 132, 47, 0.3); }

.btn-outline {
  background: transparent;
  color: var(--lavender-900);
  border-color: var(--lavender-300);
}
.btn-outline:hover { background: var(--lavender-50); }

/* ============== NAV ============== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
  background: transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 6px 30px rgba(42, 26, 82, 0.08);
  padding: 12px 0;
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: nowrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--lavender-900);
}
.brand-mark {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--grad-cta);
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  box-shadow: 0 8px 18px rgba(74, 47, 134, 0.3);
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-text strong {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--lavender-900);
}
.brand-text span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-500);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2px;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.nav-links a {
  display: block;
  padding: 8px 11px;
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 500;
  border-radius: 8px;
  position: relative;
  white-space: nowrap;
  transition: color .25s var(--ease), background .25s var(--ease);
}
.nav-links a:hover { color: var(--lavender-700); background: var(--lavender-50); }
.nav-links a.active { color: var(--lavender-700); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 11px; right: 11px; bottom: 4px;
  height: 2px;
  background: var(--grad-gold);
  border-radius: 2px;
}

.nav-cta { padding: 9px 16px; font-size: 12.5px; flex-shrink: 0; }
.brand { flex-shrink: 0; }

.hamburger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--lavender-200);
  background: rgba(255,255,255,0.6);
  border-radius: 12px;
  cursor: pointer;
  position: relative;
}
.hamburger span {
  position: absolute;
  left: 12px; right: 12px;
  height: 2px;
  background: var(--lavender-900);
  border-radius: 2px;
  transition: all .3s var(--ease);
}
.hamburger span:nth-child(1) { top: 15px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 27px; }
.hamburger.open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.nav .container { max-width: 1320px; }

@media (max-width: 1180px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, #fff 0%, #f7f4fb 100%);
  z-index: 99;
  padding: 100px 30px 40px;
  transform: translateX(100%);
  transition: transform .45s var(--ease);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul {
  list-style: none;
  padding: 0; margin: 0 0 30px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu a {
  display: block;
  padding: 14px 16px;
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--lavender-900);
  border-bottom: 1px solid var(--lavender-100);
}
.mobile-menu a:hover { color: var(--gold-600); }

/* ============== HERO ============== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
  isolation: isolate;
  background: var(--grad-hero);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(30% 30% at 15% 30%, rgba(184, 156, 217, 0.35), transparent 70%),
    radial-gradient(30% 30% at 85% 70%, rgba(168, 196, 232, 0.4), transparent 70%);
  z-index: -1;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text h1 {
  margin-top: 14px;
}
.hero-text h1 .accent {
  display: block;
  background: linear-gradient(135deg, var(--lavender-700) 0%, var(--gold-500) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--grey-700);
  max-width: 520px;
  margin-bottom: 30px;
}
.hero-meta {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  font-size: 13px;
  color: var(--lavender-700);
  font-weight: 500;
  margin-bottom: 20px;
}
.hero-meta .dot { width: 4px; height: 4px; background: var(--gold-500); border-radius: 50%; }

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 520px;
  margin-left: auto;
}
.hero-visual .frame {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-visual .frame-main {
  inset: 0;
  background: var(--lavender-100);
}
.hero-visual .frame-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.hero-visual .frame-badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  padding: 18px 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
}
.hero-visual .frame-badge .num {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  background: var(--grad-cta);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.hero-visual .frame-badge small {
  font-size: 12px;
  color: var(--grey-700);
  letter-spacing: .05em;
}

.hero-visual .floater {
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  font-size: 13px;
  color: var(--lavender-900);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}
.hero-visual .floater .pulse {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #4ec07d;
  box-shadow: 0 0 0 0 rgba(78, 192, 125, 0.5);
  animation: pulse 1.8s infinite;
}
.hero-visual .floater.top-right {
  top: 20px; right: -18px;
}
.hero-visual .floater.mid-left {
  top: 38%; left: -28px;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(78, 192, 125, 0.6); }
  70% { box-shadow: 0 0 0 14px rgba(78, 192, 125, 0); }
  100% { box-shadow: 0 0 0 0 rgba(78, 192, 125, 0); }
}

@media (max-width: 900px) {
  .hero { min-height: auto; padding: 120px 0 60px; }
  .hero .container { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { max-width: 100%; aspect-ratio: 4/5; }
}

/* Inner page hero (smaller) */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  background: var(--grad-hero);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 40% at 10% 30%, rgba(184, 156, 217, 0.35), transparent 70%),
    radial-gradient(40% 40% at 90% 70%, rgba(168, 196, 232, 0.4), transparent 70%);
}
.page-hero .container { position: relative; max-width: 880px; text-align: center; }
.page-hero h1 { margin-bottom: 18px; }
.page-hero p { font-size: 1.1rem; max-width: 640px; margin: 0 auto 28px; }
.page-hero nav.crumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--grey-500);
  margin-bottom: 20px;
}
.page-hero nav.crumbs span { color: var(--lavender-300); }

/* ============== BENEFITS STRIP ============== */
.benefits {
  background: linear-gradient(180deg, #fff 0%, var(--lavender-50) 100%);
  padding: 70px 0;
  border-top: 1px solid var(--grey-100);
  border-bottom: 1px solid var(--grey-100);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.benefit {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--lavender-100);
  border-radius: var(--radius);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.benefit:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--lavender-200);
}
.benefit .icon {
  width: 48px; height: 48px;
  background: var(--lavender-50);
  border-radius: 14px;
  display: grid; place-items: center;
  color: var(--lavender-700);
}
.benefit h4 { font-size: 1.1rem; margin: 0 0 4px; color: var(--lavender-900); }
.benefit p { margin: 0; font-size: 14px; }

@media (max-width: 900px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .benefits-grid { grid-template-columns: 1fr; } }

/* ============== ABOUT PREVIEW / SPLIT ============== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-img {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 1s var(--ease);
}
.split-img:hover img { transform: scale(1.04); }
.split-img.tall { aspect-ratio: 3/4; }
.split-img.wide { aspect-ratio: 4/3; }

.split-img .badge {
  position: absolute;
  top: 24px; left: 24px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--lavender-700);
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 40px; } }

.signature {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold-600);
  margin-top: 24px;
  display: inline-block;
  border-top: 1px solid var(--lavender-200);
  padding-top: 18px;
}

/* ============== SERVICE CARDS ============== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 980px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cards-grid { grid-template-columns: 1fr; } }

.svc-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
  isolation: isolate;
}
.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-soft);
  opacity: 0;
  transition: opacity .45s var(--ease);
  z-index: -1;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--lavender-200);
}
.svc-card:hover::before { opacity: 1; }
.svc-card .num {
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--gold-600);
  letter-spacing: .25em;
  margin-bottom: 18px;
  display: block;
}
.svc-card .icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: var(--lavender-50);
  color: var(--lavender-700);
  margin-bottom: 22px;
  transition: background .35s var(--ease), color .35s var(--ease);
}
.svc-card:hover .icon { background: var(--lavender-700); color: #fff; }
.svc-card h3 { margin-bottom: 12px; font-size: 1.35rem; }
.svc-card p  { margin-bottom: 20px; font-size: .98rem; }
.svc-card .more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 13px;
  color: var(--lavender-700);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.svc-card .more svg { transition: transform .3s var(--ease); }
.svc-card:hover .more svg { transform: translateX(4px); }

/* ============== TESTIMONIALS ============== */
.testimonials {
  background: linear-gradient(180deg, var(--lavender-50) 0%, #fff 100%);
}
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 980px) { .t-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px) { .t-grid { grid-template-columns: 1fr; } }

.t-card {
  background: #fff;
  border: 1px solid var(--lavender-100);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.t-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.t-card .quote {
  font-family: var(--font-heading);
  font-size: 60px;
  line-height: .8;
  color: var(--lavender-200);
}
.t-card p { font-size: 1rem; color: var(--ink); margin: 0; }
.t-card .stars {
  color: var(--gold-500);
  letter-spacing: 4px;
  font-size: 14px;
}
.t-author {
  display: flex; align-items: center; gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--grey-100);
}
.t-author .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-cta);
  display: grid; place-items: center;
  color: #fff;
  font-weight: 700;
  font-family: var(--font-heading);
}
.t-author .meta { display: flex; flex-direction: column; line-height: 1.2; }
.t-author strong { color: var(--lavender-900); font-size: 14px; }
.t-author span { color: var(--grey-500); font-size: 12px; }

/* ============== VIDEO SECTION ============== */
.video-section {
  background: linear-gradient(180deg, #fff 0%, var(--blue-50) 100%);
}
.video-wrap {
  position: relative;
  aspect-ratio: 16/9;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
}
.video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.video-wrap .play-overlay {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: linear-gradient(180deg, rgba(42, 26, 82, 0) 0%, rgba(42, 26, 82, 0.55) 100%);
  cursor: pointer;
  transition: opacity .4s var(--ease);
}
.video-wrap .play-overlay.hidden { opacity: 0; pointer-events: none; }
.video-wrap .play-btn {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: grid; place-items: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  transition: transform .35s var(--ease);
}
.video-wrap:hover .play-btn { transform: scale(1.08); }
.video-wrap .play-btn svg { color: var(--lavender-700); margin-left: 4px; }

/* ============== CTA BANNER ============== */
.cta-banner {
  background: var(--grad-cta);
  position: relative;
  overflow: hidden;
}
.cta-banner::before, .cta-banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .4;
  pointer-events: none;
}
.cta-banner::before {
  width: 400px; height: 400px;
  background: var(--gold-300);
  top: -100px; left: -100px;
}
.cta-banner::after {
  width: 500px; height: 500px;
  background: var(--blue-300);
  bottom: -200px; right: -150px;
}
.cta-banner .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: center;
}
.cta-banner h2 { color: #fff; margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.05rem; }
.cta-banner .actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-banner .btn-ghost { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.3); color: #fff; }
.cta-banner .btn-ghost:hover { background: rgba(255,255,255,0.28); color: #fff; }

@media (max-width: 800px) { .cta-banner .container { grid-template-columns: 1fr; } }

/* ============== FOOTER ============== */
.footer {
  background: linear-gradient(180deg, #15103a 0%, #2a1a52 100%);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 40% at 70% 30%, rgba(184, 156, 217, 0.18), transparent 70%);
  pointer-events: none;
}
.footer .container { position: relative; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-top { grid-template-columns: 1fr; gap: 36px; } }

.footer h5 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-family: var(--font-body);
  margin-bottom: 22px;
  font-weight: 600;
}
.footer .brand-mark { box-shadow: 0 8px 18px rgba(0,0,0,0.3); }
.footer .brand-text strong { color: #fff; }
.footer .brand-text span { color: var(--lavender-300); }
.footer p { color: rgba(255,255,255,0.65); margin: 18px 0 0; font-size: 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer ul a:hover { color: var(--gold-300); }
.footer .contact-block p { margin: 0 0 12px; font-size: 14px; }
.footer .contact-block a { color: rgba(255,255,255,0.85); }
.footer .contact-block a:hover { color: var(--gold-300); }

.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: grid; place-items: center;
  color: #fff;
  transition: all .3s var(--ease);
}
.socials a:hover { background: var(--gold-500); color: #fff; border-color: transparent; transform: translateY(-2px); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom a { color: var(--gold-300); }
.footer-bottom a:hover { color: #fff; }

/* ============== REVEAL ANIMATION ============== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-d2 { transition-delay: .1s; }
.reveal-d3 { transition-delay: .2s; }
.reveal-d4 { transition-delay: .3s; }

/* ============== MEDIA / GALLERY ============== */
.gallery {
  columns: 3;
  column-gap: 18px;
}
@media (max-width: 900px) { .gallery { columns: 2; } }
@media (max-width: 540px) { .gallery { columns: 1; } }

.gal-item {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  background: var(--lavender-100);
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.gal-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.gal-item img, .gal-item video {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .8s var(--ease);
}
.gal-item:hover img { transform: scale(1.04); }
.gal-item .label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 16px 14px;
  background: linear-gradient(180deg, transparent 0%, rgba(20,16,48,0.7) 100%);
  color: #fff;
  font-size: 13px;
  letter-spacing: .04em;
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.gal-item:hover .label { opacity: 1; transform: none; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 16, 48, 0.92);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img, .lightbox video {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox .close {
  position: absolute;
  top: 24px; right: 24px;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  cursor: pointer;
  font-size: 22px;
  display: grid; place-items: center;
  transition: all .25s var(--ease);
}
.lightbox .close:hover { background: rgba(255,255,255,0.2); transform: rotate(90deg); }

/* ============== CONTACT FORM ============== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.info-card {
  background: var(--grad-cta);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 42px 36px;
  position: relative;
  overflow: hidden;
}
.info-card::before {
  content: '';
  position: absolute;
  width: 240px; height: 240px;
  background: var(--gold-300);
  border-radius: 50%;
  filter: blur(70px);
  opacity: .35;
  bottom: -80px; right: -60px;
  pointer-events: none;
}
.info-card h3 { color: #fff; }
.info-card p, .info-card a { color: rgba(255,255,255,0.85); }
.info-card a:hover { color: var(--gold-300); }
.info-list { list-style: none; padding: 0; margin: 30px 0 0; display: flex; flex-direction: column; gap: 22px; position: relative; }
.info-list li { display: flex; align-items: flex-start; gap: 14px; }
.info-list .ic {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.15);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.info-list small {
  display: block;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}
.info-list strong { color: #fff; font-weight: 500; font-family: var(--font-body); font-size: 15px; }

form.contact-form {
  background: #fff;
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: 42px 36px;
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 22px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.field label {
  display: block;
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--lavender-700);
  font-weight: 600;
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--grey-50);
  transition: border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--lavender-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(125, 91, 189, 0.12);
}
.field textarea { resize: vertical; min-height: 130px; }

.form-success {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  background: #e8f7ee;
  border: 1px solid #b8e0c4;
  color: #176b34;
  border-radius: 12px;
  font-size: 14px;
}
.form-success.show { display: block; }

/* ============== TIMELINE / PROCESS ============== */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .timeline { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .timeline { grid-template-columns: 1fr; } }
.tl-step {
  position: relative;
  padding: 30px 26px;
  background: #fff;
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.tl-step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tl-step .step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad-cta);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
  box-shadow: 0 10px 22px rgba(74, 47, 134, 0.3);
}
.tl-step h4 { font-size: 1.15rem; margin-bottom: 8px; color: var(--lavender-900); }
.tl-step p { margin: 0; font-size: 14px; }

/* ============== LIST WITH CHECKMARKS ============== */
.check-list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 14px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--ink);
}
.check-list li::before {
  content: '';
  width: 20px; height: 20px;
  background: var(--grad-gold);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3'><polyline points='20 6 9 17 4 12'/></svg>") center/16px no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3'><polyline points='20 6 9 17 4 12'/></svg>") center/16px no-repeat;
  flex-shrink: 0;
  margin-top: 4px;
}

/* ============== FAQ / ACCORDION ============== */
.accordion { display: grid; gap: 14px; max-width: 820px; margin: 0 auto; }
.acc-item {
  background: #fff;
  border: 1px solid var(--grey-100);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.acc-item.open { border-color: var(--lavender-300); box-shadow: var(--shadow-sm); }
.acc-trig {
  width: 100%;
  padding: 22px 26px;
  background: transparent;
  border: 0;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--lavender-900);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.acc-trig::after {
  content: '+';
  font-size: 26px;
  font-family: var(--font-body);
  color: var(--lavender-500);
  transition: transform .3s var(--ease);
  font-weight: 300;
}
.acc-item.open .acc-trig::after { transform: rotate(45deg); }
.acc-body {
  padding: 0 26px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease), padding .4s var(--ease);
}
.acc-item.open .acc-body { padding: 0 26px 22px; max-height: 400px; }
.acc-body p { margin: 0; }

/* ============== STATS ============== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 800px) { .stats { grid-template-columns: 1fr 1fr; } }
.stat {
  text-align: center;
  padding: 20px;
}
.stat .n {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--lavender-700) 0%, var(--gold-500) 120%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.stat small { display: block; font-size: 13px; color: var(--grey-500); letter-spacing: .12em; text-transform: uppercase; margin-top: 8px; }

/* ============== BLOG GRID ============== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }
.post {
  background: #fff;
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  display: flex;
  flex-direction: column;
}
.post:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--lavender-100);
  position: relative;
}
.post-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.post:hover .post-thumb img { transform: scale(1.06); }
.post-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.post-meta {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lavender-500);
  margin-bottom: 12px;
}
.post-body h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.3;
}
.post-body p { font-size: 14px; flex: 1; }
.post-body .more {
  font-size: 13px;
  font-weight: 600;
  color: var(--lavender-700);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ============== PROGRAMS / SCHEDULE ============== */
.program-card {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 26px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  align-items: center;
  transition: box-shadow .4s var(--ease), transform .4s var(--ease), border-color .4s var(--ease);
}
.program-card:hover { box-shadow: var(--shadow); border-color: var(--lavender-200); transform: translateY(-2px); }
.program-card .meta-block {
  background: var(--lavender-50);
  padding: 22px;
  border-radius: 16px;
  text-align: center;
}
.program-card .meta-block .date {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--lavender-900);
  line-height: 1;
}
.program-card .meta-block .month {
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-top: 6px;
  display: block;
}
.program-card .meta-block .time {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  color: var(--grey-700);
}
.program-card h3 { margin-bottom: 8px; }
.program-card .tags { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.program-card .tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: 5px 12px;
  background: var(--blue-50);
  color: var(--blue-500);
  border-radius: 999px;
  font-weight: 600;
}
@media (max-width: 800px) {
  .program-card { grid-template-columns: 1fr; gap: 18px; }
  .program-card .actions { justify-self: start; }
}

.programs-stack { display: grid; gap: 20px; }

/* ============== CASE STUDIES ============== */
.case {
  background: #fff;
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  transition: box-shadow .45s var(--ease);
}
.case:hover { box-shadow: var(--shadow); }
.case .img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--lavender-100);
}
.case .img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 1s var(--ease);
}
.case:hover .img img { transform: scale(1.05); }
.case .body { padding: 36px 36px; display: flex; flex-direction: column; gap: 18px; }
.case .body h3 { margin: 0; font-size: 1.45rem; }
.case .ba {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--grey-100);
}
.case .ba .lab {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-bottom: 4px;
}
.case .ba strong { display: block; color: var(--lavender-900); font-size: 14px; line-height: 1.3; }
.case .ba .arrow { color: var(--gold-500); }
.case .ba .after strong { color: var(--gold-600); }
@media (max-width: 800px) { .case { grid-template-columns: 1fr; } .case .img { aspect-ratio: 16/10; } }

/* ============== UTIL ============== */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--grey-200), transparent);
  margin: 60px 0;
}
.text-soft { color: var(--grey-500); }
.bg-soft { background: var(--grad-soft); }
.bg-lavender { background: var(--lavender-50); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--blue-50);
  color: var(--blue-500);
  font-weight: 600;
}

/* Map placeholder */
.map-card {
  background: linear-gradient(135deg, var(--lavender-50) 0%, var(--blue-50) 100%);
  border: 1px solid var(--lavender-100);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.map-card .pin {
  width: 64px; height: 64px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--grad-cta);
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 10px 22px rgba(74, 47, 134, 0.3);
}
