/* ================================================================
   LIGHTWORK THERAPY — Premium CSS Design System
   ================================================================ */

/* ——————————————————————————————————————————
   0. RESET & BASE
—————————————————————————————————————————— */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: #F8F5F1;
  color: #2A2A2A;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ——————————————————————————————————————————
   1. CSS VARIABLES
—————————————————————————————————————————— */
:root {
  --bg: #F8F5F1;
  --soft-beige: #EDE6DE;
  --lavender: #CBB8E8;
  --dusty-blue: #AFC4DD;
  --gold: #D4B06A;
  --gold-light: #E8CFA0;
  --text-dark: #2A2A2A;
  --text-mid: #666666;
  --text-light: #999999;
  --white: #FFFFFF;

  /* Fluid section padding — scales with viewport */
  --section-pad: clamp(96px, 12vw, 160px);
  --section-pad-h: clamp(24px, 4vw, 80px);

  /* Max container */
  --container: 1280px;
  --container-wide: 1360px;

  /* Easing */
  --ease-silk: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
}

/* ——————————————————————————————————————————
   2. TYPOGRAPHY — Fluid scaling
—————————————————————————————————————————— */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: clamp(12px, 2vw, 20px);
}

.section-headline {
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.08;
  margin-bottom: clamp(20px, 2.5vw, 32px);
}

.section-body {
  font-size: clamp(14px, 1.4vw, 15.5px);
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: clamp(14px, 1.5vw, 20px);
  font-weight: 300;
}

.lead-text {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text-dark);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: clamp(16px, 2vw, 24px);
}

em {
  font-style: italic;
  color: var(--text-dark);
}

.gold-word  { color: var(--gold); font-style: normal; }
.italic-word { color: var(--text-dark); font-style: italic; }

@keyframes goldShimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.gold-line {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% auto;
  margin-bottom: clamp(24px, 3vw, 40px);
  animation: goldShimmer 6s linear infinite;
  transition: width 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ——————————————————————————————————————————
   3. BUTTONS
—————————————————————————————————————————— */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--lavender);
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 16px 32px;
  border-radius: 2px;
  transition: box-shadow 0.35s var(--ease-silk), transform 0.3s var(--ease-silk);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--lavender) 0%, var(--dusty-blue) 50%, var(--lavender) 100%);
  background-size: 200% auto;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s var(--ease-silk), background-position 0.4s var(--ease-silk);
}

.btn-primary:hover::before {
  opacity: 1;
  background-position: right center;
}

.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(203,184,232,0.45);
  transform: translateY(-2px) scale(1.02);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  padding: 15px 30px;
  border: 1px solid rgba(42,42,42,0.2);
  border-radius: 2px;
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-ghost::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(203, 184, 232, 0.12) 0%, rgba(175, 196, 221, 0.12) 50%, rgba(203, 184, 232, 0.12) 100%);
  background-size: 200% auto;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s var(--ease-silk), background-position 0.4s var(--ease-silk);
}

.btn-ghost:hover::before {
  opacity: 1;
  background-position: right center;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px) scale(1.02);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% auto;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s var(--ease-silk), background-position 0.4s var(--ease-silk);
}

.btn-outline:hover::before {
  opacity: 1;
  background-position: right center;
}

.btn-outline:hover {
  color: var(--text-dark);
  border-color: var(--gold);
  transform: translateY(-2px) scale(1.02);
}

.btn-link {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: opacity 0.3s;
}

.btn-link:hover { opacity: 0.7; }

.btn-nav {
  background: var(--lavender);
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 12px 24px;
  border-radius: 2px;
  transition: box-shadow 0.3s, transform 0.3s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--lavender) 0%, var(--dusty-blue) 50%, var(--lavender) 100%);
  background-size: 200% auto;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s var(--ease-silk), background-position 0.4s var(--ease-silk);
}

.btn-nav:hover::before {
  opacity: 1;
  background-position: right center;
}

.btn-nav:hover {
  box-shadow: 0 4px 16px rgba(203,184,232,0.35);
  transform: translateY(-2px) scale(1.02);
}

.btn-large {
  padding: 18px 40px;
  font-size: 14px;
}

/* ——————————————————————————————————————————
   4. GLASS CARD
—————————————————————————————————————————— */
.glass-card {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(24px) saturate(110%);
  -webkit-backdrop-filter: blur(24px) saturate(110%);
  border: 1px solid rgba(212, 176, 106, 0.22);
  box-shadow: 0 16px 64px rgba(42, 42, 42, 0.06), 0 2px 12px rgba(42, 42, 42, 0.02);
  border-radius: 4px;
  padding: 28px 32px;
}

.mobile-menu-quote {
  display: none;
}

/* ——————————————————————————————————————————
   5. NAVIGATION
—————————————————————————————————————————— */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.5s var(--ease-silk), box-shadow 0.5s var(--ease-silk);
  padding: 0 40px;
}

.navbar.scrolled {
  background: rgba(248, 245, 241, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.05), 0 4px 30px rgba(0, 0, 0, 0.02);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
  z-index: 1001;
}

.logo-img {
  height: 76px; /* Increased size for premium visibility */
  width: auto;
  object-fit: contain;
  transition: transform 0.3s var(--ease-silk);
}

.nav-logo:hover .logo-img {
  transform: scale(1.04);
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-dark);
  line-height: 1;
  display: inline-block;
  user-select: none;
  transition: opacity 0.3s var(--ease-silk);
}

.logo-text .logo-l {
  color: var(--lavender);
}

.logo-text .logo-w {
  color: var(--dusty-blue);
}

.logo-text .logo-t {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-dark);
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease-silk);
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: relative;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: transform 0.3s, opacity 0.3s;
}

/* ——————————————————————————————————————————
   6. HERO SECTION
—————————————————————————————————————————— */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 60px;
  background: radial-gradient(circle at 75% 45%, rgba(212, 176, 106, 0.08) 0%, rgba(247, 243, 252, 0.65) 50%, #FAF7F4 100%);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--container-wide);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* Balanced 55/45 split */
  gap: clamp(40px, 5vw, 96px);
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 0 40px;
}

/* Linen texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Crect width='4' height='4' fill='%23F8F5F1'/%3E%3Crect x='0' y='0' width='1' height='1' fill='%23EDE6DE' opacity='0.3'/%3E%3Crect x='2' y='2' width='1' height='1' fill='%23EDE6DE' opacity='0.2'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.hero-left {
  padding: clamp(48px, 5vw, 80px) clamp(24px, 3vw, 40px) clamp(48px, 5vw, 80px) 0;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: clamp(16px, 2.5vw, 28px);
}

.hero-headline {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--text-dark);
  margin-bottom: clamp(20px, 2.5vw, 32px);
  letter-spacing: -0.02em;
}

.hero-headline em {
  color: var(--lavender);
  font-style: italic;
}

.hero-body-lead {
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: clamp(20px, 2.5vw, 28px);
  max-width: 580px;
  font-weight: 300;
}

.hero-focus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-bottom: clamp(28px, 4vw, 36px);
  max-width: 620px;
}

.hero-focus-tags span {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #6d5b82;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(203, 184, 232, 0.18);
  padding: 6px 14px;
  border-radius: 100px;
  transition: background 0.35s var(--ease-silk), border-color 0.35s var(--ease-silk), transform 0.3s, box-shadow 0.3s;
  display: inline-flex;
  align-items: center;
}

.hero-focus-tags span::before {
  content: '✦';
  margin-right: 6px;
  color: var(--gold);
  font-size: 9px;
  transition: transform 0.3s;
}

.hero-focus-tags span:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--gold);
  transform: translateY(-1.5px);
  box-shadow: 0 4px 12px rgba(203, 184, 232, 0.15);
}

.hero-focus-tags span:hover::before {
  transform: scale(1.2) rotate(45deg);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-ctas .btn-primary,
.hero-ctas .btn-ghost {
  padding: 16px 36px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  min-height: 52px;
}

.hero-ctas .btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 30px rgba(203, 184, 232, 0.55);
}

.hero-right {
  position: relative;
  height: clamp(550px, 78vh, 680px); /* Slightly reduced from 600px-780px to prevent overflow */
  width: 100%;
}

.hero-right::before {
  content: '';
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle, rgba(212, 176, 106, 0.15) 0%, rgba(203, 184, 232, 0.15) 45%, transparent 70%);
  filter: blur(32px);
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
}

.hero-image-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0) 96%);
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0) 96%);
}

.hero-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  z-index: 1;
}

.hero-trust-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: clamp(28px, 4vw, 36px);
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  color: var(--text-light);
  letter-spacing: 0.03em;
  font-weight: 400;
  max-width: 620px;
}

.hero-trust-line span {
  white-space: nowrap;
}

.hero-trust-line .trust-bullet {
  color: var(--gold);
  opacity: 0.7;
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 24px;
  margin-bottom: 32px;
}

.hero-trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-mid);
}

.trust-chk {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

.hero-botanical {
  position: absolute;
  bottom: -20px;
  right: -30px;
  width: 200px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
  animation: botanicalFloat 10s ease-in-out infinite;
}

/* Float and Scale animations */
@keyframes floatAndScale {
  0%, 100% { transform: translateY(0px) scale(1.0); }
  50% { transform: translateY(-4px) scale(1.02); }
}

@keyframes botanicalFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(1.5deg); }
}

.float-anim {
  animation: floatAndScale 7s ease-in-out infinite;
}

/* Shimmer animation */
@keyframes shimmer {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.shimmer-anim {
  animation: shimmer 4s ease-in-out infinite;
}

/* Butterfly drift */
@keyframes butterfly-drift {
  0% { transform: translate(0, 0) rotate(-5deg); opacity: 0; }
  10% { opacity: 1; }
  50% { transform: translate(20px, -15px) rotate(5deg); }
  90% { opacity: 1; }
  100% { transform: translate(35px, -30px) rotate(-3deg); opacity: 0; }
}

.butterfly-float {
  position: absolute;
  font-size: 28px;
  animation: butterfly-drift 12s ease-in-out infinite;
  pointer-events: none;
  top: 30%;
  right: 10%;
  z-index: 5;
  filter: drop-shadow(0 2px 8px rgba(203,184,232,0.4));
}

/* ——————————————————————————————————————————
   7. TRUST BAR
—————————————————————————————————————————— */
.trust-bar {
  background: var(--soft-beige);
  border-top: 1px solid rgba(212,176,106,0.18);
  border-bottom: 1px solid rgba(212,176,106,0.18);
  padding: 24px 40px;
}

.trust-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: #4A3C2E;
  padding: 6px 32px;
  flex-shrink: 0;
}

.trust-svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  color: #A87840;
  stroke: #A87840;
  opacity: 1;
}

.trust-divider {
  width: 1px;
  height: 32px;
  background: rgba(140,110,70,0.3);
  flex-shrink: 0;
}


/* ——————————————————————————————————————————
   8. PHILOSOPHY SECTION
—————————————————————————————————————————— */
.philosophy {
  padding: var(--section-pad) 0;
  background: url('images/Our_Philosophy.webp') no-repeat 20% center; /* Keep lady on left, butterfly in center, text on right */
  background-size: cover;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

/* Light background contrast text styles */
.philosophy .section-label { color: #8C682A; }
.philosophy .section-headline {
  color: #2A241E;
  font-size: clamp(32px, 4vw, 52px);
}
.philosophy .section-body { color: #4A423A; }
.philosophy .section-body em { color: #2A241E; }
.philosophy .gold-word { color: #A88240; }
.philosophy .italic-word { color: #6D56A4; font-style: italic; }
.philosophy .gold-line { background: #A88240; }
.philosophy .phil-closing {
  color: #2A241E;
  border-left-color: #A88240;
}
.philosophy .phil-closing strong { color: #2A241E; }

.philosophy .btn-outline {
  color: #2A241E;
  border-color: rgba(168, 130, 64, 0.5);
  background: transparent;
}
.philosophy .btn-outline:hover {
  background: #2A241E;
  border-color: #2A241E;
  color: var(--white);
}

.philosophy-inner {
  max-width: var(--container-wide);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* 55% left empty spacer, 45% right text column */
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 0 clamp(24px, 5vw, 80px);
  box-sizing: border-box;
}

.philosophy-spacer {
  height: 1px;
}

.philosophy-text-col {
  position: relative;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  border: none;
  max-width: 580px;
  margin-left: auto;
  z-index: 2;
}

.philosophy-mobile-image {
  display: none;
}

.phil-closing {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  color: #2A241E;
  line-height: 1.7;
  margin-bottom: 28px;
  padding-left: 20px;
  border-left: 2px solid #A88240;
}

/* ——————————————————————————————————————————
   9. MEET ZAHRA
—————————————————————————————————————————— */
.meet-zahra {
  padding: var(--section-pad) clamp(24px, 4vw, 80px);
  background: linear-gradient(145deg, #EDE6DE 0%, #E8DDD8 40%, #E8E0F0 100%);
  overflow: hidden;
}

.zahra-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.zahra-image-col {
  position: relative;
}

.zahra-image-wrap {
  position: relative;
}

.zahra-portrait {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
}

.zahra-quote-card {
  position: absolute;
  bottom: -30px;
  left: -40px;
  max-width: 280px;
}

.zahra-quote-card .quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--text-dark);
  position: relative;
  font-weight: 300;
  line-height: 1.6;
}

.zahra-quote-card .quote-text::before {
  content: '“';
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  color: var(--gold);
  opacity: 0.22;
  position: absolute;
  top: -24px;
  left: -20px;
  line-height: 1;
  pointer-events: none;
}

/* ——————————————————————————————————————————
   10. SERVICES SECTION
—————————————————————————————————————————— */
.services {
  padding: var(--section-pad) clamp(24px, 4vw, 80px);
  background: linear-gradient(160deg, #F8F5F1 0%, #F4F0F8 60%, #EEE8F5 100%);
}

.services-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.services-header {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto;
  align-items: start;
  margin-bottom: 80px;
  gap: 0 40px;
}

.services-header .section-label { grid-column: 1; }
.services-header .section-headline { grid-column: 1; }
.services-header .section-body.services-sub { grid-column: 1; }
.services-header .btn-link { grid-column: 2; grid-row: 2; align-self: end; padding-bottom: 8px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.service-card {
  padding: 52px 40px;
  border-top: 1px solid rgba(42,42,42,0.08);
  position: relative;
  transition: background 0.5s var(--ease-silk), transform 0.5s var(--ease-silk), box-shadow 0.5s var(--ease-silk), border-color 0.5s var(--ease-silk);
  cursor: default;
}

.service-card .svc-card-img-wrap {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
  background: var(--soft-beige);
}

.service-card .svc-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-silk);
}

.service-card:hover .svc-card-img {
  transform: scale(1.05);
}

.service-card:nth-child(n+4) {
  border-bottom: 1px solid rgba(42,42,42,0.08);
}

.service-card:not(:nth-child(3n)):not(:last-child) {
  border-right: 1px solid rgba(42,42,42,0.08);
}

.service-card:nth-child(3) {
  border-right: none;
}

/* Individual Premium Card Gradients */
#svc-individual {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(250, 238, 232, 0.5) 100%);
}
#svc-individual:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 230, 220, 0.85) 100%);
}

#svc-relationship {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(232, 239, 250, 0.5) 100%);
}
#svc-relationship:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(220, 232, 248, 0.85) 100%);
}

#svc-anxiety {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(230, 245, 240, 0.5) 100%);
}
#svc-anxiety:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(215, 240, 232, 0.85) 100%);
}

#svc-burnout {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(252, 244, 230, 0.5) 100%);
}
#svc-burnout:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 238, 220, 0.85) 100%);
}

#svc-trauma {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(245, 235, 252, 0.5) 100%);
}
#svc-trauma:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(238, 220, 250, 0.85) 100%);
}

#svc-postpartum {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(252, 235, 240, 0.5) 100%);
}
#svc-postpartum:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 220, 230, 0.85) 100%);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(165, 148, 244, 0.08);
  z-index: 2;
  border-color: transparent;
}

.svc-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  font-weight: 400;
}

.svc-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 24px;
  transition: width 0.4s var(--ease-silk);
}

.service-card:hover .svc-line { width: 56px; }

.svc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.25;
}

.svc-body {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 28px;
  font-weight: 300;
}

.svc-link {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  transition: opacity 0.3s;
}

.svc-link:hover { opacity: 0.65; }

/* ——————————————————————————————————————————
   11. TRANSFORMATION
—————————————————————————————————————————— */
.transformation {
  padding: var(--section-pad) clamp(24px, 4vw, 80px);
  background: linear-gradient(135deg, #DEEAF5 0%, #D8D4EC 50%, #E8DCED 100%);
  overflow: hidden;
}

/* Transformation — cooler bg, adjust text */
.transformation .section-label { color: #7B6FA0; }
.transformation .section-headline { color: #2A2440; }
.transformation .section-headline em { color: #7B6FA0; }
.transformation .section-body { color: #4A4260; }
.transformation .section-body em { color: #2A2440; }
.transformation .gold-line { background: #9880C0; }
.transformation .trans-check { color: #9880C0; }
.transformation .trans-item { color: #4A4260; border-color: rgba(80,60,120,0.12); }
.transformation .trans-item:hover { color: #2A2440; }
.transformation .trans-quote .quote-mark { color: rgba(120,100,180,0.5); }

.transformation-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.trans-headline {
  margin-bottom: 28px;
}

.trans-list {
  margin: 28px 0 28px;
}

.trans-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-mid);
  padding: 10px 0;
  border-bottom: 1px solid rgba(42,42,42,0.06);
  transition: color 0.3s, padding-left 0.3s;
}

.trans-item:first-child { border-top: 1px solid rgba(42,42,42,0.06); }

.trans-item:hover {
  color: var(--text-dark);
  padding-left: 6px;
}

.trans-check {
  color: var(--gold);
  font-size: 10px;
  flex-shrink: 0;
}

.trans-image-col {
  position: relative;
  padding-top: 60px;
}

.trans-image-wrap {
  position: relative;
}

.trans-image {
  width: 100%;
  height: clamp(560px, 35vw, 750px);
  object-fit: cover;
  border-radius: 2px;
  box-shadow: -24px 24px 80px rgba(0,0,0,0.1);
}

.trans-quote {
  position: absolute;
  top: -20px;
  right: -30px;
  max-width: 300px;
  padding: 24px 28px;
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  color: var(--lavender);
  line-height: 0.8;
  display: block;
  margin-bottom: 10px;
}

.trans-quote .quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 12px;
}

.quote-attr {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

/* ——————————————————————————————————————————
   12. CREDENTIALS
—————————————————————————————————————————— */
.credentials-section {
  padding: var(--section-pad) clamp(24px, 4vw, 80px);
  background: linear-gradient(150deg, #FBF7F2 0%, #F5EDE0 50%, #F8F3EE 100%);
}

.credentials-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.credentials-inner .section-headline {
  margin-bottom: 72px;
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.cred-card {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 176, 106, 0.15);
  border-radius: 6px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s, box-shadow 0.4s, background-color 0.4s;
}

.cred-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 16px 48px rgba(212, 176, 106, 0.12);
  background: var(--white);
}

.cred-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.cred-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 176, 106, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.4s, color 0.4s;
}

.cred-card:hover .cred-icon-wrap {
  transform: scale(1.1) rotate(5deg);
  background: rgba(203, 184, 232, 0.15);
  color: var(--lavender);
}

.cred-icon-svg {
  width: 20px;
  height: 20px;
}

.cred-badge {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  border: 1px solid rgba(42, 42, 42, 0.08);
  padding: 4px 10px;
  border-radius: 20px;
}

.cred-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.25;
}

.cred-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.65;
  font-weight: 300;
}

/* ——————————————————————————————————————————
   13. WHY LIGHTWORK — Image Cards
—————————————————————————————————————————— */
.why-section {
  padding: var(--section-pad) clamp(24px, 4vw, 80px);
  background: linear-gradient(145deg, #2C2438 0%, #3A3050 40%, #2E3850 100%);
}

/* Dark section — inverted text */
.why-section .section-label  { color: rgba(203,184,232,0.85); }
.why-section .section-headline { color: #F0EAF8; }
.why-section .section-headline em { color: #CBB8E8; font-style: italic; }

.why-inner {
  max-width: var(--container);
  margin: 0 auto;
}

/* Header: two-column editorial */
.why-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 80px);
  padding-bottom: clamp(32px, 4vw, 56px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.why-header-left { /* headline lives here */ }

.why-header-accent {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 8px;
}

.why-header-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.why-header-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 1.8vw, 22px);
  font-style: italic;
  font-weight: 300;
  color: rgba(220, 210, 240, 0.6);
  line-height: 1.55;
  max-width: 360px;
}

/* 4-card grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.5vw, 20px);
}

/* Individual card */
.why-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: default;
  transition: transform 0.45s var(--ease-silk), box-shadow 0.45s var(--ease-silk), border-color 0.35s;
}

.why-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
  border-color: rgba(212,176,106,0.25);
}

/* Card image */
.why-card-img-wrap {
  position: relative;
  height: clamp(220px, 15vw, 320px);
  overflow: hidden;
  flex-shrink: 0;
}

.why-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s var(--ease-silk);
}

.why-item:hover .why-card-img {
  transform: scale(1.06);
}

/* Gradient fade from image into card body */
.why-card-img-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(44,36,56,0.95));
  pointer-events: none;
}

/* Card text body */
.why-card-body {
  padding: clamp(20px, 2.5vw, 32px) clamp(20px, 2.5vw, 28px) clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.why-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 12px;
  display: block;
}

.why-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  color: #EDE8F5;
  margin-bottom: 14px;
  line-height: 1.2;
}

.why-body {
  font-size: clamp(13px, 1.2vw, 14px);
  color: rgba(220,210,235,0.6);
  line-height: 1.8;
  font-weight: 300;
  flex: 1;
}



/* ——————————————————————————————————————————
   14. FINAL CTA
—————————————————————————————————————————— */
.final-cta {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: var(--section-pad) clamp(24px, 4vw, 80px);
}

.cta-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(248, 245, 241, 0.94) 0%, rgba(243, 238, 232, 0.94) 50%, rgba(237, 230, 222, 0.94) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.cta-headline {
  font-size: clamp(52px, 7vw, 90px);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.0;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.cta-headline em {
  color: var(--gold);
}

.cta-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 8px;
  font-weight: 300;
}

.cta-body-secondary {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 48px;
  font-weight: 300;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.final-cta .butterfly-float {
  top: 20%;
  right: 15%;
  font-size: 24px;
  animation-delay: -4s;
}

/* ——————————————————————————————————————————
   15. FOOTER
—————————————————————————————————————————— */
.footer {
  background: #2A2A2A;
  color: rgba(255,255,255,0.7);
  padding: 80px 40px 0;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  line-height: 1.6;
}

.footer-trust {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.footer-nav-title {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-nav ul,
.footer-services ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a,
.footer-services a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}

.footer-nav a:hover,
.footer-services a:hover {
  color: var(--white);
}

.footer-contact p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-email,
.footer-phone {
  display: block;
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 8px;
  transition: opacity 0.3s;
}

.footer-email:hover,
.footer-phone:hover {
  opacity: 0.75;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  color: rgba(255,255,255,0.6);
  transition: border-color 0.3s, color 0.3s, background-color 0.3s, transform 0.3s;
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  background-color: rgba(212, 176, 106, 0.05);
  transform: translateY(-2px);
}

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.03em;
}

/* ——————————————————————————————————————————
   16. SCROLL REVEAL ANIMATIONS
—————————————————————————————————————————— */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered delays for children */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }

/* Service card stagger */
.service-card:nth-child(1) { transition-delay: 0.0s; }
.service-card:nth-child(2) { transition-delay: 0.1s; }
.service-card:nth-child(3) { transition-delay: 0.2s; }
.service-card:nth-child(4) { transition-delay: 0.3s; }
.service-card:nth-child(5) { transition-delay: 0.4s; }
.service-card:nth-child(6) { transition-delay: 0.5s; }

/* Why items stagger */
.why-item:nth-child(1) { transition-delay: 0.0s; }
.why-item:nth-child(2) { transition-delay: 0.12s; }
.why-item:nth-child(3) { transition-delay: 0.24s; }
.why-item:nth-child(4) { transition-delay: 0.36s; }

/* Trans items stagger */
.trans-item:nth-child(1) { transition-delay: 0.0s; }
.trans-item:nth-child(2) { transition-delay: 0.08s; }
.trans-item:nth-child(3) { transition-delay: 0.16s; }
.trans-item:nth-child(4) { transition-delay: 0.24s; }
.trans-item:nth-child(5) { transition-delay: 0.32s; }
.trans-item:nth-child(6) { transition-delay: 0.40s; }

/* Parallax */
.parallax-img {
  will-change: transform;
}

/* ——————————————————————————————————————————
   17. RESPONSIVE — 4-breakpoint system
   1280 → 1024 → 768 → 480
—————————————————————————————————————————— */

/* ---- TABLET LANDSCAPE 1024px ---- */
@media (max-width: 1024px) {

  /* Nav */
  .navbar { padding: 0 32px; }
  .nav-links { gap: 28px; }

  /* Hero */
  .hero-inner { grid-template-columns: 1fr 1fr; }
  .hero-right { min-height: 600px; }


  /* Two-col sections */
  .philosophy-inner {
    grid-template-columns: 1fr 1.1fr;
  }
  .philosophy-inner,
  .zahra-inner,
  .transformation-inner { gap: clamp(40px, 5vw, 72px); }

  /* Services 3→2 */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card { padding: 40px 32px; }
  /* Fix borders for 2-col layout */
  .service-card:nth-child(2n) { border-right: none !important; }
  .service-card:nth-child(2n+1):not(:nth-last-child(-n+2)) { border-right: 1px solid rgba(42,42,42,0.08); }
  .service-card:nth-child(n+3) { border-bottom: 1px solid rgba(42,42,42,0.08); }
  .service-card:nth-child(3),
  .service-card:nth-child(4) { border-bottom: 1px solid rgba(42,42,42,0.08); }
  .service-card:nth-child(5),
  .service-card:nth-child(6) { border-bottom: none; }

  /* Why 4→2 */
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .why-header { grid-template-columns: 1fr; gap: 24px; }
  .why-card-img-wrap { height: 180px; }
  .why-item { padding: 0; }

  /* Footer 4→2 */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 48px 40px; }

  /* Phil + trans images */
  .trans-image { height: 480px; }
  .zahra-portrait { height: auto; }

  /* Credentials */
  .cred-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- TABLET PORTRAIT 768px ---- */
@media (max-width: 768px) {

  /* Nav */
  .navbar { padding: 0 24px; }
  .logo-img { height: 60px; }
  .logo-text { font-size: 21px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: linear-gradient(145deg, #2C2438 0%, #3A3050 40%, #2E3850 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 110px 32px clamp(48px, 8vw, 80px);
    gap: 24px;
    z-index: 999;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    align-items: center;
    overflow-y: auto;
  }
  .nav-links.open li {
    width: 100%;
    text-align: center;
  }
  .nav-links.open a {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(24px, 5.5vw, 32px);
    font-weight: 300;
    letter-spacing: 0.05em;
    color: #F0EAE0;
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
  }
  .nav-links.open a:hover {
    color: var(--gold);
    transform: scale(1.03);
  }
  .nav-links.open li:last-child {
    margin-top: 16px;
    display: flex;
    justify-content: center;
  }
  .nav-links.open li:last-child a {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--lavender);
    color: var(--text-dark);
    padding: 16px 40px;
    border-radius: 2px;
    width: 100%;
    max-width: 280px;
    box-shadow: 0 4px 16px rgba(203, 184, 232, 0.35);
    transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
  }
  .nav-links.open li:last-child a:hover {
    background: #b8a3d5;
    box-shadow: 0 8px 24px rgba(203, 184, 232, 0.5);
    transform: translateY(-1px);
    color: var(--text-dark);
  }
  
  /* Mobile Menu Quote Styling */
  .nav-links.open .mobile-menu-quote {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    width: 100%;
    max-width: 320px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
  }
  .menu-quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(16px, 3.8vw, 19px);
    font-style: italic;
    color: rgba(240, 234, 224, 0.85);
    line-height: 1.5;
    margin-bottom: 12px;
    text-align: center;
  }
  .menu-quote-badge {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: rgba(240, 234, 224, 0.45);
    text-transform: uppercase;
    display: block;
    line-height: 1.6;
    text-align: center;
  }

  /* Menu Open State Classes */
  body.menu-open {
    overflow: hidden;
  }
  .navbar.menu-open {
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .navbar.menu-open .logo-text {
    color: #F0EAE0 !important;
  }
  .navbar.menu-open .hamburger {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    transition: background 0.3s, border-color 0.3s;
  }
  .navbar.menu-open .hamburger:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: var(--gold) !important;
  }
  .navbar.menu-open #hamburger span {
    background: var(--gold) !important;
  }
  .navbar.menu-open #hamburger span:nth-child(1) {
    transform: rotate(45deg) !important;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -1px;
    margin-left: -9px;
    width: 18px;
    height: 2px;
  }
  .navbar.menu-open #hamburger span:nth-child(2) {
    opacity: 0 !important;
  }
  .navbar.menu-open #hamburger span:nth-child(3) {
    transform: rotate(-45deg) !important;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -1px;
    margin-left: -9px;
    width: 18px;
    height: 2px;
  }
  .btn-nav { display: none; }
  .hamburger { display: flex; }
  .nav-inner { height: 72px; }

  /* Hero — stack */
  .hero {
    min-height: auto;
    padding-top: 72px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 0;
  }
  .hero-left {
    padding: 48px 24px 56px;
    order: 2;
  }
  .hero-right {
    order: 1;
    height: 75vw;
    min-height: 380px;
    max-height: 550px;
  }

  .hero-ctas { gap: 12px; }
  .hero-botanical { display: none; }

  /* All two-col sections → stack */
  .philosophy-inner,
  .zahra-inner,
  .transformation-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Philosophy */
  .philosophy {
    background: #F8F5F1;
  }
  .philosophy-mobile-image {
    display: block;
    width: 100%;
    height: clamp(300px, 50vw, 480px);
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
    margin-bottom: 32px;
  }
  .philosophy-spacer { display: none; }
  .philosophy-text-col {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    max-width: 100%;
    margin: 0;
  }

  /* Zahra — image on top */
  .zahra-image-col  { order: 1; }
  .zahra-text-col   { order: 2; }
  .zahra-portrait { height: auto; }
  .zahra-quote-card {
    position: relative;
    bottom: auto; left: auto;
    margin-top: 16px;
    max-width: 100%;
  }

  /* Transformation */
  .trans-text-col  { order: 2; }
  .trans-image-col { order: 1; padding-top: 0; }
  .trans-image { height: clamp(280px, 55vw, 420px); }
  .trans-quote {
    position: relative;
    top: auto; right: auto;
    margin-top: 16px;
    max-width: 100%;
  }

  /* Trust bar */
  .trust-bar { padding: 18px 24px; }
  .trust-inner { flex-wrap: wrap; justify-content: flex-start; }
  .trust-divider { display: none; }
  .trust-item { padding: 8px 16px; }

  /* Services */
  .services { padding-left: 24px; padding-right: 24px; }
  .services-header {
    grid-template-columns: 1fr;
    margin-bottom: 48px;
  }
  .services-header .btn-link { grid-column: 1; grid-row: auto; margin-top: 4px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card { padding: 36px 24px; }

  /* Credentials */
  .credentials-section { padding-left: 24px; padding-right: 24px; }
  .cred-grid { grid-template-columns: 1fr; gap: 20px; }
  .cred-card { padding: 28px 24px; }

  /* Why */
  .why-section { padding-left: 24px; padding-right: 24px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .why-header { grid-template-columns: 1fr; margin-bottom: 40px; }
  .why-header-right { display: none; }
  .why-card-img-wrap { height: 160px; }
  .why-header-quote { display: none; }

  /* Phil + why section side padding */
  .philosophy { padding-left: 24px; padding-right: 24px; }
  .meet-zahra { padding-left: 24px; padding-right: 24px; }
  .transformation { padding-left: 24px; padding-right: 24px; }

  /* CTA */
  .final-cta { padding-left: 24px; padding-right: 24px; }
  .cta-headline { font-size: clamp(36px, 8vw, 64px); }
  .cta-body { font-size: clamp(16px, 3vw, 20px); }

  /* Footer */
  .footer { padding: 56px 24px 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 24px 0; }

  /* Buttons */
  .btn-large { padding: 16px 28px; font-size: 13px; }
}

/* ---- MOBILE 480px ---- */
@media (max-width: 480px) {

  /* Hero */
  .hero-left { padding: 40px 20px 48px; }
  .hero-right { height: 90vw; min-height: 320px; }
  .hero-credentials {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding: 14px 0;
    margin-bottom: 28px;
  }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost { width: 100%; justify-content: center; }

  /* Trust */
  .trust-item { padding: 6px 12px; font-size: 11px; }
  .trust-svg { width: 20px; height: 20px; }

  /* Services → 1 col */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none !important; padding: 32px 20px; }
  .service-card:nth-child(n) { border-bottom: 1px solid rgba(42,42,42,0.08); }
  .service-card:last-child { border-bottom: none; }

  /* Why → 1 col */
  .why-grid { grid-template-columns: 1fr; gap: 12px; }
  .why-card-img-wrap { height: 200px; }

  /* Sections side padding */
  .philosophy, .meet-zahra, .services, .transformation,
  .credentials-section, .why-section, .final-cta {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Section headline */
  .section-headline { font-size: clamp(28px, 8vw, 40px); }
  .philosophy .section-headline { font-size: clamp(26px, 7.5vw, 36px); }
  .hero-headline    { font-size: clamp(32px, 9vw, 48px); }

  /* Phil + trans images */
  .trans-image { height: clamp(240px, 65vw, 320px); }
  .zahra-portrait { height: auto; }

  /* Phil section text */
  .philosophy-text-col { padding: 0; }
  .phil-closing { font-size: 17px; padding-left: 14px; }

  /* Credentials */
  .cred-block strong { font-size: 17px; }
  .cred-col { padding: 28px 0; }

  /* CTA */
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-buttons .btn-primary,
  .cta-buttons .btn-ghost { width: 100%; justify-content: center; }
  .cta-headline { font-size: clamp(32px, 9vw, 48px); }

  /* Footer */
  .footer { padding: 48px 20px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-logo { height: 58px; }
  .footer-bottom { font-size: 11px; }

  /* Navbar */
  .navbar { padding: 0 20px; }
  .logo-img { height: 60px; }
  .logo-text { font-size: 17px; }

  /* Svc title smaller */
  .svc-title { font-size: 20px; }
  .why-title { font-size: 19px; }
}

/* ——————————————————————————————————————————
   17. DRIFTING GRADIENTS (GLOBAL OVERRIDE)
   —————————————————————————————————————————— */
@keyframes gradientDrift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero,
.services-hero,
.detail-hero,
.contact-hero,
.about-hero {
  background-size: 200% 200% !important;
  animation: gradientDrift 18s ease infinite !important;
}

/* ================================================================
   18. DESKTOP OPTIMIZATIONS (1440px, 1600px, 1920px, 2560px)
   ================================================================ */

@media (min-width: 1025px) {
  :root {
    --container: min(92vw, 1440px);
    --container-wide: min(92vw, 1550px);
    --section-pad: clamp(120px, 8vw, 180px);
    --section-pad-h: clamp(40px, 4vw, 100px);
  }

  .nav-inner {
    height: 90px;
    gap: 60px;
  }
  .logo-img {
    height: 84px;
  }
  .logo-text {
    font-size: 28px;
  }
  .nav-links {
    gap: 48px;
  }
  .nav-links a {
    font-size: 14.5px;
  }
  .btn-nav {
    font-size: 13px;
    padding: 14px 28px;
  }

  .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 6rem;
  }
  .hero-right {
    height: clamp(600px, 80vh, 800px);
  }
  .hero-headline {
    font-size: clamp(64px, 4.8vw, 80px);
  }
  .hero-body-lead {
    font-size: clamp(15.5px, 1.2vw, 17.5px);
    max-width: 62ch;
  }
  .hero-focus-tags {
    max-width: 640px;
  }
  .hero-focus-tags span {
    font-size: 12px;
    padding: 6px 14px;
  }
  .hero-trust-line {
    font-size: 12.5px;
    max-width: 660px;
  }

  .section-headline {
    font-size: clamp(52px, 4vw, 64px);
  }
  .section-body {
    font-size: clamp(15px, 1.2vw, 16.5px);
    max-width: 72ch;
  }
  .lead-text {
    font-size: clamp(17px, 1.4vw, 19.5px);
  }

  .zahra-inner {
    gap: clamp(80px, 6vw, 120px);
  }
  .zahra-quote-card {
    max-width: 320px;
    bottom: -40px;
    left: -60px;
  }

  .service-card {
    padding: 60px 48px;
  }
  .svc-title {
    font-size: 26px;
  }
  .svc-body {
    font-size: 15px;
  }

  .transformation-inner {
    gap: clamp(80px, 6vw, 120px);
    align-items: center;
  }
  .trans-image {
    height: 620px;
  }
  .trans-quote {
    max-width: 340px;
    right: -40px;
  }

  .cred-grid {
    gap: 36px;
  }
  .cred-card {
    padding: 44px 36px;
  }

  .why-header {
    gap: 6rem;
  }
  .why-grid {
    gap: 24px;
  }
  .why-card-body {
    padding: 32px 28px;
  }
  .why-title {
    font-size: 26px;
  }
  .why-body {
    font-size: 14.5px;
  }

  .cta-content {
    max-width: 800px;
  }
  .cta-headline {
    font-size: clamp(72px, 6vw, 96px);
  }
  .cta-body {
    font-size: 24px;
  }
  .cta-body-secondary {
    font-size: 16px;
  }

  .footer-inner {
    gap: 80px;
  }
}

@media (min-width: 1600px) {
  :root {
    --container: min(92vw, 1600px);
    --container-wide: min(92vw, 1750px);
    --section-pad: clamp(140px, 8vw, 200px);
    --section-pad-h: clamp(60px, 4.5vw, 120px);
  }

  .nav-inner {
    height: 100px;
    gap: 80px;
  }
  .logo-img {
    height: 90px;
  }
  .logo-text {
    font-size: 30px;
  }
  .nav-links {
    gap: 56px;
  }
  .nav-links a {
    font-size: 15px;
  }
  .btn-nav {
    font-size: 13.5px;
    padding: 15px 30px;
  }

  .hero-inner {
    gap: 8rem;
  }
  .hero-right {
    height: clamp(680px, 82vh, 900px);
  }
  .hero-headline {
    font-size: clamp(76px, 4.8vw, 92px);
  }
  .hero-body-lead {
    font-size: clamp(16.5px, 1.2vw, 18.5px);
    max-width: 65ch;
  }

  .section-headline {
    font-size: clamp(60px, 4vw, 72px);
  }
  .section-body {
    font-size: clamp(16px, 1.2vw, 17.5px);
    max-width: 72ch;
  }
  .lead-text {
    font-size: clamp(18px, 1.4vw, 21px);
  }

  .zahra-inner {
    gap: 120px;
  }
  .zahra-quote-card {
    max-width: 340px;
  }

  .trans-image {
    height: 680px;
  }
  .trans-quote {
    max-width: 360px;
  }

  .cred-grid {
    gap: 40px;
  }
  .cred-card {
    padding: 48px 40px;
  }

  .why-grid {
    gap: 28px;
  }
  .why-card-img-wrap {
    height: 260px;
  }
}

@media (min-width: 1920px) {
  :root {
    --container: min(92vw, 1800px);
    --container-wide: min(92vw, 1920px);
    --section-pad: clamp(160px, 8vw, 240px);
    --section-pad-h: clamp(80px, 5vw, 160px);
  }

  .nav-inner {
    height: 110px;
    gap: 100px;
  }
  .logo-img {
    height: 100px;
  }
  .logo-text {
    font-size: 32px;
  }
  .nav-links {
    gap: 64px;
  }
  .nav-links a {
    font-size: 16px;
  }
  .btn-nav {
    font-size: 14px;
    padding: 16px 32px;
  }

  .hero-inner {
    gap: 10rem;
  }
  .hero-right {
    height: clamp(780px, 85vh, 1100px);
  }
  .hero-headline {
    font-size: clamp(88px, 4.8vw, 110px);
  }
  .hero-body-lead {
    font-size: clamp(18px, 1.2vw, 20.5px);
    max-width: 65ch;
  }

  .section-headline {
    font-size: clamp(68px, 4vw, 84px);
  }
  .section-body {
    font-size: clamp(17px, 1.2vw, 19px);
    max-width: 72ch;
  }
  .lead-text {
    font-size: clamp(20px, 1.4vw, 24px);
  }

  .zahra-inner {
    gap: 160px;
  }
  .trans-image {
    height: 760px;
  }
  .trans-quote {
    max-width: 400px;
  }

  .cred-grid {
    gap: 48px;
  }
  .cred-card {
    padding: 56px 48px;
  }

  .why-grid {
    gap: 36px;
  }
  .why-card-img-wrap {
    height: 300px;
  }
  .why-title {
    font-size: 30px;
  }
  .why-body {
    font-size: 15.5px;
  }
}

@media (min-width: 2560px) {
  :root {
    --container: min(92vw, 2200px);
    --container-wide: min(92vw, 2400px);
    --section-pad: clamp(200px, 8vw, 300px);
    --section-pad-h: clamp(100px, 5vw, 200px);
  }

  .nav-inner {
    height: 130px;
    gap: 120px;
  }
  .logo-img {
    height: 114px;
  }
  .logo-text {
    font-size: 36px;
  }
  .nav-links {
    gap: 80px;
  }
  .nav-links a {
    font-size: 18px;
  }
  .btn-nav {
    font-size: 16px;
    padding: 18px 40px;
  }

  .hero-inner {
    gap: 12rem;
  }
  .hero-right {
    height: clamp(900px, 88vh, 1350px);
  }
  .hero-headline {
    font-size: clamp(100px, 4.5vw, 130px);
  }
  .hero-body-lead {
    font-size: clamp(20px, 1.1vw, 23.5px);
    max-width: 65ch;
  }

  .section-headline {
    font-size: clamp(80px, 3.8vw, 104px);
  }
  .section-body {
    font-size: clamp(19px, 1.1vw, 22px);
    max-width: 72ch;
  }
  .lead-text {
    font-size: clamp(22px, 1.3vw, 28px);
  }

  .zahra-inner {
    gap: 200px;
  }
  .trans-image {
    height: 900px;
  }
  .trans-quote {
    max-width: 460px;
  }

  .cred-grid {
    gap: 60px;
  }
  .cred-card {
    padding: 64px 56px;
  }

  .why-grid {
    gap: 48px;
  }
  .why-card-img-wrap {
    height: 360px;
  }
  .why-title {
    font-size: 34px;
  }
  .why-body {
    font-size: 17px;
  }
}
