:root {
  --background: #f1e7dc;
  --background-deep: #e8d9cb;
  --surface: rgba(252, 246, 240, 0.8);
  --surface-strong: rgba(250, 243, 236, 0.92);
  --surface-header: rgba(247, 239, 232, 0.72);
  --ink: #2d201a;
  --ink-soft: #68574a;
  --accent: #956149;
  --accent-deep: #714330;
  --line: rgba(70, 48, 36, 0.14);
  --line-strong: rgba(70, 48, 36, 0.24);
  --shadow-soft: 0 28px 68px rgba(52, 33, 24, 0.08);
  --shadow-panel: 0 12px 28px rgba(52, 33, 24, 0.07);
  --forest: #1f3529;
  --forest-soft: rgba(31, 53, 41, 0.08);
  --display: "Cormorant Garamond", serif;
  --body: "Commissioner", sans-serif;
  --container: min(1160px, calc(100% - 2.4rem));
  --copy: min(45rem, 100%);
  --header-height: 76px;
  --ease-standard: cubic-bezier(0.32, 0, 0.16, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: var(--body);
  background:
    radial-gradient(circle at top left, rgba(255, 247, 240, 0.82), transparent 20%),
    radial-gradient(circle at right 18%, rgba(202, 156, 126, 0.1), transparent 24%),
    radial-gradient(circle at 58% 18%, rgba(255, 252, 248, 0.14), transparent 22%),
    linear-gradient(180deg, #f4ece3 0%, var(--background) 45%, var(--background-deep) 100%);
}

body.nav-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 16%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 32%, rgba(70, 48, 36, 0.015) 72%, transparent);
  opacity: 0.48;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 50;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(31, 19, 13, 0.94);
  color: #fff8f2;
  transform: translateY(-180%);
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.site-shell {
  position: relative;
  min-height: 100svh;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  width: var(--container);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: var(--header-height);
  padding: 1rem 0;
  border-bottom: 1px solid transparent;
  transition:
    padding 360ms var(--ease-standard),
    background 360ms var(--ease-standard),
    box-shadow 360ms var(--ease-standard),
    border-color 360ms var(--ease-standard),
    backdrop-filter 360ms var(--ease-standard);
  will-change: padding, background, box-shadow;
}

.site-header.is-scrolled {
  padding: 0.92rem 0.95rem 0.96rem;
  border-color: rgba(70, 48, 36, 0.1);
  border-radius: 0 0 0.85rem 0.85rem;
  background: linear-gradient(180deg, rgba(247, 239, 232, 0.88), var(--surface-header));
  box-shadow: var(--shadow-panel);
  backdrop-filter: blur(10px) saturate(1.01);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: transform 260ms var(--ease-standard);
}

.brand-mark {
  width: 1.65rem;
  height: 1.65rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(70, 48, 36, 0.08);
  background: rgba(255, 251, 247, 0.22);
  font-family: var(--display);
  font-size: 1rem;
  transition:
    background 260ms var(--ease-standard),
    border-color 260ms var(--ease-standard),
    transform 260ms var(--ease-standard);
}

.brand-copy {
  display: grid;
  gap: 0.08rem;
}

.brand-copy strong {
  font-size: 0.95rem;
  font-weight: 600;
}

.brand-copy span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(104, 87, 74, 0.82);
  transition: color 260ms var(--ease-standard);
}

.site-nav-priority {
  color: rgba(45, 32, 26, 0.92);
  font-weight: 600;
}

.site-nav a,
.text-link,
.footer-links a {
  position: relative;
}

.site-nav a::after,
.text-link::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.12rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease-standard);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.text-link:hover::after,
.text-link:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 250, 246, 0.8);
  color: var(--ink);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.26rem;
}

.nav-toggle span {
  width: 1rem;
  height: 1px;
  background: currentColor;
}

.section-label,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.section-label::before,
.eyebrow::before {
  content: "";
  width: 2.25rem;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 6.3rem);
}

h2 {
  font-size: clamp(2.15rem, 4.8vw, 4.15rem);
}

h3 {
  font-size: clamp(1.4rem, 2vw, 1.95rem);
}

p {
  margin: 0;
}

.lead,
.body-copy,
.dense-copy p,
.home-presence-note p,
.longform-main p,
.quiet-note p,
.route-note p,
.support-notes p,
.contact-copy p,
.site-footer p {
  color: var(--ink-soft);
  line-height: 1.82;
}

.lead {
  font-size: 1.05rem;
}

.body-copy {
  max-width: 34rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 3rem;
  padding: 0.82rem 1.3rem;
  border: 1px solid rgba(45, 32, 26, 0.75);
  border-radius: 999px;
  background: rgba(255, 248, 241, 0.3);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(52, 33, 24, 0.035);
  transition:
    background 220ms var(--ease-standard),
    transform 220ms var(--ease-standard),
    border-color 220ms var(--ease-standard),
    box-shadow 260ms var(--ease-standard);
}

.button:hover,
.button:focus-visible {
  background: rgba(255, 248, 241, 0.5);
  border-color: rgba(45, 32, 26, 0.92);
  box-shadow: 0 12px 22px rgba(52, 33, 24, 0.055);
  transform: translateY(-1px);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  font-weight: 600;
  color: var(--accent-deep);
}

.page-band,
.site-footer {
  width: var(--container);
  margin: 0 auto;
}

.flow-section {
  position: relative;
}

.flow-page-home .flow-entry,
.flow-page-first-meeting .flow-entry,
.flow-page-home .flow-quiet,
.flow-page-home .flow-choices,
.flow-page-home .flow-cta,
.flow-page-first-meeting .flow-longform,
.flow-page-first-meeting .flow-cta {
  isolation: isolate;
}

.flow-page-home .flow-entry::before,
.flow-page-first-meeting .flow-entry::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: -1;
}

.flow-page-home .flow-entry::before {
  top: clamp(0.35rem, 1vw, 1rem);
  bottom: clamp(-8rem, -8vw, -5.8rem);
  background:
    radial-gradient(circle at 14% 14%, rgba(255, 252, 248, 0.88), transparent 23%),
    radial-gradient(circle at 83% 20%, rgba(186, 143, 116, 0.1), transparent 24%),
    linear-gradient(
      180deg,
      rgba(249, 242, 235, 0.94) 0%,
      rgba(244, 236, 228, 0.78) 56%,
      rgba(241, 231, 220, 0.18) 100%
    );
}

.flow-page-first-meeting .flow-entry::before {
  top: clamp(0.5rem, 1.3vw, 1.15rem);
  bottom: clamp(-9.5rem, -11vw, -7rem);
  background:
    radial-gradient(circle at 18% 15%, rgba(255, 251, 247, 0.84), transparent 22%),
    radial-gradient(circle at 82% 18%, rgba(173, 133, 107, 0.09), transparent 24%),
    linear-gradient(
      180deg,
      rgba(247, 239, 231, 0.94) 0%,
      rgba(242, 233, 223, 0.74) 52%,
      rgba(241, 231, 220, 0.12) 100%
    );
}

.flow-page-home .flow-quiet::before,
.flow-page-home .flow-choices::before,
.flow-page-home .flow-cta::before,
.flow-page-first-meeting .flow-longform::before,
.flow-page-first-meeting .flow-cta::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: -1;
}

.flow-page-home .flow-quiet::before {
  top: clamp(-1.4rem, -1.8vw, -0.8rem);
  bottom: clamp(-2.2rem, -3vw, -1.5rem);
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 252, 248, 0.82), transparent 21%),
    linear-gradient(
      180deg,
      rgba(250, 244, 238, 0.94) 0%,
      rgba(245, 237, 229, 0.88) 68%,
      rgba(240, 230, 220, 0.44) 100%
    );
  border-top: 1px solid rgba(70, 48, 36, 0.05);
  border-bottom: 1px solid rgba(70, 48, 36, 0.05);
}

.flow-page-home .flow-choices::before {
  top: clamp(-2.1rem, -3vw, -1.4rem);
  bottom: clamp(-3rem, -4vw, -2rem);
  background:
    radial-gradient(circle at 82% 24%, rgba(255, 252, 248, 0.52), transparent 20%),
    radial-gradient(circle at 18% 72%, rgba(175, 132, 106, 0.08), transparent 26%),
    linear-gradient(
      180deg,
      rgba(239, 229, 218, 0.3) 0%,
      rgba(246, 239, 232, 0.78) 22%,
      rgba(241, 231, 220, 0.92) 100%
    );
  border-top: 1px solid rgba(70, 48, 36, 0.06);
  border-bottom: 1px solid rgba(70, 48, 36, 0.05);
}

.flow-page-home .flow-cta::before {
  top: clamp(-1.6rem, -2vw, -1rem);
  bottom: clamp(-2.2rem, -3vw, -1.4rem);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 251, 247, 0.68), transparent 42%),
    linear-gradient(
      180deg,
      rgba(239, 229, 218, 0.22) 0%,
      rgba(244, 236, 227, 0.72) 100%
    );
}

.flow-page-first-meeting .flow-longform::before {
  top: clamp(-2.6rem, -3.8vw, -1.8rem);
  bottom: clamp(-2.8rem, -3.8vw, -1.8rem);
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 251, 247, 0.78), transparent 22%),
    radial-gradient(circle at 84% 68%, rgba(171, 130, 106, 0.07), transparent 24%),
    linear-gradient(
      180deg,
      rgba(249, 242, 235, 0.9) 0%,
      rgba(245, 237, 229, 0.94) 40%,
      rgba(241, 231, 220, 0.84) 100%
    );
  border-top: 1px solid rgba(70, 48, 36, 0.05);
  border-bottom: 1px solid rgba(70, 48, 36, 0.04);
}

.flow-page-first-meeting .flow-cta::before {
  top: clamp(-1.8rem, -2.2vw, -1rem);
  bottom: clamp(-2rem, -2.4vw, -1rem);
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 252, 248, 0.44), transparent 22%),
    linear-gradient(
      180deg,
      rgba(247, 239, 232, 0.84) 0%,
      rgba(242, 232, 222, 0.92) 100%
    );
  border-top: 1px solid rgba(70, 48, 36, 0.05);
}

.home-hero,
.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(22rem, 0.88fr);
  gap: clamp(2rem, 5vw, 5.8rem);
  align-items: stretch;
  padding: calc(var(--header-height) + 1.25rem) 0 clamp(4.2rem, 8vw, 6.6rem);
}

.page-hero-reverse {
  grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.16fr);
  align-items: center;
}

.hero-visual,
.essay-visual {
  margin: 0;
}

.hero-visual img,
.essay-visual img {
  min-height: 34rem;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
  transform-origin: center;
  transition:
    transform 1400ms var(--ease-soft),
    filter 900ms var(--ease-standard);
}

.hero-visual.hero-visual-home {
  width: 100%;
  min-height: clamp(34rem, 72vw, 46rem);
  aspect-ratio: auto;
  justify-self: start;
  overflow: hidden;
  border-radius: clamp(1.35rem, 3vw, 2.6rem);
}

.hero-visual.hero-visual-home img {
  width: 100%;
  height: 100%;
  min-height: 0;
  filter: saturate(0.88) contrast(0.95);
}

.hero-visual-home img,
.hero-visual-portrait img {
  object-position: center 22%;
}

.hero-visual-bath img {
  object-position: center;
}

.hero-block {
  max-width: 30rem;
  display: grid;
  gap: 1rem;
  padding-bottom: clamp(0.4rem, 2vw, 2.6rem);
}

.hero-block-long {
  max-width: 34rem;
}

.hero-block-home {
  max-width: 32rem;
}

.home-hero-actions {
  margin-top: 0.45rem;
}

.home-hero-visual {
  position: relative;
}

.home-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 53, 41, 0.04), rgba(31, 53, 41, 0.16));
  pointer-events: none;
}

.home-hero-copy {
  align-self: center;
  gap: clamp(1.05rem, 1.8vw, 1.3rem);
  padding: clamp(1rem, 2vw, 1.8rem) 0 clamp(0.4rem, 2vw, 1rem);
}

.home-hero-copy h1 {
  color: var(--forest);
  font-size: clamp(3rem, 6.9vw, 5.95rem);
  line-height: 1.01;
  letter-spacing: -0.037em;
}

.home-hero-copy .lead {
  max-width: 30rem;
  font-size: 1.07rem;
  color: rgba(45, 32, 26, 0.88);
  line-height: 1.76;
}

.home-hero-copy .body-copy {
  max-width: 31rem;
  color: var(--ink-soft);
}

.route-line {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 0.45rem 0.9rem;
  align-items: start;
  padding-top: 1.05rem;
  border-top: 1px solid var(--line-strong);
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.route-line span:first-child {
  color: var(--ink);
  font-weight: 600;
}

.route-line-strong {
  font-weight: 600;
  color: var(--accent-deep);
}

.route-line-soft {
  max-width: 24rem;
  color: var(--ink-soft);
}

.route-line-link {
  margin-left: 0.35rem;
}

.copy-mass,
.longform-band,
.support-band,
.contact-band,
.atmosphere-band,
.route-band,
.home-presence,
.meeting-field,
.bath-field {
  border-top: 1px solid var(--line);
}

.dense-copy {
  display: grid;
  gap: 1rem;
  max-width: 32rem;
  padding-top: 0.4rem;
}

.dense-copy-wide {
  max-width: 36rem;
}

.home-presence-main {
  display: grid;
  gap: 1rem;
}

.home-statement {
  position: relative;
  padding: clamp(4rem, 8.5vw, 6.5rem) 0 clamp(4.8rem, 9.2vw, 7.4rem);
}

.home-statement-copy {
  position: relative;
  display: grid;
  gap: 1.35rem;
  width: min(100%, 52rem);
  margin: 0 auto;
}

.home-statement-copy::before {
  content: "\201C";
  position: absolute;
  left: clamp(-1.2rem, -2vw, -2rem);
  top: clamp(-3.3rem, -1.6vw, -2rem);
  font-family: var(--display);
  font-size: clamp(5.6rem, 9vw, 8rem);
  line-height: 1;
  color: rgba(149, 97, 73, 0.055);
  pointer-events: none;
}

.home-statement-copy h2 {
  position: relative;
  max-width: 14ch;
  font-size: clamp(2.25rem, 4.4vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.036em;
}

.home-statement-note {
  max-width: 34rem;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.home-presence {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(18rem, 0.98fr);
  gap: clamp(2rem, 5vw, 5.6rem);
  align-items: center;
  margin-top: 0;
  border-top: 0;
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.home-presence::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -8%;
  bottom: -8%;
  width: 100vw;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 52% 46%, rgba(252, 246, 240, 0.72), transparent 74%),
    linear-gradient(
      180deg,
      rgba(239, 229, 218, 0.22) 0%,
      rgba(247, 240, 233, 0.34) 46%,
      rgba(241, 231, 220, 0.1) 100%
    );
  pointer-events: none;
  z-index: -2;
}

.home-presence::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: clamp(2.2rem, 3.8vw, 3.2rem);
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.34), transparent 19%),
    linear-gradient(140deg, rgba(251, 244, 237, 0.72), rgba(238, 228, 218, 0.82));
  border: 1px solid rgba(70, 48, 36, 0.05);
  z-index: -1;
}

.home-presence-visual {
  position: relative;
  align-self: center;
  justify-self: start;
  width: min(100%, 27rem);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin: 0;
  transform: translateY(clamp(0.5rem, 1.6vw, 1rem));
  transition: transform 820ms var(--ease-soft);
}

.home-presence-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: clamp(1.35rem, 2.8vw, 2.2rem);
  background:
    linear-gradient(180deg, rgba(252, 246, 240, 0.04), rgba(45, 32, 26, 0.14)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent 34%);
  pointer-events: none;
}

.home-presence-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  border-radius: clamp(1.35rem, 2.8vw, 2.2rem);
  box-shadow: 0 18px 36px rgba(52, 33, 24, 0.075);
  filter: saturate(0.7) contrast(0.95);
}

.home-presence-main {
  width: min(100%, 39rem);
  gap: clamp(0.95rem, 2vw, 1.3rem);
  padding: clamp(1.2rem, 2vw, 1.95rem) clamp(1.3rem, 2vw, 1.9rem)
    clamp(1.55rem, 2.6vw, 2.1rem) clamp(0.95rem, 1.4vw, 1.25rem);
  justify-self: end;
}

.home-presence-main .section-label {
  opacity: 0.9;
}

.home-presence-main h2 {
  max-width: 11ch;
  font-size: clamp(2.3rem, 4.9vw, 4.2rem);
  line-height: 0.99;
}

.home-presence-main .dense-copy {
  max-width: 29rem;
  gap: 0.75rem;
  padding-top: 0.2rem;
}

.home-presence-main .dense-copy p {
  line-height: 1.65;
}

.home-presence-main .dense-copy p:first-child {
  color: rgba(45, 32, 26, 0.9);
  font-size: 1rem;
}

.home-presence-main .dense-copy p:last-child {
  width: fit-content;
  max-width: 21rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(70, 48, 36, 0.14);
  color: rgba(113, 67, 48, 0.9);
  font-size: 0.9rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.home-routes {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
  padding: clamp(4.8rem, 9.4vw, 7.6rem) 0;
  border-top: 1px solid rgba(70, 48, 36, 0.1);
}

.home-route {
  display: grid;
  gap: 1.05rem;
  transition: box-shadow 260ms var(--ease-standard);
}

.home-route-secondary {
  margin-top: clamp(2.7rem, 8.8vw, 8.8rem);
}

.home-route-visual {
  margin: 0;
  overflow: hidden;
  border-radius: clamp(1rem, 2vw, 1.6rem);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 18px rgba(52, 33, 24, 0.03);
  transition: box-shadow 320ms var(--ease-standard);
}

.home-route-visual img {
  height: 100%;
  min-height: 14rem;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
  filter: saturate(0.72) contrast(0.94);
  transition: transform 520ms var(--ease-soft), filter 320ms var(--ease-standard);
}

.home-route-primary .home-route-visual img {
  object-position: center 38%;
  filter: saturate(0.5) contrast(0.93) brightness(1.03);
}

.home-route-secondary .home-route-visual img {
  filter: saturate(0.64) contrast(0.92) brightness(0.98);
}

.home-route:hover .home-route-visual img,
.home-route:focus-within .home-route-visual img {
  transform: scale(1.006);
}

.home-route:hover .home-route-visual,
.home-route:focus-within .home-route-visual {
  box-shadow: 0 10px 20px rgba(52, 33, 24, 0.045);
}

.home-route-copy {
  display: grid;
  gap: 1rem;
}

.home-route-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.home-route-copy h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
}

.home-route-copy p {
  max-width: 32rem;
  color: var(--ink-soft);
  line-height: 1.75;
}

.home-route-primary .home-route-copy h3,
.home-route-primary .home-route-label {
  color: var(--forest);
}

.home-route-secondary .home-route-copy {
  max-width: 29rem;
}

.home-route-secondary .home-route-copy h3 {
  font-size: clamp(1.72rem, 3.2vw, 2.35rem);
}

.home-route-secondary .home-route-copy p,
.home-route-secondary .home-route-label {
  color: rgba(104, 87, 74, 0.88);
}

.home-closing {
  padding: clamp(0.4rem, 1.4vw, 0.8rem) 0 clamp(4rem, 8vw, 6rem);
}

.home-closing-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  padding: clamp(1.75rem, 3.2vw, 2.25rem) clamp(1.35rem, 3.4vw, 2.2rem);
  border-radius: clamp(1.15rem, 2.5vw, 1.7rem);
  background: linear-gradient(140deg, #2f4437, #34483c);
  color: #f7efe8;
  border: 1px solid rgba(247, 239, 232, 0.08);
  box-shadow: 0 14px 28px rgba(31, 53, 41, 0.13);
}

.home-closing-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.05), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 56%);
  pointer-events: none;
}

.home-closing-copy {
  display: grid;
  gap: 0.8rem;
  max-width: 39rem;
}

.home-closing-copy h2 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.04;
  color: inherit;
}

.home-closing-copy p {
  color: rgba(247, 239, 232, 0.78);
  line-height: 1.75;
}

.home-closing-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.15rem;
  border-bottom: 1px solid rgba(247, 239, 232, 0.4);
  color: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  transition:
    border-color 220ms var(--ease-standard),
    transform 220ms var(--ease-standard),
    color 220ms var(--ease-standard);
}

.home-closing-link:hover,
.home-closing-link:focus-visible {
  border-color: rgba(247, 239, 232, 0.92);
  transform: translateY(-1px);
}

.route-band {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(16rem, 0.56fr);
  gap: clamp(1.6rem, 4vw, 3.2rem);
  align-items: start;
  padding: clamp(3.6rem, 7vw, 5.4rem) 0 clamp(4.4rem, 8vw, 6.4rem);
}

.route-dominant,
.route-note {
  display: grid;
  gap: 1rem;
}

.route-dominant {
  max-width: 40rem;
}

.plain-list {
  display: grid;
  gap: 0.9rem;
  padding-top: 0.45rem;
}

.plain-list p {
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  line-height: 1.75;
}

.route-note {
  padding-top: 0.3rem;
}

.route-note h3 {
  font-size: clamp(1.75rem, 3vw, 2.45rem);
}

.longform-band,
.support-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(16rem, 0.58fr);
  gap: clamp(1.6rem, 4vw, 3.2rem);
  align-items: start;
  padding: clamp(3.6rem, 7vw, 5.2rem) 0;
}

.longform-main {
  display: grid;
  gap: 1.15rem;
  max-width: 42rem;
}

.longform-main-deep {
  max-width: 46rem;
  gap: 1.3rem;
}

.meeting-field {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(14rem, 0.48fr);
  gap: clamp(1.6rem, 4vw, 3.2rem);
  align-items: start;
  padding: clamp(3.6rem, 7vw, 5.2rem) 0;
}

.flow-page-first-meeting .meeting-field {
  gap: clamp(1.9rem, 4.4vw, 3.7rem);
  padding-top: clamp(2.8rem, 6vw, 4rem);
  border-top-color: rgba(70, 48, 36, 0.04);
}

.flow-page-first-meeting .flow-cta {
  padding-top: clamp(3.1rem, 6.6vw, 4.4rem);
  border-top-color: rgba(70, 48, 36, 0.06);
}

.flow-page-first-meeting .contact-copy-compact {
  max-width: 21rem;
}

.quiet-note {
  display: grid;
  gap: 0.9rem;
  padding-top: 0.55rem;
}

.meeting-practical,
.bath-practical {
  padding-top: 0.2rem;
}

.quiet-note h2,
.contact-copy h2 {
  font-size: clamp(1.95rem, 3vw, 2.7rem);
}

.atmosphere-band {
  display: grid;
  grid-template-columns: minmax(17rem, 0.72fr) minmax(0, 1fr);
  gap: clamp(1.6rem, 4vw, 3.4rem);
  align-items: start;
  padding: clamp(3.8rem, 7vw, 5.4rem) 0;
}

.atmosphere-band .essay-visual img {
  min-height: 34rem;
}

.bath-field {
  display: grid;
  grid-template-columns: minmax(17rem, 0.7fr) minmax(0, 1.18fr);
  gap: clamp(1.6rem, 4vw, 3.6rem);
  align-items: start;
  padding: clamp(3.8rem, 7vw, 5.4rem) 0;
}

.bath-essay-visual img {
  min-height: 38rem;
}

.bath-branch {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(14rem, 0.5fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: start;
}

.support-notes {
  display: grid;
  gap: 1rem;
  padding-top: 0.25rem;
}

.support-notes strong {
  color: var(--ink);
  font-weight: 600;
}

.contact-band {
  padding: clamp(3.6rem, 7vw, 5.2rem) 0 clamp(4rem, 8vw, 6rem);
}

.form-panel {
  display: grid;
  gap: 1rem;
  padding: clamp(1.6rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.form-panel-head {
  display: grid;
  gap: 0.8rem;
  max-width: 28rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1rem;
  margin-top: 0.25rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(18rem, 1fr);
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: start;
}

.contact-layout-compact {
  grid-template-columns: minmax(14rem, 0.44fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 4vw, 2.8rem);
}

.contact-copy {
  display: grid;
  gap: 1rem;
  max-width: 24rem;
}

.contact-copy-compact {
  max-width: 20rem;
  gap: 0.75rem;
}

.contact-form {
  display: grid;
  gap: 1.15rem;
  max-width: 40rem;
}

.contact-band-muted {
  padding-top: clamp(2.8rem, 6vw, 4rem);
}

.contact-band-muted .contact-form {
  max-width: 36rem;
}

.contact-band-muted .button {
  justify-self: start;
}

.contact-form label {
  display: grid;
  gap: 0.6rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1.05rem 0 0.9rem;
  border: 0;
  border-bottom: 1px solid rgba(70, 48, 36, 0.22);
  background: transparent;
  color: var(--ink);
  border-radius: 0;
}

.contact-form textarea {
  resize: vertical;
  min-height: 7.5rem;
}

.thanks-main {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
}

.thankyou-panel {
  width: min(42rem, 100%);
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 2rem;
  align-items: center;
  padding: 1.6rem 0 2.4rem;
  border-top: 1px solid var(--line);
}

.site-footer p {
  max-width: 26rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.2rem;
  font-size: 0.84rem;
  color: var(--ink-soft);
}

.motion-safe [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 0.65rem, 0);
  transition:
    opacity 620ms var(--ease-soft) var(--reveal-delay, 0ms),
    transform 720ms var(--ease-soft) var(--reveal-delay, 0ms);
}

.motion-safe figure[data-reveal] {
  transform: translate3d(0, 0.8rem, 0);
}

.motion-safe figure[data-reveal] img {
  transform: scale(1.02);
}

.motion-safe [data-reveal].is-visible,
.motion-reduce [data-reveal],
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.motion-safe figure[data-reveal].is-visible img {
  transform: scale(1);
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible,
.brand:focus-visible,
.nav-toggle:focus-visible,
.button:focus-visible,
.text-link:focus-visible,
.site-nav a:focus-visible,
.footer-links a:focus-visible {
  outline: 2px solid rgba(149, 97, 73, 0.34);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .site-header {
    position: sticky;
    left: auto;
    transform: none;
    width: auto;
    padding: 1rem;
    background: linear-gradient(180deg, rgba(244, 236, 227, 0.92), rgba(244, 236, 227, 0.72));
    backdrop-filter: blur(10px);
  }

  .site-header.is-scrolled {
    padding-inline: 1rem;
    border-radius: 0;
    box-shadow: none;
  }

  .home-hero,
  .page-hero,
  .page-hero-reverse,
  .copy-mass,
  .route-band,
  .longform-band,
  .support-band,
  .atmosphere-band,
  .contact-layout,
  .home-presence,
  .meeting-field,
  .bath-field,
  .bath-branch,
  .contact-layout-compact {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 0.1rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border: 1px solid var(--line);
    background: var(--surface-strong);
    box-shadow: 0 12px 28px rgba(52, 33, 24, 0.07);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .home-hero,
  .page-hero,
  .page-hero-reverse {
    align-items: start;
  }

  .page-hero:not(.page-hero-reverse) .hero-block {
    order: 1;
  }

  .page-hero:not(.page-hero-reverse) .hero-visual {
    order: 2;
  }

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

  .home-statement-copy,
  .route-note,
  .quiet-note,
  .contact-copy {
    max-width: 34rem;
  }

  .home-hero {
    padding-top: calc(var(--header-height) + 1.5rem);
  }

  .home-hero-visual {
    order: 2;
  }

  .home-hero-copy {
    order: 1;
    padding-top: 0;
  }

  .home-statement-copy::before {
    left: -0.4rem;
    top: -1.5rem;
    font-size: clamp(4.6rem, 9vw, 6.8rem);
  }

  .home-statement-copy h2 {
    max-width: 15ch;
  }

  .home-presence {
    align-items: start;
    padding-block: clamp(3.5rem, 8vw, 5rem);
  }

  .home-presence::after {
    top: -5%;
    bottom: -5%;
    opacity: 0.72;
  }

  .home-presence::before {
    inset: 0;
    border-radius: clamp(1.55rem, 2.8vw, 2.2rem);
  }

  .home-presence-visual {
    order: 2;
    width: min(100%, 18rem);
    aspect-ratio: 16 / 10;
    transform: none;
  }

  .home-presence-visual img {
    object-position: center 56%;
  }

  .home-presence-main {
    order: 1;
    max-width: 35rem;
    padding: 0 1.1rem 1rem;
  }

  .home-routes {
    grid-template-columns: 1fr;
  }

  .home-route-secondary {
    margin-top: 0;
  }

  .flow-page-home .flow-entry::before,
  .flow-page-first-meeting .flow-entry::before,
  .flow-page-home .flow-quiet::before,
  .flow-page-home .flow-choices::before,
  .flow-page-home .flow-cta::before,
  .flow-page-first-meeting .flow-longform::before,
  .flow-page-first-meeting .flow-cta::before {
    top: 0;
  }

  .flow-page-home .flow-entry::before {
    bottom: clamp(-5.4rem, -8vw, -3.8rem);
  }

  .flow-page-first-meeting .flow-entry::before {
    bottom: clamp(-6rem, -9vw, -4.3rem);
  }

  .flow-page-home .flow-quiet::before,
  .flow-page-home .flow-choices::before,
  .flow-page-home .flow-cta::before,
  .flow-page-first-meeting .flow-longform::before,
  .flow-page-first-meeting .flow-cta::before {
    bottom: clamp(-1.8rem, -3vw, -1rem);
  }

  .home-closing-band {
    align-items: flex-start;
  }

  .contact-copy-compact {
    max-width: 34rem;
  }
}

@media (max-width: 720px) {
  :root {
    --container: calc(100% - 2rem);
    --header-height: 82px;
  }

  .site-header {
    padding-inline: 1rem;
  }

  h1 {
    font-size: clamp(2.45rem, 9.8vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 8.5vw, 3.2rem);
  }

  .hero-visual img,
  .essay-visual img,
  .atmosphere-band .essay-visual img {
    min-height: 19rem;
  }

  .hero-visual.hero-visual-home {
    width: 100%;
    min-height: 0;
    aspect-ratio: 5 / 6;
  }

  .hero-visual.hero-visual-home img {
    min-height: 0;
  }

  .route-line {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .button {
    width: fit-content;
    max-width: min(100%, 17rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-hero-copy h1 {
    font-size: clamp(2.55rem, 10.1vw, 4.2rem);
  }

  .home-hero-copy .lead {
    font-size: 1rem;
  }

  .home-statement {
    padding-top: clamp(4rem, 10vw, 5.2rem);
  }

  .flow-page-home .flow-entry::before {
    bottom: clamp(-4.2rem, -10vw, -2.8rem);
  }

  .flow-page-first-meeting .flow-entry::before {
    bottom: clamp(-4.8rem, -11vw, -3rem);
  }

  .flow-page-home .flow-quiet::before,
  .flow-page-home .flow-choices::before,
  .flow-page-home .flow-cta::before,
  .flow-page-first-meeting .flow-longform::before,
  .flow-page-first-meeting .flow-cta::before {
    bottom: clamp(-1.2rem, -4vw, -0.8rem);
  }

  .home-statement-copy::before {
    left: 0;
    top: -0.6rem;
  }

  .home-statement-copy h2 {
    max-width: 13ch;
    font-size: clamp(1.9rem, 7.5vw, 2.7rem);
  }

  .home-presence-main {
    padding-inline: 1rem;
  }

  .home-presence-visual {
    width: 100%;
    aspect-ratio: 15 / 11;
  }

  .home-presence::after {
    opacity: 0.56;
  }

  .home-presence-main h2 {
    max-width: 9.5ch;
  }

  .home-presence-main .dense-copy {
    max-width: 100%;
  }

  .home-presence-main .dense-copy p:first-child {
    font-size: 1rem;
  }

  .home-presence-main .dense-copy p:last-child {
    max-width: 17rem;
    padding-top: 0.75rem;
  }

  .home-route-visual img {
    min-height: 11.5rem;
  }

  .home-route-copy h3 {
    font-size: clamp(1.65rem, 6.2vw, 2.15rem);
  }

  .home-closing-band {
    padding: 1.45rem 1.1rem 1.6rem;
  }

  .home-closing-link {
    width: fit-content;
    max-width: min(100%, 17rem);
    justify-content: flex-start;
  }

  .site-footer {
    padding-bottom: 2rem;
  }

  .footer-links {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .site-header,
  .brand,
  .brand-mark,
  .site-nav,
  .site-nav a::after,
  .text-link::after,
  .footer-links a::after,
  .button,
  .hero-visual img,
  .essay-visual img,
  .home-presence-visual,
  .home-route,
  .home-route-visual,
  .home-route-visual img,
  .home-closing-link,
  [data-reveal] {
    transition: none !important;
  }
}
