/*
Theme Name: Lalita Grace Premium
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-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.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(100px, 12vw, 160px) 0;
  position: relative;
  background: var(--ivory);
}

/* 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 {
  max-width: 720px;
  margin-bottom: 56px;
}

.section-heading.split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.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(100px, 12vw, 160px) 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 {
  background: linear-gradient(to bottom, var(--ivory), var(--paper));
}

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

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/5;
  background: #fff;
  padding: 8px; /* Polaroid feel */
}

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

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

/* ==========================================================================
   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: var(--muted);
  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-grid, .digest-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.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 {
  min-height: 320px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
}

.service-card:hover, .digest-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(194, 169, 128, 0.4); /* Gold soft */
  background: #FFF;
}

.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(100px, 12vw, 160px) 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(100px, 12vw, 160px) 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);
}

/* ==========================================================================
   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-grid, .digest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 85svh;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(62, 74, 64, 0.3), rgba(62, 74, 64, 0.5)),
      linear-gradient(90deg, rgba(62, 74, 64, 0.2), rgba(62, 74, 64, 0.3));
  }

  .hero-content {
    width: min(100% - 32px, 620px);
    margin: 0 auto;
    padding-bottom: 40px;
  }

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

  .hero-actions .button, .section-heading.split {
    width: 100%;
  }

  .section-heading.split, .footer-grid {
    display: grid;
    gap: 32px;
  }

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

  .site-footer a {
    margin: 0 24px 16px 0;
  }
}
/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  animation: pulse-ring 2s infinite;
  transition: transform 0.3s ease;
}

.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);
  }
}
