@font-face {
  font-family: "Bodoni Moda";
  src: url("/assets/fonts/bodoni-moda-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Bodoni Moda";
  src: url("/assets/fonts/bodoni-moda-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Bodoni Moda";
  src: url("/assets/fonts/bodoni-moda-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/montserrat-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/montserrat-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/montserrat-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Logan Script";
  src: url("/assets/fonts/logan-script-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --surface: #fafafa;
  --ink: #000000;
  --muted: #5e5e5e;
  --accent: #c8a47e;
  --accent-on: #000000;
  --radius: 0px;
  --font-heading: "Bodoni Moda", Georgia, serif;
  --font-body: "Montserrat", Arial, sans-serif;
  --page-gutter: clamp(36px, 4.6vw, 84px);
  --shell: min(calc(100% - (var(--page-gutter) * 2)), 1380px);
  --ease-settle: cubic-bezier(0.22, 0.72, 0.21, 1);
  --ease-editorial: cubic-bezier(0.22, 1, 0.36, 1);
  --header-height: 92px;
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
  background: var(--bg);
  font-synthesis: none;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: clip;
  overscroll-behavior: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.consent-banner {
  position: fixed;
  z-index: 1000;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: #111;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  color: #fff;
}

.consent-banner__copy { max-width: 760px; }
.consent-banner__copy strong { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 500; }
.consent-banner__copy p { margin: 7px 0 0; color: #ddd; font-size: 0.86rem; line-height: 1.6; }
.consent-banner__copy a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.consent-banner__actions { display: flex; align-items: center; gap: 16px; flex: 0 0 auto; }
.consent-banner .button { min-height: 46px; padding: 12px 20px; border-color: #fff; background: #fff; color: #111; }
.consent-decline,
.consent-settings-button { border: 0; background: transparent; color: inherit; font: inherit; text-decoration: underline; text-underline-offset: 4px; cursor: pointer; }
.consent-decline { color: #fff; }
.consent-settings-button { color: var(--ink); }

@media (max-width: 720px) {
  .consent-banner { right: 12px; bottom: 12px; left: 12px; padding: 20px; align-items: stretch; flex-direction: column; gap: 16px; }
  .consent-banner__actions { align-items: stretch; flex-direction: column; gap: 12px; }
  .consent-banner .button { width: 100%; }
}

@media print {
  .consent-banner { display: none !important; }
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
}

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

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

:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
  box-shadow: 0 0 0 5px #1d1916;
}

::selection {
  color: var(--ink);
  background: #e4cbb0;
}

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

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

.hero-lede,
.lede,
.pull-quote,
.section-eyebrow,
.cta-label,
.interior-hero-copy > p,
.section-heading > p {
  text-wrap: balance;
}

.measure,
.hero-lede,
.lede,
.editorial-copy > p:not(.eyebrow),
.section-heading > p:not(.eyebrow),
.faq-item > p,
.legal-wrap p {
  max-width: 72ch;
}

article p,
.prose p,
.legal-wrap p {
  text-wrap: pretty;
}

h1 {
  font-size: clamp(3.55rem, 6.2vw, 7.9rem);
}

h2 {
  font-size: clamp(3rem, 5.2vw, 6.5rem);
}

h3 {
  font-size: clamp(2.25rem, 4vw, 4.8rem);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: #fff;
  background: #000;
  transform: translateY(-150%);
  transition: transform 200ms ease;
}

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

.eyebrow {
  margin-bottom: 24px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--accent);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 15px 26px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 200ms ease, background-color 200ms ease, transform 200ms ease;
}

a,
button,
[role="button"],
input[type="button"],
input[type="submit"] {
  touch-action: manipulation;
}

.button-dark,
.btn-primary {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #000 0%, #211d19 58%, #6c523b 145%);
  box-shadow: 0 16px 34px -20px rgba(0, 0, 0, 0.72);
}

.button-light {
  color: var(--ink);
  background: #fff;
}

.editorial-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid currentColor;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-decoration: none;
  text-transform: uppercase;
}

.editorial-link span {
  font-size: 1.05rem;
  transition: transform 200ms ease;
}

.editorial-link {
  max-width: 100%;
}

/* Header */

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: height 300ms ease, background-color 300ms ease, border-color 300ms ease;
}

.site-header.is-solid,
.site-header.menu-active {
  height: 76px;
  border-color: rgba(0, 0, 0, 0.1);
  background: rgba(250, 248, 245, 0.86);
  backdrop-filter: blur(18px) saturate(145%);
  box-shadow: 0 10px 36px rgba(24, 20, 17, 0.06);
}

/* A filtered ancestor becomes the containing block for fixed descendants. Keep the
   open-menu header opaque so the full-screen mobile drawer stays viewport-fixed. */
.site-header.menu-active {
  background: rgba(250, 248, 245, 0.98);
  backdrop-filter: none;
}

body:not(.interior-page):not(.legal-page) .site-header:not(.is-solid):not(.menu-active) {
  color: #fff;
  border-color: transparent;
  background: transparent;
  backdrop-filter: none;
}

body:not(.interior-page):not(.legal-page) .site-header:not(.is-solid):not(.menu-active) .brand-link img {
  filter: invert(1) brightness(2.2);
}

.header-inner {
  display: grid;
  height: 100%;
  grid-template-columns: minmax(170px, 240px) 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand-link {
  display: inline-flex;
  width: clamp(170px, 15vw, 224px);
  min-height: 44px;
  align-items: center;
}

.brand-link img {
  width: 100%;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.6vw, 44px);
}

.desktop-nav a {
  position: relative;
  padding: 14px 0;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 9px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-call {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

.header-call svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
  transition: transform 200ms ease;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 13px 9px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 6px 0;
  background: var(--ink);
  transition: transform 200ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 95;
  inset: 76px 0 0;
  overflow-y: auto;
  padding: 44px 24px calc(36px + env(safe-area-inset-bottom));
  background: var(--surface);
  overscroll-behavior: contain;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}

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

.mobile-menu nav {
  display: grid;
  margin-bottom: 36px;
}

.mobile-menu nav a {
  padding: 11px 0 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 12vw, 4rem);
  line-height: 1;
  text-decoration: none;
}

.mobile-menu .button {
  width: 100%;
}

.mobile-menu p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

/* Hero */

.hero {
  position: relative;
  display: block;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  overflow: clip;
  color: #fff;
  background: #171513;
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  width: var(--shell);
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  margin-inline: auto;
  padding: calc(var(--header-height) + 72px) 0 62px;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-copy h1 {
  max-width: 720px;
  margin-bottom: 30px;
  font-size: clamp(4rem, 5.4vw, 6.7rem);
  perspective: 700px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.46);
}

.hero-copy h1 em {
  display: inline-block;
  position: relative;
  color: #fff;
  font-style: italic;
  font-weight: 400;
}

.hero-copy h1 em::after {
  position: absolute;
  right: 0.02em;
  bottom: -0.04em;
  left: 0.02em;
  height: 0.055em;
  background: linear-gradient(90deg, var(--accent) 0%, #e2c5a8 72%, rgba(226, 197, 168, 0) 100%);
  content: "";
  transform: scaleX(1);
  transform-origin: left center;
}

html.js-motion .hero-copy h1 em::after {
  transform: scaleX(0);
}

html.js-motion.is-ready .hero-copy h1 em::after {
  transform: scaleX(1);
  transition: transform 1100ms var(--ease-editorial) 1500ms;
}

.hero-lede {
  max-width: 610px;
  margin-bottom: 32px;
  color: #fff;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.75;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.hero-proof {
  display: none;
  margin-top: 38px;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-proof span + span::before {
  margin-right: 18px;
  color: var(--accent);
  content: "•";
}

.hero-proof strong {
  color: #fff;
  font-weight: 600;
}

.hero .eyebrow,
.hero .editorial-link {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.52);
}

.hero-copy > .eyebrow {
  width: fit-content;
  padding: 6px 8px;
  background: #1d1916;
}

.hero .button-dark,
.hero .btn-primary,
.contact-form .form-submit {
  color: var(--ink);
  border-color: transparent;
  background: linear-gradient(135deg, #fff 0%, #f4e9de 62%, #d7b998 130%);
  box-shadow: 0 18px 36px -18px rgba(0, 0, 0, 0.72);
}

/* Refined, consistent phone cue for every conversion-shaped tel link. */
.header-call::before,
.button[href^="tel:"]::before,
.contact-phone::before,
.mobile-call-bar::before,
.mobile-cta-bar::before {
  width: 1.05em;
  height: 1.05em;
  flex: 0 0 auto;
  background-color: currentColor;
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7.15 3.75 9.4 7.7 7.95 9.14c.92 2.15 2.78 4.01 4.93 4.93l1.44-1.45 3.95 2.26-.56 3.06c-.12.65-.67 1.13-1.33 1.16C10.31 19.37 4.63 13.69 4.9 7.62c.03-.66.51-1.21 1.16-1.33l1.09-2.54Z' stroke='%23000' stroke-width='1.45' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7.15 3.75 9.4 7.7 7.95 9.14c.92 2.15 2.78 4.01 4.93 4.93l1.44-1.45 3.95 2.26-.56 3.06c-.12.65-.67 1.13-1.33 1.16C10.31 19.37 4.63 13.69 4.9 7.62c.03-.66.51-1.21 1.16-1.33l1.09-2.54Z' stroke='%23000' stroke-width='1.45' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
}

/* Shared frame contract: subtle inner ring plus an outer photographic lift. */
.image-frame,
.hero-media,
.pathway-media,
.about-image,
.interior-hero-media,
.editorial-media,
.proof-panel-media,
.legal-hero-media {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.58), 0 30px 76px -52px rgba(39, 31, 24, 0.54);
}

.hero-media {
  position: absolute;
  z-index: 1;
  inset: 0;
  min-height: 100%;
  overflow: clip;
  background: #4b443d;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2), 0 34px 78px -52px rgba(0, 0, 0, 0.72);
}

.hero-media::after,
.hero-image::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 11, 10, 0.84) 0%, rgba(13, 11, 10, 0.66) 34%, rgba(13, 11, 10, 0.18) 70%, rgba(13, 11, 10, 0.08) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, transparent 32%, rgba(0, 0, 0, 0.64) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  content: "";
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transform: translate3d(0, var(--parallax-y, 0), 0);
  will-change: transform;
}

.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.founder-quote {
  position: absolute;
  right: 0;
  bottom: 62px;
  width: min(320px, 26vw);
  margin: 0;
  padding: 26px 28px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(13, 11, 10, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 22px 55px rgba(0, 0, 0, 0.18);
}

.founder-quote p {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 1.8vw, 2rem);
  font-style: italic;
  line-height: 1.12;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.founder-quote footer {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-align: right;
  text-transform: uppercase;
}

.hero-monogram {
  position: absolute;
  z-index: 2;
  top: 124px;
  left: 50%;
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  transform: translateX(-50%);
}

.hero-caption {
  position: absolute;
  z-index: 2;
  right: 42px;
  bottom: 30px;
  margin: 0;
  color: #fff;
  font-size: 0.875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-sentinel {
  height: 1px;
}

html.js-motion .hero-step {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms var(--ease-settle), transform 800ms var(--ease-settle);
}

.hero-title-mask {
  display: block;
  overflow: clip;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}

.hero-title-mask > span {
  display: block;
}

html.js-motion .hero-title-mask > span {
  opacity: 0;
  transform: translateY(112%) rotateX(-12deg);
  transform-origin: 50% 100%;
  transition: opacity 980ms var(--ease-editorial), transform 1180ms var(--ease-editorial);
}

html.js-motion.is-ready .hero-title-mask > span {
  opacity: 1;
  transform: none;
}

html.js-motion.is-ready .hero-title-mask:nth-child(1) > span { transition-delay: 610ms; }
html.js-motion.is-ready .hero-title-mask:nth-child(2) > span { transition-delay: 750ms; }
html.js-motion.is-ready .hero-title-mask:nth-child(3) > span { transition-delay: 890ms; }

html.js-motion .founder-quote.hero-step {
  transform: translateX(34px);
}

html.js-motion.is-ready .founder-quote.hero-step {
  transform: none;
}

html.js-motion .hero-media {
  transform: scale(1.025);
  transition: transform 1600ms var(--ease-editorial) 80ms;
}

html.js-motion.is-ready .hero-step {
  opacity: 1;
  transform: none;
}

html.js-motion.is-ready .hero-media {
  transform: none;
}

html.js-motion.is-ready .hero-step:nth-child(1) { transition-delay: 500ms; }
html.js-motion.is-ready .hero-step:nth-child(2) { transition-delay: 900ms; }
html.js-motion.is-ready .hero-step:nth-child(3) { transition-delay: 1080ms; }
html.js-motion.is-ready .hero-step:nth-child(4) { transition-delay: 1200ms; }
html.js-motion.is-ready .hero-step:nth-child(5) { transition-delay: 1320ms; }
html.js-motion.is-ready .hero-step:nth-child(6) { transition-delay: 1440ms; }

/* Lead and quote */

.page-lead {
  padding-top: clamp(110px, 13vw, 190px);
  padding-bottom: clamp(96px, 11vw, 160px);
}

.page-lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.72fr);
  align-items: start;
  gap: clamp(60px, 9vw, 150px);
}

.page-lead h2 {
  margin-bottom: 0;
  font-size: clamp(3.2rem, 5.4vw, 6.7rem);
}

.page-lead-grid > p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.85;
}

.quote-section {
  padding: 30px 0 clamp(110px, 14vw, 190px);
  background: var(--bg);
}

.quote-rule {
  width: 1px;
  height: 80px;
  margin: 0 auto clamp(54px, 7vw, 96px);
  background: var(--accent);
}

.pull-quote {
  max-width: 1140px;
  text-align: center;
}

.pull-quote > p {
  margin-bottom: 48px;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4.8vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.pull-quote footer,
.pull-quote cite {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Exclusive listings */

.listings-section {
  position: relative;
  overflow: clip;
  padding: clamp(110px, 13vw, 190px) 0;
  background: #f2eee8;
}

.listings-intro {
  margin-bottom: clamp(64px, 8vw, 112px);
}

.listings-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.62fr);
  align-items: start;
  gap: clamp(52px, 8vw, 128px);
}

.listings-intro h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(3.25rem, 5.25vw, 6.5rem);
}

.listings-intro-grid > p {
  margin: 8px 0 0;
  color: #514b45;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.85;
}

.listing-feature {
  display: grid;
  min-height: 720px;
  margin-bottom: clamp(58px, 7vw, 96px);
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  background: #fff;
  box-shadow: 0 34px 78px -54px rgba(39, 31, 24, 0.42);
}

.listing-media {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 720px;
  overflow: hidden;
  grid-template-columns: 1fr 1fr;
  color: #fff;
  background: #d6cec5;
  text-decoration: none;
}

.listing-media::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(24, 24, 24, 0);
  content: "";
  transition: background-color 500ms ease;
  pointer-events: none;
}

.listing-photo {
  min-width: 0;
  overflow: hidden;
}

.listing-photo + .listing-photo {
  border-left: 1px solid rgba(255, 255, 255, 0.72);
}

.listing-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-status,
.listing-image-label {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  color: #fff;
  background: rgba(17, 15, 13, 0.86);
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.listing-status {
  top: 28px;
  left: 28px;
  min-height: 42px;
  padding: 10px 16px;
}

.listing-image-label {
  right: 28px;
  bottom: 28px;
  min-height: 48px;
  padding: 12px 18px;
  gap: 12px;
  visibility: hidden;
  color: transparent;
  background: transparent;
  transform: translateX(16px);
  transition: color 500ms ease, background-color 500ms ease, transform 500ms var(--ease-editorial);
}

.listing-copy {
  display: flex;
  min-width: 0;
  padding: clamp(60px, 7vw, 104px) clamp(42px, 5vw, 78px);
  flex-direction: column;
  justify-content: center;
}

.listing-copy h3 {
  max-width: 8ch;
  margin-bottom: 24px;
  font-size: clamp(3rem, 4.6vw, 5.65rem);
}

.listing-price {
  margin-bottom: 10px;
  color: #6d4c33;
  font-family: var(--font-heading);
  font-size: clamp(2.05rem, 2.8vw, 3.35rem);
  line-height: 1;
}

.listing-facts {
  margin-bottom: 30px;
  color: #514b45;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.7;
  text-transform: uppercase;
}

.listing-facts span {
  margin-inline: 0.45em;
  color: #6d4c33;
}

.listing-copy > p:not(.eyebrow):not(.listing-price):not(.listing-facts):not(.listing-verified) {
  max-width: 580px;
  margin-bottom: 34px;
  color: var(--muted);
  line-height: 1.85;
}

.listing-actions {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 14px;
}

.listing-verified {
  margin: 38px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(0, 0, 0, 0.16);
  color: #77716b;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  line-height: 1.7;
  text-transform: uppercase;
}

.listing-watch {
  display: grid;
  padding-top: clamp(42px, 5vw, 72px);
  border-top: 1px solid rgba(0, 0, 0, 0.22);
  grid-template-columns: 120px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}

.listing-watch-mark {
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.34);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  letter-spacing: 0.06em;
}

.listing-watch .eyebrow {
  margin-bottom: 14px;
}

.listing-watch h3 {
  margin-bottom: 16px;
  font-size: clamp(2.35rem, 3.5vw, 4.25rem);
}

.listing-watch div > p:last-child {
  max-width: 760px;
  margin: 0;
  color: #514b45;
  line-height: 1.75;
}

.listing-watch .button {
  white-space: nowrap;
}

/* Pathways */

.pathways {
  padding: clamp(108px, 12vw, 170px) 0;
  background: var(--surface);
}

.section-intro {
  margin-bottom: clamp(80px, 10vw, 150px);
}

.section-intro:not(.process-heading) {
  max-width: 1080px;
  margin-inline: auto;
  text-align: center;
}

.section-intro:not(.process-heading) h2 {
  max-width: 1020px;
  margin: 0 auto;
}

.section-intro > p:not(.eyebrow),
.process-heading > div > p {
  max-width: 720px;
  margin-top: 28px;
  color: var(--muted);
  line-height: 1.8;
}

.section-intro:not(.process-heading) > p:not(.eyebrow) {
  margin-inline: auto;
  text-align: center;
}

.pathway-row {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: clamp(56px, 9vw, 150px);
  margin-bottom: clamp(120px, 16vw, 240px);
}

.pathway-row:last-child {
  margin-bottom: 0;
}

.service-card {
  transition: transform 400ms var(--ease-editorial), box-shadow 400ms ease;
}

.service-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 30px 56px -52px rgba(0, 0, 0, 0.68);
}

.pathway-reverse {
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.25fr);
}

.pathway-reverse .pathway-media {
  grid-column: 2;
  grid-row: 1;
}

.pathway-reverse .pathway-copy {
  grid-column: 1;
  grid-row: 1;
}

.pathway-media {
  position: relative;
  aspect-ratio: 1.22 / 1;
  overflow: clip;
  background: #e7e4de;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.68), 0 30px 72px -52px rgba(39, 31, 24, 0.52);
}

.pathway-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 68%, rgba(15, 12, 10, 0.19) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.56), inset 0 0 0 2px rgba(0, 0, 0, 0.05);
  content: "";
  pointer-events: none;
}

.pathway-media img {
  width: 100%;
  height: calc(100% + 60px);
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, var(--parallax-y, -18px), 0) scale(1.001);
  transition: transform 600ms ease;
  will-change: transform;
}

.pathway-row:focus-within .pathway-media img {
  transform: translate3d(0, var(--parallax-y, -18px), 0) scale(1.015);
}

.pathway-number {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  padding: 15px 22px;
  color: var(--ink);
  background: var(--bg);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

/* The homepage image-led pathways are the site's editorial gallery. */
.gallery-card {
  transition: transform 400ms var(--ease-editorial), box-shadow 400ms ease;
}

.gallery-caption {
  opacity: 0.78;
  transition: opacity 320ms ease, background-color 320ms ease;
}

.service-card:focus-within .gallery-card {
  transform: translateY(-4px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8), 0 34px 78px -46px rgba(39, 31, 24, 0.68);
}

.service-card:focus-within .gallery-card img {
  transform: translate3d(0, var(--parallax-y, -18px), 0) scale(1.015);
}

.service-card:focus-within .gallery-caption {
  opacity: 1;
  background: #fff;
}

.pathway-copy h3 {
  margin-bottom: 32px;
}

.pathway-copy {
  min-width: 0;
}

.pathway-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.85;
}

/* About */

.about-section {
  display: grid;
  min-height: 860px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: var(--bg);
}

.about-image {
  position: relative;
  min-height: 760px;
  overflow: clip;
  background: #e5e1db;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.62), 0 30px 76px -52px rgba(39, 31, 24, 0.48);
}

.about-image::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 72%, rgba(16, 13, 11, 0.18) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.54), inset 0 0 0 2px rgba(0, 0, 0, 0.04);
  content: "";
  pointer-events: none;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.about-stamp {
  position: absolute;
  z-index: 2;
  right: 36px;
  bottom: 36px;
  display: flex;
  width: 166px;
  height: 166px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  background: #1d1916;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.8;
  text-transform: uppercase;
}

.about-stamp span {
  display: block;
  width: 100%;
  text-align: center;
}

.about-copy {
  display: flex;
  max-width: 760px;
  padding: clamp(100px, 12vw, 190px) clamp(48px, 8vw, 130px);
  flex-direction: column;
  justify-content: center;
}

.about-copy h2 {
  margin-bottom: 42px;
}

.about-lede {
  max-width: 560px;
  margin-bottom: 34px;
  color: #6d4c33;
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 2.3vw, 2.65rem);
  font-style: italic;
  line-height: 1.25;
}

.about-copy > p:not(.eyebrow):not(.about-lede) {
  max-width: 600px;
  margin-bottom: 24px;
  color: var(--muted);
  line-height: 1.85;
}

.about-copy .editorial-link {
  align-self: flex-start;
  margin-top: 14px;
}

/* Process */

.process-section {
  padding: clamp(110px, 13vw, 190px) 0;
  background: #efe7de;
}

.process-heading {
  display: grid;
  grid-template-columns: minmax(150px, 0.3fr) minmax(0, 1fr);
  gap: 50px;
}

.process-heading .eyebrow {
  margin-top: 14px;
}

.process-heading h2 {
  max-width: 1000px;
}

.process-list {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.process-list li {
  min-height: 330px;
  padding: 30px 28px 38px;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.process-list li:first-child {
  border-left: 1px solid rgba(0, 0, 0, 0.2);
}

.process-list li > span {
  display: block;
  margin-bottom: 76px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.process-list h3 {
  margin-bottom: 20px;
  font-size: clamp(1.75rem, 2.3vw, 2.65rem);
  line-height: 1.06;
}

.process-list p {
  margin: 0;
  color: #46413c;
  font-size: 1rem;
  line-height: 1.75;
}

/* Testimonial */

.testimonial-section {
  display: grid;
  padding: clamp(110px, 13vw, 190px) max(var(--page-gutter), calc((100vw - 1380px) / 2));
  grid-template-columns: minmax(180px, 0.26fr) minmax(0, 1fr);
  gap: clamp(40px, 8vw, 140px);
  color: #fff;
  background: var(--ink);
}

.testimonial-meta {
  min-width: 0;
  padding-top: 16px;
  grid-row: 1 / span 2;
}

.testimonial-meta > p:last-child {
  color: #8c8c8c;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-quote {
  min-width: 0;
  margin: 0;
  max-width: 1030px;
  grid-column: 2;
}

.testimonial-heading {
  min-width: 0;
  margin-bottom: 54px;
  color: var(--accent);
  font-size: clamp(3rem, 5vw, 6.1rem);
  font-style: italic;
  font-weight: 400;
  grid-column: 2;
}

.testimonial-quote > p {
  margin-bottom: 44px;
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 2.7vw, 3.25rem);
  line-height: 1.35;
}

.testimonial-quote footer,
.testimonial-citation {
  color: #aaa;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}


/* Communities */

.communities-section {
  display: grid;
  padding: clamp(100px, 12vw, 180px) max(var(--page-gutter), calc((100vw - 1380px) / 2));
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: clamp(70px, 10vw, 160px);
  background: var(--surface);
}

.communities-copy {
  position: sticky;
  top: 120px;
  align-self: start;
}

.communities-copy h2 {
  margin-bottom: 36px;
  font-size: clamp(3rem, 4.7vw, 5.8rem);
}

.communities-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin-bottom: 34px;
  color: var(--muted);
  line-height: 1.85;
}

.community-list {
  display: grid;
  padding-top: 8px;
}

.community-list span,
.community-list a {
  display: block;
  padding: 23px 0 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 6.25rem);
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-decoration: none;
}

.community-list span:first-child,
.community-list a:first-child {
  padding-top: 0;
}

.community-list a:focus-visible {
  color: var(--accent);
}

/* FAQ */

.faq-section {
  display: grid;
  padding-top: clamp(110px, 13vw, 190px);
  padding-bottom: clamp(120px, 14vw, 200px);
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(60px, 10vw, 160px);
}

.faq-intro {
  position: sticky;
  top: 120px;
  align-self: start;
  background: #fff;
}

.faq-intro h2 {
  margin-bottom: 30px;
  font-size: clamp(3rem, 4.6vw, 5.5rem);
}

.faq-intro > p:last-child {
  max-width: 430px;
  color: var(--muted);
  line-height: 1.75;
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.28);
}

.faq-item summary {
  display: grid;
  min-height: 96px;
  padding: 28px 0;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.1vw, 2.35rem);
  line-height: 1.2;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span:last-child {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border: 1px solid var(--accent);
  border-radius: 50%;
  color: transparent;
  font-family: var(--font-body);
  font-size: 0;
  font-weight: 300;
  transition: color 200ms ease, background 200ms ease;
}

.faq-item summary span:last-child::before,
.faq-item summary span:last-child::after {
  position: absolute;
  width: 18px;
  height: 1px;
  background: var(--accent);
  content: "";
  transition: transform 200ms ease;
}

.faq-item summary span:last-child::after {
  transform: rotate(90deg);
}

.faq-item[open] summary span:last-child {
  background: var(--accent);
}

.faq-item[open] summary span:last-child::before,
.faq-item[open] summary span:last-child::after {
  background: var(--ink);
}

.faq-item[open] summary span:last-child::after {
  transform: rotate(90deg) scaleX(0);
}

.faq-item > p {
  max-width: 780px;
  padding: 0 60px 34px 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

/* Closing and footer */

.closing-section {
  position: relative;
  min-height: 760px;
  overflow: clip;
  color: #fff;
  background: var(--ink);
}

.closing-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 760px;
  padding-top: 100px;
  padding-bottom: 100px;
  flex-direction: column;
  justify-content: center;
}

.closing-inner h2 {
  max-width: 1100px;
  margin-bottom: 34px;
  font-size: clamp(3.8rem, 7vw, 8.7rem);
}

.closing-inner > p:not(.eyebrow) {
  margin-bottom: 36px;
  color: #bbb;
  font-size: 1.05rem;
}

.closing-inner .button {
  align-self: flex-start;
}

.closing-signature {
  position: absolute;
  right: -3vw;
  bottom: -7vw;
  color: rgba(200, 164, 126, 0.16);
  font-family: var(--font-heading);
  font-size: clamp(8rem, 18vw, 22rem);
  font-style: italic;
  line-height: 1;
  white-space: nowrap;
}

.page-home .closing-section {
  isolation: isolate;
}

.page-home .closing-section::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 32%;
  background: #f2eee8;
  content: "";
}

.page-home .closing-inner {
  padding-right: min(31vw, 430px);
}

.closing-wordmark {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.closing-wordmark-layer {
  position: absolute;
  right: 0;
  bottom: -0.14em;
  left: 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.09em;
  font-family: var(--font-heading);
  font-size: clamp(8rem, 17vw, 20rem);
  font-style: italic;
  line-height: 0.84;
  white-space: nowrap;
}

.closing-wordmark-layer--light {
  clip-path: inset(0 32% 0 0);
  color: #f8f5f1;
  opacity: 0.72;
}

.closing-wordmark-layer--dark {
  clip-path: inset(0 0 0 68%);
  color: #171411;
  opacity: 0.84;
}

.closing-word {
  display: block;
}

html.js-motion.motion-ready [data-signature-reveal] .closing-word {
  opacity: 0;
  transition: opacity 1000ms var(--ease-editorial), transform 1000ms var(--ease-editorial);
}

html.js-motion.motion-ready [data-signature-reveal] .closing-word--logan {
  transform: translateX(-0.38em);
}

html.js-motion.motion-ready [data-signature-reveal] .closing-word--maggio {
  transform: translateX(0.38em);
}

html.js-motion.motion-ready [data-signature-reveal].is-visible .closing-word {
  opacity: 1;
  transform: none;
}

.site-footer {
  padding: 84px 0 32px;
  color: #fff;
  background: #0c0b0a;
}

.footer-main {
  display: grid;
  padding-bottom: 70px;
  grid-template-columns: minmax(280px, 1.5fr) repeat(3, minmax(140px, 0.5fr));
  gap: 48px;
}

.footer-brand img {
  width: min(280px, 100%);
  filter: invert(1);
}

.footer-brand > p {
  max-width: 420px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 11px;
}

.footer-column a,
.footer-column > p:not(.footer-label) {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.6;
  text-decoration: none;
}

.footer-column a {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
}

.footer-label {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.875rem;
}

.footer-bottom p {
  margin: 0;
}

.built-by a {
  display: inline-flex;
  min-height: 44px;
  margin-block: -15px;
  align-items: center;
  color: var(--accent);
  font-weight: 600;
}

.footer-legal a {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
}

.mobile-call-bar,
.mobile-cta-bar,
.sticky-cta {
  display: none;
}

@keyframes trust-strip-drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(8px, 0, 0); }
}

.trust-strip {
  animation: trust-strip-drift 24s ease-in-out infinite alternate;
}

.trust-strip:focus-within {
  animation-play-state: paused;
}

/* Progressive motion */

html.js-motion.motion-ready .reveal,
html.js-motion.motion-ready .quote-reveal,
html.js-motion.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
}

html.js-motion.motion-ready .quote-reveal {
  transform: translateY(16px) scale(0.985);
}

html.js-motion.motion-ready [data-reveal-direction="left"] {
  transform: translateX(-34px);
}

html.js-motion.motion-ready [data-reveal-direction="right"] {
  transform: translateX(34px);
}

html.js-motion.motion-ready [data-reveal-direction="up"] {
  transform: translateY(20px);
}

html.js-motion.motion-ready .reveal.is-visible,
html.js-motion.motion-ready .quote-reveal.is-visible,
html.js-motion.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 900ms var(--ease-editorial), transform 900ms var(--ease-editorial);
}

html.js-motion.motion-ready .line-draw {
  opacity: 1;
  transform: scaleY(0);
  transform-origin: center top;
}

html.js-motion.motion-ready .line-draw.is-visible {
  transform: scaleY(1);
  transition: transform 1100ms var(--ease-editorial);
}

@media (max-width: 1180px) {
  :root {
    --header-height: 78px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a {
    font-size: 0.875rem;
  }

  .header-inner {
    grid-template-columns: 180px 1fr auto;
    gap: 20px;
  }

  .hero-copy {
    padding-right: 42px;
  }

  .hero-copy h1 {
    font-size: clamp(3.55rem, 5.7vw, 5.2rem);
  }

  .hero-proof {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .hero-proof span + span::before {
    display: none;
  }

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

  .process-list li:nth-child(3) {
    border-left: 1px solid rgba(0, 0, 0, 0.2);
  }

  .process-list li:nth-child(n + 3) {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
  }

  .footer-main {
    grid-template-columns: minmax(260px, 1.25fr) repeat(3, minmax(130px, 0.5fr));
  }
}

@media (max-width: 900px) {
  :root {
    --page-gutter: clamp(24px, 4.8vw, 38px);
    --shell: min(calc(100% - (var(--page-gutter) * 2)), 760px);
  }

  .desktop-nav,
  .header-call {
    display: none;
  }

  .site-header,
  .site-header.is-solid {
    height: 76px;
    border-color: rgba(0, 0, 0, 0.1);
    background: rgba(250, 248, 245, 0.88);
    backdrop-filter: blur(18px) saturate(145%);
  }

  body:not(.interior-page):not(.legal-page) .site-header:not(.is-solid):not(.menu-active) {
    border-color: transparent;
    color: #fff;
    background: transparent;
    backdrop-filter: none;
  }

  body:not(.interior-page):not(.legal-page) .site-header:not(.is-solid):not(.menu-active) .menu-toggle span {
    background: #fff;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
  }

  .brand-link {
    width: 182px;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    display: block;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    padding-top: 0;
  }

  .hero-copy {
    width: var(--shell);
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    margin-inline: auto;
    padding: 150px 0 54px;
  }

  .hero-copy h1 {
    max-width: 720px;
    font-size: clamp(3.75rem, 9.4vw, 6rem);
  }

  .hero-lede {
    max-width: 650px;
  }

  .hero-proof {
    display: none;
  }

  .hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    min-height: 100%;
    margin: 0;
  }

  .hero-media img {
    width: 100%;
    height: 100%;
    object-position: 50% 50%;
  }

  .founder-quote {
    position: static;
    display: block;
    width: min(440px, 100%);
    margin-top: 28px;
    padding: 22px 24px;
  }

  .page-lead-grid,
  .pathway-row,
  .pathway-reverse,
  .about-section,
  .process-heading,
  .testimonial-section,
  .communities-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .page-lead-grid {
    gap: 46px;
  }

  .page-lead-grid > p {
    max-width: 640px;
  }

  .pathway-row {
    gap: 46px;
  }

  .pathway-reverse .pathway-media,
  .pathway-reverse .pathway-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .pathway-reverse .pathway-media {
    order: 0;
  }

  .pathway-reverse .pathway-copy {
    order: 1;
  }

  .pathway-media {
    aspect-ratio: 1.32 / 1;
  }

  .pathway-copy {
    max-width: 650px;
  }

  .listings-intro-grid,
  .listing-feature {
    grid-template-columns: minmax(0, 1fr);
  }

  .listings-intro-grid {
    gap: 42px;
  }

  .listings-intro-grid > * {
    min-width: 0;
    width: 100%;
  }

  .listing-feature {
    min-height: 0;
  }

  .listing-media {
    min-height: 680px;
  }

  .listing-copy {
    padding: 78px var(--page-gutter) 86px;
  }

  .listing-watch {
    grid-template-columns: 96px minmax(0, 1fr);
    align-items: start;
  }

  .listing-watch .button {
    width: fit-content;
    grid-column: 2;
  }

  .about-section {
    min-height: auto;
  }

  .about-image {
    min-height: 760px;
  }

  .about-copy {
    max-width: none;
    padding: 110px var(--page-gutter);
  }

  .process-heading {
    gap: 0;
  }

  .testimonial-section,
  .communities-section {
    gap: 70px;
  }

  .testimonial-meta {
    grid-row: auto;
  }

  .testimonial-heading,
  .testimonial-quote {
    grid-column: 1;
  }

  .testimonial-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
  }

  .testimonial-meta .eyebrow {
    margin-bottom: 0;
  }

  .testimonial-meta > p:last-child {
    margin-bottom: 0;
  }

  .communities-copy,
  .faq-intro {
    position: static;
  }

  .faq-section {
    gap: 64px;
  }

  .footer-main {
    grid-template-columns: 1.4fr 0.7fr 0.7fr;
  }

  .footer-trust {
    grid-column: 2 / -1;
  }

  .page-home .closing-section::before {
    display: none;
  }

  .page-home .closing-inner {
    padding-right: 0;
  }

  .closing-wordmark-layer--light {
    clip-path: none;
    opacity: 0.42;
  }

  .closing-wordmark-layer--dark {
    display: none;
  }
}

@media (max-width: 620px) {
  :root {
    --page-gutter: clamp(22px, 6.4vw, 28px);
    --shell: calc(100% - (var(--page-gutter) * 2));
  }

  h2 {
    font-size: clamp(2.7rem, 14vw, 4.5rem);
  }

  .site-header,
  .site-header.is-solid,
  .site-header.menu-active {
    height: 68px;
  }

  .brand-link {
    width: 156px;
  }

  .mobile-menu {
    inset: 68px 0 0;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    padding-top: 0;
  }

  .hero-copy {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    padding: 130px 0 42px;
  }

  .hero-copy h1 {
    margin-bottom: 24px;
    font-size: clamp(2.3rem, 11.8vw, 3.55rem);
    line-height: 0.96;
  }

  .hero-lede {
    margin-bottom: 26px;
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-actions .button {
    width: max-content;
  }

  .hero-actions .editorial-link {
    width: max-content;
  }

  .hero-proof {
    display: flex;
    margin-top: 30px;
    flex-direction: column;
    gap: 4px;
  }

  .founder-quote {
    display: none;
  }

  .hero-media {
    width: 100%;
    min-height: min(125vw, 620px);
    margin: 0;
  }

  .hero-media img {
    object-position: 50% 50%;
  }

  .hero-monogram {
    top: 88px;
    left: 50%;
    width: 62px;
    height: 62px;
  }

  .hero-copy > .eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.17em;
  }

  .hero-caption {
    display: none;
  }

  .page-lead {
    padding-top: 90px;
    padding-bottom: 94px;
  }

  .page-lead h2 {
    font-size: clamp(2.75rem, 14vw, 4.5rem);
  }

  .page-lead-grid {
    gap: 34px;
  }

  .quote-section {
    padding-bottom: 96px;
  }

  .quote-rule {
    height: 56px;
    margin-bottom: 56px;
  }

  .pull-quote > p {
    margin-bottom: 34px;
    font-size: clamp(2.15rem, 10.8vw, 3.6rem);
  }

  .pull-quote footer {
    align-items: center;
    flex-direction: column;
    gap: 6px;
  }

  .pathways {
    padding: 90px 0 110px;
  }

  .listings-section {
    padding: 96px 0 108px;
  }

  .listings-intro {
    margin-bottom: 60px;
  }

  .listings-intro h2 {
    font-size: clamp(2.65rem, 13vw, 4.15rem);
  }

  .listings-intro-grid {
    gap: 30px;
  }

  .listing-media {
    min-height: 500px;
  }

  .listing-status {
    top: 18px;
    left: 18px;
  }

  .listing-image-label {
    display: none;
  }

  .listing-copy {
    padding: 62px var(--page-gutter) 70px;
  }

  .listing-copy h3 {
    max-width: none;
    font-size: clamp(2.75rem, 13.6vw, 4.25rem);
  }

  .listing-facts {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .listing-facts span {
    display: none;
  }

  .listing-watch {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .listing-watch-mark {
    width: 76px;
    height: 76px;
  }

  .listing-watch .button {
    grid-column: 1;
  }

  .listing-actions {
    width: 100%;
  }

  .listing-actions .editorial-link {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    font-size: clamp(0.72rem, 3.2vw, 0.8rem);
    letter-spacing: 0.07em;
    white-space: nowrap;
  }

  .listing-actions .editorial-link span {
    flex: 0 0 auto;
  }

  .section-intro {
    margin-bottom: 72px;
  }

  .pathway-row {
    margin-bottom: 120px;
  }

  .pathway-media {
    aspect-ratio: 0.88 / 1;
  }

  .pathway-copy h3 {
    margin-bottom: 26px;
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .pathway-copy .editorial-link {
    display: inline;
    min-height: 0;
    max-width: 100%;
    padding-bottom: 10px;
    line-height: 2;
    overflow-wrap: anywhere;
  }

  .pathway-copy .editorial-link span {
    display: inline-block;
    margin-left: 0.45em;
  }

  .about-image {
    min-height: 580px;
  }

  .about-stamp {
    right: 20px;
    bottom: 20px;
    width: 128px;
    height: 128px;
    padding: 20px;
    font-size: 0.875rem;
  }

  .about-copy {
    min-width: 0;
    width: 100%;
    padding: 90px var(--page-gutter) 110px;
  }

  .about-copy h2 {
    font-size: clamp(2.55rem, 11.5vw, 3.45rem);
  }

  .process-section {
    padding: 96px 0;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li,
  .process-list li:first-child,
  .process-list li:nth-child(3) {
    min-height: auto;
    padding: 28px 0 36px;
    border-right: 0;
    border-left: 0;
    border-top: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }

  .process-list li > span {
    margin-bottom: 36px;
  }

  .testimonial-section,
  .communities-section {
    padding: 96px var(--page-gutter);
  }

  .testimonial-meta {
    display: block;
    width: 100%;
  }

  .testimonial-meta .eyebrow {
    margin-bottom: 18px;
  }

  .testimonial-heading {
    margin-bottom: 38px;
    font-size: clamp(2.8rem, 14vw, 4.5rem);
  }

  .testimonial-quote > p {
    font-size: clamp(1.5rem, 7.8vw, 2.4rem);
  }

  .community-list span,
  .community-list a {
    font-size: clamp(2.65rem, 13vw, 4.3rem);
  }

  .closing-signature {
    right: 0;
  }

  .faq-section {
    padding-top: 96px;
    padding-bottom: 110px;
  }

  .faq-item summary {
    min-height: 84px;
    padding: 24px 0;
    gap: 20px;
    font-size: clamp(1.3rem, 6.4vw, 1.85rem);
  }

  .faq-item > p {
    padding-right: 0;
  }

  .closing-section,
  .closing-inner {
    min-height: 680px;
  }

  .closing-inner {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .closing-inner h2 {
    font-size: clamp(3.2rem, 16vw, 5.3rem);
  }

  .closing-inner .button {
    width: 100%;
  }

  .site-footer {
    padding-top: 72px;
    padding-bottom: calc(90px + env(safe-area-inset-bottom));
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 46px 26px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-trust {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-call-bar,
  .mobile-cta-bar {
    position: fixed;
    z-index: 120;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 64px;
    padding: 12px 18px;
    padding-bottom: max(14px, env(safe-area-inset-bottom));
    align-items: center;
    justify-content: space-between;
    color: #fff;
    background: var(--ink);
    box-shadow: 0 48px 0 0 var(--ink);
    font-size: 0.875rem;
    letter-spacing: 0.11em;
    text-decoration: none;
    text-transform: uppercase;
    transform: translateY(calc(100% + 48px + env(safe-area-inset-bottom, 0px)));
    transition: transform 300ms ease;
  }

  .mobile-call-bar.is-visible,
  .mobile-cta-bar.is-visible {
    transform: translateY(0);
  }

  .mobile-call-bar.is-avoiding-cta,
  .mobile-cta-bar.is-avoiding-cta {
    transition: none;
    transform: translateY(calc(100% + 48px + env(safe-area-inset-bottom, 0px)));
  }

  body.menu-open .mobile-call-bar,
  body.menu-open .mobile-cta-bar {
    transform: translateY(calc(100% + 48px + env(safe-area-inset-bottom, 0px)));
  }

  .mobile-call-bar strong,
  .mobile-cta-bar strong {
    color: var(--accent);
    font-weight: 600;
  }
}

/* Interior pages */

.interior-page .site-header {
  height: 76px;
  border-bottom-color: rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.interior-hero {
  display: grid;
  height: clamp(986px, 74vw, 1068px);
  min-height: 0;
  padding-top: 76px;
  grid-template-columns: minmax(0, 46%) minmax(0, 54%);
  background: var(--surface);
}

.interior-hero-copy {
  display: flex;
  min-width: 0;
  padding: clamp(88px, 9vw, 150px) clamp(34px, 6vw, 96px) clamp(98px, 9vw, 150px) max(var(--page-gutter), calc((100vw - 1380px) / 2));
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.interior-hero-copy h1 {
  width: 100%;
  min-width: 0;
  max-width: 10ch;
  margin-bottom: 34px;
  font-size: clamp(3.8rem, 6vw, 7.2rem);
}

/* Wave 5: give each page family its own editorial hero cadence. */
.page-profile .interior-hero-copy {
  padding-top: clamp(96px, 8vw, 132px);
  padding-right: clamp(30px, 4.5vw, 72px);
  padding-bottom: clamp(108px, 9vw, 154px);
}

.page-profile .interior-hero-copy h1 {
  max-width: min(100%, 620px);
  font-size: clamp(3.55rem, 5.05vw, 6.2rem);
}

.page-service .interior-hero-copy {
  padding-top: clamp(82px, 7.4vw, 122px);
  padding-bottom: clamp(72px, 7vw, 112px);
}

.page-service .interior-hero-copy h1 {
  max-width: 10.8ch;
  font-size: clamp(3.55rem, 5.3vw, 6.55rem);
}

.page-service .hero-credential {
  margin-top: 14px;
}

.page-community-hub .interior-hero-copy h1 {
  max-width: 9.2ch;
  font-size: clamp(3.55rem, 5.45vw, 6.8rem);
}

.page-community-detail .interior-hero-copy {
  padding-top: clamp(78px, 7vw, 116px);
  padding-bottom: clamp(70px, 6.8vw, 108px);
}

.page-community-detail .interior-hero-copy h1 {
  max-width: 11.2ch;
  font-size: clamp(3.35rem, 4.75vw, 5.85rem);
}

.page-reference .interior-hero-copy h1 {
  max-width: 9.1ch;
  font-size: clamp(3.6rem, 5.25vw, 6.4rem);
}

.page-reference .hero-credential {
  margin-top: 24px;
}

.page-contact .interior-hero-copy h1 {
  max-width: 9.7ch;
  font-size: clamp(3.55rem, 5.15vw, 6.3rem);
}

.interior-hero-copy h1 em,
.display-emphasis {
  color: #9e7959;
  font-style: italic;
}

.interior-hero-copy > p:not(.eyebrow):not(.hero-credential) {
  max-width: 610px;
  margin-bottom: 38px;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.8;
}

.interior-hero-copy .button {
  margin-bottom: clamp(28px, 3vw, 42px);
}

.hero-credential {
  margin: auto 0 0;
  padding-top: 38px;
  border-top: 1px solid rgba(0, 0, 0, 0.18);
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.interior-hero-media {
  position: relative;
  margin: 0;
  min-height: 684px;
  overflow: hidden;
  background: #e8e2dc;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.66), 0 32px 78px -54px rgba(39, 31, 24, 0.5);
}

.interior-hero-media::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 66%, rgba(15, 12, 10, 0.24) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.56), inset 0 0 0 2px rgba(0, 0, 0, 0.04);
  content: "";
  pointer-events: none;
}

.interior-hero-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interior-hero-media--portrait > img {
  object-position: 50% 18%;
}

.interior-hero-media--house > img {
  object-position: 50% 54%;
}

.interior-hero-media--interior > img {
  object-position: 50% 50%;
}

.hero-index {
  position: absolute;
  z-index: 2;
  top: 32px;
  right: 32px;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  background: rgba(13, 11, 10, 0.8);
}

.hero-image-caption {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 28px;
  left: 32px;
  width: fit-content;
  margin: 0;
  padding: 8px 10px;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  background: rgba(13, 11, 10, 0.8);
  text-transform: uppercase;
}

.breadcrumb {
  display: none;
  margin-bottom: 34px;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.breadcrumb a {
  text-decoration: none;
}

.page-section {
  padding-top: clamp(100px, 11vw, 180px);
  padding-bottom: clamp(100px, 11vw, 180px);
}

.page-section--surface {
  background: var(--surface);
}

.page-section--ink {
  color: #fff;
  background: #000;
}

.section-heading {
  max-width: 1080px;
  margin: 0 auto clamp(58px, 7vw, 104px);
  text-align: center;
}

.section-heading h2 {
  max-width: 1080px;
  margin: 0 auto 28px;
  font-size: clamp(2.8rem, 4.4vw, 5.3rem);
}

.section-heading > p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.8;
}

.page-section--ink .section-heading > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.editorial-split {
  display: grid;
  align-items: center;
  gap: clamp(54px, 8vw, 130px);
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.editorial-split--reverse .editorial-media {
  order: 2;
}

.editorial-media {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background: #e8e2dc;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.66), 0 30px 74px -52px rgba(39, 31, 24, 0.5);
}

.editorial-media::after,
.split-image::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 78%, rgba(15, 12, 10, 0.11) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.56), inset 0 0 0 2px rgba(0, 0, 0, 0.04);
  content: "";
  pointer-events: none;
}

.editorial-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-media--portrait img {
  object-position: 50% 18%;
}

.editorial-media--customer-staging img {
  object-position: 50% 42%;
}

.editorial-copy h2 {
  margin-bottom: 32px;
  font-size: clamp(3.2rem, 5.4vw, 6.4rem);
}

.editorial-copy,
.contact-direct,
.contact-form {
  min-width: 0;
}

.editorial-copy h3 {
  margin-bottom: 28px;
  font-size: clamp(2.7rem, 4.5vw, 5.2rem);
}

.editorial-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  line-height: 1.82;
}

.editorial-copy .button,
.editorial-copy .editorial-link {
  margin-top: 14px;
}

.signature-script {
  margin: 8px 0 4px;
  color: #8e6c4c;
  font-family: "Logan Script", "Segoe Script", "Bradley Hand", cursive;
  font-size: clamp(2.8rem, 4.6vw, 4.8rem);
  font-weight: 500;
  line-height: 1;
  transform: rotate(-2.5deg);
  transform-origin: left center;
}

.fact-strip {
  display: grid;
  border-top: 1px solid rgba(0, 0, 0, 0.18);
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  grid-template-columns: repeat(3, 1fr);
}

.fact-strip > div {
  min-height: 170px;
  padding: 34px 38px;
  border-right: 1px solid rgba(0, 0, 0, 0.18);
}

.fact-strip > div:last-child {
  border-right: 0;
}

.fact-strip small {
  display: block;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.fact-strip strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.7vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.stat-row {
  display: grid;
  border-top: 1px solid rgba(0, 0, 0, 0.18);
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card {
  min-height: 230px;
  padding: 38px 40px 44px;
  border-right: 1px solid rgba(0, 0, 0, 0.18);
}

.stat-card:last-child {
  border-right: 0;
}

.stat-bar {
  display: block;
  width: 46px;
  height: 3px;
  margin-bottom: 42px;
  background: var(--accent);
}

.stat-number {
  display: block;
  margin-bottom: 18px;
  font-family: var(--font-heading);
  font-size: clamp(3.4rem, 6vw, 7.2rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.88;
}

.stat-card small {
  display: block;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.feature-index {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.feature-row {
  display: grid;
  min-height: 230px;
  padding: 42px 0;
  align-items: start;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  gap: 34px;
  grid-template-columns: 90px minmax(220px, 0.7fr) minmax(0, 1fr);
}

.feature-row > span {
  color: #6d4c33;
  font-family: var(--font-heading);
  font-size: 1.9rem;
}

.feature-row h3 {
  margin: 0;
  font-size: clamp(2.1rem, 3.8vw, 4.4rem);
}

.feature-row p {
  max-width: 680px;
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.82;
}

.interior-process {
  counter-reset: step;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.interior-process li {
  display: grid;
  min-height: 190px;
  padding: 42px 0;
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  counter-increment: step;
  gap: 36px;
  grid-template-columns: 90px minmax(240px, 0.75fr) minmax(0, 1fr);
}

.interior-process li::before {
  color: var(--accent);
  content: "0" counter(step);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.interior-process h3 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 4rem);
}

.interior-process p {
  max-width: 680px;
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.67);
  line-height: 1.82;
}

.proof-panel {
  display: grid;
  min-height: 620px;
  color: #fff;
  background: #000;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
}

.proof-panel-media {
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.44), 0 30px 76px -52px rgba(0, 0, 0, 0.72);
}

.proof-panel-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 78%, rgba(0, 0, 0, 0.13) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.38);
  content: "";
  pointer-events: none;
}

.proof-panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-panel-copy {
  display: flex;
  padding: clamp(70px, 8vw, 130px);
  flex-direction: column;
  justify-content: center;
}

.proof-panel blockquote {
  margin: 0;
}

.proof-panel blockquote p {
  margin-bottom: 42px;
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.25vw, 5rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.proof-panel blockquote footer,
.proof-panel blockquote cite {
  color: var(--accent);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-paths {
  display: grid;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  grid-template-columns: repeat(2, 1fr);
}

/* Keep service copy inside its editorial column when paired with media. */
@media (min-width: 981px) {
  .editorial-copy .service-paths {
    grid-template-columns: minmax(0, 1fr);
  }

  .editorial-copy .service-path {
    min-height: 250px;
  }
}

.service-path {
  position: relative;
  display: flex;
  min-height: 340px;
  overflow: clip;
  padding: clamp(36px, 4vw, 64px);
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  flex-direction: column;
  text-decoration: none;
  transition: color 400ms ease, transform 400ms var(--ease-editorial), box-shadow 400ms ease;
}

.service-path::before,
.audience-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #ead7c3 68%, transparent);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 400ms var(--ease-editorial);
}

.service-path:focus-visible,
.audience-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 24px 44px -42px rgba(0, 0, 0, 0.7);
}

.service-path:focus-visible::before,
.audience-card:focus-visible::before {
  transform: scaleX(1);
}

.service-path:nth-child(2n) {
  border-right: 0;
}

.service-icon,
.service-path small {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: auto;
  place-items: center;
  color: #6d4c33;
  font-weight: 600;
  letter-spacing: 0.16em;
  box-shadow: 0 0 0 5px rgba(200, 164, 126, 0.11), inset 0 0 0 1px rgba(158, 121, 89, 0.62), 0 12px 24px -16px rgba(61, 43, 28, 0.62);
}

.service-path h3 {
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 4.2vw, 5rem);
}

.service-path p {
  max-width: 560px;
  margin-bottom: 28px;
  color: var(--muted);
}

.service-path span {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 400ms ease, transform 400ms var(--ease-editorial);
}

.service-path:focus-visible span,
.audience-card:focus-visible span {
  color: #8e6c4c;
  transform: translateX(6px);
}

.community-index {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.community-entry {
  display: grid;
  min-height: 250px;
  padding: 48px 0;
  align-items: start;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  gap: 40px;
  grid-template-columns: 90px minmax(260px, 0.75fr) minmax(0, 1fr);
}

.community-entry > span {
  color: #6d4c33;
  font-family: var(--font-heading);
  font-size: 1.9rem;
}

.community-entry h2,
.community-entry h3 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 6rem);
}

.community-entry p {
  max-width: 700px;
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.82;
}

.community-chip-list {
  display: flex;
  margin-top: 46px;
  padding: 0;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.community-chip-list li {
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.community-chip-list a {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  padding: 12px 16px;
  align-items: center;
  text-decoration: none;
}

.resource-index {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.resource-link {
  display: grid;
  min-height: 210px;
  padding: 38px 0;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  gap: 34px;
  grid-template-columns: 86px minmax(0, 1fr) minmax(240px, 0.6fr) 38px;
  text-decoration: none;
}

.resource-link > span:first-child {
  color: #6d4c33;
  font-family: var(--font-heading);
  font-size: 1.8rem;
}

.resource-link h2,
.resource-link h3 {
  margin: 0;
  font-size: clamp(2.2rem, 3.6vw, 4.2rem);
}

.resource-link p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.resource-link > span:last-child {
  font-size: 1.5rem;
  transition: transform 180ms ease;
}

.contact-layout {
  display: grid;
  align-items: start;
  gap: clamp(60px, 9vw, 150px);
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
}

.contact-direct h2 {
  margin-bottom: 30px;
}

.contact-direct > p {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.82;
}

.contact-phone {
  display: inline-block;
  min-height: 44px;
  margin: 24px 0 42px;
  border-bottom: 1px solid currentColor;
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.4vw, 5rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  text-decoration: none;
}

.contact-facts {
  padding: 0;
  list-style: none;
}

.contact-facts li {
  padding: 17px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
  color: var(--muted);
}

.contact-form {
  position: relative;
  padding: clamp(34px, 5vw, 72px);
  color: #fff;
  background: #000;
}

.contact-form::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #8e6c4c 0%, var(--accent) 52%, #eed8c1 100%);
  content: "";
}

.contact-form h2 {
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 4.4vw, 5rem);
}

.contact-form > p {
  margin-bottom: 42px;
  color: rgba(255, 255, 255, 0.66);
}

.form-expectations {
  display: grid;
  margin: -10px 0 42px;
  padding: 22px 0;
  border-top: 1px solid rgba(200, 164, 126, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.form-expectations p {
  margin: 0;
  padding-right: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  line-height: 1.2;
}

.form-expectations p + p {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.cta-trust {
  margin: 18px 0 0 !important;
  color: inherit !important;
  font-size: 0.875rem !important;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1.5 !important;
  text-transform: uppercase;
}

.closing-inner .cta-trust {
  color: rgba(255, 255, 255, 0.7) !important;
}

.mobile-menu-trust {
  color: var(--ink) !important;
  font-weight: 600;
}

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

.form-field {
  display: grid;
  gap: 9px;
}

.form-field--wide {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0;
  color: #fff;
  background: transparent;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
}

.form-field select option {
  color: #000;
}

.form-honeypot,
.form-honeypot * {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 1px !important;
  height: 1px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  pointer-events: none !important;
}

.contact-form .button {
  margin-top: 34px;
}

.form-note,
.form-status {
  margin: 22px 0 0 !important;
  color: rgba(255, 255, 255, 0.66) !important;
  font-size: 1rem;
}

.form-status:focus {
  outline: 2px solid #fff;
  outline-offset: 4px;
  box-shadow: 0 0 0 5px #1d1916;
}

.legal-page {
  padding: 0 0 130px;
}

.legal-hero {
  display: grid;
  min-height: 650px;
  padding-top: 76px;
  grid-template-columns: minmax(0, 46%) minmax(0, 54%);
  background: var(--surface);
}

.legal-hero-copy {
  display: flex;
  min-width: 0;
  padding: clamp(76px, 9vw, 132px) clamp(32px, 7vw, 112px);
  flex-direction: column;
  justify-content: center;
}

.legal-hero-copy h1 {
  max-width: 8.5ch;
  margin-bottom: 28px;
  font-size: clamp(3.6rem, 6.3vw, 7.6rem);
}

.legal-hero-copy h1 em {
  color: #9e7959;
  font-style: italic;
  font-weight: 400;
}

.legal-hero-media {
  position: relative;
  min-height: 574px;
  overflow: clip;
  background: #ded8d1;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.62), 0 30px 76px -52px rgba(39, 31, 24, 0.5);
}

.legal-hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 74%, rgba(15, 12, 10, 0.13) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.54), inset 0 0 0 2px rgba(0, 0, 0, 0.04);
  content: "";
  pointer-events: none;
}

.legal-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.legal-hero-media--privacy img {
  object-position: 50% 48%;
}

.legal-hero-media--terms img {
  object-position: 50% 54%;
}

.legal-wrap {
  width: min(100% - 48px, 780px);
  margin-inline: auto;
  padding-top: clamp(92px, 11vw, 150px);
}

.legal-wrap > h1 {
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 6vw, 6.5rem);
}

.legal-wrap > h1 em {
  color: #9e7959;
  font-style: italic;
  font-weight: 400;
}

.legal-updated {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-wrap h2 {
  margin: 58px 0 22px;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  line-height: 1.05;
}

.legal-wrap h3 {
  margin: 38px 0 16px;
  font-size: 1.6rem;
  line-height: 1.15;
}

.legal-wrap p,
.legal-wrap li {
  color: #373737;
  line-height: 1.85;
}

.legal-wrap a {
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

main p > a,
main li > a {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  vertical-align: middle;
}

.page-freshness {
  width: var(--shell);
  margin: 0 auto;
  padding: 28px 0 42px;
  border-top: 1px solid rgba(0, 0, 0, 0.16);
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-legal {
  display: flex;
  gap: 18px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .interior-hero {
    height: auto;
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .legal-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .legal-hero-copy {
    min-height: 510px;
  }

  .legal-hero-media {
    min-height: 520px;
  }

  .interior-hero-copy {
    height: 760px;
    min-height: 0;
    padding: 112px var(--page-gutter) 92px;
  }

  .page-profile .interior-hero-copy,
  .page-service .interior-hero-copy,
  .page-community-detail .interior-hero-copy {
    padding-top: 112px;
    padding-bottom: 92px;
  }

  .interior-hero-media {
    height: 690px;
    min-height: 0;
  }

  .editorial-split,
  .contact-layout {
    gap: 62px;
    grid-template-columns: 1fr;
  }

  .editorial-split--reverse .editorial-media {
    order: initial;
  }

  .proof-panel {
    grid-template-columns: 1fr;
  }

  .proof-panel-media {
    min-height: 580px;
  }

  .feature-row,
  .interior-process li,
  .community-entry {
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .feature-row p,
  .interior-process p,
  .community-entry p {
    grid-column: 2;
  }

  .community-entry > div {
    min-width: 0;
    grid-column: 2;
  }

  .resource-link {
    grid-template-columns: 60px minmax(0, 1fr) 34px;
  }

  .resource-link p {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  .trust-strip {
    animation: none;
    transform: none;
  }

  html.js-motion.motion-ready [data-reveal-direction="left"],
  html.js-motion.motion-ready [data-reveal-direction="right"] {
    transform: translateY(18px);
  }

  html.js-motion.motion-ready [data-reveal-direction="left"].is-visible,
  html.js-motion.motion-ready [data-reveal-direction="right"].is-visible {
    transform: none;
  }

  .interior-hero-copy {
    height: 800px;
    min-height: 0;
    padding: 104px var(--page-gutter) 84px;
  }

  .interior-hero-copy h1 {
    margin-bottom: 28px;
    font-size: clamp(2.4rem, 11.2vw, 4.25rem);
  }

  .page-profile .interior-hero-copy,
  .page-service .interior-hero-copy,
  .page-community-detail .interior-hero-copy {
    padding-top: 104px;
    padding-bottom: 84px;
  }

  .page-profile .interior-hero-copy h1 {
    font-size: clamp(2.35rem, 10.8vw, 4.05rem);
  }

  .page-service .interior-hero-copy h1 {
    max-width: 10.4ch;
    font-size: clamp(2.35rem, 10.7vw, 4.05rem);
  }

  .page-community-hub .interior-hero-copy h1 {
    font-size: clamp(2.35rem, 10.8vw, 4rem);
  }

  .page-community-detail .interior-hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(2.25rem, 9.85vw, 3.75rem);
  }

  .page-reference .interior-hero-copy h1,
  .page-contact .interior-hero-copy h1 {
    font-size: clamp(2.35rem, 10.6vw, 4rem);
  }

  .interior-hero-copy > p:not(.eyebrow):not(.hero-credential) {
    margin-bottom: 30px;
    line-height: 1.72;
  }

  .hero-credential,
  .page-service .hero-credential,
  .page-reference .hero-credential {
    margin-top: 8px;
    padding-top: 28px;
    line-height: 1.65;
  }

  .interior-hero-copy .button {
    max-width: min(100%, 360px);
    white-space: normal;
    text-align: center;
  }

  .interior-hero-media,
  .editorial-media {
    min-height: 560px;
  }

  .interior-hero-media {
    height: 560px;
    min-height: 0;
  }

  .page-section {
    padding-top: 88px;
    padding-bottom: 92px;
  }

  .fact-strip,
  .stat-row,
  .service-paths {
    grid-template-columns: 1fr;
  }

  .fact-strip > div,
  .service-path,
  .service-path:nth-child(2n) {
    border-right: 0;
  }

  .fact-strip > div {
    min-height: 138px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  }

  .fact-strip > div:last-child {
    border-bottom: 0;
  }

  .stat-card {
    min-height: 190px;
    padding: 32px 0 36px;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  }

  .stat-card:last-child {
    border-bottom: 0;
  }

  .stat-bar {
    margin-bottom: 30px;
  }

  .legal-hero-copy {
    min-height: 410px;
    padding: 92px 20px 58px;
  }

  .legal-hero-copy h1 {
    font-size: clamp(2.85rem, 13.4vw, 4.9rem);
  }

  .legal-hero-media {
    min-height: 390px;
  }

  .feature-row,
  .interior-process li,
  .community-entry {
    min-height: 0;
    padding: 34px 0 42px;
    gap: 18px;
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .interior-process h3 {
    font-size: clamp(1.7rem, 8.5vw, 2rem);
  }

  .feature-row > span,
  .community-entry > span {
    font-size: 1.35rem;
  }

  .service-path {
    min-height: 290px;
    padding: 34px 0;
  }

  .resource-link {
    min-height: 0;
    padding: 34px 0 40px;
    gap: 18px;
    grid-template-columns: 40px minmax(0, 1fr) 24px;
  }

  .resource-link > span:first-child {
    font-size: 1.25rem;
  }

  .proof-panel-media {
    min-height: 460px;
  }

  .proof-panel-copy {
    padding: 78px 24px 88px;
  }

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

  .form-expectations {
    gap: 0;
    grid-template-columns: 1fr;
  }

  .form-expectations p {
    padding: 10px 0;
  }

  .form-expectations p + p {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .form-field--wide {
    grid-column: auto;
  }

  .contact-form {
    margin-inline: -16px;
  }

  .contact-form .button {
    width: 100%;
  }

  .footer-legal {
    flex-direction: column;
    gap: 8px;
  }
}

/* BUILD-STANDARDS §7b-5: equalize stacked phone CTA groups to the widest
   natural label, while capping the track at its container at 320px. */
@media (max-width: 560px) {
  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, max-content);
    max-width: 100%;
  }

  .hero-actions .button,
  .hero-actions .editorial-link {
    width: auto;
    max-width: 100%;
  }

  .section-heading h2 {
    font-size: clamp(2.5rem, 10.5vw, 3.1rem);
  }
}

@media (max-width: 380px) {
  :root {
    --page-gutter: 20px;
    --shell: calc(100% - (var(--page-gutter) * 2));
  }

  .site-header,
  .site-header.is-solid,
  .site-header.menu-active,
  .interior-page .site-header {
    height: 64px;
  }

  .brand-link {
    width: 146px;
  }

  .mobile-menu {
    inset: 64px 0 0;
    padding-inline: 16px;
  }

  .interior-hero {
    padding-top: 64px;
  }

  .interior-hero-copy,
  .page-profile .interior-hero-copy,
  .page-service .interior-hero-copy,
  .page-community-detail .interior-hero-copy {
    min-height: 560px;
    padding: 88px var(--page-gutter) 76px;
  }

  .interior-hero-copy h1,
  .page-profile .interior-hero-copy h1,
  .page-service .interior-hero-copy h1,
  .page-community-hub .interior-hero-copy h1,
  .page-reference .interior-hero-copy h1,
  .page-contact .interior-hero-copy h1 {
    font-size: clamp(2.28rem, 10.8vw, 3.25rem);
  }

  .page-community-detail .interior-hero-copy h1 {
    font-size: clamp(2.15rem, 10.1vw, 3.05rem);
  }

  .interior-hero-copy .eyebrow,
  .legal-hero-copy .eyebrow {
    margin-bottom: 20px;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
  }

  .hero-credential {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    overflow-wrap: anywhere;
  }

  .legal-hero {
    padding-top: 64px;
  }

  .legal-hero-copy {
    min-height: 380px;
    padding: 78px 16px 52px;
  }

  .legal-hero-copy h1 {
    font-size: clamp(2.65rem, 13vw, 3.55rem);
  }

  .page-section {
    padding-top: 80px;
    padding-bottom: 84px;
  }

  .editorial-copy h2,
  .closing-inner h2 {
    font-size: clamp(2.55rem, 12.2vw, 3.1rem);
  }

  .editorial-split,
  .contact-layout {
    gap: 46px;
  }

  .editorial-link {
    display: inline-flex;
    min-height: 44px;
    padding-block: 10px;
    flex-wrap: wrap;
    line-height: 1.65;
  }

  .editorial-link span {
    display: inline-block;
    margin-left: 4px;
  }

  .section-heading {
    margin-bottom: 50px;
  }

  .contact-phone {
    font-size: clamp(2rem, 10vw, 2.6rem);
  }

  .interior-hero-copy .eyebrow,
  .legal-hero-copy .eyebrow,
  .hero-credential {
    font-size: 0.875rem;
  }

  .service-path h3,
  .community-entry h2,
  .community-entry h3 {
    font-size: clamp(2.2rem, 11.4vw, 3rem);
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-trust {
    grid-column: auto;
  }
}

/* Pointer-only polish stays off touch-first devices so hover cannot become a
   sticky interaction state. Keyboard equivalents remain defined above. */
@media (hover: hover) {
  .button:hover {
    transform: translateY(-1px);
  }

  .button-dark:hover,
  .btn-primary:hover {
    color: #fff;
    background: linear-gradient(135deg, #17120e 0%, #000 64%, #8e6c4c 150%);
    box-shadow: 0 20px 30px -14px rgba(0, 0, 0, 0.82);
  }

  .button-light:hover {
    color: #fff;
    background: transparent;
  }

  .editorial-link:hover span {
    transform: translate(5px, -2px);
  }

  .desktop-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .header-call:hover svg {
    transform: translateX(5px);
  }

  .hero .button-dark:hover,
  .hero .btn-primary:hover,
  .contact-form .form-submit:hover {
    color: var(--ink);
    background: linear-gradient(135deg, #fff 0%, #e9d4bf 58%, #c8a47e 128%);
    box-shadow: 0 22px 34px -12px rgba(0, 0, 0, 0.86);
  }

  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 56px -52px rgba(0, 0, 0, 0.68);
  }

  .pathway-row:hover .pathway-media img,
  .gallery-card:hover img {
    transform: translate3d(0, var(--parallax-y, -18px), 0) scale(1.015);
  }

  .gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8), 0 34px 78px -46px rgba(39, 31, 24, 0.68);
  }

  .gallery-card:hover .gallery-caption {
    opacity: 1;
    background: #fff;
  }

  .listing-media:hover::after,
  .listing-media:focus-visible::after {
    background: rgba(24, 24, 24, 0.34);
  }

  .listing-media:hover .listing-image-label,
  .listing-media:focus-visible .listing-image-label {
    visibility: visible;
    color: #fff;
    background: rgba(17, 15, 13, 0.86);
    transform: none;
  }

  .community-list a:hover,
  .footer-column a:hover {
    color: var(--accent);
  }

  .built-by a:hover {
    color: #8e6c4c;
  }

  .trust-strip:hover {
    animation-play-state: paused;
  }

  .service-path:hover,
  .audience-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 44px -42px rgba(0, 0, 0, 0.7);
  }

  .service-path:hover::before,
  .audience-card:hover::before {
    transform: scaleX(1);
  }

  .service-path:hover span,
  .audience-card:hover span {
    color: #8e6c4c;
    transform: translateX(6px);
  }

  .resource-link:hover > span:last-child {
    transform: translate(5px, -4px);
  }
}

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

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

  html.js-motion .hero-step,
  html.js-motion .hero-media,
  html.js-motion .hero-title-mask > span,
  html.js-motion.motion-ready .reveal,
  html.js-motion.motion-ready .quote-reveal,
  html.js-motion.motion-ready [data-reveal],
  html.js-motion.motion-ready [data-signature-reveal] .closing-word {
    opacity: 1 !important;
    transform: none !important;
  }

  html.js-motion .hero-copy h1 em::after {
    transform: scaleX(1) !important;
  }

  [data-parallax] img {
    transform: none !important;
  }

  .trust-strip {
    animation: none !important;
    transform: none !important;
  }
}
