/* ==========================================================================
   Eliza Reconnection — Google Antigravity Premium Design System
   Modern Sanctuary Aesthetic · Refined Heading Scales · Balanced Columns · 60fps Motion
   ========================================================================== */

/* ---------- Google Fonts Import ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Sanctuary Light Theme (Default) */
  --bg: #FAF7F2;
  --bg-alt: #F3ECE1;
  --bg-subtle: #ECE4D6;
  
  /* Glass Surfaces */
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-bg-hover: rgba(255, 255, 255, 0.94);
  --glass-border: rgba(255, 255, 255, 0.85);
  --glass-border-subtle: rgba(181, 98, 46, 0.12);
  --glass-shadow: 0 10px 32px -4px rgba(45, 33, 27, 0.06), 0 4px 12px -2px rgba(45, 33, 27, 0.04);
  --glass-shadow-hover: 0 20px 40px -8px rgba(181, 98, 46, 0.16), 0 8px 16px -4px rgba(45, 33, 27, 0.08);
  
  /* Typography & Ink */
  --ink: #1C1512;
  --ink-soft: #4F4038;
  --ink-muted: #7E6B60;
  
  /* Brand Accents */
  --copper: #C26330;
  --copper-light: #E88E58;
  --copper-text: #964719;
  --copper-glow: rgba(194, 99, 48, 0.28);
  
  --gold: #C99B36;
  --gold-light: #E8C168;
  --gold-glow: rgba(201, 155, 54, 0.24);
  
  --sage: #4D7257;
  --sage-light: #7DA688;
  --sage-soft: #E8F0EA;
  --sage-glow: rgba(77, 114, 87, 0.22);
  
  /* Dusk / Hero / Footer Dark Surfaces */
  --dusk: #18120F;
  --dusk-card: #221B17;
  --dusk-deep: #0E0A08;
  --on-dusk: #FAF4EB;
  --on-dusk-soft: #D8C7B5;
  --on-dusk-muted: #9E8B7A;
  --on-dusk-accent: #E5BF65;
  --on-dusk-copper: #F0A065;
  --dusk-glass: rgba(34, 27, 23, 0.65);
  --dusk-border: rgba(245, 235, 220, 0.12);

  --line: rgba(79, 64, 56, 0.12);
  --line-strong: rgba(79, 64, 56, 0.22);

  /* Typography Scales (Refined, perfectly balanced and readable) */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  --h1-fluid: clamp(1.85rem, 3.2vw + 0.4rem, 2.55rem);
  --h2-fluid: clamp(1.4rem, 2.2vw + 0.2rem, 1.85rem);
  --h3-fluid: clamp(1.15rem, 1.4vw + 0.2rem, 1.38rem);
  --lede-fluid: clamp(0.98rem, 0.8vw + 0.4rem, 1.12rem);
  
  --container: 1140px;
  --container-narrow: 780px;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 9999px;
  
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s var(--ease-smooth);
  --transition-base: 0.35s var(--ease-smooth);
  --transition-slow: 0.6s var(--ease-spring);
}

/* ---------- Dark Mode Overrides ---------- */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #140E0C;
    --bg-alt: #1C1512;
    --bg-subtle: #241B17;
    
    --glass-bg: rgba(34, 27, 23, 0.78);
    --glass-bg-hover: rgba(45, 36, 31, 0.92);
    --glass-border: rgba(245, 235, 220, 0.12);
    --glass-border-subtle: rgba(229, 191, 101, 0.15);
    --glass-shadow: 0 10px 32px -4px rgba(0, 0, 0, 0.5);
    --glass-shadow-hover: 0 20px 40px -8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(201, 155, 54, 0.15);
    
    --ink: #F7EFE4;
    --ink-soft: #D6C5B3;
    --ink-muted: #9E8C7D;
    
    --copper: #E88E58;
    --copper-text: #F0A065;
    --copper-glow: rgba(232, 142, 88, 0.3);
    
    --gold: #E5BF65;
    --gold-light: #F3D78E;
    
    --sage: #7DA688;
    --sage-soft: #1B291F;
    
    --line: rgba(247, 239, 228, 0.1);
    --line-strong: rgba(247, 239, 228, 0.2);
  }
}

/* ---------- Global Resets & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg);
  color: var(--ink-soft);
  font-family: var(--font-sans);
  font-size: 15.5px;
  line-height: 1.75;
  overflow-x: hidden;
  position: relative;
  transition: background-color var(--transition-base), color var(--transition-base);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(201, 155, 54, 0.035) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(194, 99, 48, 0.035) 0%, transparent 40%);
}

/* Grain texture overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--copper-text);
  text-decoration: none;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

a:hover {
  color: var(--copper);
}

/* Focus styles for WCAG 2.1 compliance */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- Typography & Heading Scale ---------- */
h1, h2, h3, h4, h5, h6 {
  color: var(--ink);
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.22;
  text-wrap: balance;
}

h1 { 
  font-size: var(--h1-fluid); 
  line-height: 1.16;
  margin-bottom: 14px;
}

h2 { 
  font-size: var(--h2-fluid); 
  line-height: 1.22;
  margin-bottom: 12px;
}

h3 { 
  font-size: var(--h3-fluid); 
  line-height: 1.28;
  margin-bottom: 8px;
}

h4 { 
  font-size: 1.15rem; 
  line-height: 1.35;
  margin-bottom: 6px;
}

p {
  margin-bottom: 1.15rem;
}

p:last-child {
  margin-bottom: 0;
}

.prose p {
  max-width: 68ch;
  font-size: 1rem;
}

.dropcap > p:first-of-type::first-letter {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 3.4em;
  line-height: 0.75;
  float: left;
  padding: 0.08em 0.1em 0 0;
  color: var(--copper);
  text-shadow: 2px 2px 8px rgba(194, 99, 48, 0.15);
}

/* Eyebrows / Badges */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper-text);
  font-weight: 800;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.eyebrow-on-dusk {
  color: var(--on-dusk-accent);
}

/* Glass Status Chip */
.glass-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(28, 22, 19, 0.05);
  border: 1px solid rgba(79, 64, 56, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--ink); /* Crisp black/dark ink text for effortless readability */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  margin-bottom: 16px;
}

.home-hero .glass-chip,
.page-hero .glass-chip,
.cta-band .glass-chip {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--on-dusk);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.glass-chip .pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(201, 155, 54, 0.7);
  animation: pulse-ring 2s infinite cubic-bezier(0.45, 0, 0.55, 1);
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(201, 155, 54, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(201, 155, 54, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(201, 155, 54, 0); }
}

/* Containers */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.container-wide {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 28px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  background: var(--dusk);
  color: var(--on-dusk);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  z-index: 9999;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 16px;
}

/* ---------- Balanced Multi-Column Utilities ---------- */
.text-columns-2 {
  column-count: 2;
  column-gap: 36px;
  text-align: justify;
}

@media (max-width: 768px) {
  .text-columns-2 {
    column-count: 1;
    text-align: left;
  }
}

.grid-balanced-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

@media (max-width: 860px) {
  .grid-balanced-2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.grid-balanced-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .grid-balanced-3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.equal-col {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* ---------- Buttons & Micro-Interactions ---------- */
.btn {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, #C26330 0%, #D47942 50%, #C99B36 100%);
  color: #FFFFFF;
  box-shadow: 0 6px 20px -4px var(--copper-glow), 0 2px 6px rgba(0, 0, 0, 0.1);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 10px 28px -4px var(--copper-glow), 0 4px 12px rgba(0, 0, 0, 0.15);
  color: #FFFFFF;
}

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--on-dusk);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.45);
  color: #FFFFFF;
}

.btn-ghost-dark {
  background: var(--glass-bg);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-ghost-dark:hover {
  background: var(--glass-bg-hover);
  border-color: var(--copper);
  color: var(--copper-text);
  box-shadow: var(--glass-shadow);
}

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* ---------- Header & Navigation (Glassmorphic & Spacious) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: padding var(--transition-base), background-color var(--transition-base), box-shadow var(--transition-base);
}

@media (prefers-color-scheme: dark) {
  .site-header {
    background: rgba(20, 14, 12, 0.88);
  }
}

.site-header.scrolled {
  background: rgba(250, 247, 242, 0.96);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
}

@media (prefers-color-scheme: dark) {
  .site-header.scrolled {
    background: rgba(20, 14, 12, 0.96);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  }
}

.site-header::before {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--sage), var(--gold) 40%, var(--copper) 80%, var(--gold-light));
}

.site-header .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 36px;
  max-width: 1340px;
  margin: 0 auto;
  gap: 24px;
  transition: padding var(--transition-base);
}

.site-header.scrolled .bar {
  padding: 10px 36px;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  position: relative;
  flex: 0 0 auto;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 35% 30%, #3B2A22 0%, #160F0A 100%);
  border: 1.5px solid rgba(201, 155, 54, 0.4);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.2);
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.brand:hover .brand-mark {
  transform: rotate(12deg) scale(1.05);
  border-color: var(--gold);
  box-shadow: 0 6px 18px var(--gold-glow);
}

.brand-mark svg {
  width: 20px;
  height: 20px;
  color: var(--gold-light);
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.brand-name small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper-text);
  font-weight: 700;
  margin-top: 2px;
}

/* Main Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 6px 8px;
  background: var(--glass-bg);
  border-radius: var(--radius-full);
  border: 1px solid var(--line);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.main-nav li {
  display: inline-flex;
}

.main-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  white-space: nowrap; /* NEVER SQUASH OR WRAP ONTO 2 LINES */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  transition: all var(--transition-fast);
  position: relative;
}

.main-nav a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.85);
}

.main-nav a[aria-current="page"] {
  color: #FFFFFF;
  background: linear-gradient(135deg, var(--copper), var(--copper-light));
  box-shadow: 0 2px 8px var(--copper-glow);
}

.header-phone {
  font-size: 0.86rem;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
  background: linear-gradient(135deg, var(--copper) 0%, var(--gold) 100%);
  padding: 9px 22px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: 0 4px 14px -3px var(--copper-glow);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.header-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px -2px var(--copper-glow);
  color: #FFFFFF;
}

.header-phone svg {
  width: 14px;
  height: 14px;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: var(--glass-bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  width: 44px;
  height: 40px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-fast);
}

.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform var(--transition-fast), top var(--transition-fast), opacity var(--transition-fast);
}

.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}
.nav-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

@media (max-width: 1100px) {
  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(340px, 86vw);
    height: 100vh;
    background: var(--bg);
    border-left: 1px solid var(--line-strong);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 28px 32px;
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    z-index: 450;
  }
  
  .main-nav.open {
    transform: translateX(0);
  }
  
  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    width: 100%;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
  }

  .main-nav li {
    width: 100%;
  }
  
  .main-nav a {
    display: block;
    padding: 12px 16px;
    width: 100%;
    font-size: 1rem;
    border-bottom: 1px solid var(--line);
    border-radius: var(--radius-md);
  }
  
  .header-phone {
    margin-top: 20px;
    width: 100%;
    justify-content: center;
    padding: 12px;
    font-size: 0.95rem;
  }
  
  .nav-toggle {
    display: flex;
    z-index: 550;
  }
  
  .nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 400;
  }
  
  .nav-backdrop.open {
    display: block;
  }
}

/* ---------- Hero Section (Home) ---------- */
.home-hero {
  position: relative;
  background: radial-gradient(120% 120% at 50% 10%, #2A1D17 0%, #17110E 60%, #0E0A08 100%);
  color: var(--on-dusk);
  overflow: hidden;
  padding: 30px 0 70px;
}

/* Animated Ambient Glow Nebulas */
.home-hero .glow-1 {
  position: absolute;
  top: -80px;
  right: 5%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 155, 54, 0.25) 0%, rgba(201, 155, 54, 0.04) 50%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  animation: aurora-float 14s ease-in-out infinite alternate;
}

.home-hero .glow-2 {
  position: absolute;
  bottom: 10%;
  left: 2%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194, 99, 48, 0.2) 0%, rgba(194, 99, 48, 0.03) 55%, transparent 75%);
  filter: blur(45px);
  pointer-events: none;
  animation: aurora-float-reverse 18s ease-in-out infinite alternate;
}

/* Sacred Geometry Rotating Halo */
.sacred-mandala-bg {
  position: absolute;
  top: 50%;
  right: -80px;
  transform: translateY(-50%);
  width: 640px;
  height: 640px;
  pointer-events: none;
  opacity: 0.07;
  animation: spin-slow 90s linear infinite;
}

@keyframes spin-slow {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

@keyframes aurora-float {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, 20px) scale(1.08); }
  100% { transform: translate(-20px, -15px) scale(0.96); }
}

@keyframes aurora-float-reverse {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-25px, -30px) scale(1.1); }
  100% { transform: translate(20px, 15px) scale(0.92); }
}

/* Mountains Silhouette */
.home-hero .mountains {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 160px;
  z-index: 1;
  opacity: 0.95;
  pointer-events: none;
}

/* Violet Flame Interactive Canvas (Scoped strictly to Home Hero) */
.hero-flame-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

.home-hero .inner {
  position: relative;
  z-index: 4;
  max-width: var(--container);
  margin: 0 auto;
  padding: 40px 28px 60px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 920px) {
  .home-hero .inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 30px 28px 40px;
    text-align: center;
  }
  .home-hero .btn-row {
    justify-content: center;
  }
}

.home-hero h1 {
  font-family: var(--font-serif);
  color: #FFFFFF;
  font-size: var(--h1-fluid);
  line-height: 1.15;
  margin-bottom: 8px;
}

.home-hero .hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.5vw + 0.3rem, 1.45rem);
  color: var(--gold-light);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.home-hero .lede {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--on-dusk-soft);
  font-size: var(--lede-fluid);
  line-height: 1.6;
  max-width: 52ch;
  margin-bottom: 28px;
  position: relative;
}

/* Portrait Card Frame */
.home-hero-portrait-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.home-hero-portrait {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(245, 235, 220, 0.2);
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.6), 0 0 25px rgba(201, 155, 54, 0.12);
  background: var(--dusk-card);
  max-width: 380px;
  width: 100%;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.home-hero-portrait img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  filter: brightness(1.02) contrast(1.02);
  transition: transform var(--transition-slow);
}

.home-hero-portrait:hover img {
  transform: scale(1.03);
}

/* Floating portrait badge */
.portrait-floating-badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(28, 22, 19, 0.88);
  border: 1px solid rgba(201, 155, 54, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float-badge 4s ease-in-out infinite alternate;
}

@keyframes float-badge {
  0% { transform: translate(-50%, 0); }
  100% { transform: translate(-50%, -5px); }
}

/* Biography & Workshop Photo Cards */
.bio-photo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  border: 1px solid var(--glass-border);
  margin: 24px 0 26px;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.bio-photo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--glass-shadow-hover);
}

.bio-photo-frame {
  position: relative;
  background: var(--dusk);
  overflow: hidden;
}

.bio-photo-frame img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center 25%;
  filter: brightness(0.96) contrast(1.04);
  transition: transform var(--transition-slow);
}

.bio-photo-card:hover .bio-photo-frame img {
  transform: scale(1.04);
}

.bio-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(20, 14, 12, 0.88) 100%);
  color: #FFFFFF;
  pointer-events: none;
}

.bio-photo-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.bio-photo-caption p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
}

/* ---------- Inner Page Hero ---------- */
.page-hero {
  position: relative;
  background: radial-gradient(130% 130% at 50% 0%, #291E18 0%, #16100E 100%);
  color: var(--on-dusk);
  padding: 60px 0 52px;
  overflow: hidden;
}

.page-hero .glow {
  position: absolute;
  top: -30px;
  right: 10%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 155, 54, 0.2) 0%, transparent 70%);
  filter: blur(35px);
  pointer-events: none;
}

.page-hero h1 {
  color: #FFFFFF;
  font-size: var(--h2-fluid);
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--on-dusk-soft);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--lede-fluid);
  max-width: 64ch;
  line-height: 1.6;
}

/* ---------- Sections ---------- */
section {
  padding: 68px 0;
  position: relative;
}

.section-alt {
  background: var(--bg-alt);
}

.section-subtle {
  background: var(--bg-subtle);
}

h2.section-title {
  font-size: var(--h2-fluid);
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 14px;
}

h2.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 54px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--copper), var(--gold));
}

.text-center h2.section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-intro {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 64ch;
  margin-bottom: 36px;
}

/* ---------- Glass Cards & Offer Grid (Wide, Structured, Spacious) ---------- */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
  align-items: stretch;
}

@media (max-width: 1080px) {
  .offer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.offer-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--line);
  transition: height var(--transition-fast), background var(--transition-fast);
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--glass-shadow-hover);
}

.offer-card:nth-child(1)::before { background: linear-gradient(90deg, var(--copper), var(--copper-light)); }
.offer-card:nth-child(2)::before { background: linear-gradient(90deg, var(--sage), var(--sage-light)); }
.offer-card:nth-child(3)::before { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }

.offer-card:nth-child(1):hover { border-color: rgba(194, 99, 48, 0.45); }
.offer-card:nth-child(2):hover { border-color: rgba(77, 114, 87, 0.45); }
.offer-card:nth-child(3):hover { border-color: rgba(201, 155, 54, 0.45); }

.offer-card-header {
  margin-bottom: 18px;
}

.offer-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  flex: 0 0 auto;
  transition: transform var(--transition-fast);
}

.offer-card:hover .offer-icon-wrap {
  transform: scale(1.08) rotate(4deg);
}

.offer-card:nth-child(1) .offer-icon-wrap {
  background: rgba(194, 99, 48, 0.12);
  color: var(--copper);
  border: 1.5px solid rgba(194, 99, 48, 0.28);
}

.offer-card:nth-child(2) .offer-icon-wrap {
  background: rgba(77, 114, 87, 0.12);
  color: var(--sage);
  border: 1.5px solid rgba(77, 114, 87, 0.28);
}

.offer-card:nth-child(3) .offer-icon-wrap {
  background: rgba(201, 155, 54, 0.14);
  color: var(--gold);
  border: 1.5px solid rgba(201, 155, 54, 0.32);
}

.offer-icon-wrap svg {
  width: 26px;
  height: 26px;
}

.offer-card .tag {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 8px;
  display: block;
}

.offer-card:nth-child(1) .tag { color: var(--copper-text); }
.offer-card:nth-child(2) .tag { color: var(--sage); }
.offer-card:nth-child(3) .tag { color: var(--gold); }

.offer-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 1.8vw, 1.95rem);
  font-weight: 700;
  line-height: 1.18;
  margin: 4px 0 8px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.offer-card .card-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.04rem;
  color: var(--copper-text);
  margin-bottom: 14px;
  line-height: 1.4;
  display: block;
}

.offer-card .card-desc {
  font-size: 0.96rem;
  color: var(--ink-soft);
  line-height: 1.68;
  margin-bottom: 18px;
}

/* Structured Internal Highlight Box */
.offer-highlight-box {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(79, 64, 56, 0.1);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin-bottom: 18px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink);
}

@media (prefers-color-scheme: dark) {
  .offer-highlight-box {
    background: rgba(0, 0, 0, 0.28);
    border-color: rgba(245, 235, 220, 0.1);
  }
}

.offer-card:nth-child(1) .offer-highlight-box {
  border-left: 3.5px solid var(--copper);
  background: rgba(194, 99, 48, 0.04);
}

.offer-card:nth-child(2) .offer-highlight-box {
  border-left: 3.5px solid var(--sage);
  background: rgba(77, 114, 87, 0.04);
}

.offer-card:nth-child(3) .offer-highlight-box {
  border-left: 3.5px solid var(--gold);
  background: rgba(201, 155, 54, 0.04);
}

.offer-highlight-box .box-label {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 8px;
  display: block;
  color: var(--ink-muted);
}

.offer-highlight-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offer-highlight-box li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 0.91rem;
  line-height: 1.55;
  color: var(--ink);
}

.offer-highlight-box li:last-child {
  margin-bottom: 0;
}

.offer-highlight-box li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.75rem;
  color: var(--sage);
}

.offer-callout {
  font-size: 0.93rem;
  line-height: 1.62;
  color: var(--ink);
  margin-bottom: 24px;
}

/* Polished Card Action Button */
.card-cta-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}

.offer-card:nth-child(1) .card-cta-btn {
  background: rgba(194, 99, 48, 0.1);
  color: var(--copper-text);
  border-color: rgba(194, 99, 48, 0.25);
}

.offer-card:nth-child(1):hover .card-cta-btn {
  background: var(--copper);
  color: #FFFFFF;
  border-color: var(--copper);
  box-shadow: 0 4px 14px var(--copper-glow);
}

.offer-card:nth-child(2) .card-cta-btn {
  background: rgba(77, 114, 87, 0.1);
  color: var(--sage);
  border-color: rgba(77, 114, 87, 0.25);
}

.offer-card:nth-child(2):hover .card-cta-btn {
  background: var(--sage);
  color: #FFFFFF;
  border-color: var(--sage);
  box-shadow: 0 4px 14px var(--sage-glow);
}

.offer-card:nth-child(3) .card-cta-btn {
  background: rgba(201, 155, 54, 0.12);
  color: var(--copper-text);
  border-color: rgba(201, 155, 54, 0.3);
}

.offer-card:nth-child(3):hover .card-cta-btn {
  background: linear-gradient(135deg, var(--gold), var(--copper));
  color: #FFFFFF;
  border-color: var(--gold);
  box-shadow: 0 4px 14px var(--gold-glow);
}

/* ---------- Interactive Offer Pills Nav ---------- */
.offer-nav {
  position: sticky;
  top: 68px;
  z-index: 100;
  background: rgba(250, 247, 242, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

@media (prefers-color-scheme: dark) {
  .offer-nav {
    background: rgba(20, 14, 12, 0.9);
  }
}

.offer-nav-inner {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.offer-nav a {
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ink-soft);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  background: var(--glass-bg);
  border: 1px solid var(--line);
  transition: all var(--transition-fast);
}

.offer-nav a:hover, .offer-nav a.active {
  background: var(--dusk);
  color: var(--on-dusk);
  border-color: var(--dusk);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ---------- Work Detail Sections ---------- */
.work-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 130px;
}

.work-section:last-of-type {
  border-bottom: none;
}

.work-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.work-section:nth-of-type(1) .work-icon-wrap {
  background: rgba(194, 99, 48, 0.12);
  color: var(--copper);
  border: 1px solid rgba(194, 99, 48, 0.25);
}

.work-section:nth-of-type(2) .work-icon-wrap {
  background: rgba(77, 114, 87, 0.12);
  color: var(--sage);
  border: 1px solid rgba(77, 114, 87, 0.25);
}

.work-section:nth-of-type(3) .work-icon-wrap {
  background: rgba(201, 155, 54, 0.14);
  color: var(--gold);
  border: 1px solid rgba(201, 155, 54, 0.3);
}

.work-icon-wrap svg {
  width: 24px;
  height: 24px;
}

.grid2 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 880px) {
  .grid2 {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.glass-box {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.glass-box:hover {
  box-shadow: var(--glass-shadow-hover);
}

.glass-box h4 {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 800;
  margin-bottom: 12px;
}

.glass-box ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  font-size: 0.94rem;
}

.glass-box li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 22px;
  line-height: 1.55;
}

.glass-box li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--gold);
  font-size: 0.8rem;
}

/* ---------- Pull Quotes & Testimonials ---------- */
blockquote.pull {
  position: relative;
  margin: 24px 0;
  padding: 14px 20px 14px 24px;
  border-left: 3px solid var(--gold);
  background: rgba(201, 155, 54, 0.04);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.55;
  max-width: 60ch;
}

blockquote.pull::before {
  content: "\201C";
  position: absolute;
  left: 8px;
  top: -10px;
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  pointer-events: none;
}

blockquote.pull cite {
  display: block;
  margin-top: 10px;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.76rem;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

/* ---------- Video Frames & Media Showcase ---------- */
.video-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #0E0A08;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.video-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -8px rgba(0, 0, 0, 0.25), 0 0 24px rgba(201, 155, 54, 0.15);
}

.video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
}

.video-footer-link {
  margin-top: 14px;
  font-size: 0.86rem;
  text-align: center;
}

.video-footer-link a {
  color: var(--copper-text);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-fast);
}

.video-footer-link a:hover {
  color: var(--gold);
  transform: translateX(2px);
}

/* Testimonial Cards & Filter Grid */
.filter-tabs-row {
  display: flex;
  gap: 10px;
  margin: 28px 0 20px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 1px solid var(--line-strong);
  background: var(--glass-bg);
  color: var(--ink-soft);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--dusk);
  color: var(--on-dusk);
  border-color: var(--dusk);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
  align-items: stretch;
}

@media (max-width: 820px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }
}

.testi-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), opacity var(--transition-base);
}

.testi-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--glass-shadow-hover);
}

.testi-card .kind {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 10px;
  display: inline-block;
}

.testi-card p {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.58;
  margin-bottom: 12px;
  flex-grow: 1;
}

.testi-card .who {
  font-size: 0.82rem;
  color: var(--ink-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.testi-card .who::before {
  content: "";
  width: 12px;
  height: 1px;
  background: currentColor;
}

.testi-card.kind-physical { border-top: 3px solid var(--copper); }
.testi-card.kind-physical .kind { color: var(--copper-text); }
.testi-card.kind-emotional { border-top: 3px solid var(--sage); }
.testi-card.kind-emotional .kind { color: var(--sage); }
.testi-card.kind-spiritual { border-top: 3px solid var(--gold); }
.testi-card.kind-spiritual .kind { color: var(--gold); }

/* Remarks Multi-Column Balanced Flow */
.remarks-columns {
  column-count: 2;
  column-gap: 20px;
  margin-top: 20px;
}

@media (max-width: 780px) {
  .remarks-columns {
    column-count: 1;
  }
}

.remarks-columns li, .remarks-list li {
  break-inside: avoid;
  margin-bottom: 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--ink);
  box-shadow: var(--glass-shadow);
  list-style: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.remarks-columns li:hover, .remarks-list li:hover {
  transform: translateY(-2px);
  box-shadow: var(--glass-shadow-hover);
}

/* ---------- Journal & Research Blocks ---------- */
.stat-list {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  align-items: stretch;
}

@media (max-width: 720px) {
  .stat-list {
    grid-template-columns: 1fr;
  }
}

.stat-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 22px;
  font-size: 0.94rem;
  line-height: 1.6;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.stat-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--glass-shadow-hover);
}

.stat-item strong {
  color: var(--ink);
  display: block;
  margin-bottom: 6px;
  font-size: 1.1rem;
  font-family: var(--font-serif);
}

.journal-entry {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  margin-bottom: 18px;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.journal-entry:hover {
  transform: translateY(-3px);
  box-shadow: var(--glass-shadow-hover);
}

.journal-entry .meta-row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
}

.journal-entry .date {
  font-size: 0.78rem;
  color: var(--ink-muted);
  font-weight: 600;
}

.journal-entry h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.journal-entry p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 0;
  flex-grow: 1;
}

/* ---------- Video / Interview Frame ---------- */
.video-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(245, 235, 220, 0.2);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.35);
  aspect-ratio: 16/9;
  background: var(--dusk);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Contact & Schedule Form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.contact-card-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.contact-item-card .info {
  display: flex;
  flex-direction: column;
}

.contact-item-card .label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 800;
  margin-bottom: 2px;
}

.contact-item-card a {
  color: var(--ink);
  font-weight: 600;
  font-size: 1rem;
}

.contact-item-card a:hover {
  color: var(--copper);
}

.copy-btn {
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-full);
  padding: 5px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--ink-muted);
  transition: all var(--transition-fast);
}

.copy-btn:hover {
  background: var(--dusk);
  color: var(--on-dusk);
  border-color: var(--dusk);
}

/* Hours Table */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--glass-shadow);
}

.hours-table th, .hours-table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}

.hours-table th {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 800;
  background: rgba(0, 0, 0, 0.02);
}

.hours-table tr:last-child td {
  border-bottom: none;
}

/* Tea Chat CTA Card */
.tea-cta {
  background: linear-gradient(135deg, rgba(201, 155, 54, 0.12) 0%, rgba(194, 99, 48, 0.12) 100%);
  border: 1px solid rgba(201, 155, 54, 0.3);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
  box-shadow: var(--glass-shadow);
}

.tea-cta p {
  margin: 0;
  max-width: 44ch;
  font-size: 0.95rem;
}

/* Polished Form */
.form-glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

form.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
}

.field label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--ink);
  margin-bottom: 6px;
}

.field input, .field textarea, .field select {
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--ink);
  transition: all var(--transition-fast);
}

@media (prefers-color-scheme: dark) {
  .field input, .field textarea, .field select {
    background: rgba(0, 0, 0, 0.25);
  }
}

.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--copper);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px var(--copper-glow);
}

@media (prefers-color-scheme: dark) {
  .field input:focus, .field textarea:focus, .field select:focus {
    background: rgba(45, 36, 31, 0.9);
  }
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-status {
  font-size: 0.88rem;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  display: none;
}

.form-status.success {
  display: block;
  background: var(--sage-soft);
  color: var(--sage);
  border: 1px solid var(--sage);
}

/* ---------- CTA Band ---------- */
.cta-band {
  background: radial-gradient(120% 120% at 50% 10%, #291D17 0%, #16100E 100%);
  color: var(--on-dusk);
  text-align: center;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.cta-band .glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 155, 54, 0.18) 0%, transparent 70%);
  filter: blur(45px);
  pointer-events: none;
}

.cta-band h2 {
  color: #FFFFFF;
  font-size: var(--h2-fluid);
  margin-bottom: 14px;
}

.cta-band p {
  color: var(--on-dusk-soft);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--lede-fluid);
  max-width: 54ch;
  margin: 0 auto 30px;
}

.cta-band .btn-row {
  justify-content: center;
}

/* ---------- Site Footer ---------- */
.site-footer {
  position: relative;
  overflow: hidden;
  background: radial-gradient(130% 160% at 50% -20%, #201713 0%, #0E0A08 70%);
  color: var(--on-dusk-soft);
  padding: 68px 0 32px;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--gold) 45%, var(--copper) 85%, var(--gold-light));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer-grid h4 {
  color: var(--on-dusk-accent);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: var(--font-sans);
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-grid h4 svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
}

.footer-grid p {
  font-size: 0.92rem;
  max-width: 38ch;
  line-height: 1.65;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-grid li {
  margin-bottom: 10px;
}

.footer-grid a {
  color: var(--on-dusk-soft);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
}

.footer-grid a:hover {
  color: var(--on-dusk-accent);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(245, 235, 220, 0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.84rem;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 235, 220, 0.2);
  color: var(--on-dusk-soft);
  background: rgba(255, 255, 255, 0.04);
  transition: all var(--transition-fast);
}

.social-row a svg {
  width: 16px;
  height: 16px;
}

.social-row a:hover {
  border-color: var(--on-dusk-accent);
  color: #FFFFFF;
  background: rgba(201, 155, 54, 0.2);
  transform: translateY(-2px);
}

/* ---------- Toast Notification ---------- */
.toast-notice {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--dusk);
  color: var(--on-dusk);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  border: 1px solid var(--gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.toast-notice.show {
  transform: translateY(0);
  opacity: 1;
}

/* ---------- Scroll Reveal Animations (60fps Engine) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease-spring), transform 0.65s var(--ease-spring);
  will-change: opacity, transform;
}

.reveal.reveal-scale {
  transform: scale(0.95);
}

.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stagger delay helpers */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Reduced Motion Safety (WCAG 2.1) */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ---------- WordPress Block Editor (Gutenberg) In-Place Visibility ---------- */
.editor-styles-wrapper,
.editor-styles-wrapper .reveal,
.block-editor-block-list__layout .reveal,
.block-editor-writing-flow .reveal,
.cta-band .btn-row {
  justify-content: center;
}

/* ---------- Site Footer ---------- */
.site-footer {
  position: relative;
  overflow: hidden;
  background: radial-gradient(130% 160% at 50% -20%, #201713 0%, #0E0A08 70%);
  color: var(--on-dusk-soft);
  padding: 68px 0 32px;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--gold) 45%, var(--copper) 85%, var(--gold-light));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer-grid h4 {
  color: var(--on-dusk-accent);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: var(--font-sans);
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-grid h4 svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
}

.footer-grid p {
  font-size: 0.92rem;
  max-width: 38ch;
  line-height: 1.65;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-grid li {
  margin-bottom: 10px;
}

.footer-grid a {
  color: var(--on-dusk-soft);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
}

.footer-grid a:hover {
  color: var(--on-dusk-accent);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(245, 235, 220, 0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.84rem;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 235, 220, 0.2);
  color: var(--on-dusk-soft);
  background: rgba(255, 255, 255, 0.04);
  transition: all var(--transition-fast);
}

.social-row a svg {
  width: 16px;
  height: 16px;
}

.social-row a:hover {
  border-color: var(--on-dusk-accent);
  color: #FFFFFF;
  background: rgba(201, 155, 54, 0.2);
  transform: translateY(-2px);
}

/* ---------- Toast Notification ---------- */
.toast-notice {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--dusk);
  color: var(--on-dusk);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  border: 1px solid var(--gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.toast-notice.show {
  transform: translateY(0);
  opacity: 1;
}

/* ---------- Scroll Reveal Animations (60fps Engine) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease-spring), transform 0.65s var(--ease-spring);
  will-change: opacity, transform;
}

.reveal.reveal-scale {
  transform: scale(0.95);
}

.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stagger delay helpers */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Reduced Motion Safety (WCAG 2.1) */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ---------- WordPress Block Editor (Gutenberg) In-Place Visibility & Styling ---------- */
.editor-styles-wrapper,
.editor-styles-wrapper * {
  box-sizing: border-box;
}

.editor-styles-wrapper {
  background-color: var(--sand-50, #FAF7F2) !important;
  color: var(--ink, #1F1916) !important;
  font-family: var(--font-sans, "Plus Jakarta Sans", sans-serif) !important;
}

.editor-styles-wrapper .reveal,
.block-editor-block-list__layout .reveal,
.block-editor-writing-flow .reveal,
.wp-block .reveal,
.wp-block-html .reveal,
.block-editor-block-list__block .reveal {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
  transition: none !important;
}

.home-hero-editor-wrap {
  background: var(--hero-bg, #170F0A) !important;
  color: var(--cream, #FDFBF7) !important;
  padding: 64px 36px !important;
  border-radius: 16px;
  margin-bottom: 40px;
}

.home-hero-editor-wrap h1 {
  color: var(--cream, #FDFBF7) !important;
  font-family: var(--font-serif, "Cormorant Garamond", serif) !important;
  font-size: 2.8rem !important;
  margin-bottom: 12px;
}

.home-hero-editor-wrap .hero-subtitle {
  color: var(--gold, #E5BF65) !important;
  font-family: var(--font-serif, "Cormorant Garamond", serif) !important;
  font-size: 1.35rem !important;
  font-style: italic;
  margin-bottom: 16px;
}

.home-hero-editor-wrap .lede {
  color: var(--sand-200, #E4D9C8) !important;
  font-size: 1.12rem !important;
  line-height: 1.65 !important;
}

.bio-editor-section,
.services-editor-section,
.cta-band-editor {
  padding: 48px 24px;
  margin-bottom: 36px;
  border-radius: 14px;
}

.services-editor-section {
  background: var(--sand-100, #F4EEE2) !important;
}

.cta-band-editor {
  background: var(--hero-bg, #170F0A) !important;
  color: var(--cream, #FDFBF7) !important;
  text-align: center;
}

.cta-band-editor h2,
.cta-band-editor strong {
  color: var(--gold, #E5BF65) !important;
}

/* Dark Hero Section inside Block Editor */
.editor-styles-wrapper .home-hero {
  background: var(--hero-bg, #170F0A) !important;
  color: var(--cream, #FDFBF7) !important;
  padding: 60px 32px !important;
  min-height: 520px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 36px;
}

.editor-styles-wrapper .home-hero h1 {
  color: var(--cream, #FDFBF7) !important;
  font-family: var(--font-serif, "Cormorant Garamond", serif) !important;
}

.editor-styles-wrapper .home-hero .hero-subtitle {
  color: var(--gold, #E5BF65) !important;
}

.editor-styles-wrapper .home-hero .lede {
  color: var(--sand-200, #E4D9C8) !important;
}

.editor-styles-wrapper .hero-flame-canvas {
  display: none !important;
}

/* Section styling in Editor */
.editor-styles-wrapper .section-alt {
  background-color: var(--sand-100, #F4EEE2) !important;
  padding: 48px 24px;
  border-radius: 12px;
  margin-bottom: 32px;
}

.editor-styles-wrapper .section-subtle {
  background-color: var(--sand-50, #FAF7F2) !important;
  padding: 48px 24px;
  border-radius: 12px;
  margin-bottom: 32px;
}

.editor-styles-wrapper .cta-band {
  background: var(--hero-bg, #170F0A) !important;
  color: var(--cream, #FDFBF7) !important;
  padding: 56px 32px !important;
  border-radius: 12px;
  text-align: center;
}

.editor-styles-wrapper .cta-band h2,
.editor-styles-wrapper .cta-band strong {
  color: var(--gold, #E5BF65) !important;
}


/* =========================================================
   Blog & Journal Articles Grid & Single Post Styling
   ========================================================= */

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

@media (max-width: 1024px) {
  .blog-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 680px) {
  .blog-grid-3 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.blog-card {
  background: var(--sand-50, #FAF7F2);
  border: 1px solid var(--sand-200, #E4D9C8);
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-base, 0.3s cubic-bezier(0.16, 1, 0.3, 1)), box-shadow var(--transition-base, 0.3s cubic-bezier(0.16, 1, 0.3, 1)), border-color var(--transition-base, 0.3s cubic-bezier(0.16, 1, 0.3, 1));
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(44, 30, 22, 0.1);
  border-color: var(--gold, #E5BF65);
}

.blog-card-img-link {
  display: block;
  width: 100%;
  height: 210px;
  overflow: hidden;
  background: var(--hero-bg, #170F0A);
  position: relative;
}

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

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

.blog-card-placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(130% 160% at 50% -20%, #2A1F18 0%, #170F0A 70%);
  color: var(--gold, #E5BF65);
  position: relative;
}

.blog-mandala-icon {
  width: 58px;
  height: 58px;
  opacity: 0.65;
  color: var(--gold, #E5BF65);
  transition: transform 0.6s ease, opacity 0.3s ease;
}

.blog-card:hover .blog-mandala-icon {
  transform: rotate(45deg) scale(1.1);
  opacity: 0.95;
}

.blog-placeholder-tag {
  position: absolute;
  bottom: 12px;
  left: 14px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--sand-200, #E4D9C8);
  background: rgba(23, 15, 10, 0.75);
  padding: 3px 10px;
  border-radius: 12px;
  border: 1px solid rgba(229, 191, 101, 0.3);
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--ink-soft, #73685F);
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.blog-cat-badge {
  color: var(--gold-dark, #A87D20);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
}

.blog-dot {
  opacity: 0.5;
}

.blog-card-title {
  font-family: var(--font-serif, "Cormorant Garamond", serif);
  font-size: 1.38rem;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--ink, #1F1916);
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast, 0.2s);
}

.blog-card-title a:hover {
  color: var(--gold-dark, #A87D20);
}

.blog-card-excerpt {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-soft, #73685F);
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--copper, #C26330);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: gap var(--transition-fast, 0.2s), color var(--transition-fast, 0.2s);
}

.blog-card-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast, 0.2s);
}

.blog-card-link:hover {
  color: var(--gold-dark, #A87D20);
  gap: 12px;
}

.blog-card-link:hover svg {
  transform: translateX(3px);
}

/* Single Post Specific Styles */
.single-post-header {
  position: relative;
  background: radial-gradient(130% 160% at 50% -20%, #2A1F18 0%, #170F0A 70%);
  color: var(--cream, #FDFBF7);
  padding: 120px 0 60px;
  overflow: hidden;
}

.single-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--sand-200, #E4D9C8);
  margin-bottom: 24px;
}

.single-breadcrumb a {
  color: var(--gold, #E5BF65);
  text-decoration: none;
}

.single-breadcrumb .sep {
  opacity: 0.4;
}

.single-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 0.88rem;
}

.single-post-title {
  font-family: var(--font-serif, "Cormorant Garamond", serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.15;
  color: var(--cream, #FDFBF7);
  margin-bottom: 20px;
}

.single-post-lede {
  font-size: 1.25rem;
  color: var(--sand-200, #E4D9C8);
  line-height: 1.6;
  font-style: italic;
  max-width: 48ch;
}

.single-post-body {
  padding: 64px 0 80px;
  background: var(--sand-50, #FAF7F2);
}

.single-featured-image {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 44px;
  box-shadow: 0 20px 48px rgba(44, 30, 22, 0.12);
}

.single-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.author-bio-flex {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

@media (max-width: 600px) {
  .author-bio-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.author-bio-avatar img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold, #E5BF65);
}

.author-bio-info h4 {
  margin: 0 0 4px;
  font-size: 1.15rem;
  color: var(--ink, #1F1916);
}

.author-bio-tagline {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-dark, #A87D20);
  margin-bottom: 8px;
}

.author-bio-text {
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}


/* =========================================================
   Luxury Single Post Template Styling
   ========================================================= */

.single-hero-dark {
  position: relative;
  overflow: hidden;
  background: radial-gradient(130% 160% at 50% -20%, #201713 0%, #0E0A08 70%);
  color: var(--cream, #FDFBF7);
  padding: 130px 0 70px;
}

.single-hero-mandala {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 440px;
  height: 440px;
  pointer-events: none;
  opacity: 0.7;
}

.single-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 0.86rem;
  color: var(--sand-200, #E4D9C8);
  flex-wrap: wrap;
}

.single-meta-sep {
  opacity: 0.4;
}

.single-hero-title {
  font-family: var(--font-serif, "Cormorant Garamond", serif);
  font-size: clamp(2.3rem, 4.8vw, 3.6rem);
  line-height: 1.15;
  color: var(--cream, #FDFBF7);
  margin-bottom: 24px;
}

.single-hero-lead {
  font-size: 1.25rem;
  line-height: 1.65;
  color: var(--sand-200, #E4D9C8);
  font-style: italic;
  max-width: 52ch;
  margin-bottom: 28px;
}

.single-author-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(229, 191, 101, 0.35);
  padding: 8px 18px;
  border-radius: 40px;
  backdrop-filter: blur(8px);
}

.single-author-pill-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold, #E5BF65);
}

.single-author-name {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--cream, #FDFBF7);
}

.single-author-role {
  display: block;
  font-size: 0.76rem;
  color: var(--gold, #E5BF65);
}

.single-content-section {
  padding: 64px 0 80px;
  background: var(--sand-50, #FAF7F2);
}

.article-prose {
  font-size: 1.12rem;
  line-height: 1.85;
  color: var(--ink, #1F1916);
}

.article-prose p {
  margin-bottom: 24px;
}

.article-prose blockquote {
  border-left: 3.5px solid var(--gold, #E5BF65);
  background: rgba(229, 191, 101, 0.06);
  padding: 20px 28px;
  border-radius: 0 12px 12px 0;
  margin: 36px 0;
  font-family: var(--font-serif, "Cormorant Garamond", serif);
  font-size: 1.45rem;
  line-height: 1.5;
  font-style: italic;
  color: var(--ink, #1F1916);
}

.single-author-card-grid {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

@media (max-width: 600px) {
  .single-author-card-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.single-author-avatar-lg {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold, #E5BF65);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.single-author-bio-content h3 {
  margin: 0 0 4px;
  font-size: 1.3rem;
}

.single-author-sub {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--gold-dark, #A87D20);
  margin-bottom: 10px;
}

.single-author-link {
  font-weight: 700;
  color: var(--copper, #C26330);
  text-decoration: none;
  font-size: 0.92rem;
}

.single-author-link:hover {
  color: var(--gold-dark, #A87D20);
  text-decoration: underline;
}

.single-nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--sand-200, #E4D9C8);
  border-bottom: 1px solid var(--sand-200, #E4D9C8);
  padding: 24px 0;
  margin-top: 56px;
  gap: 20px;
}

@media (max-width: 700px) {
  .single-nav-bar {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
}

.single-nav-prev,
.single-nav-next {
  flex: 1;
}

.single-nav-next {
  text-align: right;
}

@media (max-width: 700px) {
  .single-nav-next {
    text-align: center;
  }
}

.single-nav-bar small {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-dark, #A87D20);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.single-nav-bar a {
  text-decoration: none;
  color: var(--ink, #1F1916);
  font-family: var(--font-serif, "Cormorant Garamond", serif);
  font-size: 1.15rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.single-nav-bar a:hover {
  color: var(--copper, #C26330);
}
