/* ============================================================
   Gracias y Rosas — Public Site Stylesheet
   Design: Earthy & warm, modern, premium, 3D-forward
   ============================================================ */

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

:root {
  --teal:        #4AB8BF;
  --teal-dark:   #3A9EA5;
  --teal-light:  #A8DCE0;
  --teal-pale:   #E8F6F7;
  --coral:       #E37263;
  --rose:        #D06D6D;
  --rose-pale:   #F9EDED;
  --text:        #1C1C1C;
  --text-muted:  #6B6B6B;
  --text-light:  #9A9A9A;
  --bg:          #FDFAF6;
  --bg-warm:     #F5EFE6;
  --bg-dark:     #162325;
  --bg-dark2:    #0F1B1D;
  --white:       #FFFFFF;
  --border:      rgba(74, 184, 191, 0.15);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body.gyr {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Typography ─────────────────────────────────────────────── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
}
.body-lg { font-size: 1.125rem; line-height: 1.75; }
.body-sm { font-size: 0.9rem; color: var(--text-muted); }

/* ── Navigation ─────────────────────────────────────────────── */
.gyr-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.gyr-nav.scrolled {
  background: rgba(253, 250, 246, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 65px;
  width: auto;
  transition: filter 0.3s ease;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.22)) drop-shadow(0 2px 10px rgba(0,0,0,0.12));
}

/* Logo on dark-hero pages: invert to white when nav is transparent */
.page-reiki .gyr-nav:not(.scrolled) .nav-logo img {
  filter: brightness(0) invert(1) drop-shadow(0 2px 10px rgba(0,0,0,0.35));
}

/* Once scrolled, drop-shadow not needed (nav has frosted background) */
.gyr-nav.scrolled .nav-logo img {
  filter: none;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--teal);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1.5px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

/* Reiki only — dark hero, make nav links white */
.page-reiki .gyr-nav:not(.scrolled) .nav-links a {
  color: rgba(255,255,255,0.65);
}
.page-reiki .gyr-nav:not(.scrolled) .nav-links a:hover,
.page-reiki .gyr-nav:not(.scrolled) .nav-links a.active {
  color: white;
}
.page-reiki .gyr-nav:not(.scrolled) .nav-links a::after {
  background: var(--teal-light);
}
.nav-cta {
  background: var(--teal) !important;
  color: white !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.02em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--teal-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(74, 184, 191, 0.35) !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: var(--transition);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--text);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--teal); }
.mobile-cta {
  background: var(--teal);
  color: white !important;
  padding: 14px 36px;
  border-radius: 100px;
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--teal);
  color: white;
  box-shadow: 0 4px 20px rgba(74, 184, 191, 0.3);
}
.btn-primary:hover {
  background: var(--teal-dark);
  box-shadow: 0 8px 30px rgba(74, 184, 191, 0.45);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(28, 28, 28, 0.2);
}
.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  box-shadow: none;
}
.btn-ghost {
  background: transparent;
  color: var(--teal);
  padding-left: 0;
  padding-right: 0;
  gap: 10px;
}
.btn-ghost .arrow {
  transition: transform var(--transition);
}
.btn-ghost:hover .arrow { transform: translateX(5px); }
.btn-ghost:hover { transform: none; }
.btn-white {
  background: white;
  color: var(--teal);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.btn-white:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* ── Section base ───────────────────────────────────────────── */
.section {
  padding: clamp(80px, 10vw, 140px) 40px;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  max-width: 680px;
  margin-bottom: 72px;
}
.section-header .eyebrow { margin-bottom: 16px; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  width: 100%;
}
.hero-content { }
.hero-content .eyebrow { margin-bottom: 24px; }
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 7.5vw, 7rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  color: var(--text);
}
.hero-headline em {
  font-style: italic;
  color: var(--teal);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 420px;
  margin-bottom: 48px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-credentials {
  margin-top: 64px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.credential-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 400;
}
.credential-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Holistic Approach — the "Two Worlds" section ───────────── */
.holistic {
  background: var(--bg-dark);
  color: white;
  overflow: hidden;
  position: relative;
}
.holistic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  min-height: 580px;
}
.holistic-card {
  padding: 72px 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: flex-grow var(--transition);
}
.holistic-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition);
}
.holistic-card.clinical::before {
  background: radial-gradient(circle at 30% 70%, rgba(74, 184, 191, 0.15), transparent 60%);
}
.holistic-card.energetic::before {
  background: radial-gradient(circle at 70% 70%, rgba(227, 114, 99, 0.15), transparent 60%);
}
.holistic-card:hover::before { opacity: 1; }

.holistic-card-number {
  font-family: var(--font-display);
  font-size: clamp(6rem, 12vw, 11rem);
  font-weight: 300;
  line-height: 1;
  color: rgba(255,255,255,0.06);
  position: absolute;
  top: 32px; right: 40px;
  user-select: none;
}
.holistic-card-tag {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.clinical .holistic-card-tag { color: var(--teal-light); }
.energetic .holistic-card-tag { color: #f4a88a; }
.holistic-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 20px;
  color: white;
}
.holistic-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 380px;
}
.holistic-divider {
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1) 40%, rgba(255,255,255,0.1) 60%, transparent);
  align-self: stretch;
}
.holistic-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  background: var(--bg-dark);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.holistic-center span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: rgba(255,255,255,0.5);
}

/* ── Services ───────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  perspective: 1200px;
}
.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  border: 1px solid var(--border);
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--teal);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.service-card:hover {
  transform: perspective(1200px) rotateX(-4deg) rotateY(4deg) translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::after { opacity: 1; }
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 28px;
  transition: background var(--transition), transform var(--transition);
}
.service-card:hover .service-icon {
  background: var(--teal);
  transform: scale(1.08);
}
.service-card:hover .service-icon span { filter: brightness(10); }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--text);
}
.service-card p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--teal);
  transition: gap var(--transition);
}
.service-card:hover .service-link { gap: 14px; }

/* ── Specialties tag cloud ──────────────────────────────────── */
.specialties-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}
.specialty-tag {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
  background: white;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.specialty-tag:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--teal-pale);
}

/* ── Philosophy / Quote section ─────────────────────────────── */
.philosophy {
  background: var(--bg-warm);
  text-align: center;
}
.philosophy-quote {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.35;
  color: var(--text);
  max-width: 820px;
  margin: 0 auto 32px;
}
.philosophy-attribution {
  font-size: 0.85rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
}

/* ── About teaser ───────────────────────────────────────────── */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-frame-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 40px;
  text-align: center;
}
.about-frame-placeholder .about-initials {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: white;
}
.about-frame-placeholder p {
  font-size: 0.85rem;
  color: var(--text-light);
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: white;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.about-badge .badge-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--teal);
  line-height: 1;
}
.about-badge .badge-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.about-text .eyebrow { margin-bottom: 20px; }
.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 24px;
}
.about-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-credentials {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-cred-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.about-cred-item .cred-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

/* ── CTA Strip ──────────────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 60%, #5EC8CF 100%);
  color: white;
  text-align: center;
  padding: clamp(80px, 10vw, 120px) 40px;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  top: -200px; right: -100px;
}
.cta-strip::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  bottom: -200px; left: -100px;
}
.cta-strip-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.cta-strip .eyebrow { color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 16px;
}
.cta-strip p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
}

/* ── Footer ─────────────────────────────────────────────────── */
.gyr-footer {
  background: var(--bg-dark2);
  color: rgba(255,255,255,0.6);
  padding: 80px 40px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer-logo { height: 70px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; margin-bottom: 14px; }
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 14px;
}
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.4); }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--teal-light); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact p, .footer-contact a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--teal-light); }
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 6px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.55);
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover {
  background: rgba(74,184,191,0.2);
  color: var(--teal-light);
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* ── Reiki page specifics ───────────────────────────────────── */
.reiki-hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1E2F32 100%);
  color: white;
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.reiki-hero .eyebrow { color: var(--teal-light); }
.reiki-hero h1 { color: white; }
.reiki-hero p { color: rgba(255,255,255,0.65); }

/* ── Chakra figure section ───────────────────────────────────── */
.reiki-chakra-section {
  background: var(--bg);
  padding: 28px 24px 20px;
  text-align: center;
}
.reiki-stones-label-top {
  text-align: center;
  margin-bottom: 0;
}
.reiki-stones-label {
  text-align: center;
  margin-top: 0;
}
.chakra-figure-wrap {
  position: relative;
  display: inline-block;
  max-width: 260px;
  width: 100%;
  margin: 0 auto;
}
/* multiply: white bg in image becomes invisible on cream page */
.chakra-figure-img {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
}
/* particle canvas sits exactly over the image */
.chakra-particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: screen;
}
@media (max-width: 480px) {
  .chakra-figure-wrap { max-width: 280px; }
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.benefit-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 6px;
}
.benefit-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ── About page specifics ───────────────────────────────────── */
.about-hero {
  padding: clamp(120px, 16vw, 200px) 40px clamp(80px, 10vw, 120px);
  text-align: center;
  background: var(--bg);
}
.cred-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cred-card {
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.cred-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.cred-card-icon {
  font-size: 2rem;
  margin-bottom: 20px;
}
.cred-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--text);
}
.cred-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Page hero (inner pages) ────────────────────────────────── */
.page-hero {
  padding: clamp(120px, 16vw, 180px) 40px clamp(60px, 8vw, 100px);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  max-width: 780px;
}
.page-hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
}

/* ── Scroll reveal ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 0; }
  .hero-visual { display: none; }
  .hero-headline { font-size: clamp(3rem, 10vw, 5rem); }

  .holistic-grid { grid-template-columns: 1fr; }
  .holistic-card { min-height: 280px; }
  .holistic-divider { width: 100%; height: 2px; }
  .holistic-center { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card:hover { transform: none; }

  .about-teaser { grid-template-columns: 1fr; gap: 60px; }
  .about-badge { display: none; }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .cred-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 60px 24px; }
  .nav-inner { padding: 0 24px; }
  .hero-inner { padding: 100px 24px 60px; }
  .page-hero { padding: 100px 24px 60px; }
  .cta-strip { padding: 80px 24px; }
  .gyr-footer { padding: 60px 24px 24px; }
  .holistic-card { padding: 48px 32px; }
}

/* ── Inner-page responsive grids ───────────────────────────── */

/* Reiki — "What is it?" 2-col */
.reiki-what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Reiki — Before/During/After 3-col */
.reiki-session-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Counseling — Approach + Modalities 2-col */
.counseling-approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* About — 3-area layout: photo | heading / photo | body */
.about-bio-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  grid-template-rows: auto 1fr;
  column-gap: 80px;
  row-gap: 28px;
  align-items: start;
}
.about-photo-col  { grid-column: 1; grid-row: 1 / 3; }
.about-heading-col { grid-column: 2; grid-row: 1; }
.about-body-col   { grid-column: 2; grid-row: 2; }

@media (max-width: 900px) {
  /* Reiki + Counseling 2-col grids collapse to 1-col */
  .reiki-what-grid,
  .counseling-approach-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Reiki feature card moves above text on mobile */
  .reiki-what-grid > div:last-child { order: -1; }

  /* Tighten feature card padding */
  .reiki-what-grid > div:first-child > div { padding: 40px 32px; }

  /* Before/During/After → single column */
  .reiki-session-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* About bio: photo (small square) beside heading, bio full-width below */
  .about-bio-layout {
    grid-template-columns: 120px 1fr;
    grid-template-rows: auto auto;
    column-gap: 20px;
    row-gap: 28px;
  }
  .about-photo-col  { grid-column: 1; grid-row: 1; }
  .about-heading-col { grid-column: 2; grid-row: 1; align-self: center; }
  .about-body-col   { grid-column: 1 / -1; grid-row: 2; } /* full width */
  .about-photo-col .about-frame { aspect-ratio: 1 / 1 !important; } /* square crop */
}

/* ── Homepage hero — tighter on mobile ─────────────────────── */
/* Mobile dot divider — sits between hero and holistic section  */
.hero-mobile-divider {
  display: none;                /* hidden on desktop */
  width: 100%;
  height: 52px;
  overflow: hidden;
  background: var(--bg);
  position: relative;
}
.hero-mobile-divider canvas {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 900px) {
  .hero { min-height: auto; }
  .hero-canvas { display: none; }          /* Three.js scene off on mobile */
  .hero-mobile-divider { display: block; } /* dot strip on */
  .hero-credentials { margin-top: 40px; }
}
@media (max-width: 600px) {
  .hero-credentials { margin-top: 28px; gap: 20px; }
  .hero-sub { margin-bottom: 36px; }
}
