/* ==========================================================================
   REIKI WITH SHILPA — Global Design System
   Fonts: Gilda Display (display) · Josefin Sans (UI) · Mulish (body)
   Theme: Light — warm ivory, dusty rose, sage, muted plum
   Colors: OKLCH throughout for perceptual uniformity
   ========================================================================== */

/* --------------------------------------------------------------------------
   Google Fonts Import
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Gilda+Display&family=Josefin+Sans:wght@300;400;600&family=Mulish:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

/* --------------------------------------------------------------------------
   Custom Properties — Design Tokens
   -------------------------------------------------------------------------- */
:root {
  /* ---- Color Palette ---- */
  /* Backgrounds */
  --clr-bg:          oklch(97.5% 0.009 47);   /* warm ivory */
  --clr-surface:     oklch(99%   0.005 42);   /* near-white, warm */
  --clr-surface-alt: oklch(93.5% 0.018 47);   /* deep cream */
  --clr-surface-dark:oklch(24%   0.022 32);   /* rich dark brown */

  /* Text */
  --clr-text:        oklch(20%   0.022 32);   /* deep warm brown-black */
  --clr-text-mid:    oklch(40%   0.018 32);   /* medium warm brown */
  --clr-text-muted:  oklch(58%   0.012 32);   /* muted warm */
  --clr-text-invert: oklch(96%   0.008 45);   /* on dark surfaces */

  /* Brand — Dusty Rose (primary) */
  --clr-rose:        oklch(67%   0.088 12);
  --clr-rose-deep:   oklch(44%   0.068 12);
  --clr-rose-pale:   oklch(93%   0.028 12);
  --clr-rose-mid:    oklch(80%   0.055 12);

  /* Brand — Sage */
  --clr-sage:        oklch(57%   0.072 157);
  --clr-sage-pale:   oklch(91%   0.028 157);
  --clr-sage-deep:   oklch(38%   0.058 157);

  /* Brand — Muted Plum */
  --clr-plum:        oklch(40%   0.085 332);
  --clr-plum-pale:   oklch(88%   0.032 332);
  --clr-plum-mid:    oklch(58%   0.065 332);

  /* Brand — Warm Gold */
  --clr-gold:        oklch(70%   0.092 72);
  --clr-gold-pale:   oklch(92%   0.040 72);

  /* Borders */
  --clr-border:      oklch(88%   0.014 47);
  --clr-border-fine: oklch(84%   0.018 47);

  /* ---- Typography ---- */
  --font-display: 'Gilda Display', Georgia, serif;
  --font-ui:      'Josefin Sans', system-ui, sans-serif;
  --font-body:    'Mulish', system-ui, sans-serif;

  /* Fluid type scale */
  --text-xs:   clamp(0.70rem,  0.80vw, 0.75rem);
  --text-sm:   clamp(0.80rem,  0.90vw, 0.875rem);
  --text-base: clamp(0.9375rem,1.05vw, 1.0rem);
  --text-md:   clamp(1.0rem,   1.15vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1.40vw, 1.25rem);
  --text-xl:   clamp(1.25rem,  1.80vw, 1.5rem);
  --text-2xl:  clamp(1.5rem,   2.40vw, 2.0rem);
  --text-3xl:  clamp(2.0rem,   3.20vw, 2.75rem);
  --text-4xl:  clamp(2.5rem,   4.50vw, 4.0rem);
  --text-5xl:  clamp(3.2rem,   6.00vw, 5.5rem);
  --text-hero: clamp(3.8rem,   7.50vw, 7.0rem);

  /* ---- Spacing (4pt scale) ---- */
  --sp-1:  0.25rem;   /* 4px  */
  --sp-2:  0.5rem;    /* 8px  */
  --sp-3:  0.75rem;   /* 12px */
  --sp-4:  1rem;      /* 16px */
  --sp-5:  1.25rem;   /* 20px */
  --sp-6:  1.5rem;    /* 24px */
  --sp-8:  2rem;      /* 32px */
  --sp-10: 2.5rem;    /* 40px */
  --sp-12: 3rem;      /* 48px */
  --sp-16: 4rem;      /* 64px */
  --sp-20: 5rem;      /* 80px */
  --sp-24: 6rem;      /* 96px */
  --sp-32: 8rem;      /* 128px */
  --sp-40: 10rem;     /* 160px */

  /* Section vertical rhythm */
  --section-py: clamp(5rem, 10vw, 9rem);

  /* ---- Motion ---- */
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-expo:  cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast:   0.2s;
  --dur-base:   0.35s;
  --dur-slow:   0.6s;
  --dur-slower: 1.0s;

  /* ---- Layout ---- */
  --container-max: 1280px;
  --container-content: 780px;
  --nav-h: 76px;

  /* ---- Radii ---- */
  --radius-sm:   4px;
  --radius-md:   10px;
  --radius-lg:   20px;
  --radius-full: 9999px;
}

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.72;
  min-height: 100vh;
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

::selection {
  background: var(--clr-rose-pale);
  color: var(--clr-rose-deep);
}

/* --------------------------------------------------------------------------
   Typography Defaults
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

p {
  max-width: 68ch;
  line-height: 1.78;
}

strong { font-weight: 600; }
em     { font-style: italic; }

/* --------------------------------------------------------------------------
   Layout Utilities
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
}

.container--narrow {
  max-width: 900px;
}

.container--content {
  max-width: var(--container-content);
}

.section {
  padding-block: var(--section-py);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-center { text-align: center; }
.text-left   { text-align: left; }

/* ---- Label / Eyebrow ---- */
.eyebrow {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-rose-deep);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

/* ---- Decorative rule ---- */
.rule {
  width: 48px;
  height: 1px;
  background: var(--clr-gold);
  margin-block: var(--sp-6);
}

.rule--center { margin-inline: auto; }

/* --------------------------------------------------------------------------
   Scroll Reveal Animations
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-slower) var(--ease-out-expo),
              transform var(--dur-slower) var(--ease-out-expo);
}

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

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

.reveal--left {
  transform: translateX(-24px);
}
.reveal--left.revealed { transform: translateX(0); }

.reveal--right {
  transform: translateX(24px);
}
.reveal--right.revealed { transform: translateX(0); }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: var(--sp-4) var(--sp-8);
  border-radius: var(--radius-full);
  transition: transform var(--dur-base) var(--ease-out-quart),
              background-color var(--dur-base) var(--ease-out-quart),
              color var(--dur-base) var(--ease-out-quart),
              box-shadow var(--dur-base) var(--ease-out-quart);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--clr-rose-deep);
  color: var(--clr-text-invert);
  box-shadow: 0 4px 24px oklch(44% 0.068 12 / 0.22);
}

.btn--primary:hover {
  background: var(--clr-plum);
  box-shadow: 0 8px 32px oklch(40% 0.085 332 / 0.28);
}

.btn--ghost {
  background: transparent;
  color: var(--clr-rose-deep);
  box-shadow: inset 0 0 0 1px var(--clr-rose-deep);
}

.btn--ghost:hover {
  background: var(--clr-rose-pale);
}

.btn--ghost-invert {
  background: transparent;
  color: var(--clr-text-invert);
  box-shadow: inset 0 0 0 1px oklch(96% 0.008 45 / 0.4);
}

.btn--ghost-invert:hover {
  background: oklch(96% 0.008 45 / 0.12);
  box-shadow: inset 0 0 0 1px oklch(96% 0.008 45 / 0.7);
}

.btn--lg {
  font-size: var(--text-sm);
  padding: var(--sp-5) var(--sp-10);
}

/* ---- Arrow icon ---- */
.btn .arrow {
  display: inline-block;
  transition: transform var(--dur-base) var(--ease-out-quart);
}

.btn:hover .arrow { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--dur-base) var(--ease-out-quart),
              box-shadow var(--dur-base) var(--ease-out-quart),
              backdrop-filter var(--dur-base) var(--ease-out-quart);
}

.nav.scrolled {
  background: oklch(99% 0.005 42 / 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--clr-border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}

.nav__logo-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--clr-text);
  letter-spacing: 0.01em;
}

.nav__logo-sub {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-rose-deep);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.nav__link {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-text-mid);
  position: relative;
  transition: color var(--dur-base) var(--ease-out-quart);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--clr-rose);
  transition: width var(--dur-base) var(--ease-out-quart);
}

.nav__link:hover {
  color: var(--clr-text);
}

.nav__link:hover::after { width: 100%; }

.nav__cta {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-rose-deep);
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--radius-full);
  box-shadow: inset 0 0 0 1px var(--clr-rose-deep);
  transition: background var(--dur-base) var(--ease-out-quart),
              color var(--dur-base) var(--ease-out-quart),
              transform var(--dur-base) var(--ease-out-quart);
}

.nav__cta:hover {
  background: var(--clr-rose-deep);
  color: var(--clr-text-invert);
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--clr-text);
  transition: transform var(--dur-base) var(--ease-out-quart),
              opacity var(--dur-base) var(--ease-out-quart);
  transform-origin: center;
}

.nav__toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  background: var(--clr-surface);
  padding: var(--sp-12) clamp(1.25rem, 5vw, 4rem);
  z-index: 999;
  flex-direction: column;
  gap: var(--sp-8);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-out-quart);
}

.nav__mobile.open {
  opacity: 1;
  pointer-events: all;
}

.nav__mobile-link {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--clr-text);
  transition: color var(--dur-base) var(--ease-out-quart);
}

.nav__mobile-link:hover { color: var(--clr-rose); }

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

.hero__content {
  padding: var(--sp-16) clamp(1.25rem, 5vw, 4rem) var(--sp-16) clamp(1.25rem, 5vw, 4rem);
  max-width: 640px;
  margin-inline-start: auto;
  padding-inline-end: var(--sp-16);
}

.hero__eyebrow {
  margin-bottom: var(--sp-6);
}

.hero__heading {
  font-size: var(--text-hero);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--clr-text);
  margin-bottom: var(--sp-4);
}

.hero__heading em {
  font-style: italic;
  color: var(--clr-rose-deep);
}

.hero__sub {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--clr-text-mid);
  margin-bottom: var(--sp-8);
  font-weight: 400;
}

.hero__body {
  font-size: var(--text-md);
  color: var(--clr-text-mid);
  margin-bottom: var(--sp-10);
  max-width: 52ch;
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.hero__trust {
  margin-top: var(--sp-10);
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  text-transform: uppercase;
}

.hero__trust-dot {
  width: 3px;
  height: 3px;
  border-radius: var(--radius-full);
  background: var(--clr-gold);
  flex-shrink: 0;
}

/* Hero abstract — CSS energy field */
.hero__visual {
  position: relative;
  height: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.hero__orb {
  position: absolute;
  border-radius: var(--radius-full);
  filter: blur(60px);
  will-change: transform, opacity;
}

.hero__orb--1 {
  width: 65vw;
  height: 65vw;
  max-width: 700px;
  max-height: 700px;
  background: oklch(67% 0.088 12 / 0.28);
  top: -10%;
  right: -20%;
  animation: float-1 12s ease-in-out infinite;
}

.hero__orb--2 {
  width: 45vw;
  height: 45vw;
  max-width: 480px;
  max-height: 480px;
  background: oklch(57% 0.072 157 / 0.22);
  bottom: 0%;
  right: 5%;
  animation: float-2 15s ease-in-out infinite;
}

.hero__orb--3 {
  width: 35vw;
  height: 35vw;
  max-width: 380px;
  max-height: 380px;
  background: oklch(88% 0.032 332 / 0.35);
  top: 35%;
  right: 20%;
  animation: float-3 10s ease-in-out infinite;
}

.hero__orb--4 {
  width: 20vw;
  height: 20vw;
  max-width: 220px;
  max-height: 220px;
  background: oklch(70% 0.092 72 / 0.18);
  top: 20%;
  right: 35%;
  animation: float-1 8s ease-in-out infinite reverse;
}

/* Thin decorative circle ring */
.hero__ring {
  position: absolute;
  border-radius: var(--radius-full);
  border: 1px solid oklch(67% 0.088 12 / 0.3);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: breathe 8s ease-in-out infinite;
}

.hero__ring--1 {
  width: 280px;
  height: 280px;
  animation-delay: 0s;
}

.hero__ring--2 {
  width: 420px;
  height: 420px;
  border-color: oklch(57% 0.072 157 / 0.2);
  animation-delay: 1.5s;
}

.hero__ring--3 {
  width: 560px;
  height: 560px;
  border-color: oklch(67% 0.088 12 / 0.12);
  animation-delay: 3s;
}

/* Small dots — sacred geometry accent */
.hero__dots {
  position: absolute;
  bottom: 15%;
  left: 12%;
}

.hero__dots span {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: var(--radius-full);
  background: var(--clr-rose-deep);
  opacity: 0.35;
  margin: 10px 0;
  animation: pulse-dot 4s ease-in-out infinite;
}

.hero__dots span:nth-child(2) { animation-delay: 0.6s; opacity: 0.25; }
.hero__dots span:nth-child(3) { animation-delay: 1.2s; opacity: 0.15; }

/* --------------------------------------------------------------------------
   Intro / Emotional Resonance Section
   -------------------------------------------------------------------------- */
.intro {
  background: var(--clr-surface-alt);
  padding-block: var(--section-py);
  position: relative;
  overflow: hidden;
}

.intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--clr-border-fine);
}

.intro__question {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-style: italic;
  color: var(--clr-text);
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
  line-height: 1.2;
  margin-bottom: var(--sp-16);
}

.intro__feelings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-6);
  margin-bottom: var(--sp-16);
}

.feeling {
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  position: relative;
}

.feeling::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 1px;
  background: var(--clr-gold);
}

.feeling:last-child::after { display: none; }

.feeling__dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--clr-rose-mid);
  margin: 0 auto var(--sp-4);
}

.feeling__text {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--clr-text);
  margin-bottom: var(--sp-2);
}

.feeling__sub {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
  line-height: 1.5;
  max-width: 22ch;
  margin-inline: auto;
}

.intro__body {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
  font-size: var(--text-md);
  color: var(--clr-text-mid);
  line-height: 1.78;
}

/* --------------------------------------------------------------------------
   What is Reiki — Homepage Block
   -------------------------------------------------------------------------- */
.reiki-intro {
  padding-block: var(--section-py);
}

.reiki-intro__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.reiki-intro__heading {
  font-size: var(--text-4xl);
  margin-bottom: var(--sp-6);
}

.reiki-intro__body {
  font-size: var(--text-md);
  color: var(--clr-text-mid);
  margin-bottom: var(--sp-6);
}

.reiki-intro__benefits {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-5);
  background: var(--clr-rose-pale);
  border-radius: var(--radius-md);
}

.benefit-item__num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-style: italic;
  color: var(--clr-rose);
  line-height: 1;
  min-width: 2rem;
  margin-top: 2px;
}

.benefit-item__text {
  font-size: var(--text-sm);
  color: var(--clr-text-mid);
  line-height: 1.6;
}

.benefit-item__title {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-text);
  margin-bottom: var(--sp-1);
}

/* --------------------------------------------------------------------------
   Services Section
   -------------------------------------------------------------------------- */
.services {
  background: var(--clr-surface-alt);
  padding-block: var(--section-py);
}

.services__header {
  text-align: center;
  margin-bottom: var(--sp-16);
}

.services__heading {
  font-size: var(--text-3xl);
  margin-bottom: var(--sp-4);
}

.services__sub {
  font-size: var(--text-md);
  color: var(--clr-text-mid);
  max-width: 54ch;
  margin-inline: auto;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
}

.service-card {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 4vw, 4rem);
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out-quart);
}

.service-card:hover { transform: translateY(-4px); }

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--clr-border-fine);
  transition: background var(--dur-base) var(--ease-out-quart);
}

.service-card:hover::before { background: var(--clr-rose-mid); }

.service-card__num {
  font-family: var(--font-display);
  font-size: clamp(5rem, 10vw, 9rem);
  font-style: italic;
  color: var(--clr-border);
  line-height: 1;
  margin-bottom: var(--sp-4);
  user-select: none;
}

.service-card--alt .service-card__num { color: var(--clr-sage-pale); }

.service-card__title {
  font-size: var(--text-2xl);
  margin-bottom: var(--sp-4);
  color: var(--clr-text);
}

.service-card__body {
  font-size: var(--text-base);
  color: var(--clr-text-mid);
  margin-bottom: var(--sp-8);
  max-width: 50ch;
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-8);
}

.tag {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: var(--clr-rose-pale);
  color: var(--clr-rose-deep);
}

.service-card--alt .tag {
  background: var(--clr-sage-pale);
  color: var(--clr-sage-deep);
}

/* --------------------------------------------------------------------------
   About Section
   -------------------------------------------------------------------------- */
.about {
  padding-block: var(--section-py);
  overflow: hidden;
}

.about__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.about__quote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.9rem);
  font-style: italic;
  color: var(--clr-text);
  line-height: 1.2;
  margin-bottom: var(--sp-8);
  position: relative;
}

.about__quote::before {
  content: '\201C';
  font-size: 6rem;
  color: var(--clr-rose-pale);
  position: absolute;
  top: -2rem;
  left: -1rem;
  line-height: 1;
  font-family: var(--font-display);
  pointer-events: none;
}

.about__quote-attr {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-rose-deep);
}

.about__image-placeholder {
  aspect-ratio: 3 / 4;
  background: var(--clr-surface-alt);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  color: var(--clr-text-muted);
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about__image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center,
    oklch(67% 0.088 12 / 0.12) 0%,
    transparent 70%);
}

.about__bio-eyebrow {
  margin-bottom: var(--sp-6);
}

.about__bio-heading {
  font-size: var(--text-3xl);
  margin-bottom: var(--sp-6);
}

.about__bio-body {
  font-size: var(--text-base);
  color: var(--clr-text-mid);
  margin-bottom: var(--sp-4);
}

.about__credentials {
  margin-top: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.credential {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  color: var(--clr-text-mid);
}

.credential::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: var(--radius-full);
  background: var(--clr-gold);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Process / What to Expect Section
   -------------------------------------------------------------------------- */
.process {
  background: var(--clr-surface-dark);
  padding-block: var(--section-py);
  color: var(--clr-text-invert);
}

.process__header {
  margin-bottom: var(--sp-20);
}

.process__eyebrow {
  color: var(--clr-rose-mid);
}

.process__eyebrow::before { background: var(--clr-rose-mid); }

.process__heading {
  font-size: var(--text-3xl);
  color: var(--clr-text-invert);
  max-width: 500px;
  margin-top: var(--sp-4);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-12);
}

.process-step {
  position: relative;
}

.process-step__num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  font-style: italic;
  color: oklch(96% 0.008 45 / 0.06);
  line-height: 1;
  margin-bottom: var(--sp-3);
  user-select: none;
}

.process-step__rule {
  width: 32px;
  height: 1px;
  background: var(--clr-rose-mid);
  margin-bottom: var(--sp-5);
}

.process-step__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--clr-text-invert);
  margin-bottom: var(--sp-3);
}

.process-step__body {
  font-size: var(--text-sm);
  color: oklch(96% 0.008 45 / 0.65);
  line-height: 1.72;
}

/* --------------------------------------------------------------------------
   Testimonials Section
   -------------------------------------------------------------------------- */
.testimonials {
  padding-block: var(--section-py);
  background: var(--clr-bg);
  overflow: hidden;
}

.testimonials__header {
  text-align: center;
  margin-bottom: var(--sp-16);
}

.testimonials__heading {
  font-size: var(--text-3xl);
  margin-bottom: var(--sp-4);
}

.testimonials__sub {
  font-size: var(--text-md);
  color: var(--clr-text-muted);
  font-style: italic;
  font-family: var(--font-display);
}

.testimonials__track-wrap {
  position: relative;
}

.testimonials__track {
  display: flex;
  gap: var(--sp-6);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-block: var(--sp-4);
  padding-inline: clamp(1.25rem, 5vw, 4rem);
}

.testimonials__track::-webkit-scrollbar { display: none; }

.testimonial-card {
  flex-shrink: 0;
  width: clamp(280px, 40vw, 440px);
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 3vw, 3rem);
  scroll-snap-align: start;
  border: 1px solid var(--clr-border);
  transition: transform var(--dur-base) var(--ease-out-quart),
              box-shadow var(--dur-base) var(--ease-out-quart);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px oklch(20% 0.022 32 / 0.08);
}

.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-style: italic;
  color: var(--clr-text);
  line-height: 1.55;
  margin-bottom: var(--sp-6);
}

.testimonial-card__mark {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--clr-rose-pale);
  line-height: 0.8;
  margin-bottom: var(--sp-4);
  display: block;
}

.testimonial-card__name {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-rose-deep);
}

.testimonials__nav {
  display: flex;
  justify-content: center;
  gap: var(--sp-3);
  margin-top: var(--sp-8);
}

.testimonials__nav button {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--clr-border-fine);
  transition: background var(--dur-base) var(--ease-out-quart),
              transform var(--dur-base) var(--ease-out-quart);
}

.testimonials__nav button.active {
  background: var(--clr-rose);
  transform: scale(1.25);
}

/* --------------------------------------------------------------------------
   Local Area Trust Section
   -------------------------------------------------------------------------- */
.local {
  background: var(--clr-surface-alt);
  padding-block: var(--section-py);
}

.local__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.local__heading {
  font-size: var(--text-3xl);
  margin-bottom: var(--sp-6);
}

.local__body {
  font-size: var(--text-md);
  color: var(--clr-text-mid);
  margin-bottom: var(--sp-8);
}

.local__suburbs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-8);
}

.suburb-chip {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: var(--clr-surface);
  color: var(--clr-text-mid);
  border: 1px solid var(--clr-border);
}

.local__online {
  background: var(--clr-surface);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}

.local__online-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--clr-sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.local__online-title {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-sage-deep);
  margin-bottom: var(--sp-1);
}

.local__online-body {
  font-size: var(--text-sm);
  color: var(--clr-text-mid);
  line-height: 1.6;
}

.local__map-placeholder {
  aspect-ratio: 4 / 3;
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  text-align: center;
  color: var(--clr-text-muted);
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  letter-spacing: 0.08em;
  border: 1px solid var(--clr-border);
  position: relative;
  overflow: hidden;
}

.local__map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center,
    oklch(57% 0.072 157 / 0.08) 0%,
    transparent 70%);
}

.local__map-pin {
  width: 40px;
  height: 40px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--clr-rose);
  position: relative;
  z-index: 1;
}

.local__map-pin::after {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: var(--radius-full);
  background: var(--clr-surface);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* --------------------------------------------------------------------------
   FAQ Section
   -------------------------------------------------------------------------- */
.faq {
  padding-block: var(--section-py);
}

.faq__header {
  text-align: center;
  margin-bottom: var(--sp-16);
}

.faq__heading { font-size: var(--text-3xl); }

.faq__list {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-top: 1px solid var(--clr-border);
}

.faq-item:last-child { border-bottom: 1px solid var(--clr-border); }

.faq-item__btn {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  padding: var(--sp-6) 0;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--clr-text);
  transition: color var(--dur-base) var(--ease-out-quart);
}

.faq-item__btn:hover { color: var(--clr-rose-deep); }

.faq-item__icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform var(--dur-base) var(--ease-out-quart),
              opacity var(--dur-base) var(--ease-out-quart);
}

.faq-item__icon::before { width: 12px; height: 1px; }
.faq-item__icon::after  { width: 1px;  height: 12px; }

.faq-item.open .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-base) var(--ease-out-quart);
}

.faq-item.open .faq-item__answer {
  grid-template-rows: 1fr;
}

.faq-item__answer-inner {
  overflow: hidden;
}

.faq-item__answer-text {
  font-size: var(--text-base);
  color: var(--clr-text-mid);
  line-height: 1.78;
  padding-bottom: var(--sp-6);
  max-width: 68ch;
}

/* --------------------------------------------------------------------------
   Final CTA Section
   -------------------------------------------------------------------------- */
.cta-section {
  background: var(--clr-surface-dark);
  padding-block: var(--section-py);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: var(--radius-full);
  background: radial-gradient(circle,
    oklch(67% 0.088 12 / 0.14) 0%,
    transparent 70%);
  pointer-events: none;
}

.cta-section__eyebrow {
  color: var(--clr-rose-mid);
  margin-bottom: var(--sp-6);
}

.cta-section__eyebrow::before { background: var(--clr-rose-mid); }

.cta-section__heading {
  font-size: var(--text-4xl);
  color: var(--clr-text-invert);
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--sp-4);
}

.cta-section__heading em {
  font-style: italic;
  color: var(--clr-rose-mid);
}

.cta-section__sub {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  color: oklch(96% 0.008 45 / 0.6);
  margin-bottom: var(--sp-12);
  max-width: 54ch;
  margin-inline: auto;
}

.cta-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  background: oklch(15% 0.018 32);
  padding-block: var(--sp-16) var(--sp-8);
  color: oklch(80% 0.012 40);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--sp-12);
  margin-bottom: var(--sp-16);
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--clr-text-invert);
  margin-bottom: var(--sp-2);
}

.footer__brand-sub {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-rose-mid);
  margin-bottom: var(--sp-5);
}

.footer__brand-body {
  font-size: var(--text-sm);
  line-height: 1.68;
  color: oklch(72% 0.010 40);
  max-width: 38ch;
}

.footer__col-title {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: oklch(85% 0.010 42);
  margin-bottom: var(--sp-6);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer__link {
  font-size: var(--text-sm);
  color: oklch(65% 0.010 40);
  transition: color var(--dur-base) var(--ease-out-quart);
}

.footer__link:hover { color: var(--clr-rose-mid); }

.footer__contact-item {
  font-size: var(--text-sm);
  color: oklch(65% 0.010 40);
  margin-bottom: var(--sp-3);
  line-height: 1.5;
}

.footer__bottom {
  padding-top: var(--sp-8);
  border-top: 1px solid oklch(30% 0.018 32);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.footer__copy {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  color: oklch(50% 0.010 38);
}

.footer__legal-links {
  display: flex;
  gap: var(--sp-6);
}

.footer__legal-link {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  color: oklch(50% 0.010 38);
  transition: color var(--dur-base) var(--ease-out-quart);
}

.footer__legal-link:hover { color: oklch(70% 0.010 40); }

/* --------------------------------------------------------------------------
   Page Hero (inner pages)
   -------------------------------------------------------------------------- */
.page-hero {
  padding-top: calc(var(--nav-h) + var(--sp-20));
  padding-bottom: var(--sp-20);
  background: var(--clr-surface-alt);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40%;
  background: radial-gradient(ellipse at right center,
    oklch(67% 0.088 12 / 0.12) 0%,
    transparent 70%);
  pointer-events: none;
}

.page-hero__eyebrow {
  margin-bottom: var(--sp-5);
}

.page-hero__heading {
  font-size: var(--text-4xl);
  max-width: 640px;
  margin-bottom: var(--sp-5);
}

.page-hero__sub {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--clr-text-mid);
  max-width: 56ch;
  margin-bottom: var(--sp-8);
}

/* --------------------------------------------------------------------------
   Prose / Content styles (inner pages)
   -------------------------------------------------------------------------- */
.prose h2 {
  font-size: var(--text-2xl);
  margin-top: var(--sp-12);
  margin-bottom: var(--sp-4);
}

.prose h3 {
  font-size: var(--text-xl);
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-3);
}

.prose p {
  font-size: var(--text-base);
  color: var(--clr-text-mid);
  margin-bottom: var(--sp-4);
}

.prose ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}

.prose ul li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-base);
  color: var(--clr-text-mid);
}

.prose ul li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: var(--radius-full);
  background: var(--clr-rose);
  flex-shrink: 0;
  margin-top: 0.6em;
}

/* Pricing card */
.pricing-card {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 4vw, 4rem);
  border: 1px solid var(--clr-border);
  text-align: center;
  max-width: 480px;
  margin-inline: auto;
}

.pricing-card__price {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  color: var(--clr-text);
  margin-bottom: var(--sp-2);
}

.pricing-card__label {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-8);
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  text-align: left;
  margin-bottom: var(--sp-8);
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: var(--clr-text-mid);
}

.pricing-feature::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--clr-gold);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Keyframe Animations
   -------------------------------------------------------------------------- */
@keyframes float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-3%, 5%) scale(1.04); }
  66%       { transform: translate(4%, -3%) scale(0.97); }
}

@keyframes float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-5%, -4%) scale(1.06); }
}

@keyframes float-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(4%, 5%) scale(0.95); }
  75%       { transform: translate(-3%, 2%) scale(1.03); }
}

@keyframes breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1);   opacity: 1;    }
  50%       { transform: translate(-50%, -50%) scale(1.08); opacity: 0.6; }
}

@keyframes pulse-dot {
  0%, 100% { transform: scaleY(1);   opacity: inherit; }
  50%       { transform: scaleY(1.6); opacity: 0.8; }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__content {
    padding: var(--sp-20) clamp(1.25rem, 5vw, 4rem);
    max-width: none;
    padding-inline-end: clamp(1.25rem, 5vw, 4rem);
  }

  .hero__visual {
    min-height: 400px;
    height: 400px;
  }

  .grid-2 { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; }
  .local__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .reiki-intro__grid { grid-template-columns: 1fr; }

  .about__quote::before { display: none; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__cta   { display: none; }
  .nav__toggle { display: flex; }
  .nav__mobile { display: flex; }

  .hero__heading { font-size: clamp(2.8rem, 10vw, 4.5rem); }

  .intro__feelings { grid-template-columns: 1fr 1fr; }

  .grid-3 { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr 1fr; }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .intro__feelings { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; }
  .cta-section__actions { flex-direction: column; align-items: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero__orb,
  .hero__ring,
  .hero__dots span {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
