/* 
  Annantay — Rebirth of Identity
  Cosmic Luxury Design System (Emerald & Glowing Gold Theme)
*/

@font-face {
  font-family: 'Samarkan';
  src: url('../fonts/SAMAN___.TTF') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

:root {
  /* Cosmic Emerald Palette */
  --emerald-dark:   #010f0e; /* Deep space black-emerald */
  --emerald-base:   #021917; /* Main dark background */
  --emerald-card:   #042a26; /* Glass card background */
  --emerald-light:  #073f3a; /* Lighter emerald highlight */
  
  /* Glowing Gold Palette */
  --gold:           #DFB85E; /* Rich luxury gold */
  --gold-light:     #F3D086; /* Lighter glowing gold */
  --gold-pale:      #FCF8EF; /* Luxurious off-white text */
  --gold-shadow:    rgba(223, 184, 94, 0.15);
  
  /* Text colors */
  --text-primary:   #FCF8EF; /* Soft white/gold text */
  --text-secondary: #AFC2BF; /* Soft teal-gray text */
  --text-muted:     #7F9A96; /* Slate teal text */
  
  /* Effects and Borders */
  --white:          #FFFFFF;
  --border:         rgba(223, 184, 94, 0.12); /* Gold hair-thin border */
  --border-hover:   rgba(223, 184, 94, 0.35);
  --border-focus:   rgba(243, 208, 134, 0.65);
  
  /* Glowing Shadows */
  --gold-glow:      0 0 12px rgba(223, 184, 94, 0.35), 0 0 24px rgba(223, 184, 94, 0.15);
  --gold-glow-strong: 0 0 20px rgba(243, 208, 134, 0.6), 0 0 35px rgba(243, 208, 134, 0.3);
  --shadow-sm:      0 4px 12px rgba(1, 15, 14, 0.15);
  --shadow-md:      0 12px 30px rgba(1, 15, 14, 0.25);
  --shadow-lg:      0 20px 50px rgba(1, 15, 14, 0.4);
  
  /* Transitions */
  --transition:     all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

html { 
  scroll-behavior: smooth; 
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--emerald-base);
  color: var(--text-primary);
  font-weight: 300;
  line-height: 1.85;
  overflow-x: hidden;
}

/* Typography styles */
.samarkan {
  font-family: 'Samarkan', serif !important;
  text-transform: none !important;
  letter-spacing: 0.05em !important;
}

.signature {
  font-family: 'Pinyon Script', cursive !important;
  font-size: clamp(2.5rem, 5.5vw, 4.2rem) !important;
  color: var(--gold-light) !important;
  text-shadow: var(--gold-glow) !important;
  font-weight: normal !important;
  font-style: normal !important;
  text-transform: none !important;
  display: inline-block;
  vertical-align: middle;
  line-height: 0.8;
  padding: 0 0.2rem;
}

/* Scroll Animation Utilities */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.9s cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: transform, opacity;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* CELESTIAL BACKGROUND & STAR EFFECTS */
.nebula-glow {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 80% 20%, rgba(45, 122, 110, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(223, 184, 94, 0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.star-field {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(1px 1px at 10% 20%, rgba(255, 255, 255, 0.3) 100%, transparent),
    radial-gradient(1.5px 1.5px at 30% 40%, rgba(243, 208, 134, 0.4) 100%, transparent),
    radial-gradient(1px 1px at 50% 15%, rgba(255, 255, 255, 0.35) 100%, transparent),
    radial-gradient(2px 2px at 70% 80%, rgba(243, 208, 134, 0.3) 100%, transparent),
    radial-gradient(1px 1px at 85% 60%, rgba(255, 255, 255, 0.25) 100%, transparent),
    radial-gradient(1.5px 1.5px at 95% 35%, rgba(255, 255, 255, 0.3) 100%, transparent);
  background-size: 550px 550px;
  opacity: 0.55;
  pointer-events: none;
  z-index: 1;
}

.twinkle-star {
  position: absolute;
  background: var(--white);
  border-radius: 50%;
  pointer-events: none;
  animation: starTwinkle 4s infinite ease-in-out;
  box-shadow: 0 0 6px 1px rgba(255, 255, 255, 0.8);
  z-index: 2;
}

@keyframes starTwinkle {
  0%, 100% { opacity: 0.15; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* NAVIGATION (Glassmorphism design) */
nav {
  position: fixed; 
  top: 0; 
  left: 0; 
  right: 0; 
  z-index: 100;
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  padding: 1.35rem 6%;
  background: rgba(1, 15, 14, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s ease, background-color 0.3s ease;
}

nav.scrolled {
  padding: 0.75rem 6%;
  background: rgba(1, 15, 14, 0.95);
  box-shadow: var(--shadow-md);
}

nav.scrolled .nav-logo {
  font-size: 1.6rem;
}

nav.scrolled .nav-logo-icon {
  width: 22px;
  height: 22px;
}

.nav-logo {
  font-size: 1.9rem;
  font-weight: normal;
  color: var(--gold-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-shadow: var(--gold-glow);
  transition: font-size 0.3s ease, gap 0.3s ease;
}

.nav-logo-icon {
  transition: width 0.3s ease, height 0.3s ease;
}

.nav-logo span { 
  color: var(--white); 
  font-weight: 300;
}

.nav-links { 
  display: flex; 
  gap: 2.8rem; 
  list-style: none; 
  align-items: center;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  padding: 0.2rem 0;
}

.nav-links a:hover { 
  color: var(--gold-light); 
}

.nav-links .nav-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--emerald-dark) !important;
  padding: 0.8rem 2.2rem;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  box-shadow: var(--gold-glow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
  line-height: 1.2;
}

.nav-links .nav-cta:hover { 
  transform: translateY(-1px);
  box-shadow: var(--gold-glow-strong);
  color: var(--emerald-dark) !important;
}

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: var(--gold);
  margin: 5px 0;
  transition: var(--transition);
}

/* HERO SECTION */
.hero {
  min-height: 100vh;
  display: flex; 
  align-items: center;
  padding: 8rem 6% 3.5rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at center, #0a5449 0%, #021e1b 100%);
}

.hero-ornament {
  position: absolute; 
  right: 6%; 
  top: 56%; 
  transform: translateY(-50%);
  width: min(450px, 44vw); 
  opacity: 0.35;
  z-index: 2;
  pointer-events: none;
}

/* Orbiting groups inside the celestial solar system */
.orbit-ring {
  transform-origin: 250px 300px;
}

.orbit-slow-cw {
  animation: orbitCW 70s linear infinite;
}

.orbit-med-ccw {
  animation: orbitCCW 50s linear infinite;
}

.orbit-fast-cw {
  animation: orbitCW 35s linear infinite;
}

.orbit-vfast-ccw {
  animation: orbitCCW 22s linear infinite;
}

@keyframes orbitCW {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes orbitCCW {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

.hero-content { 
  position: relative; 
  max-width: 700px; 
  z-index: 3;
}

.hero-eyebrow {
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 6px rgba(243, 208, 134, 0.3));
  margin-bottom: 1.8rem;
  display: flex; 
  align-items: center; 
  gap: 1.2rem;
}

.hero-eyebrow::after {
  content: '';
  display: block; 
  width: 60px; 
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 7.5vw, 5.6rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
  text-shadow: var(--gold-glow);
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-secondary);
  margin: 1.6rem 0 2.8rem;
  max-width: 540px;
  line-height: 1.65;
}

.hero-actions { 
  display: flex; 
  gap: 1.4rem; 
  flex-wrap: wrap; 
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--emerald-dark);
  padding: 0.95rem 2.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: var(--transition);
  border: 1px solid var(--gold-light); 
  cursor: pointer;
  box-shadow: var(--gold-glow);
}

.btn-primary:hover { 
  transform: translateY(-2px); 
  box-shadow: var(--gold-glow-strong);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  padding: 0.95rem 2.5rem;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  border: 1px solid var(--gold);
  transition: var(--transition);
  cursor: pointer;
}

.btn-outline:hover { 
  background: rgba(223, 184, 94, 0.08); 
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-2px); 
}



/* ABOUT & FOUNDER SECTION */
.about {
  padding: 4.5rem 6%;
  background: var(--emerald-base);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 6rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-frame {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--emerald-card);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  display: flex; 
  align-items: center; 
  justify-content: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.about-frame-inner {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10rem;
  color: var(--gold);
  opacity: 0.15;
  font-weight: 300;
}

.about-founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-frame-label {
  position: absolute; 
  bottom: 1.8rem; 
  left: 1.8rem;
  font-size: 0.72rem; 
  letter-spacing: 0.25em; 
  text-transform: uppercase;
  color: var(--gold-light); 
  background: rgba(1, 15, 14, 0.85);
  backdrop-filter: blur(6px);
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  box-shadow: var(--shadow-sm);
  font-weight: 400;
  border: 1px solid var(--border);
}

.about-accent-box {
  position: absolute; 
  top: -1.8rem; 
  right: -1.8rem;
  width: 130px; 
  height: 130px;
  border: 1px solid var(--gold);
  opacity: 0.6;
  border-radius: 3px;
  z-index: -1;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.section-title em { 
  font-style: italic; 
  color: var(--gold-light); 
}

.section-body { 
  color: var(--text-secondary); 
  line-height: 1.85; 
  margin-bottom: 1.6rem; 
  font-size: 1.02rem; 
}

.about-tags { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 0.7rem; 
  margin-top: 2.4rem; 
}

.tag {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.55rem 1.3rem;
  border: 1px solid var(--border);
  border-radius: 24px;
  color: var(--text-secondary);
  background: rgba(4, 42, 38, 0.4);
  transition: var(--transition);
}

.tag:hover {
  background: rgba(223, 184, 94, 0.08);
  border-color: var(--gold-light);
  color: var(--gold-light);
}

/* PHILOSOPHY / PILLARS */
.pillars {
  padding: 4.5rem 6%;
  background: var(--emerald-dark);
  position: relative;
}

.pillars-header { 
  text-align: center; 
  max-width: 660px; 
  margin: 0 auto 5rem; 
}

.pillars-container {
  display: flex;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  height: 480px;
}

.pillar-col {
  flex: 1;
  position: relative;
  background: var(--emerald-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.6s cubic-bezier(0.25, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  backdrop-filter: blur(8px);
}

.pillar-col.active {
  flex: 3.2;
  border-color: var(--gold-light);
  box-shadow: var(--gold-glow);
}

.pillar-card-inner {
  display: flex;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 2;
}

.pillar-col-side {
  width: 75px;
  min-width: 75px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 2.2rem 0;
  border-right: 1px solid rgba(223, 184, 94, 0.08);
  background: rgba(1, 15, 14, 0.2);
  transition: var(--transition);
}

.pillar-col.active .pillar-col-side {
  background: rgba(1, 15, 14, 0.45);
}

.pillar-side-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 2.5rem;
}

.pillar-side-label {
  writing-mode: vertical-rl;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  color: var(--text-muted);
  transform: rotate(180deg);
  white-space: nowrap;
  transition: var(--transition);
}

.pillar-col.active .pillar-side-label {
  color: var(--gold-light);
}

.pillar-col-content {
  flex: 1;
  padding: 3rem 2.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transform: translateX(15px);
  transition: opacity 0.5s ease 0.15s, transform 0.5s ease 0.15s;
  overflow: hidden;
}

.pillar-col.active .pillar-col-content {
  opacity: 1;
  transform: translateX(0);
}

.pillar-header-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(223, 184, 94, 0.08);
  padding-bottom: 1.2rem;
  margin-bottom: 1.5rem;
}

.pillar-badge {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.pillar-capital {
  width: 60px;
  height: 24px;
  color: var(--border-hover);
}

.pillar-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(223, 184, 94, 0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  margin-bottom: 1.6rem;
  box-shadow: inset 0 0 10px rgba(223, 184, 94, 0.05);
}

.pillar-icon-box svg {
  width: 26px;
  height: 26px;
}

.pillar-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem;
  font-weight: 300;
  color: var(--gold-light);
  margin-bottom: 1.1rem;
  letter-spacing: 0.02em;
  text-shadow: var(--gold-glow);
}

.pillar-text {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.9;
  max-width: 680px;
}

.pillar-bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(223, 184, 94, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.pillar-col.active .pillar-bg-glow {
  opacity: 1;
}

/* RETREAT SECTION */
.retreat {
  padding: 4.5rem 6%;
  background: var(--emerald-base);
  position: relative;
  overflow: hidden;
}

.retreat-bg-ornament {
  position: absolute; 
  right: -5%; 
  top: 50%; 
  transform: translateY(-50%);
  width: 550px; 
  height: 550px;
  border-radius: 50%;
  border: 60px solid rgba(223, 184, 94, 0.02);
  pointer-events: none;
}

.retreat-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 6rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  position: relative;
  z-index: 2;
}

.retreat-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin-top: 2.8rem;
}

.retreat-detail {
  background: var(--emerald-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem 1.4rem;
  transition: var(--transition);
}

.retreat-detail:hover {
  background: rgba(4, 42, 38, 0.6);
  border-color: var(--gold-light);
}

.retreat-detail-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
  font-weight: 400;
}

.retreat-detail-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  color: var(--text-primary);
  font-weight: 300;
}

.retreat-visual {
  aspect-ratio: 4/5;
  background: rgba(4, 42, 38, 0.45);
  border-radius: 6px;
  border: 1px solid var(--border);
  display: flex; 
  align-items: center; 
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.retreat-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.retreat-visual-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.12;
}

.retreat-visual-badge {
  position: absolute; 
  bottom: 1.8rem; 
  left: 50%; 
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--emerald-dark);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.75rem 1.9rem;
  border-radius: 3px;
  white-space: nowrap;
  box-shadow: var(--gold-glow);
  font-weight: 500;
}

/* OFFERINGS */
.offerings {
  padding: 4.5rem 6%;
  background: var(--emerald-dark);
  position: relative;
}

.offerings-header { 
  text-align: center; 
  max-width: 640px; 
  margin: 0 auto 5rem; 
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.offer-card {
  background: var(--emerald-card);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 3.2rem 2.4rem 2.8rem;
  text-align: center;
  transition: var(--transition);
  display: flex; 
  flex-direction: column; 
  align-items: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  backdrop-filter: blur(8px);
}

.offer-card:hover { 
  transform: translateY(-8px); 
  box-shadow: var(--gold-glow);
  border-color: var(--gold-light);
}

.offer-badge {
  position: absolute;
  top: -12px;
  font-size: 0.65rem; 
  letter-spacing: 0.22em; 
  text-transform: uppercase; 
  background: var(--gold); 
  color: var(--emerald-dark); 
  padding: 0.4rem 1.4rem; 
  border-radius: 20px;
  font-weight: 500;
  box-shadow: var(--gold-glow);
}

.offer-icon {
  width: 70px; 
  height: 70px;
  border-radius: 50%;
  display: flex; 
  align-items: center; 
  justify-content: center;
  margin-bottom: 2rem;
  background: rgba(223, 184, 94, 0.08);
  border: 1px solid rgba(223, 184, 94, 0.2);
  color: var(--gold-light);
}

.offer-icon svg {
  width: 32px;
  height: 32px;
}

.offer-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}

.offer-body {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 2.4rem;
  flex: 1;
}

.offer-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem;
  color: var(--gold-light);
  font-weight: 300;
  margin-bottom: 1.8rem;
}

.offer-price span { 
  font-size: 1.05rem; 
  color: var(--text-muted); 
}

/* TESTIMONIALS */
.testimonials {
  padding: 4.5rem 6%;
  background: var(--emerald-base);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 32rem;
  color: rgba(223, 184, 94, 0.025);
  position: absolute;
  top: -7rem; 
  left: 2rem;
  line-height: 1;
  pointer-events: none;
}

.testimonials-header { 
  text-align: center; 
  margin-bottom: 5rem; 
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testi-card {
  background: var(--emerald-card);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 2.8rem 2.4rem;
  transition: var(--transition);
}

.testi-card:hover {
  border-color: var(--gold-light);
  box-shadow: var(--gold-glow);
}

.testi-stars {
  color: var(--gold-light);
  font-size: 0.95rem;
  margin-bottom: 1.4rem;
  letter-spacing: 3px;
}

.testi-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: 1.8rem;
}

.testi-author { 
  font-size: 0.8rem; 
  color: var(--text-muted); 
  letter-spacing: 0.12em; 
  text-transform: uppercase;
}

/* CONSULTATIONS */
.consultation {
  padding: 4.5rem 6%;
  background: var(--emerald-dark);
}

.consultation-inner { 
  max-width: 1200px; 
  margin: 0 auto; 
}

.consultation-header { 
  text-align: center; 
  max-width: 640px; 
  margin: 0 auto 5rem; 
}

.consult-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.consult-card {
  background: var(--emerald-card);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 2.8rem 2.4rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.consult-card:hover { 
  border-color: var(--gold-light); 
  box-shadow: var(--gold-glow);
  transform: translateY(-3px);
}

.consult-type {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.consult-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.consult-desc { 
  font-size: 0.95rem; 
  color: var(--text-secondary); 
  line-height: 1.8; 
  margin-bottom: 2.2rem; 
  flex: 1;
}

.consult-meta {
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  font-size: 0.88rem; 
  color: var(--text-muted);
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
}

.consult-meta strong { 
  color: var(--gold-light); 
  font-weight: 500; 
  font-size: 1.05rem;
}

/* BOOKING SECTION */
.booking {
  padding: 4.5rem 6%;
  background: var(--emerald-base);
}

.booking-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 6rem;
  align-items: start;
}

.booking-promise {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.promise-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.promise-dot {
  width: 6px; 
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.7rem;
  flex-shrink: 0;
}

.promise-text { 
  font-size: 0.95rem; 
  color: var(--text-secondary); 
}

.form-box {
  background: var(--emerald-card);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 3.2rem 2.8rem;
  box-shadow: var(--shadow-md);
}

.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  color: var(--gold-light);
  margin-bottom: 2.2rem;
  text-align: center;
  letter-spacing: 0.05em;
}

.form-group { 
  margin-bottom: 1.5rem; 
}

.form-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 0.85rem 1.1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-primary);
  background: var(--emerald-dark);
  outline: none;
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23DFB85E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  background-size: 1.1em;
  padding-right: 2.8rem;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold-light);
  background: var(--emerald-card);
  box-shadow: 0 0 0 3px rgba(243, 208, 134, 0.15);
}

.form-textarea { 
  resize: vertical; 
  min-height: 105px; 
}

.form-row { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 1.4rem; 
}

.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--emerald-dark);
  border: 1px solid var(--gold-light);
  padding: 1.1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  margin-top: 1.2rem;
  transition: var(--transition);
  box-shadow: var(--gold-glow);
}

.form-submit:hover { 
  box-shadow: var(--gold-glow-strong);
  transform: translateY(-1px);
}

.form-note { 
  text-align: center; 
  font-size: 0.78rem; 
  color: var(--text-muted); 
  margin-top: 1.4rem; 
}

/* PHILANTHROPY SECTION */
.philanthropy {
  padding: 4.5rem 6%;
  background: var(--emerald-dark);
}

.philanthropy-inner {
  max-width: 1200px; 
  margin: 0 auto;
  display: grid; 
  grid-template-columns: 1.2fr 1fr; 
  gap: 6rem; 
  align-items: center;
}

.cause-list { 
  margin-top: 3rem; 
  display: flex; 
  flex-direction: column; 
  gap: 1.4rem; 
}

.cause-item {
  display: flex; 
  align-items: flex-start; 
  gap: 1.4rem;
  padding: 1.5rem;
  background: var(--emerald-card);
  border: 1px solid var(--border);
  border-radius: 5px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}

.cause-item:hover {
  transform: translateY(-3px);
  border-color: var(--gold-light);
  box-shadow: var(--gold-glow);
}

.cause-icon {
  width: 46px; 
  height: 46px; 
  border-radius: 50%;
  background: rgba(223, 184, 94, 0.08);
  border: 1px solid rgba(223, 184, 94, 0.2);
  color: var(--gold);
  display: flex; 
  align-items: center; 
  justify-content: center;
  flex-shrink: 0;
}

.cause-icon svg {
  width: 22px;
  height: 22px;
}

.cause-title { 
  font-size: 0.98rem; 
  font-weight: 500; 
  color: var(--gold-light); 
  margin-bottom: 0.4rem; 
}

.cause-desc { 
  font-size: 0.9rem; 
  color: var(--text-secondary); 
  line-height: 1.65;
}

.philanthropy-quote {
  background: var(--emerald-card);
  border-left: 4px solid var(--gold);
  padding: 2.8rem;
  border-radius: 0 5px 5px 0;
  box-shadow: var(--shadow-md);
  margin-bottom: 2.2rem;
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.philanthropy-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.65;
  margin-bottom: 1.4rem;
}

.philanthropy-quote cite {
  font-size: 0.72rem; 
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase; 
  color: var(--gold);
  font-style: normal;
  display: block;
}

/* CTA BANNER */
.cta-banner {
  padding: 4rem 6%;
  background: var(--emerald-dark);
  text-align: center;
  position: relative; 
  overflow: hidden;
  border-top: 1px solid var(--border);
}

.cta-banner::before, .cta-banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(223, 184, 94, 0.08);
  pointer-events: none;
}

.cta-banner::before { 
  width: 600px; 
  height: 600px; 
  top: -200px; 
  left: -100px; 
}

.cta-banner::after { 
  width: 400px; 
  height: 400px; 
  bottom: -150px; 
  right: -50px; 
}

.cta-banner-eyebrow {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.cta-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 1.8rem;
  line-height: 1.3;
}

.cta-banner-desc { 
  color: var(--text-secondary); 
  font-size: 1.05rem; 
  max-width: 540px; 
  margin: 0 auto 3rem; 
  line-height: 1.75;
}

.cta-banner-actions { 
  display: flex; 
  justify-content: center; 
  gap: 1.4rem; 
  flex-wrap: wrap; 
  position: relative; 
  z-index: 2; 
}

/* FOOTER */
footer {
  background: var(--emerald-dark);
  padding: 6rem 6% 4rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid; 
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem; 
  max-width: 1200px; 
  margin: 0 auto;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.8rem;
}

.footer-brand-name {
  font-size: 2.1rem;
  color: var(--gold-light);
  font-weight: normal;
  letter-spacing: 0.05em;
  margin-bottom: 1.2rem;
  text-shadow: var(--gold-glow);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-brand-name span { 
  color: var(--white); 
}

.footer-tagline { 
  font-size: 0.88rem; 
  line-height: 1.75; 
  max-width: 290px; 
  color: var(--text-secondary);
}

.footer-col-title {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1.6rem;
  font-weight: 400;
}

.footer-links { 
  list-style: none; 
  display: flex; 
  flex-direction: column; 
  gap: 0.9rem; 
}

.footer-links a { 
  color: var(--text-secondary); 
  text-decoration: none; 
  font-size: 0.88rem; 
  transition: var(--transition); 
}

.footer-links a:hover { 
  color: var(--gold-light); 
  transform: translateX(3px);
  display: inline-block;
}

.footer-bottom { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  max-width: 1200px; 
  margin: 0 auto; 
  font-size: 0.82rem; 
}

.footer-bottom-links { 
  display: flex; 
  gap: 2rem; 
}

.footer-bottom-links a { 
  color: var(--text-muted); 
  text-decoration: none; 
  font-size: 0.82rem; 
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--gold-light);
}

/* PREMIUM MODAL WINDOW */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 15, 14, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-backdrop.show {
  opacity: 1;
  visibility: visible;
}

.modal-wrapper {
  background: var(--emerald-base);
  width: 90%;
  max-width: 585px;
  border-radius: 5px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: relative;
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow-y: auto;
  max-height: 90vh;
}

.modal-backdrop.show .modal-wrapper {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.35rem;
  right: 1.35rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.modal-close:hover {
  color: var(--gold-light);
  background: var(--emerald-card);
}

.modal-body {
  padding: 3rem 2.5rem;
}

.modal-body .form-box {
  padding: 0;
  background: none;
  box-shadow: none;
  border: none;
}

/* TOAST NOTIFICATION */
.toast {
  position: fixed; 
  bottom: 2.5rem; 
  left: 50%; 
  transform: translateX(-50%) translateY(160px);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--emerald-dark);
  padding: 1rem 2.2rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 1050;
  box-shadow: var(--gold-glow-strong);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
  text-align: center;
  min-width: 290px;
  opacity: 0;
  visibility: hidden;
}

.toast.show { 
  transform: translateX(-50%) translateY(0); 
  opacity: 1;
  visibility: visible;
}

/* DECORATIVE DIVIDER */
.ornament-divider {
  display: flex; 
  align-items: center; 
  justify-content: center;
  gap: 1.5rem; 
  padding: 1.25rem 0;
}

.ornament-line { 
  width: 100px; 
  height: 1px; 
  background: var(--border); 
}

.ornament-symbol { 
  color: var(--gold); 
  font-size: 1.15rem; 
  display: flex;
  align-items: center;
  justify-content: center;
}

/* RESPONSIVE DESIGN */
@media (max-width: 991px) {
  .about-grid, .retreat-grid, .booking-inner, .philanthropy-inner { 
    grid-template-columns: 1fr; 
    gap: 4rem; 
  }
  .about-visual {
    max-width: 500px;
    margin: 0 auto;
  }
  .retreat-visual { 
    display: none; 
  }
  .footer-grid { 
    grid-template-columns: 1fr 1fr; 
    gap: 3rem; 
  }
}

@media (max-width: 768px) {
  nav { 
    padding: 1.1rem 5%; 
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--emerald-dark);
    flex-direction: column;
    padding: 2.5rem 5%;
    gap: 1.6rem;
    border-bottom: 1px solid var(--border);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
  }
  
  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }
  
  .nav-links a {
    font-size: 0.85rem;
    display: block;
    padding: 0.5rem 0;
  }
  
  .nav-cta {
    display: inline-block;
    width: auto;
    margin-top: 0.5rem;
  }

  .hero {
    padding: 7rem 5% 3.5rem;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 7.5vw, 3.8rem);
  }

  .hero-sub {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    margin: 1.2rem 0 2rem;
  }

  .hero-eyebrow {
    margin-bottom: 1.2rem;
  }

  .hero-actions {
    gap: 1rem;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    padding: 0.85rem 1.8rem;
    font-size: 0.75rem;
  }

  .about-accent-box { 
    display: none; 
  }
  
  .form-row { 
    grid-template-columns: 1fr; 
    gap: 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.2rem;
    text-align: center;
  }

  .cta-banner-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
  }
}

/* CUSTOM GOLD LOGO STYLING */
.nav-logo-img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 6px;
  transition: width 0.3s ease, height 0.3s ease;
}

nav.scrolled .nav-logo-img {
  width: 40px;
  height: 40px;
}

.inline-logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

/* TOAST NOTIFICATION */
.toast {
  position: fixed; 
  bottom: 2.5rem; 
  left: 50%; 
  transform: translateX(-50%) translateY(160px);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--emerald-dark);
  padding: 1rem 2.2rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 1050;
  box-shadow: var(--gold-glow-strong);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
  text-align: center;
  min-width: 290px;
  opacity: 0;
  visibility: hidden;
}

.toast.show { 
  transform: translateX(-50%) translateY(0); 
  opacity: 1;
  visibility: visible;
}

/* DECORATIVE DIVIDER */
.ornament-divider {
  display: flex; 
  align-items: center; 
  justify-content: center;
  gap: 1.5rem; 
  padding: 1.25rem 0;
}

.ornament-line { 
  width: 100px; 
  height: 1px; 
  background: var(--border); 
}

.ornament-symbol { 
  color: var(--gold); 
  font-size: 1.15rem; 
  display: flex;
  align-items: center;
  justify-content: center;
}

/* RESPONSIVE DESIGN */
@media (max-width: 991px) {
  .about-grid, .retreat-grid, .booking-inner, .philanthropy-inner { 
    grid-template-columns: 1fr; 
    gap: 4rem; 
  }
  .about-visual {
    max-width: 500px;
    margin: 0 auto;
  }
  .retreat-visual { 
    display: none; 
  }
  .footer-grid { 
    grid-template-columns: 1fr 1fr; 
    gap: 3rem; 
  }
}

@media (max-width: 768px) {
  nav { 
    padding: 1.1rem 5%; 
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--emerald-dark);
    flex-direction: column;
    padding: 2.5rem 5%;
    gap: 1.6rem;
    border-bottom: 1px solid var(--border);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
  }
  
  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }
  
  .nav-links a {
    font-size: 0.85rem;
    display: block;
    padding: 0.5rem 0;
  }
  
  .nav-cta {
    display: inline-block;
    width: auto;
    margin-top: 0.5rem;
  }

  .hero {
    padding: 7rem 5% 3.5rem;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 7.5vw, 3.8rem);
  }

  .hero-sub {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    margin: 1.2rem 0 2rem;
  }

  .hero-eyebrow {
    margin-bottom: 1.2rem;
  }

  .hero-actions {
    gap: 1rem;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    padding: 0.85rem 1.8rem;
    font-size: 0.75rem;
  }

  .about-accent-box { 
    display: none; 
  }
  
  .form-row { 
    grid-template-columns: 1fr; 
    gap: 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.2rem;
    text-align: center;
  }

  .cta-banner-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
  }
}

/* CUSTOM GOLD LOGO STYLING */
.nav-logo-img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 6px;
  transition: width 0.3s ease, height 0.3s ease;
}

nav.scrolled .nav-logo-img {
  width: 40px;
  height: 40px;
}

.inline-logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.footer-logo-img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.divider-logo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

@media (max-width: 991px) {
  .pillars-container {
    flex-direction: column;
    height: auto;
    gap: 1.5rem;
  }

  .pillar-col {
    width: 100%;
    height: auto; /* Always auto-height on mobile */
    min-height: auto;
    transition: none; /* No transition animation on mobile */
  }

  .pillar-col.active {
    flex: none;
    height: auto; /* Disable expanding height override */
    border-color: var(--border); /* Neutral borders */
    box-shadow: var(--shadow-sm); /* Normal shadow */
  }
  
  .pillar-col:hover {
    transform: none;
    border-color: var(--gold-light);
    box-shadow: var(--gold-glow);
  }

  .pillar-card-inner {
    flex-direction: column; /* Stack header bar and content vertically */
  }

  .pillar-col-side {
    width: 100%;
    min-width: 100%;
    height: 60px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.8rem;
    border-right: none;
    border-bottom: 1px solid rgba(223, 184, 94, 0.08);
    background: rgba(1, 15, 14, 0.4);
  }

  .pillar-side-num {
    margin-bottom: 0;
    font-size: 1.6rem;
  }

  .pillar-side-label {
    writing-mode: horizontal-tb;
    transform: rotate(0deg);
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--gold-light); /* Always gold on mobile headers */
  }

  .pillar-col-content {
    opacity: 1; /* Always visible on mobile */
    transform: none; /* Disable slide animations on mobile */
    transition: none;
    padding: 2.2rem 1.8rem;
    justify-content: flex-start;
  }

  .pillar-header-group {
    display: none;
  }

  .pillar-icon-box {
    margin-bottom: 1.2rem;
    width: 48px;
    height: 48px;
  }
  
  .pillar-icon-box svg {
    width: 22px;
    height: 22px;
  }

  .pillar-name {
    font-size: 1.65rem;
    margin-bottom: 0.8rem;
  }

  .pillar-text {
    font-size: 0.92rem;
    line-height: 1.8;
  }
}

/* FOUNDER NAME SIZE PROPORTIONS */
.founder-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5.8vw, 3.8rem);
  font-weight: 500;
  display: inline-block;
  position: relative;
  padding-bottom: 0.5rem;
  margin-bottom: 0.8rem;
  color: var(--text-primary);
}

.founder-name::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%; /* full width underline */
  height: 2px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
  box-shadow: 0 0 8px rgba(223, 184, 94, 0.6);
}

.signature-sub {
  font-size: clamp(1.3rem, 3.2vw, 1.8rem) !important;
}

/* COSMIC SHOOTING STAR (COMET) ANIMATION */
.shooting-star {
  transform-origin: center;
  pointer-events: none;
  animation: cosmicSweep 12s cubic-bezier(0.25, 1, 0.2, 1) infinite;
}

@keyframes cosmicSweep {
  0% {
    transform: translate(-100px, -50px) rotate(-15deg);
    opacity: 0;
    stroke-dasharray: 0 200;
  }
  4% {
    opacity: 1;
    stroke-dasharray: 80 200;
  }
  14% {
    transform: translate(450px, 400px) rotate(-15deg);
    opacity: 0;
    stroke-dasharray: 0 200;
  }
  100% {
    transform: translate(450px, 400px) rotate(-15deg);
    opacity: 0;
  }
}
