:root {
  --cream: #fbfaf6;
  --cream-2: #f4f1ea;
  --cream-3: #eee7db;
  --ink: #1f1d19;
  --muted: #5f5a4d;
  --soft: #8a806f;
  --olive: #343d2d;
  --olive-2: #46523a;
  --tan: #b98f68;
  --line: #ddd6c9;
  --white: #fffdf8;
  --focus: #7a5c2f;
  --max: 1396px;
  --narrow: 760px;
  --serif: Georgia, "Iowan Old Style", "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
  overflow-wrap: anywhere;
}

p,
ul,
ol,
blockquote,
figure {
  margin: 0;
}

p + p {
  margin-top: 1rem;
}

ul,
ol {
  padding-left: 1.25rem;
}

li + li {
  margin-top: 0.45rem;
}

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

h1,
h2,
h3,
h4,
.brand-main,
.quote-text,
.page-kicker {
  font-family: var(--serif);
  font-weight: 400;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.15;
}

h1 {
  max-width: 770px;
  font-size: clamp(2.7rem, 8vw, 5.35rem);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: 0;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  letter-spacing: 0;
}

h4 {
  font-size: 1.08rem;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--cream);
  padding: 0.65rem 0.9rem;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(185, 143, 104, 0.1);
  background: rgba(246, 239, 229, 0.94);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  width: min(var(--max), calc(100% - 70px));
  min-height: 112px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(22px, 4vw, 72px);
}

.brand {
  display: inline-block;
  min-width: 330px;
  color: var(--ink);
  text-decoration: none;
  line-height: 1;
}

.brand-main {
  display: block;
  font-size: clamp(1.46rem, 1.7vw, 2rem);
  letter-spacing: 0.44em;
}

.brand-subrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}

.brand-line {
  width: 68px;
  height: 1px;
  background: var(--tan);
  opacity: 0.62;
}

.brand-sub {
  font-size: 0.76rem;
  letter-spacing: 0.48em;
  color: var(--tan);
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(36px, 5vw, 82px);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.desktop-nav a {
  text-decoration: none;
}

.desktop-nav a[aria-current="page"],
.desktop-nav a:hover,
.footer-links a:hover {
  color: var(--olive);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-actions .btn {
  min-width: 218px;
  min-height: 58px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.mobile-panel {
  display: none;
}

.home-page .site-header {
  border-bottom: 0;
  background: #f0e7dc;
  backdrop-filter: none;
}

.home-page .desktop-nav {
  gap: clamp(60px, 5.6vw, 86px);
  transform: translateX(-14px);
}

.home-page .nav-actions {
  margin-right: -17px;
}

.home-page .nav-actions .btn {
  min-width: 236px;
}

.container {
  width: min(var(--max), calc(100% - 70px));
  margin: 0 auto;
}

.container-narrow {
  width: min(var(--narrow), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: clamp(64px, 10vw, 120px) 0;
}

.section-compact {
  padding: clamp(44px, 7vw, 76px) 0;
}

.band {
  background: var(--cream-2);
}

.band-warm {
  background: #f0e7da;
}

.band-olive {
  background: var(--olive);
  color: var(--cream);
}

.band-olive .eyebrow,
.band-olive .muted,
.band-olive .fine-print,
.band-olive a {
  color: rgba(251, 250, 246, 0.82);
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--olive);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1.35;
  text-transform: uppercase;
}

.page-kicker {
  max-width: 900px;
  font-size: clamp(1.45rem, 3vw, 2.45rem);
  line-height: 1.28;
  color: #2f2d28;
}

.intro-text {
  max-width: 690px;
  margin-top: 1.2rem;
  color: #2f2d28;
  font-size: clamp(1rem, 1.4vw, 1.13rem);
}

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

.fine-print {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.rule {
  width: 54px;
  height: 2px;
  margin: 1.5rem 0;
  background: var(--tan);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.83rem 1.2rem;
  border: 1px solid var(--olive);
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.btn-primary {
  background: var(--olive);
  color: #fff;
}

.btn-primary:hover {
  background: var(--olive-2);
  border-color: var(--olive-2);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--soft);
}

.btn-secondary:hover {
  color: var(--olive);
  border-color: var(--olive);
}

.btn-light {
  background: var(--cream);
  color: var(--olive);
  border-color: var(--cream);
}

.btn-light-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(251, 250, 246, 0.72);
}

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

.section-lede {
  max-width: 700px;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  height: calc(100svh - 113px);
  min-height: 680px;
  display: grid;
  align-items: stretch;
  padding: 0;
  background:
    linear-gradient(90deg, rgba(238, 230, 218, 0.96) 0%, rgba(251, 247, 239, 0.97) 46%, rgba(233, 222, 205, 0.96) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: -1;
  width: min(38vw, 540px);
  background: linear-gradient(90deg, rgba(52, 61, 45, 0.05), rgba(52, 61, 45, 0));
  opacity: 0.52;
}

.hero-grid {
  display: grid;
  height: 100%;
  min-height: 0;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: clamp(22px, 3vw, 36px);
  align-items: start;
}

.hero-copy {
  max-width: 720px;
  min-width: 0;
  position: relative;
  z-index: 2;
}

.home-hero .hero-copy {
  max-width: 880px;
  padding-top: clamp(92px, 12vw, 172px);
  padding-left: clamp(118px, 11vw, 170px);
  padding-bottom: clamp(44px, 6vw, 86px);
}

.home-hero h1 {
  max-width: 760px;
  color: var(--olive);
  font-size: clamp(3rem, 4.55vw, 4.3rem);
  line-height: 1.17;
}

.home-hero .intro-text {
  max-width: 650px;
  color: #2f2d28;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.6vw, 1.58rem);
  line-height: 1.48;
}

.home-hero .btn-row {
  gap: 24px;
  margin-top: 2.5rem;
}

.home-hero .btn {
  min-width: 216px;
  min-height: 60px;
}

.hero-foliage {
  position: absolute;
  left: 0;
  top: clamp(28px, 5vw, 72px);
  z-index: 0;
  width: min(13vw, 190px);
  min-width: 118px;
  opacity: 0.92;
  pointer-events: none;
}

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

.hero-art::before {
  content: "";
  position: absolute;
  top: 2%;
  right: 6%;
  width: 76%;
  height: 80%;
  border: 1px solid rgba(185, 143, 104, 0.34);
  border-radius: 999px 999px 8px 8px;
  background: rgba(255, 253, 248, 0.36);
}

.hero-art::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4%;
  width: 92%;
  height: 68px;
  border: 1px solid rgba(185, 143, 104, 0.28);
  background: rgba(214, 196, 169, 0.52);
  box-shadow: -34px 34px 0 rgba(196, 176, 145, 0.36);
}

.hero-portal {
  position: relative;
  z-index: 1;
  width: min(430px, 86%);
  padding: clamp(16px, 3vw, 28px);
  border: 1px solid rgba(185, 143, 104, 0.24);
  border-radius: 240px 240px 6px 6px;
  background: rgba(255, 253, 248, 0.7);
  box-shadow: 0 28px 70px rgba(52, 61, 45, 0.13);
}

.hero-art img {
  width: 100%;
  mix-blend-mode: multiply;
}

.hero-art-reference {
  justify-items: end;
  min-height: 0;
  align-self: start;
}

.hero-art-reference::before,
.hero-art-reference::after {
  display: none;
}

.hero-art-reference img {
  width: auto;
  max-width: 100%;
  height: calc(100svh - 130px);
  max-height: 900px;
  object-fit: contain;
  object-position: right bottom;
  mix-blend-mode: normal;
}

@media (min-width: 861px) {
  .home-page {
    min-height: 100svh;
    background: #f0e7dc url("home-hero-reference.png") center top / cover no-repeat;
  }

  .home-page .site-header {
    background: transparent;
  }

  .home-page .brand,
  .home-page .desktop-nav,
  .home-page .nav-actions {
    opacity: 0 !important;
    transform: translateY(8px);
  }

  .home-page .desktop-nav {
    transform: translate(-14px, 8px);
  }

  .home-page .hero {
    height: auto;
    min-height: calc(100svh - 112px);
    background: transparent;
  }

  .home-page .hero::before {
    display: none;
  }

  .home-page .hero-grid {
    position: relative;
    display: block;
  }

  .home-page .home-hero .hero-copy {
    width: auto;
    max-width: 820px;
    opacity: 0 !important;
    padding: clamp(112px, 12vw, 170px) 0 clamp(76px, 8vw, 110px) clamp(90px, 8vw, 128px);
  }

  .home-page .home-hero h1 {
    max-width: 820px;
  }

  .home-page .home-hero .rule {
    width: 58px;
    margin: 1.5rem 0 2.2rem;
  }

  .home-page .home-hero .intro-text + .intro-text {
    margin-top: 1.8rem;
  }

  .home-page .home-hero .btn-row {
    gap: 33px;
    margin-top: 2.2rem;
  }

  .home-page .hero-foliage {
    display: none;
  }

  .home-page .hero-art-reference {
    display: none;
  }

  .home-page .hero-art-reference::after {
    display: none;
  }

  .home-page .hero-art-reference img {
    width: min(48vw, 720px);
    max-width: none;
    height: auto;
    max-height: none;
    align-self: end;
    object-position: right bottom;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 11%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 11%, #000 100%);
  }
}

.telehealth-note {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.55rem 0.75rem;
  border-left: 2px solid var(--tan);
  color: var(--olive);
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

.split-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
}

.text-stack > * + * {
  margin-top: 1.1rem;
}

.text-stack,
.focus-tile,
.booking-panel,
.service-copy,
.reading {
  min-width: 0;
}

.editorial-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.editorial-item {
  display: grid;
  grid-template-columns: minmax(160px, 0.45fr) minmax(0, 1fr);
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.editorial-item h3,
.editorial-item h4 {
  color: var(--olive);
}

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

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

.focus-grid-large .focus-tile {
  min-height: 260px;
}

.focus-tile {
  min-height: 230px;
  padding: clamp(20px, 3vw, 30px);
  background: var(--cream);
}

.focus-tile h3 {
  margin-bottom: 0.8rem;
  font-size: 1.35rem;
}

.focus-tile a {
  display: inline-block;
  margin-top: 1rem;
  color: var(--olive);
  font-weight: 700;
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(244, 241, 234, 0.94), rgba(251, 250, 246, 0.98));
}

.home-intro {
  background: var(--cream);
}

.portrait-frame {
  position: relative;
}

.portrait-frame::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--tan);
  opacity: 0.42;
}

.portrait-frame img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 55% 45%;
}

.wide-photo {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
  object-position: 55% 44%;
}

.quote-band {
  padding: clamp(42px, 7vw, 74px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quote {
  max-width: 780px;
}

.quote-text {
  font-size: clamp(1.55rem, 3.2vw, 2.45rem);
  line-height: 1.3;
}

.quote cite {
  display: block;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.booking-panel {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.3rem;
  padding: clamp(22px, 3vw, 34px);
  background: var(--white);
}

.booking-panel h3 {
  margin-bottom: 0.7rem;
}

.service-section {
  padding: clamp(46px, 7vw, 82px) 0;
  border-top: 1px solid var(--line);
}

.service-block {
  display: grid;
  grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

.service-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
}

.service-action {
  grid-column: 1 / -1;
}

.service-copy h4 {
  margin-bottom: 0.5rem;
  color: var(--olive);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.reading {
  max-width: var(--narrow);
}

.reading > * + * {
  margin-top: 1.2rem;
}

.reading h2,
.reading h3 {
  margin-top: 2.7rem;
}

.reading h2:first-child,
.reading h3:first-child {
  margin-top: 0;
}

.pull {
  margin: clamp(38px, 6vw, 60px) 0;
  padding: clamp(24px, 4vw, 38px);
  border-left: 3px solid var(--tan);
  background: rgba(255, 253, 248, 0.56);
}

.jump-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.6rem;
}

.jump-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.56rem 0.78rem;
  border: 1px solid var(--line);
  background: var(--cream-2);
  color: var(--olive);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.credential {
  min-height: 150px;
  padding: 24px;
  background: var(--white);
}

.credential strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--olive);
}

.rate-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.rate-card {
  min-height: 190px;
  padding: clamp(22px, 3vw, 32px);
  background: var(--white);
}

.rate-card h3 {
  margin-bottom: 0.75rem;
  color: var(--olive);
}

.rate-card strong {
  color: var(--olive);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1;
}

.rate-card-strong {
  background: #f0e7da;
}

.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.faq-item {
  display: grid;
  grid-template-columns: minmax(210px, 0.42fr) minmax(0, 1fr);
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.notice {
  padding: clamp(18px, 3vw, 26px);
  border-left: 3px solid var(--tan);
  background: var(--cream-2);
}

.notice strong {
  color: var(--olive);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 1.8rem;
}

.contact-list a,
.contact-list div {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.contact-list strong {
  display: block;
  color: var(--olive);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.form {
  display: grid;
  gap: 18px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  color: var(--olive);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(255, 253, 248, 0.72);
  color: var(--ink);
  padding: 0.86rem 0.92rem;
}

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

.field-error {
  min-height: 1.35rem;
  color: #7a2f20;
  font-size: 0.9rem;
}

.form-status {
  min-height: 1.45rem;
  color: var(--olive);
  font-weight: 700;
}

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

.contact-page {
  background: #f3eadf;
}

.contact-page .site-header {
  display: none;
}

.contact-main {
  min-height: 100svh;
}

.contact-sheet {
  position: relative;
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  padding: clamp(28px, 4vw, 42px) 0 70px;
}

.contact-logo {
  display: block;
  width: clamp(132px, 15vw, 190px);
  margin: 0 auto clamp(22px, 3vw, 34px);
  text-decoration: none;
}

.contact-logo img {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

.contact-label {
  position: absolute;
  top: clamp(66px, 7vw, 86px);
  left: 0;
  color: var(--olive);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.46em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-wrap {
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
}

.contact-wrap h1 {
  font-size: clamp(2.3rem, 4vw, 2.85rem);
  color: var(--ink);
}

.contact-wrap .rule {
  width: 56px;
  height: 2px;
  margin: 1.05rem auto 1rem;
  background: #b88a4f;
}

.contact-lede {
  color: #2f2d28;
  font-size: 1rem;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
  border-top: 1.5px solid #c8a06c;
  border-bottom: 1.5px solid #c8a06c;
}

.contact-info-grid > * {
  min-height: 110px;
  padding: 20px 18px;
  color: var(--ink);
  text-decoration: none;
}

.contact-info-grid > * + * {
  border-left: 1.5px solid rgba(184, 138, 79, 0.58);
}

.contact-info-grid strong,
.platform-grid a {
  display: block;
  color: var(--olive);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}

.contact-info-grid span {
  display: block;
  margin-top: 0.35rem;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
  border-bottom: 1.5px solid #c8a06c;
}

.platform-grid article {
  min-height: 152px;
  padding: 16px 38px 24px;
}

.platform-grid article + article {
  border-left: 1.5px solid rgba(184, 138, 79, 0.58);
}

.platform-grid h2 {
  font-size: 1.28rem;
}

.platform-grid p {
  max-width: 300px;
  margin: 0.7rem auto 1rem;
  color: #3d3931;
  font-size: 0.92rem;
  line-height: 1.65;
}

.platform-grid a {
  display: inline-block;
  letter-spacing: 0;
  text-transform: none;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.contact-form-simple {
  width: min(650px, 100%);
  margin: 24px auto 0;
}

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

.contact-form-simple .field {
  margin: 0;
}

.contact-form-simple input,
.contact-form-simple textarea {
  width: 100%;
  border: 1.5px solid rgba(184, 138, 79, 0.5);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.96rem;
}

.contact-form-simple input {
  height: 50px;
  padding: 0 14px;
}

.contact-form-simple textarea {
  min-height: 84px;
  margin-top: 12px;
  padding: 14px;
  resize: vertical;
}

.contact-form-simple .btn {
  min-width: 238px;
  min-height: 56px;
  margin-top: 12px;
}

.contact-form-simple .form-status {
  margin-top: 0.65rem;
  font-size: 0.9rem;
}

@media (max-width: 860px) {
  .contact-sheet {
    width: min(100% - 34px, 720px);
    padding-top: 44px;
  }

  .contact-label {
    position: static;
    margin-bottom: 26px;
    text-align: left;
  }

  .contact-logo {
    margin-bottom: 24px;
  }

  .contact-info-grid,
  .platform-grid,
  .contact-fields {
    grid-template-columns: 1fr;
  }

  .contact-info-grid > * + *,
  .platform-grid article + article {
    border-left: 0;
    border-top: 1.5px solid rgba(184, 138, 79, 0.58);
  }
}

.site-footer {
  background: #292820;
  color: rgba(251, 250, 246, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1fr) minmax(220px, 0.8fr);
  gap: clamp(26px, 5vw, 60px);
  padding: clamp(46px, 7vw, 70px) 0;
}

.site-footer .brand {
  color: var(--cream);
}

.site-footer .brand-sub {
  color: #d1a777;
}

.site-footer .brand-line {
  background: #d1a777;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
}

.footer-links a,
.footer-policies a,
.footer-contact a {
  color: inherit;
}

.footer-policies {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(251, 250, 246, 0.16);
  font-size: 0.82rem;
}

.footer-title {
  margin-bottom: 0.75rem;
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.copyright {
  padding: 16px 0 26px;
  color: rgba(251, 250, 246, 0.62);
  font-size: 0.82rem;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-copy,
.hero-art-reference,
.section-heading,
.page-hero .split > * {
  animation: fade-up 520ms ease both;
}

.hero-art-reference {
  animation-delay: 120ms;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 1040px) {
  .desktop-nav {
    display: none;
  }

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

  .mobile-panel {
    position: fixed;
    inset: 112px 0 auto 0;
    display: block;
    max-height: calc(100vh - 112px);
    overflow: auto;
    border-bottom: 1px solid var(--line);
    background: var(--cream);
    transform: translateY(-120%);
    transition: transform 180ms ease;
    visibility: hidden;
  }

  .mobile-panel[data-open="true"] {
    transform: translateY(0);
    visibility: visible;
  }

  .mobile-panel nav {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    padding: 26px 0;
    display: grid;
    gap: 14px;
  }

  .mobile-panel a {
    display: block;
    padding: 0.65rem 0;
    font-weight: 700;
  }
}

@media (max-width: 860px) {
  .hero {
    height: auto;
    min-height: auto;
  }

  .home-hero {
    padding-top: clamp(42px, 8vw, 70px);
  }

  .hero-grid,
  .split,
  .split-reverse,
  .service-block,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 340px;
    border-left: 0;
    padding-top: 10px;
  }

  .home-hero .hero-copy {
    padding-left: 0;
    padding-bottom: 0;
  }

  .hero-art-reference {
    justify-items: center;
    min-height: auto;
  }

  .hero-art-reference img {
    width: min(520px, 84vw);
    max-height: none;
  }

  .hero-foliage {
    top: 118px;
    width: 150px;
    opacity: 0.24;
  }

  .hero-portal {
    width: min(320px, 74%);
  }

  .focus-grid,
  .booking-grid,
  .credential-grid,
  .rate-grid,
  .service-copy {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-item,
  .faq-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .wide-photo {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 620px) {
  .nav-wrap,
  .container,
  .container-narrow,
  .mobile-panel nav {
    width: min(calc(100% - 30px), 430px);
    margin-left: 15px;
    margin-right: auto;
  }

  .nav-wrap {
    min-height: 82px;
  }

  .brand {
    min-width: 0;
  }

  .brand-main {
    font-size: 1.08rem;
    letter-spacing: 0.28em;
  }

  .brand-subrow {
    gap: 9px;
  }

  .brand-line {
    width: 38px;
  }

  .brand-sub {
    font-size: 0.66rem;
    letter-spacing: 0.34em;
  }

  .nav-actions .btn {
    display: none;
  }

  .mobile-panel {
    top: 82px;
    max-height: calc(100vh - 82px);
  }

  .section {
    padding: 54px 0;
  }

  .hero {
    height: auto;
    min-height: calc(100svh - 118px);
    padding: 42px 0 56px;
  }

  .hero-grid {
    position: relative;
  }

  .hero-art {
    position: absolute;
    right: -112px;
    bottom: -22px;
    z-index: 1;
    width: 250px;
    min-height: 0;
    padding: 0;
    opacity: 0.16;
    pointer-events: none;
  }

  .hero-art-reference {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 1;
    width: 100%;
    margin-top: 24px;
    opacity: 1;
    pointer-events: auto;
  }

  .hero-art-reference img {
    width: min(360px, 92vw);
  }

  .hero-foliage {
    top: 92px;
    left: -38px;
    width: 142px;
    min-width: 0;
  }

  .hero-art::before,
  .hero-art::after {
    display: none;
  }

  .hero-portal {
    width: 250px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  h1 {
    font-size: 2.25rem;
    line-height: 1.18;
  }

  h2 {
    font-size: 1.85rem;
  }

  .btn-row,
  .btn {
    width: 100%;
  }

  .btn {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    letter-spacing: 0.1em;
  }

  .focus-grid,
  .booking-grid,
  .credential-grid,
  .rate-grid,
  .service-copy,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .focus-tile,
  .booking-panel {
    min-height: auto;
  }

  .portrait-frame::before {
    display: none;
  }
}

/* Home remake: live content layered over the supplied hero artwork. */
.home-page {
  background: #f0e7dc;
}

.home-page .site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 90;
  border-bottom: 0;
  background: transparent;
  backdrop-filter: none;
}

.home-page .brand,
.home-page .desktop-nav,
.home-page .nav-actions {
  opacity: 1 !important;
  transform: none !important;
}

.home-page .desktop-nav {
  display: flex !important;
  transform: translateX(-14px) !important;
}

.home-page .nav-toggle,
.home-page .mobile-panel {
  display: none !important;
}

.home-page .nav-wrap {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(260px, 1fr);
}

.home-page .desktop-nav {
  justify-self: center;
  transform: none !important;
}

.home-page .nav-actions {
  justify-self: end;
  min-width: 260px;
}

.home-page .home-hero {
  min-height: 100svh;
  height: auto;
  padding: 0;
  background: #f2e9dd;
}

.home-page .home-hero::before {
  display: none;
}

.home-page .home-hero::after {
  display: none;
}

.home-page .hero-grid {
  position: relative;
  display: block;
  height: auto;
  min-height: 100svh;
}

.home-page .home-hero .hero-copy {
  width: min(860px, 62vw);
  max-width: 860px;
  opacity: 1 !important;
  padding: clamp(260px, 27.8vh, 300px) 0 clamp(72px, 9vh, 120px) clamp(118px, 9vw, 142px);
}

.home-page .home-hero h1 {
  max-width: 720px;
  color: var(--olive);
  font-size: clamp(3.25rem, 4.35vw, 4.25rem);
  line-height: 1.18;
}

.home-page .home-hero .rule {
  width: 58px;
  margin: 1.45rem 0 1.85rem;
}

.home-page .home-hero .intro-text {
  max-width: 640px;
  color: #272820;
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  line-height: 1.45;
}

.home-page .home-hero .intro-text + .intro-text {
  margin-top: 1.7rem;
}

.home-page .home-hero .btn-row {
  gap: 24px;
  margin-top: 3.1rem;
}

.home-page .home-hero .btn {
  min-width: 218px;
  min-height: 60px;
}

.home-page .hero-foliage {
  display: block;
  position: absolute;
  top: 151px;
  left: 0;
  z-index: 0;
  width: min(13vw, 190px);
  min-width: 150px;
  opacity: 0.96;
  pointer-events: none;
}

.home-page .hero-art-reference {
  display: block;
  position: absolute;
  top: 100px;
  right: -18px;
  z-index: 0;
  width: min(48.5vw, 740px);
  min-height: 0;
  pointer-events: none;
}

.home-page .hero-art-reference img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: right top;
  mix-blend-mode: normal;
}

@media (max-width: 1180px) {
  .home-page .home-hero .hero-copy {
    width: min(660px, 58vw);
    padding-left: clamp(46px, 6vw, 88px);
  }

  .home-page .hero-art-reference {
    right: -22px;
    width: min(51vw, 650px);
  }
}

@media (max-width: 860px) {
  .home-page .site-header {
    position: absolute;
  }

  .home-page .home-hero {
    min-height: 100svh;
    padding-top: 0;
    background:
      linear-gradient(180deg, rgba(248, 243, 235, 0.92) 0%, rgba(248, 243, 235, 0.76) 46%, rgba(248, 243, 235, 0.22) 100%),
      url("threshold-background.png") 60% top / auto 100% no-repeat;
  }

  .home-page .hero-grid {
    min-height: 100svh;
  }

  .home-page .home-hero .hero-copy {
    width: min(620px, calc(100% - 60px));
    max-width: 620px;
    padding: clamp(138px, 21vh, 176px) 0 56px;
  }

  .home-page .home-hero h1 {
    font-size: clamp(2.55rem, 9vw, 4.1rem);
  }
}

@media (max-width: 620px) {
  .home-page .home-hero {
    min-height: 100svh;
    padding: 0;
    background:
      linear-gradient(180deg, rgba(248, 243, 235, 0.96) 0%, rgba(248, 243, 235, 0.82) 56%, rgba(248, 243, 235, 0.28) 100%),
      url("threshold-background.png") 58% top / auto 100% no-repeat;
  }

  .home-page .hero-grid {
    min-height: 100svh;
  }

  .home-page .home-hero .hero-copy {
    width: min(calc(100% - 30px), 430px);
    padding: 118px 0 42px;
  }

  .home-page .home-hero h1 {
    font-size: clamp(2.15rem, 11vw, 3.1rem);
  }

  .home-page .home-hero .intro-text {
    font-size: 1.08rem;
    line-height: 1.48;
  }

  .home-page .home-hero .btn-row {
    gap: 12px;
  }
}

.home-page .site-header {
  position: fixed;
}

.home-page .desktop-nav {
  display: flex !important;
}

.home-page .desktop-nav a {
  white-space: nowrap;
}

.home-page .nav-toggle,
.home-page .mobile-panel {
  display: none !important;
}

@media (max-width: 1100px) {
  .home-page .nav-wrap {
    width: min(var(--max), calc(100% - 40px));
    gap: 20px;
  }

  .home-page .brand {
    min-width: 280px;
  }

  .home-page .brand-main {
    font-size: 1.3rem;
    letter-spacing: 0.36em;
  }

  .home-page .brand-line {
    width: 54px;
  }

  .home-page .desktop-nav {
    gap: 30px;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    transform: none !important;
  }

  .home-page .nav-actions .btn {
    min-width: 190px;
    min-height: 58px;
  }
}

.home-copyright {
  padding: 18px 20px 24px;
  background: #292820;
  color: rgba(251, 250, 246, 0.68);
  font-size: 0.82rem;
  text-align: center;
}

.home-page,
.home-page .home-hero {
  background-color: #f7ebdf;
}

.home-page .home-hero {
  min-height: 100vh;
  background-image: url("threshold-background.png?v=kkk-20260709") !important;
  background-position: center top !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.home-page .hero-foliage,
.home-page .hero-art-reference {
  display: none !important;
}

.home-page .home-hero::before,
.home-page .home-hero::after {
  display: none !important;
  content: none !important;
}

.home-page .home-hero::before {
  display: block !important;
  content: "" !important;
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(255, 251, 244, 0.24);
  pointer-events: none;
}

.home-page .hero-grid {
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

.home-page .hero-grid.container {
  width: 100%;
  max-width: none;
}

.home-page .home-hero .hero-copy {
  position: relative;
  z-index: 2;
}

.home-page .nav-wrap {
  width: min(var(--max), calc(100% - 92px));
  grid-template-columns: minmax(330px, 1fr) auto minmax(240px, 1fr);
}

.home-page .desktop-nav {
  gap: clamp(48px, 4.8vw, 74px);
}

.home-page .nav-actions .btn {
  min-width: 198px;
  min-height: 56px;
}

.home-page .home-hero .hero-copy {
  box-sizing: content-box;
  width: min(770px, 58vw);
  max-width: 770px;
  padding: clamp(232px, 29vh, 296px) 0 clamp(74px, 9vh, 112px) clamp(156px, 11vw, 210px);
}

.home-page .home-hero h1 {
  max-width: 770px;
  color: #20211b;
  font-size: clamp(4rem, 4.4vw, 4.5rem);
  line-height: 1.13;
}

.home-page .home-hero .rule {
  width: 78px;
  height: 2px;
  margin: clamp(26px, 3vh, 36px) 0 clamp(26px, 3.2vh, 34px);
  background: #b88a4f;
}

.home-page .home-hero .intro-text {
  max-width: 600px;
  color: #24241e;
  font-family: var(--sans);
  font-size: clamp(1.16rem, 1.38vw, 1.35rem);
  line-height: 1.42;
}

.focus-strip {
  max-width: 700px;
  margin-top: clamp(48px, 6vh, 70px);
  color: #24241e;
  text-transform: uppercase;
}

.focus-strip-title {
  color: #2f3429;
  font-size: clamp(1rem, 1.22vw, 1.18rem);
  font-weight: 600;
  letter-spacing: 0.28em;
}

.focus-strip-rule {
  width: 100%;
  height: 1px;
  margin: 16px 0 20px;
  background: rgba(184, 138, 79, 0.62);
}

.focus-strip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.82rem;
  align-items: center;
  font-size: clamp(0.9rem, 1.05vw, 1.03rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.35;
}

.focus-strip-list span {
  color: #b88a4f;
}

@media (max-width: 1180px) {
  .home-page .nav-wrap {
    width: min(var(--max), calc(100% - 48px));
    grid-template-columns: minmax(280px, 0.9fr) auto minmax(198px, 0.8fr);
  }

  .home-page .desktop-nav {
    gap: 32px;
  }

  .home-page .home-hero .hero-copy {
    width: min(660px, 58vw);
    padding-left: clamp(48px, 6vw, 88px);
  }
}

@media (max-width: 860px) {
  .home-page .home-hero .hero-copy {
    width: min(620px, calc(100% - 60px));
    padding: clamp(138px, 21vh, 176px) 0 56px;
  }

  .home-page .home-hero h1 {
    font-size: clamp(2.55rem, 9vw, 4.1rem);
  }

  .focus-strip {
    margin-top: 36px;
  }
}

@media (max-width: 620px) {
  .home-page .home-hero .hero-copy {
    width: min(calc(100% - 30px), 430px);
    padding: 118px 0 42px;
  }

  .home-page .home-hero h1 {
    font-size: clamp(2.15rem, 11vw, 3.1rem);
  }

  .home-page .home-hero .intro-text {
    font-size: 1.08rem;
    line-height: 1.48;
  }

  .focus-strip-list {
    display: block;
  }

  .focus-strip-list span {
    padding: 0 0.4rem;
  }
}

/* Contact page final polish */
html:has(body.contact-page) {
  background: #f7ebdf;
}

body.contact-page {
  background: #f7ebdf !important;
}

.contact-page .contact-main,
.contact-page .contact-sheet,
.contact-page .contact-wrap {
  background: #f7ebdf;
}

.contact-page .site-footer {
  background: #f7ebdf;
}

.contact-page .contact-logo {
  display: block !important;
  width: clamp(132px, 15vw, 190px) !important;
  margin: 0 auto clamp(22px, 3vw, 34px) !important;
  text-decoration: none;
}

.contact-page .contact-logo img {
  display: block;
  width: 100% !important;
  height: auto !important;
  mix-blend-mode: normal;
}

.contact-page .contact-wrap .rule {
  width: 56px;
  height: 2px;
  background: #b88a4f;
}

.contact-page .contact-info-grid {
  border-top: 1.5px solid #c8a06c;
  border-bottom: 1.5px solid #c8a06c;
}

.contact-page .contact-info-grid > * + *,
.contact-page .platform-grid article + article {
  border-left-color: rgba(184, 138, 79, 0.58);
  border-left-width: 1.5px;
}

.contact-page .platform-grid {
  border-bottom: 1.5px solid #c8a06c;
}

.contact-page .contact-form-simple input,
.contact-page .contact-form-simple textarea {
  border-color: rgba(184, 138, 79, 0.5);
  border-width: 1.5px;
}

/* Minimal site footer */
.site-footer-minimal {
  background: #f7ebdf;
  color: rgba(36, 36, 30, 0.78);
}

.site-footer-minimal .container {
  padding-top: 0;
}

.site-footer-minimal .footer-policies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding: 10px 0 10px;
  border-top: 1px solid rgba(184, 138, 79, 0.34);
  font-size: 0.76rem;
}

.site-footer-minimal .footer-policies a {
  color: rgba(36, 36, 30, 0.82);
}

.site-footer-minimal .copyright {
  padding: 0 0 8px;
  color: rgba(36, 36, 30, 0.58);
  font-size: 0.76rem;
}

/* About page */
html:has(body.about-page) {
  background: #f7ebdf;
}

body.about-page {
  background: #f7ebdf;
}

.about-page .site-header {
  display: none;
}

.about-main,
.about-sheet {
  background: #f7ebdf;
}

.about-sheet {
  min-height: 100svh;
  padding: clamp(28px, 4vw, 42px) 0 clamp(54px, 7vw, 72px);
  border-top: 1.5px solid rgba(184, 138, 79, 0.42);
  border-bottom: 1.5px solid rgba(184, 138, 79, 0.42);
}

.about-logo {
  display: block;
  width: clamp(132px, 15vw, 190px);
  margin: 0 auto clamp(22px, 3vw, 34px);
  text-decoration: none;
}

.about-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.about-label,
.about-copy .rule,
.about-credentials article {
  border-color: rgba(184, 138, 79, 0.58);
}

.about-label {
  width: min(1340px, calc(100% - 96px));
  margin: 0 auto 26px;
  color: var(--olive);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.42em;
  line-height: 1.7;
  text-transform: uppercase;
}

.about-layout {
  width: min(1340px, calc(100% - 96px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 420px) minmax(270px, 330px) minmax(300px, 0.82fr);
  gap: clamp(36px, 4vw, 52px);
  align-items: stretch;
}

.about-photo {
  margin: 0;
}

.about-photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  max-height: 560px;
  object-fit: cover;
  object-position: center;
  border: 1.5px solid rgba(184, 138, 79, 0.45);
}

.about-copy {
  padding: 2px 0;
}

.about-copy h1 {
  max-width: 310px;
  color: var(--ink);
  font-size: clamp(2.15rem, 3vw, 2.65rem);
  line-height: 1.18;
}

.about-copy .rule {
  width: 48px;
  height: 2px;
  margin: 1.8rem 0 1.65rem;
  background: #b88a4f;
}

.about-copy p {
  color: #37332c;
  font-size: 1rem;
  line-height: 1.7;
}

.about-copy p + p {
  margin-top: 1.6rem;
}

.about-credentials {
  display: grid;
  align-content: stretch;
  border-left: 1.5px solid rgba(184, 138, 79, 0.42);
  padding-left: clamp(28px, 4vw, 38px);
}

.about-credentials article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 126px;
  padding: 22px 0;
  border-bottom: 1.5px solid rgba(184, 138, 79, 0.42);
}

.about-credentials article:last-child {
  border-bottom: 0;
}

.about-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  color: var(--olive);
}

.about-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-credentials p {
  color: #272820;
  font-size: 1rem;
  line-height: 1.45;
}

@media (max-width: 1040px) {
  .about-label,
  .about-layout {
    width: min(100% - 60px, 1040px);
  }

  .about-layout {
    grid-template-columns: minmax(270px, 0.9fr) minmax(240px, 0.75fr) minmax(240px, 0.8fr);
    gap: 28px;
  }
}

@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: minmax(260px, 0.9fr) minmax(260px, 1fr);
  }

  .about-credentials {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-left: 0;
    padding-left: 0;
    border-top: 1.5px solid rgba(184, 138, 79, 0.42);
  }

  .about-credentials article:nth-child(odd) {
    padding-right: 22px;
    border-right: 1.5px solid rgba(184, 138, 79, 0.42);
  }
}

@media (max-width: 720px) {
  .about-sheet {
    padding-top: 44px;
  }

  .about-label,
  .about-layout {
    width: min(100% - 34px, 560px);
  }

  .about-layout,
  .about-credentials {
    grid-template-columns: 1fr;
  }

  .about-photo img {
    min-height: auto;
    max-height: none;
    aspect-ratio: 4 / 5;
  }

  .about-credentials article:nth-child(odd) {
    padding-right: 0;
    border-right: 0;
  }
}

/* Global header, hero, and footer final pass */
.site-header,
.home-page .site-header,
.contact-page .site-header,
.about-page .site-header {
  position: sticky;
  top: 0;
  right: auto;
  left: auto;
  z-index: 90;
  display: block;
  border-bottom: 1px solid rgba(184, 138, 79, 0.24);
  background: #f7ebdf;
  backdrop-filter: none;
}

.nav-wrap,
.home-page .nav-wrap {
  width: calc(100% - 88px);
  min-height: 104px;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(330px, 1fr) auto minmax(230px, 1fr);
  align-items: center;
  gap: clamp(20px, 2.4vw, 44px);
  margin: 0 auto;
}

.brand,
.home-page .brand {
  justify-self: start;
  min-width: 0;
}

.brand-main {
  font-size: clamp(1.42rem, 1.8vw, 2rem);
  letter-spacing: 0.42em;
}

.brand-subrow {
  gap: 14px;
  margin-top: 10px;
}

.brand-line {
  width: 70px;
}

.desktop-nav,
.home-page .desktop-nav {
  justify-self: center;
  display: flex !important;
  gap: clamp(44px, 5vw, 76px);
  transform: none !important;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
}

.desktop-nav a {
  white-space: nowrap;
}

.nav-actions,
.home-page .nav-actions {
  justify-self: end;
  min-width: 0;
  margin-right: 0;
}

.nav-actions .btn,
.home-page .nav-actions .btn {
  min-width: 196px;
  min-height: 56px;
}

.home-page .nav-toggle,
.home-page .mobile-panel {
  display: none !important;
}

.home-page .home-hero {
  min-height: calc(100vh - 104px);
  background-position: 64% top !important;
}

.home-page .hero-grid {
  min-height: calc(100vh - 104px);
}

.home-page .home-hero .hero-copy {
  box-sizing: content-box;
  width: min(770px, 58vw);
  max-width: 770px;
  padding: clamp(150px, 18vh, 210px) 0 clamp(58px, 7vh, 96px) clamp(156px, 13.8vw, 212px);
}

.home-page .home-hero h1 {
  max-width: 770px;
  font-size: clamp(4rem, 4.4vw, 4.5rem);
  line-height: 1.13;
}

.home-page .home-hero .rule {
  width: 78px;
  margin: clamp(26px, 3vh, 34px) 0 clamp(26px, 3vh, 34px);
}

.home-page .home-hero .intro-text {
  max-width: 590px;
  font-size: clamp(1.12rem, 1.3vw, 1.3rem);
  line-height: 1.46;
}

.focus-strip {
  max-width: 760px;
  margin-top: clamp(48px, 6vh, 68px);
}

.focus-strip-list {
  flex-wrap: nowrap;
  white-space: nowrap;
}

.site-footer-minimal {
  background: #f7ebdf;
  color: rgba(36, 36, 30, 0.78);
}

.site-footer-minimal .container {
  width: calc(100% - 88px);
  max-width: none;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(160px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 12px 0;
  border-top: 1px solid rgba(184, 138, 79, 0.34);
}

.site-footer-minimal .footer-policies {
  justify-self: center;
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
  min-width: 0;
  padding: 0;
  border-top: 0;
  font-size: 0.72rem;
  line-height: 1.2;
}

.site-footer-minimal .footer-company,
.site-footer-minimal .footer-rights {
  color: rgba(36, 36, 30, 0.58);
  font-size: 0.72rem;
  line-height: 1.2;
  white-space: nowrap;
}

.site-footer-minimal .footer-company {
  justify-self: start;
}

.site-footer-minimal .footer-rights {
  justify-self: end;
}

.site-footer-minimal .footer-policies a {
  white-space: nowrap;
}

.site-footer-minimal .copyright {
  flex: 0 0 auto;
  padding: 0;
  white-space: nowrap;
  font-size: 0.72rem;
  line-height: 1.2;
}

.contact-logo,
.about-logo {
  display: none !important;
}

.contact-sheet,
.about-sheet {
  padding-top: clamp(44px, 6vw, 76px);
}

.about-layout {
  grid-template-columns: minmax(300px, 420px) minmax(380px, 0.95fr) minmax(300px, 0.72fr);
}

.about-copy h1 {
  max-width: 520px;
}

.about-copy p {
  font-size: 0.98rem;
  line-height: 1.68;
}

.about-credentials p {
  font-size: 0.96rem;
}

/* Approach page */
html:has(body.approach-page) {
  background: #f7ebdf;
}

body.approach-page {
  background: #f7ebdf;
}

.approach-main,
.approach-sheet {
  background: #f7ebdf;
}

.approach-sheet {
  min-height: calc(100svh - 104px);
  padding: clamp(54px, 7vw, 88px) 0 clamp(64px, 8vw, 92px);
  border-top: 1.5px solid rgba(184, 138, 79, 0.28);
}

.approach-label {
  position: absolute;
  left: clamp(58px, 11vw, 170px);
  color: var(--olive);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.42em;
  line-height: 1;
  text-transform: uppercase;
}

.approach-wrap {
  width: min(760px, calc(100% - 96px));
  margin: 0 auto 0 clamp(220px, 26vw, 414px);
}

.approach-wrap h1 {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(2.35rem, 4vw, 3.05rem);
  line-height: 1.15;
}

.approach-wrap .rule {
  width: 48px;
  height: 2px;
  margin: 1.6rem 0 1.75rem;
  background: #b88a4f;
}

.approach-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 58px);
  margin-top: 0.5rem;
}

.approach-columns > div + div {
  border-left: 1.5px solid rgba(184, 138, 79, 0.42);
  padding-left: clamp(34px, 5vw, 58px);
}

.approach-columns p {
  color: #37332c;
  font-size: 1rem;
  line-height: 1.72;
}

.approach-columns p + p {
  margin-top: 1.45rem;
}

.approach-quote {
  position: relative;
  max-width: 660px;
  margin: clamp(52px, 7vw, 72px) auto 0;
  padding: 0 64px;
  text-align: center;
}

.approach-quote p {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  font-style: italic;
  line-height: 1.22;
}

.approach-quote cite {
  display: block;
  margin-top: 1rem;
  color: #2f3429;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.quote-mark {
  position: absolute;
  color: rgba(184, 138, 79, 0.72);
  font-family: var(--serif);
  font-size: 3.2rem;
  line-height: 1;
}

.quote-mark-start {
  top: -18px;
  left: 0;
}

.quote-mark-end {
  right: 0;
  bottom: 10px;
}

@media (max-width: 1180px) {
  .nav-wrap,
  .home-page .nav-wrap,
  .site-footer-minimal .container {
    width: calc(100% - 48px);
  }

  .desktop-nav,
  .home-page .desktop-nav {
    gap: 34px;
    font-size: 0.74rem;
  }

  .nav-actions .btn,
  .home-page .nav-actions .btn {
    min-width: 176px;
  }

  .home-page .home-hero .hero-copy {
    padding-left: clamp(68px, 8vw, 110px);
  }

  .approach-label {
    position: static;
    width: min(760px, calc(100% - 96px));
    margin: 0 auto 24px;
  }

  .site-footer-minimal .container {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
  }

  .site-footer-minimal .footer-company,
  .site-footer-minimal .footer-rights,
  .site-footer-minimal .footer-policies {
    justify-self: center;
  }

  .site-footer-minimal .footer-policies {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .focus-strip-list {
    flex-wrap: wrap;
    white-space: normal;
  }

  .approach-wrap,
  .approach-label {
    width: min(100% - 34px, 560px);
  }

  .approach-columns {
    grid-template-columns: 1fr;
    gap: 1.45rem;
  }

  .approach-columns > div + div {
    border-left: 0;
    border-top: 1.5px solid rgba(184, 138, 79, 0.42);
    padding-top: 1.45rem;
    padding-left: 0;
  }

  .approach-quote {
    padding: 0 36px;
  }
}

/* Single-page homepage structure */
html {
  scroll-padding-top: 104px;
}

.home-page .site-header {
  position: sticky;
}

.home-page .nav-wrap,
.nav-wrap {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.home-page .desktop-nav,
.desktop-nav {
  gap: clamp(24px, 3vw, 48px);
}

.home-page .nav-actions .btn,
.nav-actions .btn {
  min-width: 176px;
}

.onepage-section {
  background: #f7ebdf;
  border-top: 1.5px solid rgba(184, 138, 79, 0.28);
  padding: clamp(60px, 8vw, 92px) 0;
}

.onepage-container {
  width: min(1200px, calc(100% - 96px));
  margin: 0 auto;
}

.section-kicker {
  color: var(--olive);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.46em;
  line-height: 1;
  text-transform: uppercase;
}

.onepage-section .rule {
  width: 48px;
  height: 2px;
  margin: 1.3rem 0 1.9rem;
  background: #b88a4f;
}

.hero-session-btn {
  display: none !important;
}

.approach-section {
  padding: clamp(62px, 7vw, 86px) 0 clamp(68px, 8vw, 92px);
}

.approach-layout {
  display: grid;
  grid-template-columns: minmax(140px, 0.28fr) minmax(0, 1fr);
  gap: clamp(44px, 7vw, 88px);
  align-items: start;
}

.approach-side-label {
  padding-top: 0.42rem;
}

.approach-onepage-grid {
  width: min(920px, 100%);
}

.approach-heading h2 {
  max-width: 920px;
  color: var(--ink);
  font-size: clamp(2.35rem, 4vw, 3rem);
  line-height: 1.16;
}

.approach-section .approach-columns {
  margin-top: clamp(22px, 3vw, 30px);
  gap: clamp(34px, 5vw, 58px);
}

.approach-section .approach-columns p {
  font-size: 1rem;
  line-height: 1.7;
}

.focus-section {
  padding-top: clamp(54px, 7vw, 82px);
}

.focus-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(26px, 4vw, 42px);
}

.focus-card {
  min-height: 300px;
  padding: 0 clamp(28px, 4vw, 54px);
  text-align: center;
}

.focus-card + .focus-card {
  border-left: 1.5px solid rgba(184, 138, 79, 0.38);
}

.focus-card-icon {
  display: inline-flex;
  width: 58px;
  height: 58px;
  margin-bottom: 1.4rem;
  color: var(--olive);
}

.focus-card-icon svg,
.contact-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.focus-card h2 {
  max-width: 230px;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  line-height: 1.28;
}

.mini-rule {
  width: 52px;
  height: 1.5px;
  margin: 1rem auto 1.1rem;
  background: #b88a4f;
}

.focus-card p {
  max-width: 220px;
  margin: 0 auto;
  color: #37332c;
  font-size: 0.92rem;
  line-height: 1.7;
}

.about-section {
  padding-top: clamp(58px, 7vw, 86px);
}

.about-onepage-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 420px);
  gap: clamp(50px, 9vw, 140px);
  align-items: center;
}

.about-onepage-copy h2,
.contact-onepage-copy h2 {
  color: var(--ink);
  font-size: clamp(2rem, 3.5vw, 2.65rem);
  line-height: 1.18;
}

.about-onepage-copy p,
.contact-onepage-copy p {
  max-width: 560px;
  color: #37332c;
  font-size: 1rem;
  line-height: 1.68;
}

.about-onepage-copy p + p {
  margin-top: 1rem;
}

.about-onepage-copy .btn {
  display: none !important;
}

.about-onepage-photo {
  margin: 0;
}

.about-onepage-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1.5px solid rgba(184, 138, 79, 0.4);
  object-fit: cover;
  object-position: center;
}

.contact-section {
  padding: clamp(58px, 7vw, 86px) 0;
}

.contact-panel {
  position: relative;
}

.contact-side-label {
  position: absolute;
  top: 0.35rem;
  left: 0;
}

.contact-section .contact-wrap {
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
}

.contact-section .contact-wrap > h2 {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.35rem, 4vw, 2.85rem);
  font-weight: 400;
  line-height: 1.15;
}

.contact-section .platform-grid h2 {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 400;
  line-height: 1.25;
}

.contact-section .contact-wrap .rule {
  margin: 1rem auto 1rem;
}

.contact-section .contact-lede {
  margin-bottom: 0;
}

.contact-icon {
  display: inline-flex;
  width: 26px;
  height: 26px;
  color: var(--olive);
}

.contact-section .contact-form-simple .btn {
  display: inline-flex;
}

.contact-onepage-copy .btn,
.platform-links {
  display: none !important;
}

@media (max-width: 1180px) {
  .home-page .desktop-nav,
  .desktop-nav {
    gap: 22px;
    font-size: 0.7rem;
  }
}

@media (max-width: 860px) {
  .onepage-container {
    width: min(100% - 34px, 620px);
  }

  .focus-cards,
  .about-onepage-grid,
  .contact-onepage-grid {
    grid-template-columns: 1fr;
  }

  .focus-card {
    min-height: auto;
    padding: 32px 0;
  }

  .focus-card + .focus-card {
    border-left: 0;
    border-top: 1.5px solid rgba(184, 138, 79, 0.38);
  }

  .contact-onepage-info {
    padding-left: 0;
    border-left: 0;
    border-top: 1.5px solid rgba(184, 138, 79, 0.38);
    padding-top: 28px;
  }
}

/* Light warm polish and approach background */
body,
.home-page {
  background: #fbf9f2;
}

.site-header,
.home-page .site-header,
.contact-page .site-header,
.about-page .site-header {
  background: rgba(251, 249, 242, 0.96);
  border-bottom-color: rgba(184, 138, 79, 0.2);
}

.onepage-section,
.site-footer-minimal {
  background: #fbf9f2;
}

.focus-section,
.contact-section {
  background: #fdfbf5;
}

.onepage-section {
  border-top-color: rgba(184, 138, 79, 0.2);
  padding-top: clamp(64px, 7vw, 90px);
  padding-bottom: clamp(64px, 7vw, 90px);
}

.approach-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(720px, 78vh, 880px);
  background: #fbf9f2;
}

.approach-section::before,
.approach-section::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.approach-section::before {
  z-index: 0;
  background: url("approach-river-background.png?v=approach-polish-20260710e") left center / cover no-repeat;
  filter: brightness(0.92) contrast(1.06) saturate(1.04);
  opacity: 1;
}

.approach-section::after {
  z-index: 1;
  background:
    radial-gradient(circle at 72% 33%, rgba(251, 249, 242, 0.88) 0%, rgba(251, 249, 242, 0.7) 24%, rgba(251, 249, 242, 0.36) 48%, rgba(251, 249, 242, 0.08) 78%),
    linear-gradient(90deg, rgba(251, 249, 242, 0.06) 0%, rgba(251, 249, 242, 0.18) 31%, rgba(251, 249, 242, 0.62) 54%, rgba(251, 249, 242, 0.84) 100%),
    linear-gradient(180deg, rgba(251, 249, 242, 0.28) 0%, rgba(251, 249, 242, 0.06) 45%, rgba(251, 249, 242, 0.34) 100%);
}

.approach-layout {
  position: relative;
  z-index: 2;
}

.approach-onepage-grid {
  width: min(900px, 100%);
  justify-self: end;
}

.approach-heading h2 {
  max-width: 760px;
}

.approach-section .approach-columns {
  max-width: 850px;
}

.approach-section .approach-columns p {
  color: #312f28;
  text-shadow: 0 1px 18px rgba(251, 249, 242, 0.42);
}

.approach-quote {
  margin-top: clamp(46px, 6vw, 64px);
}

.about-onepage-grid {
  gap: clamp(54px, 8vw, 118px);
}

.contact-section .contact-wrap {
  width: min(790px, 100%);
}

.contact-info-grid,
.platform-grid,
.contact-form-simple input,
.contact-form-simple textarea {
  border-color: rgba(184, 138, 79, 0.34);
}

.home-page .desktop-nav,
.desktop-nav {
  gap: clamp(36px, 4.6vw, 68px);
  transform: none !important;
}

.section-kicker,
.desktop-nav,
.btn,
.contact-info-grid strong,
.approach-quote cite {
  font-family: var(--sans);
}

.approach-heading h2,
.about-onepage-copy h2,
.contact-section .contact-wrap > h2,
.contact-section .platform-grid h2,
.focus-card h2,
.approach-quote p {
  font-family: var(--serif);
  font-weight: 400;
}

.approach-section .approach-columns p,
.about-onepage-copy p,
.contact-section,
.focus-card p {
  font-family: var(--sans);
}

@media (max-width: 860px) {
  .approach-section::before {
    background-position: 18% center;
    opacity: 0.38;
  }

  .approach-section::after {
    background: rgba(251, 249, 242, 0.84);
  }

  .approach-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .approach-heading h2 {
    font-size: clamp(2.05rem, 8vw, 2.65rem);
  }
}
