/* ═══════════════════════════════════════════════
   RED ROCK PSYCHIC & SPIRITUAL CENTER — v2
   Shared Styles
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --navy:       #130d2a;
  --navy-mid:   #1c1540;
  --surface:    #231b4a;
  --surface2:   #2c2358;
  --red:        #c0421f;
  --red-light:  #d9602e;
  --red-dim:    #7a2a10;
  --gold:       #c9956a;
  --gold-light: #e8c090;
  --gold-dim:   #7a5c38;
  --gold-pale:  #f5e8d5;
  --violet:     #7b40a8;
  --text:       #f0e8df;
  --muted:      #9a8878;
}

body {
  background: var(--navy); color: var(--text);
  font-family: 'Jost', sans-serif; font-weight: 300;
  overflow-x: hidden; min-height: 100vh;
}

/* STARS */
.stars { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.stars::before, .stars::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 8% 18%, rgba(255,255,255,.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 28% 62%, rgba(255,255,255,.3) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 48% 12%, rgba(201,149,106,.55) 0%, transparent 100%),
    radial-gradient(1px 1px at 68% 78%, rgba(255,255,255,.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 88% 38%, rgba(255,255,255,.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 18% 88%, rgba(201,149,106,.45) 0%, transparent 100%),
    radial-gradient(1px 1px at 58% 32%, rgba(255,255,255,.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 78% 14%, rgba(255,255,255,.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 38% 72%, rgba(255,255,255,.28) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 53% 54%, rgba(192,66,31,.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 13% 44%, rgba(255,255,255,.42) 0%, transparent 100%),
    radial-gradient(1px 1px at 83% 64%, rgba(255,255,255,.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 23% 28%, rgba(255,255,255,.52) 0%, transparent 100%),
    radial-gradient(1px 1px at 73% 92%, rgba(255,255,255,.32) 0%, transparent 100%),
    radial-gradient(1px 1px at 43% 4%, rgba(255,255,255,.48) 0%, transparent 100%),
    radial-gradient(1px 1px at 93% 24%, rgba(255,255,255,.28) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 63% 74%, rgba(201,149,106,.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 33% 96%, rgba(255,255,255,.42) 0%, transparent 100%),
    radial-gradient(1px 1px at 3% 76%, rgba(255,255,255,.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 50%, rgba(255,255,255,.5) 0%, transparent 100%);
  animation: twinkle 9s ease-in-out infinite alternate;
}
.stars::after { transform: rotate(41deg) scale(1.45); animation-delay: -4.5s; animation-duration: 12s; }
@keyframes twinkle { 0% { opacity:.5; } 100% { opacity:1; } }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 3.5rem;
  background: linear-gradient(180deg, rgba(19,13,42,.97) 0%, transparent 100%);
  transition: background .4s, padding .3s;
}
nav.scrolled {
  background: rgba(19,13,42,.99);
  border-bottom: 1px solid rgba(192,66,31,.2);
  padding: .75rem 3.5rem;
}
.nav-logo-wrap { display: flex; align-items: center; gap: .8rem; text-decoration: none; }
.nav-logo-img { width: 44px; height: 44px; object-fit: contain; transition: transform .4s; }
.nav-logo-wrap:hover .nav-logo-img { transform: scale(1.06); }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.3; }
.nav-logo-main { font-family: 'Cinzel', serif; font-size: .72rem; letter-spacing: .16em; color: var(--gold); text-transform: uppercase; }
.nav-logo-sub { font-size: .58rem; letter-spacing: .13em; color: var(--red-light); text-transform: uppercase; }
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-size: .72rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color .3s;
  position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 100%;
  height: 1px; background: var(--red-light); transition: right .3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-links a.active::after, .nav-links a:hover::after { right: 0; }
.nav-phone { font-family: 'Cinzel', serif; font-size: 1rem; color: var(--gold); letter-spacing: .1em; text-decoration: none; transition: color .3s; }
.nav-phone:hover { color: var(--gold-light); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1px; background: var(--gold); transition: all .3s; }
.mobile-menu {
  position: fixed; top: 0; right: -100%; width: min(320px,85vw); height: 100vh;
  background: var(--navy-mid); z-index: 300;
  display: flex; flex-direction: column; padding: 5rem 2.5rem 3rem; gap: 1.8rem;
  border-left: 1px solid rgba(192,66,31,.2); transition: right .4s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open { right: 0; }
.mobile-menu a { font-family: 'Cinzel', serif; font-size: 1.1rem; letter-spacing: .15em; color: var(--text); text-decoration: none; transition: color .3s; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mobile-phone { font-size: .9rem; color: var(--gold); margin-top: auto; }
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.65); z-index: 250; opacity: 0; pointer-events: none; transition: opacity .4s; }
.mobile-overlay.open { opacity: 1; pointer-events: all; }

/* HERO */
.hero {
  position: relative; z-index: 1; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 9rem 2rem 7rem;
}
.hero-orb {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 800px; height: 600px; border-radius: 50%;
  background: radial-gradient(ellipse at 40% 40%, rgba(192,66,31,.18) 0%, rgba(123,64,168,.14) 40%, rgba(201,149,106,.05) 65%, transparent 80%);
  filter: blur(55px); animation: orbPulse 7s ease-in-out infinite alternate; pointer-events: none;
}
.hero-ring {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 460px; height: 460px; border-radius: 50%;
  border: 1px solid rgba(192,66,31,.18); animation: ringRotate 50s linear infinite; pointer-events: none;
}
.hero-ring::before {
  content: ''; position: absolute; top: -4px; left: 50%; transform: translateX(-50%);
  width: 7px; height: 7px; border-radius: 50%; background: var(--red-light);
  box-shadow: 0 0 10px var(--red-light), 0 0 24px rgba(192,66,31,.5);
}
.hero-ring--2 { width: 620px; height: 620px; border-color: rgba(201,149,106,.06); animation-duration: 90s; animation-direction: reverse; }
.hero-ring--2::before { display: none; }
@keyframes orbPulse { 0% { transform: translate(-50%,-50%) scale(1); opacity:.7; } 100% { transform: translate(-50%,-50%) scale(1.12); opacity:1; } }
@keyframes ringRotate { to { transform: translate(-50%,-50%) rotate(360deg); } }
.hero-content { position: relative; z-index: 2; }
.hero-logo-img {
  width: clamp(150px,20vw,220px); margin: 0 auto 2rem; display: block;
  filter: drop-shadow(0 0 28px rgba(192,66,31,.4)) drop-shadow(0 0 55px rgba(123,64,168,.25));
  animation: fadeUp .8s ease both, logoGlow 5s ease-in-out infinite alternate;
}
@keyframes logoGlow {
  0% { filter: drop-shadow(0 0 20px rgba(192,66,31,.35)) drop-shadow(0 0 50px rgba(123,64,168,.2)); }
  100% { filter: drop-shadow(0 0 40px rgba(192,66,31,.55)) drop-shadow(0 0 80px rgba(123,64,168,.4)); }
}
.hero-eyebrow { font-size: .68rem; letter-spacing: .38em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 1.2rem; animation: fadeUp .8s ease both; }
.hero-title { font-family: 'Cinzel', serif; font-size: clamp(2rem,5.5vw,4.2rem); font-weight: 400; line-height: 1.1; color: var(--text); margin-bottom: .3rem; animation: fadeUp .8s .15s ease both; }
.hero-title .red { color: var(--red-light); }
.hero-subtitle-line { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(1rem,2.5vw,1.4rem); color: var(--gold); font-weight: 300; margin-bottom: 1.8rem; animation: fadeUp .8s .3s ease both; }
.hero-desc { max-width: 480px; margin: 0 auto 2.8rem; font-size: .9rem; line-height: 1.95; color: var(--muted); animation: fadeUp .8s .45s ease both; }
.hero-actions { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; animation: fadeUp .8s .6s ease both; }

/* PAGE HERO */
.page-hero { position: relative; z-index: 1; padding: 9rem 2rem 4.5rem; text-align: center; }
.page-hero-orb {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 700px; height: 450px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(192,66,31,.15) 0%, rgba(123,64,168,.1) 45%, transparent 75%);
  filter: blur(65px); pointer-events: none;
}
.page-hero-logo { width: 88px; margin: 0 auto 1.5rem; display: block; filter: drop-shadow(0 0 16px rgba(192,66,31,.4)); animation: fadeUp .6s ease both; }
.page-hero-eyebrow { font-size: .66rem; letter-spacing: .35em; text-transform: uppercase; color: var(--red-light); display: block; margin-bottom: .9rem; animation: fadeUp .7s .05s ease both; }
.page-hero h1 { font-family: 'Cinzel', serif; font-size: clamp(1.9rem,5vw,3.6rem); font-weight: 400; color: var(--text); margin-bottom: .5rem; animation: fadeUp .7s .12s ease both; }
.page-hero p { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(.95rem,2vw,1.25rem); color: var(--gold); font-weight: 300; animation: fadeUp .7s .2s ease both; }
.page-breadcrumb { display: flex; justify-content: center; gap: .6rem; margin-top: 1.4rem; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); animation: fadeUp .7s .28s ease both; }
.page-breadcrumb a { color: var(--red-dim); text-decoration: none; transition: color .3s; }
.page-breadcrumb a:hover { color: var(--gold); }

/* BUTTONS */
.btn-primary { display: inline-block; padding: .82rem 2.2rem; background: linear-gradient(135deg, var(--red-dim), var(--red)); color: var(--gold-pale); font-family: 'Cinzel', serif; font-size: .73rem; letter-spacing: .16em; text-transform: uppercase; text-decoration: none; border: none; cursor: pointer; transition: all .35s; position: relative; overflow: hidden; }
.btn-primary::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--red), var(--red-light)); opacity: 0; transition: opacity .35s; }
.btn-primary:hover::before { opacity: 1; }
.btn-primary span { position: relative; z-index: 1; }
.btn-gold { display: inline-block; padding: .82rem 2.2rem; background: linear-gradient(135deg, var(--gold-dim), var(--gold)); color: var(--navy); font-family: 'Cinzel', serif; font-size: .73rem; letter-spacing: .16em; text-transform: uppercase; text-decoration: none; border: none; cursor: pointer; transition: all .35s; position: relative; overflow: hidden; }
.btn-gold::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--gold), var(--gold-light)); opacity: 0; transition: opacity .35s; }
.btn-gold:hover::before { opacity: 1; }
.btn-gold span { position: relative; z-index: 1; }
.btn-ghost { display: inline-block; padding: .82rem 2.2rem; border: 1px solid rgba(192,66,31,.4); color: var(--gold); font-family: 'Cinzel', serif; font-size: .73rem; letter-spacing: .16em; text-transform: uppercase; text-decoration: none; background: transparent; cursor: pointer; transition: all .35s; }
.btn-ghost:hover { border-color: var(--red-light); background: rgba(192,66,31,.08); color: var(--gold-light); }

/* LAYOUT */
.container { max-width: 1100px; margin: 0 auto; }
section { position: relative; z-index: 1; padding: 5.5rem 2rem; }
.section-label { font-size: .67rem; letter-spacing: .32em; text-transform: uppercase; color: var(--red-light); display: block; margin-bottom: .9rem; }
.section-title { font-family: 'Cinzel', serif; font-size: clamp(1.5rem,3.5vw,2.4rem); font-weight: 400; color: var(--text); line-height: 1.2; margin-bottom: 1.2rem; }
.section-body { font-size: .9rem; line-height: 1.95; color: var(--muted); }
.divider { display: flex; align-items: center; gap: 1.5rem; padding: 0 4rem; max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.divider-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(192,66,31,.25), transparent); }
.divider-symbol { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--red-light); opacity: .55; }

/* AREAS STRIP */
.areas-strip { padding: 1.8rem 2rem; background: rgba(192,66,31,.04); border-top: 1px solid rgba(192,66,31,.1); border-bottom: 1px solid rgba(192,66,31,.1); }
.areas-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: .9rem; }
.area-pill { font-size: .73rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-dim); border: 1px solid rgba(192,66,31,.2); padding: .5rem 1.3rem; transition: all .3s; }
.area-pill:hover { color: var(--gold); border-color: rgba(192,66,31,.45); background: rgba(192,66,31,.07); }

/* INTRO */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.intro-visual { display: flex; flex-direction: column; gap: 1.2rem; }
.intro-card { background: var(--surface); border: 1px solid rgba(192,66,31,.12); padding: 1.7rem 1.9rem; display: flex; align-items: flex-start; gap: 1.2rem; transition: border-color .3s, background .3s; }
.intro-card:hover { border-color: rgba(192,66,31,.35); background: var(--surface2); }
.intro-card--offset { margin-left: 2rem; }
.intro-card-icon { font-size: 1.5rem; flex-shrink: 0; }
.intro-card h3 { font-family: 'Cinzel', serif; font-size: .84rem; font-weight: 400; color: var(--gold-light); margin-bottom: .35rem; letter-spacing: .04em; }
.intro-card p { font-size: .8rem; color: var(--muted); line-height: 1.7; }

/* TESTIMONIALS */
.testimonials-section { padding: 5rem 0; overflow: hidden; }
.testimonials-header { text-align: center; margin-bottom: 3rem; padding: 0 2rem; }
.testimonials-mask { overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); }
.testimonials-track { display: flex; gap: 1.5rem; animation: slide 30s linear infinite; width: max-content; }
.testimonials-track:hover { animation-play-state: paused; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.testimonial-card { background: var(--surface); border: 1px solid rgba(192,66,31,.1); padding: 1.9rem 2.2rem; width: 320px; flex-shrink: 0; transition: border-color .3s; }
.testimonial-card:hover { border-color: rgba(192,66,31,.3); }
.t-stars { color: var(--gold); font-size: .85rem; letter-spacing: .1em; margin-bottom: .9rem; }
.t-text { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1rem; line-height: 1.72; color: var(--text); margin-bottom: 1rem; }
.t-name { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--red-dim); }

/* CTA */
.cta-section { padding: 6rem 2rem; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 900px; height: 500px; background: radial-gradient(ellipse, rgba(192,66,31,.1) 0%, transparent 70%); pointer-events: none; }
.cta-phone { display: block; font-family: 'Cinzel', serif; font-size: clamp(1.8rem,4.5vw,3rem); color: var(--gold); text-decoration: none; margin: 1rem 0 .5rem; letter-spacing: .1em; transition: color .3s; }
.cta-phone:hover { color: var(--gold-light); }
.cta-note { margin-top: 1.8rem; font-size: .8rem; color: var(--muted); font-style: italic; font-family: 'Cormorant Garamond', serif; letter-spacing: .04em; }

/* FOOTER */
footer { position: relative; z-index: 1; border-top: 1px solid rgba(192,66,31,.15); padding: 4rem 2rem 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer-logo-wrap { display: flex; align-items: center; gap: .9rem; margin-bottom: 1rem; }
.footer-logo-img { width: 42px; height: 42px; object-fit: contain; }
.footer-logo-text { font-family: 'Cinzel', serif; font-size: .82rem; letter-spacing: .15em; color: var(--gold); }
.footer-logo-sub { font-size: .6rem; letter-spacing: .12em; color: var(--red-light); display: block; }
.footer-tagline { font-size: .8rem; color: var(--muted); line-height: 1.85; }
.footer-nav-title { font-size: .64rem; letter-spacing: .22em; text-transform: uppercase; color: var(--red-dim); display: block; margin-bottom: 1.2rem; }
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer-nav a, .footer-contact-col a { font-size: .8rem; color: var(--muted); text-decoration: none; transition: color .3s; }
.footer-nav a:hover, .footer-contact-col a:hover { color: var(--gold); }
.footer-contact-col { font-size: .8rem; color: var(--muted); line-height: 1.9; }
.footer-bottom { border-top: 1px solid rgba(192,66,31,.1); padding: 1.4rem 0; display: flex; justify-content: space-between; font-size: .7rem; letter-spacing: .07em; color: var(--muted); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }
.reveal { opacity:0; transform:translateY(26px); transition:opacity .7s ease,transform .7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: 5rem; align-items: start; }
.about-image-frame { position: relative; padding: 1.8rem 0 1.8rem 1.8rem; }
.about-image-frame::before { content: ''; position: absolute; top:0; left:0; right:2.5rem; bottom:2.5rem; border: 1px solid rgba(192,66,31,.22); }
.about-image-frame::after { content: ''; position: absolute; top:2.5rem; left:2.5rem; right:0; bottom:0; background: linear-gradient(135deg, rgba(123,64,168,.12), rgba(192,66,31,.05)); border: 1px solid rgba(192,66,31,.08); }
.about-img-placeholder { position: relative; z-index: 1; width: 100%; aspect-ratio: 3/4; background: linear-gradient(160deg, var(--surface) 0%, var(--navy-mid) 100%); border: 1px solid rgba(192,66,31,.08); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.about-img-placeholder .crystal { font-size: 5rem; margin-bottom: 1rem; animation: floatCrystal 4s ease-in-out infinite; filter: drop-shadow(0 0 20px rgba(192,66,31,.5)); }
@keyframes floatCrystal { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-10px); } }
.about-img-placeholder p { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--gold-dim); font-size: .9rem; letter-spacing: .1em; }
.about-badge { position: absolute; bottom: 3.5rem; right: .2rem; z-index: 2; background: var(--navy); border: 1px solid rgba(192,66,31,.3); padding: 1rem 1.5rem; text-align: center; }
.about-badge .num { font-family: 'Cinzel', serif; font-size: 2.2rem; color: var(--red-light); display: block; line-height: 1; }
.about-badge .lbl { font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.about-qualities { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.quality-item { border-left: 2px solid rgba(192,66,31,.35); padding-left: 1rem; }
.quality-item h4 { font-family: 'Cinzel', serif; font-size: .77rem; font-weight: 400; color: var(--gold-light); margin-bottom: .3rem; letter-spacing: .05em; }
.quality-item p { font-size: .77rem; color: var(--muted); line-height: 1.6; }

/* SERVICES */
.services-masonry { column-count: 3; column-gap: 1.2rem; margin-top: 2.5rem; }
.service-pill { break-inside: avoid; display: block; background: var(--surface); border: 1px solid rgba(192,66,31,.12); padding: 1.1rem 1.4rem; margin-bottom: 1.2rem; transition: border-color .3s, background .3s; position: relative; overflow: hidden; }
.service-pill::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--red); transform: scaleY(0); transform-origin: bottom; transition: transform .3s; }
.service-pill:hover { background: var(--surface2); border-color: rgba(192,66,31,.3); }
.service-pill:hover::before { transform: scaleY(1); }
.service-pill-icon { font-size: 1.1rem; margin-bottom: .4rem; display: block; }
.service-pill h4 { font-family: 'Cinzel', serif; font-size: .8rem; font-weight: 400; color: var(--gold-light); margin-bottom: .2rem; letter-spacing: .04em; }
.service-pill p { font-size: .76rem; color: var(--muted); line-height: 1.65; }

/* CHAKRA */
.chakra-column { display: flex; flex-direction: column; align-items: center; gap: 0; }
.chakra-ellipsis { font-size: 1.4rem; color: var(--gold-dim); letter-spacing: .2em; padding: .7rem 0; text-align: center; line-height: 1; }
.chakra-row { display: flex; align-items: center; gap: 1.2rem; padding: 1rem 1.5rem; width: 100%; background: var(--surface); border: 1px solid rgba(192,66,31,.1); margin-bottom: 2px; transition: background .3s, border-color .3s; position: relative; }
.chakra-row:hover { background: var(--surface2); border-color: rgba(192,66,31,.25); }
.chakra-row .c-dot { width: 13px; height: 13px; border-radius: 50%; flex-shrink: 0; }
.chakra-row .c-name { font-family: 'Cinzel', serif; font-size: .8rem; font-weight: 400; color: var(--gold-light); width: 155px; flex-shrink: 0; }
.chakra-row .c-desc { font-size: .77rem; color: var(--muted); line-height: 1.5; }
.chakra-row .c-label { position: absolute; right: 1.5rem; font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-dim); white-space: nowrap; }

/* PRICING */
.pricing-banner { background: var(--surface); border: 1px solid rgba(192,66,31,.2); border-left: 3px solid var(--red); padding: 2.5rem 3rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 2rem; margin-top: 3rem; }
.pricing-banner-text h3 { font-family: 'Cinzel', serif; font-size: 1.25rem; font-weight: 400; color: var(--gold-light); margin-bottom: .5rem; }
.pricing-banner-text p { font-size: .86rem; color: var(--muted); max-width: 420px; line-height: 1.8; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 1px; }
.faq-item { background: var(--surface); border: 1px solid rgba(192,66,31,.1); overflow: hidden; }
.faq-question { padding: 1.3rem 1.8rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-family: 'Cinzel', serif; font-size: .84rem; font-weight: 400; color: var(--text); letter-spacing: .04em; transition: color .3s; user-select: none; }
.faq-question:hover { color: var(--gold-light); }
.faq-icon { font-size: 1.2rem; color: var(--red-light); transition: transform .35s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .4s; padding: 0 1.8rem; font-size: .84rem; line-height: 1.85; color: var(--muted); }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 1.8rem 1.4rem; }

/* CONTACT */
.contact-phone-hero { font-family: 'Cinzel', serif; font-size: clamp(2.2rem,6vw,4.2rem); color: var(--gold); text-decoration: none; letter-spacing: .1em; transition: color .3s; display: block; margin: .5rem 0; }
.contact-phone-hero:hover { color: var(--gold-light); }
.contact-methods { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin: 1.5rem 0 2.5rem; }
.contact-method { display: flex; align-items: center; gap: .7rem; background: var(--surface); border: 1px solid rgba(192,66,31,.18); padding: .85rem 1.8rem; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-light); text-decoration: none; transition: border-color .3s, background .3s; }
.contact-method:hover { border-color: rgba(192,66,31,.4); background: var(--surface2); }
.contact-method-icon { font-size: 1.1rem; }
.contact-info-block { background: var(--surface); border: 1px solid rgba(192,66,31,.12); padding: 1.8rem 2rem; margin-bottom: 1.2rem; }
.contact-info-block h4 { font-family: 'Cinzel', serif; font-size: .78rem; font-weight: 400; color: var(--red-light); letter-spacing: .1em; margin-bottom: 1rem; text-transform: uppercase; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: .85rem; font-size: .85rem; color: var(--text); }
.contact-detail:last-child { margin-bottom: 0; }
.contact-detail a { color: var(--text); text-decoration: none; transition: color .3s; }
.contact-detail a:hover { color: var(--gold); }
.contact-detail-icon { color: var(--red-light); font-size: 1rem; width: 20px; text-align: center; flex-shrink: 0; margin-top: 2px; }
.hours-row { display: flex; justify-content: space-between; align-items: flex-start; padding: .65rem 0; border-bottom: 1px solid rgba(192,66,31,.08); font-size: .84rem; }
.hours-row:last-child { border-bottom: none; padding-bottom: 0; }
.hours-label { color: var(--muted); font-size: .76rem; letter-spacing: .07em; }
.hours-value { color: var(--gold-light); text-align: right; font-size: .8rem; max-width: 55%; }
.session-type-badge { display: inline-flex; align-items: center; gap: .5rem; background: rgba(192,66,31,.08); border: 1px solid rgba(192,66,31,.2); padding: .5rem 1rem; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-dim); margin: .3rem; }

/* ── HERO BANNER LOGO ── */
.hero-banner-wrap {
  position: relative;
  width: clamp(280px, 55vw, 560px);
  margin: 0 auto 1.8rem;
  animation: fadeUp .8s ease both;
}
.hero-banner-logo {
  width: 100%;
  display: block;
  /* Blend the square PNG background into the page with a radial mask */
  mask-image: radial-gradient(ellipse 80% 78% at 50% 48%, black 52%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 78% at 50% 48%, black 52%, transparent 100%);
  filter: drop-shadow(0 0 32px rgba(192,66,31,.5)) drop-shadow(0 0 70px rgba(123,64,168,.3));
  animation: fadeUp .8s ease both, logoGlow 5s ease-in-out infinite alternate;
}

/* ── HERO TITLE STACK ── */
.hero-title-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .15em;
  margin-bottom: .6rem;
  animation: fadeUp .8s .15s ease both;
}
.hts-line1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 5.5vw, 4.4rem);
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--red-light);          /* orange/red */
  line-height: 1.05;
  text-transform: uppercase;
}
.hts-line2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3.5vw, 2.8rem);
  font-style: italic;
  font-weight: 300;
  color: #9a8a7a;                   /* muted — same as "of Saint George" */
  line-height: 1;
}
.hts-line3 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  font-weight: 400;
  letter-spacing: .1em;
  color: #c8cdd6;                   /* silver */
  line-height: 1.05;
  text-transform: uppercase;
}
/* "of Saint George" subtitle sits below the stack */
.hero-subtitle-line {
  font-family: 'Cinzel', serif;
  font-size: clamp(.9rem, 2vw, 1.4rem); /* ~2/3 of hts-line3 */
  color: #9a8a7a;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  animation: fadeUp .8s .3s ease both;
}

/* ── SERVICES VERTICAL LIST ── */
.services-list-section {
  position: relative;
  z-index: 1;
  padding: 4rem 2rem 3rem;
  background: linear-gradient(180deg, rgba(28,21,64,.5) 0%, transparent 100%);
}
.services-list-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.svc-row {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(19,13,42,.6);
  border: 1px solid rgba(192,66,31,.25);
  text-decoration: none;
  transition: background .3s, border-color .35s, transform .25s;
  cursor: pointer;
  overflow: visible;
  position: relative;
}
.svc-row::after {
  content: '';
  position: absolute;
  right: 1.8rem;
  top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px;
  border-right: 1.5px solid rgba(201,149,106,.4);
  border-top: 1.5px solid rgba(201,149,106,.4);
  transform: translateY(-50%) rotate(45deg);
  transition: border-color .3s, right .3s;
}
.svc-row:hover {
  background: rgba(35,27,74,.85);
  border-color: rgba(192,66,31,.55);
  transform: translateX(4px);
}
.svc-row:hover::after {
  border-color: var(--gold);
  right: 1.5rem;
}

.svc-icon-wrap {
  width: 120px;
  height: 100px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
}
.svc-icon-img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  /* Real transparent PNGs — no blend mode needed */
  filter: drop-shadow(0 0 10px rgba(201,149,106,.35));
  transition: filter .35s, transform .35s;
}
.svc-row:hover .svc-icon-img {
  filter: drop-shadow(0 0 20px rgba(192,66,31,.65)) drop-shadow(0 0 38px rgba(201,149,106,.4));
  transform: scale(1.09);
}

.svc-name {
  font-family: 'Cinzel', serif;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 400;
  letter-spacing: .16em;
  color: var(--gold);
  text-transform: uppercase;
  padding: 0 3rem 0 1rem;
  transition: color .3s;
}
.svc-row:hover .svc-name { color: var(--gold-light); }

/* ── INTRO CARDS 2-UP (enlarged, no offset) ── */
.intro-visual--2up {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.intro-card--large {
  padding: 2.2rem 2rem;
  align-items: flex-start;
}
.intro-card--large .intro-card-icon {
  font-size: 2.2rem;
  margin-top: .1rem;
}
.intro-card--large h3 {
  font-size: 1rem;
  margin-bottom: .55rem;
}
.intro-card--large p {
  font-size: .86rem;
  line-height: 1.8;
}

/* ── CTA ADDRESS ── */
.cta-address {
  font-size: 1.05rem;
  color: var(--gold-light);
  letter-spacing: .05em;
  font-style: normal;
  font-family: 'Cinzel', serif;
  font-weight: 400;
}

/* MOBILE */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  nav.scrolled { padding: .75rem 1.5rem; }
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .about-grid, .intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-ring { width: 300px; height: 300px; }
  .hero-ring--2 { width: 460px; height: 460px; }
  .hero-orb { width: 420px; height: 350px; }
  .intro-card--offset { margin-left: 0; }
  .divider { padding: 0 1.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-qualities { grid-template-columns: 1fr; }
  .services-masonry { column-count: 2; }
  .pricing-banner { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .services-masonry { column-count: 1; }
}
