/* ============================================
   LIFECOACHSANDHYA - Main Stylesheet
   Aesthetic: Luxe Spiritual / Sacred Feminine
   Mobile-First Responsive
============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ---- CSS Variables ---- */
:root {
  --deep-teal: #0d2b2e;
  --teal: #1a4a4f;
  --teal-mid: #2a6b72;
  --teal-light: #3d9aa3;
  --gold: #c9a96e;
  --gold-light: #e0c896;
  --gold-pale: #f5edd8;
  --cream: #faf6ef;
  --warm-white: #fffdf9;
  --text-dark: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #7a7a7a;
  --gradient-hero: linear-gradient(135deg, #0d2b2e 0%, #1a4a4f 40%, #0d2b2e 100%);
  --gradient-gold: linear-gradient(135deg, #c9a96e, #e0c896, #c9a96e);
  --shadow-soft: 0 4px 30px rgba(0,0,0,0.08);
  --shadow-card: 0 8px 40px rgba(13,43,46,0.12);
  --shadow-gold: 0 4px 20px rgba(201,169,110,0.3);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 12px;
  --radius-lg: 24px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
  font-weight: 600;
}
h1 { font-size: clamp(2rem, 8vw, 5rem); }
h2 { font-size: clamp(1.7rem, 5vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 3vw, 2rem); }
h4 { font-size: clamp(1rem, 2.5vw, 1.3rem); }
p { font-size: 1rem; color: var(--text-mid); }

.serif { font-family: 'Cormorant Garamond', serif; }
.italic { font-style: italic; }
.gold { color: var(--gold); }
.teal { color: var(--teal-mid); }

/* ============================================
   NAVBAR
============================================ */

/* Home page hero background */
.home-bg {
  background-image: url('/images/home-hero.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  color: var(--warm-white);
}

.home-hero-overlay {
  background: linear-gradient(180deg, rgba(13,43,46,0.55) 0%, rgba(13,43,46,0.25) 40%, rgba(250,246,239,0) 100%);
  padding-top: 48px; /* offset for fixed navbar */
}
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(13, 43, 46, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,169,110,0.15);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  z-index: 1001;
}
.nav-brand .brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.03em;
}
.nav-brand .brand-sub {
  font-size: 0.6rem;
  color: rgba(201,169,110,0.6);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Desktop nav links - hidden on mobile by default */
.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--gradient-gold);
  color: var(--deep-teal) !important;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-gold); }

/* Hamburger - shown on mobile */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--gold-light);
  transition: var(--transition);
  border-radius: 2px;
  display: block;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav drawer - use max-height transitions to allow smooth slide and correct scrolling */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    /* keep layout but collapse with max-height for animation */
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--deep-teal);
    flex-direction: column;
    padding: 2.5rem 2rem;
    gap: 0;
    align-items: stretch;
    justify-content: flex-start;
    overflow-y: auto;
    border-top: 1px solid rgba(201,169,110,0.15);
    max-height: 0;
    transition: max-height 0.36s cubic-bezier(0.4,0,0.2,1);
    /* hide visually while collapsed */
    visibility: hidden;
  }
  .nav-links.open {
    max-height: calc(100vh - 64px);
    visibility: visible;
  }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links a {
    display: block;
    padding: 1.1rem 0;
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.08em;
  }
  .nav-links a::after { display: none; }
  .nav-links a:hover { color: var(--gold-light); padding-left: 8px; }
  .nav-cta {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.85rem 1.5rem !important;
    text-align: center;
    border-radius: 50px;
    font-size: 1rem !important;
  }
}

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-gold { background: var(--gradient-gold); color: var(--deep-teal); box-shadow: var(--shadow-gold); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,169,110,0.4); }
.btn-outline { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--deep-teal); }
.btn-teal { background: var(--teal); color: white; }
.btn-teal:hover { background: var(--teal-mid); transform: translateY(-2px); }
.btn-white { background: white; color: var(--deep-teal); box-shadow: var(--shadow-soft); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.btn-lg { padding: 1rem 2.2rem; font-size: 1rem; }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.82rem; }

/* ============================================
   LAYOUT UTILITIES
============================================ */
section { padding: 4rem 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; width: 100%; }

/* Responsive grid utilities - use these instead of inline styles */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.grid-2-alt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.grid-expertise {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.grid-policy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* ============================================
   TYPOGRAPHY HELPERS
============================================ */
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  color: var(--deep-teal);
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--teal-mid); }
.section-desc {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.8;
}
.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }
.gold-divider {
  width: 60px; height: 2px;
  background: var(--gradient-gold);
  margin: 1.2rem 0 2rem;
  border-radius: 2px;
}
.gold-divider.center { margin: 1.2rem auto 2rem; }

/* ============================================
   HERO
============================================ */
.hero {
  min-height: 100svh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Ccircle cx='200' cy='200' r='180' fill='none' stroke='rgba(201,169,110,0.05)' stroke-width='1'/%3E%3Ccircle cx='200' cy='200' r='130' fill='none' stroke='rgba(201,169,110,0.05)' stroke-width='1'/%3E%3Ccircle cx='200' cy='200' r='80' fill='none' stroke='rgba(201,169,110,0.07)' stroke-width='1'/%3E%3C/svg%3E") center/600px repeat;
}
.hero-content { position: relative; z-index: 2; padding: 3rem 0; }
.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  flex: 0 0 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.hero h1 { color: var(--warm-white); margin-bottom: 1.25rem; }
.hero h1 span { color: var(--gold-light); }
.hero p { color: rgba(255,255,255,0.75); font-size: 1rem; max-width: 520px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.15;
}
.orb-1 { width: 500px; height: 500px; background: var(--teal-light); top: -100px; right: -150px; }
.orb-2 { width: 300px; height: 300px; background: var(--gold); bottom: -50px; left: 10%; }

/* ============================================
   PAGE HERO (inner pages)
============================================ */
.page-hero {
  background: var(--gradient-hero);
  padding: 7rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Ccircle cx='200' cy='200' r='180' fill='none' stroke='rgba(201,169,110,0.05)' stroke-width='1'/%3E%3C/svg%3E") center/500px repeat;
}
.page-hero h1 { color: var(--warm-white); }
.page-hero h1 span { color: var(--gold-light); }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 600px; margin: 1rem auto 0; font-size: 1rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--gold); }

/* ============================================
   CARDS
============================================ */
.card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(13,43,46,0.15); }

/* ============================================
   CONSULTATION CARDS
============================================ */
.consultation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
  gap: 1.5rem;
}
.consultation-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(13,43,46,0.06);
}
.consultation-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(13,43,46,0.18); }
.card-header {
  background: var(--gradient-hero);
  padding: 1.5rem;
  position: relative;
}
.card-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.card-type {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.2rem;
}
.card-tagline { font-size: 0.82rem; color: var(--gold-light); font-style: italic; }
.card-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--deep-teal);
}
.card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: 1rem; }
.card-desc { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }
.card-meta { display: flex; flex-direction: column; gap: 0.4rem; }
.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-mid);
}
.meta-item svg { color: var(--teal-mid); flex-shrink: 0; }
.card-includes { border-top: 1px solid rgba(0,0,0,0.06); padding-top: 0.9rem; }
.card-includes h5 {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.6rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}
.includes-list li {
  font-size: 0.82rem;
  color: var(--text-mid);
  padding: 0.2rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}
.includes-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}
.card-footer {
  padding: 1rem 1.5rem;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.card-price { display: flex; flex-direction: column; }
.price-label { font-size: 0.65rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; }
.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--deep-teal);
  line-height: 1;
}
.price-amount span { font-size: 0.9rem; font-weight: 400; color: var(--text-light); }
.price-duration { font-size: 0.72rem; color: var(--text-light); }

/* ============================================
   TESTIMONIALS
============================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(13,43,46,0.06);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--gold-pale);
  position: absolute;
  top: -5px; left: 1.2rem;
  line-height: 1;
}
.testimonial-text {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.9rem; color: var(--deep-teal); }
.author-loc { font-size: 0.78rem; color: var(--text-light); }
.stars { color: var(--gold); font-size: 0.82rem; margin-bottom: 0.4rem; }

/* ============================================
   STATS BAR
============================================ */
.stats-bar { background: var(--deep-teal); padding: 2.5rem 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.1em; }

/* ============================================
   PROCESS STEPS
============================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.process-step { text-align: center; padding: 1.5rem 1rem; }
.step-num {
  width: 44px; height: 44px;
  background: var(--gradient-hero);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 auto 1rem;
}
.process-step h4 { color: var(--deep-teal); margin-bottom: 0.4rem; font-size: 1rem; }
.process-step p { font-size: 0.85rem; }

/* ============================================
   ABOUT PAGE
============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--gradient-hero);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  position: relative;
  overflow: hidden;
}
.about-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Ccircle cx='150' cy='150' r='140' fill='none' stroke='rgba(201,169,110,0.1)' stroke-width='1'/%3E%3C/svg%3E") center/300px;
}
.about-badge {
  position: absolute;
  bottom: 1.5rem; right: -1rem;
  background: white;
  border-radius: var(--radius);
  padding: 0.9rem 1.25rem;
  box-shadow: var(--shadow-card);
  text-align: center;
  min-width: 120px;
}
.about-badge .badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--deep-teal);
  line-height: 1;
}
.about-badge .badge-label { font-size: 0.7rem; color: var(--text-light); }
.credentials { display: flex; flex-direction: column; gap: 0.6rem; margin: 1.25rem 0; }
.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.credential-item::before { content: '🌟'; font-size: 0.75rem; margin-top: 0.2rem; flex-shrink: 0; }

/* ============================================
   CONTACT
============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 0.92rem;
}
.contact-icon {
  width: 38px; height: 38px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-form-wrap {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

/* ============================================
   FILTER TABS
============================================ */
.filter-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.filter-tab {
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  border: 1.5px solid rgba(13,43,46,0.12);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--transition);
  background: white;
  font-family: 'DM Sans', sans-serif;
}
.filter-tab:hover { border-color: var(--teal-mid); color: var(--teal-mid); }
.filter-tab.active { background: var(--deep-teal); border-color: var(--deep-teal); color: white; }

/* ============================================
   FAQ
============================================ */
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.07); }
.faq-question {
  padding: 1.1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--deep-teal);
  gap: 1rem;
  user-select: none;
}
.faq-question .faq-icon { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; transition: var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer p { padding-bottom: 1.1rem; font-size: 0.92rem; line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ============================================
   FOOTER
============================================ */
.footer { background: var(--deep-teal); color: rgba(255,255,255,0.7); padding: 3.5rem 0 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(201,169,110,0.15);
  margin-bottom: 1.5rem;
}
.footer-brand .brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 260px; }
.footer-col h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.65rem;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-social { display: flex; gap: 0.65rem; margin-top: 1.25rem; flex-wrap: wrap; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.8rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--deep-teal); border-color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom a { color: var(--gold); }

/* ============================================
   MODAL
============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,43,46,0.75);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 1rem;
  overflow-y: auto;
}
.modal-overlay.active { display: flex; }
.modal {
  background: white;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 500px;
  margin: auto;
  box-shadow: 0 40px 100px rgba(0,0,0,0.3);
  animation: modalIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-header { background: var(--gradient-hero); padding: 1.5rem 1.75rem; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.modal-header h3 { color: white; font-size: 1.4rem; }
.modal-header p { color: var(--gold-light); font-size: 0.88rem; }
.modal-body { padding: 1.5rem 1.75rem; }
.modal-close {
  float: right;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}
.modal-close:hover { color: white; }

/* ============================================
   FORMS
============================================ */
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--deep-teal);
  margin-bottom: 0.35rem;
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: white;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal-mid);
  box-shadow: 0 0 0 3px rgba(42,107,114,0.1);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.form-summary {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  margin-bottom: 1.1rem;
}
.form-summary .summary-label { font-size: 0.7rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; }
.form-summary .summary-value { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 700; color: var(--deep-teal); }
.form-summary .summary-price { font-size: 1.4rem; color: var(--teal-mid); font-family: 'Cormorant Garamond', serif; font-weight: 700; }
.phonepe-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 0.65rem;
  flex-wrap: wrap;
}
.phonepe-badge {
  background: #5f259f;
  color: white;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

/* ============================================
   TOAST
============================================ */
.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  left: 1.5rem;
  z-index: 3000;
  background: var(--deep-teal);
  color: white;
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  transform: translateY(120px);
  opacity: 0;
  transition: var(--transition);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success .toast-icon { color: #4ade80; }
.toast.error .toast-icon { color: #f87171; }

/* ============================================
   SCROLL ANIMATIONS
============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   SERVICE FEATURE GRID (services page)
============================================ */
.service-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.service-feature-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
}
.service-feature-card.teal-border { border-left-color: var(--teal-mid); }
.service-feature-card h4 { color: var(--deep-teal); font-size: 1rem; margin-bottom: 0.4rem; }
.service-feature-card p { font-size: 0.88rem; margin-bottom: 0.75rem; }
.service-feature-card ul { display: flex; flex-direction: column; gap: 0.3rem; }
.service-feature-card ul li {
  font-size: 0.83rem;
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}
.service-feature-card ul li::before { content: '✦'; color: var(--gold); font-size: 0.6rem; margin-top: 0.25rem; flex-shrink: 0; }

/* Mini feature grid (2x2 icon tiles) */
.mini-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.mini-feature-tile {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}
.mini-feature-tile h5 { font-size: 0.92rem; margin-bottom: 0.25rem; }
.mini-feature-tile p { font-size: 0.78rem; }

/* ============================================
   INTRO SECTION 2-COL GRID
============================================ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Expertise items */
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.expertise-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.expertise-item.teal-left { border-left-color: var(--teal-mid); }
.expertise-item h4 { color: var(--deep-teal); font-size: 0.95rem; margin-bottom: 0.25rem; }
.expertise-item p { font-size: 0.83rem; }

/* Philosophy cards */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.philosophy-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.philosophy-card h4 { color: var(--deep-teal); margin-bottom: 0.5rem; font-size: 1.05rem; }
.philosophy-card p { font-size: 0.88rem; }

/* Coaching cards */
.coaching-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.coaching-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.coaching-card h4 { color: var(--deep-teal); margin-bottom: 0.4rem; font-size: 1.05rem; }
.coaching-card p { font-size: 0.85rem; }

/* Featured services section */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

/* ============================================
   RESPONSIVE BREAKPOINTS — TABLET (≤900px)
============================================ */
@media (max-width: 900px) {
  section { padding: 3.5rem 0; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-badge { right: 0; bottom: 1rem; }

  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .intro-grid { grid-template-columns: 1fr; gap: 2rem; }

  .grid-2 { grid-template-columns: 1fr; gap: 2rem; }
  .grid-2-alt { grid-template-columns: 1fr; gap: 2rem; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }

  .process-grid { grid-template-columns: 1fr 1fr; }

  .philosophy-grid { grid-template-columns: 1fr; gap: 1rem; }
  .coaching-grid { grid-template-columns: 1fr; gap: 1rem; }
  .featured-grid { grid-template-columns: 1fr 1fr; }

  .service-cards-grid { grid-template-columns: 1fr; }
  .expertise-grid { grid-template-columns: 1fr; }
}

/* ============================================
   RESPONSIVE BREAKPOINTS — MOBILE (≤640px)
============================================ */
@media (max-width: 640px) {
  section { padding: 2.5rem 0; }
  .container { padding: 0 4%; }

  .page-hero { padding: 5.5rem 0 3rem; }

  /* Stats - 2 cols on mobile */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .stat-number { font-size: 2rem; }

  /* Process - 1 col on mobile */
  .process-grid { grid-template-columns: 1fr; gap: 0.5rem; }
  .process-step { padding: 1rem; }

  /* All grids → single column */
  .grid-2 { grid-template-columns: 1fr; gap: 1.5rem; }
  .grid-2-alt { grid-template-columns: 1fr; gap: 1.5rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .grid-expertise { grid-template-columns: 1fr; }
  .grid-policy { grid-template-columns: 1fr; }

  .intro-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .expertise-grid { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .coaching-grid { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; }
  .mini-feature-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }

  /* Hero */
  .hero { min-height: auto; padding: 5rem 0 3.5rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form-wrap { padding: 1.5rem; }

  /* Modal */
  .modal { border-radius: var(--radius); }
  .modal-header { padding: 1.25rem; }
  .modal-body { padding: 1.25rem; }

  /* Cards */
  .card-footer { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .card-footer .btn { width: 100%; }

  /* About */
  .about-image-placeholder { aspect-ratio: 3/2; font-size: 4rem; }
  .about-badge { position: static; margin-top: 1rem; display: inline-flex; gap: 1rem; align-items: center; }
  .about-badge .badge-num { font-size: 1.5rem; }

  /* Services */
  .service-cards-grid { grid-template-columns: 1fr; }

  /* CTA section buttons */
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; }

  /* Toast full width on mobile */
  .toast { left: 1rem; right: 1rem; bottom: 1rem; }
}

/* ============================================
   VERY SMALL SCREENS (≤380px)
============================================ */
@media (max-width: 380px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .mini-feature-grid { grid-template-columns: 1fr; }
  .filter-tabs { gap: 0.35rem; }
  .filter-tab { padding: 0.4rem 0.9rem; font-size: 0.78rem; }
}

/* ============================================
   HERO — FULL BLEED PHOTO (home page)
============================================ */
.hero-photo {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-photo__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1534796636912-3b95b3ab5986?w=1800&q=85&fit=crop');
  background-size: cover;
  background-position: center;
  transform: scale(.1.00);
  animation: heroZoom 15s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.00); }
  to   { transform: scale(1.5); }
}
.hero-photo__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg,
    rgba(5,18,20,0.54) 0%,
    rgba(13,43,46,0.52) 40%,
    rgba(13,43,46,0.30) 70%,
    rgba(5,18,20,0.70) 100%);
}
.hero-photo .hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 80px;
}
/* All text inside photo hero must be white */
.hero-photo h1          { color: var(--warm-white); }
.hero-photo h1 span     { color: var(--gold-light); }
.hero-photo .hero-eyebrow { color: var(--gold); }
.hero-photo .hero-desc  { color: rgba(255,255,255,0.82); max-width: 520px; margin-bottom: 2rem; }

/* Floating decorative orbs */
.hero-photo .orb-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, #c9a96e 0%, transparent 70%);
  top: -120px; right: -80px;
  filter: blur(60px); opacity: 0.13;
  animation: orbFloat 14s ease-in-out infinite;
}
.hero-photo .orb-2 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, #3d9aa3 0%, transparent 70%);
  bottom: 60px; left: -60px;
  filter: blur(60px); opacity: 0.13;
  animation: orbFloat 18s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-28px); }
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.38);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeUpHint 2s 2s both;
}
.scroll-hint::after {
  content: '';
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(201,169,110,0.55), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.3; transform: scaleY(0.5); }
}
@keyframes fadeUpHint {
  from { opacity: 0; transform: translateX(-50%) translateY(16px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ============================================
   PAGE HERO — PHOTO BACKGROUND (inner pages)
   Used by: about.html
============================================ */
.page-hero-photo {
  position: relative;
  padding: 120px 0 80px;
  text-align: center;
  overflow: hidden;
}
.page-hero-photo__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1600&q=80&fit=crop');
  background-size: cover;
  background-position: center 35%;
}
.page-hero-photo__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
    rgba(5,18,20,0.96) 0%,
    rgba(13,43,46,0.90) 50%,
    rgba(13,43,46,0.84) 100%);
}
.page-hero-photo > .container    { position: relative; z-index: 2; }
.page-hero-photo h1               { color: var(--warm-white); }
.page-hero-photo h1 span          { color: var(--gold-light); }
.page-hero-photo p                { color: rgba(255,255,255,0.78); max-width: 600px; margin: 1rem auto 0; }
.page-hero-photo .breadcrumb a    { color: var(--gold); }
.page-hero-photo .breadcrumb span { color: rgba(255,255,255,0.45); }

/* ============================================
   SHARED: SECTION WITH SUBTLE PHOTO BACKGROUND
   Adds a dim photo watermark behind normal content
============================================ */
.section-bg-photo {
  position: relative;
  overflow: hidden;
}
.section-bg-photo__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.055;
}
.section-bg-photo > .container { position: relative; z-index: 1; }

/* ============================================
   SHARED: DARK CTA SECTION WITH PHOTO OVERLAY
   Used by: home CTA banner, about CTA
============================================ */
.section-cta-photo {
  position: relative;
  overflow: hidden;
}
.section-cta-photo__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.section-cta-photo__overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  opacity: 0.90;
}
.section-cta-photo > .container  { position: relative; z-index: 2; }
/* Force white text inside dark CTA */
.section-cta-photo h2             { color: var(--warm-white); margin-bottom: 0.75rem; }
.section-cta-photo h2 span        { color: var(--gold-light); }
.section-cta-photo p              { color: rgba(255,255,255,0.72); }
.section-cta-photo .section-label { color: var(--gold); }

/* ============================================
   HOME — INTRO IMAGE STACK
============================================ */
.intro-img-stack {
  position: relative;
  height: 500px;
}
.intro-img-stack__main {
  position: absolute;
  top: 0; left: 0;
  width: 78%; height: 86%;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(13,43,46,0.22);
  display: block;
}
.intro-img-stack__accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%; height: 55%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(13,43,46,0.18);
  border: 3px solid white;
  display: block;
}
/* Shared gold circular badge — used in both home and about */
.gold-badge-circle {
  position: absolute;
  background: var(--gradient-gold);
  color: var(--deep-teal);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Cormorant Garamond', serif;
  text-align: center;
  line-height: 1.15;
  font-size: 0.68rem;
  box-shadow: 0 8px 24px rgba(201,169,110,0.42);
  z-index: 4;
  pointer-events: none;
}
.gold-badge-circle strong { display: block; font-size: 1.5rem; line-height: 1; }
/* Variant: home intro stack position */
.intro-img-stack .gold-badge-circle {
  width: 90px; height: 90px;
  top: 50%; right: -14px;
  transform: translateY(-50%);
}

/* ============================================
   HOME — SERVICE IMAGE CARDS (2×2 grid)
============================================ */
.service-img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  display: block;
}
.service-img-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.service-img-card:hover img { transform: scale(1.07); }
.service-img-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(5,18,20,0.92) 0%,
    rgba(13,43,46,0.40) 50%,
    transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem 1.25rem 1.35rem;
}
.service-img-card__overlay h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold-light);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.service-img-card__overlay p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.78);
  margin: 0;
}

/* ============================================
   HOME — PROCESS SECTION IMAGE STRIP
============================================ */
.process-img-strip {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  display: block;
  margin: 2.5rem 0 3rem;
  opacity: 0.86;
}

/* ============================================
   ABOUT — PORTRAIT WITH GOLD FRAME DECORATION
============================================ */
.portrait-wrap {
  position: relative;
  max-width: 420px;
}
/* Top-left gold corner line */
.portrait-wrap__deco-tl {
  position: absolute;
  top: -14px; left: -14px;
  width: 66%; height: 66%;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  border-radius: 4px 0 0 0;
  pointer-events: none; z-index: 3;
}
/* Bottom-right gold corner line */
.portrait-wrap__deco-br {
  position: absolute;
  bottom: 14px; right: -14px;
  width: 66%; height: 66%;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  border-radius: 0 0 4px 0;
  pointer-events: none; z-index: 3;
}
.portrait-wrap__img {
  width: 100%;
  height: 510px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  display: block;
  position: relative; z-index: 1;
}
.portrait-wrap__accent {
  position: absolute;
  bottom: -22px; right: -22px;
  width: 148px; height: 148px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 4px solid white;
  box-shadow: 0 8px 28px rgba(13,43,46,0.22);
  z-index: 4;
  display: block;
}
/* Variant: portrait badge position */
.portrait-wrap .gold-badge-circle {
  width: 86px; height: 86px;
  top: 28px; right: -18px;
}

/* ============================================
   ABOUT — JOURNEY QUOTE STRIP
============================================ */
.journey-strip {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 2.5rem 0;
}
.journey-strip img {
  width: 100%; height: 190px;
  object-fit: cover; display: block;
}
.journey-strip__fade {
  position: absolute; inset: 0;
  background: linear-gradient(to right,
    var(--cream) 0%,
    transparent 28%,
    transparent 72%,
    var(--cream) 100%);
  pointer-events: none;
}
.journey-strip__text {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 0 1.5rem; gap: 0.2rem;
}
.journey-strip__text .section-label { margin-bottom: 0.15rem; }
.journey-strip__text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--deep-teal);
  font-size: clamp(1rem, 2.8vw, 1.7rem);
  text-shadow: 0 1px 10px rgba(250,246,239,0.85);
}

/* ============================================
   ABOUT — PHILOSOPHY SECTION (cream + photo bg)
============================================ */
.philosophy-section {
  position: relative;
  overflow: hidden;
}
.philosophy-section__bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1519681393784-d120267933ba?w=1400&q=70&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
}
.philosophy-section > .container { position: relative; z-index: 1; }

/* ============================================
   ABOUT — EXPERTISE WITH IMAGE MOSAIC
============================================ */
.expertise-mosaic-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
  margin-top: 3rem;
}
.expertise-mosaic {
  position: relative;
  height: 510px;
}
.expertise-mosaic__img {
  position: absolute;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  display: block;
}
.expertise-mosaic__img--top  { top: 0; right: 0; width: 63%; height: 53%; }
.expertise-mosaic__img--mid  { top: 20%; left: 0; width: 54%; height: 44%; border: 3px solid white; z-index: 2; }
.expertise-mosaic__img--bot  { bottom: 0; right: 4%; width: 58%; height: 37%; }
.expertise-mosaic__dot {
  position: absolute;
  top: 42%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient-gold);
  box-shadow: 0 4px 16px rgba(201,169,110,0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--deep-teal);
  z-index: 10;
}

/* ============================================
   RESPONSIVE — ALL PHOTO COMPONENTS
============================================ */
@media (max-width: 900px) {
  /* hero */
  .hero-photo .hero-content { padding-top: 90px; padding-bottom: 70px; }

  /* intro stack */
  .intro-img-stack { height: 330px; }
  .intro-img-stack__main  { width: 84%; height: 80%; }
  .intro-img-stack__accent { width: 54%; height: 50%; }
  .intro-img-stack .gold-badge-circle { width: 74px; height: 74px; right: -4px; font-size: 0.6rem; }
  .intro-img-stack .gold-badge-circle strong { font-size: 1.2rem; }

  /* portrait */
  .portrait-wrap { max-width: 100%; }
  .portrait-wrap__img    { height: 380px; }
  .portrait-wrap__accent { width: 118px; height: 118px; bottom: -14px; right: -10px; }
  .portrait-wrap .gold-badge-circle { width: 74px; height: 74px; right: -8px; }

  /* mosaic */
  .expertise-mosaic-layout { grid-template-columns: 1fr; }
  .expertise-mosaic { height: 280px; }

  /* strips */
  .process-img-strip { height: 155px; }
  .journey-strip img  { height: 155px; }
  .page-hero-photo    { padding: 100px 0 60px; }
}

@media (max-width: 640px) {
  /* hero */
  .hero-photo { min-height: auto; }
  .hero-photo .hero-content { padding-top: 82px; padding-bottom: 56px; }
  .hero-photo .hero-actions { flex-direction: column; width: 100%; }
  .hero-photo .hero-actions .btn { width: 100%; justify-content: center; }
  .scroll-hint { display: none; }

  /* page hero */
  .page-hero-photo { padding: 86px 0 46px; }

  /* intro stack */
  .intro-img-stack { height: 250px; }
  .intro-img-stack__main  { width: 86%; height: 82%; }
  .intro-img-stack__accent { width: 54%; height: 46%; }
  .intro-img-stack .gold-badge-circle { display: none; }

  /* portrait */
  .portrait-wrap__img    { height: 300px; }
  .portrait-wrap__accent { display: none; }
  .portrait-wrap__deco-tl, .portrait-wrap__deco-br { display: none; }
  .portrait-wrap .gold-badge-circle { width: 66px; height: 66px; right: -6px; top: 14px; font-size: 0.58rem; }
  .portrait-wrap .gold-badge-circle strong { font-size: 1.05rem; }

  /* mosaic & strips — hide on mobile */
  .expertise-mosaic-layout { grid-template-columns: 1fr; gap: 2rem; }
  .expertise-mosaic { display: none; }
  .process-img-strip { display: none; }
  .journey-strip img  { height: 130px; }
  .journey-strip__text h3 { font-size: 0.92rem; }
}

/* ============================================
   SPECIFIC BACKGROUND IMAGES (no inline styles)
============================================ */

/* Home page: testimonials section bg */
.bg-testimonials .section-bg-photo__img {
  background-image: url('https://images.unsplash.com/photo-1534796636912-3b95b3ab5986?w=1400&q=70&fit=crop');
}

/* Home page: CTA banner bg */
.bg-home-cta .section-cta-photo__bg {
  background-image: url('https://images.unsplash.com/photo-1419242902214-272b3f66ee7a?w=1400&q=75&fit=crop');
  opacity: 0.22;
}

/* About page: CTA banner bg */
.bg-about-cta .section-cta-photo__bg {
  background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1200&q=75&fit=crop');
  opacity: 0.20;
}
