/* ═══════════════════════════════════════════════════════
   GURUKUL GUIDANCE — Design System
   Spiritual + Modern Hybrid · Light Mode · Premium
   ═══════════════════════════════════════════════════════ */

/* ── Google Fonts ─────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Design Tokens ────────────────────────────────────── */
:root {
  /* Colours */
  --cream:        #FDF8F0;
  --cream-dark:   #F5EDD8;
  --cream-mid:    #F9F3E7;
  --white:        #FFFFFF;
  --gold:         #C49A28;
  --gold-light:   #E4B84A;
  --gold-dark:    #9C7A1A;
  --saffron:      #E07B2A;
  --saffron-light:#F0935A;
  --maroon:       #8B2020;
  --text-primary: #1C1009;
  --text-dark:    #2D1B0E;
  --text-medium:  #5C3D2E;
  --text-light:   #8C6E5D;
  --border:       #E2D0B8;
  --border-light: #EFE5D4;
  --shadow-sm:    0 2px 8px rgba(28,16,9,.07);
  --shadow-md:    0 8px 32px rgba(28,16,9,.10);
  --shadow-lg:    0 20px 60px rgba(28,16,9,.13);

  /* Spacing */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  40px;
  --space-2xl: 64px;
  --space-3xl: 96px;

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  /* Border Radius */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full:9999px;

  /* Transitions */
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring:cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration:   240ms;
  --duration-slow:400ms;

  /* Layout */
  --max-w:      1200px;
  --nav-h:      72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  font-weight: 600;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { color: var(--text-medium); }

/* ── Layout Utilities ─────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

@media (max-width: 768px) { .container { padding: 0 var(--space-lg); } }
@media (max-width: 480px) { .container { padding: 0 var(--space-md); } }

.section {
  padding: var(--space-3xl) 0;
}

.section--alt { background: var(--cream-mid); }
.section--white { background: var(--white); }
.section--cream-dark { background: var(--cream-dark); }

.text-center { text-align: center; }

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(196,154,40,.1);
  border: 1px solid rgba(196,154,40,.3);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.section-title {
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-medium);
  max-width: 620px;
  margin-bottom: var(--space-xl);
}

.section-header {
  margin-bottom: var(--space-2xl);
}

.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto var(--space-xl); }

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  border: none;
  white-space: nowrap;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--saffron) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(196,154,40,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196,154,40,.45);
}

.btn-outline {
  background: transparent;
  color: var(--gold-dark);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,.15);
  color: var(--text-dark);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--gold) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(224,123,42,.35);
}
.btn-whatsapp:hover {
  background: linear-gradient(135deg, var(--saffron-light) 0%, var(--gold-light) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(224,123,42,.45);
}

/* ── Navigation ───────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(253,248,240,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all var(--duration) var(--ease);
}

.navbar.scrolled {
  border-bottom-color: var(--border-light);
  box-shadow: var(--shadow-sm);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.navbar__logo img {
  height: 44px;
  width: auto;
}

.navbar__logo-text {
  display: flex;
  flex-direction: column;
}

.navbar__logo-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
}

/* ── Nav Dropdown ──────────────────────────────────────── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-medium);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
}

.nav-dropdown__trigger:hover,
.nav-dropdown__trigger.active {
  color: var(--text-primary);
  background: rgba(196,154,40,.08);
}

.nav-dropdown__trigger.active::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
}

.nav-dropdown__trigger svg {
  transition: transform var(--duration) var(--ease);
  flex-shrink: 0;
}

.nav-dropdown:hover .nav-dropdown__trigger svg,
.nav-dropdown.open .nav-dropdown__trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  min-width: 210px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration) var(--ease);
  z-index: 200;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown.open .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown__menu::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  border-left: 1px solid var(--border-light);
}

.nav-dropdown__menu a {
  display: block;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-medium);
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a.active {
  color: var(--gold-dark);
  background: rgba(196,154,40,.07);
}

.nav-dropdown__divider {
  height: 1px;
  background: var(--border-light);
  margin: 4px 8px;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.navbar__links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-medium);
  transition: all var(--duration) var(--ease);
  position: relative;
}

.navbar__links a:hover,
.navbar__links a.active {
  color: var(--text-primary);
  background: rgba(196,154,40,.08);
}

.navbar__links a.active::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.navbar__cta {
  padding: 10px 24px;
  font-size: 0.88rem;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--duration) var(--ease);
}

.navbar__hamburger:hover { background: rgba(196,154,40,.08); }

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--duration-slow) var(--ease);
}

.navbar__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Drawer ───────────────────────────────────────────── */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28,16,9,.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-slow) var(--ease);
  backdrop-filter: blur(4px);
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 100vw);
  background: var(--cream);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--duration-slow) var(--ease);
  box-shadow: -20px 0 60px rgba(28,16,9,.15);
}

.drawer.open { transform: translateX(0); }

.drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid var(--border-light);
}

.drawer__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  color: var(--text-medium);
  display: flex;
  align-items: center;
  transition: all var(--duration) var(--ease);
}

.drawer__close:hover {
  background: rgba(196,154,40,.08);
  color: var(--text-primary);
}

.drawer__nav {
  flex: 1;
  padding: var(--space-lg) 0;
  overflow-y: auto;
}

.drawer__nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px var(--space-xl);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-medium);
  transition: all var(--duration) var(--ease);
  border-left: 3px solid transparent;
}

.drawer__nav a:hover,
.drawer__nav a.active {
  color: var(--gold-dark);
  background: rgba(196,154,40,.06);
  border-left-color: var(--gold);
}

.drawer__divider {
  height: 1px;
  background: var(--border-light);
  margin: var(--space-md) var(--space-xl);
}

/* ── Drawer Group (collapsible sub-nav) ───────────────── */
.drawer__group-trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px var(--space-xl);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-medium);
  background: none;
  border: none;
  border-left: 3px solid transparent;
  cursor: pointer;
  font-family: var(--font-sans);
  text-align: left;
  transition: all var(--duration) var(--ease);
}

.drawer__group-trigger:hover,
.drawer__group-trigger.active {
  color: var(--gold-dark);
  background: rgba(196,154,40,.06);
  border-left-color: var(--gold);
}

.drawer__group-chevron {
  margin-left: auto;
  transition: transform var(--duration) var(--ease);
}

.drawer__group.open .drawer__group-chevron {
  transform: rotate(180deg);
}

.drawer__group-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease);
  background: rgba(196,154,40,.03);
}

.drawer__group.open .drawer__group-sub {
  max-height: 200px;
}

.drawer__group-sub a {
  padding-left: 52px !important;
  font-size: 0.92rem !important;
  border-left: 3px solid transparent;
}

.drawer__footer {
  padding: var(--space-xl);
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.drawer__footer .btn { justify-content: center; }

/* ── Page Top Padding ─────────────────────────────────── */
.page-top { padding-top: var(--nav-h); }

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 50%, rgba(196,154,40,.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 80% at 10% 50%, rgba(224,123,42,.06) 0%, transparent 60%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-lg);
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
}

.hero__title {
  margin-bottom: var(--space-lg);
  font-weight: 700;
  color: var(--text-primary);
}

.hero__title em {
  font-style: italic;
  color: var(--saffron);
}

.hero__desc {
  font-size: 1.15rem;
  color: var(--text-medium);
  max-width: 580px;
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero__image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  max-width: 700px;
  height: 80%;
  z-index: 0;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
  opacity: 0.75;
}

/* ── Page Hero (inner pages) ──────────────────────────── */
.page-hero {
  padding: var(--space-3xl) 0 var(--space-2xl);
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,154,40,.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero__content { max-width: 680px; }

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: var(--space-lg);
}

.page-hero__breadcrumb a { color: var(--gold); }
.page-hero__breadcrumb a:hover { text-decoration: underline; }
.page-hero__breadcrumb span { color: var(--border); }

.page-hero__title { margin-bottom: var(--space-md); }
.page-hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-medium);
  line-height: 1.8;
}

/* ── Cards ────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: all var(--duration-slow) var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}

.card__body { padding: var(--space-xl); }

.card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196,154,40,.1);
  color: var(--gold);
  margin-bottom: var(--space-md);
  flex-shrink: 0;
}

.card__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.card__title {
  margin-bottom: var(--space-sm);
}

.card__text { font-size: 0.95rem; }

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-top: var(--space-md);
  transition: gap var(--duration) var(--ease);
}
.card__link:hover { gap: 10px; }

/* ── Stats ────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-lg);
}

.stat {
  text-align: center;
  padding: var(--space-xl);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

.stat__number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat__label {
  font-size: 0.85rem;
  color: var(--text-medium);
  font-weight: 500;
}

/* ── Grid layouts ─────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--space-xl); }

/* ── Feature List ─────────────────────────────────────── */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(196,154,40,.1);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-text h4 { margin-bottom: 4px; font-size: 1rem; }
.feature-text p { font-size: 0.9rem; }

/* ── Timeline ─────────────────────────────────────────── */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 52px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--saffron-light));
}

.timeline-step {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  padding: var(--space-lg) 0;
  position: relative;
}

.timeline-step__time {
  width: 76px;
  text-align: right;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  padding-top: 4px;
}

.timeline-step__dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--gold);
  flex-shrink: 0;
  margin-top: 4px;
  position: relative;
  z-index: 1;
}

.timeline-step__content { flex: 1; }
.timeline-step__content h4 { font-size: 1rem; margin-bottom: 4px; }
.timeline-step__content p { font-size: 0.9rem; color: var(--text-medium); }

/* ── Two-column split ─────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.split__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.split__image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.split__image-badge {
  position: absolute;
  bottom: var(--space-lg);
  left: var(--space-lg);
  background: rgba(253,248,240,.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* ── CTA Banner ───────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--text-primary) 0%, #3D1F0A 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl) var(--space-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,154,40,.15) 0%, transparent 70%);
}

.cta-banner h2 { color: var(--white); margin-bottom: var(--space-md); }
.cta-banner p { color: rgba(255,255,255,.7); margin-bottom: var(--space-xl); }

.cta-banner__actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Ornament divider ─────────────────────────────────── */
.ornament {
  text-align: center;
  color: var(--gold-light);
  font-size: 1.5rem;
  letter-spacing: 12px;
  margin: 0 auto;
  opacity: 0.4;
}

/* ── Contact / Forms ──────────────────────────────────── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

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

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: all var(--duration) var(--ease);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,154,40,.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-2xl);
}

.form-success.show { display: block; }

.form-success__icon {
  width: 64px;
  height: 64px;
  background: rgba(196,154,40,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  color: var(--gold);
}

/* ── Contact Info ─────────────────────────────────────── */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(196,154,40,.1);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-text strong {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.contact-info-text a,
.contact-info-text p {
  color: var(--text-medium);
  font-size: 0.95rem;
  transition: color var(--duration) var(--ease);
}

.contact-info-text a:hover { color: var(--gold-dark); }

/* ── Testimonial ──────────────────────────────────────── */
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--border-light);
  position: relative;
}

.testimonial::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--gold-light);
  position: absolute;
  top: -10px;
  left: var(--space-xl);
  line-height: 1;
  opacity: 0.4;
}

.testimonial__text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  padding-top: var(--space-sm);
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-family: var(--font-serif);
  font-size: 1.2rem;
}

.testimonial__name { font-weight: 600; font-size: 0.9rem; color: var(--text-primary); }
.testimonial__role { font-size: 0.8rem; color: var(--text-light); }

/* ── Audience Cards ───────────────────────────────────── */
.audience-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all var(--duration-slow) var(--ease);
  display: flex;
  flex-direction: column;
}

.audience-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.audience-card__image {
  height: 220px;
  overflow: hidden;
}

.audience-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease);
}

.audience-card:hover .audience-card__image img { transform: scale(1.04); }

.audience-card__body { padding: var(--space-xl); flex: 1; display: flex; flex-direction: column; }
.audience-card__tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}
.audience-card__title { margin-bottom: var(--space-sm); }
.audience-card__text { font-size: 0.95rem; flex: 1; margin-bottom: var(--space-lg); }

/* ── Pillar Cards ─────────────────────────────────────── */
.pillar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--border-light);
  text-align: center;
  transition: all var(--duration-slow) var(--ease);
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(196,154,40,.3);
}

.pillar-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(196,154,40,.12), rgba(224,123,42,.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  color: var(--gold);
  border: 1px solid rgba(196,154,40,.2);
}

.pillar-card h3 { margin-bottom: var(--space-sm); }
.pillar-card p { font-size: 0.95rem; }

/* ── Gold Tag ─────────────────────────────────────────── */
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tag-gold { background: rgba(196,154,40,.12); color: var(--gold-dark); border: 1px solid rgba(196,154,40,.25); }
.tag-saffron { background: rgba(224,123,42,.1); color: var(--saffron); border: 1px solid rgba(224,123,42,.2); }
.tag-maroon { background: rgba(139,32,32,.08); color: var(--maroon); border: 1px solid rgba(139,32,32,.2); }

/* ── Process Steps ────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-xl);
  counter-reset: step;
}

.process-step {
  text-align: center;
  counter-increment: step;
  position: relative;
}

.process-step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: var(--white);
  font-weight: 700;
  font-size: 1.3rem;
  font-family: var(--font-serif);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  box-shadow: 0 4px 16px rgba(196,154,40,.3);
}

.process-step h4 { margin-bottom: var(--space-sm); }
.process-step p { font-size: 0.9rem; }

/* ── Footer ───────────────────────────────────────────── */
.footer {
  background: var(--text-primary);
  color: var(--cream-dark);
  padding: var(--space-3xl) 0 var(--space-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-lg);
}

.footer__brand-logo img { height: 48px; width: auto; filter: brightness(0) invert(1); }

.footer__brand-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
}

.footer__brand-tagline {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
}

.footer__desc {
  font-size: 0.9rem;
  color: rgba(245,237,216,.7);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.88rem;
  color: rgba(245,237,216,.7);
  margin-bottom: var(--space-sm);
}

.footer__contact-item svg { color: var(--gold-light); flex-shrink: 0; margin-top: 2px; }

.footer__heading {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: var(--space-lg);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(245,237,216,.7);
  transition: color var(--duration) var(--ease);
}

.footer__links a:hover { color: var(--gold-light); }

.footer__bottom {
  border-top: 1px solid rgba(245,237,216,.1);
  padding-top: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer__copyright {
  font-size: 0.85rem;
  color: rgba(245,237,216,.5);
}

.footer__trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--gold-light);
  background: rgba(196,154,40,.1);
  border: 1px solid rgba(196,154,40,.2);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

/* ── Breadcrumb ───────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: var(--space-md);
}
.breadcrumb a { color: var(--gold-dark); }
.breadcrumb a:hover { text-decoration: underline; }

/* ── Scroll-reveal animation ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Responsive Breakpoints ───────────────────────────── */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .split.reverse { direction: ltr; }
  .hero__image { display: none; }
}

@media (max-width: 768px) {
  :root { --space-3xl: 64px; --space-2xl: 40px; }
  .navbar__links { display: none; }
  .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .cta-banner { padding: var(--space-2xl) var(--space-xl); border-radius: var(--radius-lg); }
  .cta-banner__actions { flex-direction: column; align-items: center; }
}

@media (max-width: 640px) {
  .footer__grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .footer__bottom { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; }
}
