@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Manrope:wght@400;500;600&display=swap");

:root {
  --ivory: #f4eee4;
  --sand: #d6b273;
  --sand-light: #efdfbd;
  --taupe: #8e817d;
  --logo-blue: #53d6f0;
  --logo-graphite: #2d3031;
  --ink: #1a1916;
  --gutter: 5.2vw;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Helvetica, Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--ink);
}
body {
  margin: 0;
  color: var(--ivory);
  font-family: var(--sans);
  background:
    radial-gradient(
      circle at 80% 8%,
      rgba(83, 214, 240, 0.18),
      transparent 28%
    ),
    radial-gradient(
      circle at 15% 80%,
      rgba(214, 178, 115, 0.1),
      transparent 30%
    ),
    var(--ink);
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
}
button:focus-visible,
a:focus-visible {
  outline: 1px solid var(--sand-light);
  outline-offset: 7px;
}
::selection {
  background: var(--sand);
  color: var(--ink);
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  padding: 12px;
  background: var(--ivory);
  color: var(--ink);
  z-index: 100;
}
.skip-link:focus {
  top: 10px;
}
.header {
  height: 100px;
  position: fixed;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  z-index: 30;
  transition:
    background 0.8s,
    height 0.8s,
    border-color 0.8s,
    backdrop-filter 0.8s;
  background: linear-gradient(to bottom, rgba(17, 17, 17, 0.44), transparent);
  border-bottom: 1px solid transparent;
}
.header.has-scrolled {
  height: 78px;
  background: rgba(29, 30, 31, 0.82);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(83, 214, 240, 0.2);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: clamp(30px, 2vw, 36px);
  font-weight: 300;
  letter-spacing: 7px;
  line-height: 1;
  color: var(--ivory);
}

.navigation {
  display: flex;
  gap: clamp(20px, 2vw, 35px);
  align-items: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4px;
}
.navigation button,
.mobile-menu button {
  border: 0;
  background: none;
  padding: 0;
}
.navigation a,
.navigation button {
  position: relative;
  padding: 10px 0;
  color: var(--ivory);
  opacity: 0.92;
}
.navigation a::after,
.navigation button::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--logo-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.navigation a:hover::after,
.navigation button:hover::after,
.navigation a:focus-visible::after,
.navigation button:focus-visible::after {
  transform: scaleX(1);
}
.navigation a:hover,
.navigation button:hover,
.navigation a:focus-visible,
.navigation button:focus-visible {
  color: var(--sand-light);
}
.navigation button:last-child span {
  margin-left: 12px;
}
.nav-dot {
  display: inline-block;
  width: 3px;
  height: 3px;
  background: currentColor;
  border-radius: 50%;
  margin-left: 9px;
  vertical-align: middle;
  box-shadow: 0 0 0 1px rgba(244, 238, 228, 0.4);
}
.menu-toggle {
  display: none;
}
.mobile-menu {
  display: none;
}
.scene {
  height: 100svh;
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.scene-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.scene-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.42), rgba(17, 17, 17, 0.06) 60%),
    linear-gradient(0deg, rgba(17, 17, 17, 0.48), transparent 40%);
}
.scene-hero .scene-shade {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.32), transparent 75%),
    linear-gradient(0deg, rgba(17, 17, 17, 0.5), transparent 70%);
}
.scene-copy {
  position: absolute;
  left: var(--gutter);
  bottom: 19%;
  max-width: 900px;
}
.hero-copy {
  bottom: 21%;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2.1px;
  line-height: 1.8;
  margin: 0 0 25px;
}
.small-line {
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}
h1,
h2 {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: -2.5px;
  line-height: 0.95;
  margin: 0;
}
h1 {
  font-size: clamp(76px, 8.9vw, 154px);
}
h1 em,
h2 em {
  font-weight: 300;
}
h2 {
  font-size: clamp(68px, 7.2vw, 120px);
}
.hero-subtitle {
  font-size: 11px;
  letter-spacing: 1.25px;
  margin: 25px 0 30px;
  color: rgba(242, 239, 233, 0.8);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  padding: 0 0 10px;
  border: 0;
  border-bottom: 1px solid rgba(242, 239, 233, 0.5);
  background: none;
  font-size: 11px;
  letter-spacing: 0.5px;
}
.text-link span {
  font-size: 20px;
  transition: transform 0.4s;
}
.text-link:hover span {
  transform: translate(3px, -3px);
}
.hero-caption {
  position: absolute;
  right: var(--gutter);
  bottom: 21%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: right;
}
.hero-caption > span:first-child {
  font-size: 8px;
  letter-spacing: 1.5px;
  opacity: 0.65;
}
.hero-caption > span:last-child {
  font-size: 11px;
  line-height: 1.9;
  letter-spacing: 0.4px;
}
.interior-copy > p:last-child {
  font-size: 12px;
  line-height: 1.9;
  letter-spacing: 0.3px;
  margin-top: 25px;
  color: rgba(242, 239, 233, 0.85);
}
.final-copy {
  bottom: 25%;
}
.final-copy .text-link {
  margin-top: 35px;
}
.final-location {
  font-size: 10px;
  letter-spacing: 1px;
  margin-top: 22px;
  opacity: 0.8;
}
.js .journey {
  position: relative;
  height: 1000svh;
}
.js .stage {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  touch-action: pan-y pinch-zoom;
}
.frame-canvas {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: saturate(1.15) contrast(1.08) brightness(1.04);
  background: var(--logo-graphite);
}
.js .frame-canvas {
  display: block;
  visibility: hidden;
}
.sequence-ready .frame-canvas {
  visibility: visible;
}
.sequence-ready .scene {
  background: transparent;
}
.sequence-ready .scene-image {
  visibility: hidden;
}

.js .scene {
  position: absolute;
  inset: 0;
  visibility: hidden;
  pointer-events: none;
  will-change: clip-path, opacity;
}
.js .scene.is-active {
  visibility: visible;
  pointer-events: auto;
}
.js .scene-image {
  will-change: transform;
}
.js .markers {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.js .markers > div {
  position: absolute;
  top: calc(var(--index) * 150svh);
  width: 1px;
  height: 1px;
}
.markers > div:nth-child(1) {
  --index: 0;
}
.markers > div:nth-child(2) {
  --index: 1;
}
.markers > div:nth-child(3) {
  --index: 2;
}
.markers > div:nth-child(4) {
  --index: 3;
}
.markers > div:nth-child(5) {
  --index: 4;
}
.markers > div:nth-child(6) {
  --index: 5;
}
.markers > div:nth-child(7) {
  --index: 6;
}
.chapter-nav {
  position: absolute;
  right: clamp(14px, 2.4vw, 40px);
  top: 43%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  z-index: 15;
  padding: 10px 0;
}
.chapter-nav a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-width: 82px;
  height: 26px;
  color: var(--ivory);
}
.chapter-nav a span {
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateX(-4px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
  white-space: nowrap;
}
.chapter-nav a:hover span,
.chapter-nav a:focus-visible span,
.chapter-nav a[aria-current] span {
  opacity: 1;
  transform: translateX(0);
}
.chapter-nav i {
  width: 12px;
  height: 1px;
  background: rgba(244, 238, 228, 0.45);
  transition:
    width 0.55s,
    background 0.55s,
    transform 0.55s;
}
.chapter-nav a[aria-current] i {
  width: 30px;
  background: var(--sand-light);
  transform: translateX(-4px);
}
.chapter-nav a:not([aria-current]):hover i,
.chapter-nav a:not([aria-current]):focus-visible i {
  width: 18px;
  background: var(--sand-light);
}
.stage-footer {
  position: absolute;
  bottom: clamp(26px, 3vw, 40px);
  left: var(--gutter);
  right: var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 15;
}
.footer-note {
  font-size: 7px;
  letter-spacing: 1.8px;
  opacity: 0.72;
  text-transform: uppercase;
}
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: -3px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: color 0.3s ease;
}
.scroll-cue::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 50%;
  width: 1px;
  height: 10px;
  background: var(--sand-light);
  transform: translateX(-50%);
  opacity: 0.5;
}
.scroll-cue > span:first-child {
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.scroll-cue:hover,
.scroll-cue:focus-visible {
  color: var(--sand-light);
}
.scroll-arrow {
  font-size: 22px;
  line-height: 1;
  transition: transform 0.4s ease;
}
.scroll-cue:hover .scroll-arrow,
.scroll-cue:focus-visible .scroll-arrow {
  transform: translateY(4px);
}
.chapter-count {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  letter-spacing: 1px;
  color: rgba(244, 238, 228, 0.56);
}
#current-chapter {
  color: var(--ivory);
}
.count-line {
  width: 36px;
  height: 1px;
  background: rgba(244, 238, 228, 0.42);
}
.progress-track {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: rgba(244, 238, 228, 0.1);
  z-index: 20;
}
.progress-fill {
  height: 100%;
  width: 100%;
  background: var(--sand-light);
  transform: scaleX(0);
  transform-origin: left;
  box-shadow: 0 0 16px var(--sand);
}
.dialog {
  background: var(--ivory);
  color: var(--ink);
  border: 0;
  width: min(580px, calc(100% - 32px));
  padding: 65px;
  max-height: 90svh;
  overflow: auto;
}
.dialog::backdrop {
  background: rgba(17, 17, 17, 0.65);
  backdrop-filter: blur(5px);
}
.dialog h2 {
  font-size: 64px;
  letter-spacing: -1.6px;
}
.dialog p:not(.eyebrow) {
  font-size: 12px;
  line-height: 1.9;
  color: #625b52;
}
.dialog .text-link {
  border-color: var(--taupe);
  margin-top: 20px;
}
.dialog-close {
  position: absolute;
  right: 22px;
  top: 15px;
  font-size: 30px;
  font-weight: 400;
  border: 0;
  background: none;
}
.dialog .eyebrow {
  font-size: 8px;
  margin-bottom: 20px;
}
.dialog form {
  margin-top: 25px;
}
.dialog label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.4px;
  margin-top: 17px;
}
.dialog input,
.dialog textarea {
  width: 100%;
  display: block;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid #cfc6bb;
  background: none;
  padding: 11px 0;
  border-radius: 0;
  font-size: 12px;
  resize: vertical;
}
.dialog input:focus,
.dialog textarea:focus {
  outline: 0;
  border-bottom-color: var(--ink);
}
.dialog .form-note {
  font-size: 9px !important;
  margin: 18px 0 0;
}
.dialog-open {
  overflow: hidden;
}
@media (min-width: 1600px) {
  .hero-copy {
    bottom: 23%;
  }
  .hero-caption {
    bottom: 23%;
  }
}
@media (max-width: 900px) {
  :root {
    --gutter: 6vw;
  }
  .header {
    height: 85px;
  }
  .navigation {
    gap: 23px;
  }
  .hero-copy {
    bottom: 24%;
  }
  h1 {
    font-size: clamp(75px, 11vw, 110px);
  }
  .hero-caption {
    bottom: 13%;
  }
  .hero-caption > span:first-child {
    font-size: 7px;
  }
  .footer-note {
    max-width: 180px;
    line-height: 1.8;
  }
  .scene-copy {
    max-width: 80%;
  }
  .chapter-nav {
    right: 2vw;
  }
  .scene[data-scene="exterior"] .scene-image {
    object-position: 57% center;
  }
  .scene[data-scene="living"] .scene-image {
    object-position: 48% center;
  }
  .scene[data-scene="kitchen"] .scene-image {
    object-position: 58% center;
  }
  .scene[data-scene="study"] .scene-image {
    object-position: 53% center;
  }
  .scene[data-scene="bathroom"] .scene-image {
    object-position: 68% center;
  }
  .scene[data-scene="bedroom"] .scene-image {
    object-position: 52% center;
  }
  .scene[data-scene="pool"] .scene-image {
    object-position: 41% center;
  }
}
@media (max-width: 600px) {
  :root {
    --gutter: 7vw;
  }
  .header,
  .header.has-scrolled {
    height: 82px;
  }
  .brand {
    font-size: 29px;
    letter-spacing: 6px;
  }
  .navigation {
    display: none;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 38px;
    height: 38px;
    background: none;
    border: 0;
    padding: 6px;
    z-index: 40;
  }
  .menu-toggle span {
    height: 1px;
    width: 24px;
    background: var(--ivory);
    transition: transform 0.3s;
  }
  .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 {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--ink);
    z-index: 25;
    flex-direction: column;
    justify-content: center;
    padding: var(--gutter);
    gap: 24px;
    visibility: hidden;
    opacity: 0;
    transition:
      opacity 0.5s,
      visibility 0.5s;
  }
  .mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
  }
  .mobile-menu a,
  .mobile-menu button {
    font-family: var(--serif);
    font-size: 45px;
    text-align: left;
  }
  .hero-copy {
    bottom: 29%;
    max-width: 88%;
  }
  .eyebrow {
    font-size: 7px;
    letter-spacing: 1.2px;
    gap: 8px;
    margin-bottom: 22px;
  }
  .small-line {
    width: 16px;
  }
  h1 {
    font-size: clamp(62px, 16vw, 94px);
    letter-spacing: -2px;
    line-height: 0.98;
  }
  h2 {
    font-size: clamp(55px, 14vw, 85px);
    letter-spacing: -1.8px;
  }
  .hero-subtitle {
    font-size: 9px;
    letter-spacing: 0.8px;
    margin: 22px 0 28px;
  }
  .text-link {
    font-size: 10px;
    gap: 32px;
  }
  .hero-caption {
    left: var(--gutter);
    right: auto;
    bottom: 14%;
    text-align: left;
    gap: 8px;
  }
  .hero-caption > span:first-child {
    font-size: 6px;
  }
  .hero-caption > span:last-child {
    font-size: 9px;
    line-height: 1.6;
  }
  .chapter-nav {
    right: 18px;
    top: 45%;
  }
  .chapter-nav a {
    min-width: 32px;
    height: 20px;
  }
  .chapter-nav a span {
    display: none;
  }
  .chapter-nav i {
    width: 7px;
  }
  .chapter-nav a[aria-current] i {
    width: 16px;
  }
  .footer-note {
    display: none;
  }
  .stage-footer {
    bottom: 26px;
  }
  .chapter-count {
    margin-left: auto;
    font-size: 8px;
    gap: 9px;
  }
  .count-line {
    width: 23px;
  }
  .scroll-cue {
    left: 0;
    transform: none;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    bottom: 0;
  }
  .scroll-cue > span:first-child {
    font-size: 6px;
    letter-spacing: 1.3px;
  }
  .scroll-arrow {
    font-size: 18px;
  }
  .interior-copy {
    bottom: 23%;
    max-width: 80%;
  }
  .interior-copy > p:last-child {
    font-size: 10px;
    line-height: 1.9;
    margin-top: 23px;
  }
  .final-copy {
    bottom: 28%;
    max-width: 84%;
  }
  .final-copy h2 {
    font-size: clamp(48px, 12.5vw, 72px);
    line-height: 1.02;
  }
  .scene-shade {
    background: linear-gradient(
      0deg,
      rgba(17, 17, 17, 0.65),
      rgba(17, 17, 17, 0.1) 80%
    );
  }
  .scene-hero .scene-shade {
    background: linear-gradient(
      0deg,
      rgba(17, 17, 17, 0.65),
      rgba(17, 17, 17, 0.12) 85%
    );
  }
  .dialog {
    padding: 45px 28px;
  }
  .dialog h2 {
    font-size: 56px;
  }
}
/* Quiet editorial surfaces, with the film remaining the focus. */
.brand-image {
  display: block;
  width: auto;
  height: 68px;
  object-fit: contain;
}
body {
  background: var(--ink);
}

.header.has-scrolled {
  background: rgba(26, 25, 22, 0.76);
  border-bottom-color: rgba(244, 238, 228, 0.12);
}

.navigation {
  font-size: 12px;
  gap: 32px;
}
.navigation a::after,
.navigation button::after {
  background: var(--ivory);
}
.navigation button:last-child {
  border: 1px solid rgba(244, 238, 228, 0.35);
  padding: 11px 18px;
}
.navigation button:last-child::after {
  display: none;
}
.frame-canvas {
  filter: none;
}
.progress-fill {
  box-shadow: none;
}
.interior-copy > p {
  max-width: 390px;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(244, 238, 228, 0.86);
  margin: 24px 0;
}
.interior-copy > .eyebrow {
  font-size: 9px;
  margin: 0 0 24px;
}
.scene-detail {
  margin-top: 4px;
}
.dialog {
  width: min(620px, calc(100% - 48px));
  padding: 56px;
  max-height: 88svh;
  background: #f6f3ed;
  border: 1px solid #e2ded5;
  box-shadow: 0 24px 100px rgba(0, 0, 0, 0.25);
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #c8c1b5 transparent;
}
.wide-dialog {
  width: min(960px, calc(100% - 64px));
}
.dialog::backdrop {
  background: rgba(20, 20, 18, 0.6);
  backdrop-filter: blur(10px);
}
.dialog h2 {
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -1.8px;
  padding-right: 24px;
}
.dialog .eyebrow {
  font-size: 9px;
  letter-spacing: 1.7px;
  color: #7a7062;
  margin-bottom: 22px;
}
.dialog .dialog-intro {
  max-width: 570px;
  font-size: 14px;
  line-height: 1.85;
  margin: 24px 0 32px;
}
.dialog-close {
  position: sticky;
  display: block;
  float: right;
  top: 0;
  margin: -30px -30px 0 0;
  width: 44px;
  height: 44px;
  background: #f6f3ed;
  border: 1px solid #ded8ce;
  border-radius: 50%;
  font-size: 25px;
  line-height: 1;
  z-index: 2;
}
.dialog-close:hover {
  background: #e9e4db;
}
.dialog button:focus-visible,
.dialog a:focus-visible {
  outline-color: #817362;
}
h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 29px;
  line-height: 1.15;
  margin: 14px 0;
  letter-spacing: -0.5px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #dcd6cd;
}
.service-card {
  padding: 26px 24px 26px 0;
  border-bottom: 1px solid #dcd6cd;
  transition: background 0.2s;
}
.service-card:nth-child(even) {
  padding-left: 28px;
  border-left: 1px solid #dcd6cd;
}
.service-card:hover {
  background: #efebe3;
}
.card-number {
  font-size: 9px;
  letter-spacing: 1.2px;
  color: #817362;
}
.service-card p {
  max-width: 310px;
  margin: 0 0 18px;
}
.card-link {
  font-size: 10px;
  letter-spacing: 0.2px;
  border-bottom: 1px solid #b4a797;
  padding-bottom: 5px;
}
.service-invitation {
  background: #eee8dd;
}
.dialog .service-invitation .text-link {
  margin: 0;
}
.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  padding: 28px 0;
  border-top: 1px solid #dcd6cd;
  border-bottom: 1px solid #dcd6cd;
}
.process-list span {
  font-size: 10px;
  color: #968777;
}
.process-list h3 {
  font-size: 25px;
}
.process-list p {
  margin: 0;
}
.dialog .faq-heading {
  margin: 36px 0 16px;
}
.faq-list details {
  border-bottom: 1px solid #dcd6cd;
}
.faq-list summary {
  padding: 19px 28px 19px 0;
  cursor: pointer;
  font-size: 13px;
  list-style: none;
  position: relative;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  font-size: 20px;
  top: 14px;
  color: #817362;
}
.faq-list details[open] summary::after {
  content: "−";
}
.faq-list p {
  margin: 0 28px 20px 0;
}
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 48px;
  padding: 14px 20px;
  margin-top: 28px;
  border: 1px solid #2b2926;
  background: #2b2926;
  color: #f6f3ed;
  font-size: 12px;
  transition: background 0.2s;
}
.primary-button:hover {
  background: #514a40;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
}
.contact-info h2 {
  font-size: clamp(42px, 4vw, 58px);
}
.contact-phone {
  font-family: var(--serif);
  font-size: 32px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid #c6b9a6;
  padding-bottom: 10px;
}
.contact-phone span {
  font-family: var(--sans);
  font-size: 18px;
}
.contact-address {
  margin: 32px 0;
}
.dialog .contact-address .eyebrow {
  margin-bottom: 8px;
}
.dialog .contact-address .text-link {
  margin-top: 4px;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 10px;
  color: #73695a;
}
.dialog form {
  margin: 0;
  padding: 26px;
  background: #ede8df;
  align-self: start;
}
.dialog form h3 {
  font-size: 29px;
}
.dialog .form-description {
  font-size: 12px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.dialog label {
  font-size: 11px;
  letter-spacing: 0;
  margin-top: 22px;
}
.dialog input,
.dialog textarea,
.dialog select {
  width: 100%;
  display: block;
  font: inherit;
  font-size: 13px;
  color: var(--ink);
  border: 1px solid #cfc7ba;
  background: #f8f5ef;
  padding: 12px;
  border-radius: 2px;
  margin-top: 8px;
  min-height: 44px;
}
.dialog textarea {
  resize: vertical;
}
.dialog input:focus,
.dialog textarea:focus,
.dialog select:focus {
  outline: 2px solid #8d7d68;
  outline-offset: 2px;
}
.dialog form .primary-button {
  width: 100%;
}
.dialog .form-note {
  font-size: 10px !important;
  line-height: 1.7 !important;
}
@media (max-width: 600px) {
  .brand-image {
    height: 52px;
  }
  .header,
  .header.has-scrolled {
    height: 72px;
  }
  .brand {
    gap: 8px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }
  .mobile-menu {
    padding: 100px 7vw 38px;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .menu-caption {
    font-size: 9px;
    letter-spacing: 2px;
    color: #a69b8b;
    margin: 18px 0 24px;
  }
  .mobile-menu > a,
  .mobile-menu > button {
    font-size: 38px;
    min-height: 65px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid #38352f;
    padding: 10px 0;
  }
  .mobile-menu > a span,
  .mobile-menu > button span {
    font-family: var(--sans);
    font-size: 9px;
    color: #9b8f7e;
  }
  .menu-contact {
    margin-top: auto;
    padding-top: 32px;
  }
  .menu-contact p {
    font-size: 11px;
    color: #a69b8b;
  }
  .menu-contact a {
    font-size: 27px;
  }
  .hero-copy {
    bottom: 24%;
  }
  .hero-caption,
  .chapter-nav {
    display: none;
  }
  .scene-copy {
    max-width: calc(100% - 14vw);
  }
  .interior-copy {
    bottom: 22%;
    max-width: calc(100% - 14vw);
  }
  h1 {
    font-size: clamp(62px, 17vw, 90px);
  }
  h2 {
    font-size: clamp(52px, 14vw, 75px);
  }
  .hero-subtitle {
    font-size: 11px;
    letter-spacing: 0.3px;
    line-height: 1.8;
    max-width: 260px;
  }
  .interior-copy > p,
  .interior-copy > p:last-child {
    font-size: 12px;
    line-height: 1.8;
    margin: 20px 0;
    max-width: 310px;
  }
  .interior-copy > .eyebrow {
    font-size: 8px;
    margin-bottom: 20px;
  }
  .text-link {
    font-size: 11px;
    min-height: 40px;
    align-items: center;
  }
  .scroll-cue > span:first-child {
    font-size: 7px;
    letter-spacing: 1px;
  }
  .dialog,
  .wide-dialog {
    width: calc(100% - 20px);
    max-height: calc(100svh - 20px);
    padding: 34px 24px;
    border-radius: 4px;
  }
  .dialog-close {
    margin: -20px -12px 0 0;
    width: 40px;
    height: 40px;
  }
  .dialog h2,
  .contact-info h2 {
    font-size: 44px;
    letter-spacing: -1.3px;
    padding-right: 18px;
  }
  .dialog .dialog-intro {
    font-size: 13px;
    margin: 20px 0 26px;
  }
  .service-grid,
  .process-list,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .service-card,
  .service-card:nth-child(even) {
    padding: 24px 0;
    border-left: 0;
  }
  .service-invitation,
  .service-card.service-invitation:nth-child(even) {
    padding: 24px 18px;
  }
  .process-list {
    gap: 24px;
  }
  .process-list h3 {
    margin: 8px 0;
  }
  .contact-layout {
    gap: 32px;
  }
  .dialog form {
    padding: 22px 18px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .dialog input,
  .dialog textarea,
  .dialog select {
    font-size: 16px;
  }
  .dialog .eyebrow {
    font-size: 8px;
  }
  .primary-button {
    width: 100%;
  }
}
@media (max-height: 650px) and (max-width: 600px) {
  .mobile-menu {
    padding-top: 76px;
  }
  .mobile-menu > a,
  .mobile-menu > button {
    min-height: 52px;
    font-size: 32px;
  }
  .menu-caption {
    margin: 8px 0 12px;
  }
  .hero-copy,
  .interior-copy,
  .final-copy {
    bottom: 18%;
  }
  h1,
  h2 {
    font-size: 50px;
  }
  .scene-copy .eyebrow {
    margin-bottom: 12px;
  }
  .hero-subtitle,
  .interior-copy > p {
    margin: 12px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
  .js .journey {
    height: 700svh;
  }
  .js .markers > div {
    top: calc(var(--index) * 100svh);
  }
}
html:not(.js) .stage-footer,
html:not(.js) .chapter-nav,
html:not(.js) .markers {
  display: none;
}
