:root {
  --ink: #08040d;
  --black: #050309;
  --black-2: #0c0712;
  --charcoal: #120a1b;
  --plum: #241033;
  --plum-2: #3b1954;
  --purple: #8a4dff;
  --violet: #c49aff;
  --lavender: #eadcff;
  --green: #36d47f;
  --green-2: #9cffc6;
  --sage: #b6e7c4;
  --cream: #f6fff8;
  --cream-2: #eafff0;
  --white: #ffffff;
  --text: #efe8f8;
  --dark-text: #1e1329;
  --muted: #b9a9c8;
  --muted-dark: #6f6079;
  --line: rgba(156, 255, 198, .18);
  --glass: rgba(255, 255, 255, .10);
  --glass-strong: rgba(255, 255, 255, .72);
  --shadow-xl: 0 34px 96px rgba(0, 0, 0, .46);
  --shadow-lg: 0 24px 62px rgba(9, 4, 14, .32);
  --shadow-md: 0 16px 42px rgba(9, 4, 14, .22);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Georgia, serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 6%, rgba(138, 77, 255, .22), transparent 28rem),
    radial-gradient(circle at 92% 14%, rgba(54, 212, 127, .16), transparent 28rem),
    radial-gradient(circle at 50% 105%, rgba(138, 77, 255, .12), transparent 36rem),
    linear-gradient(180deg, #050309 0%, #100817 46%, #050309 100%);
  overflow-x: hidden;
  opacity: 0;
  animation: pageLoad .7s ease forwards;
}

body.loaded { opacity: 1; }
body::selection, ::selection { background: rgba(54, 212, 127, .42); }

.site-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  opacity: .58;
  background-image:
    linear-gradient(rgba(78, 36, 104, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78, 36, 104, .04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 84%);
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #10081a; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--purple), var(--green));
  border-radius: 999px;
  border: 2px solid #10081a;
}

@keyframes pageLoad { to { opacity: 1; } }
@keyframes floatOrb { 0%, 100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(18px,-24px,0) scale(1.05); } }
@keyframes markPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(156, 255, 198, .30), 0 28px 72px rgba(0,0,0,.25); } 50% { box-shadow: 0 0 0 16px rgba(156, 255, 198, 0), 0 36px 88px rgba(0,0,0,.32); } }
@keyframes shimmer { from { transform: translateX(-125%) skewX(-18deg); } to { transform: translateX(145%) skewX(-18deg); } }
@keyframes breathe { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

h1, h2, h3, p { margin-top: 0; }
a { color: inherit; }

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 92px 18px 52px;
  color: white;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 15%, rgba(138, 77, 255, .34), transparent 22rem),
    radial-gradient(circle at 84% 24%, rgba(54, 212, 127, .24), transparent 24rem),
    radial-gradient(circle at 50% 118%, rgba(100, 31, 152, .34), transparent 30rem),
    linear-gradient(135deg, #050309 0%, #13091d 34%, #2a1241 68%, #0d3a24 132%);
}

.particle-canvas, .quote-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(5px);
  pointer-events: none;
  opacity: .78;
  animation: floatOrb 9s ease-in-out infinite;
}
.orb-one { width: 330px; height: 330px; left: -105px; top: 15%; background: radial-gradient(circle, rgba(156, 255, 198, .26), transparent 68%); }
.orb-two { width: 420px; height: 420px; right: -145px; bottom: 8%; background: radial-gradient(circle, rgba(226, 196, 255, .28), transparent 68%); animation-delay: -3s; }
.orb-three { width: 250px; height: 250px; left: 55%; top: 4%; background: radial-gradient(circle, rgba(255,255,255,.14), transparent 70%); animation-delay: -5s; }

.topbar {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 5;
  transform: translateX(-50%);
  width: min(var(--max), calc(100% - 28px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(0,0,0,.16);
}

.nav-brand, .nav-links { display: flex; align-items: center; }
.nav-brand { gap: 10px; text-decoration: none; font-weight: 900; letter-spacing: -.02em; }
.nav-links { gap: 4px; }
.nav-links a {
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255,255,255,.84);
  font-size: 14px;
  transition: background .25s ease, color .25s ease;
}
.nav-links a:hover { background: rgba(255,255,255,.14); color: white; }

.mini-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,.26), rgba(255,255,255,.08));
  border: 1px solid rgba(255,255,255,.25);
}
.mini-mark svg { width: 23px; height: 23px; fill: rgba(255,236,180,.95); stroke: rgba(255,255,255,.75); stroke-width: 1.5; }

.hero-card {
  position: relative;
  z-index: 2;
  width: min(var(--max), 100%);
  padding: clamp(34px, 6vw, 78px) clamp(18px, 5vw, 62px);
  text-align: center;
  border-radius: clamp(28px, 4vw, 50px);
  border: 1px solid rgba(255,255,255,.30);
  background:
    linear-gradient(145deg, rgba(255,255,255,.20), rgba(255,255,255,.075)),
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.18), transparent 35%);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-xl);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,.12);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 15px;
  margin-bottom: 22px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  background: rgba(255,255,255,.105);
  color: var(--green-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow span { width: 8px; height: 8px; border-radius: 50%; background: var(--green-2); box-shadow: 0 0 18px var(--green-2); }

.brand-mark {
  width: clamp(118px, 15vw, 158px);
  height: clamp(118px, 15vw, 158px);
  margin: 0 auto 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 22%, rgba(255,255,255,.75), transparent 18%),
    linear-gradient(145deg, rgba(255,255,255,.26), rgba(255,255,255,.07));
  border: 1px solid rgba(255,255,255,.38);
  animation: markPulse 4s ease-in-out infinite;
}
.brand-mark svg { width: 72%; height: 72%; filter: drop-shadow(0 18px 24px rgba(0,0,0,.28)); }

h1 {
  margin: 0 0 14px;
  font-size: clamp(46px, 8.4vw, 104px);
  line-height: .9;
  letter-spacing: -.065em;
  text-wrap: balance;
}
.tagline {
  margin-bottom: 20px;
  color: var(--green-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 3.2vw, 38px);
  letter-spacing: -.02em;
}
.intro {
  max-width: 760px;
  margin: 0 auto 30px;
  color: rgba(255,255,255,.88);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.75;
}

.btn-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 24px; }
.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 15px 23px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,.45) 45%, transparent 72%);
  transform: translateX(-125%) skewX(-18deg);
}
.btn:hover { transform: translateY(-3px); }
.btn:hover::after { animation: shimmer .9s ease; }
.btn-primary { color: #050309; background: linear-gradient(135deg, #eafff0, #9cffc6 48%, #8a4dff 115%); box-shadow: 0 16px 42px rgba(54, 212, 127, .28); }
.btn-primary:hover { box-shadow: 0 18px 54px rgba(156, 255, 198, .42); }
.btn-secondary, .btn-ghost { color: white; border: 1px solid rgba(255,255,255,.34); background: rgba(255,255,255,.10); backdrop-filter: blur(10px); }
.btn-secondary:hover, .btn-ghost:hover { border-color: rgba(156, 255, 198, .65); box-shadow: 0 16px 42px rgba(255,255,255,.12); }

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 38px auto 0;
  max-width: 760px;
}
.hero-proof div {
  padding: 18px 14px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.10);
}
.hero-proof strong { display: block; color: var(--green-2); font-size: 18px; }
.hero-proof span { display: block; margin-top: 3px; color: rgba(255,255,255,.74); font-size: 13px; }

.section { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; padding: 100px 0; position: relative; }
.section + .section { margin-top: 20px; }
.section-heading { max-width: 800px; margin: 0 auto 56px; text-align: center; }
.section-kicker { display: inline-block; margin-bottom: 13px; color: var(--purple); font-size: 13px; font-weight: 950; letter-spacing: .15em; text-transform: uppercase; }
.section h2, .section-heading h2 { margin-bottom: 14px; color: var(--cream); font-size: clamp(32px, 5vw, 56px); line-height: 1.02; letter-spacing: -.05em; text-wrap: balance; }
.section-heading p, .section > p { color: var(--muted); font-size: 18px; line-height: 1.75; }

.intro-band {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 34px;
  align-items: center;
  margin-top: 40px;
  padding: 48px 38px;
  border: 1px solid rgba(156, 255, 198, .18);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(20, 10, 31, .86), rgba(16, 55, 35, .30));
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}
.intro-band h2 { margin-bottom: 0; font-size: clamp(28px, 4.3vw, 48px); }
.intro-band p { margin: 0; color: #d7cce2; font-size: 18px; line-height: 1.75; }

.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.offer-card {
  position: relative;
  min-height: 250px;
  padding: 30px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(156, 255, 198, .16);
  background:
    linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.055)),
    radial-gradient(circle at 20% 10%, rgba(54, 212, 127, .13), transparent 48%);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  overflow: hidden;
}
.offer-card::after {
  content: "";
  position: absolute;
  inset: auto -40% -55% -40%;
  height: 130px;
  background: radial-gradient(circle, rgba(177, 132, 212, .20), transparent 64%);
  transition: opacity .28s ease;
  opacity: .55;
}
.offer-card:hover { transform: translateY(-8px); border-color: rgba(156, 255, 198, .62); box-shadow: 0 30px 72px rgba(54, 212, 127, .16), 0 18px 58px rgba(138, 77, 255, .18); }
.card-icon { display: inline-grid; place-items: center; width: 66px; height: 66px; margin-bottom: 20px; border-radius: 22px; background: linear-gradient(135deg, rgba(54,212,127,.22), rgba(177,132,212,.18)); font-size: 34px; box-shadow: inset 0 1px 0 rgba(255,255,255,.65); }
.offer-card h3 { margin-bottom: 12px; color: var(--green-2); font-size: 24px; letter-spacing: -.03em; }
.offer-card p { margin: 0; color: #d6cadd; line-height: 1.65; }
.feature-card { background: linear-gradient(135deg, rgba(7,3,12,.96), rgba(59,25,84,.88)), radial-gradient(circle at 24% 12%, rgba(54,212,127,.24), transparent 50%); color: white; }
.feature-card h3, .feature-card p { color: white; }
.feature-card p { opacity: .86; }

.custom-section { padding-top: 108px; padding-bottom: 108px; }
.custom-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  width: 120vw;
  height: 70%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 20% 35%, rgba(54,212,127,.18), transparent 24rem), radial-gradient(circle at 78% 64%, rgba(177,132,212,.16), transparent 24rem);
}
.split-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.panel {
  position: relative;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(156,255,198,.16);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.06)),
    repeating-linear-gradient(135deg, rgba(156,255,198,.035) 0 1px, transparent 1px 13px);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
  overflow: hidden;
}
.panel::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54,212,127,.18), transparent 68%);
}
.panel h2 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 16px; }
.panel p { color: #d6cadd; font-size: 17px; line-height: 1.76; }
.crystal-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.crystal-list li { position: relative; padding-left: 34px; line-height: 1.55; color: #eee6f7; }
.crystal-list li::before { content: "◆"; position: absolute; left: 0; top: 0; color: var(--green); text-shadow: 0 0 16px rgba(54,212,127,.5); }
.step-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.step-list li { display: grid; grid-template-columns: 54px 1fr; gap: 14px; align-items: center; padding: 14px; border-radius: 18px; background: rgba(255,255,255,.08); border: 1px solid rgba(156,255,198,.12); }
.step-list span { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 16px; color: var(--green-2); font-weight: 950; background: linear-gradient(135deg, rgba(54,212,127,.24), rgba(177,132,212,.18)); }
.step-list p { margin: 0; color: #efe8f8; font-weight: 700; }

.gallery-section { padding-top: 100px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.polaroid {
  position: relative;
  padding: 16px 16px 22px;
  border-radius: 18px;
  background: rgba(19, 9, 29, .92);
  box-shadow: 0 24px 58px rgba(0,0,0,.36);
  transform: rotate(-1deg);
  transition: transform .28s ease, box-shadow .28s ease;
}
.polaroid:nth-child(2) { transform: rotate(1.2deg); }
.polaroid:nth-child(3) { transform: rotate(-.5deg); }
.polaroid:hover { transform: rotate(0deg) translateY(-8px); box-shadow: 0 34px 82px rgba(54,212,127,.13), 0 26px 76px rgba(0,0,0,.42); }
.tape { position: absolute; left: 50%; top: -14px; width: 86px; height: 28px; transform: translateX(-50%) rotate(-3deg); border-radius: 5px; background: rgba(184, 255, 211, .72); box-shadow: 0 3px 12px rgba(0,0,0,.06); }
.photo-frame {
  position: relative;
  min-height: 290px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 14px;
  overflow: hidden;
  color: white;
  background: linear-gradient(135deg, #0b0610, #6c39be 58%, #36d47f);
}
.photo-frame::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 28% 18%, rgba(255,255,255,.74), transparent 12rem), radial-gradient(circle at 80% 78%, rgba(156,255,198,.28), transparent 14rem); transition: transform .35s ease; }
.photo-frame::after { content: ""; position: absolute; inset: 0; background: rgba(31,13,47,.12); }
.polaroid:hover .photo-frame::before { transform: scale(1.08); }
.photo-frame span { position: absolute; top: 16px; right: 16px; z-index: 2; padding: 7px 10px; border-radius: 999px; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.30); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.photo-frame strong { position: relative; z-index: 2; display: block; padding: 0 14px; font-size: 26px; letter-spacing: -.03em; }
.photo-frame em { position: absolute; z-index: 2; left: 50%; bottom: 18px; transform: translate(-50%, 14px); opacity: 0; width: max-content; max-width: calc(100% - 28px); padding: 9px 12px; border-radius: 999px; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.24); font-style: normal; font-weight: 800; transition: opacity .25s ease, transform .25s ease; }
.polaroid:hover em { opacity: 1; transform: translate(-50%, 0); }
.polaroid p { margin: 18px 6px 0; color: var(--green-2); font-weight: 900; }

.healing-section {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  margin-top: 60px;
  padding: clamp(54px, 8vw, 88px) clamp(24px, 5vw, 64px);
  text-align: center;
  color: white;
  border-radius: clamp(30px, 5vw, 54px);
  background:
    radial-gradient(circle at 18% 20%, rgba(156, 255, 198, .22), transparent 23rem),
    radial-gradient(circle at 84% 76%, rgba(224, 190, 255, .24), transparent 24rem),
    linear-gradient(135deg, #050309, #2d1544 68%, #2fae68);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.healing-section h2 { position: relative; z-index: 2; margin: 18px auto 16px; max-width: 820px; color: white; font-size: clamp(32px, 5vw, 58px); line-height: 1.04; letter-spacing: -.05em; }
.healing-section p { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; color: rgba(255,255,255,.86); font-size: clamp(18px, 2vw, 22px); line-height: 1.82; }
.decor-line { position: relative; z-index: 2; width: min(260px, 62vw); height: 1px; margin: 0 auto; background: linear-gradient(90deg, transparent, rgba(156,255,198,.88), transparent); }
.decor-line::before, .decor-line::after { content: "✦"; position: absolute; top: 50%; transform: translateY(-50%); color: var(--green-2); font-size: 14px; }
.decor-line::before { left: 32%; }
.decor-line::after { right: 32%; }

.contact-section { padding-bottom: 120px; }
.contact-card {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 60px);
  text-align: center;
  border: 1px solid rgba(156,255,198,.18);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.06)), radial-gradient(circle at 80% 10%, rgba(54,212,127,.10), transparent 22rem);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
}
.contact-card h2 { margin-bottom: 14px; font-size: clamp(32px, 5vw, 56px); }
.contact-card p { color: #d6cadd; font-size: 18px; line-height: 1.7; }
.contact-card .btn-secondary, .contact-card .btn-ghost { color: var(--green-2); border-color: rgba(156,255,198,.18); background: rgba(156,255,198,.055); }
.response-note { margin: 18px 0 0; font-size: 14px !important; font-weight: 800; color: var(--purple) !important; }

.site-footer {
  position: relative;
  padding: 34px 18px 42px;
  background: rgba(5, 3, 9, .98);
  color: white;
}
.site-footer::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg, var(--purple), var(--green), var(--violet)); }
.footer-inner { width: min(var(--max), 100%); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand strong { font-size: 18px; }
.footer-brand span, .footer-links { color: rgba(255,255,255,.70); font-size: 14px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px 18px; }
.footer-links a { color: var(--green-2); text-decoration: none; font-weight: 900; }
.footer-links a:hover { text-decoration: underline; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .72s ease, transform .72s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
  .particle-canvas, .quote-canvas { display: none; }
}

@media (max-width: 980px) {
  .nav-links { display: none; }
  .topbar { justify-content: center; width: min(620px, calc(100% - 28px)); }
  .intro-band, .split-panels { grid-template-columns: 1fr; }
  .offer-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-proof { grid-template-columns: 1fr; max-width: 430px; }
}

@media (max-width: 640px) {
  .hero { min-height: auto; padding: 86px 14px 34px; }
  .topbar { top: 12px; padding: 10px 12px; }
  .nav-brand { font-size: 15px; }
  .hero-card { padding: 30px 16px 26px; }
  h1 { font-size: clamp(42px, 15vw, 68px); }
  .tagline { font-size: 22px; }
  .intro { font-size: 16px; }
  .btn { width: 100%; min-height: 56px; padding: 16px 18px; }
  .section { width: min(100% - 24px, var(--max)); padding: 70px 0; }
  .section-heading { margin-bottom: 44px; }
  .section + .section { margin-top: 12px; }
  .intro-band { padding: 32px 20px; margin-top: 24px; }
  .offer-grid, .gallery-grid { grid-template-columns: 1fr; gap: 22px; }
  .offer-card { min-height: auto; padding: 26px 20px; }
  .panel { padding: 30px 20px; }
  .step-list li { grid-template-columns: 46px 1fr; padding: 12px; }
  .step-list span { width: 42px; height: 42px; }
  .photo-frame { min-height: 250px; }
  .healing-section { width: min(100% - 24px, 1120px); }
  .contact-section { padding-bottom: 88px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-brand { flex-direction: column; }
  .footer-links { justify-content: center; }
}


/* Black + Purple + Green brand pass */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background: radial-gradient(circle at 50% -10%, rgba(138,77,255,.16), transparent 35rem);
}
.section-kicker { color: var(--green-2); text-shadow: 0 0 22px rgba(54,212,127,.22); }
.hero-card { border-color: rgba(156,255,198,.24); }
.hero-card::before { border-color: rgba(156,255,198,.11); }
.brand-mark, .mini-mark { border-color: rgba(156,255,198,.28); }
.hero-proof div { border-color: rgba(156,255,198,.18); background: rgba(255,255,255,.075); }
.card-icon { background: linear-gradient(135deg, rgba(54,212,127,.18), rgba(138,77,255,.18)); color: var(--green-2); }
.photo-frame { background: linear-gradient(135deg, #050309, #3b1954 55%, #0f5132); }
.photo-frame::before { background: radial-gradient(circle at 28% 18%, rgba(156,255,198,.40), transparent 12rem), radial-gradient(circle at 80% 78%, rgba(138,77,255,.34), transparent 14rem); }
.healing-section { background:
    radial-gradient(circle at 18% 20%, rgba(54, 212, 127, .22), transparent 23rem),
    radial-gradient(circle at 84% 76%, rgba(138, 77, 255, .24), transparent 24rem),
    linear-gradient(135deg, #050309, #241033 64%, #0f5132);
}
.site-footer::before { background: linear-gradient(90deg, var(--purple), var(--green), var(--violet)); }
.footer-links a { color: var(--green-2); }
.response-note { color: var(--green-2) !important; }
