/* ============================================================
   CELESTEYA — Master Stylesheet v3
   Color Palette:
     Dark Maroon  #510400
     Royal Maroon #670E10
     Gold Amber   #E4A230
     Cream BG     #F8F7E5
     Warm Card    #F2F1D5
   ============================================================ */

/* ── ROOT VARIABLES ── */
:root {
  /* Dark zone backgrounds */
--bg-deep:        #2A0100;   /* deeper, almost black maroon */
--bg-base:        #360607;   /* darker hero/background tone */
--maroon:         #360607;
--maroon-deep:    #2A0100;
--maroon-text:    #3A0B0D;   /* readable but still rich */

  /* Gold accent */
  --gold:           #E4A230;
  --gold-dim:       rgba(228, 162, 48, 0.5);

  /* Text on dark backgrounds */
  --text-hi:        #FFFFFF;
  --text-mid:       rgba(255, 255, 255, 0.72);
  --text-dim:       rgba(255, 255, 255, 0.42);

  /* Text on light backgrounds */
  --text-dark:      #1C1010;
  --text-dark-mid:  #3D1A1D;
  --text-dark-dim:  #5A1215;

  /* Light section surfaces */
  --surface-white:  #FFFFFF;
  --surface-cream:  #F8F7E5;
  --surface-card:   #F2F1D5;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito Sans', sans-serif;
  background: var(--surface-cream);
  color: var(--text-dark);
  overflow-x: hidden;
  font-weight: 300;

}

/* ── PRELOADER ── */
#preloader {
  position: fixed; inset: 0;
  background: var(--bg-base);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  transition: opacity .7s ease, visibility .7s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.pre-glow {
  position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(228,162,48,.35) 0%, transparent 70%);
  animation: halo-pulse 2s ease-in-out infinite;
}
.pre-bfly { width: 120px; height: auto; position: relative; z-index: 2; animation: pre-bfly-float 1.2s ease-in-out infinite; }
.pre-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: .75rem; letter-spacing: .45em; text-transform: uppercase;
  color: rgba(228,162,48,.7); margin-top: 1.4rem; position: relative; z-index: 2;
}

/* ── STAR CANVAS (hero / index only) ── */
#star-canvas {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100vh;
  pointer-events: none; z-index: 0; opacity: .55;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 5vw;
  background: rgba(81, 4, 0, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(228,162,48,.15);
  transition: box-shadow .4s, background .4s;
}
nav.scrolled {
  background: rgba(81, 4, 0, 0.99);
  box-shadow: 0 4px 40px rgba(103,14,16,.25);
}
nav.open {
  flex-direction: column; align-items: flex-start;
  padding-bottom: 1.2rem;
  background: rgba(81, 4, 0, .99);
}
nav.open .nav-links {
  display: flex; flex-direction: column; gap: 1rem;
  margin-top: .7rem; padding-top: .7rem;
  border-top: 1px solid rgba(228,162,48,.12); width: 100%;
}
nav.open .nav-cta { display: inline-block; margin-top: .35rem; }
.nav-logo-link { display: flex; align-items: center; text-decoration: none; }
.nav-logo { height: 40px; width: auto; animation: logo-glow 6s ease-in-out infinite; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: .74rem; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.55); text-decoration: none;
  transition: color .25s; font-weight: 400; padding-bottom: .2rem;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); border-bottom: 1px solid var(--gold); }
.nav-cta {
  font-size: .71rem; letter-spacing: .14em; text-transform: uppercase;
  border: 1px solid var(--gold); color: var(--gold);
  padding: .5rem 1.4rem; text-decoration: none;
  transition: background .25s, color .25s; font-weight: 400;
}
.nav-cta:hover { background: var(--gold); color: var(--bg-deep); }
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; background: none; border: none; padding: 0; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: #fff; transition: .3s; }

/* ── FOOTER ── */
footer {
  background: var(--bg-deep);
  padding: 4rem 5vw 2.2rem;
  position: relative; overflow: hidden; z-index: 1;
  border-top: 1px solid rgba(228,162,48,.12);
}
.footer-glow {
  position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 180px;
  background: radial-gradient(ellipse, rgba(228,162,48,.12) 0%, transparent 70%);
  pointer-events: none;
}
.footer-butterfly { position: absolute; bottom: 0; right: 3%; width: 200px; opacity: .07; pointer-events: none; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3.5rem; margin-bottom: 2.8rem; position: relative; }
.footer-logo { height: 44px; width: auto; margin-bottom: .9rem; animation: logo-glow 6s ease-in-out infinite; }
.footer-tagline { font-size: .75rem; line-height: 1.8; color: rgba(255,255,255,.22); margin-top: .4rem; }
.footer-col h4 { font-size: .64rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(228,162,48,.55); margin-bottom: 1rem; font-weight: 400; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .58rem; }
.footer-col ul li a { font-size: .79rem; color: rgba(255,255,255,.25); text-decoration: none; transition: color .2s; font-weight: 300; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(228,162,48,.1); padding-top: 1.7rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: .71rem; color: rgba(255,255,255,.2); font-weight: 300; }
.footer-motto { font-style: italic; color: rgba(228,162,48,.3); }

/* ── KEYFRAMES ── */
@keyframes pre-bfly-float {
  0%,100% { transform: translateY(0) scaleX(1); }
  25%      { transform: translateY(-10px) scaleX(.96); }
  50%      { transform: translateY(-16px) scaleX(1); }
  75%      { transform: translateY(-8px) scaleX(.98); }
}
@keyframes logo-glow {
  0%   { filter: drop-shadow(0 0 5px rgba(103,14,16,.9))  drop-shadow(0 0 18px rgba(103,14,16,.5)); }
  25%  { filter: drop-shadow(0 0 8px rgba(228,162,48,.9)) drop-shadow(0 0 24px rgba(228,162,48,.5)); }
  50%  { filter: drop-shadow(0 0 10px rgba(228,162,48,1)) drop-shadow(0 0 28px rgba(228,162,48,.55)); }
  75%  { filter: drop-shadow(0 0 8px rgba(160,57,10,.9))  drop-shadow(0 0 24px rgba(160,57,10,.45)); }
  100% { filter: drop-shadow(0 0 5px rgba(103,14,16,.9))  drop-shadow(0 0 18px rgba(103,14,16,.5)); }
}
@keyframes halo-pulse {
  0%,100% { opacity: .65; transform: scale(1); }
  50%     { opacity: 1;   transform: scale(1.12); }
}
@keyframes slow-rotate {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bfly-f1 {
  0%,100% { transform: translateY(0) rotate(-4deg); }
  40%     { transform: translateY(-18px) rotate(-2deg); }
}
@keyframes bfly-f2 {
  0%,100% { transform: scaleX(-1) translateY(0) rotate(4deg); }
  40%     { transform: scaleX(-1) translateY(-14px) rotate(2deg); }
}
@keyframes bfly-hover {
  0%,100% { transform: translate(-50%,-50%) translateY(0); }
  50%     { transform: translate(-50%,-50%) translateY(-14px); }
}
@keyframes bfly-h {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}
@keyframes ring-b {
  0%,100% { opacity: .7; transform: translate(-50%,-50%) scale(1); }
  50%     { opacity: .2; transform: translate(-50%,-50%) scale(1.06); }
}

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .75s ease, transform .75s ease; }
.reveal.reveal-left  { transform: translateX(-26px); }
.reveal.reveal-right { transform: translateX(26px); }
.reveal.visible { opacity: 1; transform: translate(0,0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* ── SHARED TYPOGRAPHY ── */
section { padding: 6rem 5vw; position: relative; z-index: 1; }
.section-eyebrow {
  font-size: .68rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--maroon-text); margin-bottom: .9rem; font-weight: 400;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.1rem, 4.2vw, 3.3rem);
  font-weight: 400; line-height: 1.15;
  color: var(--text-dark); margin-bottom: 1.1rem;
}
.section-title em { font-style: italic; color: var(--maroon); }
.section-lead { font-size: 1.1rem; line-height: 1.4; color: var(--text-dark-mid); max-width: 580px; }

/* ── UTILITY CLASSES (replacing all inline styles) ── */
.mt-2             { margin-top: 2rem; }
.section-lead--mt { margin-top: 1rem; }
.section-lead--center { margin-left: auto; margin-right: auto; }
.section-centered {
  text-align: center; max-width: 700px; margin: 0 auto;
}
.section-centered-sm {
  text-align: center; max-width: 620px; margin: 0 auto;
}
.faq-header {
  text-align: center; max-width: 600px; margin: 0 auto;
}
.text-emphasis    { color: var(--text-dark); font-weight: 600; }
.form-success-note { margin-top: .5rem; font-style: italic; color: var(--maroon-text); }

/* ── GOLD DIVIDER LINE ── */
.gold-line { width: 42px; height: 1.5px; background: linear-gradient(90deg, var(--maroon), var(--gold)); margin: 1.1rem 0; box-shadow: 0 0 10px rgba(228,162,48,.2); }
.gold-line.center { margin: 1.1rem auto; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: linear-gradient(90deg, var(--maroon), var(--maroon-deep));
  color: #fff; padding: .85rem 2.2rem;
  font-size: .74rem; letter-spacing: .16em; text-transform: uppercase;
  text-decoration: none; font-weight: 400;
  transition: opacity .25s, transform .2s;
  box-shadow: 0 4px 20px rgba(103,14,16,.35);
}
.btn-primary:hover { opacity: .88; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(103,14,16,.5); }
.btn-outline {
  display: inline-block;
  border: 1px solid rgba(103,14,16,.45); color: var(--maroon);
  padding: .85rem 2.2rem; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase;
  text-decoration: none; font-weight: 400;
  transition: background .25s, color .25s, transform .2s;
}
.btn-outline:hover { background: var(--maroon); color: #fff; transform: translateY(-2px); }
.btn-outline-gold {
  display: inline-block;
  border: 1px solid rgba(228,162,48,.55); color: var(--gold);
  padding: .85rem 2.2rem; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase;
  text-decoration: none; font-weight: 400;
  transition: background .25s, color .25s, transform .2s;
}
.btn-outline-gold:hover { background: var(--gold); color: #1C1010; transform: translateY(-2px); }

/* ── PILLARS ── */
.pillars { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.3rem; }
.pillar { display: flex; align-items: flex-start; gap: .9rem; }
.pillar-mark {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center;
  margin-top: .1rem; background: rgba(228,162,48,.08);
}
.pillar-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.pillar p { font-size: 1.1rem; line-height: 1.4; color: var(--text-dark-mid); }
.pillar strong { color: var(--text-dark); font-weight: 600; }

/* ============================================================
   PAGE HEADER — inner pages (maroon dark)
   ============================================================ */
.page-header {
  padding: 10rem 5vw 5rem; text-align: center;
  background: var(--bg-base); position: relative; overflow: hidden; z-index: 1;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 55% at 50% 40%, rgba(228,162,48,.09) 0%, rgba(103,14,16,.06) 38%, transparent 68%);
}
.page-header-mandala {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: min(580px, 85vw); opacity: .45;
  animation: slow-rotate 60s linear infinite; pointer-events: none; z-index: 0;
}
.page-eyebrow {
  font-size: .68rem; letter-spacing: .34em; text-transform: uppercase;
  color: rgba(228,162,48,.75); margin-bottom: 1.2rem; position: relative;
}
.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300; color: #fff; line-height: 1.05; position: relative;
}
.page-title em { font-style: italic; color: var(--gold); }
.page-header-line {
  width: 50px; height: 1.5px;
  background: linear-gradient(90deg, var(--maroon-deep), var(--gold));
  margin: 1.4rem auto; box-shadow: 0 0 14px rgba(228,162,48,.4);
}
.page-header-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2vw, 1.35rem); font-style: italic;
  color: rgba(255,255,255,.62); max-width: 560px; margin: 0 auto; line-height: 1.7; position: relative;
}

/* ============================================================
   HERO — index.html (maroon bg, all animations intact)
   ============================================================ */
#hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 9rem 5vw 5rem; position: relative; overflow: hidden;
  background: var(--bg-base); text-align: center; z-index: 1;
}
#hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 44%, rgba(228,162,48,.08) 0%, rgba(103,14,16,.04) 38%, transparent 68%);
}
.hero-logo-wrap { position: relative; margin-bottom: 2.6rem; display: inline-block; }
.hero-logo { width: min(400px, 70vw); height: auto; animation: logo-glow 6s ease-in-out infinite; position: relative; z-index: 2; }
.hero-halo {
  position: absolute; inset: -35px;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(228,162,48,.3) 0%, rgba(103,14,16,.18) 42%, transparent 70%);
  animation: halo-pulse 6s ease-in-out infinite; pointer-events: none; z-index: 1; border-radius: 50%;
}
.hero-mandala {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: min(680px, 90vw); height: auto; pointer-events: none; z-index: 0;
  animation: slow-rotate 60s linear infinite; opacity: .7;
}
.hero-eyebrow {
  font-size: 1.68rem; letter-spacing: .34em; text-transform: uppercase;
  color: rgba(228,162,48,.75); margin-bottom: 1.3rem;
  opacity: 0; animation: fade-up .8s .2s forwards;
}
.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.8vw, 2.1rem); font-weight: 300; font-style: italic;
  color: rgba(255,255,255,1); line-height: 1.55; max-width: 100%; margin: 0 auto 1.8rem;
  opacity: 0; animation: fade-up .8s .4s forwards;
}
.hero-tagline em { color: var(--gold); font-style: normal; font-weight: 500; }
.hero-divider {
  width: 48px; height: 1.5px;
  background: linear-gradient(90deg, var(--maroon-deep), var(--gold), var(--maroon));
  margin: 0 auto 1.8rem;
  opacity: 0; animation: fade-up .8s .6s forwards;
  box-shadow: 0 0 14px rgba(228,162,48,.55);
}
.hero-pills {
  display: flex; flex-wrap: wrap; gap: .55rem; justify-content: center;
  margin-bottom: 2.6rem; opacity: 0; animation: fade-up .8s .8s forwards;
}
.hero-pill {
  font-size: .65rem; letter-spacing: .16em; text-transform: uppercase;
  border: 1px solid rgba(228,162,48,.25); padding: .36rem .95rem;
  color: rgba(255,255,255,.5); background: rgba(228,162,48,.06);
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; opacity: 0; animation: fade-up .8s 1s forwards; }
.hero-btns .btn-primary { background: linear-gradient(90deg, var(--maroon-deep), #330200); box-shadow: 0 4px 20px rgba(0,0,0,.3); }
.hero-contact-block {
  display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap;
  opacity: 0; animation: fade-up .8s 1s forwards;
}
.hero-contact-item {
  display: inline-flex; align-items: center; gap: .9rem;
  text-decoration: none; color: rgba(255,255,255,.92);
  font-size: .94rem; letter-spacing: .04em; line-height: 1.3;
  transition: transform .2s ease, opacity .2s ease;
}
.hero-contact-item:hover {
  transform: translateY(-2px);
  opacity: .9;
}
.hero-contact-icon {
  width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(228,162,48,.16), rgba(228,162,48,.03));
  box-shadow: 0 0 20px rgba(228,162,48,.08);
  flex: 0 0 42px;
}
.hero-contact-icon img {
  width: 42px; height: 42px; display: block;
}
.hero-contact-text {
  font-weight: 400;
}
.hero-contact-note {
  margin-top: .5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-style: italic;
  color: rgba(228,162,48,.88);
  line-height: 1.5;
}
.hero-bfly { position: absolute; pointer-events: none; }
.hero-bfly-1 { right: -1%; top: 9%; width: clamp(150px,18vw,280px); opacity: .13; animation: bfly-f1 7s ease-in-out infinite; z-index: 1; }
.hero-bfly-2 { left: 0%;  bottom: 12%; width: clamp(80px,9vw,160px);  opacity: .09; animation: bfly-f2 9s ease-in-out infinite; z-index: 1; }

/* ============================================================
   BRAND BAND — index & about (deep maroon strip)
   ============================================================ */
.brand-band {
  background: var(--bg-deep); padding: 3.5rem 5vw;
  text-align: center; position: relative; overflow: hidden; z-index: 1;
  border-top: 1px solid rgba(228,162,48,.1); border-bottom: 1px solid rgba(228,162,48,.1);
}
.brand-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 120% at 50% 50%, rgba(103,14,16,.25) 0%, transparent 65%);
}
.bb-bfly { position: absolute; top: 50%; width: 150px; opacity: .07; }
.bb-bfly-l { left: 2%; transform: translateY(-50%); }
.bb-bfly-r { right: 2%; transform: translateY(-50%) scaleX(-1); }
.brand-band blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 2.4vw, 1.9rem); font-weight: 300; font-style: italic;
  color: rgba(255,255,255,.52); letter-spacing: .03em;
  max-width: 740px; margin: 0 auto; line-height: 1.75; position: relative;
}
.brand-band blockquote strong { color: var(--gold); font-weight: 400; font-style: normal; }

/* ── HOME ABOUT (white) ── */
#home-about { background: var(--surface-white); }
.home-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; max-width: 1140px; margin: 0 auto; }
.home-about-visual { position: relative; }
.home-mandala-img { width: 100%; max-width: 400px; height: auto; animation: slow-rotate 50s linear infinite; display: block; margin: 0 auto; }
.butterfly-deco {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 55%; opacity: .18; animation: bfly-hover 8s ease-in-out infinite;
}

/* ── HOME SERVICES (cream) ── */
#home-services { background: var(--surface-cream); }
.services-preview-header { text-align: center; margin-bottom: 4rem; }
.services-preview-header .section-lead { margin: 0 auto; }
.services-preview-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: rgba(103,14,16,.08);
  border: 1px solid rgba(103,14,16,.08);
  max-width: 1140px; margin: 0 auto 3rem;
}
.sp-card {
  background: var(--surface-white); padding: 2.4rem 2rem;
  position: relative; overflow: hidden;
  transition: background .3s; text-decoration: none; color: inherit; display: block;
}
.sp-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2.5px;
  background: linear-gradient(90deg, var(--maroon), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform .4s;
}
.sp-card:hover { background: var(--surface-card); }
.sp-card:hover::after { transform: scaleX(1); }
.sp-card-icon { width: 50px; height: 50px; margin-bottom: 1.2rem; }
.sp-card-num {
  font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300;
  color: rgba(103,14,16,.08); position: absolute; top: 1.4rem; right: 1.6rem;
}
.sp-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.28rem; font-weight: 500; color: var(--text-dark); margin-bottom: .5rem; line-height: 1.25; }
.sp-card-sub { font-size: .66rem; letter-spacing: .17em; text-transform: uppercase; color: var(--maroon-text); margin-bottom: .8rem; }
.sp-card-desc { font-size: .84rem; line-height: 1.85; color: var(--text-dark-mid); }

/* CTA card within service grid */
.sp-card-cta {
  background: var(--bg-deep); padding: 2.4rem 2rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
}
.sp-card-cta .section-eyebrow { color: rgba(228,162,48,.7); margin-bottom: .4rem; }
.sp-card-cta-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: #fff; margin-bottom: .9rem; font-weight: 400; line-height: 1.45; }
.sp-card-cta-bfly { width: 52px; opacity: .2; margin-bottom: 1rem; }
.sp-card-cta .btn-primary { font-size: .68rem; }

/* ── CTA BAND (maroon) ── */
.cta-band {
  background: var(--bg-base); padding: 5.5rem 5vw;
  text-align: center; position: relative; overflow: hidden; z-index: 1;
  border-top: 1px solid rgba(228,162,48,.1);
}
.cta-band-bfly { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 420px; opacity: .05; pointer-events: none; }
.cta-band h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem,4vw,3rem); font-weight: 400; color: #fff; margin-bottom: .8rem; }
.cta-band h2 em { font-style: italic; color: var(--gold); }
.cta-band p { font-size: .91rem; color: rgba(255,255,255,.65); max-width: 500px; margin: 0 auto 2.2rem; line-height: 1.9; }
.cta-band-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-primary { background: linear-gradient(90deg, #330200, var(--maroon-deep)); box-shadow: 0 4px 20px rgba(0,0,0,.3); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* Who We Are — white */
#who { background: var(--surface-white); }
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5.5rem; align-items: center; max-width: 1140px; margin: 0 auto; }
.who-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 400px; }
.who-mandala { width: 380px; max-width: 90%; height: auto; animation: slow-rotate 50s linear infinite; }
.who-bfly { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 55%; opacity: .18; animation: bfly-hover 9s ease-in-out infinite; }
.who-core { position: absolute; text-align: center; pointer-events: none; }
.who-core-title { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 600; color: var(--maroon); display: block; letter-spacing: .04em; }
.who-core-sub { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--maroon-text); display: block; margin-top: .22rem; }

/* Core band (deep maroon strip) */
.core-band {
  background: var(--bg-deep); padding: 4rem 5vw; text-align: center;
  position: relative; overflow: hidden; z-index: 1;
  border-top: 1px solid rgba(228,162,48,.1); border-bottom: 1px solid rgba(228,162,48,.1);
}
.core-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 100% at 50% 50%, rgba(228,162,48,.1) 0%, transparent 65%);
}
.core-band blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.3vw, 1.8rem); font-weight: 300; font-style: italic;
  color: rgba(255,255,255,.55); max-width: 720px; margin: 0 auto; line-height: 1.75; position: relative;
}
.core-band blockquote strong { color: var(--gold); font-weight: 400; font-style: normal; }

/* Purpose — cream */
#purpose { background: var(--surface-cream); }
.purpose-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: rgba(103,14,16,.08);
  max-width: 1140px; margin: 2.5rem auto 0;
}
.purpose-card { background: var(--surface-white); padding: 2.4rem 2rem; border-top: 2.5px solid var(--maroon); transition: background .3s; }
.purpose-card:hover { background: var(--surface-card); }
.purpose-card-icon { font-size: 1.5rem; margin-bottom: 1rem; }
.purpose-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.28rem; font-weight: 500; color: var(--text-dark); margin-bottom: .7rem; }
.purpose-card p { font-size: .86rem; line-height: 1.88; color: var(--text-dark-mid); }

/* Founder — white */
#founder { background: var(--surface-white); }
.founder-grid { display: grid; grid-template-columns: 1fr 1.55fr; gap: 5.5rem; align-items: start; max-width: 1080px; margin: 0 auto; }
.portrait-wrap { position: relative; }
.portrait-tl { position: absolute; top: -14px; left: -14px; width: 65px; height: 65px; border-top: 1.5px solid rgba(228,162,48,.4); border-left: 1.5px solid rgba(228,162,48,.4); }
.portrait-img { width: 100%; height: auto; display: block; }
.portrait-br { position: absolute; bottom: -14px; right: -14px; width: 90px; height: 90px; border-bottom: 1.5px solid rgba(103,14,16,.4); border-right: 1.5px solid rgba(103,14,16,.4); }
.portrait-bfly { position: absolute; bottom: -10px; right: -10px; width: 105px; opacity: .16; animation: bfly-hover 9s ease-in-out infinite; }
.founder-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem); font-weight: 300; font-style: italic;
  line-height: 1.6; color: var(--text-dark); margin-bottom: 1.6rem;
  padding-left: 1.2rem; border-left: 2px solid rgba(228,162,48,.5);
}
.founder-body { font-size: .87rem; line-height: 1.95; color: var(--text-dark-mid); margin-bottom: 1.5rem; }
.founder-sig { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--maroon); font-style: italic; }
.founder-sig small { display: block; font-family: 'Nunito Sans', sans-serif; font-size: .64rem; letter-spacing: .22em; text-transform: uppercase; color: var(--maroon-text); font-style: normal; margin-top: .28rem; }

/* Philosophy — cream */
#philosophy { background: var(--surface-cream); position: relative; overflow: hidden; }
.philo-bfly { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 500px; opacity: .05; pointer-events: none; }
.philo-inner {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: rgba(103,14,16,.08);
  max-width: 940px; margin: 2.5rem auto 0; position: relative;
}
.philo-item { text-align: center; padding: 2.5rem 1.6rem; background: var(--surface-white); transition: background .3s; }
.philo-item:hover { background: var(--surface-card); }
.philo-glyph { font-size: 1.2rem; color: var(--gold); margin-bottom: .8rem; }
.philo-h { font-family: 'Cormorant Garamond', serif; font-size: 1.18rem; font-weight: 500; color: var(--text-dark); margin-bottom: .55rem; }
.philo-t { font-size: .83rem; line-height: 1.88; color: var(--text-dark-mid); }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.svc-bg-a { background: var(--surface-white); }
.svc-bg-b { background: var(--surface-cream); }
.svc-wrap { padding: 6rem 5vw; max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; align-items: center; }
.svc-wrap.alt { grid-template-columns: 1.3fr 1fr; }
.svc-wrap.alt .svc-visual { order: 2; }
.svc-wrap.alt .svc-content { order: 1; }
.svc-num { font-family: 'Cormorant Garamond', serif; font-size: 5rem; font-weight: 300; line-height: 1; color: rgba(103,14,16,.08); margin-bottom: .5rem; }
.svc-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 400; color: var(--text-dark); margin-bottom: .6rem; line-height: 1.2; }
.svc-title em { font-style: italic; color: var(--maroon); }
.svc-sub { font-size: .69rem; letter-spacing: .2em; text-transform: uppercase; color: var(--maroon-text); margin-bottom: 1.1rem; }
.svc-desc { font-size: .89rem; line-height: 1.95; color: var(--text-dark-mid); margin-bottom: 1.4rem; }
.svc-bullets { list-style: none; display: flex; flex-direction: column; gap: .55rem; margin-bottom: 1.8rem; }
.svc-bullets li { display: flex; align-items: flex-start; gap: .7rem; font-size: .86rem; color: var(--text-dark-mid); }
.svc-bullet-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: .45rem; }
.svc-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 320px; }
.svc-icon-large { width: min(220px,50%); height: auto; opacity: .88; position: relative; z-index: 2; filter: drop-shadow(0 0 18px rgba(228,162,48,.2)); }
.svc-visual-ring { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: min(300px,70%); height: min(300px,70%); border-radius: 50%; border: 1px solid rgba(103,14,16,.15); animation: ring-b 8s ease-in-out infinite; }
.svc-visual-ring.r2 { width: min(390px,90%); height: min(390px,90%); animation-delay: .9s; border-color: rgba(228,162,48,.1); }
.svc-visual-bfly { position: absolute; bottom: -8px; right: -8px; width: 96px; opacity: .14; animation: bfly-h 9s ease-in-out infinite; }
.svc-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.svc-tag { font-size: .62rem; letter-spacing: .13em; text-transform: uppercase; padding: .28rem .7rem; border: 1px solid rgba(103,14,16,.18); color: var(--maroon-text); background: rgba(103,14,16,.04); }

/* Process — maroon */
#process {
  background: var(--bg-base); padding: 6rem 5vw; z-index: 1;
  position: relative; overflow: hidden; border-top: 1px solid rgba(228,162,48,.1);
}
#process::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 80% at 50% 0%, rgba(228,162,48,.08) 0%, transparent 55%);
}
.process-header { text-align: center; margin-bottom: 4.5rem; position: relative; }
.process-header .section-eyebrow { color: rgba(228,162,48,.7); }
.process-header .section-title { color: #fff; }
.process-header .section-title em { color: var(--gold); }
.process-header .section-lead { color: rgba(255,255,255,.45); margin: 0 auto; }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; max-width: 1040px; margin: 0 auto; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 2.4rem; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(228,162,48,.3), rgba(103,14,16,.25), transparent);
}
.process-step { text-align: center; }
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid rgba(228,162,48,.4); background: rgba(228,162,48,.05);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.3rem; position: relative; z-index: 2;
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--gold);
  transition: background .3s, border-color .3s;
}
.process-step:hover .step-num { background: var(--gold); color: var(--bg-deep); border-color: var(--gold); box-shadow: 0 0 20px rgba(228,162,48,.35); }
.step-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 500; color: #fff; margin-bottom: .65rem; opacity: .88; }
.step-desc { font-size: .83rem; line-height: 1.88; color: rgba(255,255,255,.38); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
#contact-main { background: var(--surface-white); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5.5rem; align-items: start; max-width: 1100px; margin: 0 auto; }
.contact-tagline { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-style: italic; color: var(--text-dark-mid); margin-top: 1.3rem; line-height: 1.78; }
.contact-details { margin-top: 2.2rem; display: flex; flex-direction: column; gap: 1.1rem; }
.c-item { display: flex; align-items: center; gap: .85rem; font-size: .87rem; color: var(--text-dark-mid); }
.c-icon { color: var(--gold); font-size: 1rem; min-width: 20px; text-align: center; }
.c-item a { color: var(--text-dark-mid); text-decoration: none; transition: color .2s; }
.c-item a:hover { color: var(--maroon); }
.contact-note { margin-top: 2rem; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--maroon-text); padding-top: 1.3rem; border-top: 1px solid rgba(103,14,16,.12); }
.contact-bfly { margin-top: 2.5rem; opacity: .14; width: 130px; }
.contact-process { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(103,14,16,.1); }
.contact-process h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 500; color: var(--text-dark); margin-bottom: 1.2rem; }
.mini-steps { display: flex; flex-direction: column; gap: .9rem; }
.mini-step { display: flex; gap: .9rem; align-items: flex-start; }
.mini-step-num {
  width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--gold); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: .95rem; color: var(--maroon); font-weight: 600;
  margin-top: .05rem; background: rgba(228,162,48,.07);
}
.mini-step p { font-size: .84rem; line-height: 1.7; color: var(--text-dark-mid); }
.contact-form {
  background: var(--surface-card); padding: 3rem 2.8rem 2.8rem;
  border: 1px solid rgba(103,14,16,.1); position: relative; overflow: hidden;
}
.contact-form::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--maroon-deep), var(--gold), var(--maroon));
}
.form-title { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 400; color: var(--text-dark); margin-bottom: 1.8rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--maroon-text); margin-bottom: .42rem; font-weight: 400; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .78rem .9rem;
  border: 1px solid rgba(103,14,16,.18); background: #fff;
  color: var(--text-dark); font-family: 'Nunito Sans', sans-serif;
  font-size: .87rem; outline: none;
  transition: border-color .25s, box-shadow .25s; appearance: none; font-weight: 300;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(28,16,16,.35); }
.form-group select option { background: #fff; color: var(--text-dark); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--maroon); box-shadow: 0 0 0 3px rgba(103,14,16,.06); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-submit {
  width: 100%; padding: .92rem;
  background: linear-gradient(90deg, var(--maroon-deep), var(--maroon));
  color: #fff; border: none; cursor: pointer;
  font-family: 'Nunito Sans', sans-serif; font-size: .73rem; letter-spacing: .2em; text-transform: uppercase;
  transition: opacity .25s, transform .2s, box-shadow .2s; margin-top: .4rem; font-weight: 400;
}
.form-submit:hover { opacity: .9; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(103,14,16,.35); }
.form-success { display: none; text-align: center; padding: 2rem; background: rgba(228,162,48,.08); border: 1px solid rgba(228,162,48,.3); margin-top: 1.5rem; }
.form-success h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--maroon); margin-bottom: .6rem; }
.form-success p { font-size: .88rem; color: var(--text-dark-mid); line-height: 1.7; }

/* FAQ — cream */
#faq { background: var(--surface-cream); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(103,14,16,.08); max-width: 1000px; margin: 2.5rem auto 0; }
.faq-item { padding: 2.2rem 2rem; background: var(--surface-white); border-left: 2.5px solid var(--maroon); transition: background .3s; }
.faq-item:hover { background: var(--surface-card); }
.faq-q { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 500; color: var(--text-dark); margin-bottom: .6rem; }
.faq-a { font-size: .86rem; line-height: 1.88; color: var(--text-dark-mid); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .home-about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-preview-grid { grid-template-columns: 1fr 1fr; }
  .hero-bfly-1, .hero-bfly-2 { display: none; }
  .who-grid, .founder-grid { grid-template-columns: 1fr; gap: 3rem; }
  .purpose-grid, .philo-inner { grid-template-columns: 1fr; }
  .who-visual { min-height: 280px; }
  .who-mandala { width: 260px; }
  .svc-wrap, .svc-wrap.alt { grid-template-columns: 1fr; gap: 2.5rem; }
  .svc-wrap.alt .svc-visual, .svc-wrap.alt .svc-content { order: 0; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .process-steps::before { display: none; }
  .svc-visual { min-height: 220px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; gap: 1.8rem; }
  .services-preview-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 2rem 1.4rem; }
  .hero-eyebrow { font-size: 1.2rem; }
}




@media (max-width: 640px) {
  .hero-contact-block {
    flex-direction: column; gap: 1rem;
  }
  .hero-contact-item {
    gap: .75rem;
    font-size: .84rem;
    letter-spacing: .02em;
  }
  .hero-contact-icon,
  .hero-contact-icon img {
    width: 38px;
    height: 38px;
  }
  .hero-contact-note {
    max-width: 280px;
  }
}


