:root {
  color-scheme: light;
  --espresso: #512e1d;
  --hibiscus: #e9ac5c;
  --butter: #e4dcb8;
  --lime: #bbb879;
  --terra: #9f351e;
  --cobalt: #2c3394;
  --blue-surf: #90acba;
  --ink: var(--espresso);
  --muted: rgba(81, 46, 29, 0.74);
  --paper: #f6f0df;
  --soft: #e4dcb8;
  --deep: var(--cobalt);
  --line: rgba(81, 46, 29, 0.22);
  --shadow: 0 24px 72px rgba(81, 46, 29, 0.18);
  font-family: "Inter Brand";
}

@font-face {
  font-family: "Editors Note";
  src: url("assets/fonts/editors-note-regular.otf") format("opentype");
  font-weight: 400;
}

@font-face {
  font-family: "Editors Note";
  src: url("assets/fonts/editors-note-italic.otf") format("opentype");
  font-style: italic;
  font-weight: 400;
}

@font-face {
  font-family: "Inter Brand";
  src: url("assets/fonts/inter-light.ttf") format("truetype");
  font-weight: 300;
}

@font-face {
  font-family: "Inter Brand";
  src: url("assets/fonts/inter-regular.ttf") format("truetype");
  font-weight: 400 700;
}

@font-face {
  font-family: "Fira Mono Brand";
  src: url("assets/fonts/fira-mono-regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "La Frenchie";
  src: url("assets/fonts/la-frenchie.ttf") format("truetype");
  font-weight: 400;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

body.nav-open {
  overflow: hidden;
}

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

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

.hidden-field {
  display: none;
}

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

.subpage-main {
  padding-top: 76px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(228, 220, 184, 0.94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(44, 51, 148, 0.28);
  box-shadow: 0 10px 28px rgba(44, 51, 148, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 210px;
}

.brand-shell {
  width: clamp(38px, 4.8vw, 62px);
  height: auto;
  flex: 0 0 auto;
}

.brand-logo {
  width: clamp(152px, 18vw, 228px);
  height: auto;
}

.site-nav {
  position: fixed;
  top: 82px;
  right: clamp(18px, 4vw, 56px);
  z-index: 40;
  display: grid;
  min-width: min(300px, calc(100vw - 36px));
  padding: 10px;
  border: 1px solid rgba(44, 51, 148, 0.24);
  border-top: 5px solid var(--cobalt);
  background: rgba(246, 240, 223, 0.98);
  box-shadow: 0 18px 42px rgba(52, 37, 25, 0.18);
  color: var(--espresso);
  font-size: 0.94rem;
  font-family: "Fira Mono Brand";
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a {
  padding: 13px 16px;
  border-bottom: 1px solid rgba(81, 46, 29, 0.14);
  color: var(--espresso);
  transition: background-color 160ms ease, color 160ms ease, padding-left 160ms ease;
}

.site-nav a:last-child {
  border-bottom: 0;
}

.site-nav a:hover {
  padding-left: 22px;
  background: rgba(144, 172, 186, 0.32);
  color: var(--cobalt);
}

.nav-toggle {
  position: relative;
  z-index: 50;
  display: grid;
  width: 64px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--cobalt);
  border-radius: 0;
  background: var(--cobalt);
  box-shadow: 0 10px 24px rgba(44, 51, 148, 0.18);
  transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.nav-toggle:hover {
  background: #242a80;
  box-shadow: 0 12px 28px rgba(44, 51, 148, 0.24);
  transform: translateY(-1px);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 2px 0;
  border-radius: 999px;
  background: var(--butter);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-toggle span:nth-child(2) {
  width: 18px;
}

.nav-toggle span:last-child {
  width: 22px;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

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

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.64fr);
  gap: clamp(34px, 7vw, 104px);
  align-items: center;
  min-height: 100svh;
  padding: 96px clamp(18px, 4vw, 56px) 24px;
  overflow: hidden;
  isolation: isolate;
  text-align: left;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background: var(--paper);
}

.hero::after {
  position: absolute;
  inset: 0 42% 0 0;
  z-index: -1;
  content: "";
  background: rgba(144, 172, 186, 0.58);
}

.hero-media {
  position: relative;
  width: min(100%, 460px);
  justify-self: end;
  margin: 0;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 0;
  box-shadow: -18px 18px 0 rgba(228, 220, 184, 0.92), 0 20px 54px rgba(81, 46, 29, 0.18);
  object-fit: cover;
  object-position: 50% 30%;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 780px);
}

.hero-content::before {
  display: none;
}

.eyebrow,
.label {
  margin: 0 0 14px;
  color: var(--terra);
  font-family: "Fira Mono Brand";
  font-size: clamp(0.86rem, 1.05vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Editors Note";
  font-weight: 400;
  line-height: 0.98;
}

h1 {
  max-width: 820px;
  margin: 0 0 clamp(18px, 2.6vw, 30px);
  color: var(--cobalt);
  font-family: "Editors Note";
  font-style: italic;
  font-size: clamp(5.8rem, 10.5vw, 10.8rem);
  line-height: 0.88;
}

h2 {
  color: var(--espresso);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.35rem, 5vw, 4.7rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
  line-height: 1.22;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-subtitle,
.hero-copy {
  max-width: 660px;
  margin-right: 0;
  margin-left: 0;
}

.hero-subtitle {
  margin-bottom: clamp(18px, 2.4vw, 28px);
  max-width: 520px;
  color: var(--espresso);
  font-family: "Inter Brand";
  font-style: normal;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-weight: 300;
  line-height: 1.32;
}

.hero-service {
  max-width: 560px;
  margin-bottom: clamp(20px, 3vw, 34px);
  color: var(--cobalt);
  font-family: "Fira Mono Brand";
  font-size: clamp(0.86rem, 1.15vw, 1.02rem);
  letter-spacing: 0.08em;
  line-height: 1.55;
  text-transform: uppercase;
}

.hero-copy {
  margin-top: 14px;
  margin-bottom: 0;
  color: var(--espresso);
  font-family: "Fira Mono Brand";
  font-size: clamp(0.82rem, 1.12vw, 0.98rem);
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 0;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--deep);
  border-radius: 999px;
  font-family: "Fira Mono Brand";
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

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

.button.primary {
  background: var(--deep);
  color: var(--butter);
}

.hero .button.primary {
  border-color: var(--cobalt);
  background: var(--cobalt);
  color: var(--butter);
}

.hero .button.secondary {
  border-color: var(--cobalt);
  background: var(--butter);
  color: var(--cobalt);
}

.button.secondary {
  border-color: var(--terra);
  background: rgba(233, 172, 92, 0.24);
  color: var(--deep);
}

.intro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: clamp(34px, 5vw, 62px) clamp(18px, 4vw, 56px) 0;
  overflow: hidden;
  border: 1px solid rgba(44, 51, 148, 0.22);
  border-radius: 8px;
  background: var(--line);
}

.intro > div {
  min-height: 150px;
  padding: clamp(22px, 3vw, 32px);
  background: rgba(246, 240, 223, 0.92);
}

.intro > div:nth-child(1) {
  background: rgba(228, 220, 184, 0.96);
}

.intro > div:nth-child(2) {
  background: rgba(144, 172, 186, 0.52);
}

.intro > div:nth-child(3) {
  background: rgba(233, 172, 92, 0.46);
}

.intro p {
  max-width: 320px;
  margin-bottom: 0;
  color: var(--espresso);
  font-weight: 300;
}

.meditation-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.48fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding: clamp(56px, 8vw, 96px) clamp(18px, 4vw, 56px);
  background: var(--cobalt);
}

.meditation-copy {
  max-width: 820px;
}

.meditation-copy .eyebrow,
.meditation-copy h2,
.meditation-copy p {
  color: var(--butter);
}

.meditation-copy p:not(.eyebrow) {
  max-width: 650px;
  font-size: clamp(1rem, 1.45vw, 1.16rem);
}

.meditation-form {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(228, 220, 184, 0.42);
  background: rgba(228, 220, 184, 0.16);
}

.meditation-form label {
  display: grid;
  gap: 8px;
  color: var(--butter);
  font-family: "Fira Mono Brand";
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.meditation-form input {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(228, 220, 184, 0.5);
  background: var(--butter);
  color: var(--espresso);
  font: 1rem "Inter Brand";
  padding: 0 14px;
}

.meditation-form .button {
  border-color: var(--hibiscus);
  background: var(--hibiscus);
  color: var(--espresso);
}

.visual-band {
  padding: clamp(48px, 8vw, 92px) clamp(18px, 4vw, 56px);
  background: var(--butter);
}

.visual-band-copy {
  max-width: 980px;
}

[data-reveal-item] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 780ms ease, transform 780ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal-group].is-visible [data-reveal-item] {
  opacity: 1;
  transform: translateY(0);
}

.visual-band p {
  color: var(--espresso);
  max-width: 920px;
  font-family: "Editors Note";
  font-size: clamp(1.35rem, 2.6vw, 2.15rem);
  line-height: 1.18;
}

.visual-band h2 {
  margin: clamp(28px, 4vw, 44px) 0 22px;
  color: var(--cobalt);
  font-size: clamp(2.9rem, 7vw, 6.4rem);
}

.visual-band ul {
  display: grid;
  gap: 12px;
  max-width: 880px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.visual-band li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(81, 46, 29, 0.9);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.45;
}

.visual-band li::before {
  display: block;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin-top: 4px;
  content: "";
  background: url("assets/creative-flow-shell-cobalt.png") center / contain no-repeat;
}

.emphasis-mark {
  position: relative;
  display: inline-block;
  color: var(--espresso);
  font-weight: 400;
}

.emphasis-mark.underline {
  padding: 0;
  margin: 0 -0.06em;
  background: none;
  text-decoration: none;
}

.emphasis-mark.underline::after {
  position: absolute;
  right: 0.02em;
  bottom: 0.08em;
  left: 0.02em;
  z-index: -1;
  height: 0.34em;
  content: "";
  background: rgba(233, 172, 92, 0.62);
}

.emphasis-mark.circle {
  padding: 0 0.12em;
  border-radius: 999px;
  box-shadow: 0 0 0 3px var(--terra);
  white-space: nowrap;
}

.visual-cta {
  margin-top: clamp(24px, 4vw, 38px);
  min-height: 58px;
  padding: 0 34px;
  border: 2px solid var(--cobalt);
  background: transparent;
  color: var(--cobalt);
  font-size: 0.92rem;
}

.section {
  padding: clamp(74px, 10vw, 132px) clamp(18px, 4vw, 56px);
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 0.92fr);
  gap: clamp(38px, 8vw, 112px);
  align-items: center;
  background: rgba(246, 240, 223, 0.96);
}

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

.approach-art {
  width: min(100%, 460px);
  margin: 0;
  justify-self: start;
}

.approach-art img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  object-position: 50% 50%;
}

.prose {
  position: relative;
  max-width: 680px;
  border-left: 0;
  padding-left: clamp(24px, 4vw, 48px);
}

.prose::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: clamp(-22px, -3vw, -12px);
  width: 3px;
  content: "";
  background: var(--blue-surf);
}

.prose p {
  color: var(--espresso);
  font-size: 1.05rem;
}

.approach-prose {
  margin-top: 28px;
  padding-left: 0;
}

.approach-prose::before {
  display: none;
}

.coastline-break {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.coastline-break img {
  width: 100%;
  height: clamp(300px, 46vw, 660px);
  object-fit: cover;
  object-position: 50% 56%;
  filter: saturate(0.9);
}

.prose p:last-child,
.support-grid p,
.contact-copy p:last-child,
.faq p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(34px, 5vw, 56px);
}

.experience {
  background: rgba(187, 184, 121, 0.68);
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(150px, 0.28fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
}

.experience-photos {
  display: grid;
  gap: 16px;
  width: min(100%, 260px);
}

.experience-photo {
  margin: 0;
  overflow: hidden;
  border: 2px solid rgba(159, 53, 30, 0.32);
  box-shadow: var(--shadow);
}

.experience-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 18%;
}

.experience-prose {
  display: grid;
  gap: clamp(24px, 3.2vw, 44px);
  max-width: 920px;
}

.experience-prose p {
  margin: 0;
  color: var(--espresso);
  font-family: "Inter Brand";
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
  font-weight: 300;
  line-height: 1.72;
}

.surf-photo img {
  object-position: 50% 58%;
}

.emdr {
  background: rgba(144, 172, 186, 0.58);
}

.emdr-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(240px, 0.42fr);
  gap: clamp(30px, 7vw, 86px);
  align-items: start;
}

.emdr-layout:has(.emdr-copy:only-child) {
  grid-template-columns: minmax(0, 920px);
}

.emdr-copy {
  display: grid;
  gap: 24px;
}

.emdr-layout p {
  max-width: 760px;
  font-size: 1.08rem;
}

.emdr-layout ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.emdr-layout li {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(246, 240, 223, 0.78);
  color: var(--cobalt);
  font-family: "Fira Mono Brand";
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.emdr-photo,
.coming-soon-photo,
.contact-photo {
  margin: 0;
  overflow: hidden;
  border: 2px solid rgba(44, 51, 148, 0.34);
  box-shadow: var(--shadow);
}

.emdr-photo {
  width: min(100%, 330px);
  justify-self: end;
}

.emdr-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.9);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--line);
}

.support-grid article {
  min-height: 260px;
  padding: clamp(24px, 3vw, 34px);
  background: var(--paper);
}

.support-grid article:first-child {
  background: rgba(246, 240, 223, 0.92);
}

.support-grid article:nth-child(2) {
  background: rgba(144, 172, 186, 0.62);
}

.support-grid article:nth-child(3) {
  background: rgba(233, 172, 92, 0.58);
}

.support-grid article:nth-child(4) {
  background: rgba(187, 184, 121, 0.62);
}

.calm-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 18px;
  margin-top: clamp(28px, 5vw, 52px);
}

.calm-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 2px solid rgba(159, 53, 30, 0.28);
}

.calm-gallery img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(0.86);
}

.calm-gallery figure:first-child img {
  object-position: 50% 56%;
}

.calm-gallery figure:last-child img {
  object-position: 72% 50%;
}

.coming-soon {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.5fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding: clamp(62px, 8vw, 96px) clamp(18px, 4vw, 56px);
  background: rgba(233, 172, 92, 0.48);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.coming-soon-copy {
  display: grid;
  justify-items: start;
  max-width: 760px;
  text-align: left;
}

.coming-soon-mark {
  width: clamp(76px, 9vw, 132px);
  margin-bottom: 18px;
}

.coming-soon h2 {
  max-width: 980px;
  margin-bottom: 20px;
  color: var(--cobalt);
}

.coming-soon .eyebrow {
  justify-self: start;
  color: var(--terra);
}

.coming-soon p:not(.eyebrow) {
  max-width: 640px;
  color: var(--espresso);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
}

.coming-soon-photo {
  width: min(100%, 410px);
  justify-self: end;
  border: 0;
  box-shadow: none;
}

.coming-soon-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  object-position: 50% 50%;
  background: transparent;
  filter: saturate(0.88);
}

.waitlist-form {
  display: grid;
  width: min(100%, 340px);
  gap: 12px;
  margin-top: clamp(20px, 3vw, 30px);
  padding: clamp(16px, 2.4vw, 22px);
  border: 1px solid rgba(44, 51, 148, 0.28);
  background: rgba(246, 240, 223, 0.82);
  box-shadow: var(--shadow);
}

.waitlist-form label {
  display: grid;
  gap: 8px;
  color: var(--espresso);
  font-family: "Fira Mono Brand";
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.waitlist-form input {
  width: 100%;
  min-height: 40px;
  border: 1px solid rgba(81, 46, 29, 0.3);
  background: var(--paper);
  color: var(--espresso);
  font: 1rem "Inter Brand";
  padding: 0 14px;
}

.waitlist-form input:focus {
  outline: 3px solid rgba(44, 51, 148, 0.22);
  outline-offset: 2px;
}

.waitlist-form .button {
  min-height: 42px;
  justify-self: center;
  width: auto;
}

.blog {
  background: var(--paper);
}

.blog-page {
  min-height: 100svh;
  padding-top: clamp(130px, 16vw, 190px);
}

.blog-page h1 {
  max-width: 1060px;
  color: var(--cobalt);
  font-family: "Editors Note";
  font-style: normal;
  font-size: clamp(3.8rem, 8vw, 8rem);
  line-height: 0.94;
}

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

.blog-grid article {
  min-height: 240px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(44, 51, 148, 0.22);
  background: var(--butter);
}

.blog-grid article:nth-child(2) {
  background: rgba(144, 172, 186, 0.46);
}

.blog-grid p {
  margin-bottom: 0;
}

.blog-post {
  max-width: 920px;
  margin-top: clamp(54px, 8vw, 92px);
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid rgba(44, 51, 148, 0.18);
  background: rgba(228, 220, 184, 0.45);
}

.blog-post h2 {
  margin-bottom: clamp(24px, 4vw, 38px);
  color: var(--cobalt);
  font-size: clamp(2.8rem, 6vw, 5.4rem);
}

.blog-post h3 {
  margin-top: clamp(34px, 5vw, 48px);
  color: var(--terra);
  font-family: "Editors Note";
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 400;
}

.blog-post p,
.blog-post li {
  color: rgba(81, 46, 29, 0.9);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.78;
}

.blog-post ul {
  display: grid;
  gap: 10px;
  padding-left: 1.25rem;
}

.blog-post a {
  color: var(--cobalt);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.blog-signature {
  margin-top: 26px;
  color: var(--terra);
  font-family: "Editors Note";
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.blog-signature span {
  display: block;
  margin-top: 6px;
  font-family: "La Frenchie";
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 0.9;
}

.references-list {
  font-size: 0.95rem;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

details {
  border: 1px solid rgba(44, 51, 148, 0.22);
  border-radius: 0;
  background: var(--paper);
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--cobalt);
  font-weight: 700;
}

details p {
  padding: 0 24px 24px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.7fr);
  gap: clamp(36px, 7vw, 96px);
  padding: clamp(74px, 10vw, 132px) clamp(18px, 4vw, 56px);
  background: var(--lime);
}

.contact-copy {
  max-width: 690px;
}

.contact-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 5.8rem);
}

.crisis-note {
  margin-top: 28px;
  color: rgba(81, 46, 29, 0.78);
  font-size: 0.78rem;
  line-height: 1.5;
}

.contact-photo {
  width: min(100%, 430px);
  margin-top: 0;
  margin-right: auto;
  margin-left: auto;
  align-self: center;
  justify-self: end;
}

.contact-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: saturate(0.86);
}

.contact-panel {
  display: grid;
  gap: 18px;
  align-self: start;
  margin-top: clamp(28px, 4vw, 44px);
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(44, 51, 148, 0.28);
  border-radius: 0;
  background: rgba(246, 240, 223, 0.84);
  box-shadow: var(--shadow);
}

.contact-panel > div {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.contact-panel a:not(.button) {
  color: var(--deep);
  font-family: "Fira Mono Brand";
  font-weight: 400;
  overflow-wrap: anywhere;
}

.contact-panel p {
  margin-bottom: 0;
}

.button:focus-visible,
.site-nav a:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid rgba(198, 127, 98, 0.45);
  outline-offset: 3px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: var(--espresso);
}

.site-footer p {
  margin: 0;
  color: rgba(228, 220, 184, 0.82);
  font-size: 0.9rem;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal-item] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (min-width: 1181px) and (max-width: 1360px) {
  .coming-soon {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 34px;
    text-align: center;
  }

  .coming-soon-copy {
    justify-items: center;
    max-width: 780px;
    text-align: center;
  }

  .coming-soon .eyebrow {
    justify-self: center;
  }

  .waitlist-form,
  .coming-soon-photo {
    width: min(100%, 390px);
    justify-self: center;
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 0.96fr) minmax(280px, 0.56fr);
    gap: clamp(30px, 5vw, 58px);
    padding-top: 104px;
  }

  h1 {
    font-size: clamp(5.1rem, 9vw, 7.6rem);
  }

  .hero-media {
    width: min(100%, 380px);
  }

  .split {
    grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
    gap: clamp(34px, 5vw, 58px);
  }

  .contact {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
    gap: clamp(34px, 5vw, 58px);
  }

  .contact-panel {
    margin-top: clamp(28px, 4vw, 44px);
  }

  .meditation-section {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
    gap: clamp(30px, 5vw, 58px);
  }

  .coming-soon {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 34px;
    text-align: center;
  }

  .coming-soon-copy {
    justify-items: center;
    max-width: 740px;
    text-align: center;
  }

  .coming-soon .eyebrow {
    justify-self: center;
  }

  .waitlist-form,
  .coming-soon-photo {
    width: min(100%, 380px);
    justify-self: center;
  }
}

@media (max-width: 980px) {
  .intro,
  .support-grid,
  .blog-grid,
  .calm-gallery,
  .split,
  .contact,
  .hero,
  .meditation-section,
  .experience-layout,
  .emdr-layout,
  .coming-soon,
  .visual-band {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-bottom: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 108px;
    padding-bottom: 54px;
    text-align: center;
  }

  .hero::after {
    inset: 0 0 48% 0;
  }

  .hero-content,
  .hero-subtitle,
  .hero-copy {
    margin-right: auto;
    margin-left: auto;
  }

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

  .hero-media {
    max-width: 315px;
    justify-self: center;
    margin-inline: auto;
  }

  .approach-art {
    width: min(100%, 420px);
    justify-self: center;
  }

  .intro {
    transform: none;
  }

  .visual-band-copy,
  .section-heading,
  .section-copy,
  .meditation-copy,
  .coming-soon-copy,
  .contact-copy {
    max-width: 760px;
  }

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

  .prose {
    border-left: 0;
    padding-left: 0;
  }

  .experience-photos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 520px;
  }

  .emdr-photo {
    width: min(100%, 360px);
    justify-self: start;
  }

  .coming-soon-photo,
  .contact-photo {
    width: min(100%, 360px);
    justify-self: center;
  }

  .contact-panel {
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand-logo {
    width: 145px;
  }

  .brand-shell {
    width: 38px;
  }

  .site-nav {
    top: 74px;
    right: 18px;
    font-size: 1rem;
  }

  .hero {
    min-height: 100svh;
    text-align: center;
    padding: 82px 18px 20px;
  }

  .hero::after {
    inset: 0 0 45% 0;
  }

  .hero-media {
    max-width: min(100%, 265px);
    margin-top: 14px;
    margin-bottom: 10px;
  }

  h1 {
    font-size: clamp(4.1rem, 17vw, 6.2rem);
    margin-right: auto;
    margin-bottom: 16px;
    margin-left: auto;
  }

  h2 {
    font-size: clamp(2.25rem, 10vw, 3.35rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-subtitle {
    margin-bottom: 16px;
    margin-right: auto;
    margin-left: auto;
    font-size: 1.35rem;
    line-height: 1.08;
  }

  .hero-copy {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 0.64rem;
    line-height: 1.42;
  }

  .button {
    min-height: 42px;
    padding: 0 16px;
    font-size: 0.68rem;
  }

  .intro {
    margin: 30px 0 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .section,
  .contact {
    padding-right: 18px;
    padding-left: 18px;
  }

  .approach-art img {
    aspect-ratio: 16 / 10;
    height: auto;
  }

  .coming-soon {
    justify-items: center;
  }

  .coming-soon-copy {
    justify-items: center;
    text-align: center;
  }

  .coming-soon .eyebrow {
    justify-self: center;
  }

  .waitlist-form,
  .coming-soon-photo {
    width: min(100%, 340px);
  }
}
