/* 
  Starflower Consulting - Phase 1.5 Premium Design System 
  Theme: "Are you ready to bloom?"
  Palette: Ethereal Whites, Starlight Golds, Soft Lotus Pink
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --color-bg: #FCFBFA; 
  --color-surface: rgba(255, 255, 255, 0.85); 
  --color-text-main: #3D3B38; 
  --color-text-muted: #6B6863;
  --color-gold-light: #F9E2AF;
  --color-gold: #D4AF37; 
  --color-floral-light: #FCE8EE;
  --color-floral: #D96C8B; 
  --color-purple: #7b2cbf;
  --color-purple-light: #9d4edd; 
  
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  
  --nav-height: 80px;
  --container-max: 1200px;
  
  --transition-smooth: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-starlight: 0 8px 32px rgba(212, 175, 55, 0.25);
  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-lift: 0 1px 2px rgba(61, 45, 75, 0.08), 0 12px 28px rgba(123, 44, 191, 0.14), 0 28px 56px rgba(61, 45, 75, 0.1);
  --shadow-lift-hover: 0 2px 4px rgba(61, 45, 75, 0.1), 0 20px 40px rgba(123, 44, 191, 0.22), 0 40px 72px rgba(217, 108, 139, 0.15);
  --shadow-stage: 0 0 0 1px rgba(255, 255, 255, 0.95) inset, 0 2px 4px rgba(61, 45, 75, 0.06), 0 24px 48px rgba(123, 44, 191, 0.16), 0 48px 96px rgba(61, 45, 75, 0.12);
  --border-gold: rgba(201, 162, 39, 0.65);
  --border-floral: rgba(217, 108, 139, 0.5);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Subtle background energy for the whole site */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: radial-gradient(circle at 15% 50%, rgba(212, 175, 55, 0.04), transparent 40%),
              radial-gradient(circle at 85% 30%, rgba(217, 108, 139, 0.04), transparent 40%);
  z-index: -10;
  pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--color-text-main);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout Utilities */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 8rem 0;
  position: relative;
}

/* Typography Effects */
.glow-text {
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.9), 0 0 60px rgba(212, 175, 55, 0.4);
}

/* ========================================================================= */
/* NAVIGATION */
/* ========================================================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  height: var(--nav-height);
  background: var(--color-surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  box-shadow: var(--shadow-glass);
  background: rgba(252, 251, 250, 0.95);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* The lotus art is roughly 1.41:1 and transparent, so it is set on a plum
   disc rather than cropped square: contain keeps every petal, and the dark
   ground is what lets the pale gold star register against a cream navbar. */
.nav-logo-img {
  height: 52px;
  width: 52px;
  object-fit: contain;
  padding: 7px 5px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 30%, #4a2a6d 0%, #2d1b4e 70%, #1d1236 100%);
  box-shadow: 0 2px 10px rgba(45, 27, 78, 0.35),
              0 0 0 1px rgba(212, 175, 55, 0.45);
  transition: var(--transition-smooth);
}

.nav-brand:hover .nav-logo-img {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(45, 27, 78, 0.45),
              0 0 0 1px rgba(212, 175, 55, 0.8);
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-purple);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: var(--color-purple);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.mobile-nav-toggle {
  display: none; /* hidden on desktop */
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 44px;
  height: 32px;
  padding: 6px 4px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--color-purple);
  z-index: 1002;
  position: relative;
  flex-shrink: 0;
}

.mobile-nav-toggle__bar {
  display: block;
  width: 26px;
  height: 3px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

.mobile-nav-toggle.is-open .mobile-nav-toggle__bar:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.mobile-nav-toggle.is-open .mobile-nav-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-nav-toggle.is-open .mobile-nav-toggle__bar:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

body.nav-open {
  overflow: hidden;
}

/* ========================================================================= */
/* BUTTONS */
/* ========================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-purple), #5a189a);
  color: #fff;
  box-shadow: 0 4px 15px rgba(123, 44, 191, 0.4);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: all 0.6s ease;
}

.btn-primary:hover::after {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(123, 44, 191, 0.6);
}

.btn-outline {
  background: transparent;
  color: var(--color-text-main);
  border: 1px solid var(--color-purple);
}

.btn-outline:hover {
  background: var(--color-purple);
  color: #fff;
  box-shadow: 0 4px 15px rgba(123, 44, 191, 0.3);
}

.pulse-btn {
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.btn-sound {
  backdrop-filter: blur(5px);
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-sound:hover {
  background: rgba(255,255,255,0.25);
  border-color: #fff;
  color: #fff;
}

/* ========================================================================= */
/* PREMIUM HIGH-IMPACT DIVIDERS */
/* ========================================================================= */

/* 1. Sacred Gate Divider (Ornate Gold Geometry) */
.sacred-gate-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.sacred-gate-divider::before,
.sacred-gate-divider::after {
  content: '';
  height: 2px;
  width: 35vw;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0.7;
}

.diamond-cluster {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.diamond-cluster .d1 {
  position: absolute;
  width: 25px; height: 25px;
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  transform: rotate(45deg);
  box-shadow: 0 0 25px var(--color-floral), 0 0 50px var(--color-gold);
  z-index: 3;
  animation: pulse-glow 3s infinite alternate;
}

.diamond-cluster .d2 {
  position: absolute;
  width: 50px; height: 50px;
  border: 2px solid var(--color-gold);
  transform: rotate(45deg);
  z-index: 2;
}

.diamond-cluster .d3 {
  position: absolute;
  width: 75px; height: 75px;
  border: 1px dashed rgba(212, 175, 55, 0.6);
  transform: rotate(45deg);
  z-index: 1;
  animation: spin-slow 20s linear infinite;
}

@keyframes spin-slow {
  from { transform: rotate(45deg); }
  to { transform: rotate(405deg); }
}

/* 2. Parallax Media Banner */
.parallax-banner {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0;
}

.parallax-banner--floral {
  background:
    linear-gradient(135deg, rgba(123, 44, 191, 0.45) 0%, rgba(217, 108, 139, 0.4) 50%, rgba(212, 175, 55, 0.25) 100%),
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(252, 232, 238, 0.9) 0%, transparent 70%),
    #3d1054;
}

.parallax-banner video {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  object-fit: cover;
  filter: brightness(0.85) saturate(1.2);
}

.parallax-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to right, rgba(123, 44, 191, 0.2), rgba(217, 108, 139, 0.2));
  z-index: 1;
}

.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 2rem;
}

.parallax-content h3 {
  font-size: 3.5rem;
  font-style: italic;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5), 0 0 30px rgba(212, 175, 55, 0.6);
  letter-spacing: 2px;
}

/* 3. Golden Lotus Image Divider */
.lotus-divider {
  text-align: center;
  padding: 5rem 0;
  position: relative;
}

.lotus-divider img {
  width: 120px;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 10px 20px rgba(212, 175, 55, 0.4));
  transition: transform 0.8s ease;
}

.lotus-divider:hover img {
  transform: scale(1.1) rotate(5deg);
}

.lotus-divider::before {
  content: '';
  position: absolute;
  top: 50%; left: 0;
  width: 100%; height: 1px;
  background: radial-gradient(circle at center, var(--color-gold) 0%, transparent 70%);
  opacity: 0.5;
  z-index: -1;
}

/* ========================================================================= */
/* HERO SECTION — light floral stage (homepage only) */
/* ========================================================================= */

body.page-home {
  background: var(--color-bg);
}

body.page-home .navbar {
  background: rgba(252, 251, 250, 0.88);
  border-bottom: 1px solid rgba(217, 108, 139, 0.12);
}

body.page-home .navbar.scrolled {
  background: rgba(252, 251, 250, 0.96);
  box-shadow: var(--shadow-glass);
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 0;
  min-height: 100vh;
  min-height: 100dvh;
  padding: calc(var(--nav-height) + 1rem) 1.25rem 2.25rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, #FFF8FB 0%, #FCFBFA 55%, #F7F1E8 100%);
  text-align: center;
}

.hero--bloom {
  background:
    radial-gradient(ellipse at 50% 20%, rgba(252, 232, 238, 0.95) 0%, transparent 50%),
    radial-gradient(ellipse at 15% 70%, rgba(249, 226, 175, 0.35) 0%, transparent 42%),
    radial-gradient(ellipse at 85% 65%, rgba(217, 108, 139, 0.18) 0%, transparent 40%),
    linear-gradient(180deg, #FFF9FC 0%, #FCFBFA 50%, #F8F3EA 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-media-wash {
  position: absolute;
  inset: 0;
  background-image: url("/static/images/floral_bg.png");
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  mix-blend-mode: multiply;
}

.hero-media-wash::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(255, 255, 255, 0.35) 0%, transparent 55%),
    linear-gradient(180deg, rgba(252, 251, 250, 0.55) 0%, transparent 30%, rgba(252, 251, 250, 0.4) 100%);
}

.hero-frame {
  position: relative;
  z-index: 1;
  width: min(94vw, 1120px);
  padding: clamp(1.5rem, 4vw, 2.75rem);
  animation: heroRise 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-frame-bloom {
  position: absolute;
  width: clamp(160px, 28vw, 300px);
  height: auto;
  pointer-events: none;
  z-index: 0;
  opacity: 0.72;
  filter: saturate(1.05);
  animation: bloomFloat 8s ease-in-out infinite alternate;
}

.hero-frame-bloom--tl {
  top: -2rem;
  left: -2.25rem;
}

.hero-frame-bloom--tr {
  top: -2.25rem;
  right: -2.25rem;
  --bloom-flip: -1;
  animation-delay: -2s;
}

.hero-frame-bloom--bl {
  bottom: -2rem;
  left: -2rem;
  --bloom-rot: 180deg;
  animation-delay: -4s;
  opacity: 0.55;
}

.hero-frame-bloom--br {
  bottom: -2.1rem;
  right: -2rem;
  --bloom-flip: -1;
  --bloom-rot: 180deg;
  animation-delay: -6s;
  opacity: 0.55;
}

@keyframes bloomFloat {
  from { transform: translateY(0) scaleX(var(--bloom-flip, 1)) rotate(var(--bloom-rot, 0deg)); }
  to { transform: translateY(-6px) scaleX(var(--bloom-flip, 1)) rotate(var(--bloom-rot, 0deg)); }
}

.hero-frame-bloom--tl { --bloom-rot: 0deg; --bloom-flip: 1; }
.hero-frame-bloom--tr { --bloom-rot: 0deg; }

.hero-stage {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  line-height: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.98),
    0 0 0 4px rgba(249, 226, 175, 0.7),
    0 0 0 12px rgba(252, 232, 238, 0.85),
    0 0 40px rgba(217, 108, 139, 0.18),
    0 22px 50px rgba(123, 44, 191, 0.1);
}

.hero-video {
  display: block;
  border: 0;
  outline: none;
}

.hero-video--focus {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: calc(100dvh - var(--nav-height) - 10rem);
  object-fit: cover;
  object-position: center center;
  background: #FFF8FB;
}

/* hero-stage-veil removed — was adding unwanted dark corner */

.hero-outro {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  max-width: 36rem;
  padding: 0 0.5rem;
  animation: heroRise 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

@keyframes heroRise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-line {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  color: var(--color-purple);
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1.4rem;
}

.hero-actions .btn-primary {
  padding: 0.9rem 1.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

.hero-text-link {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-floral);
  transition: color 0.3s ease, transform 0.3s ease;
}

.hero-text-link:hover {
  color: var(--color-purple);
  transform: translateY(-1px);
}

.hero--bloom + .about-section {
  background: var(--color-bg);
}

/* ========================================================================= */
/* ABOUT SECTION (EDITORIAL SPLIT) */
/* ========================================================================= */
.about-section {
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.editorial-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.editorial-text {
  padding-right: 2rem;
  position: relative;
}

.quote-wrapper {
  position: relative;
  padding: 3rem 4rem;
  margin-bottom: 3rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  border-left: 4px solid var(--color-gold);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
  transition: var(--transition-smooth);
}

.quote-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.25);
}

.quote-wrapper::before, .quote-wrapper::after {
  content: '"';
  position: absolute;
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--color-gold-light);
  opacity: 0.6;
  line-height: 1;
  z-index: 1;
}

.quote-wrapper::before { top: 10px; left: 10px; }
.quote-wrapper::after { bottom: -30px; right: 20px; }

.editorial-quote {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-style: italic;
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

.gradient-text {
  background: linear-gradient(135deg, var(--color-purple-light), var(--color-floral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  display: inline-block;
  padding-bottom: 10px; /* Prevent clipping on italic descenders */
}

.editorial-body {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* About section heading */
.about-heading {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  color: var(--color-purple);
  margin-bottom: 2rem;
  line-height: 1.1;
}

.about-heading .gradient-text {
  font-size: 3.8rem;
  padding-bottom: 5px;
}

/* About section body text block */
.about-body-block {
  padding-left: 2rem;
  border-left: 2px solid var(--color-gold-light);
}

.about-body-block .editorial-body {
  font-size: 1.2rem;
  color: var(--color-text-main);
  line-height: 1.8;
}

.about-body-block .editorial-body:last-child {
  margin-bottom: 0;
}

.about-emphasis {
  color: var(--color-floral);
  font-weight: 600;
}

/* Unmute button overlay */
.unmute-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  cursor: pointer;
}

.unmute-overlay .btn {
  padding: 1rem 1.5rem;
  border-radius: 50px;
}

/* Blog card structure */
.blog-card__body {
  padding: 2.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__title {
  font-family: var(--font-heading);
  color: var(--color-text-main);
  margin-bottom: 1rem;
  font-size: 1.6rem;
  line-height: 1.3;
}

.blog-card__title a {
  transition: color 0.3s;
}

.blog-card__title a:hover {
  color: var(--color-floral);
}

.blog-card__excerpt {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.blog-card__date {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255,255,255,0.9);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-purple);
}

.blog-card__media-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-floral-light), var(--color-gold-light));
}

.blog-card__footer {
  margin-top: auto;
}

.blog-card__footer .btn {
  width: 100%;
  padding: 0.8rem;
  font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(217, 108, 139, 0.3);
}

/* Post page */
.post-article {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(15px);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(217, 108, 139, 0.1);
  border: 1px solid rgba(255,255,255,0.9);
}

.post-hero-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.post-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.95);
}

.post-body {
  padding: 4rem 3rem;
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--color-text-main);
}

.post-back-bar {
  padding: 2rem 3rem;
  background: rgba(217, 108, 139, 0.05);
  border-top: 1px solid rgba(217, 108, 139, 0.1);
  text-align: center;
}

.post-back-bar .btn-outline {
  border-color: var(--color-floral);
  color: var(--color-floral);
}

.post-date {
  color: var(--color-gold);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  font-style: italic;
  font-family: var(--font-heading);
}

/* Writings page blog card (same structure, slightly larger title) */
.blog-card__title--large {
  font-size: 1.8rem;
}

.blog-card__excerpt--writings {
  font-size: 1rem;
}

.editorial-image-wrapper {
  position: relative;
  padding: 1rem;
}

.archway-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 200px 200px 20px 20px; /* Beautiful Archway */
  box-shadow: var(--shadow-starlight);
  position: relative;
  z-index: 2;
}

.archway-border {
  position: absolute;
  top: -10px; left: -10px; right: -10px; bottom: -10px;
  border: 2px solid var(--color-gold-light);
  border-radius: 210px 210px 30px 30px;
  z-index: 1;
  opacity: 0.6;
}

.elegant-flow-spacer {
  padding: 5rem 0;
}

/* ========================================================================= */
/* PAGE HEADER (Writings, etc.)                                             */
/* ========================================================================= */
.page-header {
  padding: calc(var(--nav-height) + 5rem) 0 3rem;
  text-align: center;
  background: linear-gradient(180deg, #FFF9FC 0%, var(--color-bg) 100%);
}

.page-title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--color-purple);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.css-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  position: relative;
  margin: 0 auto;
  opacity: 0.6;
}

.css-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--color-gold);
  box-shadow: 0 0 15px var(--color-gold-light), 0 0 30px var(--color-floral);
}

.css-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 24px;
  height: 24px;
  border: 1px solid var(--color-gold);
  opacity: 0.5;
}

/* ========================================================================= */
/* SHARED SECTION TYPOGRAPHY */
/* =========================================================================  */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 2;
}

.section-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-floral);
  margin-bottom: 1rem;
}

.section-eyebrow--gold {
  color: #9a7b2e;
}

.section-title {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: var(--color-purple);
}

.section-title--display {
  font-size: clamp(2.8rem, 5vw, 4.25rem);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.section-title--display::after {
  content: '';
  display: block;
  width: 72px;
  height: 3px;
  margin: 1.25rem auto 0;
  background: linear-gradient(90deg, var(--color-gold), var(--color-floral), var(--color-purple-light));
  border-radius: 3px;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}

.section-title--gold-rich {
  background: linear-gradient(135deg, #7a5c10 0%, #c9a227 35%, #9d4edd 70%, #d96c8b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 12px rgba(212, 175, 55, 0.35));
}

.section-title--gold-rich::after {
  background: linear-gradient(90deg, #c9a227, #d96c8b);
}

.section-subtitle {
  font-size: 0.95rem;
  color: #4a4540;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.section-subtitle--lavender {
  color: #5c4d6e;
}

/* Elevated white platform — cards sit on this for crisp separation */
.section-stage {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, #ffffff 0%, #fff9f7 100%);
  border-radius: 36px;
  padding: clamp(2rem, 4vw, 3.25rem);
  border: 2px solid rgba(212, 175, 55, 0.55);
  box-shadow: var(--shadow-stage);
}

.section-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, transparent 50%);
  pointer-events: none;
}

/* ========================================================================= */
/* SERVICES SECTION */
/* ========================================================================= */
.services-section {
  background: linear-gradient(180deg, #f4c4b5 0%, #f8d4dc 38%, #f5e4c4 72%, #edd8f0 100%);
  position: relative;
  overflow: hidden;
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 255, 255, 0.55) 0%, transparent 70%),
    radial-gradient(circle at 15% 80%, rgba(212, 175, 55, 0.25) 0%, transparent 35%),
    radial-gradient(circle at 85% 20%, rgba(217, 108, 139, 0.2) 0%, transparent 30%);
  pointer-events: none;
  z-index: 0;
}

.services-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #c9a227, #d96c8b, #9d4edd, #c9a227, transparent);
  z-index: 3;
}

.services-stage {
  position: relative;
  z-index: 2;
}

.services-stage > * {
  position: relative;
  z-index: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #fdf8fb 100%);
  border: 2px solid transparent;
  border-radius: 24px;
  padding: 1.75rem 1.5rem 2rem;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.2),
    0 2px 4px rgba(61, 45, 75, 0.06),
    0 16px 32px rgba(123, 44, 191, 0.12);
  background-clip: padding-box;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1.5px;
  background: linear-gradient(145deg, #c9a227, #d96c8b, #9d4edd);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.85;
  z-index: 0;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 0 0 1px rgba(217, 108, 139, 0.35),
    0 4px 8px rgba(61, 45, 75, 0.08),
    0 24px 48px rgba(123, 44, 191, 0.2),
    0 0 40px rgba(212, 175, 55, 0.2);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #c9a227, #d96c8b, #9d4edd);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
}

.service-card-actions {
  margin-top: auto;
  padding-top: 1.5rem;
}

.service-img-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  padding: 1.5px;
  background: linear-gradient(135deg, #d4b85c 0%, #e8a4b8 55%, #b89ee0 100%);
  box-shadow: 0 8px 20px rgba(123, 44, 191, 0.12);
}

.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 14.5px;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .service-img {
  transform: scale(1.05);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-purple);
  margin-bottom: 0.65rem;
  line-height: 1.15;
}

.service-price {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5c4510;
  background: linear-gradient(135deg, #fff4d4 0%, #f0d878 100%);
  border: 2px solid #c9a227;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 14px rgba(201, 162, 39, 0.35);
}

.service-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #4a4540;
  max-width: 30ch;
  margin: 0 auto 0;
  flex: 1;
}

.service-price-note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin: -0.35rem 0 0.85rem;
  min-height: 1.25rem;
  line-height: 1.25;
}

.services-cta {
  text-align: center;
  margin-top: 2.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.services-cta__label {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-purple);
  margin: 0;
  line-height: 1.4;
}

.services-cta__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-floral);
  border-bottom: 2px solid rgba(217, 108, 139, 0.45);
  padding-bottom: 0.15rem;
  transition: color 0.3s ease, border-color 0.3s ease, gap 0.3s ease;
}

.services-cta__link:hover {
  color: var(--color-purple);
  border-color: var(--color-purple);
  gap: 0.55rem;
}

.services-page .section-header {
  margin-bottom: 3rem;
}

.booking-info-panel {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  box-shadow: var(--shadow-lift);
}

.booking-info-panel h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-purple);
  margin-bottom: 1rem;
}

.booking-info-panel p {
  color: var(--color-text-muted);
  line-height: 1.75;
  font-size: 1rem;
}


/* ========================================================================= */
/* TESTIMONIALS — lavender light (not dark) */
/* ========================================================================= */
.testimonials-section {
  position: relative;
  background: linear-gradient(165deg, #d4c4ec 0%, #e4d0f0 35%, #f0d4e4 70%, #f8e0e8 100%);
  padding: 7rem 0;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 25%, rgba(255, 255, 255, 0.95) 0%, transparent 7%),
    radial-gradient(circle at 82% 18%, rgba(249, 226, 175, 0.5) 0%, transparent 8%),
    radial-gradient(circle at 50% 85%, rgba(217, 108, 139, 0.15) 0%, transparent 12%),
    radial-gradient(circle at 8% 70%, rgba(255, 255, 255, 0.8) 0%, transparent 6%),
    radial-gradient(circle at 92% 75%, rgba(212, 175, 55, 0.35) 0%, transparent 7%);
  pointer-events: none;
  z-index: 0;
}

.testimonials-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #9d4edd, #d96c8b, #c9a227, transparent);
  z-index: 3;
}

.testimonials-stage {
  padding-top: 4rem;
  padding-bottom: 2.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: stretch;
}

.testimonial-card {
  position: relative;
  padding: 4rem 1.75rem 2rem;
  background: linear-gradient(180deg, #ffffff 0%, #fdf9fc 100%);
  border-radius: 20px;
  border: 2px solid rgba(201, 162, 39, 0.4);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.9) inset,
    0 8px 20px rgba(123, 44, 191, 0.1),
    0 20px 40px rgba(61, 45, 75, 0.08);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s ease,
              border-color 0.3s ease;
  margin-top: 2.75rem;
  z-index: 2;
}

.testimonial-card:nth-child(2) {
  border-color: #c9a227;
  border-width: 2px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 1) inset,
    0 12px 28px rgba(123, 44, 191, 0.14),
    0 28px 56px rgba(201, 162, 39, 0.15),
    0 0 48px rgba(212, 175, 55, 0.2);
  transform: translateY(-6px);
}

.testimonial-card:hover {
  transform: translateY(-12px);
  border-color: var(--color-floral);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 1) inset,
    0 16px 36px rgba(123, 44, 191, 0.18),
    0 32px 64px rgba(217, 108, 139, 0.12);
}

.testimonial-card:nth-child(2):hover {
  transform: translateY(-14px);
}

.testimonial-avatar {
  position: absolute;
  top: -2.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  outline: 3px solid #c9a227;
  box-shadow: 0 8px 24px rgba(123, 44, 191, 0.2), 0 0 28px rgba(212, 175, 55, 0.45);
  z-index: 3;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-card:hover .testimonial-avatar {
  transform: translateX(-50%) scale(1.06);
  box-shadow: 0 12px 32px rgba(123, 44, 191, 0.25), 0 0 36px rgba(212, 175, 55, 0.55);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 0.25rem;
  left: 1rem;
  font-family: var(--font-heading);
  font-size: 5.5rem;
  color: #c9a227;
  opacity: 0.35;
  z-index: 0;
  line-height: 1;
  pointer-events: none;
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  font-family: var(--font-heading);
  font-weight: 500;
  position: relative;
  z-index: 1;
  margin-bottom: 1.25rem;
  color: #2d2830;
  line-height: 1.7;
}

.testimonial-author {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-purple);
  position: relative;
  z-index: 1;
}

/* ========================================================================= */
/* FOOTER */
/* ========================================================================= */
.footer {
  background-color: #fffdfb;
  background-image: url('../images/footer_light_floral.png');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  color: var(--color-text-main);
  padding: 5rem 0 3.5rem;
  text-align: center;
  position: relative;
  border-top: none;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 253, 251, 0.55) 0%, rgba(255, 253, 251, 0.15) 45%, transparent 100%);
  pointer-events: none;
}

.footer-top-divider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), var(--color-floral), var(--color-gold), transparent);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  z-index: 3;
}

.footer-top-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: var(--color-gold);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.8);
}

.footer .container {
  position: relative;
  z-index: 2;
}

.footer-panel {
  max-width: 560px;
  margin: 0 auto;
  padding: 3rem 2.5rem 2.5rem;
  background: rgba(255, 253, 251, 0.92);
  border: 1px solid var(--border-gold);
  border-radius: 28px;
  box-shadow: var(--shadow-lift), 0 0 60px rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #9a7b2e 0%, var(--color-purple-light) 55%, var(--color-floral) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.25));
}

.footer-logo img {
  -webkit-text-fill-color: initial;
  width: 68px;
  height: 68px;
  object-fit: contain;
  padding: 9px 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 30%, #4a2a6d 0%, #2d1b4e 70%, #1d1236 100%);
  box-shadow: 0 4px 18px rgba(45, 27, 78, 0.3),
              0 0 0 1px rgba(212, 175, 55, 0.45);
  filter: none;
}

.footer-nav {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-bottom: 2rem;
  padding: 0;
}

.footer-nav a {
  text-decoration: none;
  color: var(--color-purple);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  position: relative;
  transition: color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.footer-nav a::after {
  content: '';
  position: absolute;
  bottom: 0.25rem;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--color-floral);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.footer-nav a:hover {
  color: var(--color-floral);
  background: rgba(252, 232, 238, 0.6);
}

.footer-nav a:hover::after {
  width: 60%;
}

.footer-copy {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  line-height: 1.8;
}

.footer-tagline {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  font-style: italic;
  font-family: var(--font-heading);
  color: #9a7b2e;
  letter-spacing: 0.04em;
  opacity: 1;
}

/* ========================================================================= */
/* ANIMATIONS & RESPONSIVE */
/* ========================================================================= */
@keyframes float-slow {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.15s; }
.reveal.delay-2 { transition-delay: 0.3s; }
.reveal.delay-3 { transition-delay: 0.45s; }

/* Mobile Adjustments */
@media (max-width: 992px) {
  .editorial-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .editorial-text { padding-right: 0; }
  .editorial-quote::before { left: 50%; transform: translateX(-50%); top: -40px; }
  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .section-stage {
    padding: 1.75rem 1.25rem 2rem;
    border-radius: 28px;
  }

  .testimonials-stage {
    padding-top: 3.5rem;
  }

  .testimonial-card:nth-child(2) {
    transform: none;
  }

  .testimonial-card:hover,
  .testimonial-card:nth-child(2):hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 1100px) and (min-width: 769px) {
  .services-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: flex; /* must stay flex so bars keep spacing */
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(135deg, rgba(252,251,250,0.98) 0%, rgba(248,235,242,0.98) 100%);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s;
    z-index: 1001;
    padding: 5rem 1.5rem 2rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .nav-links::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120vw;
    height: 120vw;
    background-image: url('https://storage.googleapis.com/starflower-media/starflower_icon_favicon_lotus.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.06;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: slow-spin 60s linear infinite;
  }
  
  @keyframes slow-spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
  }
  
  .nav-links li {
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .nav-links.active li {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
  .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
  .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
  .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
  .nav-links.active li:nth-child(5) { transition-delay: 0.5s; }

  .nav-links .nav-link {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    color: var(--color-purple);
    text-shadow: none;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .nav-links .nav-link:hover, 
  .nav-links .nav-link.active {
    color: var(--color-floral);
    text-shadow: 0 0 20px rgba(217, 108, 139, 0.3);
  }

  .nav-links .nav-link::after {
    background-color: var(--color-floral);
  }

  .hero {
    min-height: auto;
    padding: calc(var(--nav-height) + 0.85rem) 0.75rem 1.75rem;
    gap: 1.15rem;
  }

  .hero-frame {
    width: 100%;
    padding: 1.35rem 0.85rem;
  }

  .hero-frame-bloom {
    width: clamp(100px, 34vw, 160px);
  }

  .hero-frame-bloom--bl,
  .hero-frame-bloom--br {
    width: clamp(56px, 18vw, 88px);
  }

  .hero-stage {
    border-radius: 14px;
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.95),
      0 0 0 3px rgba(249, 226, 175, 0.5),
      0 0 0 8px rgba(252, 232, 238, 0.7),
      0 16px 36px rgba(123, 44, 191, 0.12);
  }

  .hero-video--focus {
    max-height: calc(100svh - var(--nav-height) - 13rem);
  }

  .hero-line {
    font-size: 1.25rem;
  }

  .hero-actions {
    gap: 0.75rem 1.1rem;
  }

  .hero-actions .btn-primary {
    width: 100%;
    max-width: 16rem;
  }

  .services-cta {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(212, 175, 55, 0.5);
    width: 100%;
  }

  .services-cta__label {
    font-size: 1.1rem;
  }

  .services-cta__link {
    font-size: 0.85rem;
  }

  .service-card-actions .btn-book {
    width: 100%;
  }

  .parallax-content h3 {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }
  
  .hero-glass-card {
    padding: 2rem;
    margin: 1rem;
  }
  
  .hero-title { font-size: 3rem; }
  .section-title { font-size: 2.8rem; }
  
  .sacred-gate-divider,
  .lotus-divider,
  .elegant-flow-spacer {
    padding: 2.5rem 0 !important;
  }
  
  .page-header {
    padding-top: calc(var(--nav-height) + 2rem);
  }
  
  .blog-excerpt {
    display: block !important;
    min-height: 80px;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ========================================================================= */
/* MAGICAL QUOTE & VIDEO SECTION (BOTTOM) */
/* ========================================================================= */

.magic-video-frame {
  position: relative;
  width: min(100%, 340px);
  margin: 0 auto;
  aspect-ratio: 1 / 1;
}

.magic-video {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  box-shadow: 0 0 50px rgba(217, 108, 139, 0.4), inset 0 0 20px rgba(255,255,255,0.8);
  border: 6px solid #fff;
  position: relative;
  z-index: 2;
  background: #fff9f7;
  animation: float-slow 6s infinite alternate ease-in-out;
}

video.magic-video,
.parallax-banner video {
  background-color: #fcfbfa;
}

.magic-glow-circle {
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  background: radial-gradient(circle, rgba(217, 108, 139, 0.3) 0%, rgba(212, 175, 55, 0.1) 40%, transparent 70%);
  filter: blur(40px);
  animation: pulse-magic 4s infinite alternate ease-in-out;
  z-index: 1;
}

@keyframes pulse-magic {
  0% { transform: scale(0.9); opacity: 0.6; }
  100% { transform: scale(1.1); opacity: 1; }
}

.magical-quote-wrapper {
  background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.5) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15), 0 0 30px rgba(217, 108, 139, 0.1);
  padding: 3rem;
  border-radius: 20px 20px 20px 0;
  position: relative;
  overflow: visible;
}

.magical-quote-wrapper::before {
  content: '"';
  position: absolute;
  top: -30px;
  left: -10px;
  font-size: 8rem;
  color: var(--color-floral-light);
  font-family: var(--font-heading);
  line-height: 1;
  opacity: 0.5;
  z-index: -1;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.btn-magical {
  background: linear-gradient(45deg, var(--color-purple), var(--color-floral));
  border: none;
  color: #fff;
  transition: all 0.4s ease;
}

.btn-magical:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 40px rgba(123, 44, 191, 0.5);
}

.btn-magical--lg {
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  box-shadow: 0 15px 35px rgba(217,108,139,0.4);
}

/* Quote & Bloom bottom section */
.quote-bloom-section {
  position: relative;
  overflow: hidden;
}

.quote-bloom-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(217,108,139,0.05), transparent 60%);
  z-index: -1;
}

.quote-bloom-video-wrap {
  padding: 2rem;
}

.quote-bloom-text {
  font-size: 2.6rem;
}

.quote-author-line {
  text-align: right;
  margin-top: 1.5rem;
  font-family: var(--font-body);
  color: var(--color-purple);
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.quote-bloom-cta {
  margin-top: 3rem;
  padding-left: 2rem;
  text-align: center;
}

/* Blog Grid Layout */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

/* Latest Insights section */
.insights-section {
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(252,232,238,0.3) 100%);
}

.insights-header {
  margin-bottom: 4rem;
}

.insights-title {
  color: var(--color-purple);
}

.blog-card {
  background: linear-gradient(135deg, #ffffff 0%, #fdf5f7 100%);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(217, 108, 139, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
}

.blog-card__media {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

@media (hover: hover) {
  .blog-card:hover .blog-card__media img {
    transform: scale(1.04);
  }
}

/* ========================================================================= */
/* MOBILE PERFORMANCE & POLISH                                             */
/* ========================================================================= */

@media (max-width: 768px) {
  .section {
    padding: 5rem 0;
  }

  .navbar {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(252, 251, 250, 0.98);
  }

  .pulse-btn {
    animation: none;
  }

  .magic-video {
    animation: none;
  }

  .magic-glow-circle {
    animation: none;
    filter: blur(24px);
  }

  .editorial-text h2,
  .editorial-text h2 .gradient-text {
    font-size: clamp(2rem, 8vw, 2.75rem) !important;
  }

  .editorial-text > div[style*="padding-left"] {
    padding-left: 1rem !important;
  }

  .editorial-body {
    font-size: 1.05rem !important;
  }

  .magical-quote-wrapper {
    padding: 1.75rem;
  }

  .editorial-quote {
    font-size: clamp(1.35rem, 5vw, 1.85rem) !important;
  }

  .blog-card__body {
    padding: 1.5rem;
  }

  .post-body {
    padding: 2rem 1.5rem;
  }

  .post-back-bar {
    padding: 1.5rem;
  }

  .post-hero-image {
    height: 280px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
