/*
Theme Name: Lalita Grace Premium v2
Theme URI: https://example.com/lalitagrace
Author: Premium Studio
Author URI: https://example.com
Description: A premium, beautifully calm WordPress theme tailored for healing, tarot, and spiritual guidance. Features ethereal colors, modern typography, aura gradients, and micro-animations.
Version: 1.2.0
Tags: custom-colors, custom-menu, featured-images, flexible-header, full-width-template
Text Domain: lalitagrace
*/

:root {
  /* Snow White Premium Palette (Holistic Healing) */
  --ivory: #FFFFFF; /* Pure snow white */
  --paper: #FAFAFA; /* Off-white snow */
  --rose: #F2EFE9; /* Very soft alabaster/pearl */
  --rose-deep: #C5A059; /* Champagne Gold for buttons/accents */
  --plum: #2B2D31; /* Deep slate/charcoal for text */
  --gold: #C2A878; /* Soft matte spiritual gold */
  --saffron: #F8F5F0; /* Pearl white */
  --teal: #A3B5A6; /* Soft pale jade */
  --ink: #333538; /* Deep slate text */
  --muted: #828587; /* Ethereal grey */
  --line: rgba(194, 168, 120, 0.15); /* Delicate gold line */
  --shadow-sm: 0 4px 12px rgba(43, 45, 49, 0.03);
  --shadow-md: 0 12px 30px rgba(43, 45, 49, 0.06);
  --shadow-lg: 0 24px 60px rgba(43, 45, 49, 0.08);
  --radius: 16px;
  
  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Custom Sleek Premium Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgba(197, 160, 89, 0.4);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(197, 160, 89, 0.8);
}

html, body {
  margin: 0 !important;
  padding: 0 !important;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-serif);
  line-height: 1.8;
  overflow-x: hidden;
  max-width: 100vw !important;
  width: 100% !important;
}

.wp-site-blocks, .is-root-container {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  transition: all 0.4s ease;
}

button, input, select, textarea {
  font: inherit;
  font-family: var(--font-sans);
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.arch-image {
  border-radius: 50% 50% 0 0 / 20% 20% 0 0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: block;
}

@supports (border-radius: 999px 999px 0 0) {
  .arch-image {
    border-radius: 50vw 50vw 0 0;
  }
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 24px auto auto 50%;
  transform: translateX(-50%);
  width: min(1000px, calc(100% - 48px));
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  color: var(--ivory);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.is-hidden {
  transform: translate(-50%, -150%) !important;
}

.site-header.is-elevated,
body.nav-open .site-header,
body.is-inner-page .site-header {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 40px rgba(43, 45, 49, 0.08);
  color: var(--plum);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--font-serif);
}

.brand-mark {
  display: none; /* Hide for a cleaner, premium text-only look */
}

.brand strong, .brand small {
  display: block;
  line-height: 1.15;
}

.brand strong {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.brand small {
  opacity: 0.8;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.site-nav a {
  text-decoration: none;
  opacity: 0.8;
  position: relative;
  transition: opacity 0.3s ease;
}

.site-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: currentColor;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.site-nav a:not(.nav-cta):hover::after {
  opacity: 1;
  transform: translateX(-50%) scale(1.2);
}

.site-nav a:hover {
  opacity: 1;
}

.nav-cta {
  background: var(--ivory);
  color: var(--plum) !important;
  border-radius: 999px;
  padding: 12px 28px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-cta:hover {
  background: var(--rose-deep);
  color: var(--ivory) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(132, 117, 155, 0.3);
}

.is-elevated .nav-cta,
body.nav-open .nav-cta {
  background: var(--plum);
  color: var(--ivory) !important;
}

.is-elevated .nav-cta:hover,
body.nav-open .nav-cta:hover {
  background: var(--rose-deep);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
  z-index: 30;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: currentColor;
  border-radius: 2px;
  transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 95svh;
  overflow: hidden;
  color: var(--ivory);
}

.hero-media, .hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/healing_work_mobile.jpeg");
  background-size: cover;
  background-position: center right;
  transform: scale(1.05);
  animation: subtleZoom 25s infinite alternate ease-in-out;
}

@media (min-width: 768px) {
  .hero-media {
    background-image: url("assets/healing_work_tablet.jpeg");
  }
}

@media (min-width: 1024px) {
  .hero-media {
    background-image: url("assets/healing_work.jpeg");
  }
}

@keyframes subtleZoom {
  0% { transform: scale(1.02); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(47, 62, 50, 0.85) 0%, rgba(47, 62, 50, 0.5) 45%, rgba(47, 62, 50, 0.2) 85%),
    linear-gradient(180deg, rgba(47, 62, 50, 0.3), rgba(47, 62, 50, 0.2) 50%, rgba(47, 62, 50, 0.95));
}

.hero-content {
  position: relative;
  width: min(800px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding: 140px 0 10svh;
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1, .section h2, .intro-band h2, .appointment-copy h2, .instagram-section h2 {
  margin: 0;
  line-height: 1.15;
  font-weight: 400; /* Softer, thinner font weights */
  font-family: var(--font-serif);
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  text-shadow: 0 10px 30px rgba(0,0,0,0.2);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-copy {
  max-width: 580px;
  margin: 24px 0 0;
  opacity: 0.9;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border-radius: 999px;
  padding: 16px 40px;
  border: 1px solid transparent;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background-color: transparent;
}

.button.primary {
  background: var(--rose-deep) !important;
  color: #FFF !important;
  box-shadow: 0 8px 20px rgba(197, 160, 89, 0.4);
}

.button.primary:hover {
  background: var(--plum) !important;
  box-shadow: 0 12px 25px rgba(43, 45, 49, 0.4);
  transform: translateY(-2px);
}

.button:disabled,
.button.primary:disabled {
  background: #e2e8f0 !important;
  color: #94a3b8 !important;
  border-color: #cbd5e1 !important;
  cursor: not-allowed !important;
  box-shadow: none !important;
  transform: none !important;
}

.button:disabled:hover,
.button.primary:disabled:hover {
  background: #e2e8f0 !important;
  color: #94a3b8 !important;
  box-shadow: none !important;
  transform: none !important;
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.6) !important;
  color: var(--ivory) !important;
  background: transparent !important;
  backdrop-filter: blur(5px);
}

.button.ghost:hover {
  background: var(--ivory) !important;
  color: var(--plum) !important;
  transform: translateY(-2px);
}

.button.secondary {
  background: var(--plum);
  color: var(--ivory);
  box-shadow: 0 8px 20px rgba(47, 62, 50, 0.3);
}

.button.secondary:hover {
  background: var(--rose-deep);
  transform: translateY(-2px);
}

.button.full {
  width: 100%;
}

.hero-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 620px;
  margin: 56px 0 0;
}

.hero-notes div {
  border-top: 1px solid rgba(253, 251, 247, 0.3);
  padding-top: 16px;
}

.hero-notes dt {
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-notes dd {
  margin: 8px 0 0;
  opacity: 0.85;
  font-family: var(--font-sans);
  font-size: 0.95rem;
}

/* ==========================================================================
   Sections & Layout
   ========================================================================== */
.section-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.intro-band {
  background: var(--paper);
  color: var(--plum);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.intro-band.page-header {
  padding-top: 150px;
  padding-bottom: 60px;
}

.post-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.2;
}

@media (max-width: 768px) {
  .intro-band.page-header {
    padding-top: 120px;
    padding-bottom: 20px;
  }
  .post-title {
    font-size: 2rem;
  }
}

/* Aura Gradient */
.intro-band::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 191, 167, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.intro-grid h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--plum);
  line-height: 1.25;
}

.intro-grid p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.15rem;
  font-family: var(--font-sans);
  font-weight: 300;
  border-left: 1px solid var(--gold);
  padding-left: 32px;
}

.section {
  padding: clamp(55px, 6.5vw, 85px) 0;
  position: relative;
  background: var(--ivory);
}

#reviews {
  padding-bottom: clamp(20px, 3vw, 35px);
}
#about {
  padding-top: clamp(20px, 3vw, 35px);
}

/* Aura Gradient for sections */
.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at right top, rgba(138, 157, 147, 0.05), transparent 50%),
              radial-gradient(circle at left bottom, rgba(212, 191, 167, 0.05), transparent 50%);
  pointer-events: none;
}

.section-heading:not(.split) {
  background: #FFFFFF;
  border: 1px solid var(--line);
  padding: 30px 48px;
  border-radius: var(--radius);
  max-width: 820px;
  margin: 0 auto 36px;
  box-shadow: 0 10px 30px rgba(197, 160, 89, 0.04);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.section-heading:not(.split)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-heading:not(.split) .eyebrow {
  margin-bottom: 12px;
}

.section-heading:not(.split) h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem) !important;
  color: var(--plum) !important;
  margin: 0 !important;
  line-height: 1.35 !important;
}

.section-heading.split {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  margin-bottom: 56px;
}

.section-heading.split::before {
  display: none !important;
}

.section h2, .appointment-copy h2, .instagram-section h2 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  color: var(--plum);
  letter-spacing: -0.02em;
}

/* Helper Classes */
.text-center { text-align: center; }
.max-w-md { max-width: 680px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.img-fluid { max-width: 100%; height: auto; }
.rounded { border-radius: var(--radius); }
.mt-4 { margin-top: 1.5rem; }
.shadow-soft { box-shadow: var(--shadow-soft); }

/* ==========================================================================
   Feature Layouts (About, Tarot, Meditation)
   ========================================================================== */
.feature-section {
  padding: clamp(55px, 6.5vw, 85px) 0;
  position: relative;
}

.feature-section.alt {
  background: var(--paper);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}

.feature-grid.reverse {
  direction: rtl;
}

.feature-grid.reverse > * {
  direction: ltr;
}

/* NEW: Stacked Images Layout */
.stacked-images {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
}

.stacked-images .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: auto;
  z-index: 1;
  opacity: 0.95;
  transition: transform 0.6s ease;
}

.stacked-images .img-fg {
  position: absolute;
  bottom: -20px;
  right: 0;
  width: 65%;
  height: auto;
  z-index: 2;
  box-shadow: var(--shadow-lg);
  border: 10px solid var(--ivory);
  transition: transform 0.6s ease;
}

.stacked-images:hover .img-bg {
  transform: scale(1.02) translate(-2%, -2%);
}

.stacked-images:hover .img-fg {
  transform: scale(1.02) translate(2%, 2%);
}

.feature-content h2 {
  margin-bottom: 24px;
}

.feature-content p {
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

/* ==========================================================================
   Galleries (Healing Sessions)
   ========================================================================== */
.gallery-section {
  position: relative;
  background-image: linear-gradient(rgba(15, 17, 23, 0.45), rgba(15, 17, 23, 0.45)), url('assets/meditation2.jpeg');
  background-size: cover;
  background-position: center;
  color: var(--ivory);
}

.gallery-section .section-heading:not(.split) {
  background: rgba(23, 25, 38, 0.6) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

.gallery-section .section-heading:not(.split) h2 {
  color: #FFFFFF !important;
}

.gallery-section .section-heading:not(.split) .eyebrow {
  color: var(--gold) !important;
}

.gallery-section .section-heading:not(.split) p {
  color: rgba(255, 255, 255, 0.75) !important;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 36px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/5;
  background: rgba(23, 25, 38, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item img {
  border-radius: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 17, 23, 0) 0%, rgba(15, 17, 23, 0.3) 25%, rgba(15, 17, 23, 0.75) 55%, rgba(15, 17, 23, 0.95) 100%);
  z-index: 1;
  transition: opacity 0.5s ease;
}

.gallery-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
  text-align: left;
}

.gallery-content h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: #FFFFFF !important;
  margin: 0 0 6px 0;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.gallery-content p {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8) !important;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.gallery-item:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover .gallery-overlay {
  background: linear-gradient(180deg, rgba(15, 17, 23, 0) 30%, rgba(15, 17, 23, 0.95) 100%);
}

/* ==========================================================================
   Credentials & Awards
   ========================================================================== */
.credentials-section {
  background: radial-gradient(circle at center, var(--ivory) 0%, var(--paper) 100%);
  overflow: hidden;
}

.credentials-editorial-list {
  display: flex;
  flex-direction: column;
  gap: 120px;
  margin-top: 80px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.award-row {
  display: flex;
  align-items: center;
  gap: 80px;
}

.award-row:nth-child(even) {
  flex-direction: row-reverse;
}

.award-image {
  flex: 1;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.award-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(194, 168, 120, 0.3);
  border-radius: inherit;
  pointer-events: none;
}

.award-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
  display: block;
}

.award-row:hover .award-image img {
  transform: scale(1.05);
}

.award-text {
  flex: 1;
  padding: 40px;
  position: relative;
}

.award-text::before {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.award-row:nth-child(even) .award-text::before {
  left: auto;
  right: 0;
}

.award-text h4 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--plum);
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.award-text p {
  font-size: 1.1rem;
  color: var(--muted);
  font-family: var(--font-sans);
  line-height: 1.8;
  max-width: 90%;
}

@media (max-width: 900px) {
  .credentials-editorial-list {
    gap: 80px;
  }
  .award-row, .award-row:nth-child(even) {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  .award-text {
    padding: 0;
  }
  .award-text::before {
    display: none;
  }
  .award-text p {
    max-width: 100%;
    margin: 0 auto;
  }
}

/* ==========================================================================
   About Me Section
   ========================================================================== */
.about-me-container {
  display: flex;
  align-items: center;
  gap: 80px;
}

.about-me-container.reverse {
  flex-direction: row-reverse;
}

.about-me-image-col {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-me-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 450px;
  aspect-ratio: 4/5;
  border-radius: 200px 200px 20px 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--paper);
}

.about-me-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s ease;
}

.about-me-image-wrapper:hover img {
  transform: scale(1.05);
}

.about-me-text-col {
  flex: 1;
}

.about-me-text-col h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--plum);
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-me-body {
  border-left: 2px solid rgba(194, 168, 120, 0.4);
  padding-left: 24px;
  margin-bottom: 32px;
}

.about-me-body p {
  color: #1a1a1a;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-me-body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .about-me-container,
  .about-me-container.reverse {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  
  .about-me-image-wrapper {
    max-width: 250px;
    border-radius: 125px 125px 16px 16px;
    border-width: 6px;
  }
  
  .about-me-body {
    border-left: none;
    padding-left: 0;
  }
}

/* ==========================================================================
   Services & Offerings Table
   ========================================================================== */
.offerings-section {
  background: var(--ivory);
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 56px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  aspect-ratio: 4/5;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  padding: 32px 24px;
}

@supports (border-radius: 999px 999px 0 0) {
  .service-card {
    border-radius: 50vw 50vw 0 0;
  }
}

.service-card .service-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.6s ease;
}

.service-card .service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(47, 62, 50, 0.45); /* Translucent dark sage film */
  z-index: 2;
  transition: background 0.6s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.service-card:hover .service-bg {
  transform: scale(1.05);
}

.service-card:hover .service-overlay {
  background: rgba(47, 62, 50, 0.6);
}

.service-content {
  position: relative;
  z-index: 3;
  text-align: center;
}

.service-content h3 {
  font-size: 1.5rem;
  font-family: var(--font-serif);
  color: #ffffff !important;
  margin: 0 0 8px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.service-content p {
  color: rgba(255, 255, 255, 0.95) !important;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  margin: 0;
}

/* ==========================================================================
   Journal / Blog System
   ========================================================================== */
.blog-section {
  background: var(--ivory);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 56px;
}

.blog-card {
  display: flex;
  flex-direction: column;
}

.blog-image {
  aspect-ratio: 4/5;
  margin-bottom: 24px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-image:hover img {
  transform: scale(1.05);
}

.blog-date {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}

.blog-content h3 {
  font-size: 1.8rem;
  line-height: 1.3;
  margin: 0 0 16px;
}

.blog-content h3 a {
  text-decoration: none;
  color: var(--plum);
}

.blog-excerpt {
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.single-post-content {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--ink);
}

/* Force disable animation for any blocks pasted inside post content */
.single-post-content [data-animate],
.single-post-content[data-animate] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.single-post-content p {
  margin-bottom: 24px;
}

.single-post-content h2, 
.single-post-content h3 {
  font-family: var(--font-serif);
  color: var(--plum);
  margin: 48px 0 24px;
}

.single-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 32px 0;
}

.single-post-content blockquote {
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin: 40px 0;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--plum);
}

/* ==========================================================================
   Cards & Grids
   ========================================================================== */
.service-card-grid, .service-grid, .digest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.digest-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card, .digest-card, .booking-form, .manager-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(253, 251, 247, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card {
  position: relative;
  min-height: 360px;
  padding: 40px 32px;
  display: flex !important;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  text-decoration: none;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease, border-color 0.6s ease;
}

.service-card.arch-image {
  border-radius: 140px 140px var(--radius) var(--radius) !important;
}

.service-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 17, 23, 0) 0%, rgba(15, 17, 23, 0.3) 25%, rgba(15, 17, 23, 0.75) 55%, rgba(15, 17, 23, 0.95) 100%);
  z-index: 1;
  transition: background 0.5s ease;
}

.service-content {
  position: relative;
  z-index: 2;
  text-align: left;
  width: 100%;
}

.service-card h3 {
  color: var(--ivory) !important;
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0 0 8px;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.service-card p {
  color: rgba(255, 255, 255, 0.85) !important;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(197, 160, 89, 0.35);
  box-shadow: 0 20px 40px rgba(43, 45, 49, 0.12);
}

.service-card:hover .service-bg {
  transform: scale(1.06);
}

.service-card:hover .service-overlay {
  background: linear-gradient(180deg, rgba(15, 17, 23, 0) 0%, rgba(15, 17, 23, 0.4) 20%, rgba(15, 17, 23, 0.85) 50%, rgba(15, 17, 23, 0.98) 100%);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--teal);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.service-card h3, .digest-card h3, .manager-panel h3 {
  margin: 0 0 16px;
  color: var(--plum);
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 400;
}

.service-card p, .digest-card p, .appointment-copy p, .instagram-section p {
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  flex-grow: 1;
}

.service-card a, .digest-card a, .text-link {
  color: var(--rose-deep);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
}

.service-card a::after, .digest-card a::after {
  content: '→';
  transition: transform 0.4s ease;
}

.service-card:hover a::after, .digest-card:hover a::after {
  transform: translateX(6px);
}

/* ==========================================================================
   Appointments Section
   ========================================================================== */
.appointment-section {
  background: var(--plum);
  color: var(--ivory);
  padding: clamp(55px, 6.5vw, 85px) 0;
  position: relative;
  overflow: hidden;
}

.appointment-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at center, rgba(197, 160, 89, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.appointment-copy h2 {
  color: var(--saffron);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 24px;
}

.appointment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 2;
}

.appointment-copy {
  grid-column: 1 / 2;
}

.booking-form {
  grid-column: 2 / 3;
}

.appointment-copy p, .appointment-copy li {
  color: rgba(253, 251, 247, 0.8);
}

.check-list {
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-sans);
}

.check-list li {
  padding: 16px 0 16px 40px;
  border-top: 1px solid rgba(253, 251, 247, 0.1);
  position: relative;
}

.check-list li::before {
  content: "✧"; /* Softer star */
  position: absolute;
  left: 0;
  top: 16px;
  color: var(--saffron);
  font-size: 1.2rem;
  line-height: 1;
}

/* Forms */
.booking-form {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  color: var(--ivory);
  padding: clamp(20px, 4vw, 32px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
}

.manager-panel {
  grid-column: 1 / -1;
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--ivory);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
}

.manager-panel h3 {
  color: var(--ivory);
}

.form-row {
  display: grid;
  gap: 16px;
}

.form-row.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--rose-deep);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

input, select, textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--ivory);
  padding: 14px 16px;
  outline: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05) inset;
}

input::placeholder, select::placeholder, textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

textarea {
  resize: vertical;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--rose-deep);
  box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.15);
  background: rgba(255, 255, 255, 0.1);
}

/* Fix browser autofill background changing to white */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 50px #36383C inset !important;
  -webkit-text-fill-color: var(--ivory) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 12px;
}

.form-status {
  min-height: 24px;
  margin: 20px 0 0;
  color: var(--teal);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
}

/* Social Booking Buttons */
.form-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 24px 0;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.form-divider span {
  padding: 0 16px;
}

.booking-form .button {
  min-height: 48px;
  padding: 14px 24px;
  font-size: 0.85rem;
}

.social-booking {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.social-btn {
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--ivory);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: none;
}
.social-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  transform: translateY(-2px);
}
.social-btn.whatsapp:hover {
  background: rgba(37, 211, 102, 0.2);
  border-color: #25D366;
  color: #25D366;
}
.social-btn.instagram:hover {
  background: rgba(225, 48, 108, 0.1);
  border-color: #E1306C;
  color: #E1306C;
}

/* Manager Panel */
.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.clear-button {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.clear-button:hover {
  background: var(--paper);
  color: var(--plum);
}

.manager-panel h3 {
  margin-top: 12px;
  margin-bottom: 24px;
}

.appointment-list {
  display: grid;
  gap: 16px;
}

.request-item {
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  padding: 20px;
  background: #fff;
  transition: transform 0.4s ease;
}

.request-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.request-item strong {
  display: block;
  color: var(--plum);
  line-height: 1.4;
  margin-bottom: 6px;
}

.request-item span {
  display: block;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.85rem;
}

.empty-state {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-sans);
  font-style: italic;
}

/* ==========================================================================
   Digest Section
   ========================================================================== */
.digest-section {
  background: var(--ivory);
}

.digest-grid {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
}

.digest-card {
  padding: 40px 32px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.digest-card.featured {
  background: linear-gradient(135deg, #FFF, var(--paper));
  border-top: 4px solid var(--gold);
}

.digest-meta {
  margin: 0 0 20px;
  color: var(--teal);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ==========================================================================
   Instagram Section
   ========================================================================== */
.instagram-section {
  padding: clamp(55px, 6.5vw, 85px) 0;
  background: var(--paper);
}

.instagram-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}

.insta-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.insta-tile {
  aspect-ratio: 1;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}

.insta-tile:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.tile-one {
  background-image: linear-gradient(135deg, rgba(125, 143, 123, 0.2), rgba(194, 169, 128, 0.4)), url("assets/hero-altar.jpeg");
}

.tile-two {
  background: radial-gradient(circle at 70% 30%, rgba(226, 201, 171, 0.5) 0 10%, transparent 15%), linear-gradient(135deg, var(--ivory), var(--teal));
}

.tile-three {
  background: linear-gradient(135deg, var(--rose-deep), var(--paper) 60%, var(--gold));
}

.tile-four {
  background-image: linear-gradient(135deg, rgba(138, 157, 147, 0.2), rgba(62, 74, 64, 0.5)), url("assets/hero-altar.jpeg");
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--ivory);
  color: var(--ink);
  padding: 100px 0 80px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  align-items: start;
  gap: 48px;
}

.footer-grid strong {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--plum);
  display: block;
  margin-bottom: 12px;
}

.footer-grid h3 {
  font-size: 1rem;
  font-family: var(--font-sans);
  color: var(--plum);
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.95rem;
}

.site-footer a {
  display: block;
  margin: 0 0 12px;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.site-footer a:hover {
  color: var(--rose-deep);
}

/* ==========================================================================
   Hero Trust Note
   ========================================================================== */
.hero-trust-note {
  margin: 20px 0 0;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
}

/* ==========================================================================
   Guidance Sessions Cards
   ========================================================================== */
.guidance-section { background: var(--ivory); }
.guidance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 36px;
}
.guidance-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease, border-color 0.6s ease;
}
.guidance-image-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}
.guidance-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.guidance-card-content {
  padding: 36px 32px 40px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.guidance-card h3 {
  font-size: 1.45rem;
  color: var(--plum);
  margin: 0 0 16px;
  line-height: 1.3;
}
.guidance-card p {
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 20px;
}
.guidance-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--ink);
}
.guidance-includes li {
  padding: 6px 0 6px 24px;
  position: relative;
}
.guidance-includes li::before {
  content: "✧";
  position: absolute;
  left: 0;
  color: var(--gold);
}
.guidance-card .button {
  margin-top: auto;
  align-self: flex-start;
  padding: 12px 28px;
  font-size: 0.8rem;
}
.guidance-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(197, 160, 89, 0.08);
  border-color: rgba(197, 160, 89, 0.35);
  background: #FFF;
}
.guidance-card:hover .guidance-image-wrapper img {
  transform: scale(1.06);
}

/* ==========================================================================
   Target Clients Section
   ========================================================================== */
.target-section { background: var(--paper); }
.target-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.target-card {
  position: relative;
  height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease, border-color 0.6s ease;
}
.target-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}
.target-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 31, 33, 0) 0%, rgba(30, 31, 33, 0.4) 40%, rgba(30, 31, 33, 0.95) 100%);
  z-index: 1;
  transition: background 0.5s ease;
}
.target-card-content {
  position: relative;
  z-index: 2;
  text-align: left;
}
.target-card h3 {
  color: var(--ivory) !important;
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}
.target-card p {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
.target-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(43, 45, 49, 0.12);
  border-color: rgba(197, 160, 89, 0.35);
}
.target-card:hover .target-card-bg {
  transform: scale(1.06);
}
.target-card:hover .target-card-overlay {
  background: linear-gradient(180deg, rgba(30, 31, 33, 0) 0%, rgba(30, 31, 33, 0.5) 30%, rgba(30, 31, 33, 0.98) 100%);
}
.target-highlight {
  text-align: center;
  margin: 48px auto 0;
  max-width: 700px;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--plum);
  padding: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.steps-section {
  position: relative;
  background-image: linear-gradient(rgba(15, 17, 23, 0.45), rgba(15, 17, 23, 0.45)), url('assets/hero-altar.jpeg');
  background-size: cover;
  background-position: center;
  color: var(--ivory);
}

.steps-section .section-heading:not(.split) {
  background: rgba(23, 25, 38, 0.6) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

.steps-section .section-heading:not(.split) h2 {
  color: #FFFFFF !important;
}

.steps-section .section-heading:not(.split) .eyebrow {
  color: var(--gold) !important;
}

.steps-section .step-card h3 {
  color: #FFFFFF !important;
}

.steps-section .step-card p {
  color: rgba(255, 255, 255, 0.75) !important;
}

.steps-section .step-number {
  background: var(--gold) !important;
  color: #171926 !important;
  box-shadow: 0 0 20px rgba(197, 160, 89, 0.25) !important;
}

.steps-section .step-connector {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent) !important;
}
.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 36px;
}
.step-card {
  flex: 1;
  text-align: center;
  padding: 0 24px;
  max-width: 260px;
}
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--plum);
  color: var(--ivory);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(43,45,49,0.15);
}
.step-card h3 {
  font-size: 1.1rem;
  color: var(--plum);
  margin: 0 0 10px;
  font-weight: 500;
}
.step-card p {
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}
.step-connector {
  width: 48px;
  min-width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-top: 28px;
  flex-shrink: 0;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-section { background: var(--paper); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 36px;
}
.testimonial-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  margin: 0;
  transition: all 0.5s ease;
}
.testimonial-card::before {
  content: """;
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 4rem;
  color: rgba(194,168,120,0.2);
  font-family: var(--font-serif);
  line-height: 1;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}
.testimonial-card p {
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  font-style: italic;
  margin: 0 0 16px;
}
.testimonial-card cite {
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-section { background: var(--ivory); }
.faq-list {
  max-width: 800px;
  margin: 36px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--plum);
  text-align: left;
  line-height: 1.4;
  transition: color 0.3s ease;
}
.faq-question:hover { color: var(--rose-deep); }
.faq-toggle {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s ease;
  margin-left: 16px;
  flex-shrink: 0;
}
.faq-item.is-open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 0;
}
.faq-item.is-open .faq-answer {
  max-height: 300px;
  padding: 0 0 24px;
}
.faq-answer p {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
}

/* ==========================================================================
   Final CTA Banner
   ========================================================================== */
.final-cta-section {
  background: var(--plum);
  color: var(--ivory);
  padding: clamp(55px, 6.5vw, 85px) 0;
  position: relative;
  overflow: hidden;
}
.final-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(194,168,120,0.12), transparent 60%),
              radial-gradient(circle at 70% 40%, rgba(163,181,166,0.08), transparent 50%);
  pointer-events: none;
}
.final-cta-section h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--saffron);
  margin: 0 0 20px;
  line-height: 1.2;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta-section p {
  color: rgba(253,251,247,0.75);
  font-family: var(--font-sans);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.final-cta-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.final-cta-decor .star {
  position: absolute;
  color: rgba(194,168,120,0.25);
  animation: floatStar 6s ease-in-out infinite alternate;
}
.s1 { top: 15%; left: 10%; font-size: 1.5rem; animation-delay: 0s; }
.s2 { top: 25%; right: 15%; font-size: 1rem; animation-delay: 1s; }
.s3 { bottom: 20%; left: 20%; font-size: 1.2rem; animation-delay: 2s; }
.s4 { top: 30%; right: 25%; font-size: 2.5rem; animation-delay: 0.5s; }
.s5 { bottom: 30%; right: 10%; font-size: 0.9rem; animation-delay: 1.5s; }
@keyframes floatStar {
  0% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
  100% { transform: translateY(-15px) rotate(10deg); opacity: 0.7; }
}

/* ==========================================================================
   Consent Checkbox
   ========================================================================== */
.consent-label {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  margin: 16px 0 24px;
  font-size: 0.8rem !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: rgba(255,255,255,0.6) !important;
  line-height: 1.5;
  cursor: pointer;
}
.consent-label input[type="checkbox"] {
  width: 20px;
  min-width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--rose-deep);
}
.consent-label span {
  flex: 1;
}

/* ==========================================================================
   Animations
   ========================================================================== */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
  .site-nav {
    position: fixed;
    inset: 80px 16px auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  body.nav-open .site-nav {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .site-nav a {
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid var(--line);
    color: var(--plum);
  }

  .site-nav a:not(.nav-cta):hover::after {
    display: none;
  }

  .nav-cta {
    margin-top: 16px;
    border-radius: 8px;
    color: var(--rose-deep) !important;
  }

  .nav-toggle {
    display: block;
  }

  .intro-grid, .appointment-grid, .instagram-grid, .feature-grid {
    grid-template-columns: 1fr;
  }

  .appointment-copy, .booking-form {
    grid-column: 1 / -1;
  }

  .feature-grid-3 {
    grid-template-columns: 1fr;
  }

  .feature-image-side {
    max-width: 400px;
    margin: 0 auto;
  }

  .service-card-grid, .service-grid, .digest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guidance-grid, .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .target-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    flex-direction: column;
    align-items: center;
  }
  .step-connector {
    width: 2px;
    height: 32px;
    min-width: 2px;
    margin: 0;
  }
  .step-card {
    max-width: 100%;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(30, 31, 33, 0.95) 0%, rgba(30, 31, 33, 0.7) 60%, rgba(30, 31, 33, 0.1) 100%),
      linear-gradient(180deg, rgba(30, 31, 33, 0.3) 0%, rgba(30, 31, 33, 0.8) 100%);
  }

  .hero-content {
    width: min(100% - 32px, 620px);
    margin: 0 0 0 16px;
    padding: 140px 0 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: 2.1rem;
    line-height: 1.25;
    letter-spacing: 0.5px;
    margin: 0;
    max-width: 90%;
  }

  .hero-copy {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 16px;
    max-width: 90%;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 320px;
    margin-top: 28px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 50px;
    padding: 12px 24px;
    font-size: 0.85rem;
  }

  .hero-trust-note {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    opacity: 0.8;
    letter-spacing: 0.5px;
    margin-top: 16px;
    max-width: 280px;
    line-height: 1.4;
  }

  .hero-notes {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px;
    width: 100%;
    max-width: 400px;
    margin-top: 36px;
  }

  .hero-notes div {
    border-top: 1px solid rgba(253, 251, 247, 0.15);
    padding-top: 12px;
  }

  .hero-notes dt {
    font-size: 0.7rem;
  }

  .hero-notes dd {
    font-size: 0.8rem;
    margin-top: 4px;
  }

  .form-row.two, .service-card-grid, .service-grid, .digest-grid, .gallery-grid, .credentials-grid, .social-booking, .target-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    padding: 28px 20px !important;
    margin-bottom: 36px !important;
  }

  .service-card {
    min-height: 280px !important;
    padding: 24px !important;
  }

  .service-card.arch-image {
    border-radius: 100px 100px var(--radius) var(--radius) !important;
  }

  .guidance-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .guidance-image-wrapper {
    height: 180px;
  }

  .guidance-card-content {
    padding: 28px 20px 32px;
  }

  .target-card {
    height: 320px;
    padding: 20px;
  }

  .target-card h3 {
    font-size: 1.15rem;
  }

  .target-card p {
    font-size: 0.8rem;
  }

  .section-heading.split {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .insta-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer a {
    margin: 0 24px 16px 0;
  }

  .reviews-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  
  .review-image-card {
    padding: 12px !important;
  }
  
  .review-image-card::before {
    inset: 6px !important;
  }
}
/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25D366;
  color: white;
  height: 56px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  animation: pulse-ring 2s infinite;
  transition: transform 0.3s ease;
  text-decoration: none;
}
.wa-label {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

.floating-whatsapp svg {
  width: 35px;
  height: 35px;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Reviews Gallery & Testimonials Grid Styling */
.reviews-section {
  position: relative;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
}

.review-image-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.review-image-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed var(--gold);
  border-radius: calc(var(--radius) - 8px);
  pointer-events: none;
  opacity: 0.35;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-image-card img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius) - 10px);
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-image-card:hover {
  transform: translateY(-10px) scale(1.015);
  border-color: var(--rose-deep);
  box-shadow: 0 20px 40px rgba(194, 168, 120, 0.15);
}

.review-image-card:hover::before {
  opacity: 1;
  border-style: solid;
  inset: 10px;
}

.review-image-card:hover img {
  transform: scale(1.025);
}

/* Pagination Styling */
.pagination-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 64px;
  font-family: var(--font-sans);
}

.pagination-wrapper .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--plum);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pagination-wrapper .page-numbers:hover,
.pagination-wrapper .page-numbers.current {
  background: var(--rose-deep);
  color: #FFFFFF !important;
  border-color: var(--rose-deep);
  box-shadow: 0 8px 20px rgba(197, 160, 89, 0.25);
}

.pagination-wrapper .page-numbers.dots {
  border: none;
  background: transparent;
  color: var(--muted);
}

/* ==========================================================================
   Reviews Carousel & Text Testimonials Styles (Behance Showcase Inspired)
   ========================================================================== */
.reviews-split-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 0 24px;
  max-width: 100%;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .reviews-split-container {
    grid-template-columns: 1.1fr 1.9fr;
    gap: 60px;
    padding-left: clamp(18px, 7vw, 96px); /* Align left column with site header & hero */
    padding-right: 0; /* Let right carousel touch the screen border */
    align-items: center;
  }
}

/* Left Content Details & Features */
.reviews-left-content {
  padding-right: 20px;
}

.reviews-left-content h2 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: 1.1;
  font-family: var(--font-serif);
  margin-bottom: 20px;
}

.reviews-intro-copy {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 24px;
}

.reviews-features-list {
  list-style: none;
  padding: 0;
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reviews-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: var(--plum);
  font-weight: 500;
}

.dark-theme .reviews-features-list li {
  color: #ebd2a8;
}

.reviews-features-list .feature-icon {
  color: var(--gold);
  font-size: 1.25rem;
  line-height: 1;
}

.reviews-action-wrapper {
  margin-top: 36px;
}

/* Right Content Carousel Wrapper */
.reviews-right-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.reviews-carousel-wrapper {
  position: relative;
  width: 100%;
  padding: 0 48px; /* Room for left/right navigation arrows */
  box-sizing: border-box;
}

.reviews-carousel {
  overflow: visible; /* Allow slides to slide smoothly without sharp borders */
  width: 100%;
  cursor: grab;
  padding: 40px 0; /* Vertical breathing space for 3D card tilt & scale */
}

.reviews-carousel:active {
  cursor: grabbing;
}

.carousel-track {
  display: flex;
  gap: 24px;
  align-items: center; /* Align staggered cards beautifully */
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* Colorful Card Styles & Staggered 3D Tilt */
.review-text-card {
  flex: 0 0 85%; /* Let the next card peek to indicate swipeability on mobile */
  padding: 24px 28px;
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 370px;
  max-height: 370px;
  box-sizing: border-box;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  user-select: none; /* Prevent text selection on review cards */
  -webkit-user-select: none;
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s ease;
  will-change: transform, opacity;
}

/* Dynamic Carousel slide visibility to prevent leftmost/rightmost cards being cut by half */
.carousel-slide.slide-hidden {
  opacity: 0 !important;
  pointer-events: none;
  visibility: hidden;
}

.carousel-slide.slide-visible {
  opacity: 1 !important;
  pointer-events: auto;
  visibility: visible;
}

@media (min-width: 640px) {
  .review-text-card {
    flex: 0 0 calc((100% - 24px) / 2); /* 2 cards */
  }
}

@media (min-width: 1600px) {
  .review-text-card {
    flex: 0 0 calc((100% - 48px) / 3); /* 3 cards */
  }
}

/* 4-Variant Theme Palette (Charcoal-Plum, Warm-Gold, Spiritual-Rose, Dark-Indigo) */
.review-text-card.card-plum {
  background: #252028;
  border: 1px solid rgba(235, 210, 168, 0.15);
}
.review-text-card.card-plum p {
  color: #FDFBF7;
}
.review-text-card.card-plum .review-stars {
  color: var(--gold);
}
.review-text-card.card-plum .seeker-name {
  color: var(--gold);
}
.review-text-card.card-plum .seeker-category {
  color: rgba(253, 251, 247, 0.6);
}
.review-text-card.card-plum cite {
  border-top: 1px solid rgba(235, 210, 168, 0.15);
}
.review-text-card.card-plum .seeker-avatar-circle {
  background: var(--gold);
  color: #252028;
}

.review-text-card.card-gold {
  background: #ebd2a8;
  border: 1px solid rgba(37, 32, 40, 0.1);
}
.review-text-card.card-gold p {
  color: #252028;
  font-weight: 500;
}
.review-text-card.card-gold .review-stars {
  color: #252028;
}
.review-text-card.card-gold .seeker-name {
  color: #252028;
  font-weight: 700;
}
.review-text-card.card-gold .seeker-category {
  color: rgba(37, 32, 40, 0.7);
}
.review-text-card.card-gold cite {
  border-top: 1px solid rgba(37, 32, 40, 0.15);
}
.review-text-card.card-gold .seeker-avatar-circle {
  background: #252028;
  color: #ebd2a8;
}

.review-text-card.card-rose {
  background: #842045;
  border: 1px solid rgba(235, 210, 168, 0.2);
}
.review-text-card.card-rose p {
  color: #FDFBF7;
}
.review-text-card.card-rose .review-stars {
  color: var(--gold);
}
.review-text-card.card-rose .seeker-name {
  color: var(--gold);
}
.review-text-card.card-rose .seeker-category {
  color: rgba(253, 251, 247, 0.6);
}
.review-text-card.card-rose cite {
  border-top: 1px solid rgba(235, 210, 168, 0.15);
}
.review-text-card.card-rose .seeker-avatar-circle {
  background: var(--gold);
  color: #842045;
}

.review-text-card.card-indigo {
  background: #171926;
  border: 1px solid rgba(235, 210, 168, 0.15);
}
.review-text-card.card-indigo p {
  color: #FDFBF7;
}
.review-text-card.card-indigo .review-stars {
  color: var(--gold);
}
.review-text-card.card-indigo .seeker-name {
  color: var(--gold);
}
.review-text-card.card-indigo .seeker-category {
  color: rgba(253, 251, 247, 0.6);
}
.review-text-card.card-indigo cite {
  border-top: 1px solid rgba(235, 210, 168, 0.15);
}
.review-text-card.card-indigo .seeker-avatar-circle {
  background: var(--gold);
  color: #171926;
}

/* Staggered Vertical Translates and Subtle Rotations (Behance Style) */
@media (min-width: 640px) {
  .carousel-slide:nth-child(4n+1) {
    transform: translateY(-12px) rotate(-1.5deg);
  }
  .carousel-slide:nth-child(4n+2) {
    transform: translateY(12px) rotate(1.5deg);
  }
  .carousel-slide:nth-child(4n+3) {
    transform: translateY(-6px) rotate(-0.5deg);
  }
  .carousel-slide:nth-child(4n+4) {
    transform: translateY(16px) rotate(1deg);
  }
}

/* Hover micro-interactions: lift, level, and cast shadow */
.review-text-card:hover {
  transform: translateY(-20px) scale(1.04) rotate(0deg) !important;
  z-index: 10;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.review-stars {
  font-size: 1.1rem;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.review-text-card p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
  overflow-y: auto;
  padding-right: 8px;
}

/* Custom premium scrollbar for review card text */
.review-text-card p::-webkit-scrollbar {
  width: 4px;
}
.review-text-card p::-webkit-scrollbar-track {
  background: transparent;
}
.review-text-card p::-webkit-scrollbar-thumb {
  background: rgba(194, 168, 120, 0.3);
  border-radius: 2px;
}
.review-text-card p::-webkit-scrollbar-thumb:hover {
  background: rgba(194, 168, 120, 0.6);
}

.review-text-card cite {
  display: flex;
  align-items: center;
  gap: 12px;
  font-style: normal;
  margin-top: 16px;
  padding-top: 12px;
}

.seeker-avatar-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.05rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.seeker-info {
  display: flex;
  flex-direction: column;
}

.seeker-name {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
}

.seeker-category {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 1px;
}

/* Navigation Controls Overlay */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid var(--line);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.carousel-arrow:hover {
  background: var(--rose-deep);
  color: #FFFFFF;
  border-color: var(--rose-deep);
  box-shadow: var(--shadow-lg);
}

.carousel-arrow.prev {
  left: 0px;
}

.carousel-arrow.next {
  right: 0px;
}

/* Pagination Dots */
.carousel-dots-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.carousel-dots {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.3);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--rose-deep);
  transform: scale(1.2);
}

/* Mobile & Tablet Overrides */
@media (max-width: 1023px) {
  .reviews-carousel-wrapper {
    padding: 0 40px;
  }
  .carousel-arrow {
    display: none; /* Swipe is primary on mobile */
  }
}

@media (max-width: 640px) {
  .reviews-section {
    padding: 60px 0;
  }
  .reviews-carousel {
    padding: 0;
  }
  .reviews-carousel-wrapper {
    padding: 0;
  }
  .review-text-card {
    height: 380px;
    min-height: auto;
    padding: 20px;
  }
  .review-text-card p {
    font-size: 1rem;
    overflow-y: auto;
    padding-right: 12px;
  }
  /* Custom scrollbar for mobile */
  .review-text-card p::-webkit-scrollbar {
    width: 4px;
  }
  .review-text-card p::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
  }
  .review-text-card p::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
  }
}

/* ==========================================================================
   Luxurious Dark Mode Theme Overrides
   ========================================================================== */
body.dark-theme {
  background-color: #0c0d0f !important;
  color: #e5e7eb !important;
}

/* Base body typography color overrides for dark mode */
.dark-theme p, 
.dark-theme cite,
.dark-theme li,
.dark-theme span,
.dark-theme select,
.dark-theme input,
.dark-theme textarea {
  color: #c9ccd2;
}

.dark-theme h1, 
.dark-theme h2, 
.dark-theme h3, 
.dark-theme h4, 
.dark-theme h5, 
.dark-theme h6,
.dark-theme strong,
.dark-theme b {
  color: #ebd2a8 !important; /* Soft golden color for premium contrast */
}

/* Header & Menu styles in dark theme */
.dark-theme .site-header {
  background: rgba(12, 13, 15, 0.8) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(235, 210, 168, 0.1);
}

.dark-theme .site-header .brand strong,
.dark-theme .site-header .brand-mark {
  color: #ebd2a8 !important;
}

.dark-theme .site-header .brand-mark {
  border-color: #ebd2a8 !important;
}

.dark-theme .site-nav a {
  color: #ebd2a8 !important;
}

.dark-theme .site-nav a:hover {
  color: #FFFFFF !important;
}

.dark-theme .site-nav a.nav-cta {
  background: #ebd2a8 !important;
  color: #0c0d0f !important;
  border-color: #ebd2a8 !important;
}

.dark-theme .site-nav a.nav-cta:hover {
  background: #FFFFFF !important;
  color: #0c0d0f !important;
}

/* Mobile Nav Toggle dark override */
.dark-theme .nav-toggle span {
  background-color: #ebd2a8 !important;
}

/* Single Post Header / Intro Band */
.dark-theme .single-post-header.intro-band {
  background: radial-gradient(circle at top, rgba(194, 168, 120, 0.08) 0%, transparent 70%);
  border-bottom: 1px solid rgba(235, 210, 168, 0.1);
}

.dark-theme .eyebrow {
  color: #ebd2a8 !important;
}

/* Reviews Page Section & Grid Overrides */
.dark-theme .reviews-section {
  background-color: #0c0d0f;
}

.dark-theme .review-image-card {
  background: #000000 !important; /* solid black for native whatsapp screenshots alignment */
  border: 1px solid rgba(235, 210, 168, 0.15) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

.dark-theme .review-image-card::before {
  border-color: #ebd2a8 !important;
  opacity: 0.15;
}

.dark-theme .review-image-card:hover {
  border-color: #ebd2a8 !important;
  box-shadow: 0 15px 35px rgba(235, 210, 168, 0.15) !important;
}

.dark-theme .review-image-card:hover::before {
  opacity: 0.5;
}

/* Pagination Overrides */
.dark-theme .pagination-wrapper .page-numbers {
  border-color: rgba(235, 210, 168, 0.2) !important;
  color: #ebd2a8 !important;
}

.dark-theme .pagination-wrapper .page-numbers:hover,
.dark-theme .pagination-wrapper .page-numbers.current {
  background: #ebd2a8 !important;
  color: #0c0d0f !important;
  border-color: #ebd2a8 !important;
  box-shadow: 0 8px 25px rgba(235, 210, 168, 0.25) !important;
}

/* Footer / Back link Overrides */
.dark-theme .post-footer {
  border-top: 1px solid rgba(235, 210, 168, 0.1) !important;
}

.dark-theme .button.secondary {
  border-color: #ebd2a8 !important;
  color: #ebd2a8 !important;
  background: transparent !important;
}

.dark-theme .button.secondary:hover {
  background: #ebd2a8 !important;
  color: #0c0d0f !important;
  box-shadow: 0 8px 20px rgba(235, 210, 168, 0.2) !important;
}

.dark-theme .site-footer {
  background-color: #08090a !important;
  border-top: 1px solid rgba(235, 210, 168, 0.1) !important;
}

.dark-theme .site-footer strong,
.dark-theme .site-footer h3 {
  color: #ebd2a8 !important;
}

.dark-theme .site-footer a {
  color: #c9ccd2 !important;
}

.dark-theme .site-footer a:hover {
  color: #ebd2a8 !important;
}

.dark-theme::-webkit-scrollbar-thumb {
  background: rgba(235, 210, 168, 0.4);
}
.dark-theme::-webkit-scrollbar-thumb:hover {
  background: rgba(235, 210, 168, 0.8);
}

/* Lightbox Modal Styles */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(12, 13, 15, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: opacity 0.3s ease;
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  border-radius: var(--radius);
  border: 1px solid rgba(235, 210, 168, 0.2);
  box-shadow: 0 10px 45px rgba(0, 0, 0, 0.6);
  animation-name: zoomIn;
  animation-duration: 0.3s;
}

@keyframes zoomIn {
  from {transform: scale(0.9); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 35px;
  color: #FDFBF7;
  font-size: 40px;
  font-weight: 300;
  transition: 0.3s;
  cursor: pointer;
}

.lightbox-close:hover {
  color: var(--gold);
}

#lightbox-caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ebd2a8;
  padding: 15px 0;
  font-size: 1.1rem;
}

.view-screenshot-btn {
  transition: all 0.3s ease;
}
.view-screenshot-btn:hover {
  color: #FFFFFF !important;
  transform: scale(1.15);
}

/* Reviews Grid Staggered Rotation Override */
@media (min-width: 768px) {
  .reviews-grid .review-text-card {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reviews-grid .review-text-card:nth-child(4n+1) {
    transform: translateY(-8px) rotate(-1deg);
  }
  .reviews-grid .review-text-card:nth-child(4n+2) {
    transform: translateY(8px) rotate(1deg);
  }
  .reviews-grid .review-text-card:nth-child(4n+3) {
    transform: translateY(-4px) rotate(-0.5deg);
  }
  .reviews-grid .review-text-card:nth-child(4n+4) {
    transform: translateY(12px) rotate(1.5deg);
  }
}

/* Tarot Specialist Section Background Override */
#tarot {
  position: relative;
  background-image: linear-gradient(rgba(15, 17, 23, 0.45), rgba(15, 17, 23, 0.45)), url('assets/more Images/Extend Choosing the Cards, Trusting the Journey.jpeg');
  background-size: cover;
  background-position: center;
  color: var(--ivory);
}

#tarot h2 {
  color: #FFFFFF !important;
}

#tarot .eyebrow {
  color: var(--gold) !important;
}

#tarot .about-me-body p {
  color: rgba(255, 255, 255, 0.8) !important;
}

#tarot .about-me-body {
  border-left-color: rgba(194, 168, 120, 0.6) !important;
}

#tarot .about-me-image-wrapper {
  border-color: rgba(255, 255, 255, 0.15) !important;
}

#tarot .about-me-text-col {
  background: rgba(15, 17, 23, 0.75) !important;
  padding: clamp(24px, 4vw, 40px) !important;
  border-radius: var(--radius) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4) !important;
}


