@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url("../fonts/CormorantGaramond-Latin.woff2") format("woff2");
}

:root {
  --cream: #fbf7f1;
  --ivory: #fffdf9;
  --rose: #c98f9e;
  --rose-soft: #f5e6e9;
  --gold: #b88d42;
  --gold-deep: #80622e;
  --gold-light: #e4c987;
  --sage: #7f9170;
  --sage-soft: #edf2e9;
  --violet: #8573a2;
  --violet-soft: #eee9f3;
  --plum: #684659;
  --burgundy: #6a3449;
  --ink: #302824;
  --muted: #6d625d;
  --line: rgba(104, 70, 89, .14);
  --shadow: 0 24px 64px rgba(62, 45, 53, .12), 0 4px 14px rgba(62, 45, 53, .05);
  --shadow-soft: 0 14px 38px rgba(62, 45, 53, .075), 0 2px 8px rgba(62, 45, 53, .035);
  --radius: 12px;
  --max: 1200px;
  --space: clamp(4.5rem, 8vw, 7.5rem);
  --font-copy: 1.08rem;
  --font-heading: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(130deg, rgba(255, 250, 243, .96), rgba(255, 253, 248, .98) 45%, rgba(238, 244, 234, .9)),
    var(--cream);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

a:hover {
  color: var(--gold-deep);
}

::selection {
  color: var(--ink);
  background: rgba(201, 143, 158, .3);
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid rgba(184, 141, 66, .38);
  outline-offset: 3px;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: .7rem 1rem;
  background: var(--ink);
  color: var(--ivory);
  border-radius: var(--radius);
  transition: top .2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(128, 98, 46, .12);
  background: rgba(255, 253, 249, .9);
  backdrop-filter: blur(20px) saturate(1.12);
  box-shadow: 0 8px 30px rgba(62, 45, 53, .055);
}

.header-inner {
  width: min(100% - 2.5rem, 1360px);
  min-height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: .78rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 22px rgba(128, 98, 46, .14);
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.48rem;
  font-weight: 600;
  letter-spacing: -.015em;
}

.brand-sub {
  color: var(--muted);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .13em;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 253, 249, .78);
  box-shadow: 0 6px 18px rgba(62, 45, 53, .05);
  transition: color .18s ease, border-color .18s ease, background-color .18s ease;
}

.nav-toggle:hover {
  border-color: rgba(128, 98, 46, .38);
  color: var(--burgundy);
  background: var(--ivory);
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  width: 20px;
  height: 2px;
  display: block;
  border-radius: 2px;
  background: currentColor;
  transition: transform .22s ease, opacity .22s ease;
  content: "";
}

.nav-toggle-lines::before {
  transform: translateY(-7px);
}

.nav-toggle-lines::after {
  transform: translateY(5px);
}

.menu-open .nav-toggle-lines {
  transform: rotate(45deg);
}

.menu-open .nav-toggle-lines::before {
  transform: translateY(0) rotate(90deg);
}

.menu-open .nav-toggle-lines::after {
  opacity: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: .1rem;
}

.site-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: .5rem .5rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: .81rem;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--ink);
  background: transparent;
}

.site-nav a.is-active {
  color: var(--ink);
  background: rgba(245, 230, 233, .64);
}

.site-nav > a::after {
  position: absolute;
  right: .55rem;
  bottom: .3rem;
  left: .55rem;
  height: 1px;
  border-radius: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  content: "";
  opacity: 0;
  transform: scaleX(.55);
  transition: opacity .18s ease, transform .18s ease;
}

.site-nav > a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav .nav-primary,
.site-nav .nav-cta {
  margin: 0;
  color: var(--muted);
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  margin-left: .25rem;
  padding: .15rem;
  border: 1px solid rgba(197, 162, 86, .28);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, .72);
}

.language-switcher a {
  min-height: 34px;
  padding: .35rem .48rem;
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.language-switcher a.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--gold-deep), var(--rose));
}

main {
  font-size: var(--font-copy);
  overflow: hidden;
}

.section {
  padding: var(--space) 0;
}

.section.compact {
  padding: clamp(3.25rem, 6vw, 5rem) 0;
}

.section.tint {
  background:
    linear-gradient(118deg, rgba(245, 230, 233, .52), rgba(255, 253, 249, .9) 48%, rgba(237, 242, 233, .7));
  border-block: 1px solid rgba(123, 101, 94, .08);
}

.section.soft {
  background:
    linear-gradient(135deg, rgba(238, 244, 234, .76), rgba(255, 253, 248, .92) 52%, rgba(238, 232, 245, .58));
}

.container {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.narrow {
  width: min(100% - 2rem, 860px);
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin: 0 0 1rem;
  color: var(--gold-deep);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-heading);
  letter-spacing: -.018em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.7rem, 5.6vw, 5.25rem);
  font-weight: 600;
  line-height: .99;
  max-width: 930px;
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 600;
  line-height: 1.07;
}

h3 {
  font-size: clamp(1.35rem, 2.1vw, 1.82rem);
  font-weight: 500;
  line-height: 1.18;
}

p {
  margin: 0;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 1em;
  line-height: 1.68;
}

.prose {
  color: var(--muted);
}

.prose p + p,
.prose ul + p,
.prose ol + p,
.prose p + ul,
.prose p + ol {
  margin-top: 1rem;
}

.prose ul,
.prose ol,
main ul:not([class]),
main ol:not([class]) {
  margin: 1.1rem 0 0;
  padding-left: 1.15rem;
}

.prose li + li,
main ul:not([class]) li + li,
main ol:not([class]) li + li {
  margin-top: .45rem;
}

.hero {
  position: relative;
  min-height: min(calc(84vh - 78px), 900px);
  display: grid;
  align-items: start;
  padding: clamp(2.8rem, 5.2vw, 4.9rem) 0 clamp(2rem, 3.8vw, 3rem);
  background:
    linear-gradient(90deg, rgba(255, 253, 249, .995) 0%, rgba(255, 253, 249, .94) 41%, rgba(255, 253, 249, .5) 72%, rgba(255, 253, 249, .28) 100%),
    url("../img/soul-portals-ornate.png") right center / clamp(820px, 78vw, 1180px) auto no-repeat,
    linear-gradient(130deg, #fffdf8, #f8e8ec 50%, #edf4e9);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0), var(--cream));
  content: "";
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  display: grid;
  gap: clamp(1.3rem, 2.6vw, 2.6rem);
}

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

.hero-copy .lead {
  margin-top: 1.4rem;
}

.hero-copy .lead,
.hero-sublead {
  font-size: 1em;
  line-height: 1.68;
}

.hero-sublead {
  max-width: 690px;
  margin-top: 1rem;
  color: rgba(77, 65, 60, .82);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2rem;
}

.hero-actions {
  margin-top: 1.35rem;
}


.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .82rem 1.18rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: .94rem;
  font-weight: 750;
  line-height: 1.1;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--burgundy), #975d72);
  box-shadow: 0 14px 30px rgba(106, 52, 73, .22), inset 0 1px rgba(255, 255, 255, .18);
}

.btn-primary:hover {
  color: #fff;
  background: linear-gradient(135deg, #56283a, var(--burgundy));
  box-shadow: 0 18px 38px rgba(106, 52, 73, .27), inset 0 1px rgba(255, 255, 255, .16);
}

.btn-secondary {
  color: var(--ink);
  border-color: rgba(197, 162, 86, .38);
  background: rgba(255, 253, 249, .82);
  box-shadow: 0 6px 18px rgba(62, 45, 53, .045);
}

.btn-secondary:hover {
  border-color: rgba(128, 98, 46, .58);
  background: var(--ivory);
  box-shadow: 0 10px 24px rgba(62, 45, 53, .075);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(280px, .75fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: clamp(2.25rem, 4.2vw, 3.5rem);
}

.section-heading.center {
  display: block;
  text-align: center;
}

.section-heading.center .lead,
.section-heading.center .eyebrow {
  margin-inline: auto;
}

.grid {
  display: grid;
  gap: clamp(1rem, 1.8vw, 1.35rem);
}

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

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

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

.card,
.feature,
.event-card,
.book-card,
.offer-card,
.experience-card,
.channel-card,
.notice-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, .86);
  box-shadow: var(--shadow-soft);
}

.card,
.feature,
.offer-card,
.experience-card,
.channel-card,
.notice-box {
  padding: clamp(1.2rem, 2.3vw, 1.75rem);
}

.feature {
  min-height: 100%;
}

.feature-icon {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  color: var(--gold-deep);
  border: 1px solid rgba(184, 141, 66, .14);
  background: linear-gradient(135deg, rgba(245, 230, 233, .9), rgba(237, 242, 233, .9));
}

.feature p,
.card p,
.offer-card p,
.experience-card p,
.channel-card p {
  margin-top: .75rem;
  color: var(--muted);
}

.intention-strip {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  margin-top: clamp(1.6rem, 3.2vw, 2.5rem);
  padding: clamp(1.25rem, 2.4vw, 1.7rem) clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(184, 141, 66, .2);
  border-radius: calc(var(--radius) + 2px);
  background:
    radial-gradient(circle at 96% 8%, rgba(201, 143, 158, .15), transparent 26%),
    linear-gradient(120deg, rgba(255, 253, 249, .98), rgba(237, 242, 233, .76));
  box-shadow: 0 16px 42px rgba(62, 45, 53, .075);
}

.intention-strip::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--rose));
  content: "";
}

.intention-copy {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
}

.intention-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(184, 141, 66, .24);
  border-radius: 50%;
  color: var(--gold-deep);
  background: rgba(255, 253, 249, .78);
  box-shadow: 0 8px 20px rgba(62, 45, 53, .06);
  font-size: 1rem;
}

.intention-label {
  display: block;
  margin-bottom: .3rem;
  color: var(--gold-deep);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.intention-strip p {
  max-width: 700px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.62;
}

.intention-actions {
  width: min(100%, 270px);
  display: grid;
  gap: .65rem;
}

.intention-actions .btn {
  width: 100%;
  white-space: nowrap;
}

.intention-actions .text-link {
  padding-inline: .35rem;
  font-size: .88rem;
  line-height: 1.4;
  text-align: center;
}

.text-link {
  color: var(--gold-deep);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(184, 141, 66, .34);
  text-decoration-thickness: 1px;
  text-underline-offset: .24em;
}

.experience-card {
  position: relative;
  overflow: hidden;
}

.experience-card::after {
  position: absolute;
  inset: auto 1rem 1rem auto;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 162, 86, .18), transparent 68%);
  content: "";
}

.experience-card span,
.channel-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  color: var(--gold-deep);
  background: rgba(247, 228, 232, .72);
  font-weight: 900;
}

.feedback-note {
  max-width: 820px;
  margin: 1rem auto 0;
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--gold);
  background: rgba(255, 253, 248, .72);
  color: var(--muted);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.15rem;
}

.social-link,
.channel-status {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: .45rem .75rem;
  border: 1px solid rgba(197, 162, 86, .26);
  border-radius: 999px;
  color: var(--gold-deep);
  background: rgba(255, 253, 248, .78);
  font-size: .88rem;
  font-weight: 800;
}

.social-link.is-disabled,
.channel-status {
  color: var(--muted);
  background: rgba(255, 253, 248, .58);
}

.channel-card {
  min-height: 100%;
}

.channel-card .channel-status {
  margin-top: 1rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(300px, .72fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.home-about-section {
  position: relative;
}

.home-about {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, .38fr) minmax(0, 1fr);
  gap: clamp(1.8rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(1.4rem, 3.5vw, 2.6rem);
  border: 1px solid rgba(184, 141, 66, .18);
  border-radius: calc(var(--radius) + 4px);
  background:
    linear-gradient(115deg, rgba(255, 253, 248, .9), rgba(247, 228, 232, .36) 48%, rgba(237, 244, 233, .55)),
    radial-gradient(circle at 8% 16%, rgba(197, 162, 86, .16), transparent 30%);
  box-shadow: var(--shadow);
}

.home-about::before {
  position: absolute;
  inset: 1rem auto 1rem clamp(16rem, 29vw, 22rem);
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(197, 162, 86, .48), transparent);
  content: "";
}

.home-about-copy {
  position: relative;
  max-width: 760px;
}

.home-about-copy .prose {
  margin-top: 1.15rem;
}

.home-about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.35rem;
}

.home-about-tags span {
  padding: .48rem .7rem;
  border: 1px solid rgba(197, 162, 86, .24);
  border-radius: 999px;
  background: rgba(255, 253, 248, .68);
  color: var(--gold-deep);
  font-size: .84rem;
  font-weight: 750;
}

.home-portrait {
  position: relative;
  width: min(340px, 100%);
  margin: 0;
  padding: .8rem .8rem 1rem;
  border: 1px solid rgba(197, 162, 86, .28);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .88), rgba(247, 228, 232, .34)),
    rgba(255, 253, 248, .72);
  box-shadow: 0 24px 54px rgba(61, 46, 55, .14);
  isolation: isolate;
}

.home-portrait::before {
  position: absolute;
  inset: -12px;
  z-index: -1;
  border-radius: calc(var(--radius) + 3px);
  background:
    radial-gradient(circle at 18% 12%, rgba(197, 162, 86, .2), transparent 34%),
    radial-gradient(circle at 90% 82%, rgba(247, 228, 232, .56), transparent 42%);
  content: "";
}

.home-portrait::after {
  display: block;
  width: 58px;
  height: 1px;
  margin: .8rem auto 0;
  background: linear-gradient(90deg, transparent, rgba(197, 162, 86, .8), transparent);
  content: "";
}

.home-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  object-fit: cover;
  object-position: center top;
  opacity: .97;
  filter: saturate(1.04) contrast(1.02);
}

.home-portrait figcaption {
  position: static;
  max-width: 240px;
  margin: .8rem auto 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.16rem, 1.9vw, 1.42rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: .02em;
  text-align: center;
}

.portrait-card {
  position: relative;
  margin: 0;
  padding: clamp(.75rem, 1.5vw, 1rem);
  border: 1px solid rgba(197, 162, 86, .32);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, .92), rgba(247, 228, 232, .42)),
    radial-gradient(circle at 88% 12%, rgba(197, 162, 86, .22), transparent 34%);
  box-shadow: 0 24px 52px rgba(61, 46, 55, .18);
}

.portrait-card::before {
  position: absolute;
  inset: .45rem;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: calc(var(--radius) - 4px);
  content: "";
  pointer-events: none;
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) - 6px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .5);
}

.portrait-frame::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .06), transparent 42%),
    linear-gradient(22deg, rgba(197, 162, 86, .14), transparent 48%);
  content: "";
  pointer-events: none;
}

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

.portrait-card figcaption {
  position: relative;
  margin-top: .9rem;
  padding: .9rem 1rem;
  border-radius: calc(var(--radius) - 8px);
  background: rgba(255, 253, 248, .78);
  color: var(--muted);
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-align: center;
}

.quote {
  padding-left: 1.25rem;
  border-left: 3px solid var(--gold);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.34;
}

.divider {
  width: min(100% - 2rem, var(--max));
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(197, 162, 86, .55), transparent);
}

.soul-elements {
  padding: clamp(2.8rem, 5vw, 4.6rem) 0;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .94), rgba(247, 228, 232, .32), rgba(255, 253, 248, .9));
}

.soul-elements-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(.9rem, 1.6vw, 1.2rem);
}

.soul-element {
  min-height: 100%;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: .7rem;
  padding: 1.3rem 1rem 1.4rem;
  border: 1px solid rgba(184, 141, 66, .15);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, .78);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.soul-element img {
  width: min(100%, 184px);
  height: 136px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 8px 14px rgba(123, 101, 94, .08));
}

.home-page .section {
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.home-page .section.compact {
  padding: clamp(3.25rem, 5.5vw, 4.5rem) 0;
}

.soul-element h3 {
  color: var(--plum);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: .06em;
  line-height: 1.25;
  text-transform: uppercase;
}

.soul-element p {
  max-width: 21ch;
  color: var(--muted);
  font-size: 1em;
  font-weight: 400;
  line-height: 1.6;
}

.session-room-section {
  padding: clamp(1.25rem, 3vw, 2.5rem) 0 clamp(3.25rem, 6vw, 5.5rem);
}

.session-room-figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(197, 162, 86, .24);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, .92);
  box-shadow: var(--shadow);
}

.session-room-image {
  position: relative;
  overflow: hidden;
}

.session-room-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 250, 243, .1), rgba(217, 154, 169, .08));
  content: "";
  pointer-events: none;
}

.session-room-image img {
  width: 100%;
  height: clamp(360px, 40vw, 520px);
  object-fit: cover;
  object-position: center 58%;
  filter: saturate(.76) sepia(.08) contrast(.96) brightness(1.06);
}

.session-room-figure figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem clamp(1rem, 3vw, 1.6rem);
  color: var(--muted);
  line-height: 1.5;
}

.session-room-figure figcaption strong {
  color: var(--ink);
  font-weight: 700;
}

.session-room-figure figcaption small {
  flex: 0 0 auto;
  font-size: .72rem;
}

.session-room-figure figcaption a {
  text-decoration: underline;
  text-decoration-color: rgba(197, 162, 86, .5);
  text-underline-offset: .18em;
}

.timeline {
  --timeline-axis: 8rem;
  position: relative;
  display: grid;
  gap: .7rem;
  width: min(100%, 980px);
  margin-inline: auto;
  padding-block: .5rem;
}

.timeline::before {
  position: absolute;
  top: 1.5rem;
  bottom: 1.5rem;
  left: var(--timeline-axis);
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(180deg, transparent, rgba(184, 141, 66, .58) 8%, rgba(201, 143, 158, .48) 55%, rgba(127, 145, 112, .48) 92%, transparent);
  content: "";
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 6.7rem minmax(0, 1fr);
  gap: 2.7rem;
  align-items: center;
  min-height: 4.35rem;
}

.timeline-item::before {
  position: absolute;
  top: 50%;
  left: calc(var(--timeline-axis) - .45rem);
  z-index: 2;
  width: .9rem;
  height: .9rem;
  border: 3px solid var(--ivory);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--rose));
  box-shadow: 0 0 0 1px rgba(128, 98, 46, .25), 0 5px 12px rgba(104, 70, 89, .15);
  content: "";
  transform: translateY(-50%);
}

.timeline-item::after {
  position: absolute;
  top: 50%;
  left: var(--timeline-axis);
  width: 1.4rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(184, 141, 66, .52), rgba(184, 141, 66, .12));
  content: "";
}

.timeline-year {
  justify-self: end;
  color: var(--plum);
  font-family: var(--font-heading);
  font-size: 1.24rem;
  font-weight: 600;
  letter-spacing: .015em;
  line-height: 1.1;
  white-space: nowrap;
}

.timeline-text {
  position: relative;
  padding: .95rem 1.2rem;
  border: 1px solid rgba(104, 70, 89, .13);
  border-radius: var(--radius);
  background:
    linear-gradient(110deg, rgba(255, 253, 249, .96), rgba(245, 230, 233, .32)),
    var(--ivory);
  box-shadow: 0 10px 28px rgba(62, 45, 53, .055);
  color: var(--ink);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .timeline-item:hover .timeline-text {
    border-color: rgba(184, 141, 66, .3);
    box-shadow: 0 15px 34px rgba(62, 45, 53, .09);
    transform: translateX(3px);
  }

  .timeline-item::before {
    transition: transform .2s ease, box-shadow .2s ease;
  }

  .timeline-item:hover::before {
    box-shadow: 0 0 0 4px rgba(184, 141, 66, .1), 0 7px 16px rgba(104, 70, 89, .2);
    transform: translateY(-50%) scale(1.08);
  }
}

.check-list,
.plain-list {
  display: grid;
  gap: .65rem;
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list + p,
.plain-list + p {
  margin-top: 1rem;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 1.65rem;
  color: var(--muted);
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: .33rem;
  width: .9rem;
  height: .9rem;
  border: 1px solid rgba(197, 162, 86, .8);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--rose));
  content: "";
}

.plain-list li::before {
  position: absolute;
  left: .15rem;
  top: .7rem;
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: var(--sage);
  content: "";
}

.process {
  counter-reset: process;
  display: grid;
  gap: .8rem;
}

.process-step {
  counter-increment: process;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(123, 101, 94, .12);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, .8);
}

.process-step::before {
  width: 2.15rem;
  height: 2.15rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--gold-deep), var(--rose));
  font-weight: 800;
  content: counter(process);
}

.process-step strong {
  display: block;
  margin-bottom: .18rem;
}

.process-step span {
  color: var(--muted);
}

.price-box {
  margin-top: 1.3rem;
  padding: 1rem;
  border: 1px solid rgba(197, 162, 86, .34);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 242, 192, .35), rgba(247, 228, 232, .34));
  color: var(--ink);
  font-weight: 800;
}

.session-price-card {
  width: min(100%, 650px);
  margin-top: 1.6rem;
  padding: clamp(1.15rem, 2.5vw, 1.55rem);
  border: 1px solid rgba(184, 141, 66, .26);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, .82);
  box-shadow: 0 14px 34px rgba(75, 55, 67, .07);
}

.session-price-card p {
  margin: 0;
}

.session-price-card > p:last-child {
  margin-top: .75rem;
  color: var(--muted);
  line-height: 1.65;
}

.session-price-label {
  color: var(--plum);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.session-price {
  display: flex;
  gap: .8rem;
  align-items: baseline;
  margin-top: .2rem !important;
}

.session-price strong {
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.15rem);
  font-weight: 600;
  line-height: 1;
}

.session-price span {
  color: var(--muted);
  font-size: .88rem;
}

.session-price-card-compact {
  margin-top: 1.3rem;
  padding: 1rem 1.15rem;
  box-shadow: none;
}

.session-price-card-compact .session-price strong {
  font-size: clamp(1.9rem, 4vw, 2.45rem);
}

.book-card {
  position: relative;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: clamp(2rem, 3.5vw, 3rem);
  align-items: center;
  min-height: 310px;
  padding: clamp(1.4rem, 2.5vw, 2rem);
}

.book-card-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.book-card-copy h3 {
  margin-bottom: .8rem;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  line-height: 1.25;
}

.book-card-copy > .prose {
  line-height: 1.65;
}

.book-card-copy .meta-list {
  gap: .45rem;
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(123, 101, 94, .12);
  font-size: .9rem;
  line-height: 1.5;
}

.book-card-copy .meta-list span {
  display: block;
}

.books-showcase {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}

.book-feature {
  grid-template-columns: minmax(210px, 280px) minmax(0, 1fr);
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(1.6rem, 3vw, 2.4rem) clamp(1.5rem, 4vw, 3rem);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, .94), rgba(255, 250, 243, .84) 50%, rgba(238, 244, 234, .58)),
    rgba(255, 253, 248, .86);
}

.book-feature:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(210px, 280px);
}

.book-feature:nth-child(even) .book-cover {
  grid-column: 2;
  grid-row: 1;
}

.book-feature:nth-child(even) .book-copy {
  grid-column: 1;
  grid-row: 1;
}

.book-copy {
  position: relative;
  z-index: 1;
}

.book-copy .eyebrow {
  margin-bottom: .7rem;
}

.book-copy .prose {
  margin-top: 1rem;
  max-width: 58ch;
}

.book-feature h2 {
  max-width: 680px;
  font-size: clamp(1.85rem, 3vw, 2.75rem);
}

.book-feature .meta-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem .9rem;
  margin-top: 1.35rem;
  padding: 1rem;
  border: 1px solid rgba(197, 162, 86, .2);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, .66);
}

.book-feature .inline-links {
  margin-top: 1.25rem;
}

.book-cover {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 7 / 10;
  border-radius: var(--radius);
  background: var(--rose-soft);
  box-shadow:
    24px 30px 34px rgba(52, 43, 39, .24),
    9px 12px 16px rgba(52, 43, 39, .14),
    inset 0 0 0 1px rgba(123, 101, 94, .12);
  transform: perspective(920px) rotateY(-12deg) rotateX(2deg);
  transform-origin: left center;
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: visible;
}

.book-cover::before {
  position: absolute;
  top: 3.4%;
  right: -18px;
  z-index: 0;
  width: 24px;
  height: 93%;
  border-radius: 0 6px 6px 0;
  background:
    repeating-linear-gradient(180deg, rgba(255, 253, 248, .86) 0 2px, rgba(183, 160, 118, .34) 2px 3px),
    linear-gradient(90deg, #9b7938 0, #eadcbe 22%, #fffaf0 52%, #c2a264 100%);
  box-shadow:
    inset 8px 0 12px rgba(52, 43, 39, .2),
    7px 6px 10px rgba(52, 43, 39, .12);
  transform: skewY(3deg);
  content: "";
}

.book-cover::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .32), rgba(255, 255, 255, 0) 24%),
    linear-gradient(110deg, rgba(255, 255, 255, 0) 54%, rgba(255, 255, 255, .2) 62%, rgba(255, 255, 255, 0) 74%),
    linear-gradient(90deg, rgba(52, 43, 39, .22), rgba(52, 43, 39, 0) 12%);
  pointer-events: none;
  content: "";
}

.book-card .book-cover {
  margin-left: .25rem;
}

.book-card::after {
  position: absolute;
  z-index: 0;
  left: clamp(1.2rem, 3vw, 2.2rem);
  bottom: clamp(1rem, 2vw, 1.5rem);
  width: min(205px, 34%);
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(52, 43, 39, .22), rgba(52, 43, 39, 0) 68%);
  transform: translateY(12px) skewX(-10deg);
  content: "";
  pointer-events: none;
}

.book-feature::after {
  left: clamp(2rem, 5vw, 3.5rem);
  width: min(300px, 32%);
  height: 24px;
  background: radial-gradient(ellipse, rgba(52, 43, 39, .26), rgba(52, 43, 39, 0) 70%);
}

.book-feature:nth-child(even)::after {
  right: clamp(2rem, 5vw, 3.5rem);
  left: auto;
}

.book-card:hover .book-cover {
  transform: perspective(920px) rotateY(-7deg) rotateX(1deg) translateY(-2px);
  box-shadow:
    26px 34px 38px rgba(52, 43, 39, .28),
    10px 14px 18px rgba(52, 43, 39, .16),
    inset 0 0 0 1px rgba(123, 101, 94, .12);
}

.book-cover img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  aspect-ratio: 7 / 10;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 0 0 1px rgba(52, 43, 39, .16);
}

.book-cover img {
  background: #fff;
}

.meta-list {
  display: grid;
  gap: .35rem;
  margin-top: .8rem;
  color: var(--muted);
  font-size: .94rem;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1rem;
}

.mini-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: .48rem .7rem;
  border: 1px solid rgba(197, 162, 86, .28);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, .72);
  color: var(--gold-deep);
  font-weight: 800;
}

.event-card {
  overflow: hidden;
  padding: 1.25rem;
}

.event-card-image {
  width: calc(100% + 2.5rem);
  max-width: none;
  aspect-ratio: 16 / 9;
  margin: -1.25rem -1.25rem 1.25rem;
  object-fit: cover;
  background: var(--rose-soft);
}

.event-date {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: .8rem;
  padding: .25rem .62rem;
  border-radius: var(--radius);
  color: var(--gold-deep);
  background: rgba(255, 242, 192, .45);
  font-weight: 800;
  font-size: .9rem;
}

.event-type {
  display: block;
  margin-bottom: .35rem;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.event-subtitle {
  color: var(--ink) !important;
  font-weight: 700;
}

.event-card p {
  color: var(--muted);
}

.event-meta {
  display: grid;
  gap: .25rem;
  margin-top: .85rem;
  color: var(--muted);
  font-size: .94rem;
}

.event-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(320px, .68fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.event-detail-page .page-hero {
  padding: clamp(3.5rem, 6vw, 5rem) 0 clamp(2.75rem, 5vw, 4rem);
}

.event-detail-page .page-hero h1 {
  max-width: 860px;
  font-size: clamp(2.75rem, 5.3vw, 4.8rem);
}

.event-detail-page .section {
  padding: clamp(3.25rem, 6vw, 5rem) 0;
}

.event-detail-content {
  display: grid;
  gap: 0;
}

.event-detail-image {
  margin: 0 0 clamp(2rem, 5vw, 3rem);
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.event-detail-image img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.event-detail-section {
  scroll-margin-top: 110px;
  padding-bottom: clamp(2.25rem, 5vw, 3.25rem);
}

.event-detail-section + .event-detail-section {
  padding-top: clamp(2.25rem, 5vw, 3.25rem);
  border-top: 1px solid rgba(123, 101, 94, .14);
}

.event-detail-section .eyebrow {
  margin-bottom: .55rem;
}

.event-detail-section h2 {
  max-width: 720px;
  margin-bottom: 1rem;
  font-size: clamp(1.85rem, 3vw, 2.55rem);
}

.event-detail-section > p:not(.eyebrow) {
  max-width: 72ch;
  line-height: 1.8;
}

.event-detail-section > p + p {
  margin-top: 1.15rem;
}

.event-process-list {
  position: relative;
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.event-process-list::before {
  position: absolute;
  top: 1.4rem;
  bottom: 1.4rem;
  left: 1.3rem;
  width: 1px;
  background: rgba(197, 162, 86, .28);
  content: "";
}

.event-process-list li {
  position: relative;
  display: grid;
  grid-template-columns: 2.6rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid rgba(123, 101, 94, .12);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, .72);
}

.process-number {
  position: relative;
  z-index: 1;
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(197, 162, 86, .45);
  border-radius: 50%;
  color: var(--gold-deep);
  background: var(--ivory);
  font-weight: 800;
}

.event-process-list h3 {
  margin: .1rem 0 .35rem;
  font-size: clamp(1.15rem, 2vw, 1.38rem);
}

.event-process-list p {
  color: var(--muted);
  line-height: 1.7;
}

.event-detail-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: clamp(2.25rem, 5vw, 3.25rem);
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(123, 101, 94, .14);
}

.event-detail-nav a {
  padding: .45rem .7rem;
  border-radius: 999px;
  color: var(--gold-deep);
  background: rgba(255, 242, 192, .35);
  font-size: .88rem;
  font-weight: 800;
}

.event-booking-card {
  position: sticky;
  top: 100px;
  padding: clamp(1.1rem, 2.5vw, 1.4rem);
  border: 1px solid rgba(197, 162, 86, .26);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, .95);
  box-shadow: var(--shadow);
}

.event-booking-card .eyebrow {
  margin-bottom: .55rem;
}

.event-booking-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  line-height: 1.08;
}

.event-facts {
  display: grid;
  gap: .75rem;
  margin: 1rem 0 1.2rem;
}

.event-fact {
  display: grid;
  grid-template-columns: minmax(108px, .8fr) minmax(0, 1.2fr);
  gap: .75rem;
  padding-bottom: .65rem;
  border-bottom: 1px solid rgba(123, 101, 94, .1);
}

.event-fact dt {
  color: var(--muted);
  font-size: .86rem;
  font-weight: 800;
}

.event-fact dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.gross-price {
  margin: .65rem 0;
  color: var(--ink);
  font: 700 clamp(1.8rem, 4vw, 2.4rem)/1 Georgia, serif;
}

.gross-price small {
  display: block;
  margin-top: .4rem;
  color: var(--muted);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.4;
}

.event-booking-card .gross-price {
  margin-top: 1rem;
  font-size: clamp(1.75rem, 3vw, 2.15rem);
}

.event-booking-card .btn {
  width: 100%;
  margin-top: .8rem;
}

.faq-list {
  display: grid;
  gap: .75rem;
}

.faq-item {
  border: 1px solid rgba(123, 101, 94, .12);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, .82);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-weight: 800;
}

.faq-trigger::after {
  flex: 0 0 auto;
  width: 1.8rem;
  height: 1.8rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(197, 162, 86, .35);
  border-radius: 50%;
  color: var(--gold-deep);
  content: "+";
}

.faq-trigger[aria-expanded="true"]::after {
  content: "-";
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease;
}

.faq-panel.is-open {
  grid-template-rows: 1fr;
}

.faq-panel > div {
  overflow: hidden;
}

.faq-panel p {
  padding: 0 1.1rem 1.1rem;
  color: var(--muted);
}

.session-suitability-note {
  margin-top: clamp(1.25rem, 3vw, 2rem);
}

.event-venue-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.event-venue-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(197, 162, 86, .24);
  border-radius: var(--radius);
  background: var(--ivory);
  box-shadow: var(--shadow);
}

.event-venue-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(.84) contrast(.96) brightness(1.04);
}

.knowledge-nav {
  position: sticky;
  top: 92px;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  padding: .8rem;
  border: 1px solid rgba(197, 162, 86, .22);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, .92);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.knowledge-nav a {
  padding: .55rem .78rem;
  border-radius: 999px;
  color: var(--gold-deep);
  background: rgba(247, 228, 232, .55);
  font-size: .86rem;
  font-weight: 800;
}

.knowledge-topic {
  scroll-margin-top: 172px;
}

.knowledge-topic + .knowledge-topic {
  margin-top: clamp(3.75rem, 7vw, 6rem);
  padding-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid rgba(123, 101, 94, .12);
}

.knowledge-topic-heading {
  max-width: 780px;
  margin-bottom: 1.5rem;
}

.knowledge-topic .faq-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.consultation-cta-section {
  padding: 0 0 clamp(4rem, 7vw, 6rem);
}

.consultation-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border: 1px solid rgba(184, 141, 66, .26);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 20%, rgba(217, 154, 169, .22), transparent 28%),
    linear-gradient(135deg, rgba(255, 253, 248, .96), rgba(238, 244, 234, .82));
  box-shadow: var(--shadow);
}

.consultation-cta-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--burgundy), #975d72);
  box-shadow: 0 12px 28px rgba(106, 52, 73, .2);
}

.consultation-cta-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.consultation-cta::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(var(--gold), var(--rose));
  content: "";
}

.consultation-cta h2 {
  max-width: 760px;
  font-size: clamp(1.75rem, 3.5vw, 2.65rem);
}

.consultation-cta p:not(.eyebrow) {
  max-width: 760px;
  margin-top: .7rem;
  color: var(--muted);
}

.consultation-cta .btn {
  min-width: 210px;
}

.callback-page-hero {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 253, 248, .4), transparent 30%),
    linear-gradient(135deg, #c8b591, #d8c2b0 58%, #bba889);
  color: #fff;
  text-align: center;
}

.callback-intro {
  display: grid;
  justify-items: center;
}

.callback-intro .eyebrow,
.callback-intro h1,
.callback-intro .lead {
  color: #fff;
}

.callback-intro .eyebrow::before {
  background: currentColor;
}

.callback-intro h1 {
  max-width: 900px;
}

.callback-intro .lead {
  max-width: 780px;
  margin-top: 1.4rem;
}

.callback-phone-icon {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  margin-bottom: 1.35rem;
  border: 2px solid rgba(255, 255, 255, .62);
  border-radius: 50%;
}

.callback-phone-icon svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.callback-hero-button {
  width: min(100%, 620px);
  margin-top: 1.75rem;
  color: #fff;
  background: var(--ink);
  box-shadow: 0 16px 34px rgba(52, 43, 39, .22);
}

.callback-hero-button:hover {
  color: #fff;
  background: #231d1a;
}

.callback-process-section {
  padding: clamp(4rem, 7vw, 6rem) 0;
  color: #fff;
  background: #5d4459;
}

.callback-process-section .eyebrow,
.callback-process-section h2 {
  color: #fff;
}

.callback-process-section .eyebrow::before {
  background: currentColor;
}

.callback-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: clamp(2rem, 5vw, 3.5rem);
}

.callback-step {
  position: relative;
  min-width: 0;
  padding: 0 .8rem 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  text-align: center;
}

.callback-step-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  color: #fff;
}

.callback-step-icon svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.callback-step strong {
  display: block;
  font-size: 1rem;
}

.callback-step p {
  margin-top: .65rem;
  color: rgba(255, 255, 255, .82);
  font-size: .88rem;
  line-height: 1.55;
}

.callback-form-layout {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.callback-form-card {
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(197, 162, 86, .24);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, .96);
  box-shadow: var(--shadow);
}

.callback-submit {
  width: 100%;
  margin-top: 1rem;
}

.callback-success,
.form-error {
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
}

.callback-success {
  border: 1px solid rgba(142, 157, 122, .4);
  background: var(--sage-soft);
}

.callback-success h3 {
  margin-bottom: .55rem;
}

.form-error {
  margin-bottom: 1rem;
  color: #7c2929;
  background: #f9dddd;
  font-weight: 700;
}

.callback-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.form {
  display: grid;
  gap: 1rem;
}

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

.field {
  display: grid;
  gap: .35rem;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--ink);
  font-size: .93rem;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(104, 70, 89, .2);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, .92);
  color: var(--ink);
  padding: .84rem .95rem;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(128, 98, 46, .72);
  box-shadow: 0 0 0 4px rgba(184, 141, 66, .12);
}

.checkbox {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .7rem;
  align-items: start;
  color: var(--muted);
}

.checkbox input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: .25rem;
  accent-color: var(--gold-deep);
}

.form-note,
.form-status {
  color: var(--muted);
  font-size: .94rem;
}

.form-status {
  min-height: 1.6rem;
  font-weight: 700;
}

.page-hero {
  padding: clamp(4.2rem, 7.2vw, 6.7rem) 0 clamp(2.8rem, 5.2vw, 4.7rem);
  background:
    linear-gradient(105deg, rgba(255, 253, 248, .98), rgba(255, 253, 248, .82) 54%, rgba(255, 253, 248, .42) 100%),
    var(--page-hero-image, url("../img/soulreflect-logo-symbol.png")) var(--page-hero-position, 92% center) / var(--page-hero-size, 280px auto) no-repeat,
    linear-gradient(135deg, #fffdf8, #f8e8ec 48%, #edf4e9);
  border-bottom: 1px solid rgba(123, 101, 94, .08);
}

.page-session {
  --page-hero-image: url("../img/behandlungsraum.jpg");
  --page-hero-position: center 58%;
  --page-hero-size: cover;
  --page-hero-mobile-position: center 58%;
  --page-hero-mobile-size: cover;
}

.page-group,
.page-events {
  --page-hero-image: url("../uploads/events/veranstaltung-20260712-221328-e5614afeab.jpg");
  --page-hero-position: center 54%;
  --page-hero-size: cover;
  --page-hero-mobile-position: center 54%;
  --page-hero-mobile-size: cover;
}

.page-books {
  --page-hero-image: url("../img/buch-gespraeche-mit-ausserirdischem-leben.jpg");
  --page-hero-position: 90% center;
  --page-hero-size: 260px auto;
  --page-hero-mobile-position: calc(100% - 1rem) center;
  --page-hero-mobile-size: 175px auto;
}

.page-about {
  --page-hero-image: url("../img/soul-element-journey-reference.png");
  --page-hero-position: 90% center;
  --page-hero-size: 270px auto;
  --page-hero-mobile-position: calc(100% - .5rem) center;
  --page-hero-mobile-size: 180px auto;
}

.page-qhht {
  --page-hero-image: url("../img/soul-element-hypnosis-reference.png");
  --page-hero-position: 89% center;
  --page-hero-size: 245px auto;
  --page-hero-mobile-position: calc(100% - 1rem) center;
  --page-hero-mobile-size: 165px auto;
}

.page-faq {
  --page-hero-image: url("../img/soul-element-insights-reference.png");
  --page-hero-position: 90% center;
  --page-hero-size: 255px auto;
  --page-hero-mobile-position: calc(100% - .5rem) center;
  --page-hero-mobile-size: 175px auto;
}

.page-requirements {
  --page-hero-image: url("../img/soul-element-journey-reference.png");
  --page-hero-position: 90% center;
  --page-hero-size: 255px auto;
  --page-hero-mobile-position: calc(100% - .5rem) center;
  --page-hero-mobile-size: 175px auto;
}

.page-contact {
  --page-hero-image: url("../img/butterfly-mark.svg");
  --page-hero-position: 88% center;
  --page-hero-size: 220px auto;
  --page-hero-mobile-position: calc(100% - 1rem) center;
  --page-hero-mobile-size: 150px auto;
}

.page-legal {
  --page-hero-image: url("../img/butterfly-mark.svg");
  --page-hero-position: 89% center;
  --page-hero-size: 190px auto;
  --page-hero-mobile-position: calc(100% - 1rem) center;
  --page-hero-mobile-size: 135px auto;
}

.legal-document {
  display: grid;
  gap: 1.25rem;
}

.legal-card {
  padding: clamp(1.35rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  background: rgba(255, 253, 249, .9);
  box-shadow: var(--shadow-soft);
}

.legal-card h2 + .prose,
.legal-card .eyebrow + h2 {
  margin-top: .8rem;
}

.legal-card .eyebrow + h2 {
  margin-top: 0;
}

.legal-contact {
  margin-top: 1.35rem;
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: linear-gradient(110deg, rgba(245, 230, 233, .45), rgba(237, 242, 233, .5));
  color: var(--muted);
  font-style: normal;
}

.legal-contact strong {
  color: var(--ink);
}

.legal-missing {
  color: #8a2f3f;
  font-weight: 700;
}

.legal-setup-note {
  padding: 1rem 1.15rem;
  border: 1px solid rgba(177, 107, 74, .36);
  border-radius: var(--radius);
  color: #6f2e28;
  background: #fff1e8;
}

.withdrawal-template {
  margin-top: 1.2rem;
  padding: clamp(1.15rem, 3vw, 1.8rem);
  border: 1px dashed rgba(128, 98, 46, .42);
  border-radius: var(--radius);
  background: rgba(251, 247, 241, .72);
}

.withdrawal-template p + p {
  margin-top: 1rem;
}

.withdrawal-template .form-line {
  min-height: 2.25rem;
  padding-top: .8rem;
  border-bottom: 1px solid rgba(104, 70, 89, .22);
  color: var(--muted);
  font-size: .9em;
}

.legal-source-note {
  padding: 1rem 1.15rem;
  color: var(--muted);
  font-size: .92em;
}

.page-hero .lead {
  margin-top: 1.25rem;
}

.site-footer {
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
  background:
    radial-gradient(circle at 12% 0%, rgba(184, 141, 66, .12), transparent 28%),
    linear-gradient(135deg, #352a2c, #3d2d34 56%, #2d2926);
  color: rgba(255, 253, 248, .82);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(4, minmax(135px, .55fr));
  gap: 2rem;
}

.site-footer h2,
.site-footer h3 {
  color: var(--ivory);
}

.footer-logo {
  width: 145px;
  height: auto;
  margin: 0 0 1rem;
  border: 1px solid rgba(228, 201, 135, .18);
  border-radius: var(--radius);
  background: var(--ivory);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .22);
}

.site-footer p,
.site-footer a {
  color: rgba(255, 253, 248, .72);
}

.site-footer a:hover {
  color: #fff;
}

.footer-links {
  display: grid;
  gap: .45rem;
  margin-top: .85rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: .95rem;
}

.footer-social span {
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 50%;
  color: rgba(255, 253, 248, .82);
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 27px;
  font-size: 0;
  font-weight: 800;
  opacity: .9;
  transition: opacity .18s ease, transform .18s ease, background-color .18s ease;
}

.footer-social span:hover,
.social-links .social-link:hover {
  opacity: 1;
  transform: translateY(-2px);
  border-color: transparent;
  background-color: rgba(184, 141, 66, .09);
}

.footer-social span:nth-child(1),
.social-links .social-link:nth-child(1) {
  background-image: url("../img/social-instagram.svg");
}

.footer-social span:nth-child(2),
.social-links .social-link:nth-child(2) {
  background-image: url("../img/social-facebook.svg");
}

.footer-social span:nth-child(3),
.social-links .social-link:nth-child(3) {
  background-image: url("../img/social-telegram.svg");
}

.social-links .social-link {
  width: 42px;
  min-height: 42px;
  padding: 0;
  border-color: transparent;
  border-radius: 50%;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30px;
  font-size: 0;
  opacity: .9;
  transition: opacity .18s ease, transform .18s ease, background-color .18s ease;
}

.footer-bottom {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.3rem;
  padding-right: 3.25rem;
  border-top: 1px solid rgba(255, 253, 248, .16);
  color: rgba(255, 253, 248, .58);
  font-size: .92rem;
}

.footer-tax-note {
  order: 2;
  flex: 1 0 100%;
}

.footer-admin-link {
  position: absolute;
  top: 1rem;
  right: 0;
  width: 36px;
  height: 36px;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  align-self: center;
  border: 1px solid rgba(255, 253, 248, .2);
  border-radius: 50%;
  color: rgba(255, 253, 248, .64);
  transition: color .18s ease, border-color .18s ease, background-color .18s ease;
}

.footer-admin-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.back-to-top {
  position: fixed;
  z-index: 90;
  right: 0;
  bottom: 5.5rem;
  display: inline-flex;
  align-items: center;
  gap: .48rem;
  min-height: 44px;
  padding: .65rem .8rem .65rem .72rem;
  border: 1px solid rgba(197, 162, 86, .7);
  border-right: 0;
  border-radius: 12px 0 0 12px;
  color: var(--ivory);
  background: rgba(92, 36, 56, .92);
  box-shadow: 0 12px 30px rgba(28, 13, 20, .2);
  font: inherit;
  font-size: .82rem;
  font-weight: 800;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateX(105%);
  transition: opacity .2s ease, transform .2s ease, background-color .2s ease;
}

.back-to-top.is-visible {
  opacity: .88;
  pointer-events: auto;
  transform: translateX(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  opacity: 1;
  background: var(--burgundy);
}

.back-to-top-icon {
  color: var(--gold-light);
  font-size: 1.15rem;
  line-height: 1;
}

.footer-admin-link::after {
  position: absolute;
  right: 0;
  bottom: calc(100% + .55rem);
  z-index: 3;
  width: max-content;
  max-width: 190px;
  padding: .42rem .58rem;
  border-radius: 7px;
  color: #3b302c;
  background: #fffdf8;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
  content: attr(data-tooltip);
  font-size: .78rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity .16s ease, transform .16s ease;
}

.footer-admin-link:hover,
.footer-admin-link:focus-visible {
  border-color: rgba(255, 253, 248, .52);
  color: #fffdf8;
  background: rgba(255, 253, 248, .08);
}

.footer-admin-link:hover::after,
.footer-admin-link:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  .card,
  .feature,
  .event-card,
  .offer-card,
  .experience-card,
  .channel-card,
  .notice-box,
  .soul-element {
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background-color .22s ease;
  }

  .card:hover,
  .feature:hover,
  .event-card:hover,
  .offer-card:hover,
  .experience-card:hover,
  .channel-card:hover,
  .notice-box:hover,
  .soul-element:hover {
    border-color: rgba(184, 141, 66, .3);
    background: rgba(255, 253, 249, .96);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
  }

  .soul-element:hover img {
    filter: drop-shadow(0 12px 18px rgba(104, 70, 89, .13));
    transform: scale(1.025);
  }

  .soul-element img {
    transition: filter .22s ease, transform .22s ease;
  }
}

@media (max-width: 1180px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 80px 1rem auto;
    display: grid;
    max-height: calc(100vh - 80px);
    max-height: calc(100dvh - 88px);
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 0 0 12px 12px;
    background: rgba(255, 253, 248, .97);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease;
    overflow: auto;
  }

  .menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a,
  .site-nav .nav-cta {
    width: min(100%, var(--max));
    margin: 0 auto;
    padding: .82rem .95rem;
    border: 1px solid transparent;
    font-size: 1rem;
  }

  .site-nav > a::after {
    display: none;
  }

  .language-switcher {
    width: min(100%, var(--max));
    margin: .35rem auto 0;
    justify-content: flex-start;
  }

  .language-switcher a {
    width: auto;
    margin: 0;
    padding: .48rem .7rem;
  }

}

@media (max-width: 1060px) {
  .section-heading,
  .split,
  .footer-grid,
  .event-venue-teaser,
  .consultation-cta {
    grid-template-columns: 1fr;
  }

  .consultation-cta {
    gap: 1.25rem;
  }

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

  .callback-form-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 900px) {
  .event-detail-layout {
    grid-template-columns: 1fr;
  }

  .event-booking-card {
    position: static;
    order: -1;
  }
}

@media (max-width: 760px) {
  .event-detail-page .page-hero {
    padding: 2.8rem 0 2.5rem;
  }

  .event-detail-page .page-hero h1 {
    font-size: clamp(2.05rem, 8.8vw, 2.7rem);
    line-height: 1.04;
    hyphens: auto;
    overflow-wrap: anywhere;
  }

  .event-detail-page .page-hero .lead {
    margin-top: 1rem;
    font-size: 1rem;
  }

  .event-detail-page .section {
    padding: 2.5rem 0 4rem;
  }

  .event-detail-page .event-booking-card {
    margin-bottom: 2.5rem;
  }

  .event-detail-page .event-detail-nav {
    margin-bottom: 2.25rem;
  }

  .event-detail-page .event-detail-section h2 {
    overflow-wrap: anywhere;
  }

  .header-inner {
    min-height: 70px;
    width: min(100% - 1.25rem, var(--max));
  }

  .site-nav {
    inset: 70px .75rem auto;
    padding: .75rem;
  }

  .brand-name {
    font-size: 1.14rem;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand-sub {
    font-size: .67rem;
  }

  .hero {
    min-height: auto;
    padding: 2.25rem 0 1.8rem;
    background:
      linear-gradient(180deg, rgba(255, 253, 248, .96), rgba(255, 253, 248, .88) 44%, rgba(255, 253, 248, .72)),
      url("../img/soul-portals-ornate.png") center top / 860px auto no-repeat,
      linear-gradient(135deg, #fffdf8, #f8e8ec 55%, #edf4e9);
  }

  .page-hero {
    padding: 3.4rem 0 2.6rem;
    background:
      linear-gradient(180deg, rgba(255, 253, 248, .97), rgba(255, 253, 248, .9) 55%, rgba(255, 253, 248, .78)),
      var(--page-hero-image, url("../img/soulreflect-logo-symbol.png")) var(--page-hero-mobile-position, center top) / var(--page-hero-mobile-size, 220px auto) no-repeat,
      linear-gradient(135deg, #fffdf8, #f8e8ec 55%, #edf4e9);
  }

  .knowledge-nav {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .knowledge-nav a {
    display: grid;
    place-items: center;
    text-align: center;
  }

  .knowledge-topic {
    scroll-margin-top: 88px;
  }

  .knowledge-topic .faq-list {
    grid-template-columns: 1fr;
  }

  .consultation-cta {
    justify-items: start;
  }

  .consultation-cta .btn {
    width: 100%;
  }

  .intention-strip {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .intention-actions {
    width: 100%;
  }

  .callback-page-hero {
    padding: 3.5rem 0;
  }

  .callback-phone-icon {
    width: 74px;
    height: 74px;
  }

  .callback-steps {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .callback-step {
    max-width: 420px;
    margin-inline: auto;
  }

  .session-room-figure figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: .55rem;
  }

  .session-room-image img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .soul-elements-grid,
  .grid.two,
  .grid.three,
  .grid.four,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .book-card {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    min-height: 0;
    padding: 1.35rem;
  }

  .book-card .book-cover {
    max-width: 220px;
    margin-inline: auto;
  }

  .book-card-copy {
    width: 100%;
  }

  .book-card-copy h3,
  .book-card-copy > .prose {
    text-align: center;
  }

  .book-feature,
  .book-feature:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    padding: 1.3rem;
  }

  .book-feature:nth-child(even) .book-cover,
  .book-feature:nth-child(even) .book-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .book-feature .book-cover {
    max-width: 240px;
    margin-inline: auto;
  }

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

  .book-card::after {
    display: none;
  }

  .timeline::before {
    left: var(--timeline-axis);
  }

  .timeline {
    --timeline-axis: .48rem;
    gap: 1rem;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: .45rem;
    min-height: 0;
    padding-left: 2rem;
  }

  .timeline-item::before {
    left: calc(var(--timeline-axis) - .45rem);
  }

  .timeline-item::after {
    left: var(--timeline-axis);
    width: 1.15rem;
  }

  .timeline-year {
    justify-self: start;
    font-size: 1.16rem;
    line-height: 1.2;
  }

  .timeline-text {
    padding: .9rem 1rem;
  }

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

  .btn {
    width: 100%;
  }

  .portrait-card {
    max-width: 420px;
    margin-inline: auto;
  }

  .home-about {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .home-about::before {
    display: none;
  }

  .home-about-copy .eyebrow {
    margin-inline: auto;
  }

  .home-about-tags {
    justify-content: center;
  }

  .home-portrait {
    margin-inline: auto;
  }
}

@media (max-width: 480px) {
  :root {
    --space: clamp(3rem, 12vw, 4.25rem);
  }

  body {
    font-size: 15.5px;
    line-height: 1.66;
  }

  main {
    font-size: 1rem;
  }

  .header-inner {
    min-height: 64px;
  }

  .site-nav {
    inset: 64px .5rem auto;
    max-height: calc(100dvh - 72px);
  }

  .brand {
    gap: .5rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-sub {
    font-size: .6rem;
    letter-spacing: .06em;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3.25rem);
  }

  h2 {
    font-size: clamp(1.7rem, 8vw, 2.45rem);
  }

  h3 {
    font-size: clamp(1.18rem, 5.4vw, 1.45rem);
  }

  .lead,
  .hero-sublead {
    font-size: 1em;
  }

  .hero-actions,
  .button-row {
    margin-top: 1.4rem;
  }

  .hero-actions {
    margin-top: 1rem;
  }

  .home-about {
    padding: 1rem;
  }

  .intention-strip {
    padding: 1.1rem;
  }

  .intention-copy {
    grid-template-columns: 1fr;
    gap: .7rem;
  }

  .intention-mark {
    width: 38px;
    height: 38px;
  }

  .home-portrait {
    width: min(280px, 100%);
  }

  .card,
  .feature,
  .offer-card,
  .experience-card,
  .channel-card,
  .notice-box {
    padding: 1rem;
  }

  .soul-element {
    padding: 1rem .8rem;
  }

  .footer-bottom {
    display: grid;
  }

  .back-to-top {
    bottom: 1rem;
    width: 44px;
    justify-content: center;
    padding: .6rem;
  }

  .back-to-top span:last-child {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

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