:root {
  color-scheme: dark;
  --forest-black: #11150f;
  --forest-deep: #0c100b;
  --juniper: #182017;
  --juniper-lift: #20281e;
  --charred: #27251f;
  --peat: #302920;
  --earth-red: #724235;
  --earth-red-deep: #593329;
  --copper: #cb9278;
  --saffron: #d0aa68;
  --paper: #f0eadf;
  --stone: #cec5b7;
  --stone-dim: #aaa195;
  --ink: #171913;
  --serif: "Sentient", "Iowan Old Style", "Baskerville", serif;
  --sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: 78rem;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --header-height: 6.25rem;
}

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

html {
  background: var(--forest-black);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1.5rem);
}

body {
  background: var(--forest-black);
  color: var(--paper);
  font-family: var(--sans);
  margin: 0;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

p,
h1,
h2,
h3,
dl,
dd,
ol,
ul,
figure,
fieldset {
  margin: 0;
}

button {
  color: inherit;
}

::selection {
  background: var(--earth-red);
  color: var(--paper);
}

.shell {
  margin-inline: auto;
  max-width: var(--shell);
  padding-inline: var(--gutter);
  width: 100%;
}

.skip-link {
  background: var(--paper);
  color: var(--ink);
  left: 1rem;
  padding: 0.8rem 1rem;
  position: fixed;
  top: 1rem;
  transform: translateY(-180%);
  transition: transform 160ms ease;
  z-index: 300;
}

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

:focus-visible {
  outline: 2px solid var(--saffron);
  outline-offset: 4px;
}

#main-content:focus,
.consent-panel h2:focus,
.inquiry-success:focus {
  outline: none;
}

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

/* Shared shell */
.site-header {
  background: linear-gradient(to bottom, rgba(8, 11, 7, 0.9), rgba(8, 11, 7, 0.48) 58%, transparent);
  color: var(--paper);
  height: var(--header-height);
  inset: 0 0 auto;
  position: fixed;
  transition: background-color 180ms ease;
  view-transition-name: soeling-header;
  z-index: 100;
}

.site-header.has-scrolled,
.site-header-solid {
  background: var(--forest-deep);
}

.site-header-inner {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
  margin-inline: auto;
  max-width: var(--shell);
  padding-inline: var(--gutter);
  width: 100%;
}

.brand-link {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 3.25rem;
  text-decoration: none;
  view-transition-name: soeling-brand;
}

.brand-link img {
  height: auto;
  object-fit: contain;
  width: clamp(9.75rem, 13vw, 11.25rem);
}

.mobile-panel .brand-link {
  view-transition-name: none;
}

.primary-nav {
  align-items: center;
  display: flex;
  gap: clamp(1.8rem, 3vw, 3.4rem);
}

.primary-nav a {
  align-items: center;
  color: rgba(240, 234, 223, 0.88);
  display: inline-flex;
  font-size: 0.9rem;
  min-height: 2.9rem;
  text-decoration: none;
  transition: color 150ms ease;
}

.primary-nav a:hover,
.primary-nav a[aria-current] {
  color: var(--paper);
}

.primary-nav a:last-child {
  color: var(--paper);
  font-weight: 650;
}

.menu-toggle,
.mobile-fallback-nav {
  display: none;
}

.mobile-panel[hidden] {
  display: none;
}

.mobile-panel {
  background: var(--juniper);
  display: grid;
  grid-template-rows: auto 1fr auto;
  inset: 0;
  min-height: 100svh;
  padding: 0 var(--gutter) 2rem;
  position: fixed;
  z-index: 130;
}

.mobile-panel-top {
  align-items: center;
  display: flex;
  height: var(--header-height);
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  height: 3rem;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 3rem;
}

.menu-toggle span {
  background: currentColor;
  border-radius: 999px;
  height: 1.5px;
  position: absolute;
  width: 1.55rem;
}

.menu-toggle span:first-child {
  transform: translateY(-0.27rem);
}

.menu-toggle span:last-child {
  transform: translateY(0.27rem);
}

.menu-close {
  background: transparent;
  border: 0;
  color: var(--paper);
  cursor: pointer;
  font-size: 0.86rem;
  min-height: 2.75rem;
  padding: 0;
}

.menu-close:focus-visible {
  color: var(--saffron);
  outline: none;
  text-decoration: underline;
  text-underline-offset: 0.28em;
}

.mobile-panel > nav {
  align-self: center;
  display: grid;
  gap: 1.7rem;
  max-width: 28rem;
  padding-block: 2rem;
  position: relative;
  z-index: 1;
}

.mobile-panel > nav a {
  color: var(--paper);
  display: block;
  font-family: var(--serif);
  font-size: clamp(2rem, 9vw, 2.8rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.02;
  min-height: 2.9rem;
  text-decoration: none;
}

.mobile-panel > nav a[aria-current] {
  color: var(--copper);
}

.mobile-panel > p {
  color: var(--stone);
  font-size: 0.84rem;
  line-height: 1.65;
  padding-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

/* Home hero */
.home-hero {
  background: var(--forest-black);
  min-height: 100svh;
  overflow: hidden;
  position: relative;
}

.home-hero-media {
  inset: 0;
  position: absolute;
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 69%,
    rgba(0, 0, 0, 0.97) 75%,
    rgba(0, 0, 0, 0.88) 81%,
    rgba(0, 0, 0, 0.68) 87%,
    rgba(0, 0, 0, 0.4) 93%,
    rgba(0, 0, 0, 0.14) 97%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 69%,
    rgba(0, 0, 0, 0.97) 75%,
    rgba(0, 0, 0, 0.88) 81%,
    rgba(0, 0, 0, 0.68) 87%,
    rgba(0, 0, 0, 0.4) 93%,
    rgba(0, 0, 0, 0.14) 97%,
    transparent 100%
  );
}

.home-hero-media img {
  height: 106%;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}

.hero-light {
  background:
    linear-gradient(to bottom, rgba(7, 9, 7, 0.5), transparent 36%),
    linear-gradient(100deg, rgba(9, 11, 8, 0.65) 0%, rgba(9, 11, 8, 0.08) 60%, rgba(9, 11, 8, 0.38) 100%),
    linear-gradient(to top, rgba(13, 16, 12, 0.82), transparent 46%);
  inset: 0;
  position: absolute;
}

.hero-composition {
  align-items: end;
  bottom: clamp(5.8rem, 10vh, 8.3rem);
  display: grid;
  gap: 3.5rem;
  grid-template-columns: minmax(0, 1.65fr) minmax(18rem, 0.55fr);
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-descriptor {
  color: rgba(240, 234, 223, 0.94);
  font-size: 0.96rem;
  margin-bottom: 1.5rem;
}

.hero-title-group h1 {
  color: #f4eee4;
  font-family: var(--serif);
  font-size: clamp(3.8rem, 6.2vw, 5.4rem);
  font-weight: 300;
  letter-spacing: -0.048em;
  line-height: 0.94;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.42);
}

.hero-service {
  align-self: end;
  max-width: 22rem;
  padding-bottom: 0.25rem;
}

.hero-service > p {
  color: rgba(240, 234, 223, 0.93);
  font-size: 1rem;
  line-height: 1.65;
}

.primary-action {
  align-items: center;
  background: var(--paper);
  color: var(--ink);
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 680;
  justify-content: center;
  margin-top: 1.6rem;
  min-height: 3.2rem;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  transition: background-color 150ms ease, color 150ms ease;
}

.primary-action:hover {
  background: var(--saffron);
  color: var(--forest-black);
}

.hero-service small {
  color: rgba(240, 234, 223, 0.76);
  display: block;
  font-size: 0.77rem;
  line-height: 1.5;
  margin-top: 0.9rem;
}

.hero-scroll {
  align-items: center;
  bottom: 1.35rem;
  color: rgba(240, 234, 223, 0.74);
  display: flex;
  font-size: 0.72rem;
  gap: 0.7rem;
  left: 50%;
  position: absolute;
  text-decoration: none;
  transform: translateX(-50%);
  z-index: 3;
}

.hero-scroll i {
  border: solid currentColor;
  border-width: 0 1px 1px 0;
  height: 0.42rem;
  transform: rotate(45deg) translateY(-0.1rem);
  width: 0.42rem;
}

/* Homepage: one continuous working relationship */
.holding-section {
  background: var(--forest-black);
  padding-block: clamp(6rem, 10vw, 10rem);
}

.holding-layout {
  align-items: start;
  display: grid;
  gap: clamp(4rem, 8vw, 8rem);
  grid-template-columns: minmax(20rem, 0.85fr) minmax(25rem, 1.15fr);
}

.holding-landscape {
  align-self: start;
  height: min(72vh, 45rem);
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.holding-landscape img {
  clip-path: polygon(0 0, 100% 4%, 94% 100%, 5% 96%);
  filter: saturate(0.68) contrast(1.05) brightness(0.78);
  height: calc(100% - 2.25rem);
  object-fit: cover;
  object-position: 31% center;
  width: 100%;
}

.holding-landscape figcaption {
  color: var(--stone);
  font-size: 0.78rem;
  margin-top: 1rem;
}

.holding-story > header {
  padding-top: clamp(1rem, 8vh, 5rem);
}

.holding-story > header > p:first-child {
  color: var(--copper);
  font-size: 0.98rem;
  margin-bottom: 1.5rem;
}

.holding-story > header h2 {
  font-family: var(--serif);
  font-size: clamp(3rem, 4.2vw, 4.2rem);
  font-weight: 300;
  letter-spacing: -0.043em;
  line-height: 0.98;
  max-width: 39rem;
}

.holding-story > header > p:last-child {
  color: var(--stone);
  font-size: 1.08rem;
  line-height: 1.75;
  margin-top: 1.8rem;
  max-width: 34rem;
}

.holding-moments {
  margin-top: clamp(5rem, 10vw, 9rem);
}

.holding-moments article {
  min-height: min(48vh, 28rem);
  padding-bottom: 5rem;
}

.holding-moments article > p:first-child {
  color: var(--copper);
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}

.holding-moments h3 {
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.4vw, 3.35rem);
  font-weight: 300;
  letter-spacing: -0.034em;
  line-height: 1.03;
  max-width: 31rem;
}

.holding-moments article > p:last-child {
  color: var(--stone);
  line-height: 1.75;
  margin-top: 1.4rem;
  max-width: 31rem;
}

.scope-section {
  background: var(--earth-red-deep);
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(6rem, 10vw, 9rem);
  position: relative;
}

.scope-section::before,
.privacy-masthead::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.38'/%3E%3C/svg%3E");
  content: "";
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.scope-layout {
  align-items: start;
  display: grid;
  gap: clamp(4rem, 9vw, 9rem);
  grid-template-columns: minmax(18rem, 1fr) minmax(24rem, 0.92fr);
}

.scope-layout header > p {
  color: #efd8ca;
  font-size: 0.98rem;
  margin-bottom: 1.4rem;
}

.scope-layout h2 {
  color: #f6ede2;
  font-size: clamp(2.6rem, 4.4vw, 4.2rem);
  font-weight: 560;
  letter-spacing: -0.045em;
  line-height: 1.02;
  max-width: 36rem;
}

.text-action {
  color: var(--paper);
  display: inline-flex;
  font-size: 0.92rem;
  gap: 0.7rem;
  margin-top: 2.2rem;
  min-height: 2.8rem;
  padding-top: 0.75rem;
  text-decoration: none;
  transition: color 150ms ease;
}

.text-action span {
  color: var(--saffron);
}

.text-action:hover {
  color: var(--saffron);
}

.scope-ledger {
  display: grid;
  gap: clamp(2.6rem, 5vw, 4.6rem);
  padding-top: 0.35rem;
}

.scope-ledger div {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: minmax(8rem, 0.72fr) 1.28fr;
}

.scope-ledger dt {
  color: #f6ede2;
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.15;
}

.scope-ledger dd {
  color: #ead9cd;
  font-size: 0.94rem;
  line-height: 1.72;
}

/* Questions and inquiry */
.questions-section {
  background: var(--charred);
  padding-block: clamp(6rem, 10vw, 9rem);
}

.questions-inner {
  max-width: 74rem;
}

.questions-heading {
  align-items: end;
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(24rem, 1.2fr) minmax(16rem, 0.55fr);
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.inquiry-intro h2,
.guide-conversation h2 {
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4.5vw, 4.4rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 0.99;
}

.questions-heading h2 {
  color: var(--paper);
  font-size: clamp(3.2rem, 6.7vw, 6rem);
  font-weight: 570;
  letter-spacing: -0.062em;
  line-height: 0.9;
  max-width: 11ch;
}

.questions-heading p {
  color: var(--stone);
  justify-self: end;
  line-height: 1.68;
  max-width: 19rem;
  padding-bottom: 0.35rem;
}

.question-ledger {
  margin-left: auto;
  max-width: 65rem;
}

.question-ledger details {
  background: transparent;
  margin-bottom: 0.36rem;
  transition: background-color 150ms ease;
}

.question-ledger details[open] {
  background: var(--peat);
}

.question-ledger summary {
  align-items: baseline;
  cursor: pointer;
  display: grid;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  font-weight: 300;
  gap: 1.4rem;
  grid-template-columns: 2.5rem minmax(0, 1fr) auto;
  line-height: 1.2;
  list-style: none;
  min-height: 5.8rem;
  padding: 1.7rem 2.1rem;
}

.question-ledger summary::-webkit-details-marker {
  display: none;
}

.question-ledger summary span {
  color: var(--copper);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
}

.question-ledger summary::after {
  color: var(--stone-dim);
  content: "Open";
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
}

.question-ledger details[open] summary::after {
  content: "Close";
}

.question-ledger details > p {
  color: var(--stone);
  line-height: 1.75;
  max-width: 39rem;
  padding: 0 2.1rem 2rem 6rem;
}

.inquiry-section {
  background: var(--juniper);
  padding-block: clamp(6rem, 11vw, 10rem);
}

.inquiry-layout {
  display: grid;
  gap: clamp(4rem, 9vw, 9rem);
  grid-template-columns: minmax(17rem, 0.72fr) minmax(29rem, 1.28fr);
}

.inquiry-intro > p {
  color: var(--stone);
  line-height: 1.75;
  margin-top: 1.7rem;
  max-width: 29rem;
}

.inquiry-intro > a {
  color: var(--copper);
  display: inline-flex;
  font-size: 0.9rem;
  margin-top: 1.35rem;
  min-height: 2.8rem;
  padding-top: 0.75rem;
  text-decoration: none;
}

.inquiry-form {
  align-self: start;
}

.form-row {
  background: rgba(240, 234, 223, 0.06);
  display: grid;
  gap: 0.7rem;
  grid-template-columns: 8rem 1fr;
  margin-bottom: 0.28rem;
  min-height: 4.7rem;
  padding: 0.95rem 1.2rem;
}

.form-row label {
  color: var(--stone);
  font-size: 0.8rem;
  padding-top: 0.55rem;
}

.form-row label span {
  color: var(--stone-dim);
  display: block;
  font-size: 0.69rem;
  margin-top: 0.2rem;
}

.form-row input,
.form-row textarea {
  background: transparent;
  border: 0;
  color: var(--paper);
  min-width: 0;
  outline: 0;
  padding: 0.45rem 0;
  resize: vertical;
  width: 100%;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(206, 197, 183, 0.66);
}

.form-row:focus-within {
  background: rgba(240, 234, 223, 0.09);
  box-shadow: inset 0 0 0 1px rgba(203, 146, 120, 0.7);
}

.form-row-message {
  min-height: 7.8rem;
}

.form-submit-row {
  align-items: center;
  display: grid;
  gap: 1.6rem;
  grid-template-columns: auto 1fr;
  margin-top: 1.7rem;
}

.form-submit-row button {
  background: var(--paper);
  border: 0;
  color: var(--ink);
  cursor: pointer;
  font-weight: 680;
  min-height: 3.2rem;
  padding: 0.8rem 1.45rem;
  transition: background-color 150ms ease;
}

.form-submit-row button:hover {
  background: var(--saffron);
}

.form-submit-row button:disabled {
  cursor: default;
  opacity: 0.72;
}

.form-submit-row p {
  color: var(--stone-dim);
  font-size: 0.75rem;
  line-height: 1.55;
  max-width: 23rem;
}

.form-submit-row p a {
  color: var(--paper);
  text-underline-offset: 0.2em;
}

.form-status {
  color: var(--stone);
  font-size: 0.86rem;
  font-weight: 560;
  line-height: 1.55;
  margin-top: 1.05rem;
  min-height: 1.35rem;
}

.form-status[data-state="error"] {
  color: #efb39a;
}

.form-status[data-state="success"] {
  color: #d8c78f;
}

.inquiry-success {
  align-self: start;
  max-width: 36rem;
  padding-block: 1rem 4rem;
}

.inquiry-success h2 {
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4.5vw, 4.4rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 0.99;
}

.inquiry-success p,
.inquiry-error {
  color: var(--stone);
  line-height: 1.72;
  margin-top: 1.4rem;
}

.inquiry-error a {
  color: var(--paper);
}

.contact-channel-list {
  display: grid;
  gap: 0.2rem;
  margin-top: 1.2rem;
}

.contact-location {
  margin-bottom: 0.45rem;
}

.contact-channel-list a {
  color: var(--copper);
  display: inline-flex;
  font-size: 0.9rem;
  min-height: 2.8rem;
  padding-top: 0.75rem;
  text-decoration: none;
}

.contact-channel-list span {
  color: var(--stone-dim);
  display: block;
  font-size: 0.74rem;
  margin-top: 0.16rem;
}

/* Private guide: a page-specific opening, not a repeated cover hero */
.guide-lead {
  background: var(--forest-black);
  min-height: 100svh;
  padding-bottom: clamp(2rem, 5vh, 4rem);
  padding-top: calc(var(--header-height) + clamp(2.2rem, 6vh, 4.5rem));
}

.guide-lead-inner {
  display: grid;
  min-height: calc(100svh - var(--header-height) - clamp(4.2rem, 10vh, 8rem));
  grid-template-rows: auto 1fr;
}

.guide-lead-copy {
  display: grid;
  gap: 1.6rem 4rem;
  grid-template-columns: minmax(0, 1.6fr) minmax(17rem, 0.55fr);
}

.guide-lead-copy > p {
  color: var(--copper);
  font-size: 1rem;
  grid-column: 1 / -1;
}

.guide-lead-copy h1 {
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(4rem, 6.2vw, 5.5rem);
  font-weight: 300;
  letter-spacing: -0.049em;
  line-height: 0.92;
  max-width: 63rem;
}

.guide-lead-copy h1 span {
  display: block;
  white-space: nowrap;
}

.guide-lead-copy > div {
  align-self: end;
  padding-bottom: 0.35rem;
}

.guide-lead-copy > div > p {
  color: var(--stone);
  line-height: 1.65;
  max-width: 21rem;
}

.guide-lead-copy .text-action {
  margin-top: 1rem;
}

.guide-landscape {
  align-self: end;
  height: min(42vh, 27rem);
  margin-top: clamp(2.5rem, 6vh, 5rem);
  overflow: hidden;
  position: relative;
}

.guide-landscape img {
  clip-path: polygon(2.5% 0, 100% 0, 97% 100%, 0 95%);
  filter: saturate(0.7) contrast(1.05) brightness(0.78);
  height: 100%;
  object-fit: cover;
  object-position: center 73%;
  width: 100%;
}

.guide-opening {
  align-items: start;
  display: grid;
  gap: clamp(3rem, 8vw, 8rem);
  grid-template-columns: minmax(19rem, 0.9fr) minmax(24rem, 1.1fr);
  padding-bottom: clamp(6rem, 10vw, 9rem);
  padding-top: clamp(6rem, 11vw, 10rem);
}

.guide-opening h2 {
  color: var(--paper);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 580;
  letter-spacing: -0.038em;
  line-height: 1.08;
  max-width: 28rem;
}

.guide-opening > div {
  color: var(--stone);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.75;
  max-width: 37rem;
}

.guide-opening > div p + p {
  margin-top: 1.2rem;
}

.guide-decisions {
  padding-bottom: clamp(7rem, 11vw, 11rem);
}

.decision-wide {
  display: grid;
  gap: 2.7rem;
  grid-template-columns: 3rem minmax(20rem, 1fr) minmax(18rem, 0.78fr);
  margin-left: clamp(0rem, 5vw, 4rem);
  max-width: 68rem;
}

.decision-number {
  color: var(--copper);
  font-size: 0.8rem;
  font-weight: 620;
  padding-top: 0.45rem;
}

.decision h2 {
  color: var(--paper);
  font-family: var(--sans);
  font-size: clamp(1.9rem, 2.65vw, 2.65rem);
  font-weight: 570;
  letter-spacing: -0.038em;
  line-height: 1.08;
}

.decision > p:last-child {
  color: var(--stone);
  line-height: 1.75;
  max-width: 30rem;
  padding-top: 0.3rem;
}

.decision-pair {
  display: grid;
  gap: clamp(4rem, 9vw, 8rem);
  grid-template-columns: repeat(2, 1fr);
  margin-top: clamp(7rem, 10vw, 9rem);
  padding-inline: clamp(0rem, 6vw, 5rem);
}

.decision-pair .decision {
  display: grid;
  grid-template-columns: 2.6rem 1fr;
}

.decision-pair .decision > p:last-child {
  grid-column: 2;
  margin-top: 1.5rem;
}

.decision-offset {
  margin-top: 0;
}

.planning-excerpt-section {
  background: var(--earth-red-deep);
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(6rem, 10vw, 9rem);
  position: relative;
}

.planning-excerpt-section::before {
  background: var(--charred);
  content: "";
  height: 0.6rem;
  left: 0;
  position: absolute;
  top: 0;
  width: 18%;
}

.planning-excerpt-intro {
  display: grid;
  gap: 2rem clamp(4rem, 8vw, 8rem);
  grid-template-columns: minmax(18rem, 0.82fr) minmax(24rem, 1.18fr);
}

.planning-excerpt-intro > div > p:first-child {
  color: #f0cbbd;
  font-size: 0.88rem;
  margin-bottom: 1.2rem;
}

.planning-excerpt-intro h2 {
  color: #f6ede2;
  font-size: clamp(2.55rem, 4.2vw, 4rem);
  font-weight: 570;
  letter-spacing: -0.043em;
  line-height: 1.03;
  max-width: 34rem;
}

.planning-excerpt-intro > div > p:last-child {
  color: #ead9cd;
  line-height: 1.72;
  margin-top: 1.4rem;
  max-width: 30rem;
}

.journey-sheet {
  background: var(--paper);
  clip-path: polygon(0 0, calc(100% - 2.25rem) 0, 100% 2.25rem, 100% 100%, 0 100%);
  color: var(--ink);
  padding: clamp(2rem, 4vw, 3.5rem);
  position: relative;
}

.journey-sheet-header {
  align-items: end;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}

.journey-sheet-header img {
  height: auto;
  width: clamp(8.5rem, 12vw, 10.5rem);
}

.journey-sheet-header p {
  color: #6b6358;
  font-size: 0.78rem;
}

.journey-sheet h3 {
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-top: clamp(3rem, 6vw, 5rem);
  max-width: 8ch;
}

.journey-sheet dl {
  display: grid;
  gap: 2rem;
  margin-left: auto;
  margin-top: 2.5rem;
  max-width: 31rem;
}

.journey-sheet dl div {
  display: grid;
  gap: 1rem;
  grid-template-columns: 6.5rem 1fr;
}

.journey-sheet dt {
  color: #805545;
  font-size: 0.78rem;
  font-weight: 680;
}

.journey-sheet dd {
  color: #38362f;
  font-size: 1rem;
  line-height: 1.65;
}

.journey-sheet figcaption {
  color: #6b6358;
  font-size: 0.75rem;
  line-height: 1.55;
  margin-top: 3rem;
  max-width: 34rem;
}

.guide-decisions-late {
  padding-top: clamp(7rem, 12vw, 11rem);
}

.decision-last {
  display: grid;
  gap: 2.7rem;
  grid-template-columns: 3rem minmax(20rem, 1fr) minmax(18rem, 0.78fr);
  margin: clamp(9rem, 14vw, 14rem) 0 0 auto;
  max-width: 67rem;
}

.guide-conversation {
  background: var(--juniper);
  padding-block: clamp(6rem, 11vw, 10rem);
}

.guide-conversation-inner {
  display: grid;
  gap: clamp(3rem, 8vw, 8rem);
  grid-template-columns: 0.55fr 1.2fr;
}

.guide-conversation-inner > p {
  color: var(--copper);
  font-size: 0.88rem;
  line-height: 1.55;
  padding-top: 0.4rem;
}

.guide-conversation-inner h2 {
  font-family: var(--sans);
  font-size: clamp(2.2rem, 3.5vw, 3.35rem);
  font-weight: 580;
  letter-spacing: -0.04em;
  line-height: 1.08;
  max-width: 35rem;
}

.guide-conversation-inner > div > p {
  color: var(--stone);
  line-height: 1.72;
  margin-top: 1.35rem;
  max-width: 32rem;
}

/* Privacy: a typographic legal chapter */
.privacy-masthead {
  background: var(--peat);
  isolation: isolate;
  min-height: 55svh;
  padding-bottom: clamp(4rem, 8vh, 6rem);
  padding-top: calc(var(--header-height) + clamp(4rem, 9vh, 7rem));
  position: relative;
}

.privacy-masthead-inner {
  align-items: end;
  display: grid;
  gap: clamp(4rem, 10vw, 10rem);
  grid-template-columns: minmax(20rem, 1.2fr) minmax(19rem, 0.8fr);
}

.privacy-masthead-inner > div > p {
  color: var(--copper);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.privacy-masthead h1 {
  color: var(--paper);
  font-size: clamp(3.4rem, 6vw, 5.5rem);
  font-weight: 560;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.privacy-masthead dl {
  display: grid;
  gap: 1.6rem;
}

.privacy-masthead dl div {
  display: grid;
  gap: 1rem;
  grid-template-columns: 6.5rem 1fr;
}

.privacy-masthead dt {
  color: var(--stone-dim);
  font-size: 0.78rem;
}

.privacy-masthead dd {
  color: var(--paper);
  font-size: 0.9rem;
  line-height: 1.45;
}

.privacy-masthead a {
  text-underline-offset: 0.22em;
}

.privacy-notice {
  background: var(--forest-black);
  max-width: 69rem;
  padding-bottom: clamp(6rem, 10vw, 9rem);
  padding-top: clamp(5rem, 9vw, 8rem);
}

.privacy-intro {
  color: var(--paper);
  font-size: clamp(1.18rem, 1.9vw, 1.4rem);
  line-height: 1.72;
  max-width: 51rem;
}

.privacy-notice > section {
  display: grid;
  gap: clamp(2rem, 6vw, 6rem);
  grid-template-columns: 13rem 1fr;
  margin-top: clamp(4rem, 8vw, 7rem);
}

.privacy-notice h2 {
  color: var(--copper);
  font-size: 0.96rem;
  font-weight: 680;
}

.privacy-notice section > div {
  max-width: 45rem;
}

.privacy-notice section p {
  color: var(--stone);
  font-size: 1rem;
  line-height: 1.85;
}

.privacy-notice section p + p {
  margin-top: 1.4rem;
}

.privacy-notice code {
  color: var(--paper);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.9em;
}

.privacy-notice a,
.privacy-choice-link {
  color: var(--paper);
  text-underline-offset: 0.25em;
}

.privacy-choice-link {
  align-items: center;
  background: var(--charred);
  border: 0;
  display: inline-flex;
  font-size: 0.88rem;
  margin-top: 1.6rem;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  text-decoration: none;
}

/* Branded 404 */
.page-not-found {
  min-height: 100svh;
}

.not-found {
  align-items: end;
  display: grid;
  gap: 2rem clamp(4rem, 10vw, 10rem);
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  min-height: 100svh;
  padding-bottom: clamp(4rem, 10vh, 7rem);
  padding-top: calc(var(--header-height) + 4rem);
}

.not-found > p {
  color: var(--copper);
  font-size: 0.9rem;
  grid-column: 1 / -1;
}

.not-found h1 {
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.92;
  margin: 0;
  max-width: 9ch;
}

.not-found > div > p {
  color: var(--stone);
  line-height: 1.75;
  max-width: 30rem;
}

/* Footer */
.site-footer {
  background: var(--forest-deep);
  color: var(--stone);
  padding-block: 3.6rem;
}

.footer-layout {
  align-items: end;
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr 1.3fr;
}

.footer-brand img {
  height: auto;
  width: 10.5rem;
}

.footer-brand p {
  color: var(--stone-dim);
  font-size: 0.78rem;
  line-height: 1.65;
  margin-top: 1rem;
}

.site-footer nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 2rem;
  justify-content: start;
}

.site-footer nav a,
.site-footer nav button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--stone);
  cursor: pointer;
  display: inline-flex;
  font-size: 0.82rem;
  min-height: 2.8rem;
  padding: 0;
  text-decoration: none;
  transition: color 150ms ease;
}

.site-footer nav a:hover,
.site-footer nav button:hover {
  color: var(--paper);
}

/* Consent: compact first choice, detail on request */
.consent-panel[hidden],
.consent-summary[hidden],
.consent-preferences[hidden] {
  display: none;
}

.consent-panel {
  background: var(--charred);
  bottom: 1.25rem;
  box-shadow: 0 7px 16px rgba(0, 0, 0, 0.24);
  color: var(--paper);
  max-height: calc(100svh - 2.5rem);
  max-width: 31rem;
  overflow-y: auto;
  padding: 1.25rem 1.35rem 1.15rem;
  position: fixed;
  right: 1.25rem;
  width: calc(100% - 2.5rem);
  z-index: 200;
}

.consent-heading-row {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.consent-panel h2 {
  font-size: 1.16rem;
  font-weight: 690;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.consent-close,
.consent-back,
.consent-customize {
  background: transparent;
  border: 0;
  color: var(--stone);
  cursor: pointer;
  font-size: 0.76rem;
  min-height: 2.75rem;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 0.24em;
}

.consent-panel p {
  color: var(--stone);
  font-size: 0.82rem;
  line-height: 1.55;
  margin-top: 0.7rem;
}

.consent-actions {
  display: grid;
  gap: 0.45rem;
  grid-template-columns: 1fr 1fr;
  margin-top: 1.15rem;
}

.consent-actions-single {
  grid-template-columns: 1fr;
}

.consent-actions button {
  background: var(--stone);
  border: 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 680;
  min-height: 2.85rem;
  padding: 0.6rem 0.7rem;
}

.consent-actions button:hover {
  background: var(--paper);
}

.consent-customize {
  margin-top: 0.5rem;
}

.consent-back {
  margin-bottom: 0.5rem;
}

.consent-preferences > p {
  margin-top: 0.75rem;
}

.consent-panel fieldset {
  border: 0;
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
  padding: 0;
}

.consent-panel label {
  align-items: start;
  cursor: pointer;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: 1.2rem 1fr;
  min-height: 2.75rem;
}

.consent-panel input {
  accent-color: var(--copper);
  height: 1.2rem;
  margin: 0.12rem 0 0;
  width: 1.2rem;
}

.consent-panel label span,
.consent-panel label strong,
.consent-panel label small {
  display: block;
}

.consent-panel label strong {
  color: var(--paper);
  font-size: 0.84rem;
}

.consent-panel label small {
  color: var(--stone);
  font-size: 0.76rem;
  line-height: 1.5;
  margin-top: 0.25rem;
}

.consent-preferences > a {
  color: var(--stone);
  display: inline-flex;
  font-size: 0.74rem;
  margin-top: 0.65rem;
  min-height: 2.75rem;
  padding-top: 0.75rem;
  text-underline-offset: 0.24em;
}

/* Quiet cross-document continuity */
@view-transition {
  navigation: auto;
}

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 220ms;
  animation-timing-function: cubic-bezier(0.2, 0.65, 0.3, 1);
  background: var(--forest-black);
  mix-blend-mode: normal;
}

::view-transition-old(root) {
  animation-name: soeling-page-out;
}

::view-transition-new(root) {
  animation-name: soeling-page-in;
}

::view-transition-old(soeling-header),
::view-transition-new(soeling-header),
::view-transition-old(soeling-brand),
::view-transition-new(soeling-brand) {
  animation-duration: 220ms;
  mix-blend-mode: normal;
}

@keyframes soeling-page-out {
  to {
    opacity: 0.94;
  }
}

@keyframes soeling-page-in {
  from {
    opacity: 0.94;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 5rem;
  }

  .primary-nav {
    display: none;
  }

  .mobile-fallback-nav {
    display: flex;
    gap: 1rem;
  }

  .mobile-fallback-nav a {
    align-items: center;
    color: var(--paper);
    display: inline-flex;
    font-size: 0.72rem;
    min-height: 2.75rem;
    text-decoration: none;
  }

  .js .mobile-fallback-nav {
    display: none;
  }

  .js .menu-toggle {
    display: flex;
  }

  .brand-link img {
    width: 10rem;
  }

  .questions-heading {
    gap: clamp(1.75rem, 4vw, 3rem);
    grid-template-columns: minmax(0, 1.1fr) minmax(14rem, 0.6fr);
  }

  .hero-composition,
  .scope-layout,
  .questions-inner,
  .inquiry-layout,
  .guide-opening,
  .planning-excerpt-intro,
  .privacy-masthead-inner,
  .privacy-notice > section,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .not-found {
    grid-template-columns: 1fr;
  }

  .hero-composition {
    gap: 2rem;
  }

  .hero-service {
    max-width: 28rem;
  }

  .holding-layout {
    gap: 4rem;
    grid-template-columns: minmax(16rem, 0.75fr) minmax(21rem, 1.25fr);
  }

  .holding-landscape {
    height: 66vh;
  }

  .questions-heading {
    position: static;
  }

  .question-ledger {
    max-width: none;
  }

  .guide-lead-copy {
    grid-template-columns: 1fr;
  }

  .guide-lead-copy > div {
    max-width: 29rem;
  }

  .decision-wide,
  .decision-last {
    grid-template-columns: 2.6rem 1fr;
  }

  .decision-wide > p:last-child,
  .decision-last > p:last-child {
    grid-column: 2;
  }

  .guide-conversation-inner {
    grid-template-columns: 1fr;
  }

  .footer-layout {
    align-items: start;
  }

  .site-footer nav {
    justify-content: start;
  }
}

@media (max-width: 700px) {
  :root {
    --gutter: 1.25rem;
  }

  .home-hero-media img {
    height: 104%;
    object-position: 47% center;
  }

  .hero-composition {
    bottom: 3.9rem;
  }

  .hero-descriptor {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }

  .hero-title-group h1 {
    font-size: clamp(2rem, 9.2vw, 2.65rem);
    letter-spacing: -0.043em;
    line-height: 0.96;
  }

  .hero-service > p {
    font-size: 0.94rem;
    line-height: 1.58;
    max-width: 20rem;
  }

  .primary-action {
    margin-top: 1.2rem;
    min-height: 3.05rem;
  }

  .hero-service small {
    font-size: 0.7rem;
    max-width: 19rem;
  }

  .hero-scroll {
    display: none;
  }

  .holding-section {
    padding-top: 3.8rem;
  }

  .holding-layout {
    display: block;
  }

  .holding-landscape {
    height: 61svh;
    position: relative;
    top: auto;
  }

  .holding-landscape img {
    clip-path: polygon(0 0, 100% 3%, 96% 100%, 0 96%);
    object-position: 32% center;
  }

  .holding-story > header {
    padding-top: 4.8rem;
  }

  .holding-story > header h2 {
    font-size: clamp(2.6rem, 12vw, 3.55rem);
    line-height: 0.99;
  }

  .holding-story > header > p:last-child {
    font-size: 1.02rem;
  }

  .holding-moments {
    margin-top: 5.5rem;
  }

  .holding-moments article {
    min-height: 0;
    padding-bottom: 5.6rem;
  }

  .holding-moments h3 {
    font-size: 2.25rem;
  }

  .scope-layout {
    gap: 4.5rem;
  }

  .scope-layout h2 {
    font-size: clamp(2.5rem, 11vw, 3.35rem);
  }

  .scope-ledger div {
    gap: 0.8rem;
    grid-template-columns: 1fr;
  }

  .scope-ledger dt {
    font-size: 1.5rem;
  }

  .inquiry-intro h2 {
    font-size: clamp(2.55rem, 11vw, 3.45rem);
  }

  .questions-heading {
    display: block;
    margin-bottom: 3.4rem;
  }

  .questions-heading h2 {
    font-size: clamp(2.75rem, 13vw, 3.9rem);
    max-width: 9ch;
  }

  .questions-heading p {
    justify-self: auto;
    margin-top: 1.3rem;
    max-width: 18rem;
    padding-bottom: 0;
  }

  .question-ledger summary {
    font-size: 1.28rem;
    gap: 0.75rem;
    grid-template-columns: 1.7rem minmax(0, 1fr) auto;
    padding: 1.35rem 1rem;
  }

  .question-ledger details > p {
    padding: 0 1rem 1.5rem 3.45rem;
  }

  .form-row {
    gap: 0.2rem;
    grid-template-columns: 1fr;
    padding: 0.9rem 1rem;
  }

  .form-row label,
  .form-row input,
  .form-row textarea {
    padding-top: 0;
  }

  .form-row label span {
    display: inline;
    margin-left: 0.35rem;
  }

  .form-submit-row {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .form-submit-row button {
    width: 100%;
  }

  .guide-lead {
    padding-bottom: 1.5rem;
    padding-top: calc(var(--header-height) + 2rem);
  }

  .guide-lead-inner {
    display: block;
    min-height: 0;
  }

  .guide-lead-copy {
    gap: 1.2rem;
  }

  .guide-lead-copy > p {
    font-size: 0.86rem;
  }

  .guide-lead-copy h1 {
    font-size: clamp(2rem, 9.1vw, 2.55rem);
    letter-spacing: -0.043em;
    line-height: 0.96;
  }

  .guide-lead-copy > div > p {
    font-size: 0.9rem;
    max-width: 22rem;
  }

  .guide-lead-copy .text-action {
    display: none;
  }

  .guide-landscape {
    height: auto;
    margin-top: 4.5rem;
    overflow: visible;
  }

  .guide-landscape img {
    aspect-ratio: 3 / 2;
    clip-path: polygon(0 0, 100% 0, 97% 100%, 0 96%);
    height: auto;
    object-fit: cover;
    object-position: center center;
  }

  .guide-opening {
    gap: 1.8rem;
  }

  .guide-opening h2,
  .guide-conversation-inner h2 {
    font-size: 2.1rem;
  }

  .decision-wide,
  .decision-last,
  .decision-pair .decision {
    gap: 0.95rem;
    grid-template-columns: 1.9rem 1fr;
    margin-left: 0;
  }

  .decision h2 {
    font-size: 1.85rem;
  }

  .decision-wide > p:last-child,
  .decision-last > p:last-child,
  .decision-pair .decision > p:last-child {
    grid-column: 2;
    margin-top: 0.75rem;
  }

  .decision-pair {
    gap: 5.8rem;
    grid-template-columns: 1fr;
    margin-top: 6rem;
    padding-inline: 0;
  }

  .decision-offset {
    margin-top: 0;
  }

  .planning-excerpt-intro {
    gap: 3.5rem;
  }

  .journey-sheet {
    clip-path: polygon(0 0, calc(100% - 1.25rem) 0, 100% 1.25rem, 100% 100%, 0 100%);
    padding: 1.65rem;
  }

  .journey-sheet-header {
    align-items: start;
    flex-direction: column;
    gap: 1rem;
  }

  .journey-sheet h3 {
    font-size: clamp(2.4rem, 12vw, 3.2rem);
    margin-top: 3rem;
  }

  .journey-sheet dl {
    gap: 1.7rem;
    margin-top: 2.6rem;
  }

  .journey-sheet dl div {
    gap: 0.45rem;
    grid-template-columns: 1fr;
  }

  .journey-sheet figcaption {
    margin-top: 2.5rem;
  }

  .decision-last {
    margin-top: 7rem;
  }

  .guide-conversation-inner {
    gap: 1.5rem;
  }

  .guide-conversation-inner > p {
    padding-top: 0;
  }

  .privacy-masthead {
    min-height: auto;
    padding-bottom: 4rem;
    padding-top: calc(var(--header-height) + 4rem);
  }

  .privacy-masthead-inner {
    gap: 3.5rem;
  }

  .privacy-masthead h1 {
    font-size: clamp(3.1rem, 14vw, 4.25rem);
  }

  .privacy-masthead dl div {
    grid-template-columns: 5.8rem 1fr;
  }

  .privacy-notice {
    padding-top: 4.6rem;
  }

  .privacy-intro {
    font-size: 1.1rem;
  }

  .privacy-notice > section {
    gap: 1.25rem;
    margin-top: 4.5rem;
  }

  .footer-layout {
    gap: 2.2rem;
  }

  .site-footer nav {
    align-items: start;
    flex-direction: column;
    gap: 0;
  }

  .consent-panel {
    bottom: 0;
    box-shadow: 0 -5px 12px rgba(0, 0, 0, 0.2);
    max-height: 82svh;
    max-width: none;
    padding: 1rem 1.25rem 0.9rem;
    right: 0;
    width: 100%;
  }

  .consent-panel h2 {
    font-size: 1.02rem;
  }

  .consent-panel p {
    font-size: 0.76rem;
    line-height: 1.45;
    margin-top: 0.55rem;
  }

  .consent-actions {
    margin-top: 0.85rem;
  }

  .consent-actions button {
    font-size: 0.7rem;
    min-height: 2.75rem;
    padding: 0.55rem 0.45rem;
  }

  .consent-customize {
    margin-top: 0.25rem;
    min-height: 2.75rem;
  }

  body[data-page="home"].consent-summary-open .hero-composition {
    bottom: clamp(14rem, 28svh, 15.5rem);
  }

  .consent-preferences {
    padding-top: 0.15rem;
  }

  .consent-preferences h2 {
    font-size: 1.35rem;
  }
}

@media (max-width: 350px) {
  :root {
    --gutter: 1rem;
  }

  .brand-link img {
    width: 9rem;
  }

  .hero-title-group h1 {
    font-size: 1.83rem;
  }

  .hero-service > p {
    font-size: 0.88rem;
  }

  .primary-action {
    font-size: 0.82rem;
  }

  .holding-story > header h2,
  .scope-layout h2,
  .questions-heading h2,
  .inquiry-intro h2 {
    font-size: 2.35rem;
  }

  .guide-lead-copy h1 {
    font-size: 1.82rem;
  }

  .guide-lead-copy > div > p {
    font-size: 0.83rem;
  }

  .guide-landscape {
    margin-top: 1.35rem;
  }

  .question-ledger summary {
    font-size: 0.98rem;
  }

  .consent-panel {
    padding-inline: 1rem;
  }
}

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

  *,
  *::before,
  *::after,
  ::view-transition-old(root),
  ::view-transition-new(root),
  ::view-transition-old(soeling-header),
  ::view-transition-new(soeling-header),
  ::view-transition-old(soeling-brand),
  ::view-transition-new(soeling-brand) {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
