/* =====================================================================
   Richard Lockie — artist + therapist
   Earthy, spiritual one-pager. Palette: moss, cream, terracotta, clay.
   ===================================================================== */

/* ----- Design tokens ----- */
:root {
  /* Colour */
  --cream: #f7f0e1;
  --cream-2: #fcf7ee;
  --sand: #efe4cc;
  --sand-2: #e7d9bc;
  --moss: #5c6b41;
  --moss-deep: #3c482c;
  --forest-ink: #2b331f;
  --sage: #94a277;
  --terracotta: #bc6a43;
  --terracotta-deep: #a1572f;
  --clay: #d98e5e;
  --ink: #36301f;
  --muted: #695f47;
  --border: #e0d2b4;
  --line: rgba(60, 72, 44, 0.14);

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Nunito Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Radius */
  --r-sm: 12px;
  --r: 20px;
  --r-lg: 30px;
  --r-pill: 999px;

  /* Shadow */
  --shadow-sm: 0 2px 12px rgba(60, 60, 30, 0.06);
  --shadow: 0 18px 50px -26px rgba(59, 71, 43, 0.4);
  --shadow-lg: 0 36px 80px -34px rgba(43, 51, 31, 0.5);

  /* Layout */
  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4.5rem, 10vw, 9rem);
}

/* ----- Reset / base ----- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Subtle film grain over everything for an earthy, organic feel */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, blockquote { font-family: var(--font-display); font-weight: 400; }

::selection { background: var(--clay); color: var(--forest-ink); }

/* ----- Helpers ----- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); position: relative; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--moss-deep);
  color: var(--cream);
  padding: 0.6rem 1rem;
  border-radius: var(--r-sm);
  z-index: 10000;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.eyebrow--light { color: var(--clay); }

.section__title {
  font-size: clamp(2.1rem, 5.2vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--moss-deep);
}

.section__head { max-width: 40rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .eyebrow::before { display: none; }
.section__intro {
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 1.1rem;
}

/* ----- Buttons ----- */
.btn {
  --btn-bg: var(--moss-deep);
  --btn-fg: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.7rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1.5px solid var(--btn-bg);
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--clay); outline-offset: 3px; }

.btn--primary:hover { background: var(--moss); border-color: var(--moss); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--cream);
  border-color: rgba(247, 240, 225, 0.6);
}
.btn--ghost:hover { background: rgba(247, 240, 225, 0.12); border-color: var(--cream); }

.btn--full { width: 100%; padding-block: 1.05rem; }

/* =====================================================================
   HEADER / NAV
   ===================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}
.site-header.is-scrolled {
  background: rgba(247, 240, 225, 0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--container);
  margin-inline: auto;
  padding: 1.1rem var(--gutter);
}

.brand { display: inline-flex; align-items: center; gap: 0.7rem; color: var(--cream); transition: color 0.35s ease; }
.is-scrolled .brand { color: var(--moss-deep); }
.brand__mark { display: grid; place-items: center; color: var(--clay); }
.is-scrolled .brand__mark { color: var(--moss); }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--font-display); font-size: 1.32rem; font-weight: 500; letter-spacing: 0.01em; }
.brand__role { font-size: 0.66rem; letter-spacing: 0.28em; text-transform: uppercase; opacity: 0.8; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2.1rem;
  list-style: none;
  padding: 0;
}
.nav__menu a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--cream);
  transition: color 0.3s ease, opacity 0.3s ease;
}
.is-scrolled .nav__menu a { color: var(--ink); }
.nav__menu a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1.5px;
  background: var(--clay);
  transition: width 0.3s ease;
}
.nav__menu a:not(.nav__cta):hover::after { width: 100%; }

.nav__cta {
  padding: 0.6rem 1.25rem;
  border: 1.5px solid rgba(247, 240, 225, 0.55);
  border-radius: var(--r-pill);
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.nav__cta:hover { background: var(--clay); border-color: var(--clay); color: var(--forest-ink) !important; }
.is-scrolled .nav__cta { border-color: var(--moss); }
.is-scrolled .nav__cta:hover { background: var(--moss-deep); border-color: var(--moss-deep); color: var(--cream) !important; }

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
}
.nav__toggle-bar {
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}
.is-scrolled .nav__toggle-bar { background: var(--moss-deep); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar { background: var(--moss-deep); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: 8rem 5rem;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after { /* fallback tint if image missing */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background: linear-gradient(135deg, var(--moss) 0%, var(--moss-deep) 60%, var(--forest-ink) 100%);
}
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(43, 51, 31, 0.46) 0%, rgba(43, 51, 31, 0.18) 35%, rgba(43, 51, 31, 0.55) 100%),
    radial-gradient(120% 80% at 20% 30%, transparent 40%, rgba(43, 51, 31, 0.35) 100%);
}

.hero__inner { position: relative; max-width: 44rem; }
.hero__title {
  color: var(--cream);
  font-size: clamp(3rem, 9vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 1.6rem;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.25);
}
.hero__lead {
  color: rgba(247, 240, 225, 0.92);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 34rem;
  margin-bottom: 2.4rem;
}
.hero__lead em { font-family: var(--font-display); font-style: italic; color: var(--clay); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(247, 240, 225, 0.8);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.hero__scroll svg { animation: bob 2.4s ease-in-out infinite; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* =====================================================================
   ABOUT
   ===================================================================== */
.about { background: var(--cream); }
.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.about__media { position: relative; }
.about__media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 160px 160px var(--r-lg) var(--r-lg); /* organic arch */
  box-shadow: var(--shadow-lg);
  background: var(--sand);
}
.about__media-glow {
  position: absolute;
  inset: auto -8% -8% -8%;
  height: 60%;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(217, 142, 94, 0.35), transparent 70%);
  z-index: -1;
  filter: blur(10px);
}

.about__text p + p { margin-top: 1.1rem; }
.about__text { color: var(--ink); font-size: 1.1rem; }
.about__sign {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.9rem;
  color: var(--terracotta);
  margin-top: 1.4rem;
}

.pillars {
  list-style: none;
  padding: 0;
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.pillar {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.3rem 1.1rem;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.pillar__icon { color: var(--moss); width: 30px; height: 30px; }
.pillar__icon svg { width: 100%; height: 100%; }
.pillar__label { font-family: var(--font-display); font-size: 1.15rem; color: var(--moss-deep); }
.pillar__desc { font-size: 0.9rem; color: var(--muted); line-height: 1.5; }

/* =====================================================================
   SERVICES
   ===================================================================== */
.services { background: linear-gradient(180deg, var(--cream) 0%, var(--sand) 100%); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 3vw, 2.2rem);
}
.service {
  display: flex;
  flex-direction: column;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.4s ease;
}
.service:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.service__media { overflow: hidden; aspect-ratio: 4 / 3; background: var(--sand-2); }
.service__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.service:hover .service__media img { transform: scale(1.06); }

.service__body { padding: 1.6rem 1.7rem 1.9rem; display: flex; flex-direction: column; flex: 1; }
.service__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.6rem;
}
.service__title { font-size: 1.5rem; color: var(--moss-deep); line-height: 1.15; margin-bottom: 0.8rem; }
.service__desc { font-size: 0.98rem; color: var(--ink); margin-bottom: 1.3rem; }
.service__tag {
  margin-top: auto;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--moss);
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

/* =====================================================================
   QUOTE BAND
   ===================================================================== */
.quote {
  background: var(--moss-deep);
  color: var(--cream);
  padding-block: clamp(4rem, 8vw, 7rem);
  position: relative;
  overflow: hidden;
}
.quote::before,
.quote::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.5;
}
.quote::before { width: 320px; height: 320px; top: -120px; right: -80px; background: radial-gradient(closest-side, rgba(217, 142, 94, 0.45), transparent); }
.quote::after { width: 360px; height: 360px; bottom: -160px; left: -100px; background: radial-gradient(closest-side, rgba(148, 162, 119, 0.4), transparent); }
.quote__inner { position: relative; max-width: 50rem; margin-inline: auto; text-align: center; }
.quote__leaf { color: var(--clay); margin-bottom: 1.5rem; }
.quote__text {
  font-size: clamp(1.6rem, 4vw, 2.7rem);
  font-style: italic;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.quote__cite {
  margin-top: 1.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
}

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.testimonials { background: var(--sand); }
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.4rem, 3vw, 2rem);
  max-width: 52rem;
  margin-inline: auto;
}
.testimonial {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem 1.9rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial__stars { display: flex; gap: 0.25rem; color: var(--clay); }
.testimonial__stars svg { width: 18px; height: 18px; }
.testimonial blockquote p { font-size: 1.05rem; color: var(--ink); line-height: 1.6; }
.testimonial figcaption {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--terracotta);
  margin-top: auto;
}
.testimonials__invite {
  text-align: center;
  margin-top: clamp(2rem, 4vw, 3rem);
  font-size: 1.1rem;
  color: var(--muted);
}
.testimonials__invite a {
  color: var(--moss-deep);
  font-weight: 700;
  border-bottom: 2px solid var(--clay);
  padding-bottom: 2px;
  transition: color 0.25s ease;
}
.testimonials__invite a:hover { color: var(--terracotta); }

/* =====================================================================
   CONTACT
   ===================================================================== */
.contact { background: var(--cream); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.contact__text { color: var(--muted); font-size: 1.12rem; margin-top: 1.25rem; max-width: 26rem; }

.contact__details { list-style: none; padding: 0; margin-top: 2.2rem; display: grid; gap: 1.1rem; }
.contact__details li { display: flex; align-items: center; gap: 0.9rem; font-size: 1rem; }
.contact__ico {
  flex: none;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--r-pill);
  background: var(--sand);
  color: var(--moss);
}
.contact__ico svg { width: 20px; height: 20px; }
.contact__details a { border-bottom: 1px solid transparent; transition: border-color 0.25s ease, color 0.25s ease; }
.contact__details a:hover { color: var(--terracotta); border-color: var(--clay); }

/* Form */
.contact__form {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1.15rem;
}
.field { display: grid; gap: 0.45rem; }
.field label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--moss-deep);
}
.req { color: var(--terracotta); }
.field__opt { font-weight: 400; color: var(--muted); letter-spacing: 0; text-transform: none; }
.field input,
.field textarea,
.field select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.85rem 1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder,
.field textarea::placeholder { color: #a99e84; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--moss);
  background: var(--white, #fff);
  box-shadow: 0 0 0 4px rgba(148, 162, 119, 0.25);
}
.field.has-error input,
.field.has-error textarea { border-color: #b5482f; box-shadow: 0 0 0 4px rgba(181, 72, 47, 0.14); }
.field__error { color: #9a3c25; font-size: 0.82rem; font-weight: 600; min-height: 0; }

.select-wrap { position: relative; }
.select-wrap select { appearance: none; cursor: pointer; padding-right: 2.6rem; }
.select-wrap__chevron { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); color: var(--moss); pointer-events: none; }

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.5;
  cursor: pointer;
}
.checkbox input {
  flex: none;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  accent-color: var(--moss-deep);
  cursor: pointer;
}

.form__status { font-size: 0.95rem; font-weight: 600; min-height: 1.2em; }
.form__status.is-ok { color: var(--moss); }
.form__status.is-bad { color: #9a3c25; }

.contact__form.is-sent {
  text-align: center;
  place-items: center;
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer {
  background: var(--forest-ink);
  color: var(--cream);
  padding-block: 3rem;
}
.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.site-footer__brand { display: flex; flex-direction: column; line-height: 1.1; }
.site-footer__brand .brand__name { font-size: 1.4rem; }
.site-footer__brand .brand__role { color: var(--clay); }
.site-footer__nav { display: flex; flex-wrap: wrap; gap: 1.6rem; }
.site-footer__nav a { font-size: 0.92rem; opacity: 0.85; transition: opacity 0.25s ease, color 0.25s ease; }
.site-footer__nav a:hover { opacity: 1; color: var(--clay); }
.site-footer__note { font-size: 0.82rem; letter-spacing: 0.06em; opacity: 0.7; }

/* =====================================================================
   PRICING
   ===================================================================== */
.pricing { background: var(--cream); }
.pricing__panel {
  max-width: 720px;
  margin-inline: auto;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  padding: clamp(1.6rem, 4vw, 3rem);
}
.price-list { list-style: none; padding: 0; margin: 0; }
.price { padding: 1.3rem 0; border-bottom: 1px solid var(--line); }
.price:first-child { padding-top: 0; }
.price:last-child { border-bottom: none; padding-bottom: 0; }
.price__top { display: flex; align-items: flex-end; }
.price__name {
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 2.4vw, 1.45rem);
  line-height: 1.1;
  color: var(--moss-deep);
}
.price__dots {
  flex: 1 1 auto;
  height: 0;
  min-width: 1.5rem;
  margin: 0 0.65rem 0.4rem;
  border-bottom: 2px dotted var(--border);
}
.price__amount {
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 2.4vw, 1.5rem);
  line-height: 1.1;
  color: var(--terracotta);
  white-space: nowrap;
}
.price__meta { margin-top: 0.4rem; color: var(--muted); font-size: 0.92rem; }
.price--free .price__amount { color: var(--moss); font-style: italic; }

.pricing__foot {
  margin-top: 1.9rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  align-items: flex-start;
}
.pricing__note { color: var(--muted); font-size: 0.95rem; }
@media (min-width: 640px) {
  .pricing__foot { flex-direction: row; align-items: center; justify-content: space-between; gap: 2rem; }
  .pricing__note { max-width: 34rem; }
  .pricing__foot .btn { flex: none; }
}

.hp-field { display: none; }

/* =====================================================================
   OCEAN SOUND TOGGLE
   ===================================================================== */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.sound-toggle {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: max(clamp(1rem, 3vw, 1.75rem), env(safe-area-inset-bottom));
  z-index: 90;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--cream);
  background: var(--moss-deep);
  border: 1.5px solid rgba(247, 240, 225, 0.28);
  border-radius: var(--r-pill);
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.sound-toggle:hover { transform: translateY(-3px); background: var(--moss); box-shadow: var(--shadow-lg); }
.sound-toggle:focus-visible { outline: 3px solid var(--clay); outline-offset: 3px; }
.sound-toggle:active { transform: translateY(-1px); }
.sound-toggle__icon { width: 24px; height: 24px; position: relative; z-index: 1; }

.sound-toggle .wave { opacity: 0; transition: opacity 0.3s ease; }
.sound-toggle .slash { opacity: 1; transition: opacity 0.3s ease; color: var(--clay); stroke: var(--clay); }
.sound-toggle.is-playing .slash { opacity: 0; }
.sound-toggle.is-playing .wave { opacity: 1; }
.sound-toggle.is-playing .wave-1 { animation: soundwave 1.7s ease-in-out infinite; }
.sound-toggle.is-playing .wave-2 { animation: soundwave 1.7s ease-in-out 0.25s infinite; }
@keyframes soundwave { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

/* gentle pulsing ring while playing */
.sound-toggle::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: inherit;
  border: 1.5px solid var(--clay);
  opacity: 0;
  pointer-events: none;
}
.sound-toggle.is-playing::after { animation: soundpulse 2.6s ease-out infinite; }
@keyframes soundpulse {
  0% { opacity: 0.55; transform: scale(0.82); }
  100% { opacity: 0; transform: scale(1.3); }
}

body.menu-open .sound-toggle { opacity: 0; pointer-events: none; }

/* =====================================================================
   REVEAL ANIMATIONS
   ===================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* stagger children inside grids */
.services__grid .service:nth-child(2) { transition-delay: 0.08s; }
.services__grid .service:nth-child(3) { transition-delay: 0.16s; }
.services__grid .service:nth-child(5) { transition-delay: 0.08s; }
.services__grid .service:nth-child(6) { transition-delay: 0.16s; }
.testimonials__grid .testimonial:nth-child(2) { transition-delay: 0.1s; }
.testimonials__grid .testimonial:nth-child(3) { transition-delay: 0.2s; }
.pillars .pillar:nth-child(2) { transition-delay: 0.08s; }
.pillars .pillar:nth-child(3) { transition-delay: 0.16s; }

/* =====================================================================
   SPIRITUAL HAWAIIAN LOMI LOMI (feature)
   ===================================================================== */
.lomi { background: var(--sand); }
.lomi__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.lomi__media { position: relative; margin: 0; }
.lomi__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 160px 160px var(--r-lg) var(--r-lg); /* organic arch */
  box-shadow: var(--shadow-lg);
  background: var(--sand-2);
}
.lomi__media-glow {
  position: absolute;
  inset: auto -8% -8% -8%;
  height: 60%;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(217, 142, 94, 0.35), transparent 70%);
  z-index: -1;
  filter: blur(10px);
}
.lomi__body p { color: var(--ink); font-size: 1.08rem; }
.lomi__body p + p { margin-top: 1.1rem; }
.lomi__body em { color: var(--terracotta-deep); font-style: italic; }

.lomi__panels {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.4rem, 3vw, 2rem);
  align-items: stretch;
}
.lomi__panel {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
  box-shadow: var(--shadow-sm);
}
.lomi__panel--prep { background: var(--moss-deep); color: var(--cream); border-color: transparent; }
.lomi__panel-title { font-size: 1.4rem; color: var(--moss-deep); margin-bottom: 1.2rem; }
.lomi__panel--prep .lomi__panel-title { color: var(--cream); }
.lomi__flow,
.lomi__prep { list-style: none; padding: 0; display: grid; gap: 0.7rem; }
.lomi__flow li,
.lomi__prep li { position: relative; padding-left: 1.6rem; font-size: 0.99rem; line-height: 1.5; }
.lomi__flow li::before {
  content: "";
  position: absolute; left: 0; top: 0.55em;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--clay);
}
.lomi__prep li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--clay); font-weight: 700; }
.lomi__prep-intro { color: rgba(247, 240, 225, 0.82); margin-bottom: 1rem; font-size: 0.96rem; }
.lomi__price { margin: 1.5rem 0 1.3rem; padding-top: 1.3rem; border-top: 1px solid var(--line); }
.lomi__price-amount { display: block; font-family: var(--font-display); font-size: 1.7rem; color: var(--terracotta); }
.lomi__price-note { display: block; color: var(--muted); font-size: 0.9rem; margin-top: 0.3rem; }
.lomi__panel .btn { width: 100%; }
.lomi__mahalo { margin-top: 1.1rem; font-size: 0.92rem; color: var(--muted); text-align: center; }
.lomi__mahalo em { font-family: var(--font-display); font-style: italic; color: var(--terracotta); }
.lomi__lineage {
  max-width: 46rem;
  margin: clamp(2.2rem, 4vw, 3rem) auto 0;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--moss-deep);
}

/* "Coming soon" service */
.service--soon .service__media { position: relative; }
.service__badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  background: rgba(43, 51, 31, 0.82);
  color: var(--cream);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: var(--r-pill);
  backdrop-filter: blur(4px);
}
.price--soon .price__amount { color: var(--sage); font-style: italic; font-size: 1.05rem; }

/* Dark-ghost button (for light backgrounds) */
.btn--ghost-dark { --btn-bg: transparent; --btn-fg: var(--moss-deep); border-color: rgba(60, 72, 44, 0.35); }
.btn--ghost-dark:hover { background: rgba(60, 72, 44, 0.06); border-color: var(--moss-deep); }
.pricing__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* =====================================================================
   ACKNOWLEDGEMENT OF COUNTRY
   ===================================================================== */
.acknowledge {
  background: var(--forest-ink);
  color: var(--cream);
  padding-block: clamp(4rem, 8vw, 7rem);
  position: relative;
  overflow: hidden;
}
.acknowledge::before {
  content: "";
  position: absolute;
  width: 440px; height: 440px;
  bottom: -190px; right: -130px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(92, 107, 65, 0.45), transparent);
  filter: blur(10px);
  opacity: 0.7;
}
.acknowledge__inner { position: relative; max-width: 50rem; margin-inline: auto; text-align: center; }
.acknowledge__inner .eyebrow::before { display: none; }
.acknowledge__title { font-size: clamp(1.8rem, 4vw, 2.7rem); color: var(--cream); margin-bottom: 1.8rem; }
.acknowledge__text p { color: rgba(247, 240, 225, 0.82); font-size: 1.05rem; line-height: 1.75; }
.acknowledge__text p + p { margin-top: 1.1rem; }
.acknowledge__welcome {
  margin-top: 1.7rem !important;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--clay) !important;
}

/* Feature/acknowledge responsive */
@media (max-width: 940px) {
  .lomi__grid { grid-template-columns: 1fr; }
  .lomi__media { max-width: 24rem; margin-inline: auto; }
}
@media (max-width: 760px) {
  .lomi__panels { grid-template-columns: 1fr; }
  .pricing__actions { width: 100%; }
  .pricing__actions .btn { width: 100%; }
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 940px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 26rem; margin-inline: auto; }
  .about__media img { aspect-ratio: 4 / 5; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; max-width: 38rem; margin-inline: auto; }
  .contact__grid { grid-template-columns: 1fr; }
}

/* Nav collapses to a drawer earlier now there are more links */
@media (max-width: 900px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82vw, 340px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.8rem;
    padding: 4rem 2.2rem;
    background: var(--cream-2);
    box-shadow: -20px 0 60px -20px rgba(43, 51, 31, 0.4);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  }
  .nav__menu.is-open { transform: translateX(0); }
  .nav__menu a { color: var(--ink) !important; font-size: 1.15rem; }
  .nav__menu a::after { display: none; }
  .nav__cta { border-color: var(--moss) !important; }
  body.menu-open { overflow: hidden; }
}

@media (max-width: 760px) {
  .services__grid { grid-template-columns: 1fr; max-width: 30rem; margin-inline: auto; }
  .pillars { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
}

@media (max-width: 420px) {
  .brand__name { font-size: 1.15rem; }
  .service__body { padding: 1.4rem 1.4rem 1.6rem; }
}

/* =====================================================================
   REDUCED MOTION
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
