/*
Theme Name: Krishna Celestial Editorial v1
Theme URI: https://acharyasunilkrishna.com
Author: Acharya Sunil Krishna
Description: v1 fork of Krishna Celestial Editorial — UX-heuristics fixes (CTA standardization, mobile hero, WCAG contrast).
Version: 1.1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: krishna-celestial-editorial-v1
*/

/* =============================================
   1. CSS CUSTOM PROPERTIES
   ============================================= */
:root {
  /* Color Palette, aligned with CLAUDE.md design system */
  /* Dark surfaces use midnight-indigo (oklch ~0.20 0.04 268) — Vedic night-sky tint, replaces flat #1A1A1A */
  --primary: #13182E;
  --primary-2: #13182E;
  --secondary: #5E5E5E;
  --secondary-2: #4A4A4A;
  --tertiary: #ba9a63;
  --tertiary-container: #a08552;
  --white: #FFFFFF;

  /* Surface System (tonal stacking) */
  --surface: #F9F9F9;
  --surface-container-low: #F3F3F3;
  --surface-container-lowest: #FFFFFF;
  --surface-container-high: #E8E8E8;

  /* Accent */
  --gold: #ba9a63;
  --gold-dark: #a08552;
  --gold-darker: #8a6f43;
  --dark: #13182E;
  --dark-2: #1B2140;
  --text-muted: #5E5E5E;
  --border: rgba(102, 95, 77, 0.2);
  --cta-success: #25D366;
  --cta-success-dark: #1fa855;

  /* Typography */
  --body-font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --heading-font: 'Noto Serif', Georgia, serif;
  --transition: 240ms cubic-bezier(0.2, 0.8, 0.2, 1);

  /* Elevation — Ambient Shadows */
  --shadow: 0 18px 42px rgba(27, 28, 26, 0.04);
  --shadow-hover: 0 28px 56px rgba(27, 28, 26, 0.08);
  --shadow-ambient: 0 4px 40px rgba(26, 28, 28, 0.04);

  /* Ghost Border */
  --ghost-border: rgba(102, 95, 77, 0.32);

  /* Spacing scale (4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 96) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --container-pad-mobile: 16px;

  /* Legacy aliases */
  --beige: #F3F3F3;
  --beige-light: #F9F9F9;
  --beige-lighter: #FFFFFF;

  --radius: 0.375rem; /* rounded-md */
  --radius-sm: 0.25rem;
}

/* =============================================
   2. BASE RESET & TYPOGRAPHY
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--body-font);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--secondary);
  background-color: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 500; }
h4 { font-size: 1.25rem; font-weight: 600; }
h5 { font-size: 1.1rem; font-weight: 600; }
h6 { font-size: 1rem; font-weight: 600; }

p { margin-bottom: 1rem; color: var(--secondary); }
p:last-child { margin-bottom: 0; }

a {
  color: var(--primary-2);
  text-decoration: none;
  transition: var(--transition);
}
a:hover { color: var(--gold-darker); text-decoration: none; }
.entry-content a:not(.btn):not(.btn-gold):not(.btn-outline-gold):not(.btn-white):not(.btn-whatsapp),
.article-card-link {
  text-decoration: underline;
  text-decoration-color: rgba(186, 154, 99, 0.5);
  text-underline-offset: 3px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul { list-style: none; padding: 0; margin: 0; }
strong, b { font-weight: 700; color: var(--primary-2); }

::selection {
  background-color: var(--surface-container-low);
  color: var(--primary);
}

/* =============================================
   3. UTILITY CLASSES
   ============================================= */
.section-pad {
  padding: 80px 0;
}
.section-pad-sm {
  padding: 50px 0;
}
.text-gold { color: var(--gold) !important; }
.text-dark-custom { color: var(--primary) !important; }
.bg-beige { background-color: var(--surface-container-low); }
.bg-dark-custom { background-color: var(--primary); }
.bg-gold { background-color: var(--gold); }
.bg-white { background-color: var(--surface-container-lowest); }

/* Section Header Hierarchy — eyebrow with horizontal mark + display headline */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--body-font);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary-2);
  margin-bottom: 0.875rem;
  line-height: 1.2;
}
.text-center .section-tag {
  display: inline-flex;
}
.bg-dark-custom .section-tag,
.dark-section .section-tag,
.footer-section .section-tag,
.team-founder-section .section-tag,
.process-section .section-tag {
  color: var(--gold);
}

.section-title {
  font-family: var(--heading-font);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--primary-2);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--secondary);
  max-width: 60ch;
  line-height: 1.65;
  margin-bottom: 2rem;
}
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* Divider beneath title: keep selector for back-compat but visually retire it
   (the gold mark before the eyebrow now does the gold-accent work) */
.divider-gold {
  display: none;
}
.divider-gold.divider-keep {
  display: block;
  width: 56px;
  height: 2px;
  background-color: var(--gold);
  margin: 1.25rem 0 1.75rem;
}
.divider-gold.divider-keep.center {
  margin-left: auto;
  margin-right: auto;
}

/* =============================================
   4. BUTTONS — Champagne Gold Gradient
   ============================================= */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-image: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--dark);
  font-family: var(--body-font);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: var(--shadow);
}
.btn-gold:hover {
  background-image: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  color: var(--dark);
  transform: scale(0.98);
  box-shadow: var(--shadow-hover);
}
.btn-gold:active {
  transform: scale(0.96);
}
.btn-gold:focus-visible,
.btn-outline-gold:focus-visible,
.btn-white:focus-visible,
.btn-whatsapp:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--surface-container-lowest);
  color: var(--gold);
  font-family: var(--body-font);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-outline-gold:hover {
  background-color: var(--gold);
  color: var(--white);
  transform: scale(0.98);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--surface-container-lowest);
  color: var(--primary);
  font-family: var(--body-font);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-white:hover {
  background-color: var(--gold);
  color: var(--white);
  transform: scale(0.98);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--cta-success);
  color: #0a3a1f;
  font-family: var(--body-font);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--cta-success);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-whatsapp:hover {
  background-color: var(--cta-success-dark);
  border-color: var(--cta-success-dark);
  color: var(--white);
  transform: scale(0.98);
}

/* Nav-bar WhatsApp button: outline-style so it doesn't dominate every page */
.nav-actions .btn-whatsapp {
  background-color: transparent;
  color: #0a6e36;
  border: 1px solid var(--cta-success-dark);
  padding: 10px 18px;
  font-size: 0.875rem;
}
.nav-actions .btn-whatsapp:hover {
  background-color: var(--cta-success-dark);
  color: var(--white);
  border-color: var(--cta-success-dark);
  transform: none;
}
.nav-actions .btn-whatsapp svg {
  fill: #0a6e36;
}
.nav-actions .btn-whatsapp:hover svg {
  fill: currentColor;
}
.btn-whatsapp:active {
  transform: scale(0.96);
}
.btn-whatsapp svg { width: 20px; height: 20px; fill: currentColor; }

/* Ensure SVGs inside all button types stay icon-sized */
.btn-gold svg,
.btn-outline-gold svg,
.btn-white svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: currentColor;
}

/* =============================================
   5. HEADER / NAVBAR — Glassmorphism
   ============================================= */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--white);
  padding: 0;
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

#main-nav.navbar-fixed {
  box-shadow: 0 2px 16px rgba(27, 28, 26, 0.05);
  background-color: var(--white);
  border-bottom-color: var(--ghost-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 48px;
}
.site-logo .logo-icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
}
.site-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.site-logo .logo-name {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-2);
  white-space: nowrap;
}
.site-logo .logo-tagline {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-darker);
}

/* Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu li a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-2);
  padding: 6px 12px;
  border-radius: 4px;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  display: inline-block;
}
.nav-menu li a:hover,
.nav-menu li.current-menu-item a {
  color: var(--gold);
}

/* Nav CTA */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Hamburger */
#mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 10px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}
#mobile-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
#mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--primary-2);
  transition: var(--transition);
  transform-origin: center;
}
#mobile-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
#mobile-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
#mobile-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Nav Collapse */
#nav-collapse {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-grow: 1;
  justify-content: flex-end;
  align-self: center;
}

/* Mobile Nav */
@media (max-width: 991px) {
  #mobile-toggle {
    display: flex;
  }
  #nav-collapse {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background-color: var(--beige-light);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px 24px 24px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-top: 1px solid var(--border);
  }
  #nav-collapse.show {
    display: flex;
  }
  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }
  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  .nav-menu li:last-child { border-bottom: none; }
  .nav-menu li a {
    display: block;
    padding: 12px 4px;
    font-size: 1rem;
  }
  .nav-actions {
    width: 100%;
    padding-top: 16px;
  }
  .nav-actions .btn-whatsapp {
    width: 100%;
    justify-content: center;
  }
}

/* Page offset for fixed nav */
body { padding-top: 72px; }
body.home { background-color: #f7f1e8; }

/* =============================================
   ABOVE-FOLD WRAPPER
   ============================================= */
.above-fold {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 72px);
  overflow-x: hidden;
}

/* =============================================
   6. HERO SECTION
   ============================================= */
.hero-section {
  position: relative;
  min-height: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  background-color: #f7f1e8;
  background-image: url(assets/img/hero-bg.webp);
  background-size: cover;
  background-position: center right;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(112deg, rgba(250,245,237,0.96) 0%, rgba(245,235,221,0.92) 46%, rgba(229,223,213,0.78) 72%, rgba(229,223,213,0.44) 100%);
  z-index: 1;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-circle-wrap {
  position: absolute;
  inset: -60px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  pointer-events: none;
}

.hero-circle-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.5;
  animation: spin 40s infinite linear;
  -webkit-animation: spin 40s infinite linear;
  -moz-animation: spin 40s infinite linear;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 0 32px;
}

.hero-row {
  row-gap: 40px;
}

.hero-copy-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8d6a2f;
  background-color: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
  margin-bottom: 1rem;
  box-shadow: none;
}

.hero-title {
  font-family: var(--heading-font);
  font-size: clamp(1.75rem, 5.2vw, 3.7rem);
  font-weight: 800;
  color: #3d2208;
  line-height: 1.12;
  margin-bottom: 1rem;
  max-width: 14ch;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.hero-services-line {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #8d6a2f;
  margin-bottom: 0.75rem;
}

.hero-subtitle {
  font-size: 0.95rem;
  color: rgba(32,22,15,0.78);
  max-width: 540px;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-cta-group .btn-outline-gold {
  background-color: rgba(255,255,255,0.58);
  color: #8d6a2f;
  border-color: rgba(156,115,55,0.68);
}

.hero-cta-group .btn-outline-gold:hover,
.hero-cta-group .btn-outline-gold:focus-visible {
  background-color: #9c7337;
  border-color: #9c7337;
  color: var(--white);
}

.hero-phone {
  color: #3d2208;
  font-size: 0.975rem;
  font-weight: 500;
  margin-top: 1rem;
  letter-spacing: 0.005em;
}
.hero-phone strong {
  color: #20160f;
  font-size: 1.0625rem;
  font-weight: 700;
}

.hero-image-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 22px;
}

.hero-portrait-shell {
  position: relative;
  width: min(100%, 380px);
  aspect-ratio: 1;
  padding: clamp(18px, 3vw, 24px);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.98) 0%, rgba(247,240,229,0.9) 58%, rgba(234,222,203,0.86) 100%);
  border: 1px solid rgba(186,154,99,0.22);
  box-shadow:
    0 24px 54px rgba(104, 77, 31, 0.14),
    0 8px 32px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: heroPortraitFloat 4.8s ease-in-out infinite;
  will-change: transform;
}

.hero-portrait-shell::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: linear-gradient(140deg, rgba(186,154,99,0.16) 0%, rgba(255,255,255,0) 55%);
  pointer-events: none;
}

.hero-portrait-shell::after {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  border: 10px solid rgba(248, 241, 230, 0.96);
  box-shadow: inset 0 0 0 1px rgba(186,154,99,0.14);
  pointer-events: none;
}

.hero-astro-img {
  position: relative;
  display: block;
  width: calc(100% - 10px);
  max-width: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 49%;
  clip-path: circle(45.9% at 50% 50%);
  transform: scale(1.08);
  box-shadow: 0 18px 44px rgba(39, 25, 11, 0.12);
  z-index: 0;
}

@keyframes heroPortraitFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.hero-decor {
  position: absolute;
  right: -30px;
  top: 52%;
  transform: translateY(-50%);
  width: 320px;
  opacity: 0.11;
  pointer-events: none;
}

@media (max-width: 991px) {
  .above-fold { min-height: 0; overflow-x: hidden; }
  .hero-section { min-height: auto; flex: none; }
  .hero-content { padding: 48px 0 40px; }
  .hero-title { max-width: 12ch; }
  .hero-image-col { margin-top: 8px; padding-top: 0; }
  .hero-decor { display: none; }
}

@media (max-width: 767px) {
  .hero-copy-col {
    text-align: center;
    align-items: center;
  }
  .hero-tag,
  .hero-title,
  .hero-subtitle,
  .hero-services-line,
  .hero-phone,
  .hero-cta-group {
    max-width: 100%;
    width: 100%;
  }
  .hero-tag {
    width: auto;
    max-width: 100%;
    align-self: center;
  }
  .hero-services-line,
  .hero-phone {
    text-align: center;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-image-col {
    padding-left: 15px;
    padding-right: 15px;
  }
  .hero-portrait-shell {
    width: min(100%, 360px);
    animation-duration: 4.2s;
  }
  .hero-content {
    padding: 32px 0 28px;
  }
}

@media (max-width: 479px) {
  .hero-portrait-shell {
    width: min(100%, 280px);
  }
  .hero-content {
    padding: 24px 0 20px;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta-group .btn-whatsapp,
  .hero-cta-group .btn-outline-gold {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-portrait-shell {
    animation: none;
  }
}

/* =============================================
   7. TRUST STRIP
   ============================================= */
.trust-stats-block {
  position: relative;
}

.trust-strip {
  background-color: var(--primary-2);
  padding: 36px 0;
  position: relative;
  overflow: hidden;
}

.trust-strip::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(186,154,99,0.12);
  border: 1px solid rgba(186,154,99,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.trust-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.trust-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.trust-text strong {
  font-family: var(--heading-font);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}
.trust-text span {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}

@media (max-width: 991px) {
  .trust-strip-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 32px;
  }
}

@media (max-width: 575px) {
  .trust-strip { padding: 28px 0; }
  .trust-strip-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .trust-text strong { font-size: 0.9rem; }
  .trust-text span { font-size: 0.72rem; }
}

/* =============================================
   8. STATS SECTION
   ============================================= */
.stats-section {
  background-color: var(--primary-2);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url(assets/img/astrology-bg.png);
  background-size: cover;
  opacity: 0.06;
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stat-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-item:nth-child(2) { transition-delay: 0.15s; }
.stat-item:nth-child(3) { transition-delay: 0.3s; }

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(186,154,99,0.3), transparent);
}

.stat-number {
  font-family: var(--heading-font);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #d4af37;
  line-height: 1;
  margin-bottom: 4px;
  text-shadow: 0 2px 20px rgba(212, 175, 55, 0.4);
}

.stat-divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 12px auto;
  opacity: 0.5;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

@media (max-width: 767px) {
  .stat-item:not(:last-child)::after { display: none; }
  .stats-grid { grid-template-columns: 1fr; gap: 32px; }
  .stats-section { padding: 48px 0; }
}

@media (max-width: 576px) {
  .stats-section { padding: 40px 0; }
}

/* =============================================
   9. SERVICES SECTION
   ============================================= */
.services-section {
  background-color: var(--white);
  background-image: url(assets/img/section-bg.png);
  background-size: cover;
  background-position: center;
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(255,255,255,0.92);
  pointer-events: none;
}

.services-section .container { position: relative; z-index: 1; }

/* =============================================
   SERVICES MAGAZINE — dark slab + asymmetric card grid
   Lead card breathes (1.4×); supporting three are tight.
   Icons are line-art SVG (no emoji).
   ============================================= */

/* Local OKLCH tokens scoped to this section */
.services-magazine {
  --svm-bg: oklch(0.18 0.012 75);              /* warm dark, sandalwood-tinted */
  --svm-card-bg: oklch(0.215 0.014 75);        /* one step lighter than section */
  --svm-card-bg-hover: oklch(0.245 0.018 75);
  --svm-fg: oklch(0.98 0.005 80 / 0.96);
  --svm-muted: oklch(0.98 0.005 80 / 0.62);
  --svm-faint: oklch(0.98 0.005 80 / 0.38);
  --svm-accent: oklch(0.74 0.09 80);           /* gold */
  --svm-accent-soft: oklch(0.74 0.09 80 / 0.4);
  --svm-rule: oklch(0.74 0.09 80 / 0.18);
  --svm-rule-strong: oklch(0.74 0.09 80 / 0.45);

  background-color: var(--svm-bg);
  background-image: url(assets/img/section-bg.png);
  background-size: cover;
  background-position: center;
  padding: clamp(80px, 10vw, 144px) 0;
  position: relative;
  color: var(--svm-fg);
  overflow: hidden;
}
.services-magazine::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    oklch(0.18 0.012 75 / 0.74) 0%,
    oklch(0.20 0.012 75 / 0.68) 100%
  );
  pointer-events: none;
  z-index: 0;
}

/* Localized clean reading area behind the section head — softens stars
   only where the title + subtitle sit, leaving margins decorative */
.services-magazine .svm-head {
  position: relative;
  z-index: 2;
}
.services-magazine .svm-head::before {
  content: "";
  position: absolute;
  inset: -80px -240px;
  background: oklch(0.16 0.012 75 / 0.95);
  border-radius: 999px;
  filter: blur(48px);
  z-index: -1;
  pointer-events: none;
}
.services-magazine .container {
  max-width: 1240px;
  position: relative;
  z-index: 1;
}

/* Section tag override on dark bg: gold instead of dark text */
.services-magazine .section-tag {
  color: var(--svm-accent);
  justify-content: center;
}
.services-magazine .section-title {
  color: var(--svm-fg);
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.services-magazine .section-subtitle {
  font-family: var(--heading-font);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  max-width: 50ch;
  letter-spacing: 0.005em;
  position: relative;
  padding-top: 28px;
}
.services-magazine .section-subtitle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 1px;
  background: var(--gold);
}

/* Header block centered, narrow */
.svm-head {
  margin: 0 auto clamp(48px, 5vw, 80px);
  max-width: 720px;
}

/* Card grid: lead spans 2 rows on the left, three smaller stack on the right */
.svm-cards {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(20px, 2vw, 28px);
  align-items: stretch;
}

.svm-card {
  background: var(--svm-card-bg);
  border: 1px solid var(--svm-rule);
  border-radius: 4px;
  padding: clamp(24px, 2.6vw, 36px);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background-color 240ms cubic-bezier(0.22, 1, 0.36, 1), border-color 240ms cubic-bezier(0.22, 1, 0.36, 1), transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
  isolation: isolate;
  overflow: hidden;
}
.svm-card:hover {
  background: var(--svm-card-bg-hover);
  border-color: var(--svm-rule-strong);
}
.svm-card:focus-within {
  border-color: var(--svm-accent);
}

/* Top-right number watermark — quiet, large, gold-faint */
.svm-card-num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--heading-font);
  font-feature-settings: "tnum" 1, "lnum" 1;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 400;
  color: var(--svm-faint);
  line-height: 1;
  letter-spacing: 0;
  pointer-events: none;
  transition: color 240ms cubic-bezier(0.22, 1, 0.36, 1);
}
.svm-card:hover .svm-card-num { color: var(--svm-accent); }
.svm-card-lead .svm-card-num {
  font-size: clamp(2.75rem, 3.6vw, 3.75rem);
  color: oklch(0.74 0.09 80 / 0.22);
  top: 24px;
  right: 32px;
}

/* Icon */
.svm-card-icon {
  width: clamp(40px, 4vw, 56px);
  height: clamp(40px, 4vw, 56px);
  color: var(--svm-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}
.svm-card-icon svg {
  width: 100%;
  height: 100%;
}
.svm-card:hover .svm-card-icon { transform: rotate(-4deg) scale(1.04); }
.svm-card-lead .svm-card-icon {
  width: clamp(64px, 7vw, 88px);
  height: clamp(64px, 7vw, 88px);
  margin-bottom: 12px;
}

/* Lead-card eyebrow */
.svm-card-eyebrow {
  font-family: var(--body-font);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--svm-accent);
}

/* Names */
.svm-card-name {
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.15;
  color: var(--svm-fg);
  margin: 0;
  letter-spacing: -0.012em;
  font-size: clamp(1.25rem, 1.6vw, 1.5rem);
  transition: color 240ms cubic-bezier(0.22, 1, 0.36, 1);
}
.svm-card:hover .svm-card-name { color: var(--svm-accent); }
.svm-card-lead .svm-card-name {
  font-size: clamp(1.875rem, 2.6vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}

/* Meta strip */
.svm-card-meta {
  font-family: var(--body-font);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--svm-muted);
  margin: 0;
  line-height: 1.5;
}
.svm-card-lead .svm-card-meta {
  font-size: 0.75rem;
  color: oklch(0.74 0.09 80 / 0.85);
  margin-top: 2px;
}

.svm-dot {
  display: inline-block;
  margin: 0 8px;
  color: var(--svm-faint);
}

/* Description */
.svm-card-desc {
  font-family: var(--body-font);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--svm-muted);
  margin: 0;
}
.svm-card-lead .svm-card-desc {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: oklch(0.98 0.005 80 / 0.78);
  max-width: 50ch;
  margin-top: 6px;
}

/* Card link (inside cards) */
.svm-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body-font);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--svm-fg);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--svm-accent);
  width: fit-content;
  margin-top: auto;
  transition: color 240ms cubic-bezier(0.22, 1, 0.36, 1), gap 240ms cubic-bezier(0.22, 1, 0.36, 1);
}
.svm-card-link-sm {
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  border-bottom-color: oklch(0.74 0.09 80 / 0.5);
}
.svm-card:hover .svm-card-link { color: var(--svm-accent); gap: 12px; }
.svm-card-link:focus-visible {
  outline: 2px solid var(--svm-accent);
  outline-offset: 4px;
}

/* Inline arrow */
.svm-arrow {
  display: inline-flex;
  align-items: center;
}
.svm-arrow svg {
  width: 14px;
  height: 14px;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}
.svm-card:hover .svm-arrow svg { transform: translateX(3px); }

/* Lead card extra padding (placement is set per-breakpoint below) */
.svm-card-lead {
  padding: clamp(36px, 3.6vw, 56px);
  gap: 14px;
}

/* DESKTOP placement: lead spans 3 rows in column 1, supporting cards stack in column 2 */
@media (min-width: 992px) {
  .svm-card-lead {
    grid-column: 1;
    grid-row: span 3;
  }
  .svm-card:not(.svm-card-lead):nth-of-type(2) { grid-column: 2; grid-row: 1; }
  .svm-card:not(.svm-card-lead):nth-of-type(3) { grid-column: 2; grid-row: 2; }
  .svm-card:not(.svm-card-lead):nth-of-type(4) { grid-column: 2; grid-row: 3; }
}

/* Footer CTA */
.svm-foot {
  margin-top: clamp(40px, 5vw, 64px);
  display: flex;
  justify-content: center;
}
.svm-foot-cta {
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .svm-card, .svm-card-icon, .svm-card-num, .svm-card-name, .svm-card-link, .svm-arrow svg {
    transition: none !important;
  }
  .svm-card:hover .svm-card-icon { transform: none; }
}

/* Tablet — 2 column equal */
@media (max-width: 991px) {
  .services-magazine { padding: 96px 0 80px; }
  .svm-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .svm-card-lead {
    grid-column: 1 / -1;
    grid-row: 1;
  }
  .svm-card:not(.svm-card-lead):nth-of-type(2) { grid-column: 1; grid-row: 2; }
  .svm-card:not(.svm-card-lead):nth-of-type(3) { grid-column: 2; grid-row: 2; }
  .svm-card:not(.svm-card-lead):nth-of-type(4) { grid-column: 1 / -1; grid-row: 3; }
}

/* Mobile — single column stack */
@media (max-width: 575px) {
  .services-magazine { padding: 64px 0 56px; }
  .svm-head { margin-bottom: 28px; }
  .svm-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  /* Higher specificity to override tablet :nth-of-type rules */
  .svm-cards .svm-card-lead,
  .svm-cards .svm-card:not(.svm-card-lead):nth-of-type(2),
  .svm-cards .svm-card:not(.svm-card-lead):nth-of-type(3),
  .svm-cards .svm-card:not(.svm-card-lead):nth-of-type(4) {
    grid-column: 1 !important;
    grid-row: auto !important;
  }
  .svm-card { padding: 22px 20px; gap: 8px; }
  .svm-card-lead { padding: 26px 22px; gap: 10px; }
  .svm-card-num { top: 14px; right: 16px; font-size: 1.375rem; }
  .svm-card-lead .svm-card-num { font-size: 2.25rem; top: 18px; right: 20px; }
  .svm-card-name { font-size: 1.0625rem; }
  .svm-card-lead .svm-card-name { font-size: 1.5rem; }
  .svm-card-desc { font-size: 0.8125rem; }
  .svm-card-lead .svm-card-desc { font-size: 0.9375rem; }
  .svm-card-meta, .svm-card-lead .svm-card-meta { font-size: 0.625rem; letter-spacing: 0.14em; }
  .svm-card-link { font-size: 0.6875rem; }
  .svm-dot { margin: 0 6px; }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px 20px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.service-card .learn-more {
  margin-top: auto;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--beige-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 auto 12px;
}

.service-card-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.service-card-icon .icon-emoji {
  font-size: 1.4rem;
}

.service-card h3 {
  font-size: 1.05rem;
  color: var(--primary-2);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.service-card .learn-more {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card .learn-more svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.service-card .learn-more:hover {
  gap: 10px;
  color: var(--primary-2);
}

@media (max-width: 991px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* Editorial services layout (homepage) — replaces identical 4-col card grid.
   Lead practice gets weight; supporting practices read as a numbered list. */
.services-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 64px;
  margin-top: 56px;
  align-items: start;
  text-align: left;
}

.services-feature {
  border-top: 1px solid var(--primary-2);
  padding-top: 28px;
}

.services-num {
  display: inline-block;
  font-family: var(--body-font);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-darker);
}

.services-feature .services-num {
  margin-bottom: 28px;
}

.services-feature h3 {
  font-family: var(--heading-font);
  font-size: clamp(1.875rem, 3.6vw, 2.625rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--primary-2);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.services-feature p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--secondary);
  margin-bottom: 28px;
  max-width: 52ch;
}

.services-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body-font);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-2);
  letter-spacing: 0.02em;
  text-decoration: none;
  border-bottom: 1px solid var(--primary-2);
  padding-bottom: 4px;
  transition: var(--transition);
}
.services-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}
.services-link:hover {
  color: var(--gold-darker);
  border-bottom-color: var(--gold-darker);
}
.services-link:hover svg {
  transform: translateX(4px);
}

.services-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
}

.services-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
}

.services-item .services-num {
  font-family: var(--heading-font);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--gold-darker);
  letter-spacing: 0;
  text-transform: none;
  font-feature-settings: "tnum" 1, "lnum" 1;
  line-height: 1.4;
}

.services-item h3 {
  font-family: var(--heading-font);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-2);
  margin-bottom: 6px;
  line-height: 1.3;
}

.services-item p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 10px;
  max-width: 48ch;
}

.services-item .services-link {
  font-size: 0.8rem;
  border-bottom: 0;
  padding-bottom: 0;
}
.services-item .services-link:hover {
  border-bottom: 0;
}

@media (max-width: 991px) {
  .services-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}
@media (max-width: 576px) {
  .services-layout {
    gap: 40px;
    margin-top: 40px;
  }
  .services-feature {
    padding-top: 22px;
  }
  .services-feature .services-num {
    margin-bottom: 18px;
  }
  .services-item {
    grid-template-columns: 40px 1fr;
    gap: 14px;
    padding: 22px 0;
  }
  .services-item .services-num {
    font-size: 1.125rem;
  }
}

/* =============================================
   10. ABOUT SECTION
   ============================================= */
.about-section {
  background-color: var(--beige-light);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background-image: url(assets/img/bg-dark.png);
  background-size: cover;
  opacity: 0.05;
  pointer-events: none;
}

.about-image-wrap {
  position: relative;
}

.about-img-circle {
  border-radius: 50%;
  overflow: hidden;
  width: min(380px, 100%);
  height: auto;
  aspect-ratio: 1;
  margin: 0 auto;
  border: 8px solid var(--white);
  box-shadow: 0 20px 60px rgba(186,154,99,0.25);
}

.about-img-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-decor {
  position: absolute;
  bottom: -20px;
  right: 20px;
  width: 120px;
  opacity: 0.6;
}

.about-content {
  padding-left: 40px;
}

.experience-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--gold);
  color: var(--white);
  border-radius: 12px;
  padding: 16px 24px;
  margin-bottom: 24px;
}
.experience-badge .badge-number {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}
.experience-badge .badge-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
}

.about-list {
  list-style: none;
  margin: 1.5rem 0;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.about-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.75rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* About section scoped overrides */
.about-section-tag { font-size: 0.85rem; letter-spacing: 0.12em; }
.about-section-title { font-size: clamp(2rem, 4vw, 3rem); }
.about-badge-overlay {
  position: absolute;
  bottom: 12px;
  right: 12px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
  z-index: 2;
}

/* Team Cards — equal height */
.team-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.team-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 40px 28px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}

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

.team-card-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--beige-lighter);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border: 3px solid var(--gold);
  flex-shrink: 0;
}

.team-card h3 {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  color: var(--primary-2);
  margin-bottom: 10px;
}

.team-card-role {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.team-card-bio {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  flex: 1;
  margin: 0;
}

@media (max-width: 991px) {
  .team-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .team-cards-grid { grid-template-columns: 1fr; }
}

@media (max-width: 991px) {
  .about-content { padding-left: 0; padding-top: 40px; }
  .about-img-circle { width: min(280px, 100%); height: auto; }
  .about-badge-overlay { right: calc(50% - 140px); }
}

/* =============================================
   11. WHY CLIENTS RETURN
   ============================================= */
.why-clients-section {
  background-color: var(--white);
  background-image: url(assets/img/bg-dark.png);
  background-size: cover;
  background-position: center;
  position: relative;
}
.why-clients-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(255,255,255,0.94);
  pointer-events: none;
}
.why-clients-section .container { position: relative; z-index: 1; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.why-card {
  background: var(--beige-lighter);
  border-radius: 12px;
  padding: 40px 36px;
  border-left: 4px solid var(--gold);
}

.why-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--primary-2);
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

@media (max-width: 767px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* =============================================
   12. CONSULTATION PROCESS
   ============================================= */
.process-section {
  background-color: var(--primary-2);
  background-image: url(assets/img/astrology-bg.png);
  background-size: cover;
  position: relative;
}
.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(19,24,46,0.9);
  pointer-events: none;
}
.process-section .container { position: relative; z-index: 1; }

.process-section .section-title { color: var(--white); }
.services-section .section-title { font-weight: 900; }
.process-section .section-subtitle { color: rgba(255,255,255,0.65); }

/* ── Section heading cadence variations ── */

/* Process: left-aligned editorial heading (was centered) */
.process-head {
  max-width: 60ch;
  margin-bottom: 56px;
}
.process-head .section-title { margin-bottom: 14px; }
.process-head .section-subtitle { margin-bottom: 0; }

/* Testimonials: minimal italic chapter-mark heading (no eyebrow, no subtitle) */
.testimonials-head { margin-bottom: 48px; }
.testimonials-headline {
  font-family: var(--heading-font);
  font-size: clamp(1.4rem, 2.6vw, 1.95rem);
  font-style: italic;
  font-weight: 500;
  color: var(--primary-2);
  line-height: 1.25;
  letter-spacing: -0.005em;
  margin: 0 auto;
  max-width: 28ch;
}

/* YouTube: title + subtitle only (no eyebrow, no divider) */
.yt-head { margin-bottom: 48px; }
.yt-head .section-title { margin-bottom: 14px; }
.yt-head .section-subtitle { margin-top: 0; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent, var(--gold));
  opacity: 0.4;
}

.process-section .process-step {
  text-align: center;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-section .step-number {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-family: var(--heading-font);
  font-size: 1.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.process-step h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.process-step p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.7;
}

.process-checklist {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.process-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}
.process-checklist li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
}

@media (max-width: 767px) {
  .process-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-grid::before { display: none; }
}

/* =============================================
   13. YOUTUBE SECTION
   ============================================= */
.youtube-section {
  background-color: var(--beige-light);
  text-align: center;
}

.youtube-inner {
  max-width: 700px;
  margin: 0 auto;
}

.youtube-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #C40000;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 50px;
  transition: var(--transition);
  margin-top: 2rem;
}
.youtube-btn:hover {
  background: #A30000;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,0,0,0.3);
}
.youtube-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* =============================================
   14. ARTICLES SECTION
   ============================================= */
.articles-section {
  background-color: var(--white);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.article-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  background: var(--white);
}

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

.article-thumb {
  height: 200px;
  overflow: hidden;
}

.article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.article-card:hover .article-thumb img {
  transform: scale(1.05);
}

.article-content {
  padding: 24px;
}

.article-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-darker);
  margin-bottom: 8px;
}

.article-content h3 {
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 10px;
}

.article-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.article-read-more {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
}
.article-read-more:hover { color: var(--primary-2); }

@media (max-width: 767px) {
  .articles-grid { grid-template-columns: 1fr; }
}
@media (max-width: 991px) and (min-width: 768px) {
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-grid .article-card:last-child { display: none; }
}

/* =============================================
   15. BOOK CTA SECTION
   ============================================= */
.book-cta-section {
  background-color: var(--dark);
  background-image: url(assets/img/star-bg.png);
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.book-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(19,24,46,0.88), rgba(19,24,46,0.96));
  pointer-events: none;
}

.book-cta-section .container { position: relative; z-index: 1; }

.book-cta-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.book-cta-inner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.book-cta-inner p {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.book-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

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

/* Section eyebrow on dark CTA: gold accent on navy (passes AA strongly) */
.book-cta-section .section-tag {
  background-color: transparent;
  color: var(--gold);
  border: 1px solid rgba(186, 154, 99, 0.4);
}

.book-cta-decor-left {
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  opacity: 0.15;
  pointer-events: none;
}

.book-cta-decor-right {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  opacity: 0.15;
  pointer-events: none;
  transform: translateY(-50%) scaleX(-1);
}

/* =============================================
   16. FOOTER  (editorial / letterhead, 2026)
   ============================================= */
.site-footer {
  background-color: var(--dark);
  color: rgba(255,255,255,0.78);
}

/* Single hairline at the top, replacing the gradient bar */
.footer-divider {
  height: 1px;
  background: rgba(186,154,99,0.22);
}

.footer-body {
  position: relative;
  isolation: isolate;
  /* Fallback for browsers without image-set() (rare; pre-2022) */
  background-image: url(assets/img/footer-bg.jpg);
  /* Modern: WebP (~71KB) with JPEG fallback (~353KB) */
  background-image: image-set(
    url(assets/img/footer-bg.webp) type("image/webp"),
    url(assets/img/footer-bg.jpg) type("image/jpeg")
  );
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
/* Mobile: smaller-resolution variant (22KB WebP / 95KB JPEG) */
@media (max-width: 768px) {
  .footer-body {
    background-image: url(assets/img/footer-bg-mobile.jpg);
    background-image: image-set(
      url(assets/img/footer-bg-mobile.webp) type("image/webp"),
      url(assets/img/footer-bg-mobile.jpg) type("image/jpeg")
    );
  }
}
.footer-body::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg,
      rgba(19,24,46,0.82) 0%,
      rgba(19,24,46,0.92) 55%,
      rgba(19,24,46,0.985) 100%);
  pointer-events: none;
}

.footer-container {
  position: relative;
  z-index: 1;
  padding-top: clamp(72px, 8vw, 104px);
  padding-bottom: 0;
}

/* Asymmetric grid — identity widest, practice tight, reach for data */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr 1.05fr;
  gap: clamp(40px, 5vw, 88px);
  padding-bottom: 64px;
}

/* ── Identity ── */
.footer-wordmark {
  font-family: var(--heading-font);
  font-size: clamp(1.4rem, 1.6vw, 1.65rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.005em;
  line-height: 1.15;
  margin: 0 0 10px;
}
.footer-tagline {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 32px;
}
.footer-bio {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.74);
  max-width: 38ch;
  margin: 0;
}

/* ── Eyebrow labels (replace .footer-col-title) ── */
.footer-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin: 0 0 22px;
}

/* ── Practice list — typographic, no decorative dashes ── */
.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-list li { margin-bottom: 12px; }
.footer-list a {
  color: rgba(255,255,255,0.82);
  font-size: 0.98rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-list a:hover,
.footer-list a:focus-visible { color: var(--gold); }

/* ── Reach column — letterhead-style data list ── */
.footer-contact {
  margin: 0 0 36px;
}
.footer-contact dt {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  margin: 0 0 6px;
}
.footer-contact dd {
  margin: 0 0 22px;
  font-size: 0.98rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.55;
}
.footer-contact dd:last-child { margin-bottom: 0; }
.footer-contact dd a {
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  border-bottom: 1px solid rgba(186,154,99,0.4);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-bottom-color 0.2s ease;
}
.footer-contact dd a:hover,
.footer-contact dd a:focus-visible {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.footer-mute {
  display: inline-block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* ── CTA — typographic action, not a pill button ── */
.footer-cta {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--heading-font);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 6px;
  transition: gap 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.2s ease, border-bottom-color 0.2s ease;
}
.footer-cta-arrow {
  font-family: var(--body-font);
  font-weight: 400;
  color: var(--gold);
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.footer-cta:hover,
.footer-cta:focus-visible {
  gap: 16px;
  color: var(--gold);
}
.footer-cta:hover .footer-cta-arrow,
.footer-cta:focus-visible .footer-cta-arrow {
  transform: translateX(4px);
}

/* ── Bottom Bar — copyright + secondary nav + social, all text ── */
.footer-bottom {
  padding: 28px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.footer-copyright {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
  font-weight: 500;
}
.footer-secondary {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: center;
}
.footer-secondary a,
.footer-social a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-secondary a:hover,
.footer-secondary a:focus-visible,
.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--gold);
}
.footer-social {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
/* Vertical separators between social labels for clearer rhythm */
.footer-social li {
  position: relative;
  padding-right: 24px;
}
.footer-social li:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background: rgba(186,154,99,0.35);
}
.footer-social li:last-child { padding-right: 0; }

/* ── Responsive ── */
@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .footer-identity {
    grid-column: 1 / -1;
    max-width: 600px;
  }
  .footer-bio { max-width: 60ch; }
  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 18px;
  }
  .footer-secondary { justify-content: flex-start; }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .footer-container { padding-top: 56px; }
  .footer-secondary,
  .footer-social { gap: 18px; }
}

/* =============================================
   17. PAGE TEMPLATES
   ============================================= */
.page-header-section {
  background-color: var(--primary-2);
  background-image: url(assets/img/hero-bg.webp);
  background-size: cover;
  background-position: center;
  padding: 56px 0 48px;
  text-align: center;
  position: relative;
}
.page-header-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.85);
}
.page-header-section .container { position: relative; z-index: 1; max-width: 720px; }
.page-header-section h1 {
  color: var(--primary-2);
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  line-height: 1.12;
  margin: 8px 0 12px;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.page-header-section .page-header-intro,
.page-header-section .breadcrumb-wrap {
  max-width: 100%;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.page-header-section .breadcrumb-wrap {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 14px;
}
.page-header-section .breadcrumb-wrap a {
  color: var(--primary-2);
  border-bottom: 1px solid var(--ghost-border);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.page-header-section .breadcrumb-wrap a:hover,
.page-header-section .breadcrumb-wrap a:focus-visible {
  color: var(--gold-darker);
  border-bottom-color: var(--gold-darker);
}
@media (max-width: 575px) {
  .page-header-section { padding: 40px 0 32px; }
  .page-header-section .container { padding-left: 16px !important; padding-right: 16px !important; }
}

/* About page eyebrow label (replaces inline gold style) */
.about-eyebrow {
  color: var(--gold-darker);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

/* Services-section CTA: left-aligned to match editorial layout above */
.services-cta-row {
  margin-top: var(--space-7);
  padding-top: var(--space-5);
  border-top: 1px solid var(--border);
  text-align: left;
}
@media (max-width: 575px) {
  .services-cta-row { text-align: center; }
  .services-cta-row .btn-gold { width: 100%; justify-content: center; }
}

/* Polished footer rhythm (P3) */
.footer-bottom { padding-top: var(--space-5); padding-bottom: var(--space-5); }
.footer-bottom-links { gap: var(--space-5); }

/* Services Page */
.service-detail-block {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail-block:nth-child(even) {
  background-color: var(--beige-light);
}
.service-detail-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.service-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1.5rem;
}
.keyword-tag {
  background: var(--beige-lighter);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid var(--border);
}

/* Services Page — Anchor Nav */
.services-anchor-nav {
  background: var(--beige-light);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 72px;
  z-index: 100;
}
.services-anchor-nav .container {
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  position: relative;
  /* Fade right edge when overflowing to hint scrollability */
  -webkit-mask-image: linear-gradient(to right, black 0, black calc(100% - 32px), transparent 100%);
  mask-image: linear-gradient(to right, black 0, black calc(100% - 32px), transparent 100%);
}
.services-anchor-nav .container::-webkit-scrollbar { display: none; }
.services-anchor-nav a {
  flex-shrink: 0;
  display: inline-block;
  padding: 14px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.services-anchor-nav a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Services Page — Intro text */
.page-header-intro {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 16px auto 8px;
}

/* Services Page — Benefits List */
.service-benefits {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}
.service-benefits li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.5;
}
.service-benefits li svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 1px;
  width: 16px;
  height: 16px;
}

/* Services Page — Detail Image */
.service-detail-img {
  max-width: 360px;
  width: 100%;
  border-radius: 16px;
  will-change: transform;
}

/* Parallax clip wrapper — prevents image overflow during travel */
.service-img-parallax {
  overflow: hidden;
  border-radius: 16px;
  display: inline-block;
}

/* Vastu diagram */
.vastu-diagram-img {
  border-radius: 50%;
  box-shadow: 0 8px 40px rgba(186,154,99,0.2);
  max-width: 380px;
}

/* Circular brand-asset illustrations: Karmic, Numerology, Palmist
   Match Vastu's visual weight; assets already include their own gold ring,
   so we keep border-radius at 50% only to clip any anti-aliased fringe. */
.service-circle-img {
  max-width: 380px;
  border-radius: 50%;
  box-shadow: 0 8px 40px rgba(186,154,99,0.16);
  background: transparent;
}

/* Kundli chart — circular treatment, matches Vastu / Karmic / Numerology */
.kundli-chart-img {
  width: 100%;
  max-width: 380px;
  border-radius: 50%;
  box-shadow: 0 8px 40px rgba(186,154,99,0.16);
  background: transparent;
}

/* Sub-Services Section */
.sub-services-section {
  background: var(--beige-lighter);
}

/* Seek Grid — bento gallery of "scenarios people show up with".
   Lead tile carries weight (gold-tinted), three secondary tiles share
   a paper-white background with hairline borders. Variation prevents
   the identical-card-grid AI tell. */
.seek-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1080px;
  margin: 0 auto;
}
.seek-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 30px;
  background: oklch(0.992 0.005 80);
  border: 1px solid rgba(186, 154, 99, 0.18);
  border-radius: 4px;
  color: var(--dark);
  transition:
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 320ms cubic-bezier(0.16, 1, 0.3, 1),
    background-color 320ms cubic-bezier(0.16, 1, 0.3, 1);
}
.seek-tile:hover {
  border-color: rgba(186, 154, 99, 0.45);
  transform: translateY(-2px);
}
.seek-tile--lead {
  grid-column: 1;
  grid-row: 1 / span 3;
  padding: 44px 44px 40px;
  gap: 18px;
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(186, 154, 99, 0.10), transparent 55%),
    oklch(0.965 0.012 82);
  border-color: rgba(186, 154, 99, 0.32);
}
.seek-tile--lead:hover { border-color: rgba(186, 154, 99, 0.55); }

.seek-tile-mark {
  display: inline-flex;
  width: 44px;
  height: 44px;
  color: var(--gold);
  align-items: center;
  justify-content: center;
}
.seek-tile-mark svg { width: 100%; height: 100%; }
.seek-tile--lead .seek-tile-mark {
  width: 56px;
  height: 56px;
}

.seek-tile-tag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--body-font);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 5px 11px 4px;
  border: 1px solid rgba(186, 154, 99, 0.45);
  border-radius: 999px;
  line-height: 1;
}

.seek-tile-name {
  font-family: var(--heading-font);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.seek-tile--lead .seek-tile-name { font-size: 2.05rem; }

.seek-tile-line {
  font-size: 0.95rem;
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.65;
  margin: 0;
  max-width: 42ch;
}
.seek-tile--lead .seek-tile-line {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.78);
  max-width: 48ch;
}

.seek-tile-meta {
  margin-top: auto;
  font-family: var(--body-font);
  font-size: 0.78rem;
  color: rgba(26, 26, 26, 0.55);
  letter-spacing: 0.04em;
}

.seek-aside {
  max-width: 880px;
  margin: 36px auto 0;
  padding: 0 8px;
  font-family: var(--heading-font);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(26, 26, 26, 0.58);
  text-align: center;
}

@media (max-width: 900px) {
  .seek-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .seek-tile--lead {
    grid-column: 1;
    grid-row: auto;
    padding: 36px 28px 32px;
  }
  .seek-tile--lead .seek-tile-name { font-size: 1.65rem; }
  .seek-tile-name { font-size: 1.2rem; }
  .seek-tile-line { font-size: 0.92rem; }
}
@media (max-width: 600px) {
  .seek-tile { padding: 22px 22px; }
  .seek-tile--lead { padding: 28px 24px 26px; }
  .services-anchor-nav { top: 60px; }
  .services-anchor-nav a { padding: 12px 16px; }
}

/* Booking Steps */
.booking-steps-section {
  background: var(--beige-lighter);
}
.booking-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}
.booking-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border-radius: 12px;
  padding: 24px 20px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.booking-step:hover {
  box-shadow: var(--shadow);
  border-color: rgba(186,154,99,0.4);
}
.booking-step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.booking-step-body h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--primary-2);
}
.booking-step-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.booking-steps-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(37,211,102,0.08);
  border: 1px solid rgba(37,211,102,0.25);
  border-radius: 10px;
  padding: 14px 24px;
  font-size: 0.9rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  text-align: center;
}
.booking-steps-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: #25D366;
  flex-shrink: 0;
}
.booking-steps-whatsapp a {
  color: #25D366;
  font-weight: 600;
}
.booking-steps-whatsapp a:hover {
  color: #1ea952;
}
@media (max-width: 991px) {
  .booking-steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .booking-steps-grid { grid-template-columns: 1fr; }
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-info-card {
  background: var(--beige-lighter);
  border-radius: 12px;
  padding: 40px;
}
.contact-form {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  border: 1px solid var(--border);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 6px;
  color: var(--primary-2);
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--body-font);
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--white);
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(186,154,99,0.15);
}
textarea.form-control { resize: vertical; min-height: 120px; }
.appointment-note {
  background: rgba(186,154,99,0.1);
  border: 1px solid rgba(186,154,99,0.3);
  border-radius: 8px;
  padding: 16px;
  margin-top: 20px;
  font-size: 0.875rem;
  color: var(--text-muted);
}
@media (max-width: 767px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* =============================================
   18. BLOG
   ============================================= */
.blog-grid-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  padding: 60px 0;
}
.blog-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.blog-card-thumb {
  height: 220px;
  overflow: hidden;
}
.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-thumb img { transform: scale(1.05); }
.blog-card-body { padding: 28px; }
.blog-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.blog-meta .cat { color: var(--gold); font-weight: 700; }
.blog-card-body h2 { font-size: 1.25rem; margin-bottom: 12px; }
.blog-card-body p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; }
.single-post-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0;
}
.single-post-content .entry-content { font-size: 1.05rem; line-height: 1.85; }
.single-post-content .entry-content h2,
.single-post-content .entry-content h3 { margin: 2rem 0 1rem; }
@media (max-width: 767px) {
  .blog-grid-wrap { grid-template-columns: 1fr; }
}

/* =============================================
   19. 404
   ============================================= */
.error-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0;
}
.error-404 .error-number {
  font-family: var(--heading-font);
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0;
}
.error-404 h2 { margin-bottom: 1rem; }
.error-404 p { color: var(--text-muted); margin-bottom: 2rem; }

/* =============================================
   20. TEAM PAGE
   ============================================= */
.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--primary-2);
  border: 4px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(186,154,99,0.2);
}
.team-avatar .initials {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.team-avatar.large {
  width: 164px;
  height: 164px;
}
.team-avatar.large .initials {
  font-size: 2.1rem;
}
.team-role {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.team-featured-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 52px 48px;
  display: flex;
  gap: 52px;
  align-items: flex-start;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.team-featured-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark), transparent);
}
.team-member-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 44px 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.team-member-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}
.team-member-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}
.team-member-card:hover::before { opacity: 1; }
.team-expertise-tag {
  display: inline-block;
  background: var(--beige-lighter);
  color: var(--gold);
  font-size: 0.73rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid rgba(186,154,99,0.25);
  margin: 3px 4px 3px 0;
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .team-featured-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 24px;
    gap: 28px;
  }
  .team-featured-card .divider-gold { margin-left: auto; margin-right: auto; }
}

/* =============================================
   20b. TEAM PAGE — ALTERNATING LAYOUT
   ============================================= */

/* --- Founder section: dark background --- */
.team-founder-section {
  background: var(--primary-2);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

/* --- Supporting members: light background --- */
.team-light-section {
  background-color: var(--beige-light);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

/* Decorative floating planets (dark section only) */
.team-decor {
  position: absolute;
  pointer-events: none;
  opacity: 0.25;
  z-index: 0;
}
.team-decor-1 {
  top: 12%;
  right: -60px;
  width: 200px;
}
.team-decor-2 {
  bottom: 18%;
  left: -80px;
  width: 240px;
}

/* Alternating row */
.team-alt-row {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 60px 0;
  position: relative;
  z-index: 1;
}

/* Dark section dividers */
.team-founder-section .team-alt-row {
  border-top: 1px solid rgba(255,255,255,0.06);
}
.team-founder-section .team-alt-row:last-of-type {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Light section dividers */
.team-light-section .team-alt-row {
  border-top: 1px solid rgba(26,26,26,0.08);
}
.team-light-section .team-alt-row:last-of-type {
  border-bottom: 1px solid rgba(26,26,26,0.08);
}

/* Content side */
.team-alt-content {
  flex: 1;
  min-width: 0;
}

/* Image side */
.team-alt-image {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Reversed layout (image left, content right) */
.team-alt-reversed {
  flex-direction: row-reverse;
}

/* Avatar — dark section */
.team-alt-avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--dark-2);
  border: 4px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(186,154,99,0.18), 0 0 0 12px rgba(186,154,99,0.06);
  overflow: hidden;
}

/* Avatar — light section */
.team-light-section .team-alt-avatar {
  background: var(--white);
  box-shadow: 0 12px 40px rgba(186,154,99,0.12), 0 0 0 12px rgba(186,154,99,0.08);
}

.team-alt-avatar .initials {
  font-family: var(--heading-font);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.06em;
}
.team-alt-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Experience badge */
.team-alt-exp {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team-alt-exp-num {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.team-alt-exp-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
/* Light section experience label */
.team-light-section .team-alt-exp-label {
  color: rgba(26,26,26,0.45);
}

/* Label (role) */
.team-alt-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
/* Label — light section: dark for readability on beige */
.team-light-section .team-alt-label {
  color: var(--primary-2);
}

/* Name — dark section */
.team-alt-name {
  font-family: var(--heading-font);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}
/* Name — light section */
.team-light-section .team-alt-name {
  color: var(--primary-2);
}

/* Description — dark section */
.team-alt-desc {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 12px;
}
/* Description — light section */
.team-light-section .team-alt-desc {
  color: rgba(26,26,26,0.6);
}

/* Tags */
.team-alt-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 24px;
}
.team-alt-tag {
  display: inline-block;
  background: rgba(186,154,99,0.1);
  color: var(--gold);
  font-size: 0.73rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid rgba(186,154,99,0.25);
  letter-spacing: 0.03em;
}
/* Tags — light section: dark text for readability on beige */
.team-light-section .team-alt-tag {
  background: rgba(186,154,99,0.1);
  color: var(--primary-2);
  border-color: rgba(186,154,99,0.25);
}

/* Social icons — dark section */
.team-alt-social {
  display: flex;
  gap: 12px;
}
.team-alt-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.team-alt-social a svg {
  width: 16px;
  height: 16px;
  fill: rgba(255,255,255,0.5);
  transition: fill 0.2s;
}
.team-alt-social a:hover {
  border-color: var(--gold);
  background: rgba(186,154,99,0.12);
  transform: translateY(-2px);
}
.team-alt-social a:hover svg {
  fill: var(--gold);
}

/* Social icons — light section */
.team-light-section .team-alt-social a {
  border-color: rgba(26,26,26,0.15);
}
.team-light-section .team-alt-social a svg {
  fill: rgba(26,26,26,0.4);
}
.team-light-section .team-alt-social a:hover {
  border-color: var(--gold);
  background: rgba(186,154,99,0.1);
}
.team-light-section .team-alt-social a:hover svg {
  fill: var(--gold);
}

/* Light section header text */
.team-light-section .team-section-header h2 {
  color: var(--primary-2);
}
.team-light-section .team-section-header p {
  color: rgba(26,26,26,0.55);
}

/* Responsive — Team Alternating */
@media (max-width: 991px) {
  .team-alt-row {
    gap: 40px;
  }
  .team-alt-avatar {
    width: 160px;
    height: 160px;
  }
  .team-alt-avatar .initials {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .team-founder-section,
  .team-light-section {
    padding: 60px 0 40px;
  }
  .team-alt-row,
  .team-alt-reversed {
    flex-direction: column;
    text-align: center;
    gap: 28px;
    padding: 48px 0;
  }
  .team-alt-image {
    order: -1;
  }
  .team-alt-avatar {
    width: 150px;
    height: 150px;
  }
  .team-alt-avatar .initials {
    font-size: 1.8rem;
  }
  .team-alt-tags {
    justify-content: center;
  }
  .team-alt-social {
    justify-content: center;
  }
  .team-alt-content .divider-gold {
    margin-left: auto;
    margin-right: auto;
  }
  .team-decor { display: none; }
}

/* =============================================
   21. RESPONSIVE FINAL
   ============================================= */
@media (max-width: 991px) {
  .section-pad { padding: 60px 0; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
}
@media (max-width: 767px) {
  .section-pad { padding: 48px 0; }
  body { padding-top: 65px; }
  #main-nav { height: 65px; }
  .nav-inner { height: 65px; }
  body.menu-open { overflow: hidden; }
}

/* =============================================
   22. MOBILE RESPONSIVE ENHANCEMENTS
   ============================================= */

/* Fix: nav dropdown starts immediately below the 65px nav bar on mobile */
@media (max-width: 767px) {
  #nav-collapse {
    top: 65px;
  }
}

/* Fix: anchor nav sticky tops — align with mobile nav height */
@media (max-width: 767px) {
  .services-anchor-nav { top: 65px; }
  .ssv2-anchor-nav     { top: 65px; }
  .ssv2-sticky         { top: 65px; height: 220px; }
}

/* Section-pad-sm reduction on mobile */
@media (max-width: 767px) {
  .section-pad-sm { padding: 36px 0; }
}

/* Stats: 2-col at mid-mobile instead of jumping straight to 1-col */
@media (max-width: 767px) and (min-width: 577px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Hero: restore horizontal breathing room on mobile (hero-content overrides Bootstrap container padding) */
@media (max-width: 767px) {
  .hero-content {
    padding: 48px 20px;
  }
}
@media (max-width: 480px) {
  .hero-content {
    padding: 40px 16px;
  }
}

/* Hero CTA: stack buttons on very small screens */
@media (max-width: 480px) {
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-cta-group a {
    text-align: center;
    justify-content: center;
    width: 100%;
  }
  .hero-phone {
    font-size: 0.8rem;
    line-height: 1.6;
  }
}

/* Reduce button padding on small phones */
@media (max-width: 480px) {
  .btn-gold,
  .btn-white,
  .btn-whatsapp {
    padding: 12px 22px;
    font-size: 0.9rem;
  }
  .btn-outline-gold {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* About image: tighter on 375px */
@media (max-width: 480px) {
  .about-img-circle { width: 220px; height: 220px; }
}

/* Why-clients cards: reduce inner padding on small screens */
@media (max-width: 576px) {
  .why-card { padding: 28px 20px; }
}

/* Process checklist: tighter gap on mobile */
@media (max-width: 576px) {
  .process-checklist { gap: 16px; }
  .process-step { padding: 0 8px; }
}

/* Contact page: reduce card padding on small screens */
@media (max-width: 576px) {
  .contact-info-card { padding: 28px 20px; }
  .contact-form      { padding: 28px 20px; }
}

/* Footer bottom: centre-stack on small phones */
@media (max-width: 576px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-bottom-links { justify-content: center; }
}

/* Book CTA buttons: stack on very small screens */
@media (max-width: 480px) {
  .book-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .book-cta-buttons a {
    width: 100%;
    justify-content: center;
  }
}

/* Team featured card: already stacks at 767px — tighten padding at 480px */
@media (max-width: 480px) {
  .team-featured-card { padding: 28px 16px; gap: 20px; }
}

/* Service detail blocks: full-width image col on mobile */
@media (max-width: 767px) {
  .service-detail-img  { max-width: 100%; }
  .vastu-diagram-img   { max-width: 260px; }
  .service-circle-img  { max-width: 260px; }
  .kundli-chart-img    { max-width: 100%; }
}

/* ssv2 item: reduce min-height on small phones to avoid excessive scrolling */
@media (max-width: 480px) {
  .ssv2-item { min-height: auto; padding: 32px 0; }
  .ssv2-sticky { height: 200px; }
}

/* Logo: hide tagline on very narrow screens to prevent overflow */
@media (max-width: 360px) {
  .site-logo .logo-tagline { display: none; }
  .site-logo .logo-name    { font-size: 0.95rem; }
}


/* ==========================================================================
   Section 20 — Services v2 Sticky Scroll
   ========================================================================== */

/* Header */
.ssv2-header {
  background: var(--primary-2);
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ssv2-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/img/star-bg.png') center/cover;
  opacity: 0.08;
}
.ssv2-header .container { position: relative; }
.ssv2-header-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.ssv2-header-title {
  font-family: var(--heading-font);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: #fff;
  margin-bottom: 16px;
}
.ssv2-header-sub {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Wrap */
.ssv2-wrap {
  background: #fff;
  padding: 0 0 80px;
}
.ssv2-inner {
  display: flex;
  align-items: stretch;
  gap: 60px;
}

/* Left scrolling column */
.ssv2-left { flex: 1; min-width: 0; }

.ssv2-item {
  min-height: 76vh;
  display: flex;
  align-items: flex-start;
  padding: 40px 0 56px;
}
.ssv2-item:first-child {
  padding-top: 44px;
}
.ssv2-item-inner {
  max-width: 560px;
  opacity: 0.28;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.ssv2-item.is-active .ssv2-item-inner {
  opacity: 1;
  transform: translateY(0);
}

.ssv2-item-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.ssv2-item-title {
  font-family: var(--heading-font);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--primary-2);
  margin-bottom: 0;
  line-height: 1.2;
}
.ssv2-item-divider {
  width: 40px;
  height: 3px;
  background: var(--gold);
  margin: 20px 0;
  border-radius: 2px;
}
.ssv2-item-body {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.975rem;
  margin-bottom: 1.5rem;
}

/* Benefits */
.ssv2-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.ssv2-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 8px;
}
.ssv2-benefits li svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

/* Tags */
.ssv2-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.75rem;
}
.ssv2-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--beige);
  border-radius: 100px;
  padding: 4px 14px;
}

/* CTA */
.ssv2-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Right sticky column */
.ssv2-right {
  width: 420px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  padding-top: 20px;
}
.ssv2-sticky {
  position: sticky;
  top: 130px; /* main nav 72px + anchor nav 50px + first-item padding ~44px ÷ visual offset */
  height: calc(100vh - 220px);
  max-height: 500px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.18);
}

/* Panels */
.ssv2-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  padding: 52px 40px 36px;
  overflow: hidden;
}
.ssv2-panel.is-active { opacity: 1; }

/* Per-theme backgrounds */
.ssv2-panel--gold   { background: linear-gradient(145deg, #2d1e0f 0%, #1a1a1a 100%); }
.ssv2-panel--amber  { background: linear-gradient(145deg, #2a1800 0%, #1a1200 100%); }
.ssv2-panel--indigo { background: linear-gradient(145deg, #0f0f2e 0%, #1a1a2e 100%); }
.ssv2-panel--teal   { background: linear-gradient(145deg, #0a1e1e 0%, #0d1a1a 100%); }
.ssv2-panel--rose   { background: linear-gradient(145deg, #1e0d0d 0%, #1a1010 100%); }

/* Gold glow ring */
.ssv2-panel::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(186,154,99,0.4), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.ssv2-panel-img-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.ssv2-panel-img {
  max-width: 100%;
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.5));
  will-change: transform;
}

.ssv2-panel-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(186,154,99,0.7);
  text-transform: uppercase;
  text-align: center;
  padding-top: 16px;
}

/* Mobile: stack layout */
@media (max-width: 991px) {
  .ssv2-inner { flex-direction: column; }
  .ssv2-right { width: 100%; order: -1; }
  .ssv2-sticky {
    position: sticky;
    top: 72px;
    height: 260px;
    border-radius: 16px;
    margin-bottom: 40px;
    z-index: 10;
  }
  .ssv2-item { min-height: 60vh; padding: 40px 0; }
  .ssv2-item-inner { max-width: 100%; }
  .ssv2-panel-img { max-height: 180px; }
}

/* Services v2 anchor nav overrides */
.ssv2-anchor-nav { top: 72px; }
.ssv2-anchor-nav a.is-active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* =============================================
   Celestial Editorial Overrides
   ============================================= */
body {
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.08), transparent 32%),
    radial-gradient(circle at 85% 20%, rgba(100, 88, 126, 0.08), transparent 28%),
    var(--surface);
  color: var(--primary-2);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 0.98;
}

.section-tag,
.hero-tag,
.ssv2-header-tag,
.ssv2-item-tag {
  letter-spacing: 0.18em;
}

.section-tag {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}

.hero-tag {
  background: transparent;
  box-shadow: none;
  border: none;
}

#main-nav {
  background: var(--white);
  box-shadow: 0 1px 0 var(--ghost-border);
}

#main-nav.navbar-fixed {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(27, 28, 26, 0.05);
}

.nav-menu li a {
  color: var(--primary-2);
  letter-spacing: 0.01em;
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a,
.nav-menu li.current_page_item a,
.nav-menu li.current-menu-ancestor a,
.site-logo .logo-tagline,
.site-logo .logo-name span {
  color: var(--gold-darker);
}

/* "You are here" — clear active state, more than just hover-color */
.nav-menu li.current-menu-item > a,
.nav-menu li.current_page_item > a,
.nav-menu li.current-menu-ancestor > a {
  font-weight: 800;
  position: relative;
}
.nav-menu li.current-menu-item > a::after,
.nav-menu li.current_page_item > a::after,
.nav-menu li.current-menu-ancestor > a::after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 0;
  height: 2px;
  background: var(--gold);
}

/* Mobile: hairline underline doesn't make sense in stacked rows; rely on bold + gold */
@media (max-width: 991px) {
  .nav-menu li.current-menu-item > a::after,
  .nav-menu li.current_page_item > a::after,
  .nav-menu li.current-menu-ancestor > a::after {
    display: none;
  }
}

.btn-gold {
  background-image: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border: none;
  color: var(--dark);
  box-shadow: var(--shadow);
}

.btn-gold:hover {
  transform: scale(0.98);
  box-shadow: var(--shadow-hover);
  color: var(--dark);
}

.btn-outline-gold,
.btn-white {
  background: var(--surface-container-lowest);
  border: none;
  color: var(--primary);
  box-shadow: 0 14px 28px rgba(27, 28, 26, 0.04);
}

.btn-outline-gold:hover,
.btn-white:hover {
  background: var(--surface-low);
  color: var(--secondary);
}

.hero-section {
  background:
    radial-gradient(circle at 18% 14%, rgba(212, 175, 55, 0.1), transparent 22%),
    radial-gradient(circle at 82% 28%, rgba(100, 88, 126, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(250, 249, 245, 0.98)),
    var(--surface);
}

.hero-overlay {
  background:
    linear-gradient(108deg, rgba(250, 249, 245, 0.96) 0%, rgba(250, 249, 245, 0.9) 38%, rgba(244, 244, 240, 0.68) 100%);
}

.hero-content {
  padding-top: 32px;
  padding-bottom: 24px;
}

.hero-row {
  align-items: start;
}

.hero-copy-col {
  padding-top: 0;
}

.hero-title {
  max-width: 18ch;
  font-size: clamp(1.75rem, 5vw, 3rem);
  line-height: 1.08;
  hyphens: auto;
}
@media (max-width: 575px) {
  .hero-title { max-width: 100%; font-size: clamp(1.625rem, 7.5vw, 2.5rem); }
  .hero-services-line { font-size: 0.78rem; }
  .hero-subtitle { font-size: 0.875rem; }
  .hero-phone { font-size: 0.78rem; }
  .hero-phone strong { white-space: nowrap; }
}

.hero-services-line {
  color: var(--secondary);
}

.hero-subtitle,
.section-subtitle,
.service-card p,
.about-list li,
.process-step-body p,
.why-card p {
  color: var(--text-muted);
}

.hero-portrait-shell,
.service-card,
.why-card,
.youtube-card,
.articles-card,
.booking-step,
.team-member-card,
.team-featured-card,
.contact-info-card,
.contact-form,
.blog-card {
  background: rgba(255, 255, 255, 0.7);
  border: none;
  box-shadow: 0 24px 48px rgba(27, 28, 26, 0.045);
}

.hero-portrait-shell::after {
  border-color: rgba(255, 255, 255, 0.95);
}

.service-card::before,
.team-member-card::before,
.service-card:hover::before {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.9), rgba(212, 175, 55, 0));
}

.services-section:not(.services-magazine),
.why-clients-section,
.booking-steps-section,
.sub-services-section,
.contact-info-card,
.page-header-section {
  background-color: var(--beige-light);
  background-image: none;
  border-bottom: 1px solid var(--border);
}
.page-header-section::before { display: none; }
.page-header-section::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 56px;
  height: 1px;
  background: var(--gold);
}

.services-section::before,
.about-section::before,
.page-header-section::before,
.stats-section::before {
  opacity: 0.04;
}

.about-section,
.articles-preview-section,
.book-cta-section,
.footer-top {
}

.nav-menu li,
.service-detail-block,
.footer-col-title {
  border: none;
}

.process-step-number,
.experience-badge,
.keyword-tag,
.team-expertise-tag {
  background: linear-gradient(135deg, var(--gold-darker) 0%, var(--gold) 100%);
  color: var(--white);
  border: none;
}

.footer-section {
  background:
    radial-gradient(circle at top, rgba(212, 175, 55, 0.08), transparent 24%),
    var(--surface-container-low);
  color: var(--primary);
}

.footer-logo .footer-name {
  color: var(--primary);
}

.footer-logo .footer-tag {
  color: var(--text-muted);
}

.footer-social a:hover {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  color: var(--white);
}

.footer-bottom {
  border-top: none;
}

.form-control {
  background: rgba(255, 255, 255, 0.7);
  border: none;
  border-bottom: 2px solid rgba(102, 95, 77, 0.24);
  border-radius: 0;
  box-shadow: none;
}

.form-control:focus {
  border-bottom-color: rgba(212, 175, 55, 0.8);
  box-shadow: none;
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials-section {
  background-color: var(--beige-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px 24px;
  border: 1px solid rgba(186,154,99,0.15);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.925rem;
  line-height: 1.75;
  color: var(--text-muted);
  font-style: italic;
  margin: 0;
  flex: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 12px;
  border-top: 1px solid rgba(186,154,99,0.2);
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-2);
  font-family: var(--heading-font);
}

.testimonial-since {
  font-size: 0.775rem;
  color: var(--gold-darker);
  font-weight: 600;
  letter-spacing: 0.03em;
}

@media (max-width: 991px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* Testimonials Slider */
.testimonials-slider {
  padding-bottom: 56px;
}

.testimonials-slider .swiper-slide {
  height: auto;
}

.testimonials-slider .testimonial-card {
  height: 100%;
}

.testimonials-pagination.swiper-pagination {
  bottom: 0;
}

.testimonials-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--border);
  opacity: 1;
  margin: 0 6px;
  padding: 17px;
  background-clip: content-box;
  box-sizing: content-box;
  transition: background 0.3s ease, transform 0.3s ease;
}

.testimonials-pagination .swiper-pagination-bullet:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.testimonials-pagination .swiper-pagination-bullet-active {
  background: var(--gold);
  transform: scale(1.2);
  background-clip: content-box;
}

/* =============================================
   WHY CLIENTS — REDESIGNED
   ============================================= */
.why-points {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-point-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-point-icon {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  line-height: 1.25;
  margin-top: 0.15em;
}

.why-point-item h4,
.why-point-item h3 {
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-2);
  margin-bottom: 6px;
  margin-top: 6px;
}

.why-point-item p {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* =============================================
   YOUTUBE VIDEO CARDS
   ============================================= */
.youtube-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 8px;
}

.youtube-video-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(186,154,99,0.18);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.youtube-video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  text-decoration: none;
}

.youtube-thumb-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}

.youtube-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.youtube-thumb-wrap .yt-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.youtube-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1008 0%, #2c1f05 50%, #1a1008 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.yt-play-btn {
  width: 56px;
  height: 56px;
  background: #ff0000;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.2s;
}

.yt-play-btn svg {
  width: 28px;
  height: 28px;
}

.youtube-video-card:hover .yt-play-btn {
  transform: scale(1.08);
}

.youtube-card-body {
  padding: 16px 18px 20px;
  flex: 1;
}

.youtube-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.youtube-card-body h4,
.youtube-card-body h3 {
  font-family: var(--heading-font);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-2);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 767px) {
  .youtube-cards-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}

/* =============================================
   ARTICLES — LOCAL IMAGES
   ============================================= */
.article-thumb-local {
  background: var(--beige-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-thumb-local img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
}

.article-read-more {
  display: inline-block;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  margin-top: 12px;
  border-bottom: 1px solid rgba(186,154,99,0.4);
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.article-read-more:hover {
  color: var(--primary-2);
  border-color: var(--primary-2);
}

/* =============================================
   FOOTER HELPERS
   ============================================= */
.footer-serve-label {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
}

.footer-serve-note {
  font-size: 0.75rem;
  opacity: 0.85;
}

@media (max-width: 991px) {
  .hero-content {
    padding-top: 88px;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(2rem, 6.5vw, 3.5rem);
  }
}
@media (max-width: 575px) {
  /* Force everything to box-respect viewport width on mobile */
  html, body { max-width: 100vw !important; overflow-x: hidden !important; }
  .hero-section,
  .hero-section *,
  .hero-section *::before,
  .hero-section *::after {
    min-width: 0 !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
  }
  .hero-section .container { padding-left: 16px !important; padding-right: 16px !important; max-width: 100% !important; }
  .hero-section .row { margin-left: 0 !important; margin-right: 0 !important; max-width: 100% !important; }
  .hero-section [class*="col-"] { padding-left: 0 !important; padding-right: 0 !important; max-width: 100% !important; flex-basis: 100% !important; width: 100% !important; }
  .hero-title { word-break: break-word !important; overflow-wrap: anywhere !important; hyphens: auto !important; }
  /* Neutralize Bootstrap row negative-margins so content can't exceed viewport */
  .hero-section .container,
  .hero-section .container-fluid {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .hero-section .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .hero-section .col-lg-6,
  .hero-section [class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .hero-title {
    font-size: clamp(1.625rem, 7.5vw, 2.25rem) !important;
    max-width: 100% !important;
    line-height: 1.1;
  }
  .hero-copy-col,
  .hero-image-col {
    align-items: center;
    max-width: 100%;
  }
  .hero-tag,
  .hero-title,
  .hero-subtitle,
  .hero-services-line,
  .hero-phone,
  .hero-cta-group {
    align-self: stretch !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .hero-tag {
    width: auto !important;
    max-width: 100% !important;
    align-self: center !important;
    word-spacing: -0.05em;
    font-size: 0.8125rem !important; /* 13px floor for mobile readability */
    padding: 5px 12px !important;
  }
  .hero-cta-group {
    flex-direction: column !important;
    gap: 10px !important;
  }
  .hero-cta-group .btn-whatsapp,
  .hero-cta-group .btn-outline-gold,
  .hero-cta-group a {
    width: 100% !important;
    justify-content: center !important;
    padding: 12px 16px !important;
  }
  .hero-services-line {
    font-size: 0.875rem !important; /* 14px floor */
    word-spacing: -0.1em;
  }
  .hero-subtitle {
    font-size: 0.875rem !important;
    line-height: 1.55 !important;
  }
  .hero-phone {
    font-size: 0.875rem !important; /* 14px floor */
    line-height: 1.5 !important;
  }
  .hero-phone strong {
    display: inline-block;
    white-space: nowrap;
  }
}


/* =============================================
   SCROLLING TESTIMONIALS COLUMNS
   ============================================= */
.testimonials-scroll-wrapper {
  position: relative;
  max-height: 640px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

.testimonials-scroll-wrapper::before,
.testimonials-scroll-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 60px;
  z-index: 2;
  pointer-events: none;
}

.testimonials-scroll-wrapper::before {
  top: 0;
  background: linear-gradient(to bottom, var(--beige-light), transparent);
}

.testimonials-scroll-wrapper::after {
  bottom: 0;
  background: linear-gradient(to top, var(--beige-light), transparent);
}

.testimonials-scroll-columns {
  display: flex;
  gap: 24px;
  justify-content: center;
  padding: 0 8px;
}

.testimonials-scroll-col {
  width: 100%;
  max-width: 360px;
  flex-shrink: 0;
}

.testimonials-scroll-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonials-scroll-col:nth-child(1) .testimonials-scroll-track {
  animation: scrollUp 18s linear infinite;
}

.testimonials-scroll-col:nth-child(2) .testimonials-scroll-track {
  animation: scrollUp 22s linear infinite;
}

.testimonials-scroll-col:nth-child(3) .testimonials-scroll-track {
  animation: scrollUp 16s linear infinite;
}

.testimonials-scroll-col:hover .testimonials-scroll-track {
  animation-play-state: paused;
}

@keyframes scrollUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

/* Each track has duplicated content for seamless loop */
.testimonials-scroll-track .scroll-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px 24px;
  border: 1px solid rgba(186, 154, 99, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  cursor: default;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.testimonials-scroll-track .scroll-card:hover {
  box-shadow: 0 8px 32px rgba(186, 154, 99, 0.15);
  transform: translateY(-2px);
}

.scroll-card-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.scroll-card-text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(26, 26, 26, 0.65);
  font-style: italic;
  margin: 0 0 18px;
}

.scroll-card-author {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 14px;
  border-top: 1px solid rgba(186, 154, 99, 0.2);
}

.scroll-card-name {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--primary-2);
  font-family: var(--heading-font);
}

.scroll-card-role {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
}

@media (max-width: 991px) {
  .testimonials-scroll-columns .testimonials-scroll-col:nth-child(3) {
    display: none;
  }
  .testimonials-scroll-wrapper {
    max-height: 520px;
  }
}

@media (max-width: 575px) {
  .testimonials-scroll-columns .testimonials-scroll-col:nth-child(2) {
    display: none;
  }
  .testimonials-scroll-wrapper {
    max-height: 480px;
  }
}


/* ==========================================================================
   Contact Page — Elegant Design
   ========================================================================== */

/* Hero Section */
.contact-hero-section {
  position: relative;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--primary-2) 0%, #2a2a2a 100%);
  overflow: hidden;
}
.contact-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/img/star-bg.png') center/cover;
  opacity: 0.06;
}
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(186, 154, 99, 0.08) 0%, transparent 60%);
}
.contact-hero-content {
  position: relative;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.contact-hero-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.contact-hero-title {
  font-family: var(--heading-font);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.contact-hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}

/* Main Contact Section */
.contact-main-section {
  background: var(--surface);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}

/* Left Column: Contact Cards */
.contact-intro {
  margin-bottom: 32px;
}
.contact-intro p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--secondary);
}

.contact-cards {
  display: grid;
  gap: 16px;
}

.contact-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  text-decoration: none;
}
.contact-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(186, 154, 99, 0.12);
  transform: translateY(-2px);
}

.contact-card-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card-icon svg {
  width: 26px;
  height: 26px;
}

.contact-card-whatsapp .contact-card-icon {
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
}
.contact-card-phone .contact-card-icon {
  background: rgba(186, 154, 99, 0.12);
  color: var(--gold);
}
.contact-card-location .contact-card-icon {
  background: rgba(94, 94, 94, 0.08);
  color: var(--secondary);
}
.contact-card-online .contact-card-icon {
  background: rgba(94, 94, 94, 0.08);
  color: var(--secondary);
}

.contact-card-content h2,
.contact-card-content h4 {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary-2);
  margin-bottom: 6px;
  margin-top: 0px;
}
.contact-card-content p {
  font-size: 0.9rem;
  color: var(--secondary);
  line-height: 1.6;
  margin: 0;
}

.contact-card-action {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
}
.contact-card-note {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* Assurance Badges */
.contact-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.assurance-item {
  font-size: 0.8rem;
  color: var(--secondary);
  font-weight: 500;
}

/* Right Column: Process Card */
.contact-process-col {
  position: sticky;
  top: 100px;
}
.contact-process-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--border);
}
.contact-process-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.contact-process-title {
  font-family: var(--heading-font);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-2);
  margin-bottom: 28px;
  line-height: 1.3;
}

.contact-process-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.process-step {
  display: flex;
  gap: 16px;
}
.process-step-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-step-content h3,
.process-step-content h5 {
  font-family: var(--heading-font);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary-2);
  margin-bottom: 4px;
  margin-top: 0px;
}
.process-step-content p {
  font-size: 0.85rem;
  color: var(--secondary);
  line-height: 1.5;
  margin: 0;
}

/* CTA Button */
.contact-cta {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.btn-whatsapp-full {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 600;
}
.btn-whatsapp-full svg {
  width: 22px;
  height: 22px;
}
.contact-cta-note {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--secondary);
}
.contact-cta-note a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}

/* Serving Areas */
.contact-areas-section {
  background: var(--primary-2);
}
.contact-areas-inner {
  text-align: center;
}
.contact-areas-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}
.contact-areas-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.area-tag {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-process-col {
    position: static;
  }
  .contact-hero-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 575px) {
  .contact-hero-section {
    padding: 100px 0 60px;
  }
  .contact-hero-title {
    font-size: 2.2rem;
  }
  .contact-card {
    padding: 20px;
    gap: 16px;
  }
  .contact-card-icon {
    width: 44px;
    height: 44px;
  }
  .contact-card-icon svg {
    width: 22px;
    height: 22px;
  }
  .contact-assurance {
    flex-direction: column;
    gap: 8px;
  }
}

/* =============================================
   COMPREHENSIVE MOBILE RESPONSIVE FIXES
   Covers: 375px · 480px · 767px · 991px
   ============================================= */

/* ── TABLET (≤ 991px) ─────────────────────── */
@media (max-width: 991px) {
  /* Section spacing */
  .section-pad     { padding: 60px 0; }
  .section-pad-sm  { padding: 40px 0; }

  /* Hero — hide zodiac circle (position:absolute inset:-60px causes overflow) */
  .hero-circle-wrap { display: none; }

  /* Why clients — tighten */
  .why-grid  { gap: 24px; margin-top: 32px; }
  .why-card  { padding: 32px 28px; }

  /* Team featured card — tighten gap */
  .team-featured-card { padding: 40px 36px; gap: 40px; }

  /* About badge — re-center when image centers */
  .about-badge-overlay {
    position: static;
    display: inline-flex;
    margin: 20px auto 0;
  }
}

/* ── LARGE MOBILE (≤ 767px) ───────────────── */
@media (max-width: 767px) {
  /* Section spacing */
  .section-pad     { padding: 48px 0; }
  .section-pad-sm  { padding: 28px 0; }

  /* Typography */
  .section-title    { font-size: clamp(1.5rem, 6vw, 2rem); }
  .section-subtitle { font-size: 0.92rem; margin-bottom: 1.25rem; }

  /* Nav — hide tagline text, remove excess margin */
  .site-logo .logo-tagline { display: none; }
  .site-logo { margin-right: 0; }

  /* Hero */
  .hero-circle-wrap { display: none; }
  .hero-row         { row-gap: 20px; }

  /* Services — keep 2 cols on larger phones, 1 col handled at 480px */
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* Why clients */
  .why-grid  { gap: 16px; margin-top: 24px; }
  .why-card  { padding: 24px 20px; }
  .why-card h3 { font-size: 1.15rem; }

  /* Process checklist — stack vertically */
  .process-checklist {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 28px;
    margin-top: 36px;
  }

  /* Book CTA — hide overflow decorations */
  .book-cta-decor-left,
  .book-cta-decor-right { display: none; }

  /* Contact page */
  .contact-info-card { padding: 28px 20px; }
  .contact-form      { padding: 28px 20px; }

  /* Team alt rows — stack */
  .team-alt-row,
  .team-alt-reversed {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
    padding: 40px 0;
  }
  .team-alt-content { width: 100%; }
  .team-alt-image   { width: 100%; }
  .team-alt-avatar  { width: 160px; height: 160px; }
  .team-light-section .team-alt-label,
  .team-alt-label { text-align: center; }
  .divider-gold { margin-left: auto; margin-right: auto; }

  /* Footer bottom — stack */
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ── SMALL MOBILE (≤ 479px) ──────────────── */
@media (max-width: 479px) {
  /* Global */
  .section-pad    { padding: 36px 0; }
  .section-pad-sm { padding: 24px 0; }

  /* Nav padding */
  .nav-inner { padding: 0 16px; }

  /* Hero tag smaller */
  .hero-tag { font-size: 0.65rem; padding: 5px 12px; letter-spacing: 0.14em; }

  /* Services — single column */
  .services-grid { grid-template-columns: 1fr; }

  /* Trust strip icon — slightly smaller */
  .trust-icon { width: 40px; height: 40px; }
  .trust-text strong { font-size: 0.85rem; }

  /* Stats */
  .stats-section { padding: 36px 0; }

  /* Process checklist */
  .process-checklist { gap: 12px; }

  /* Book CTA — full width stacked buttons */
  .book-cta-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .book-cta-buttons .btn-whatsapp,
  .book-cta-buttons .btn-outline-gold {
    width: 100%;
    justify-content: center;
  }

  /* About badge — ensure visible */
  .about-badge-overlay { margin-top: 16px; }

  /* Footer WhatsApp button — full width */
  .footer-whatsapp-btn { width: 100%; justify-content: center; }

  /* Footer grid gap */
  .footer-grid { gap: 28px; }

  /* Team featured card */
  .team-featured-card { padding: 28px 18px; gap: 20px; }

  /* Section header center on mobile */
  .section-tag { display: block; text-align: center; }
  .divider-gold:not(.center) { margin-left: auto; margin-right: auto; }
}

/* ── VERY SMALL (≤ 360px) ────────────────── */
@media (max-width: 360px) {
  .nav-inner { padding: 0 12px; }
  .hero-title { font-size: 1.8rem; }
  .section-title { font-size: 1.4rem; }
  .btn-whatsapp,
  .btn-gold,
  .btn-outline-gold { padding: 12px 20px; font-size: 0.88rem; }
}

/* ── v1 UX FIX: hero text must not clip on phones ── */
@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(1.5rem, 7vw, 2rem) !important;
    max-width: 100% !important;
    width: 100% !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
    hyphens: auto !important;
    line-height: 1.1 !important;
    box-sizing: border-box !important;
  }
  .hero-tag,
  .hero-services-line,
  .hero-subtitle,
  .hero-phone {
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
    box-sizing: border-box !important;
  }
}

/* ============================================================
   TEAM v2 — editorial spread
   Founder feature, asymmetric practitioner row, principles list.
   Scoped to .tv-* so it does not affect the live /our-team page.
   ============================================================ */

.tv-hero {
  padding: clamp(64px, 9vw, 120px) 0 clamp(32px, 5vw, 64px);
  background: oklch(0.985 0.005 80);
  border-bottom: 1px solid rgba(186, 154, 99, 0.18);
}
.tv-hero .container { max-width: 880px; }
.tv-eyebrow {
  display: inline-block;
  font-family: var(--body-font);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.55);
  margin-bottom: 18px;
}
.tv-eyebrow--gold { color: var(--gold); }
.tv-hero-title {
  font-family: var(--heading-font);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--dark);
  margin: 0 0 22px;
  max-width: 22ch;
}
.tv-hero-lede {
  font-family: var(--heading-font);
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  line-height: 1.65;
  color: rgba(26, 26, 26, 0.72);
  margin: 0 0 28px;
  max-width: 64ch;
}
.tv-breadcrumb {
  font-family: var(--body-font);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(26, 26, 26, 0.5);
  margin: 0;
}
.tv-breadcrumb a {
  color: inherit;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.tv-breadcrumb a:hover { color: var(--gold); }
.tv-breadcrumb span {
  margin: 0 8px;
  opacity: 0.6;
}

/* Founder feature */
.tv-founder {
  padding: clamp(64px, 8vw, 112px) 0;
  background: oklch(0.978 0.008 80);
  position: relative;
}
.tv-founder::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 1px; height: 56px;
  background: rgba(186, 154, 99, 0.45);
  transform: translateX(-50%);
}
.tv-founder-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  column-gap: clamp(40px, 5vw, 72px);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.tv-founder-mark {
  position: sticky;
  top: 120px;
  display: flex;
  justify-content: center;
  color: var(--gold);
}
.tv-seal {
  width: 320px;
  height: 320px;
  filter: drop-shadow(0 12px 36px rgba(186, 154, 99, 0.18));
}
.tv-founder-body { min-width: 0; }
.tv-role-label {
  display: block;
  font-family: var(--body-font);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.tv-founder-name {
  font-family: var(--heading-font);
  font-size: clamp(2rem, 3.4vw, 2.85rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: var(--dark);
  margin: 0 0 24px;
}
.tv-founder-lead {
  font-family: var(--heading-font);
  font-size: clamp(1.125rem, 1.5vw, 1.3125rem);
  font-style: italic;
  line-height: 1.55;
  color: rgba(26, 26, 26, 0.82);
  margin: 0 0 28px;
  max-width: 60ch;
}
.tv-founder-text {
  font-family: var(--body-font);
  font-size: 1rem;
  line-height: 1.78;
  color: rgba(26, 26, 26, 0.74);
  margin: 0 0 18px;
  max-width: 64ch;
}

.tv-founder-meta {
  display: grid;
  grid-template-columns: 130px 1fr;
  column-gap: 24px;
  row-gap: 12px;
  margin: 36px 0;
  padding: 24px 0;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}
.tv-founder-meta dt {
  font-family: var(--body-font);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.5);
  padding-top: 4px;
}
.tv-founder-meta dd {
  font-family: var(--heading-font);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--dark);
  margin: 0;
}
.tv-reach-list a {
  color: var(--dark);
  border-bottom: 1px solid rgba(186, 154, 99, 0.45);
  padding-bottom: 1px;
  transition: color 200ms ease, border-color 200ms ease;
}
.tv-reach-list a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.tv-founder-quote {
  font-family: var(--heading-font);
  font-style: italic;
  font-size: clamp(1.1875rem, 1.7vw, 1.4375rem);
  line-height: 1.5;
  color: var(--gold);
  margin: 32px 0 0;
  padding-left: 32px;
  position: relative;
  max-width: 60ch;
}
.tv-founder-quote::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 18px; height: 1px;
  background: var(--gold);
}

/* Practitioners */
.tv-practitioners {
  padding: clamp(56px, 7vw, 96px) 0 clamp(48px, 6vw, 80px);
  background: oklch(0.95 0.012 82);
  border-top: 1px solid rgba(186, 154, 99, 0.18);
  border-bottom: 1px solid rgba(186, 154, 99, 0.18);
}
.tv-section-head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}
.tv-section-head--center { text-align: center; }
.tv-section-heading {
  font-family: var(--heading-font);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--dark);
  margin: 0 0 14px;
}
.tv-section-sub {
  font-family: var(--heading-font);
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(26, 26, 26, 0.7);
  margin: 0;
  max-width: 60ch;
}

.tv-practitioner-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 3.5vw, 48px);
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(186, 154, 99, 0.28);
}
.tv-practitioner {
  display: grid;
  grid-template-columns: 96px 1fr;
  column-gap: 22px;
  align-items: start;
}
.tv-pract-mark {
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  filter: drop-shadow(0 6px 18px rgba(186, 154, 99, 0.16));
}
.tv-mini-seal { width: 100%; height: 100%; }
.tv-pract-body { min-width: 0; }
.tv-pract-name {
  font-family: var(--heading-font);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin: 6px 0 12px;
}
.tv-pract-text {
  font-family: var(--body-font);
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.72);
  margin: 0 0 14px;
}
.tv-pract-meta {
  font-family: var(--body-font);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: rgba(26, 26, 26, 0.55);
  line-height: 1.7;
  margin: 0;
}
.tv-pract-disciplines { display: inline; }
.tv-pract-divider {
  margin: 0 8px;
  color: var(--gold);
  opacity: 0.7;
}
.tv-pract-reach a {
  color: rgba(26, 26, 26, 0.7);
  border-bottom: 1px dotted rgba(186, 154, 99, 0.5);
  padding-bottom: 1px;
}
.tv-pract-reach a:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* Principles */
.tv-principles {
  padding: clamp(64px, 8vw, 104px) 0;
  background: oklch(0.985 0.005 80);
}
.tv-principles-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 880px;
  counter-reset: tv-principle;
}
.tv-principles-list li {
  display: grid;
  grid-template-columns: 80px 1fr;
  column-gap: 24px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}
.tv-principles-list li:first-child { border-top: 1px solid rgba(26, 26, 26, 0.1); }
.tv-principle-num {
  font-family: var(--heading-font);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold);
  text-align: right;
  letter-spacing: 0.02em;
}
.tv-principles-list li p {
  font-family: var(--heading-font);
  font-size: clamp(1.0625rem, 1.4vw, 1.1875rem);
  line-height: 1.62;
  color: rgba(26, 26, 26, 0.82);
  margin: 0;
  max-width: 64ch;
}

/* CTA */
.tv-cta {
  padding: clamp(64px, 7vw, 96px) 0 clamp(64px, 7vw, 104px);
  background: oklch(0.18 0.012 75);
  color: oklch(0.98 0.005 80 / 0.96);
  text-align: center;
}
.tv-cta-line {
  font-family: var(--heading-font);
  font-style: italic;
  font-size: clamp(1.1875rem, 1.8vw, 1.5rem);
  line-height: 1.5;
  margin: 0 auto 28px;
  max-width: 50ch;
  color: oklch(0.98 0.005 80 / 0.85);
}
.tv-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 24px;
}
.tv-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--body-font);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: oklch(0.62 0.16 145);
  color: oklch(0.98 0.005 80);
  border-radius: 999px;
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1), background-color 240ms ease;
}
.tv-cta-primary:hover {
  transform: translateY(-2px);
  background: oklch(0.66 0.17 145);
}
.tv-cta-primary svg { width: 18px; height: 18px; }
.tv-cta-secondary {
  font-family: var(--heading-font);
  font-style: italic;
  font-size: 1rem;
  color: oklch(0.85 0.06 80);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.tv-cta-secondary:hover { color: oklch(0.92 0.08 80); }

/* Responsive */
@media (max-width: 900px) {
  .tv-founder-grid {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
  .tv-founder-mark {
    position: static;
    margin-bottom: 8px;
  }
  .tv-seal { width: 240px; height: 240px; }
  .tv-practitioner-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .tv-practitioner:not(:last-child) {
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(186, 154, 99, 0.2);
  }
}
@media (max-width: 600px) {
  .tv-founder-meta {
    grid-template-columns: 1fr;
    row-gap: 4px;
  }
  .tv-founder-meta dt { padding-top: 12px; }
  .tv-founder-meta dt:first-of-type { padding-top: 0; }
  .tv-practitioner {
    grid-template-columns: 76px 1fr;
    column-gap: 18px;
  }
  .tv-pract-mark { width: 76px; height: 76px; }
  .tv-principles-list li {
    grid-template-columns: 1fr;
    row-gap: 6px;
  }
  .tv-principle-num { text-align: left; }
}

/* =============================================
   ACCESSIBILITY + TYPOGRAPHY HARDENING (2026-05-10)
   - Cap synthetic 800-weight on Noto Serif headings (only 400-700 ship)
   - Mobile tap-target floor (WCAG 2.5.5: 44px)
   - Mobile font-size floor (avoid sub-13px labels)
   ============================================= */

/* Cap heading weight to what fonts.css actually ships (no synthetic 800) */
.site-logo .logo-name,
.hero-title,
.stat-number,
.experience-badge .badge-number,
.error-404 .error-number,
.team-avatar .initials,
.team-alt-avatar .initials,
.team-alt-exp-num,
.team-alt-name {
  font-weight: 700;
}

@media (max-width: 767px) {
  /* Tap-target floor: 44px minimum height for interactive elements (WCAG 2.5.5) */
  .svm-card-link,
  .svm-card-link-sm,
  .footer-list a,
  .footer-services-list a,
  .footer-quick-links a,
  .footer-contact a,
  .footer-col a,
  .footer-secondary a,
  .nav-menu li a,
  .footer-cta,
  .footer-social a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding-block: 10px;
  }

  /* Mobile font-size floor: bump sub-13px labels (!important to beat .65rem !important rules) */
  .svm-card-meta,
  .svm-card-link,
  .svm-card-link-sm,
  .svm-card-eyebrow,
  .badge-text {
    font-size: 13px !important;
  }

  /* Trust strip text spans (no class) — target via parent */
  .trust-stats-block span,
  .trust-strip span {
    font-size: 13px !important;
  }
}

/* =============================================
   READABILITY HARDENING PATCH (2026-05-10)
   - Gold-on-white → gold-darker (passes AA 4.5)
   - Fix invisible pills + blog subtitle
   - Opacity bumps for borderline body text
   - Floor sub-13px micro-labels site-wide
   ============================================= */

/* Tighten body line-height slightly */
body {
  line-height: 1.6;
}

/* Gold text on white — switch to gold-darker (#8a6f43, ratio 4.73 vs white) */
.contact-card-action,
.contact-process-label,
.contact-card-text a[href^="tel:"],
.contact-card-text a[href^="mailto:"],
.article-read-more,
.team-card-role,
.team-avatar .initials,
.team-alt-avatar .initials {
  color: var(--gold-darker);
}

/* Invisible "Most requested" pill on Services lead tile */
.seek-tile-lead .seek-tile-tag,
.seek-tile-tag {
  color: var(--dark);
  background-color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(19, 24, 46, 0.08);
  padding: 4px 10px;
  border-radius: 999px;
}

/* Borderline rgba opacities — bump to AA-passing (scoped per section) */
.team-alt-exp-label                   { color: rgba(255, 255, 255, 0.65); } /* dark section */
.team-light-section .team-alt-exp-label { color: rgba(26, 26, 26, 0.72); }   /* light section override */
.team-founder-section .team-alt-desc  { color: rgba(255, 255, 255, 0.82); } /* dark: bump from 0.55 */
.team-light-section .team-alt-desc    { color: rgba(26, 26, 26, 0.78); }    /* light: bump from 0.60 */
.team-light-section .team-alt-tag     { color: var(--dark); background: rgba(186,154,99,0.14); } /* dark text on gold-tint pill */
.team-light-section .team-alt-label   { color: var(--gold-darker); }
.team-founder-section .team-alt-tag   { color: rgba(255,255,255,0.92); background: rgba(255,255,255,0.08); } /* readable on dark navy */
.seek-tile-line                       { color: rgba(26, 26, 26, 0.92); }
.seek-tile-meta                       { color: rgba(26, 26, 26, 0.85); }
.seek-aside                           { color: rgba(26, 26, 26, 0.72); }

/* Blog header subtitle: was rgba(255,255,255,0.7) on light bg → 1.04 */
.page-template-default .breadcrumb-wrap,
.archive .breadcrumb-wrap,
.blog .breadcrumb-wrap {
  color: rgba(19, 24, 46, 0.72);
}

/* Appointment area pills (Delhi NCR / Mumbai etc.) */
.area-tag {
  color: var(--dark);
  background-color: rgba(186, 154, 99, 0.14);
  border: 1px solid rgba(186, 154, 99, 0.4);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}

/* Sub-13px micro-labels — floor at readable size (desktop) */
.testimonial-since   { font-size: 0.8125rem; }
.footer-tagline      { font-size: 0.8125rem; line-height: 1.55; }
.svm-card-meta       { font-size: 0.8125rem; }
.svm-card-link,
.svm-card-link-sm    { font-size: 0.8125rem; }
.svm-card-eyebrow    { font-size: 0.75rem;  letter-spacing: 0.18em; }
.team-alt-label      { font-size: 0.8125rem; }
.team-alt-tag        { font-size: 0.8125rem; padding: 5px 12px; }
.contact-card-note   { font-size: 0.8125rem; }
.assurance-item      { font-size: 0.875rem; }
.contact-hero-tag    { font-size: 0.75rem; letter-spacing: 0.18em; }
.contact-process-label { font-size: 0.75rem; letter-spacing: 0.18em; }
.keyword-tag         { font-size: 0.8125rem; }
.hero-tag            { font-size: 0.8125rem; letter-spacing: 0.2em; }

/* Card-link affordance: weight up so they read as links, not body */
.svm-card-link,
.svm-card-link-sm,
.article-read-more,
.contact-card-action {
  font-weight: 700;
}

/* Blog card body — slightly bigger + tighter line-height */
.article-card p,
.blog-card .blog-card-excerpt {
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* Blog card titles — more presence */
.article-card h2,
.blog-card h2 {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.3;
}

/* Cap homepage lead service-card heading at ~28px */
.svm-card.svm-card-lead .svm-card-name {
  font-size: clamp(1.5rem, 3vw, 1.75rem);
}

/* Footer eyebrows — keep tracking compensation */
.footer-eyebrow {
  letter-spacing: 0.22em;
}

/* Mobile (<= 767px): floor every micro-label at 13px */
@media (max-width: 767px) {
  .testimonial-since,
  .footer-tagline,
  .svm-card-meta,
  .svm-card-link,
  .svm-card-link-sm,
  .team-alt-label,
  .team-alt-tag,
  .contact-card-note,
  .keyword-tag {
    font-size: 13px;
  }
  .assurance-item       { font-size: 13.5px; }
  .article-card p,
  .blog-card .blog-card-excerpt { font-size: 15px; line-height: 1.6; }
}
