/* ==========================================================================
   Divine Wellness — Aromatherapy Bar page (spa-services/aromatherapy-bar/)
   Light blush/mauve theme variant. Custom blending experience: hero, trust,
   personal intro, four-step blend process (incl. optional ZYTO Compass),
   blend-format cards, aroma-style cards, why-the-bar, massage cross-link,
   safety, FAQ, final appointment CTA. Built from tokens.css variables and
   the shared component classes — no raw hex, radii, fonts, or shadows here.
   ========================================================================== */

/* =========================== Hero (light, blush) =========================== */

.aroma-hero {
  background: linear-gradient(160deg, var(--tint-pink) 0%, var(--tint-blue) 48%, var(--cream) 100%);
  padding-top: calc(clamp(40px, 6vw, 72px) + 84px);
}
.aroma-hero__blob-1 {
  top: -120px; left: -140px; width: 520px; height: 520px;
  background: radial-gradient(circle at 40% 40%, rgba(199, 138, 178, 0.34), rgba(199, 138, 178, 0) 70%);
  filter: blur(30px);
  animation-duration: 12s;
}
.aroma-hero__blob-2 {
  bottom: -160px; right: -120px; width: 560px; height: 560px;
  background: radial-gradient(circle at 60% 50%, rgba(100, 183, 198, 0.2), rgba(100, 183, 198, 0) 70%);
  filter: blur(36px);
  animation-duration: 14s;
}
.aroma-hero .breadcrumb { margin-bottom: 22px; }

.aroma-hero__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(36px, 5vw, 64px);
}
.aroma-hero__copy { flex: 1 1 400px; min-width: 300px; max-width: 560px; }
.aroma-hero__copy .eyebrow { margin-bottom: 18px; }
.aroma-hero h1 {
  margin: 0 0 16px 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(38px, 4.6vw, 60px);
  line-height: 1.06;
  letter-spacing: var(--track-display);
  color: var(--ink);
}
.aroma-hero h1 em { font-style: italic; }
.aroma-hero__lead {
  margin: 0 0 18px 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-lead);
  line-height: var(--lh-snug);
  color: var(--coral);
  max-width: 26ch;
  text-wrap: pretty;
}
.aroma-hero__body {
  margin: 0 0 14px 0;
  font-size: var(--fs-body-md);
  line-height: var(--lh-body);
  color: var(--ink-soft);
  max-width: 54ch;
  text-wrap: pretty;
}
.aroma-hero__body--last { margin-bottom: 28px; }
.aroma-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.aroma-hero__media {
  flex: 1 1 380px;
  min-width: 300px;
  max-width: 480px;
  position: relative;
  margin: 0 auto;
}
.aroma-hero__photo {
  position: relative;
  border-radius: var(--r-card-xl);
  overflow: hidden;
  box-shadow: var(--shadow-photo);
  border: 8px solid rgba(255, 255, 255, 0.55);
  transform: rotate(-1deg);
}
.aroma-hero__photo img { display: block; width: 100%; height: auto; }
.aroma-hero__float {
  left: -14px;
  bottom: -18px;
  max-width: 260px;
}
.aroma-hero__float .float-card__value { font-size: var(--fs-small); }

/* =========================== Personal blending intro =========================== */

.intro { background: linear-gradient(175deg, var(--cream) 0%, var(--sand) 55%, var(--tint-pink) 130%); }
.intro__blob {
  top: 8%; right: -160px; width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(199, 138, 178, 0.34), rgba(199, 138, 178, 0) 70%);
  filter: blur(30px);
}
.intro__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(36px, 5vw, 64px);
}
.intro__copy { flex: 1 1 420px; min-width: 300px; max-width: 620px; }
.intro__copy h2 { margin-bottom: 18px; font-size: clamp(30px, 3.4vw, 46px); line-height: 1.12; }
.intro__copy .prose strong { color: var(--ink); }
.intro__quote { margin-top: 26px; max-width: none; }
.intro__media { flex: 1 1 320px; min-width: 280px; max-width: 440px; margin: 0 auto; }
.intro__photo {
  position: relative;
  border-radius: var(--r-card-lg);
  overflow: hidden;
  box-shadow: var(--shadow-photo);
  border: 8px solid rgba(255, 255, 255, 0.5);
  transform: rotate(1deg);
}
.intro__photo img { display: block; width: 100%; height: auto; }
.intro__caption {
  margin: 16px 4px 0 4px;
  font-size: var(--fs-small);
  line-height: 1.6;
  color: var(--mauve-deep);
  font-style: italic;
  font-family: var(--font-serif);
}

/* =========================== Four-step process =========================== */

.process { background: linear-gradient(180deg, var(--tint-pink) 0%, var(--tint-blue) 100%); }
.process__head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 56px) auto;
  text-align: center;
}
.process__head h2 { margin-bottom: 18px; font-size: clamp(30px, 3.6vw, 48px); line-height: 1.12; }
.process__head .prose { margin: 0 auto; max-width: 60ch; }
.process__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  align-items: stretch;
}
.blend-step {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card-md);
  padding: clamp(24px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform var(--hover-slow), box-shadow var(--hover-slow);
}
.blend-step:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-lg); }
.blend-step__num {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 17px;
  font-family: var(--font-serif);
  margin-bottom: 16px;
}
.blend-step__tag {
  margin: 0 0 8px 0;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.13em;
  color: var(--accent);
}
.blend-step h3 {
  margin: 0 0 12px 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(21px, 2.3vw, 25px);
  line-height: 1.2;
  color: var(--ink);
}
.blend-step p {
  margin: 0 0 12px 0;
  font-size: var(--fs-ui);
  line-height: var(--lh-body);
  color: var(--body);
  text-wrap: pretty;
}
.blend-step p:last-child { margin-bottom: 0; }

/* ZYTO Compass note inside step 2 — clearly framed, plain-language limits */
.zyto-note {
  margin-top: 4px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--hairline-mid);
  border-left: 3px solid var(--accent);
  border-radius: var(--r-chip);
  padding: 14px 16px;
}
.zyto-note p {
  margin: 0 0 8px 0;
  font-size: var(--fs-small);
  line-height: 1.65;
  color: var(--ink-soft);
}
.zyto-note p:last-child { margin-bottom: 0; }
.zyto-note strong { color: var(--ink); font-weight: 700; }

.process__cta { margin: clamp(34px, 4vw, 46px) 0 0 0; text-align: center; }

/* =========================== Blend-format cards =========================== */

.formats { background: linear-gradient(180deg, var(--tint-blue) 0%, var(--tint-green) 100%); }
.formats__head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 56px) auto;
  text-align: center;
}
.formats__head h2 { margin-bottom: 18px; font-size: clamp(30px, 3.4vw, 46px); line-height: 1.13; }
.formats__head .prose { margin: 0 auto; max-width: 58ch; }
.formats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  align-items: stretch;
}
.use-card {
  border: 1px solid var(--hairline-soft);
  border-radius: var(--r-card-md);
  padding: clamp(26px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform var(--hover-slow), box-shadow var(--hover-slow);
}
.use-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-lg); }
.use-card__tag {
  margin: 0 0 10px 0;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.13em;
  color: var(--accent);
}
.use-card h3 {
  margin: 0 0 12px 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(21px, 2.3vw, 25px);
  line-height: 1.2;
  color: var(--ink);
}
.use-card p {
  margin: 0;
  font-size: var(--fs-ui);
  line-height: var(--lh-body);
  color: var(--body);
  flex: 1;
  text-wrap: pretty;
}
.formats__note {
  margin: clamp(28px, 4vw, 40px) auto 0 auto;
  max-width: 62ch;
  text-align: center;
  font-size: var(--fs-small);
  line-height: var(--lh-body);
  color: var(--mauve-deep);
  font-style: italic;
  font-family: var(--font-serif);
  text-wrap: pretty;
}

/* =========================== Aroma-style cards =========================== */

.styles { background: linear-gradient(160deg, var(--cream) 0%, var(--tint-pink) 55%, var(--tint-green) 100%); }
.styles__head {
  max-width: 700px;
  margin: 0 auto clamp(38px, 4vw, 52px) auto;
  text-align: center;
}
.styles__head h2 { margin-bottom: 18px; font-size: clamp(30px, 3.4vw, 46px); line-height: 1.13; }
.styles__head .prose { margin: 0 auto; max-width: 58ch; }
.styles__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.aroma-card {
  border: 1px solid var(--hairline-soft);
  border-top: 4px solid var(--accent);
  border-radius: var(--r-card);
  padding: 26px 26px 28px 26px;
  box-shadow: var(--shadow-card-soft);
  transition: transform var(--hover-slow), box-shadow var(--hover-slow);
}
.aroma-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.aroma-card h3 {
  margin: 0 0 10px 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.22;
  color: var(--ink);
}
.aroma-card p {
  margin: 0;
  font-size: var(--fs-body-sm);
  line-height: 1.65;
  color: var(--body);
  text-wrap: pretty;
}
.styles__note {
  margin: clamp(28px, 4vw, 40px) auto 0 auto;
  max-width: 60ch;
  text-align: center;
  font-size: var(--fs-small);
  line-height: var(--lh-body);
  color: var(--sage-deep);
  text-wrap: pretty;
}

/* =========================== Why the Aromatherapy Bar =========================== */

.why-bar { background: linear-gradient(180deg, var(--tint-green) 0%, var(--tint-blue) 100%); }
.why-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: clamp(36px, 5vw, 64px);
}
.why-bar__copy { flex: 1 1 380px; min-width: 300px; max-width: 520px; }
.why-bar__copy h2 { margin-bottom: 18px; font-size: clamp(30px, 3.4vw, 46px); line-height: 1.13; }
.why-bar__copy .prose--last { margin-bottom: 0; }
.why-bar__panel {
  flex: 1 1 360px;
  min-width: 300px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card-md);
  padding: clamp(26px, 3vw, 36px);
  box-shadow: var(--shadow-card);
}
.why-bar__panel-label {
  margin: 0 0 16px 0;
  font-size: var(--fs-eyebrow);
  font-weight: 800;
  letter-spacing: var(--track-label);
  color: var(--mauve-deep);
}
.why-bar__note {
  margin: 20px 0 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-body-md);
  line-height: 1.6;
  color: var(--ink-2);
  text-wrap: pretty;
}

/* =========================== Aromatherapy + Massage cross-link =========================== */

.massagex {
  background: linear-gradient(150deg, var(--ink) 0%, var(--ink-2) 55%, var(--plum) 130%);
  padding: clamp(56px, 7vw, 92px) var(--gutter);
  position: relative;
  overflow: hidden;
  color: var(--on-dark);
}
.massagex__blob {
  top: -140px; right: -100px; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(199, 138, 178, 0.2), rgba(199, 138, 178, 0) 70%);
  filter: blur(30px);
  animation-duration: 14s;
}
.massagex__inner {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 4vw, 56px);
}
.massagex__copy { flex: 1 1 460px; min-width: 300px; }
.massagex__copy h2 {
  margin-bottom: 16px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.14;
  color: var(--cream);
}
.massagex__copy .prose { margin-bottom: 12px; color: var(--on-dark-muted); max-width: 56ch; }
.massagex__copy .prose--last { margin-bottom: 0; }
.massagex__ctas {
  flex: 0 1 300px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* =========================== Safety =========================== */

.safety { background: linear-gradient(175deg, var(--cream) 0%, var(--sand) 60%, var(--tint-green) 100%); }
.safety__blob {
  bottom: -120px; left: -120px; width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(232, 210, 142, 0.22), rgba(232, 210, 142, 0) 70%);
  filter: blur(34px);
}
.safety__inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(32px, 4vw, 56px);
}
.safety__copy { flex: 1 1 360px; min-width: 300px; }
.safety__copy h2 { margin-bottom: 18px; font-size: clamp(28px, 3.2vw, 42px); line-height: 1.14; }
.safety__copy .prose--last { margin-bottom: 0; }
.safety__panel {
  flex: 1 1 360px;
  min-width: 300px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card-md);
  padding: clamp(26px, 3vw, 34px);
  box-shadow: var(--shadow-card);
}
.safety__panel-label {
  margin: 0 0 16px 0;
  font-size: var(--fs-eyebrow);
  font-weight: 800;
  letter-spacing: var(--track-label);
  color: var(--coral);
}
.safety__foot {
  margin: 20px 0 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
  font-size: var(--fs-small);
  line-height: var(--lh-body);
  color: var(--ink-soft);
  font-weight: 600;
  text-wrap: pretty;
}

/* =========================== FAQ =========================== */

.aroma-faq { background: linear-gradient(180deg, var(--tint-green) 0%, var(--cream) 100%); }
.aroma-faq__inner { max-width: 840px; margin: 0 auto; }
.aroma-faq__head { text-align: center; margin-bottom: clamp(34px, 4vw, 48px); }
.aroma-faq__head h2 { margin-bottom: 0; font-size: clamp(30px, 3.4vw, 46px); line-height: 1.13; }
.aroma-faq__list { display: flex; flex-direction: column; gap: 12px; }

/* =========================== Final appointment CTA =========================== */

.aroma-cta { background: var(--cream); }
.aroma-cta .cta-panel { padding: clamp(48px, 6vw, 84px) clamp(28px, 5vw, 80px); }
.aroma-cta__blob-2 {
  bottom: -140px; right: -100px; width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(199, 138, 178, 0.24), rgba(199, 138, 178, 0) 70%);
  filter: blur(30px);
  animation-duration: 16s;
}
.aroma-cta h2 { margin-bottom: 20px; max-width: 18ch; font-size: clamp(30px, 3.8vw, 48px); }
.aroma-cta .prose { max-width: 58ch; margin-bottom: 32px; }
.aroma-cta__location {
  margin: 30px auto 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(220, 238, 244, 0.16);
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}
.aroma-cta__location-name {
  margin: 0 0 2px 0;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--gold);
}
.aroma-cta__location p {
  margin: 0;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--on-dark-muted);
  line-height: 1.55;
}
