:root {
  --ink: #14120f;
  --night: #1b1717;
  --charcoal: #27231f;
  --cream: #efe4cc;
  --paper: #fbf3df;
  --gold: #af842f;
  --gold-soft: #e1c16b;
  --olive: #7c854b;
  --moss: #3f5133;
  --fern: #8aa36a;
  --rose: #b66e61;
  --plum: #4f3347;
  --line: rgba(225, 193, 107, 0.24);
  --shadow: 0 24px 70px rgba(10, 8, 7, 0.34);
  --display-font: "Fraunces", Georgia, "Times New Roman", serif;
  --serif-font: "Fraunces", Georgia, "Times New Roman", serif;
  --utility-font: "Fraunces", Georgia, "Times New Roman", serif;
  --body-font: "Fraunces", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  position: relative;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  margin: 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 16% 10%, rgba(175, 132, 47, 0.24), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(79, 51, 71, 0.34), transparent 30%),
    radial-gradient(circle at 55% 78%, rgba(63, 81, 51, 0.38), transparent 34%),
    linear-gradient(135deg, #15120f 0%, #241d18 42%, #101410 100%);
  font-family: var(--serif-font);
  line-height: 1.55;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(225, 193, 107, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(225, 193, 107, 0.08) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: radial-gradient(circle at 50% 20%, black, transparent 72%);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 64px);
  max-width: 100vw;
  overflow: visible;
  background: rgba(20, 18, 15, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 230px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: 0;
  border-radius: 50%;
  background: url("assets/auran-energy-mark.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 72%;
  font-size: 0.74rem;
  letter-spacing: 0;
  box-shadow: 0 0 0 6px rgba(255, 247, 219, 0.42), 0 0 26px rgba(126, 137, 184, 0.2);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--paper);
  font-family: var(--display-font);
  font-size: 0.94rem;
  line-height: 1.05;
}

.brand-amp {
  color: #746db7 !important;
  display: inline;
  font-family: inherit !important;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin: 0;
  position: static;
  text-indent: 0;
  text-transform: none !important;
  transform: none;
  vertical-align: baseline;
  white-space: normal;
}

.brand-amp::before {
  content: none;
}

.nowrap {
  white-space: nowrap;
}

.brand small {
  color: var(--gold);
  font-family: var(--utility-font);
  font-size: 0.72rem;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 22px;
  font-family: var(--utility-font);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  color: var(--cream);
  text-decoration: none;
  transition:
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f8c982, #efadbf 48%, #9fd8cf);
  content: "";
  opacity: 0;
  transform: scaleX(0.55);
  transform-origin: center;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

nav a.is-active,
nav a[aria-current="true"] {
  color: var(--paper);
}

nav a.is-active::after,
nav a[aria-current="true"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.hero,
.section,
.band,
footer {
  width: min(1160px, calc(100% - 36px));
  margin-inline: auto;
}

section[id] {
  scroll-margin-top: 112px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.68fr);
  align-items: center;
  gap: clamp(34px, 6vw, 92px);
  min-height: calc(100vh - 82px);
  padding: 54px 0 42px;
}

.hero-copy h1,
.section-heading h2,
.intro h2,
.in-person-section h2,
.contact h2 {
  margin: 0;
  color: var(--paper);
  font-family: var(--display-font);
  line-height: 1;
  font-weight: 900;
  overflow-wrap: break-word;
}

.hero-copy h1 {
  max-width: 860px;
  font-size: clamp(2.6rem, 5vw, 5.1rem);
}

.hero-copy p {
  max-width: 660px;
  color: rgba(251, 243, 223, 0.78);
  font-size: 1.12rem;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: var(--utility-font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.booking-timing-note {
  max-width: 620px;
  margin: 12px 0 0;
  color: rgba(251, 243, 223, 0.72);
  font-family: var(--utility-font);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1.35;
  text-transform: uppercase;
}

.featured-post .booking-timing-note,
.blog-cta .booking-timing-note,
.path-card .booking-timing-note {
  color: rgba(41, 44, 56, 0.62);
}

.button {
  display: inline-flex;
  appearance: none;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-family: var(--utility-font);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.button.primary {
  color: var(--ink);
  border-color: var(--gold-soft);
  background: var(--gold-soft);
}

.button.is-disabled {
  cursor: default;
  opacity: 0.82;
  pointer-events: none;
}

.button.ghost {
  color: var(--paper);
  border-color: rgba(251, 243, 223, 0.52);
  background: rgba(251, 243, 223, 0.08);
}

.button.secondary {
  color: var(--paper);
  border-color: var(--gold);
  background: rgba(175, 132, 47, 0.24);
}

.hero-altar {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
}

.tarot-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(225, 193, 107, 0.44);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 17%, rgba(225, 193, 107, 0.22), transparent 26%),
    linear-gradient(150deg, rgba(251, 243, 223, 0.1), rgba(251, 243, 223, 0.025)),
    #17130f;
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(251, 243, 223, 0.08);
}

.featured-card {
  width: min(100%, 430px);
  min-height: 540px;
  padding: 34px;
  text-align: center;
}

.portrait-card {
  position: relative;
  overflow: hidden;
  width: min(100%, 420px);
  min-height: 560px;
  margin: 0;
  border: 1px solid rgba(225, 193, 107, 0.38);
  border-radius: 8px;
  background: var(--night);
  box-shadow: var(--shadow);
}

.portrait-card::before {
  position: absolute;
  inset: 12px;
  z-index: 2;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(251, 243, 223, 0.22);
  border-radius: 8px;
}

.portrait-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, transparent 46%, rgba(20, 18, 15, 0.9) 100%),
    radial-gradient(circle at 50% 20%, transparent 42%, rgba(20, 18, 15, 0.26) 100%);
}

.portrait-card img {
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: 50% 34%;
}

.hero-logo-seal {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 3;
  width: 150px;
  height: 150px;
  background: transparent;
}

.hero-logo-seal::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url("assets/auran-energy-mark.svg") center / contain no-repeat;
  filter:
    drop-shadow(0 2px 8px rgba(255, 253, 247, 0.7))
    drop-shadow(0 10px 22px rgba(37, 41, 54, 0.2));
}

.portrait-card figcaption {
  position: absolute;
  right: 26px;
  bottom: 26px;
  left: 26px;
  z-index: 3;
}

.portrait-card figcaption span,
.portrait-card figcaption strong {
  display: block;
}

.portrait-card figcaption span {
  color: var(--gold-soft);
  font-family: var(--utility-font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portrait-card figcaption strong {
  margin-top: 6px;
  color: var(--paper);
  font-family: var(--display-font);
  font-size: 1.22rem;
  line-height: 1.05;
}

.featured-card::before,
.featured-card::after {
  position: absolute;
  inset: 18px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(225, 193, 107, 0.34);
  border-radius: 8px;
}

.featured-card::after {
  inset: 30px;
  border-color: rgba(138, 163, 106, 0.24);
}

.logo-orb {
  position: relative;
  z-index: 1;
  width: 210px;
  height: 210px;
  margin: 34px auto 24px;
  border: 1px solid rgba(225, 193, 107, 0.72);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(0, 0, 0, 0) 58%, rgba(225, 193, 107, 0.18) 59%),
    url("assets/email-signature.jpg");
  background-color: #050505;
  background-position: 1.25% 34%;
  background-repeat: no-repeat;
  background-size: 1060px auto;
  box-shadow:
    0 0 0 12px rgba(175, 132, 47, 0.08),
    0 0 54px rgba(225, 193, 107, 0.24);
}

.card-kicker,
.arcana {
  color: var(--gold-soft);
  font-family: var(--utility-font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-card h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--paper);
  font-family: var(--display-font);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1;
}

.featured-card p {
  position: relative;
  z-index: 1;
  color: rgba(251, 243, 223, 0.72);
}

.card-moons {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}

.card-moons span,
.star {
  display: block;
  border-radius: 50%;
}

.card-moons span {
  width: 14px;
  height: 14px;
  border: 1px solid var(--gold-soft);
}

.card-moons span:nth-child(2) {
  background: var(--gold-soft);
}

.star {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--gold-soft);
  box-shadow: 0 0 18px rgba(225, 193, 107, 0.7);
}

.star-one {
  top: 78px;
  left: 72px;
}

.star-two {
  right: 80px;
  bottom: 104px;
}

.band {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(22px, 5vw, 72px);
  padding: 42px;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(251, 243, 223, 0.1), rgba(138, 163, 106, 0.08)),
    rgba(20, 18, 15, 0.46);
}

.intro h2,
.contact h2 {
  font-size: clamp(1.9rem, 3.5vw, 3.2rem);
}

.band p {
  margin-top: 0;
  color: rgba(251, 243, 223, 0.72);
}

.section {
  padding: 96px 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 34px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: clamp(24px, 5vw, 72px);
  max-width: none;
}

.section-heading h2,
.in-person-section h2 {
  font-size: clamp(2rem, 4.3vw, 4.6rem);
}

.in-person-section h2 {
  font-size: clamp(2rem, 3.5vw, 3.35rem);
  overflow-wrap: normal;
}

.section-heading p {
  color: rgba(251, 243, 223, 0.72);
}

#faq .section-heading h2 {
  max-width: 720px;
  white-space: nowrap;
}

.path-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: clamp(24px, 6vw, 84px);
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 96px 0 42px;
}

.events-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  align-items: end;
  gap: clamp(24px, 6vw, 84px);
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 96px 0 42px;
}

.path-hero h1,
.events-hero h1,
.path-card h2,
.gentle-disclaimer h2 {
  margin: 0;
  color: var(--paper);
  font-family: var(--display-font);
  font-weight: 900;
  line-height: 1;
}

.path-hero h1 {
  max-width: 820px;
  font-size: clamp(2.8rem, 6vw, 6rem);
}

.events-hero h1 {
  max-width: 820px;
  font-size: clamp(2.8rem, 6vw, 6rem);
}

.path-hero p,
.events-hero p,
.gentle-disclaimer p {
  color: rgba(251, 243, 223, 0.76);
  font-size: 1.12rem;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 42px;
}

.path-card {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  padding: 30px;
  border: 1px solid rgba(225, 193, 107, 0.34);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0%, rgba(225, 193, 107, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(251, 243, 223, 0.1), rgba(251, 243, 223, 0.03)),
    rgba(20, 18, 15, 0.78);
  box-shadow: 0 14px 34px rgba(10, 8, 7, 0.18);
}

.path-card::before {
  position: absolute;
  inset: 14px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(251, 243, 223, 0.14);
  border-radius: 8px;
}

.path-card > * {
  position: relative;
  z-index: 1;
}

.path-card h2 {
  margin-top: 16px;
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  line-height: 1.05;
  overflow-wrap: break-word;
}

.path-card p,
.path-card li,
.flow-list span {
  color: rgba(251, 243, 223, 0.72);
}

.path-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 28px;
  padding-left: 20px;
}

.session-flow {
  align-items: start;
}

.flow-list {
  display: grid;
  gap: 14px;
}

.flow-list div {
  padding: 18px;
  border: 1px solid rgba(225, 193, 107, 0.24);
  border-radius: 8px;
  background: rgba(20, 18, 15, 0.42);
}

.flow-list strong,
.flow-list span {
  display: block;
}

.flow-list strong {
  color: var(--paper);
  font-family: var(--serif-font);
  line-height: 1.15;
  font-size: 1.08rem;
}

.gentle-disclaimer {
  max-width: 880px;
}

.gentle-disclaimer h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.event-board {
  padding-top: 42px;
}

.event-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(22px, 5vw, 58px);
  align-items: center;
  min-height: 420px;
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid rgba(225, 193, 107, 0.38);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 24%, rgba(225, 193, 107, 0.2), transparent 28%),
    radial-gradient(circle at 86% 10%, rgba(138, 163, 106, 0.2), transparent 32%),
    linear-gradient(145deg, rgba(251, 243, 223, 0.1), rgba(251, 243, 223, 0.035)),
    rgba(20, 18, 15, 0.78);
  box-shadow: var(--shadow);
}

.event-card::before {
  position: absolute;
  inset: 18px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(251, 243, 223, 0.14);
  border-radius: 8px;
}

.event-card > * {
  position: relative;
  z-index: 1;
}

.event-date {
  display: grid;
  place-items: center;
  min-height: 220px;
  border: 1px solid rgba(225, 193, 107, 0.42);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 34%, rgba(225, 193, 107, 0.28), transparent 44%),
    rgba(20, 18, 15, 0.48);
}

.event-date span,
.event-date strong,
.event-date small {
  display: block;
  line-height: 1;
  text-transform: uppercase;
}

.event-date span,
.event-date small {
  color: var(--gold-soft);
  font-family: var(--utility-font);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.event-date strong {
  color: var(--paper);
  font-family: var(--display-font);
  font-size: clamp(4rem, 10vw, 7rem);
}

.event-copy h3 {
  margin: 0;
  color: var(--paper);
  font-family: var(--display-font);
  font-size: clamp(2rem, 4.5vw, 4.4rem);
  line-height: 1;
  overflow-wrap: break-word;
}

.event-copy p {
  max-width: 720px;
  color: rgba(251, 243, 223, 0.74);
  font-size: 1.08rem;
}

.event-location {
  margin-top: 12px;
  color: var(--gold-soft) !important;
  font-family: var(--utility-font);
  font-size: 0.9rem !important;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.event-tags span {
  padding: 8px 12px;
  border: 1px solid rgba(225, 193, 107, 0.34);
  border-radius: 999px;
  color: rgba(251, 243, 223, 0.82);
  background: rgba(20, 18, 15, 0.38);
  font-family: var(--utility-font);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.event-details {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.event-details div {
  padding: 18px;
  border: 1px solid rgba(225, 193, 107, 0.24);
  border-radius: 8px;
  background: rgba(20, 18, 15, 0.42);
}

.event-details strong,
.event-details span {
  display: block;
}

.event-details strong {
  color: var(--paper);
  font-family: var(--serif-font);
  line-height: 1.15;
  font-size: 1.08rem;
}

.event-details span {
  margin-top: 4px;
  color: rgba(251, 243, 223, 0.7);
}

.private-event {
  grid-template-columns: minmax(320px, 0.78fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: clamp(26px, 4vw, 58px);
  margin-bottom: 58px;
  padding-block: clamp(24px, 3vw, 42px);
}

.private-event h2 {
  max-width: 620px;
}

.private-event-copy > p:not(.eyebrow) {
  max-width: 690px;
}

.private-event .event-details {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.private-event .hero-actions {
  margin-top: 26px;
}

.private-event-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(126, 196, 184, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 252, 0.54);
  box-shadow: 0 20px 48px rgba(83, 91, 123, 0.13);
}

.private-event-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 340px;
  padding: 28px;
  border: 1px solid rgba(225, 193, 107, 0.36);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0%, rgba(225, 193, 107, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(251, 243, 223, 0.11), rgba(251, 243, 223, 0.035)),
    var(--night);
  box-shadow: 0 14px 34px rgba(10, 8, 7, 0.18);
}

.service-card::before {
  display: block;
  width: 108px;
  height: 108px;
  margin: 0 auto 22px;
  content: "";
  background: url("assets/auran-energy-mark.svg") center / contain no-repeat;
  filter: drop-shadow(0 14px 24px rgba(83, 91, 123, 0.12));
}

.service-card h3 {
  margin: 0 0 14px;
  color: var(--paper);
  font-family: var(--serif-font);
  font-size: 1.65rem;
  line-height: 1.08;
}

.service-card p {
  flex: 1;
  color: rgba(251, 243, 223, 0.72);
}

.service-card .availability-note {
  flex: 0 0 auto;
  margin-bottom: 14px !important;
}

.service-meta {
  display: grid;
  gap: 8px;
  margin: 24px 0 26px;
  padding: 16px 0;
  border-block: 1px solid rgba(225, 193, 107, 0.18);
}

.service-meta div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.service-meta dt,
.service-meta dd {
  margin: 0;
  font-family: var(--utility-font);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

.service-meta dt {
  color: rgba(251, 243, 223, 0.48);
  text-transform: uppercase;
}

.service-meta dd {
  color: var(--paper);
  text-align: right;
}

.service-card a:not(.button) {
  color: var(--gold-soft);
  font-family: var(--utility-font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card > .button {
  align-self: flex-start;
  margin-top: auto;
}

.botanical,
.event-botanical {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 82px);
}

.botanical-image {
  min-height: 560px;
  border: 1px solid rgba(225, 193, 107, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.03), rgba(236, 245, 250, 0.2)),
    url("assets/herb-mortar-pestle-experience.jpg") center / cover;
  box-shadow: var(--shadow);
}

.botanical-copy h2,
.about-card h2 {
  margin: 0;
  color: var(--paper);
  font-family: var(--display-font);
  font-size: clamp(2rem, 4.3vw, 4.2rem);
  line-height: 1;
}

.botanical-copy p,
.about-card p {
  color: rgba(251, 243, 223, 0.74);
  font-size: 1.06rem;
}

.ritual-list,
.values-grid,
.policy-grid {
  display: grid;
  gap: 14px;
}

.ritual-list {
  margin-top: 30px;
}

.ritual-list div,
.values-grid div,
.policy-grid article {
  padding: 18px;
  border: 1px solid rgba(225, 193, 107, 0.24);
  border-radius: 8px;
  background: rgba(20, 18, 15, 0.42);
}

.ritual-list strong,
.ritual-list span,
.feature-list strong,
.feature-list span,
.values-grid strong,
.values-grid p {
  display: block;
}

.ritual-list span,
.values-grid p {
  color: rgba(251, 243, 223, 0.68);
}

.ritual-list strong,
.feature-list strong,
.values-grid strong {
  font-family: var(--serif-font);
  line-height: 1.15;
}

.in-person-section {
  display: grid;
  grid-template-areas:
    "copy photo"
    "herb features";
  grid-template-columns: minmax(320px, 0.92fr) minmax(340px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  width: 100%;
  padding: 90px max(18px, calc((100vw - 1160px) / 2));
  color: var(--paper);
  background:
    radial-gradient(circle at 48% 35%, rgba(138, 163, 106, 0.22), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(175, 132, 47, 0.22), transparent 24%),
    linear-gradient(135deg, #15100f 0%, #24301f 54%, #0e130f 100%);
}

.in-person-copy {
  grid-area: copy;
}

.in-person-section h2,
.in-person-section .eyebrow {
  color: var(--paper);
}

.in-person-copy p {
  max-width: 720px;
  color: rgba(251, 247, 236, 0.78);
  font-size: 1.08rem;
}

.session-paths {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.session-paths article {
  padding: 18px;
  border: 1px solid rgba(251, 247, 236, 0.22);
  border-radius: 8px;
  background: rgba(20, 18, 15, 0.38);
}

.session-paths span {
  display: block;
  color: var(--gold-soft);
  font-family: var(--utility-font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.session-paths p {
  margin: 8px 0 0;
}

.in-person-photo {
  grid-area: photo;
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 440px;
  border: 1px solid rgba(225, 193, 107, 0.34);
  border-radius: 8px;
  background: var(--night);
  box-shadow: var(--shadow), 0 0 80px rgba(138, 163, 106, 0.14);
}

.in-person-photo::before {
  position: absolute;
  inset: 14px;
  z-index: 2;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(251, 247, 236, 0.22);
  border-radius: 8px;
}

.in-person-photo::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(20, 18, 15, 0.06), rgba(20, 18, 15, 0.38)),
    radial-gradient(circle at 76% 16%, rgba(225, 193, 107, 0.18), transparent 24%);
}

.in-person-photo img {
  display: block;
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: 54% 50%;
}

.in-person-herb-photo {
  grid-area: herb;
  min-height: 440px;
}

.feature-list {
  grid-area: features;
  display: grid;
  gap: 12px;
  align-self: end;
}

.feature-list-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.feature-list div {
  padding: 18px;
  border: 1px solid rgba(251, 247, 236, 0.24);
  border-radius: 8px;
  background: rgba(20, 18, 15, 0.42);
}

.feature-list-two div {
  min-height: 150px;
  padding: 24px;
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list span {
  color: rgba(251, 247, 236, 0.72);
}

.field-notes {
  display: grid;
  gap: 28px;
  width: 100%;
  padding: 72px max(18px, calc((100vw - 1160px) / 2));
  background:
    radial-gradient(circle at 14% 16%, rgba(159, 216, 207, 0.22), transparent 32%),
    radial-gradient(circle at 84% 12%, rgba(238, 177, 191, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 250, 240, 0.94), rgba(239, 249, 246, 0.9), rgba(239, 234, 250, 0.92));
  box-shadow: inset 0 1px 0 rgba(126, 137, 184, 0.14), inset 0 -1px 0 rgba(126, 137, 184, 0.12);
}

.field-notes-heading {
  display: grid;
  gap: 14px;
  max-width: 820px;
}

.field-notes-heading h2,
.field-notes-heading p {
  margin: 0;
}

.field-notes-heading h2 {
  color: #292c38;
  font-family: var(--display-font);
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1;
}

.field-notes-heading > p:not(.eyebrow) {
  color: rgba(41, 44, 56, 0.74);
  font-size: 1.08rem;
}

.field-notes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.field-note-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(126, 137, 184, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 16% 0%, rgba(161, 218, 208, 0.16), transparent 34%),
    radial-gradient(circle at 84% 12%, rgba(238, 177, 191, 0.13), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 252, 0.88), rgba(236, 245, 250, 0.62));
  box-shadow: 0 18px 44px rgba(83, 91, 123, 0.1);
}

.field-note-card img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.field-note-card:nth-child(1) img {
  object-position: 50% 52%;
}

.field-note-card:nth-child(2) img {
  object-position: 50% 52%;
}

.field-note-card:nth-child(3) img {
  object-position: 32% 48%;
}

.field-note-card figcaption {
  padding: 18px 18px 20px;
  color: rgba(41, 44, 56, 0.74);
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.35;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.58fr);
  align-items: start;
  gap: clamp(20px, 4vw, 42px);
}

.about-side {
  display: grid;
  align-content: start;
  gap: 18px;
}

.about-card {
  padding: clamp(28px, 5vw, 54px);
}

.about-photo-card {
  overflow: hidden;
  align-self: start;
  margin: 0;
  border: 1px solid rgba(126, 196, 184, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 18px 38px rgba(83, 91, 123, 0.12);
}

.about-photo-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

.personal-photo img {
  height: 430px;
  object-fit: cover;
  object-position: 50% 45%;
}

.about-photo-card figcaption {
  padding: 18px 18px 20px;
  color: rgba(38, 42, 56, 0.68);
  font-family: var(--body-font);
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.35;
}

.about-card::before,
.about-card::after {
  position: absolute;
  inset: 18px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(225, 193, 107, 0.24);
  border-radius: 8px;
}

.about-card::after {
  inset: 32px;
  border-color: rgba(138, 163, 106, 0.18);
}

.about-card > * {
  position: relative;
  z-index: 1;
}

.credential-note {
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(126, 196, 184, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 16px 36px rgba(91, 136, 155, 0.1);
}

.credential-note .credential-label {
  display: block;
  margin-bottom: 8px;
  color: #706bad;
  font-family: var(--utility-font);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.credential-note p {
  margin: 0;
}

.values-grid {
  align-self: start;
}

.values-grid strong {
  color: var(--paper);
  font-size: 1.2rem;
}

.holy-fire {
  align-items: start;
}

.holy-fire-copy {
  display: grid;
  gap: 18px;
}

.holy-fire-copy p {
  margin: 0;
  color: rgba(251, 243, 223, 0.74);
}

.holy-fire-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.holy-fire-list span {
  padding: 9px 13px;
  border: 1px solid rgba(225, 193, 107, 0.34);
  border-radius: 999px;
  color: var(--gold-soft);
  font-family: var(--utility-font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.expect-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(225, 193, 107, 0.24);
  border-radius: 8px;
  background: rgba(225, 193, 107, 0.24);
}

.expect-grid article {
  min-height: 260px;
  padding: 28px;
  background:
    radial-gradient(circle at 18% 0%, rgba(225, 193, 107, 0.14), transparent 40%),
    rgba(20, 18, 15, 0.76);
}

.expect-grid h3 {
  margin: 28px 0 12px;
  color: var(--paper);
  font-family: var(--display-font);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.05;
}

.expect-grid p {
  margin: 0;
  color: rgba(251, 243, 223, 0.7);
}

.booking-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
}

.booking-placeholder,
.policy-note {
  border: 1px solid rgba(225, 193, 107, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(251, 243, 223, 0.11), rgba(251, 243, 223, 0.035)),
    rgba(20, 18, 15, 0.72);
}

.booking-placeholder {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 430px;
  padding: 38px;
  text-align: center;
}

.booking-placeholder h3,
.policy-note h3 {
  margin: 10px 0;
  color: var(--paper);
  font-family: var(--display-font);
  font-size: 1.55rem;
  line-height: 1.1;
}

.booking-placeholder p,
.policy-note p {
  max-width: 620px;
  color: rgba(251, 243, 223, 0.72);
}

.moon,
.cal-moon {
  width: 116px;
  height: 116px;
  background: url("assets/auran-energy-mark.svg") center / contain no-repeat;
  box-shadow: none;
  filter: drop-shadow(0 14px 24px rgba(83, 91, 123, 0.12));
}

.cal-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 640px);
  margin: 20px 0 2px;
}

.cal-preview div {
  min-height: 116px;
  padding: 18px;
  border: 1px solid rgba(225, 193, 107, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0%, rgba(225, 193, 107, 0.16), transparent 56%),
    rgba(20, 18, 15, 0.46);
}

.cal-preview span,
.cal-preview strong {
  display: block;
}

.cal-preview span {
  color: var(--gold-soft);
  font-family: var(--utility-font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.cal-preview strong {
  margin-top: 24px;
  color: var(--paper);
  font-family: var(--serif-font);
  font-size: 1.05rem;
}

.booking-choice-grid {
  width: min(100%, 760px);
  margin: 26px 0 6px;
  border-top: 1px solid rgba(225, 193, 107, 0.24);
}

.booking-choice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: stretch;
  padding: 24px 0;
  border-bottom: 1px solid rgba(225, 193, 107, 0.24);
  text-align: left;
}

.booking-choice h4 {
  margin: 0 0 10px;
  color: var(--paper);
  font-family: var(--display-font);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.08;
}

.booking-choice p {
  margin: 0;
  max-width: 560px;
}

.availability-note {
  display: inline-block;
  width: fit-content;
  margin: 0 0 10px !important;
  padding: 5px 9px;
  border: 1px solid rgba(225, 193, 107, 0.34);
  border-radius: 999px;
  color: var(--gold-soft) !important;
  background: rgba(20, 18, 15, 0.46);
  font-family: var(--utility-font);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
}

.availability-note.now {
  border-color: rgba(138, 163, 106, 0.52);
  color: var(--paper) !important;
  background: rgba(63, 81, 51, 0.42);
}

.booking-choice-action {
  display: grid;
  gap: 12px;
  align-content: end;
  justify-items: end;
  min-width: 180px;
}

.booking-price {
  color: var(--gold);
  font-family: var(--utility-font);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}

.booking-status {
  margin: 0;
  font-family: var(--utility-font);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.policy-note {
  padding: 28px;
  align-self: stretch;
}

.policy-note ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: rgba(251, 243, 223, 0.72);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.faq-grid details {
  border: 1px solid rgba(225, 193, 107, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(251, 243, 223, 0.1), rgba(251, 243, 223, 0.03)),
    rgba(20, 18, 15, 0.64);
}

.faq-grid summary {
  cursor: pointer;
  padding: 20px;
  color: var(--paper);
  font-family: var(--serif-font);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.15;
}

.faq-grid p {
  margin: 0;
  padding: 0 20px 20px;
  color: rgba(251, 243, 223, 0.7);
}

.policies {
  align-items: center;
  grid-template-columns: minmax(330px, 0.75fr) minmax(0, 1.25fr);
}

.policy-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.policies h2 {
  max-width: 660px;
  text-wrap: balance;
}

.policy-grid h3 {
  margin: 0 0 8px;
  color: var(--paper);
  font-family: var(--serif-font);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.15;
  overflow-wrap: break-word;
}

.policy-grid p {
  margin: 0;
  color: rgba(251, 243, 223, 0.68);
}

.contact {
  align-items: end;
  margin-bottom: 64px;
}

.stay-connected {
  align-items: center;
  margin-top: 18px;
}

.connection-form {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(126, 196, 184, 0.3);
  border-radius: 8px;
  background:
    radial-gradient(circle at 16% 0%, rgba(161, 218, 208, 0.16), transparent 34%),
    radial-gradient(circle at 84% 12%, rgba(238, 177, 191, 0.13), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 252, 0.82), rgba(236, 245, 250, 0.56));
  box-shadow: 0 18px 44px rgba(83, 91, 123, 0.1);
}

.connection-form label {
  color: #6b679f;
  font-family: var(--utility-font);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.connection-form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.connection-form input {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid rgba(126, 137, 184, 0.22);
  border-radius: 999px;
  color: #292c38;
  background: rgba(255, 255, 252, 0.78);
  font: inherit;
}

.connection-form input:focus {
  outline: 2px solid rgba(126, 196, 184, 0.42);
  outline-offset: 2px;
}

.connection-form input[name="_honey"] {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.connection-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.connection-form p {
  margin: 0;
  color: rgba(41, 44, 56, 0.66);
  font-size: 0.95rem;
}

.connection-form .form-status {
  color: #6b679f;
  font-family: var(--utility-font);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1.35;
  text-transform: uppercase;
}

.connection-form .form-status:empty {
  display: none;
}

.contact-links {
  display: grid;
  gap: 10px;
  font-family: var(--utility-font);
  font-weight: 700;
}

.contact-links a,
.contact-links span {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  color: var(--paper);
  text-decoration: none;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 0 44px;
  color: rgba(251, 243, 223, 0.58);
  font-family: var(--utility-font);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-socials {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.footer-socials a {
  color: inherit;
  text-decoration: none;
}

.footer-socials a:hover {
  color: #706bad;
}

/* Soft rainbow healing palette */
body {
  color: #292c38;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 219, 151, 0.28), transparent 25%),
    radial-gradient(circle at 88% 8%, rgba(188, 205, 244, 0.5), transparent 32%),
    radial-gradient(circle at 16% 52%, rgba(161, 218, 208, 0.36), transparent 30%),
    radial-gradient(circle at 78% 54%, rgba(238, 177, 191, 0.3), transparent 31%),
    radial-gradient(circle at 52% 88%, rgba(191, 184, 229, 0.34), transparent 36%),
    linear-gradient(135deg, #fffaf0 0%, #eef8f4 27%, #f7ecf2 55%, #e9f0ff 100%);
}

body::before {
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(45, 40, 48, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 40, 48, 0.08) 1px, transparent 1px);
}

.hero {
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 48px;
  right: min(7vw, 86px);
  z-index: -1;
  width: clamp(140px, 18vw, 260px);
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(168, 113, 172, 0.14) 0 9%, transparent 10%),
    repeating-conic-gradient(
      from 8deg,
      rgba(247, 187, 124, 0.18) 0deg 7deg,
      rgba(155, 216, 205, 0.16) 7deg 13deg,
      rgba(188, 205, 244, 0) 13deg 18deg
    );
  opacity: 0.48;
  pointer-events: none;
}

.section,
.band,
.path-hero,
.events-hero,
.in-person-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.section::before,
.band::before,
.path-hero::before,
.events-hero::before,
.in-person-section::before {
  position: absolute;
  z-index: 0;
  width: clamp(190px, 24vw, 360px);
  aspect-ratio: 1;
  border-radius: 999px;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(168, 113, 172, 0.08) 0 8%, transparent 9%),
    repeating-conic-gradient(
      from 8deg,
      rgba(247, 187, 124, 0.12) 0deg 7deg,
      rgba(155, 216, 205, 0.11) 7deg 13deg,
      rgba(188, 205, 244, 0) 13deg 18deg
    );
  opacity: 0.42;
}

.section > *,
.band > *,
.path-hero > *,
.events-hero > *,
.in-person-section > * {
  position: relative;
  z-index: 1;
}

.section::before {
  top: clamp(28px, 7vw, 84px);
  right: clamp(-80px, -4vw, -24px);
}

.section:nth-of-type(even)::before {
  right: auto;
  left: clamp(-80px, -4vw, -24px);
}

.section:nth-of-type(3n)::before {
  top: auto;
  right: clamp(16px, 12vw, 180px);
  bottom: clamp(18px, 7vw, 96px);
  width: clamp(140px, 18vw, 260px);
  opacity: 0.3;
}

.section:nth-of-type(4n)::after {
  top: clamp(28px, 6vw, 80px);
  right: auto;
  left: clamp(16px, 12vw, 180px);
}

.band::before,
.events-hero::before,
.path-hero::before {
  top: 50%;
  right: clamp(12px, 8vw, 120px);
  transform: translateY(-50%);
}

.in-person-section::before {
  right: clamp(-70px, -3vw, -20px);
  bottom: clamp(24px, 6vw, 92px);
  opacity: 0.34;
}

.site-header {
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.94), rgba(239, 249, 246, 0.92), rgba(239, 234, 250, 0.94));
  border-bottom-color: rgba(126, 137, 184, 0.2);
  box-shadow: 0 12px 34px rgba(83, 91, 123, 0.09);
}

.brand strong,
nav a,
.hero-copy h1,
.section-heading h2,
.intro h2,
.in-person-section h2,
.contact h2,
.featured-card h2,
.portrait-card figcaption strong,
.path-hero h1,
.events-hero h1,
.path-card h2,
.gentle-disclaimer h2,
.event-copy h3,
.service-card h3,
.botanical-copy h2,
.about-card h2,
.expect-grid h3,
.booking-placeholder h3,
.policy-note h3,
.booking-choice h4,
.faq-grid summary,
.policy-grid h3 {
  color: #292c38;
}

.brand small,
.eyebrow,
.arcana,
.card-kicker,
.portrait-card figcaption span,
.event-date span,
.event-date small,
.event-location,
.event-tags span,
.service-card a:not(.button),
.session-paths span,
.feature-list strong,
.values-grid span,
.holy-fire-list span,
.expect-grid span,
.cal-preview span,
.booking-price {
  color: #6b679f !important;
}

nav a.is-active,
nav a[aria-current="true"] {
  color: #6b679f !important;
}

.hero-copy p,
.band p,
.section-heading p,
.path-hero p,
.events-hero p,
.gentle-disclaimer p,
.path-card p,
.path-card li,
.flow-list span,
.event-copy p,
.event-details span,
.service-card p,
.botanical-copy p,
.about-card p,
.ritual-list span,
.values-grid p,
.in-person-copy p,
.session-paths p,
.feature-list span,
.holy-fire-copy p,
.expect-grid p,
.booking-placeholder p,
.policy-note p,
.policy-note ul,
.booking-status,
.faq-grid p,
.policy-grid p,
footer {
  color: rgba(41, 44, 56, 0.74);
}

.button.primary {
  color: #20252c;
  border-color: rgba(126, 196, 184, 0.5);
  background: linear-gradient(135deg, #f8c982, #efadbf 46%, #9fd8cf 100%);
  box-shadow: 0 14px 30px rgba(91, 136, 155, 0.16);
}

.button.ghost,
.button.secondary {
  color: #292c38;
  border-color: rgba(126, 196, 184, 0.34);
  background: rgba(255, 255, 252, 0.58);
}

.tarot-card,
.band,
.path-card,
.event-card,
.service-card,
.ritual-list div,
.values-grid div,
.flow-list div,
.event-details div,
.booking-placeholder,
.policy-note,
.faq-grid details,
.policy-grid article,
.expect-grid article,
.session-paths article,
.feature-list div {
  border-color: rgba(126, 137, 184, 0.18);
  background:
    radial-gradient(circle at 16% 0%, rgba(161, 218, 208, 0.16), transparent 34%),
    radial-gradient(circle at 84% 12%, rgba(238, 177, 191, 0.13), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 252, 0.82), rgba(236, 245, 250, 0.56));
  box-shadow: 0 18px 44px rgba(83, 91, 123, 0.1);
}

.service-card:nth-child(1),
.path-card:nth-child(1),
.expect-grid article:nth-child(1),
.ritual-list div:nth-child(1),
.values-grid div:nth-child(1) {
  border-color: rgba(126, 196, 184, 0.32);
}

.service-card:nth-child(2),
.path-card:nth-child(2),
.expect-grid article:nth-child(2),
.ritual-list div:nth-child(2),
.values-grid div:nth-child(2) {
  border-color: rgba(238, 177, 191, 0.34);
}

.expect-grid article:nth-child(3),
.service-card:nth-child(3),
.ritual-list div:nth-child(3),
.values-grid div:nth-child(3) {
  border-color: rgba(154, 158, 216, 0.34);
}

.portrait-card,
.in-person-photo {
  border-color: rgba(126, 196, 184, 0.34);
  box-shadow: 0 22px 54px rgba(83, 91, 123, 0.14);
}

.portrait-card::before,
.featured-card::before,
.featured-card::after,
.about-card::before,
.about-card::after,
.in-person-photo::before,
.event-card::before,
.path-card::before {
  border-color: rgba(126, 137, 184, 0.16);
}

.portrait-card::after {
  background:
    linear-gradient(180deg, transparent 44%, rgba(76, 50, 22, 0.58) 100%),
    radial-gradient(circle at 50% 20%, transparent 46%, rgba(76, 50, 22, 0.14) 100%);
}

.portrait-card figcaption strong,
.portrait-card figcaption span {
  text-shadow: 0 1px 14px rgba(20, 18, 15, 0.78);
}

.portrait-card figcaption strong {
  color: #fff8df;
}

.logo-orb,
.brand-mark {
  box-shadow:
    0 0 0 8px rgba(255, 247, 219, 0.5),
    0 0 34px rgba(154, 158, 216, 0.2),
    0 0 54px rgba(126, 196, 184, 0.14);
}

.card-moons span {
  border-color: #8f94d0;
}

.card-moons span:nth-child(2),
.star {
  background: #efadbf;
}

.event-date,
.cal-preview div {
  border-color: rgba(126, 196, 184, 0.26);
  background:
    radial-gradient(circle at 50% 22%, rgba(159, 216, 207, 0.28), transparent 46%),
    rgba(255, 255, 252, 0.5);
}

.event-date strong {
  color: #4d497d;
  text-shadow: 0 1px 0 rgba(255, 255, 252, 0.84);
}

.service-meta {
  border-block-color: rgba(126, 137, 184, 0.2);
}

.service-meta dt {
  color: rgba(41, 44, 56, 0.58);
}

.service-meta dd,
.event-details strong,
.flow-list strong,
.ritual-list strong,
.values-grid strong,
.cal-preview strong {
  color: #292c38;
}

.botanical-image {
  border-color: rgba(238, 177, 191, 0.32);
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.03), rgba(236, 245, 250, 0.18)),
    url("assets/herb-mortar-pestle-experience.jpg") center / cover;
}

.in-person-section {
  color: #292c38;
  background:
    radial-gradient(circle at 17% 16%, rgba(161, 218, 208, 0.28), transparent 28%),
    radial-gradient(circle at 76% 14%, rgba(238, 177, 191, 0.22), transparent 30%),
    radial-gradient(circle at 60% 78%, rgba(188, 205, 244, 0.36), transparent 34%),
    linear-gradient(135deg, #fffaf0 0%, #eef8f4 42%, #ecefff 100%);
}

.in-person-section h2,
.in-person-section .eyebrow {
  color: #292c38;
}

.in-person-photo::after {
  background:
    linear-gradient(180deg, rgba(255, 247, 220, 0.02), rgba(76, 50, 22, 0.2)),
    radial-gradient(circle at 76% 16%, rgba(245, 190, 61, 0.16), transparent 24%);
}

.moon,
.cal-moon {
  background: url("assets/auran-energy-mark.svg") center / contain no-repeat;
  box-shadow: none;
}

.contact-links a,
.contact-links span {
  color: #292c38;
  border-bottom-color: rgba(126, 137, 184, 0.22);
}

.blog-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  align-items: end;
  gap: clamp(24px, 6vw, 84px);
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 96px 0 42px;
}

.blog-hero::before,
.blog-preview::before,
.blog-feature::before {
  position: absolute;
  z-index: 0;
  width: clamp(190px, 24vw, 360px);
  aspect-ratio: 1;
  border-radius: 999px;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(168, 113, 172, 0.08) 0 8%, transparent 9%),
    repeating-conic-gradient(
      from 8deg,
      rgba(247, 187, 124, 0.12) 0deg 7deg,
      rgba(155, 216, 205, 0.11) 7deg 13deg,
      rgba(188, 205, 244, 0) 13deg 18deg
    );
  opacity: 0.34;
}

.section::after,
.band::after,
.path-hero::after,
.events-hero::after,
.blog-hero::after {
  position: absolute;
  z-index: 0;
  width: clamp(92px, 12vw, 168px);
  aspect-ratio: 1;
  border-radius: 999px;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(168, 113, 172, 0.075) 0 7%, transparent 8%),
    repeating-conic-gradient(
      from -12deg,
      rgba(247, 187, 124, 0.105) 0deg 7deg,
      rgba(155, 216, 205, 0.105) 7deg 13deg,
      rgba(188, 205, 244, 0) 13deg 18deg
    );
  opacity: 0.22;
}

.section::after {
  right: clamp(18px, 9vw, 150px);
  bottom: clamp(18px, 9vw, 96px);
}

.section:nth-of-type(even)::after {
  right: auto;
  left: clamp(18px, 10vw, 170px);
  bottom: clamp(20px, 7vw, 82px);
}

.band::after,
.path-hero::after,
.events-hero::after,
.blog-hero::after {
  top: clamp(24px, 8vw, 92px);
  right: clamp(16px, 10vw, 150px);
}

.blog-hero::before {
  top: 50%;
  right: clamp(12px, 8vw, 120px);
  transform: translateY(-50%);
}

.blog-preview::before,
.blog-feature::before {
  top: clamp(28px, 7vw, 84px);
  right: clamp(-80px, -4vw, -24px);
}

.blog-hero > *,
.blog-preview > *,
.blog-feature > * {
  position: relative;
  z-index: 1;
}

.blog-hero h1,
.featured-post h2,
.blog-intention h2,
.blog-card h3,
.post-card h3,
.blog-cta h2 {
  margin: 0;
  color: #292c38;
  font-family: var(--display-font);
  font-weight: 900;
  line-height: 1;
}

.blog-hero h1 {
  max-width: 880px;
  font-size: clamp(2.8rem, 6vw, 6rem);
}

.blog-hero p,
.blog-card p,
.featured-post p,
.blog-intention p,
.post-card p {
  color: rgba(41, 44, 56, 0.74);
}

.blog-hero p {
  font-size: 1.12rem;
}

.blog-card-row,
.post-grid,
.blog-feature {
  display: grid;
  gap: 18px;
}

.blog-card-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.post-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-feature {
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
}

.blog-card,
.post-card,
.featured-post,
.blog-intention {
  border: 1px solid rgba(126, 137, 184, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 16% 0%, rgba(161, 218, 208, 0.16), transparent 34%),
    radial-gradient(circle at 84% 12%, rgba(238, 177, 191, 0.13), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 252, 0.82), rgba(236, 245, 250, 0.56));
  box-shadow: 0 18px 44px rgba(83, 91, 123, 0.1);
}

.blog-card,
.post-card {
  padding: 26px;
}

.featured-post,
.blog-intention {
  padding: clamp(26px, 5vw, 54px);
}

.blog-card span,
.post-card span,
.featured-post span {
  display: block;
  margin-bottom: 16px;
  color: #6b679f;
  font-family: var(--utility-font);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card h3,
.post-card h3 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.featured-post h2,
.blog-intention h2,
.blog-cta h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.featured-post h3 {
  margin: 26px 0 10px;
  color: #292c38;
  font-family: var(--display-font);
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  font-weight: 900;
  line-height: 1;
}

.featured-post blockquote {
  margin: 30px 0;
  padding: 24px 26px;
  border-left: 4px solid #efadbf;
  border-radius: 8px;
  color: #45495a;
  background:
    radial-gradient(circle at 16% 10%, rgba(159, 216, 207, 0.18), transparent 44%),
    rgba(255, 255, 252, 0.64);
  font-family: var(--display-font);
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  font-weight: 800;
  line-height: 1.12;
}

.journal-body-map {
  margin: 34px 0;
  padding: clamp(10px, 2vw, 18px) 0;
}

.journal-body-map-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(210px, 0.86fr) minmax(230px, 0.72fr) minmax(210px, 0.86fr);
  gap: clamp(14px, 2.5vw, 28px);
  align-items: center;
  min-height: 1200px;
}

.journal-body-map-lines {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.journal-body-map-lines line {
  stroke: rgba(183, 145, 54, 0.78);
  stroke-width: 1.5;
  stroke-linecap: round;
}

.journal-body-map-figure {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.journal-body-map-figure img {
  display: block;
  width: min(100%, 300px);
  height: auto;
  filter: drop-shadow(0 18px 32px rgba(83, 91, 123, 0.16));
}

.journal-body-map-column {
  position: relative;
  z-index: 5;
  display: grid;
  gap: 18px;
}

.journal-body-map-column-left {
  align-self: start;
  padding-top: 46px;
}

.journal-body-map-column-right {
  align-self: center;
}

.journal-chakra-card {
  border: 1px solid rgba(126, 137, 184, 0.18);
  border-left: 6px solid var(--card-accent, #b79036);
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(255, 255, 252, 0.92);
  box-shadow: 0 14px 28px rgba(83, 91, 123, 0.1);
}

.journal-chakra-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--card-accent, #6b679f);
  font-family: var(--utility-font);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journal-chakra-card span em {
  font-size: 0.86em;
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
}

.journal-chakra-card h3 {
  margin: 0 0 4px;
  color: #292c38;
  font-family: var(--display-font);
  font-size: clamp(1.04rem, 1.5vw, 1.28rem);
  font-weight: 900;
  line-height: 1.05;
}

.journal-chakra-card p {
  margin: 0;
  color: rgba(69, 73, 90, 0.78);
  font-size: 0.78rem;
  line-height: 1.24;
}

.journal-card-sections {
  display: grid;
  gap: 9px;
  margin-top: 10px;
}

.journal-card-sections h4 {
  margin: 0 0 3px;
  color: rgba(69, 73, 90, 0.78);
  font-family: var(--utility-font);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
}

.journal-chakra-card.crown {
  --card-accent: #8f66ca;
}

.journal-chakra-card.third-eye {
  --card-accent: #576ec0;
}

.journal-chakra-card.throat {
  --card-accent: #16a9bd;
}

.journal-chakra-card.heart {
  --card-accent: #72a85d;
}

.journal-chakra-card.solar {
  --card-accent: #e5a21b;
}

.journal-chakra-card.sacral {
  --card-accent: #e9773f;
}

.journal-chakra-card.root {
  --card-accent: #cc4860;
}

.journal-chakra-card.fascia {
  --card-accent: #aa9670;
}

.journal-body-map figcaption {
  max-width: 680px;
  margin: 14px auto 0;
  color: rgba(41, 44, 56, 0.68);
  font-family: var(--body-font);
  font-size: 0.96rem;
  line-height: 1.45;
  text-align: center;
}

@media (max-width: 880px) {
  .journal-body-map-layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .journal-body-map-lines {
    display: none;
  }

  .journal-body-map-figure {
    order: -1;
  }

  .journal-body-map-figure img {
    width: min(100%, 300px);
  }

  .journal-body-map-column,
  .journal-body-map-column-left,
  .journal-body-map-column-right {
    align-self: stretch;
    padding-top: 0;
  }
}

.journal-earth-photo {
  overflow: hidden;
  margin: 28px 0 0;
  border: 1px solid rgba(126, 196, 184, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 252, 0.68);
  box-shadow: 0 18px 38px rgba(83, 91, 123, 0.12);
}

.journal-earth-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 48%;
}

.journal-earth-photo figcaption {
  padding: 14px 16px 16px;
  color: rgba(41, 44, 56, 0.68);
  font-size: 0.94rem;
  line-height: 1.35;
}

.guide-map-section {
  padding-top: 0;
}

.guide-map {
  max-width: 560px;
  margin: 0 auto;
  padding: clamp(16px, 3vw, 26px);
  border: 1px solid rgba(126, 137, 184, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 14% 6%, rgba(161, 218, 208, 0.14), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(238, 177, 191, 0.12), transparent 36%),
    rgba(255, 255, 252, 0.72);
  box-shadow: 0 18px 44px rgba(83, 91, 123, 0.1);
}

.guide-map img {
  display: block;
  width: min(100%, 480px);
  height: auto;
  max-height: 74vh;
  margin: 0 auto;
  object-fit: contain;
  border-radius: 8px;
}

.guide-map figcaption {
  margin-top: 14px;
  color: #676b78;
  font-family: var(--body-font);
  font-size: 0.98rem;
  line-height: 1.45;
  text-align: center;
}

.featured-post ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}

.featured-post li {
  position: relative;
  padding: 12px 16px 12px 42px;
  border: 1px solid rgba(126, 137, 184, 0.16);
  border-radius: 8px;
  color: rgba(41, 44, 56, 0.78);
  background:
    radial-gradient(circle at 8% 20%, rgba(159, 216, 207, 0.18), transparent 32%),
    rgba(255, 255, 252, 0.54);
}

.featured-post li::before {
  position: absolute;
  top: 13px;
  left: 16px;
  color: #6b679f;
  content: "*";
  font-family: var(--display-font);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
}

.blog-photo-stack {
  display: grid;
  align-content: start;
  gap: 18px;
}

.blog-photo-stack figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(126, 196, 184, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 252, 0.64);
  box-shadow: 0 18px 38px rgba(83, 91, 123, 0.12);
}

.blog-photo-stack img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.blog-photo-stack figcaption {
  padding: 14px 16px 16px;
  color: rgba(41, 44, 56, 0.68);
  font-size: 0.94rem;
  line-height: 1.35;
}

.blog-card p,
.post-card p {
  font-size: 1.02rem;
}

.blog-preview .hero-actions {
  margin-top: 26px;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.download-card {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(126, 137, 184, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 16% 0%, rgba(161, 218, 208, 0.16), transparent 34%),
    radial-gradient(circle at 84% 12%, rgba(238, 177, 191, 0.13), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 252, 0.82), rgba(236, 245, 250, 0.56));
  box-shadow: 0 18px 44px rgba(83, 91, 123, 0.1);
}

.download-card.wide {
  grid-column: 1 / -1;
}

.download-card img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  border: 1px solid rgba(126, 137, 184, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 252, 0.62);
}

.download-card span {
  display: block;
  margin-bottom: 10px;
  color: #6b679f;
  font-family: var(--utility-font);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.download-card h3 {
  margin: 0;
  color: #292c38;
  font-family: var(--display-font);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1;
}

.download-card p {
  color: rgba(41, 44, 56, 0.74);
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-altar {
    justify-content: center;
  }

}

@media (max-width: 860px) {
  .site-header,
  footer {
    align-items: center;
    flex-direction: column;
  }

  .site-header {
    gap: 12px;
    padding: 10px 12px 12px;
  }

  nav {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    padding: 4px 4px 8px;
    font-size: 0.78rem;
    line-height: 1;
    scroll-padding-inline: 8px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  nav::-webkit-scrollbar {
    display: none;
  }

  nav a {
    flex: 0 0 auto;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(126, 137, 184, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 252, 0.46);
    box-shadow: 0 10px 24px rgba(83, 91, 123, 0.08);
    scroll-snap-align: center;
    text-align: center;
    white-space: nowrap;
  }

  nav a::after {
    content: none;
  }

  nav a.is-active,
  nav a[aria-current="true"] {
    border-color: rgba(126, 196, 184, 0.48);
    color: #292c38 !important;
    background: linear-gradient(135deg, rgba(248, 201, 130, 0.72), rgba(239, 173, 191, 0.56) 48%, rgba(159, 216, 207, 0.7));
    box-shadow: 0 12px 30px rgba(83, 91, 123, 0.14);
  }

  section[id] {
    scroll-margin-top: 148px;
  }

  .hero,
  .band,
  .in-person-section,
  .field-notes-grid,
  .booking-shell,
  .split-heading,
  .holy-fire,
  .botanical,
  .event-botanical,
  .blog-hero,
  .blog-feature,
  .blog-card-row,
  .post-grid,
  .download-grid,
  .download-card,
  .about,
  .policy-grid,
  .faq-grid,
  .expect-grid,
  .path-hero,
  .path-grid,
  .events-hero,
  .event-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  .hero-altar {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .featured-card,
  .portrait-card {
    width: min(100%, 440px);
    justify-self: center;
  }

  .portrait-card {
    min-height: auto;
    transform: none;
  }

  .portrait-card img {
    height: 420px;
  }

  .hero-logo-seal {
    width: 112px;
    height: 112px;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.28rem, 10.2vw, 3.45rem);
  }

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

  .path-hero {
    padding-top: 56px;
  }

  .path-card {
    min-height: auto;
  }

  .botanical-image {
    min-height: 420px;
  }

  .values-grid {
    grid-template-rows: auto;
  }

  .band {
    padding: 28px 0;
    background: transparent;
  }

  .private-event {
    gap: 28px;
    margin-bottom: 52px;
  }

  .private-event .event-details {
    grid-template-columns: 1fr;
  }

  .private-event-photo {
    order: -1;
  }

  .private-event-photo img {
    aspect-ratio: 16 / 11;
  }

  .in-person-photo {
    min-height: 320px;
  }

  .in-person-section {
    grid-template-areas:
      "photo"
      "copy"
      "herb"
      "features";
  }

  .in-person-photo img {
    height: 360px;
  }

  .feature-list-two {
    grid-template-columns: 1fr;
  }

  .booking-choice {
    grid-template-columns: 1fr;
  }

  .booking-choice-action {
    justify-items: start;
    min-width: 0;
  }

  .expect-grid article {
    min-height: auto;
  }

  .blog-photo-stack img {
    aspect-ratio: 16 / 10;
  }

  #faq .section-heading h2 {
    white-space: normal;
  }

  .connection-form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  main {
    max-width: 100vw;
    overflow: hidden;
  }

  .site-header {
    max-width: 100vw;
  }

  .hero,
  .section,
  .band,
  footer {
    width: min(calc(100vw - 24px), 1160px);
  }

  .hero-copy,
  .hero-altar,
  .band > *,
  .section-heading > *,
  .split-heading > *,
  .booking-choice > *,
  .contact > *,
  .service-card,
  .field-note-card,
  .about-card,
  .about-side {
    min-width: 0;
  }

  .brand {
    min-width: 0;
    max-width: 100%;
    align-self: center;
  }

  .brand-mark {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
  }

  .brand strong {
    font-size: 0.86rem;
    overflow-wrap: anywhere;
  }

  .brand small {
    font-size: 0.64rem;
    line-height: 1.1;
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .booking-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
    min-height: 54px;
    padding-inline: 18px;
    text-align: center;
  }

  nav {
    display: flex;
    gap: 8px;
    grid-template-columns: none;
    font-size: 0.72rem;
  }

  nav a {
    min-height: 36px;
    padding: 0 12px;
  }

  nav a:last-child:nth-child(odd) {
    grid-column: auto;
    justify-self: auto;
    width: auto;
  }

  section[id] {
    scroll-margin-top: 136px;
  }

  .booking-timing-note {
    font-size: 0.68rem;
    text-align: center;
  }

  .hero-copy h1 {
    font-size: clamp(1.82rem, 8.2vw, 2.22rem);
    line-height: 1.02;
    text-wrap: balance;
  }

  .section-heading h2,
  .intro h2,
  .in-person-section h2,
  .contact h2,
  .blog-hero h1 {
    font-size: clamp(1.72rem, 7.7vw, 2.3rem);
    line-height: 1.02;
    text-wrap: balance;
  }

  .hero-copy p,
  .band p,
  .section-heading p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .portrait-card figcaption strong {
    font-size: 1.05rem;
  }

  .cal-preview {
    grid-template-columns: 1fr;
  }

  .booking-placeholder,
  .policy-note,
  .service-card,
  .field-note-card figcaption,
  .ritual-list div,
  .values-grid div,
  .faq-grid details,
  .expect-grid article,
  .policy-grid article {
    padding: 22px;
  }

  .expect-grid h3 {
    margin-top: 34px;
  }

  .booking-choice {
    gap: 18px;
    padding: 22px 0;
  }

  .faq-grid summary {
    padding: 0;
  }

  .faq-grid p {
    padding: 14px 0 0;
  }

  .featured-card {
    min-height: auto;
    padding: 24px;
  }

  .featured-card h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .logo-orb {
    width: 170px;
    height: 170px;
    background-size: 860px auto;
  }

  .portrait-card img {
    height: 360px;
  }

  .hero-logo-seal {
    top: 18px;
    left: 18px;
    width: 92px;
    height: 92px;
  }

  .botanical-image {
    min-height: 320px;
  }
}
