@font-face {
  font-family: "Manrope";
  src: url("resources/fonts/Manrope-VariableFont_wght.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #12355f;
  --navy-deep: #071f3d;
  --red: #a32638;
  --red-dark: #881a2a;
  --cream: #f7f2ea;
  --warm: #eee7dd;
  --beige: #ebe4d9;
  --ink: #173455;
  --muted: #5f6d7c;
  --white: #fffaf4;
  --shadow: 0 22px 55px rgba(17, 33, 50, 0.18);
  --floating-logo-scale: 0.7;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
}
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  color: var(--ink);
  background: var(--cream);
  letter-spacing: 0;
  overflow-x: clip;
  overflow-wrap: break-word;
}
button,
input,
select,
textarea {
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p { font-size: 16px; line-height: 1.55; font-weight: 500; margin: 0 0 14px; }
h1, h2, h3 { margin: 0; line-height: 1.02; letter-spacing: 0; color: var(--navy); }
h1 { font-size: 58px; font-weight: 600; }
h2 { font-size: 43px; font-weight: 600; }
h3 { font-size: 24px; font-weight: 600; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
.shell { width: min(1180px, calc(100% - 72px)); margin: 0 auto; }
.narrow { max-width: 850px; }
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(163, 38, 56, 0.32);
  outline-offset: 3px;
}
.about-preview,
.why-marvel,
.lot-preview,
.lot-page-section,
.lot-path-section,
.lot-smart-section,
.lot-faq-section,
.lot-gallery-preview,
.lot-final-cta,
.process-band,
.homes-preview,
.gallery-preview,
.proof-section,
.bottom-cta,
.site-footer,
.page-section,
.process-story {
  content-visibility: auto;
  contain-intrinsic-size: auto 720px;
  scroll-margin-top: 118px;
}

.site-loader {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 34px;
  background: var(--navy-deep);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 300ms cubic-bezier(0.22, 1, 0.36, 1);
}
.site-loader.loader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-seen .site-loader {
  display: none;
}
.loader-logo {
  width: min(174px, 44vw);
  height: auto;
  color: var(--white);
  overflow: visible;
}
.loader-logo-path {
  fill: currentColor;
  stroke: none;
}
.loader-marvel-path {
  stroke: currentColor;
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.loader-homes-path {
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: square;
}
.loader-piece {
  opacity: 0;
  animation: loaderPieceFade 220ms ease-out forwards;
}
.loader-reveal {
  transform-box: fill-box;
  transform-origin: left center;
  transform: scaleX(0);
  animation: loaderReveal 720ms cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
.loader-piece-house { animation-delay: 90ms; }
.loader-piece-detail { animation-delay: 260ms; }
.loader-piece-marvel { animation-delay: 330ms; }
.loader-piece-homes { animation-delay: 520ms; }
.loader-reveal-house { animation-delay: 90ms; }
.loader-reveal-detail {
  animation-duration: 340ms;
  animation-delay: 260ms;
}
.loader-reveal-marvel {
  animation-duration: 520ms;
  animation-delay: 330ms;
}
.loader-reveal-homes {
  animation-duration: 380ms;
  animation-delay: 520ms;
}
@keyframes loaderReveal {
  to { transform: scaleX(1); }
}
@keyframes loaderPieceFade {
  to { opacity: 1; }
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 28px;
  left: 50%;
  transform: translate(-50%, 0);
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 58px;
  isolation: isolate;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}
.site-header::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: -14px;
  right: -14px;
  height: 66px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition:
    opacity 280ms ease,
    background 360ms ease,
    border-color 360ms ease,
    box-shadow 360ms ease,
    backdrop-filter 360ms ease,
    -webkit-backdrop-filter 360ms ease;
}
.site-header.is-floating {
  position: fixed;
  animation: headerFloatIn 360ms cubic-bezier(0.22, 1, 0.36, 1);
}
.site-header.is-floating .brand-logo {
  transform: scale(var(--floating-logo-scale));
}
.site-header.is-floating .brand {
  margin-left: 28px;
}
.site-header.is-floating::before {
  opacity: 1;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.header-overlay.is-floating::before {
  border-color: rgba(255, 250, 244, 0.16);
  background: rgba(7, 31, 61, 0.42);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}
.inner-header {
  background: transparent;
}
.homes-overlay-header .brand-logo {
  filter: brightness(0) invert(1) drop-shadow(0 4px 14px rgba(7, 31, 61, 0.28));
}
.homes-overlay-header.is-floating .brand-logo {
  filter: none;
}
.inner-header.is-floating::before {
  border-color: rgba(18, 53, 95, 0.12);
  background: rgba(255, 250, 244, 0.74);
  box-shadow: 0 18px 44px rgba(18, 53, 95, 0.13);
}
@keyframes headerFloatIn {
  from { transform: translate(-50%, -8px); }
  to { transform: translate(-50%, 0); }
}
.brand-logo {
  display: block;
  width: 104px;
  height: auto;
  transform-origin: left center;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}
.logo-light { filter: brightness(0) invert(1); }
.nav-pill {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.11);
  backdrop-filter: blur(14px);
  box-shadow: none;
}
.nav-pill a {
  min-height: 36px;
  min-width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 16px;
  border-radius: 999px;
  color: rgba(255,250,244,0.82);
  font-size: 15px;
  font-weight: 500;
  background: transparent;
  transition:
    background 220ms ease,
    color 220ms ease,
    opacity 220ms ease;
}
.header-overlay .nav-pill a:not(.nav-cta) { color: rgba(255,250,244,0.82); }
.nav-pill a:hover {
  color: #fffaf4;
  background: rgba(255,250,244,0.14);
}
.inner-header .nav-pill {
  border-color: rgba(18, 53, 95, 0.12);
  background: rgba(255, 250, 244, 0.68);
  box-shadow: 0 16px 34px rgba(18, 53, 95, 0.08);
}
.inner-header .nav-pill a {
  color: rgba(18, 53, 95, 0.76);
  background: transparent;
}
.inner-header .nav-pill a:hover {
  color: var(--navy);
  background: rgba(18, 53, 95, 0.08);
}
.inner-header .nav-pill a.active:hover {
  color: var(--red);
  background: #fff;
}
.nav-pill a.active { background: #fff; color: var(--red); }
@media (min-width: 981px) {
  .lot-hero-header:not(.is-floating) .brand-logo,
  .process-hero-header:not(.is-floating) .brand-logo {
    filter: brightness(0) invert(1) drop-shadow(0 4px 14px rgba(7, 31, 61, 0.28));
  }
  .lot-hero-header.is-floating .brand-logo,
  .process-hero-header.is-floating .brand-logo {
    filter: none;
  }
  .lot-hero-header:not(.is-floating) .nav-pill,
  .process-hero-header:not(.is-floating) .nav-pill {
    border-color: rgba(255, 250, 244, 0.22);
    background: rgba(7, 31, 61, 0.34);
    box-shadow: none;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
  .lot-hero-header:not(.is-floating) .nav-pill a:not(.nav-cta),
  .process-hero-header:not(.is-floating) .nav-pill a:not(.nav-cta) {
    color: rgba(255, 250, 244, 0.84);
  }
  .lot-hero-header:not(.is-floating) .nav-pill a:not(.nav-cta):hover,
  .process-hero-header:not(.is-floating) .nav-pill a:not(.nav-cta):hover {
    color: #fffaf4;
    background: rgba(255, 250, 244, 0.14);
  }
  .lot-hero-header:not(.is-floating) .nav-pill a.active,
  .lot-hero-header:not(.is-floating) .nav-pill a.active:hover,
  .process-hero-header:not(.is-floating) .nav-pill a.active,
  .process-hero-header:not(.is-floating) .nav-pill a.active:hover {
    color: var(--red);
    background: #fffaf4;
  }
}
.nav-pill .nav-mobile-cta { display: none; }
.nav-pill .nav-cta {
  min-width: 154px;
  padding-inline: 20px;
  color: #fff;
  background: var(--red);
  font-weight: 600;
}
.nav-pill .nav-cta:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}
.header-cta {
  position: relative;
  margin-left: auto;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--navy);
  background: #fffaf4;
  font-size: 15px;
  font-weight: 600;
  transition:
    background 260ms ease,
    color 260ms ease,
    border-color 260ms ease,
    transform 260ms ease,
    box-shadow 360ms ease;
}
.header-cta::before,
.header-cta::after {
  content: none !important;
  display: none !important;
}
.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-1px);
  color: #fff;
  background: var(--red);
  border-color: transparent;
}
.inner-header .header-cta {
  color: #fffaf4;
  background: var(--red);
  box-shadow: 0 14px 28px rgba(163, 38, 56, 0.16);
}
.inner-header .header-cta.active {
  background: var(--navy);
}
.inner-header .header-cta:hover,
.inner-header .header-cta:focus-visible {
  color: #fffaf4;
  background: var(--navy);
}
.inner-header .header-cta.active:hover,
.inner-header .header-cta.active:focus-visible {
  color: #fffaf4;
  background: var(--red);
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 740px;
  height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #211f1c;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 72%, rgba(4,16,31,0.50) 0%, rgba(4,16,31,0.28) 31%, rgba(4,16,31,0) 58%),
    linear-gradient(90deg, rgba(8,24,44,0.82) 0%, rgba(8,24,44,0.62) 32%, rgba(8,24,44,0.22) 58%, rgba(8,24,44,0.06) 100%),
    linear-gradient(180deg, rgba(8,24,44,0.42) 0%, rgba(8,24,44,0.08) 42%, rgba(255,250,244,0.82) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: clamp(180px, 23svh, 230px) 0 clamp(72px, 10svh, 104px);
}
.glass-panel {
  width: min(850px, 100%);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}
.glass-panel h1 {
  max-width: 820px;
  margin: 0 0 18px;
  color: #fffaf4;
  font-size: clamp(56px, 5.35vw, 72px);
  line-height: 1.04;
  letter-spacing: 0;
  text-shadow: 0 2px 18px rgba(0,0,0,0.28);
}
.glass-panel p {
  max-width: 660px;
  color: rgba(255,250,244,0.84);
  font-size: 18px;
  line-height: 1.55;
  text-shadow: 0 2px 18px rgba(0,0,0,0.28);
}
.feature-tags {
  --marquee-gap: 9px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--marquee-gap);
  width: min(100%, 760px);
  max-width: 760px;
  margin: 22px 0 30px;
  overflow: visible;
  mask-image: none;
}
.feature-track {
  display: flex;
  flex: 0 1 auto;
  flex-wrap: wrap;
  gap: var(--marquee-gap);
  min-width: 0;
  animation: none;
}
.feature-track[aria-hidden="true"] {
  display: none;
}
.feature-tags:hover .feature-track { animation-play-state: paused; }
.feature-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  padding: 7px 11px;
  border-radius: 999px;
  color: rgba(255,250,244,0.78);
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 500;
}
.feature-tags i {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,250,244,0.48);
}
@keyframes featureMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-100% - var(--marquee-gap))); }
}
@media (prefers-reduced-motion: reduce) {
  .feature-track { animation-duration: 0.01ms; animation-iteration-count: 1; }
  .loader-reveal,
  .loader-piece {
    animation: none;
  }
  .loader-reveal {
    transform: scaleX(1);
  }
  .loader-piece {
    opacity: 1;
  }
  .site-loader {
    transition-duration: 220ms;
  }
  .btn,
  .btn::before,
  .circle-arrow,
  .site-header,
  .site-header::before,
  .brand-logo,
  .header-cta,
  .progress-pill,
  .progress-dot,
  .step-viewport,
  .homes-selector-media img,
  .selector-orbit-dot,
  .selector-filters button,
  .selector-home,
  .selector-home::before,
  .wizard-actions .btn,
  .option-card {
    transition: none;
  }
  .process-story-row,
  .process-story-copy::before,
  .process-story-copy p,
  .process-story-frame {
    transition: none;
  }
  .site-header.is-floating { animation: none; }
  .form-step.is-active { animation: none; }
  .process-story-row,
  .process-story-row.is-active {
    color: var(--navy);
    opacity: 1;
    transform: none;
  }
  .process-story-copy p {
    color: rgba(23, 52, 85, 0.74);
  }
  .process-story-image {
    top: 0;
    height: 100%;
    transform: none;
    will-change: auto;
  }
  .process-story-frame,
  .process-story-row.is-active .process-story-frame {
    transform: none;
  }
}
.btn {
  --btn-bg: transparent;
  --btn-text: var(--navy);
  --btn-border: rgba(18,53,95,0.22);
  --btn-hover-fill: var(--navy);
  --btn-hover-text: #fffaf4;
  --btn-arrow-bg: var(--navy);
  --btn-arrow-color: #fffaf4;
  --btn-arrow-hover-bg: #fffaf4;
  --btn-arrow-hover-color: var(--navy);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  border: 1px solid var(--btn-border);
  min-height: 46px;
  padding: 12px 18px 12px 22px;
  color: var(--btn-text);
  background: var(--btn-bg);
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition:
    color 650ms cubic-bezier(0.19, 1, 0.22, 1),
    border-color 650ms cubic-bezier(0.19, 1, 0.22, 1),
    transform 260ms ease;
}
.btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  right: 24px;
  width: 180vmax;
  height: 180vmax;
  border-radius: 999px;
  background: var(--btn-hover-fill);
  transform: translate(50%, -50%) scale(0);
  transform-origin: center;
  transition: transform 780ms cubic-bezier(0.19, 1, 0.22, 1);
}
.btn:hover,
.btn:focus-visible {
  color: var(--btn-hover-text);
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(18,53,95,0.16);
}
.btn:hover::before,
.btn:focus-visible::before {
  transform: translate(50%, -50%) scale(1);
}
.btn-red {
  --btn-bg: var(--red);
  --btn-text: #fff;
  --btn-border: transparent;
  --btn-hover-fill: #fffaf4;
  --btn-hover-text: var(--red);
  --btn-arrow-bg: #fffaf4;
  --btn-arrow-color: var(--red);
  --btn-arrow-hover-bg: var(--red);
  --btn-arrow-hover-color: #fffaf4;
}
.btn-blue {
  --btn-bg: var(--navy);
  --btn-text: #fff;
  --btn-border: transparent;
  --btn-hover-fill: #fffaf4;
  --btn-hover-text: var(--navy);
  --btn-arrow-bg: #fffaf4;
  --btn-arrow-color: var(--navy);
  --btn-arrow-hover-bg: var(--navy);
  --btn-arrow-hover-color: #fffaf4;
}
.btn-white-red {
  --btn-bg: #fffaf4;
  --btn-text: var(--red);
  --btn-border: transparent;
  --btn-hover-fill: var(--red);
  --btn-hover-text: #fffaf4;
  --btn-arrow-bg: var(--red);
  --btn-arrow-color: #fffaf4;
  --btn-arrow-hover-bg: #fffaf4;
  --btn-arrow-hover-color: var(--red);
}
.btn-outline {
  --btn-bg: transparent;
  --btn-text: var(--navy);
  --btn-border: var(--navy);
  --btn-hover-fill: var(--navy);
  --btn-hover-text: #fffaf4;
  --btn-arrow-bg: var(--navy);
  --btn-arrow-color: #fffaf4;
  --btn-arrow-hover-bg: #fffaf4;
  --btn-arrow-hover-color: var(--navy);
  border-width: 2px;
}
.btn-quiet {
  --btn-bg: rgba(255,255,255,0.10);
  --btn-text: #fffaf4;
  --btn-border: rgba(255,255,255,0.36);
  --btn-hover-fill: #fffaf4;
  --btn-hover-text: var(--navy);
  --btn-arrow-bg: #fffaf4;
  --btn-arrow-color: var(--navy);
  --btn-arrow-hover-bg: var(--navy);
  --btn-arrow-hover-color: #fffaf4;
  backdrop-filter: blur(10px);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.circle-arrow {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-right: -9px;
  border-radius: 999px;
  color: var(--btn-arrow-color);
  background: var(--btn-arrow-bg);
  font-size: 0;
  line-height: 1;
  transition:
    background 650ms cubic-bezier(0.19, 1, 0.22, 1),
    color 650ms cubic-bezier(0.19, 1, 0.22, 1),
    transform 650ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.circle-arrow::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 10H14M14 10L10.5 6.5M14 10L10.5 13.5' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 10H14M14 10L10.5 6.5M14 10L10.5 13.5' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}
.btn:hover .circle-arrow,
.btn:focus-visible .circle-arrow {
  color: var(--btn-arrow-hover-color);
  background: var(--btn-arrow-hover-bg);
  transform: translateX(4px);
}
.arrow-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 250ms ease;
}
.carousel-arrow:hover:not(:disabled) .arrow-right,
.testimonial-next:hover .arrow-right { transform: translateX(2px); }
.carousel-arrow:hover:not(:disabled) .arrow-left,
.testimonial-prev:hover .arrow-left { transform: translateX(-2px); }

.section-cream { background: var(--cream); }
.about-preview { padding: 72px 0 64px; }
.about-preview .split-layout {
  grid-template-columns: minmax(0, 510px) minmax(440px, 1fr);
  gap: clamp(56px, 7vw, 88px);
  align-items: center;
}
.about-preview .split-layout > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.about-preview .eyebrow {
  margin-bottom: 18px;
}
.about-preview h2 {
  max-width: 520px;
  margin-bottom: 22px;
}
.about-preview p {
  max-width: 500px;
}
.about-preview .btn {
  margin-top: 4px;
}
.about-preview .rounded-image {
  align-self: center;
}
.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 560px);
  gap: 82px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 22px;
  color: var(--red);
  font-weight: 600;
}
.split-layout h2 { max-width: 620px; margin-bottom: 24px; }
.split-layout p { max-width: 650px; }
.rounded-image {
  width: 100%;
  aspect-ratio: 1.48;
  object-fit: cover;
  border-radius: 24px;
}

.home-section-intro {
  max-width: 790px;
}
.home-section-intro h2 {
  max-width: 680px;
  margin-bottom: 22px;
}
.home-section-intro p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(18,53,95,0.74);
  font-size: 18px;
  line-height: 1.65;
}
.why-marvel {
  padding: 72px 0 50px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.why-card {
  position: relative;
  min-height: 252px;
  display: grid;
  grid-template-rows: 70px auto 1fr;
  align-content: stretch;
  padding: 30px;
  border-radius: 20px;
  color: var(--navy);
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.88), rgba(255, 250, 244, 0.72));
  border: 1px solid rgba(18,53,95,0.08);
  box-shadow: 0 10px 26px rgba(18, 53, 95, 0.045);
}
.why-card:nth-child(2) {
  margin-top: 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.88), rgba(255, 250, 244, 0.72));
  color: var(--navy);
}
.why-card span {
  width: 54px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  border-radius: 999px;
  background: var(--red);
  border: 1px solid rgba(163, 38, 56, 0.22);
  color: #fffaf4;
  font-weight: 800;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.08em;
}
.why-card span::after {
  content: "";
  position: absolute;
  top: 46px;
  left: 96px;
  right: 30px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(163, 38, 56, 0.34), rgba(163, 38, 56, 0));
}
.why-card h3 {
  max-width: 320px;
  align-self: start;
  margin: 0 0 14px;
  font-size: clamp(22px, 1.8vw, 25px);
  line-height: 1.12;
}
.why-card p {
  max-width: 330px;
  margin: 0;
  color: rgba(18,53,95,0.72);
  font-size: 15px;
  line-height: 1.6;
}
.why-card:nth-child(2) p {
  color: rgba(18,53,95,0.72);
}
.lot-preview {
  padding: 26px 0 62px;
}
.lot-preview-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  gap: clamp(32px, 5vw, 62px);
  align-items: center;
  padding: clamp(26px, 3.5vw, 40px);
  border-radius: 26px;
  background: rgba(255, 250, 244, 0.76);
  box-shadow: 0 22px 60px rgba(18, 53, 95, 0.09);
}
.lot-preview-copy h2 {
  max-width: 580px;
  margin-bottom: 18px;
}
.lot-preview-copy p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(18,53,95,0.72);
  font-size: 17px;
  line-height: 1.65;
}
.lot-proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  padding: 0;
  margin: 24px 0 28px;
  list-style: none;
}
.lot-proof-list li {
  position: relative;
  padding-left: 20px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
}
.lot-proof-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--red);
}
.lot-preview-media {
  position: relative;
  margin: 0;
}
.lot-preview-media img {
  width: 100%;
  height: clamp(300px, 34vw, 430px);
  aspect-ratio: 1.22;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 24px 52px rgba(18, 53, 95, 0.14);
}
.lot-preview-media figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 310px;
  padding: 14px 16px;
  border-radius: 16px;
  color: #fffaf4;
  background: rgba(7, 31, 61, 0.84);
  backdrop-filter: blur(14px);
  font-size: 13px;
  line-height: 1.4;
}

.lot-page-section {
  padding: 72px 0 58px;
}
.lot-page-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
  margin-bottom: 34px;
}
.lot-page-intro h2,
.lot-path .section-head h2,
.lot-faq .section-head h2,
.lot-gallery-grid h2 {
  max-width: 640px;
}
.lot-page-intro p:not(.eyebrow) {
  max-width: 690px;
  color: rgba(18, 53, 95, 0.74);
  font-size: 17px;
  line-height: 1.65;
}
.lot-checklist,
.lot-path-steps,
.lot-faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.lot-checklist article,
.lot-faq-grid article {
  padding: 22px;
  border: 1px solid rgba(18, 53, 95, 0.1);
  border-radius: 18px;
  background: rgba(255, 250, 244, 0.72);
}
.lot-checklist h3,
.lot-faq-grid h3 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.15;
}
.lot-checklist p,
.lot-faq-grid p {
  margin: 0;
  color: rgba(18, 53, 95, 0.72);
  font-size: 14.5px;
  line-height: 1.55;
}
.lot-path-section {
  padding: 68px 0;
  background: var(--navy-deep);
}
.lot-path .section-head h2,
.lot-path .section-head p:not(.eyebrow),
.lot-path .eyebrow {
  color: #fffaf4;
}
.lot-path .section-head {
  margin-bottom: 30px;
}
.lot-path-steps article {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border: 1px solid rgba(255, 250, 244, 0.13);
  border-radius: 18px;
  background: rgba(255, 250, 244, 0.08);
}
.lot-path-steps span {
  margin-bottom: auto;
  color: #fffaf4;
  font-size: 13px;
  font-weight: 800;
}
.lot-path-steps h3 {
  margin: 28px 0 10px;
  color: #fffaf4;
  font-size: 22px;
}
.lot-path-steps p {
  margin: 0;
  color: rgba(255, 250, 244, 0.74);
  font-size: 14.5px;
  line-height: 1.55;
}
.lot-smart-section {
  padding: 74px 0;
}
.lot-smart-grid,
.lot-gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(34px, 5vw, 68px);
  align-items: center;
}
.lot-smart-media {
  margin: 0;
}
.lot-smart-media img {
  width: 100%;
  height: clamp(340px, 42vw, 560px);
  aspect-ratio: 1.34;
  object-fit: cover;
  border-radius: 24px;
}
.lot-smart-copy p:not(.eyebrow),
.lot-gallery-grid p:not(.eyebrow) {
  max-width: 610px;
  color: rgba(18, 53, 95, 0.72);
  font-size: 17px;
  line-height: 1.65;
}
.lot-smart-copy h2 {
  margin-bottom: 20px;
}
.lot-faq-section {
  padding: 70px 0;
  background: #fffaf4;
}
.lot-faq .section-head {
  margin-bottom: 28px;
}
.lot-faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.lot-gallery-preview {
  padding: 64px 0 70px;
  overflow: hidden;
}
.lot-gallery-grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(380px, 1fr);
}
.lot-gallery-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.lot-gallery-images {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 14px;
  align-items: end;
}
.lot-gallery-images img {
  width: 100%;
  height: clamp(230px, 32vw, 390px);
  object-fit: cover;
  border-radius: 22px;
}
.lot-gallery-images img:first-child {
  aspect-ratio: 0.84;
}
.lot-gallery-images img:last-child {
  aspect-ratio: 1.08;
  margin-bottom: 34px;
}
.lot-final-cta {
  padding-top: 58px;
}

.process-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 36px 0 48px;
  background: var(--navy-deep);
  color: #fff;
}
.blueprint {
  position: absolute;
  inset: 0;
  opacity: 1;
  pointer-events: none;
}
.blueprint::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 250, 244, 0.14);
  -webkit-mask: url("resources/images/blueprint.svg") center / cover no-repeat;
  mask: url("resources/images/blueprint.svg") center / cover no-repeat;
  mix-blend-mode: screen;
}
.blueprint::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 44%, transparent 0 32%, rgba(7, 31, 61, 0.36) 74%),
    linear-gradient(180deg, rgba(7, 31, 61, 0.18), rgba(7, 31, 61, 0.56));
  pointer-events: none;
}
.process-content { position: relative; text-align: center; }
.section-badge {
  display: inline-flex;
  margin: 0 0 20px;
  padding: 7px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  font-weight: 600;
}
.process-content h2 {
  max-width: 620px;
  margin: 0 auto 38px;
  color: #fff;
}
.process-cards {
  display: flex;
  gap: 14px;
  align-items: stretch;
  margin-bottom: 36px;
  height: 368px;
  min-height: 368px;
}
.process-card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  height: 100%;
  min-height: 0;
  align-self: stretch;
  display: grid;
  grid-template-rows: 132px 30px auto 92px;
  row-gap: 9px;
  align-content: end;
  align-items: start;
  overflow: hidden;
  padding: 13px 14px 20px;
  border-radius: 19px;
  text-align: left;
  background: #fffaf4;
  color: var(--navy);
  box-shadow: 0 14px 34px rgba(0,0,0,0.14);
  opacity: 0.96;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.24);
  transition:
    transform 1000ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 800ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 1000ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 1000ms cubic-bezier(0.22, 1, 0.36, 1);
  filter: saturate(0.96) contrast(0.99);
  will-change: transform, opacity;
}
.process-card-trigger {
  appearance: none;
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: inherit;
  font: inherit;
  color: inherit;
  text-align: left;
  background: transparent;
  cursor: pointer;
}
.process-card-trigger:focus-visible {
  outline: 3px solid rgba(255,255,255,0.68);
  outline-offset: 4px;
}
.process-card:hover,
.process-card:focus-within {
  transform: translateY(-1px);
}
.process-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: rgba(255, 250, 244, 0.28);
  opacity: 0;
  transition: opacity 1000ms cubic-bezier(0.22, 1, 0.36, 1);
}
.process-card.active {
  flex: 1 1 0;
  opacity: 1;
  transform: translateY(0);
  filter: saturate(1) contrast(1.02);
  box-shadow: 0 20px 48px rgba(0,0,0,0.2);
}
.process-card.active::after { opacity: 0.16; }
.process-card:not(.active) .card-icon,
.process-card:not(.active) h3 {
  color: rgba(18,53,95,0.82);
}
.process-card:not(.active) img {
  opacity: 0.42;
  transform: translateY(0);
  visibility: visible;
  pointer-events: none;
}
.process-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 132px;
  aspect-ratio: 1.95;
  object-fit: cover;
  border-radius: 14px;
  margin: 0;
  opacity: 1;
  transform: translateY(0) scale(1);
  transform-origin: center;
  visibility: visible;
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}
.card-description-wrap {
  position: relative;
  z-index: 1;
  min-height: 92px;
  overflow: hidden;
}
.process-card p {
  width: 245px;
  max-width: 100%;
  font-size: 14px;
  line-height: 1.42;
  margin: 0 10px;
  color: rgba(18,53,95,0.72);
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}
.process-card.active img {
  transition-delay: 120ms, 120ms;
}
.process-card.active .card-description-wrap p {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  color: rgba(18,53,95,0.82);
  transition-delay: 120ms, 120ms;
}
.process-card h3 {
  position: relative;
  z-index: 1;
  font-size: clamp(23px, 2vw, 31px);
  line-height: 1;
  margin: 0 10px;
  transition: color 800ms cubic-bezier(0.22, 1, 0.36, 1);
}
.card-icon {
  position: relative;
  z-index: 1;
  display: block;
  align-self: end;
  margin: 0 10px;
  color: var(--navy);
  font-size: 25px;
  font-weight: 600;
  transition:
    color 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1000ms cubic-bezier(0.22, 1, 0.36, 1);
}
.process-card.active .card-icon { transform: translateY(-1px) scale(1.02); }

.homes-preview { position: relative; padding: 54px 0 88px; overflow: hidden; }
.section-head { margin-bottom: 36px; }
.section-head p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(18,53,95,0.72);
  font-size: 17px;
  line-height: 1.6;
}
.row-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}
.home-carousel-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.carousel-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}
.home-carousel-viewport {
  overflow: hidden;
  width: 100%;
}
.home-card-row {
  display: flex;
  gap: 30px;
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.home-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.home-card {
  flex: 0 0 calc((100% - 60px) / 3);
  overflow: hidden;
  border-radius: 18px;
  background: var(--beige);
  box-shadow: 0 16px 32px rgba(18, 53, 95, 0.08);
  transition:
    transform 450ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 450ms cubic-bezier(0.22, 1, 0.36, 1);
}
.home-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(18, 53, 95, 0.13);
}
.home-card img {
  width: 100%;
  height: clamp(210px, 21vw, 310px);
  aspect-ratio: 1.55;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}
.home-card:hover img { transform: scale(1.03); }
.home-card div { padding: 20px 18px 22px; }
.home-card h3 { font-size: 18px; margin-bottom: 5px; }
.home-card p { color: var(--navy); font-size: 13px; line-height: 1.3; margin: 0; }
.carousel-arrow {
  position: static;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 2px solid var(--navy);
  background: transparent;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition:
    background 250ms ease,
    color 250ms ease,
    opacity 250ms ease,
    transform 250ms ease;
}
.carousel-arrow:hover:not(:disabled) {
  background: var(--navy);
  color: #fffaf4;
  transform: translateY(-2px);
}
.carousel-arrow:focus-visible,
.testimonial-arrow:focus-visible,
.testimonial-dot:focus-visible,
.selector-filters button:focus-visible,
.filter-tabs button:focus-visible {
  outline: 3px solid rgba(163, 38, 56, 0.28);
  outline-offset: 3px;
}
.carousel-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.testimonials {
  padding: 46px 0 44px;
  background: #eee8e6;
}
.testimonial-content {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(460px, 1.2fr);
  gap: 44px;
  align-items: center;
}
.testimonial-copy h2 { margin-bottom: 18px; }
.testimonial-copy > p:not(.eyebrow) {
  max-width: 420px;
  color: rgba(18,53,95,0.72);
}
.testimonial-copy .btn { margin-top: 8px; }
.testimonial-carousel {
  position: relative;
  max-width: 760px;
  min-height: 372px;
  margin: 0 auto;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 330px;
  min-height: 330px;
  padding: 28px 46px 32px;
  border: 1px solid rgba(20, 55, 95, 0.12);
  border-radius: 22px;
  color: var(--navy);
  background: #fffaf4;
  box-shadow: 0 24px 70px rgba(0,0,0,0.10);
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 600ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
.testimonial-card.is-leaving {
  opacity: 0;
  transform: translateY(12px);
}
.testimonial-stars {
  color: var(--red);
  font-size: 18px;
  letter-spacing: 5px;
  margin-bottom: 16px;
}
.testimonial-card blockquote {
  overflow-wrap: break-word;
  margin: 0;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.42;
  font-style: normal;
  font-weight: 500;
}
.testimonial-divider {
  height: 1px;
  margin: 24px 0 16px;
  background: rgba(20, 55, 95, 0.14);
}
.testimonial-footer h3 {
  margin: 0;
  color: var(--navy);
  font-size: 17px;
}
.testimonial-footer p {
  margin: 4px 0 0;
  color: rgba(20, 55, 95, 0.68);
  font-size: 14px;
  font-weight: 500;
}
.testimonial-controls {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 28px;
  margin-bottom: 10px;
}
.testimonial-stars,
.testimonial-divider,
.testimonial-footer {
  flex: 0 0 auto;
}
.testimonial-arrow {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: rgba(20, 55, 95, 0.3);
  cursor: pointer;
  transition: color 250ms ease, transform 250ms ease;
}
.testimonial-arrow:hover {
  color: var(--red);
  transform: translateY(-1px);
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.testimonial-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(20, 55, 95, 0.20);
  cursor: pointer;
  transition: width 250ms ease, background 250ms ease;
}
.testimonial-dot.active {
  width: 28px;
  background: var(--red);
}

.gallery-preview {
  padding: 58px 0 76px;
}
.gallery-preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}
.gallery-preview-copy h2 {
  max-width: 520px;
  margin-bottom: 18px;
}
.gallery-preview-copy p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(18,53,95,0.72);
  font-size: 17px;
  line-height: 1.65;
}
.gallery-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}
.gallery-labels span {
  padding: 8px 12px;
  border: 1px solid rgba(18,53,95,0.12);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255,250,244,0.72);
  font-size: 13px;
  font-weight: 600;
}
.gallery-preview-images {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-rows: 180px 220px;
  gap: 16px;
}
.gallery-preview-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(18, 53, 95, 0.1);
}
.gallery-preview-images img:first-child {
  grid-row: span 2;
}
.proof-section {
  padding: 72px 0 76px;
  background: #eee8e6;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.proof-card {
  min-height: 292px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 30px 28px 28px;
  border-radius: 18px;
  color: var(--navy);
  background: #fffaf4;
  box-shadow: 0 14px 32px rgba(18, 53, 95, 0.065);
}
.proof-card span {
  display: block;
  width: 100%;
  margin-bottom: 34px;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(163, 38, 56, 0.2);
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}
.proof-card h3 {
  max-width: 260px;
  margin-bottom: 18px;
  font-size: 22px;
  line-height: 1.12;
}
.proof-card h3::before {
  content: none;
}
.proof-card p {
  margin: 0;
  color: rgba(18,53,95,0.76);
  font-size: 14.5px;
  line-height: 1.62;
}
.short-about {
  padding: 76px 0 88px;
}

.bottom-cta { padding: 38px 0 44px; background: #eee8e6; }
.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 168px;
  padding: 30px 32px;
  border-radius: 22px;
  color: #fff;
  background: var(--red);
  overflow: hidden;
}
.cta-panel h2 {
  max-width: 700px;
  color: #fff;
  line-height: 1.25;
  font-size: clamp(31px, 3vw, 41px);
}
.cta-panel p { max-width: 720px; color: #fff; margin: 16px 0 0; }
.circled-word {
  position: relative;
  z-index: 1;
  display: inline-block;
  white-space: nowrap;
}
.circled-word-text {
  position: relative;
  z-index: 2;
}
.word-circle {
  position: absolute;
  z-index: -1;
  top: 101%;
  left: 50%;
  width: 105%;
  height: 28%;
  overflow: hidden;
  pointer-events: none;
  color: rgba(255,250,244,0.86);
  clip-path: inset(0 100% 0 0);
  transform: translate(-50%, -50%) rotate(-1.5deg);
}
.word-circle path {
  fill: currentColor;
}
.cta-panel.circle-drawn .word-circle {
  animation: drawUnderline 1.35s cubic-bezier(0.43, 0.13, 0.23, 0.96) forwards;
}
@keyframes drawUnderline {
  to { clip-path: inset(0 0 0 0); }
}
@media (prefers-reduced-motion: reduce) {
  .cta-panel.circle-drawn .word-circle {
    animation: none;
    clip-path: inset(0 0 0 0);
  }
}

.site-footer {
  padding: 30px 0 18px;
  background: var(--navy-deep);
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(230px, 1.7fr) repeat(3, minmax(115px, 0.9fr)) minmax(250px, 1.2fr);
  gap: 38px;
  padding-bottom: 24px;
}
.footer-logo { width: 118px; margin-bottom: 18px; }
.footer-brand p, .site-footer p { color: #fffaf4; font-size: 13px; line-height: 1.4; font-weight: 500; }
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.site-footer .footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.07);
  line-height: 1;
  text-decoration: none;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}
.site-footer .footer-social-link:hover,
.site-footer .footer-social-link:focus-visible {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-1px);
}
.footer-social-link svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.footer-social-link[href*="instagram"] svg,
.footer-social-link[aria-label*="Instagram"] svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}
.site-footer .footer-heading {
  margin: 10px 0 16px;
  color: #fffaf4;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}
.site-footer a {
  display: block;
  margin-bottom: 10px;
  color: #fffaf4;
  font-size: 14px;
  font-weight: 600;
}
.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
}
.footer-contact {
  min-width: 0;
}
.contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: #fffaf4 !important;
  font-size: 14px !important;
  line-height: 1.25 !important;
  white-space: nowrap;
}
.contact-line a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  margin: 0;
  color: inherit;
  font: inherit;
  line-height: inherit;
  text-decoration: none;
  white-space: inherit;
}
.contact-line a:hover,
.contact-line a:focus-visible {
  color: #fff;
}
.contact-line svg {
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.95;
}
.contact-line span {
  min-width: 0;
  overflow-wrap: anywhere;
}
.footer-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
  margin-bottom: 0 !important;
  padding: 8px 10px 8px 14px;
  border-radius: 999px;
  color: var(--navy) !important;
  background: #fff;
  font-size: 12px !important;
  line-height: 1 !important;
  white-space: nowrap;
  max-width: 100%;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}
.footer-button:hover,
.footer-button:focus-visible {
  color: #fff !important;
  background: var(--red);
  transform: translateY(-1px);
}
.footer-arrow {
  display: inline-grid;
  place-items: center;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #fff;
  background: var(--navy);
  font-size: 15px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.35);
  color: #fffaf4;
  font-size: 12px;
}
.footer-bottom a {
  display: inline;
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(255, 255, 255, 0.34);
  text-underline-offset: 0.18em;
}
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.8);
}
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 142px 0 86px;
  background: #f2ece3;
}
.page-hero h1 { margin-bottom: 20px; max-width: 980px; }
.page-hero p:not(.eyebrow):not(.section-badge) { max-width: 720px; color: #344960; }
.page-hero .btn {
  position: relative;
  margin-top: 12px;
}
.legal-hero {
  padding-bottom: 68px;
}
.legal-section {
  padding: 58px 0 72px;
}
.legal-shell {
  max-width: 920px;
}
.legal-document {
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(18, 53, 95, 0.08);
  border-radius: 20px;
  background: #fffaf4;
  box-shadow: 0 18px 38px rgba(18, 53, 95, 0.06);
}
.legal-document p {
  color: rgba(23, 52, 85, 0.82);
  font-size: 16px;
  line-height: 1.68;
}
.legal-document h2 {
  margin: 34px 0 10px;
  font-size: clamp(24px, 3vw, 31px);
  line-height: 1.12;
}
.legal-document h3 {
  margin: 22px 0 8px;
  font-size: 18px;
  line-height: 1.2;
}
.legal-document a {
  color: var(--red);
  font-weight: 800;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}
.legal-document code {
  padding: 2px 6px;
  border-radius: 6px;
  color: var(--navy);
  background: rgba(18, 53, 95, 0.08);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92em;
}
.navy-page { background: var(--navy-deep); color: #fff; }
.navy-page h1, .navy-page p { color: #fff !important; position: relative; }
.page-section { padding: 78px 0; }

.page-hero.gallery-hero {
  padding: 122px 0 40px;
  background: #f2ece3;
}
.gallery-hero-shell {
  max-width: 640px;
}
.gallery-mobile-categories {
  display: none;
}
.gallery-hero .eyebrow {
  margin-bottom: 7px;
  font-size: 13px;
}
.page-hero.gallery-hero h1 {
  max-width: 600px;
  margin-bottom: 12px;
  font-size: clamp(30px, 3.1vw, 40px);
  line-height: 1.03;
  text-wrap: balance;
}
.page-hero.gallery-hero p:not(.eyebrow) {
  max-width: 540px;
  color: #344960;
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 0;
}
.gallery-explorer {
  padding: 0 0 clamp(18px, 2.8vw, 38px);
  overflow: hidden;
  background: var(--cream);
}
.gallery-track {
  position: relative;
  width: 100vw;
  max-width: none;
  min-height: clamp(620px, 72vh, 700px);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.gallery-track::after {
  content: none;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  height: clamp(72px, 12vh, 128px);
  background: linear-gradient(180deg, rgba(247, 242, 234, 0), var(--cream) 74%);
  pointer-events: none;
}
.gallery-track:focus-visible {
  outline: 3px solid rgba(163, 38, 56, 0.28);
  outline-offset: 5px;
}
.gallery-canvas-hint {
  position: absolute;
  z-index: 8;
  top: clamp(12px, 1.4vw, 18px);
  left: max(18px, calc((100vw - 1180px) / 2));
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: rgba(18, 53, 95, 0.68);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  pointer-events: none;
}
.gallery-explorer.is-enhanced .gallery-track {
  cursor: grab;
  touch-action: none;
  user-select: none;
}
.gallery-explorer.is-enhanced .gallery-track.is-dragging {
  cursor: grabbing;
}
.gallery-set {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  will-change: transform;
}
.gallery-set[aria-hidden="true"] {
  display: none;
}
.gallery-explorer.is-enhanced .gallery-set {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 1600px;
  height: 720px;
}
.gallery-card {
  position: relative;
  height: clamp(300px, 31vw, 420px);
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--navy-deep);
  isolation: isolate;
  box-shadow: 0 4px 14px rgba(7, 31, 61, 0.06);
}
.gallery-card-large {
  grid-column: span 2;
  height: clamp(340px, 38vw, 500px);
}
.gallery-card-tall {
  height: clamp(420px, 44vw, 560px);
}
.gallery-card-wide {
  grid-column: span 2;
  height: clamp(300px, 34vw, 430px);
}
.gallery-explorer.is-enhanced .gallery-card {
  position: absolute;
  min-height: 0;
  border-radius: 18px;
}
.gallery-explorer.is-enhanced .gallery-card-01 {
  top: 36px;
  left: clamp(120px, 13vw, 220px);
  width: 590px;
  height: 374px;
}
.gallery-explorer.is-enhanced .gallery-card-02 {
  top: 92px;
  left: clamp(820px, 61vw, 970px);
  width: 330px;
  height: 412px;
}
.gallery-explorer.is-enhanced .gallery-card-03 {
  top: 268px;
  left: clamp(690px, 50vw, 820px);
  width: 360px;
  height: 230px;
}
.gallery-explorer.is-enhanced .gallery-card-04 {
  top: 426px;
  left: clamp(250px, 23vw, 380px);
  width: 360px;
  height: 220px;
}
.gallery-explorer.is-enhanced .gallery-card-05 {
  top: 444px;
  left: clamp(670px, 50vw, 820px);
  width: 500px;
  height: 250px;
}
.gallery-explorer.is-enhanced .gallery-card-06 {
  top: 218px;
  left: clamp(1220px, 92vw, 1320px);
  width: 300px;
  height: 288px;
}
.gallery-explorer.is-enhanced .gallery-card-07 {
  top: 432px;
  left: clamp(58px, 7vw, 110px);
  width: 314px;
  height: 190px;
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  transform: scale(1);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(7, 31, 61, 0.18);
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .gallery-card:hover img {
    transform: scale(1.025);
  }
}
.gallery-caption {
  position: absolute;
  z-index: 2;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 3px;
  color: #fffaf4;
}
.gallery-caption span {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
}
.gallery-caption small {
  display: block;
  max-width: 320px;
  color: rgba(255, 250, 244, 0.68);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
}
.gallery-cta-section {
  padding: clamp(16px, 3vw, 34px) 0 clamp(70px, 8vw, 104px);
  background: var(--warm);
}
.gallery-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: clamp(30px, 4vw, 46px);
  border-radius: 22px;
  color: #fffaf4;
  background: var(--navy-deep);
}
.gallery-cta .eyebrow,
.gallery-cta h2,
.gallery-cta p {
  color: #fffaf4;
}
.gallery-cta .eyebrow {
  margin-bottom: 14px;
  color: rgba(255, 250, 244, 0.76);
}
.gallery-cta h2 {
  max-width: 700px;
  margin-bottom: 14px;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
}
.gallery-cta p {
  max-width: 640px;
  color: rgba(255, 250, 244, 0.82);
}
.gallery-cta .btn {
  flex: 0 0 auto;
}
@media (prefers-reduced-motion: reduce) {
  .gallery-track {
    cursor: auto;
  }
  .gallery-card img {
    transform: none;
    transition: none;
  }
}

@media (max-width: 900px) {
  .gallery-hero {
    padding: 112px 0 28px;
  }
  .gallery-hero .eyebrow {
    margin-bottom: 6px;
  }
  .gallery-hero h1 {
    max-width: 560px;
    margin-bottom: 12px;
    font-size: clamp(29px, 4.6vw, 36px);
  }
  .gallery-hero p:not(.eyebrow) {
    max-width: 520px;
  }
  .gallery-mobile-categories {
    display: flex;
    gap: 9px;
    margin-top: 18px;
    overflow-x: auto;
    padding: 0 0 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .gallery-mobile-categories::-webkit-scrollbar {
    display: none;
  }
  .gallery-mobile-categories span {
    flex: 0 0 auto;
    padding: 8px 12px;
    border: 1px solid rgba(18, 53, 95, 0.16);
    border-radius: 999px;
    color: var(--navy);
    background: rgba(255, 250, 244, 0.52);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 10px 22px rgba(7, 31, 61, 0.05);
  }
  .gallery-explorer {
    padding: 18px 0 38px;
  }
  .gallery-track,
  .gallery-explorer.is-enhanced .gallery-track {
    width: min(100% - 36px, 760px);
    max-width: none;
    min-height: 0;
    margin: 0 auto;
    overflow: visible;
    cursor: auto;
    touch-action: auto;
    user-select: auto;
  }
  .gallery-track::after {
    display: none;
  }
  .gallery-canvas-hint {
    display: none;
  }
  .gallery-set,
  .gallery-explorer.is-enhanced .gallery-set {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    width: 100%;
    height: auto;
    transform: none !important;
    will-change: auto;
  }
  .gallery-set[aria-hidden="true"],
  .gallery-explorer.is-enhanced .gallery-set[aria-hidden="true"] {
    display: none;
  }
  .gallery-card,
  .gallery-card-large,
  .gallery-card-tall,
  .gallery-card-wide,
  .gallery-explorer.is-enhanced .gallery-card,
  .gallery-explorer.is-enhanced .gallery-card-01,
  .gallery-explorer.is-enhanced .gallery-card-02,
  .gallery-explorer.is-enhanced .gallery-card-03,
  .gallery-explorer.is-enhanced .gallery-card-04,
  .gallery-explorer.is-enhanced .gallery-card-05,
  .gallery-explorer.is-enhanced .gallery-card-06,
  .gallery-explorer.is-enhanced .gallery-card-07 {
    position: relative;
    inset: auto;
    grid-column: auto;
    width: 100%;
    min-height: 0;
    height: auto;
    margin: 0;
    border-radius: 18px;
    transform: none !important;
  }
  .gallery-card {
    aspect-ratio: 1.18;
  }
  .gallery-card-large,
  .gallery-card-wide {
    aspect-ratio: 1.32;
  }
  .gallery-card-tall {
    aspect-ratio: 0.92;
  }
  .gallery-card-03,
  .gallery-card-04,
  .gallery-card-06 {
    aspect-ratio: 1.05;
  }
  .gallery-card img {
    transform: none;
  }
  .gallery-card-01 img { object-position: 50% 54%; }
  .gallery-card-02 img { object-position: 50% 50%; }
  .gallery-card-03 img { object-position: 50% 54%; }
  .gallery-card-04 img { object-position: 50% 56%; }
  .gallery-card-05 img { object-position: 52% 50%; }
  .gallery-card-06 img { object-position: 50% 58%; }
  .gallery-card-07 img { object-position: 50% 52%; }
  .gallery-caption {
    left: 15px;
    right: 15px;
    bottom: 15px;
    gap: 5px;
    padding: 0;
  }
  .gallery-caption span {
    font-size: 16px;
  }
  .gallery-caption small {
    display: block;
    max-width: 32rem;
    color: rgba(255, 250, 244, 0.78);
    font-size: 11px;
    line-height: 1.38;
  }
  .gallery-card-02,
  .gallery-card-05 {
    margin-top: 8px;
  }
  .gallery-card-04,
  .gallery-card-07 {
    margin-top: 2px;
  }
}

.about-hero {
  padding: 156px 0 92px;
  background: #f2ece3;
}
.about-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 380px);
  gap: clamp(42px, 7vw, 92px);
  align-items: end;
}
.about-hero-copy h1 {
  max-width: 930px;
  margin-bottom: 22px;
  font-size: clamp(48px, 6.1vw, 74px);
  line-height: 1.05;
}
.about-hero-copy p:not(.eyebrow) {
  max-width: 720px;
  color: #344960;
  font-size: 19px;
  line-height: 1.58;
}
.about-hero-panel {
  padding: 24px;
  border: 1px solid rgba(18, 53, 95, 0.12);
  border-radius: 18px;
  background: rgba(255, 250, 244, 0.62);
}
.about-hero-panel p {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.5;
}
.about-proof-row {
  display: grid;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(18, 53, 95, 0.12);
}
.about-proof-row span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(18, 53, 95, 0.78);
  font-size: 14px;
  font-weight: 700;
}
.about-proof-row span::before {
  content: "";
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}
.about-story-section {
  padding: clamp(76px, 9vw, 118px) 0 clamp(78px, 9vw, 112px);
}
.about-story {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 1fr);
  gap: clamp(44px, 7vw, 86px);
  align-items: center;
}
.about-story-copy h2 {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: clamp(36px, 4.6vw, 58px);
  line-height: 1.05;
}
.about-story-copy p {
  max-width: 660px;
  color: rgba(23, 52, 85, 0.78);
  font-size: 17px;
  line-height: 1.64;
}
.about-note {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(18, 53, 95, 0.14);
}
.about-note span {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
}
.about-note p {
  max-width: 560px;
  margin: 0;
  color: var(--navy);
  font-size: 23px;
  line-height: 1.32;
  font-weight: 600;
}
.about-story-media {
  margin: 0;
}
.about-story-media .rounded-image {
  aspect-ratio: 1.18;
}
.about-story-media figcaption {
  max-width: 430px;
  margin-top: 14px;
  color: rgba(23, 52, 85, 0.68);
  font-size: 13px;
  line-height: 1.45;
}
.about-difference {
  margin-top: clamp(58px, 7vw, 86px);
}
.about-difference .section-head {
  max-width: 760px;
  margin-bottom: 24px;
}
.about-difference .section-head h2 {
  max-width: 680px;
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
}
.about-difference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.about-difference-grid article {
  display: grid;
  align-content: start;
  min-height: 230px;
  padding: 28px;
  border: 1px solid rgba(18, 53, 95, 0.1);
  border-radius: 18px;
  background: rgba(255, 250, 244, 0.72);
}
.about-difference-grid h3 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.16;
}
.about-difference-grid p {
  margin: 0;
  color: rgba(23, 52, 85, 0.74);
  line-height: 1.58;
}
.about-development {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
  margin-top: clamp(42px, 6vw, 72px);
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(18, 53, 95, 0.1);
  border-radius: 22px;
  background: rgba(255, 250, 244, 0.68);
}
.about-development h2 {
  max-width: 420px;
  margin-bottom: 16px;
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.08;
}
.about-development p {
  margin: 0;
  color: rgba(23, 52, 85, 0.78);
  font-size: 16px;
  line-height: 1.64;
}
.about-development-note {
  margin-top: 16px !important;
  padding-top: 16px;
  border-top: 1px solid rgba(18, 53, 95, 0.1);
  color: var(--navy) !important;
  font-weight: 650;
}
.about-values {
  margin-top: clamp(58px, 7vw, 86px);
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.about-values article {
  display: grid;
  align-content: start;
  min-height: 244px;
  padding: 28px 28px 30px;
  border: 1px solid rgba(18, 53, 95, 0.1);
  border-radius: 18px;
  background: rgba(255, 250, 244, 0.72);
}
.about-values article span {
  width: max-content;
  margin-bottom: 28px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(163, 38, 56, 0.55);
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}
.about-values h3 {
  margin-bottom: 14px;
  font-size: 25px;
}
.about-values p {
  color: rgba(23, 52, 85, 0.74);
  line-height: 1.55;
}
.about-expect-section {
  padding: clamp(76px, 9vw, 112px) 0;
  color: #fffaf4;
  background: var(--navy-deep);
}
.about-expect {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(42px, 7vw, 84px);
  align-items: start;
}
.about-expect .eyebrow {
  color: rgba(255, 250, 244, 0.76);
}
.about-expect h2,
.about-expect h3 {
  color: #fffaf4;
}
.about-expect h2 {
  max-width: 540px;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.07;
}
.about-process-link {
  display: inline-flex;
  width: max-content;
  margin-top: 22px;
  color: #fffaf4;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 250, 244, 0.42);
}
.about-process-link:hover,
.about-process-link:focus-visible {
  color: #fffaf4;
  border-color: var(--red);
}
.about-expect-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 250, 244, 0.18);
}
.about-expect-list article {
  display: grid;
  grid-template-columns: minmax(170px, 0.7fr) minmax(0, 1fr);
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 250, 244, 0.18);
}
.about-expect-list h3 {
  font-size: 22px;
  line-height: 1.18;
}
.about-expect-list p {
  margin: 0;
  color: rgba(255, 250, 244, 0.78);
  line-height: 1.6;
}
.about-cta-section {
  padding: clamp(72px, 8vw, 104px) 0;
  background: var(--warm);
}
.about-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: clamp(30px, 4vw, 46px);
  border-radius: 22px;
  color: #fffaf4;
  background: var(--navy-deep);
}
.about-cta .eyebrow,
.about-cta h2,
.about-cta p {
  color: #fffaf4;
}
.about-cta .eyebrow {
  margin-bottom: 14px;
  color: rgba(255, 250, 244, 0.76);
}
.about-cta h2 {
  max-width: 720px;
  margin-bottom: 14px;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
}
.about-cta p {
  max-width: 680px;
  color: rgba(255, 250, 244, 0.82);
}
.about-cta .btn {
  flex: 0 0 auto;
}
.filter-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.filter-tabs button {
  border: 1px solid rgba(18, 53, 95, 0.18);
  border-radius: 999px;
  padding: 12px 18px;
  background: #fffaf4;
  color: var(--navy);
  font-weight: 600;
  cursor: pointer;
}
.filter-tabs button.active { background: var(--red); color: #fff; border-color: var(--red); }
.homes-selector-section {
  min-height: 100svh;
  padding: 0;
  background: var(--cream);
  overflow: hidden;
}
.homes-selector {
  --selector-dot-angle: -74deg;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 50vw) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  width: 100%;
  height: 100svh;
  min-height: 640px;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}
.homes-selector-media {
  position: relative;
  min-height: 640px;
  height: 100%;
  overflow: hidden;
  border-radius: 0;
  background: var(--navy-deep);
  box-shadow: none;
}
.homes-selector-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 31, 61, 0.46);
  pointer-events: none;
}
.homes-selector-media img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  aspect-ratio: auto;
  object-fit: cover;
  transform: scale(1);
  opacity: 1;
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}
.homes-selector-media.is-changing img {
  opacity: 0;
  transform: translateX(14px) scale(1.015);
}
.homes-selector-intro {
  position: absolute;
  z-index: 2;
  left: clamp(28px, 4vw, 54px);
  right: clamp(24px, 4vw, 48px);
  bottom: clamp(120px, 15vh, 144px);
  max-width: 355px;
  color: var(--white);
}
.keep-together {
  white-space: nowrap;
}
.homes-selector-intro .eyebrow {
  color: rgba(255, 250, 244, 0.78);
  margin-bottom: 8px;
  font-size: 10px;
  letter-spacing: 0.095em;
}
.homes-selector-intro h1 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: clamp(20px, 1.78vw, 26px);
  line-height: 1.02;
  max-width: 355px;
}
.homes-selector-intro p:not(.eyebrow) {
  max-width: 318px;
  margin-top: 0;
  color: rgba(255, 250, 244, 0.86);
  font-size: 12px;
  line-height: 1.38;
}
.selector-image-caption {
  position: absolute;
  z-index: 2;
  left: clamp(20px, 3.2vw, 34px);
  right: clamp(20px, 3.2vw, 34px);
  bottom: 22px;
  display: grid;
  gap: 2px;
  width: min(292px, calc(100% - 40px));
  padding: 9px 11px;
  border: 1px solid rgba(255, 250, 244, 0.26);
  border-radius: 13px;
  color: #fffaf4;
  background: rgba(7, 31, 61, 0.56);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.selector-image-caption span {
  color: rgba(255, 250, 244, 0.72);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.selector-image-caption strong {
  font-size: 16px;
  line-height: 1.05;
}
.selector-image-caption small {
  color: rgba(255, 250, 244, 0.82);
  font-size: 10.5px;
  font-weight: 700;
}
.selector-orbit {
  display: none;
}
.selector-orbit::before,
.selector-orbit::after {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(18, 53, 95, 0.04);
  border-radius: 50%;
}
.selector-orbit::after {
  inset: auto;
  top: 50%;
  left: 50%;
  width: 62px;
  height: 62px;
  border-color: rgba(163, 38, 56, 0.07);
  transform: translate(-50%, -50%);
}
.selector-orbit-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border: 2px solid rgba(255, 250, 244, 0.82);
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 1px rgba(163, 38, 56, 0.22);
  transform: rotate(var(--selector-dot-angle)) translateX(75px) rotate(calc(var(--selector-dot-angle) * -1));
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}
.homes-selector-panel {
  position: relative;
  z-index: 3;
  min-width: 0;
  min-height: 640px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(120px, 15vh, 136px) clamp(32px, 4vw, 58px) clamp(34px, 4.4vh, 46px) clamp(48px, 5vw, 78px);
  background: rgba(255, 250, 244, 0.96);
}
.selector-panel-head {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  align-items: start;
  margin-bottom: 14px;
}
.selector-panel-head .eyebrow {
  margin-bottom: 8px;
  font-size: 10px;
  letter-spacing: 0.1em;
}
.selector-panel-head h2 {
  max-width: 330px;
  font-size: clamp(21px, 1.65vw, 27px);
  line-height: 1.12;
}
.selector-panel-head p:last-child {
  align-self: flex-start;
  margin: 0;
  padding: 5px 8px;
  border: 1px solid rgba(18, 53, 95, 0.12);
  border-radius: 999px;
  color: rgba(18, 53, 95, 0.58);
  background: rgba(255, 250, 244, 0.58);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}
.selector-filters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin-bottom: 14px;
}
.selector-filters button {
  width: 100%;
  border: 1px solid rgba(18, 53, 95, 0.16);
  border-radius: 999px;
  padding: 7px 8px;
  color: var(--navy);
  background: rgba(255, 250, 244, 0.76);
  font: inherit;
  font-size: 10.5px;
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
  cursor: pointer;
  transition:
    color 240ms ease,
    background 240ms ease,
    border-color 240ms ease,
    transform 240ms ease;
}
.selector-filters button:hover {
  transform: translateY(-1px);
  border-color: rgba(163, 38, 56, 0.28);
}
.selector-filters button.active {
  border-color: var(--red);
  color: #fffaf4;
  background: var(--red);
}
.selector-list {
  display: grid;
  gap: 6px;
}
.selector-home {
  position: relative;
  display: grid;
  gap: 3px;
  width: 100%;
  padding: 7px 12px 7px 24px;
  border: 0;
  border-radius: 12px;
  color: rgba(18, 53, 95, 0.82);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition:
    color 360ms ease,
    background 360ms ease,
    opacity 360ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}
.selector-home::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 9px;
  width: 2px;
  height: auto;
  border-radius: 999px;
  background: var(--red);
  opacity: 0;
  transform: scaleY(0.44);
  transition:
    opacity 300ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}
.selector-home:hover,
.selector-home:focus-visible {
  color: var(--navy);
  background: rgba(255, 250, 244, 0.54);
  transform: translateX(4px);
}
.selector-home:focus-visible {
  outline: 1px solid rgba(163, 38, 56, 0.28);
  outline-offset: 2px;
}
.selector-home.active {
  min-height: 54px;
  padding: 10px 14px 10px 26px;
  color: var(--navy);
  background: rgba(255, 250, 244, 0.82);
  box-shadow: 0 7px 18px rgba(18, 53, 95, 0.05);
}
.selector-home.active::before {
  opacity: 1;
  transform: scaleY(1);
}
.selector-home span {
  font-size: clamp(16px, 1.22vw, 19px);
  font-weight: 600;
  line-height: 1.08;
}
.selector-home small {
  color: currentColor;
  font-size: clamp(11.5px, 0.82vw, 12.5px);
  font-weight: 500;
  line-height: 1.22;
  opacity: 0.74;
}
.selector-home.active small {
  opacity: 0.8;
}
.selector-home[hidden] {
  display: none;
}
.selector-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: clamp(18px, 3.2vh, 28px);
  padding-top: 14px;
  border-top: 1px solid rgba(18, 53, 95, 0.08);
}
.selector-arrows {
  display: flex;
  gap: 9px;
}
.selector-arrows .carousel-arrow {
  width: 34px;
  height: 34px;
  border-width: 1.5px;
}
.selector-actions .btn {
  min-height: 0;
  padding: 10px 15px;
  font-size: 12.5px;
}
.process-story {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 10vw, 132px) 0 clamp(90px, 12vw, 150px);
  background: var(--cream);
}
.process-story-shell {
  display: grid;
  gap: clamp(58px, 8vw, 96px);
}
.process-story-intro {
  display: grid;
  gap: 18px;
  max-width: 790px;
}
.process-story-intro .eyebrow {
  margin-bottom: 0;
}
.process-story-intro h2 {
  max-width: 760px;
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1.03;
}
.process-story-intro p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(23, 52, 85, 0.74);
  font-size: 18px;
}
.process-trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.process-trust-points span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(18, 53, 95, 0.1);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 250, 244, 0.64);
  font-size: 13px;
  font-weight: 700;
}
.process-story-rows {
  display: grid;
  gap: clamp(58px, 9vw, 112px);
}
.process-story-row {
  --image-overscan: 120px;
  --parallax-shift: 0px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(460px, 1.18fr);
  gap: clamp(34px, 5.6vw, 78px);
  align-items: center;
  color: rgba(18, 53, 95, 0.54);
  opacity: 0.72;
  transition:
    color 420ms ease,
    opacity 420ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}
.process-story-row--reverse {
  grid-template-columns: minmax(460px, 1.18fr) minmax(320px, 0.82fr);
}
.process-story-row--reverse .process-story-copy {
  grid-column: 2;
}
.process-story-row--reverse .process-story-visual {
  grid-column: 1;
  grid-row: 1;
}
.process-story-copy {
  position: relative;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  max-width: 560px;
  padding-left: 0;
}
.process-story-copy::before {
  display: none;
}
.process-story-number {
  color: currentColor;
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 600;
  line-height: 0.88;
}
.process-story-copy h3 {
  margin-bottom: 18px;
  color: currentColor;
  font-size: clamp(30px, 3.7vw, 50px);
  line-height: 1.04;
}
.process-story-copy p {
  max-width: 450px;
  margin: 0;
  color: rgba(23, 52, 85, 0.58);
  font-size: 17px;
  line-height: 1.58;
  transition: color 420ms ease;
}
.process-story-visual {
  min-width: 0;
}
.process-story-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  background: var(--navy-deep);
  box-shadow: 0 24px 64px rgba(18, 53, 95, 0.14);
  isolation: isolate;
  transition:
    box-shadow 460ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}
.process-story-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 31, 61, 0.1);
  pointer-events: none;
}
.process-story-image {
  position: absolute;
  top: calc(-1 * var(--image-overscan, 120px));
  left: 0;
  width: 100%;
  height: calc(100% + (var(--image-overscan, 120px) * 2));
  max-width: none;
  object-fit: cover;
  transform: translateY(var(--parallax-shift, 0px));
  will-change: transform;
}
.process-story-row.is-active {
  color: var(--navy);
  opacity: 1;
}
.process-story-row.is-active .process-story-copy::before {
  display: none;
}
.process-story-row.is-active .process-story-number {
  color: var(--red);
}
.process-story-row.is-active .process-story-copy p {
  color: rgba(23, 52, 85, 0.82);
}
.process-story-row.is-active .process-story-frame {
  box-shadow: 0 30px 76px rgba(18, 53, 95, 0.18);
  transform: translateY(-4px);
}
.process-final-cta {
  padding-top: 0;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 54px;
}
.values-grid article, .contact-card {
  padding: 30px;
  border-radius: 22px;
  background: #fffaf4;
}
.values-grid h3 { margin-bottom: 16px; }
.masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 22px;
}
.masonry img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.masonry .tall { grid-row: span 2; }
.masonry .wide { grid-column: span 2; }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(290px, 0.72fr);
  gap: 28px;
  align-items: start;
}
.contact-hero {
  padding-bottom: 46px;
}
.contact-hero .narrow {
  max-width: 760px;
}
.contact-hero h1 {
  max-width: 720px;
}
.contact-intake-section {
  padding-top: 34px;
}
.consultation-form {
  --step-height: auto;
  position: relative;
  padding: clamp(22px, 3vw, 28px);
  border-radius: 20px;
  background: #fffaf4;
  box-shadow: 0 14px 34px rgba(18, 53, 95, 0.07);
}
.consultation-form .form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
  white-space: nowrap !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.form-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(18, 53, 95, 0.1);
}
.progress-dots {
  position: relative;
  display: flex;
  align-items: center;
  order: 2;
  gap: 18px;
  padding: 0;
}
.progress-pill {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 0;
  width: 54px;
  height: 1px;
  border-radius: 0;
  background: rgba(18, 53, 95, 0.16);
  transform: translateY(-50%);
  transition: background 260ms ease;
}
.consultation-form[data-step="2"] .progress-pill,
.consultation-form[data-step="3"] .progress-pill {
  width: 54px;
}
.progress-dot {
  position: relative;
  z-index: 1;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(18, 53, 95, 0.34);
  background: #fffaf4;
  box-shadow: 0 0 0 3px #fffaf4;
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}
.progress-dot.is-complete {
  border-color: var(--navy);
  background: var(--navy);
}
.progress-dot.is-active {
  border-color: var(--red);
  background: var(--red);
  transform: scale(1.08);
}
.progress-label {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-align: left;
  overflow-wrap: anywhere;
}
.progress-label span {
  color: var(--red);
  font-weight: 800;
}
.step-viewport {
  position: relative;
  min-height: var(--step-height);
  transition: min-height 360ms ease;
}
.form-step {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  transform: translateY(10px);
}
.form-step.is-active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: stepIn 360ms ease both;
}
.form-step legend {
  padding: 0;
  color: var(--navy);
  font-size: clamp(25px, 2.5vw, 30px);
  line-height: 1.06;
  font-weight: 600;
  overflow-wrap: anywhere;
}
.form-step legend .eyebrow {
  display: block;
  margin-bottom: 7px;
  font-size: 12px;
}
.step-intro {
  max-width: 620px;
  margin: 9px 0 17px;
  color: #405167;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
}
.form-side-note {
  margin: 12px 0 0;
  color: rgba(23, 52, 85, 0.62);
  font-size: 12.5px;
  line-height: 1.45;
  font-weight: 600;
}
.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.option-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 5px;
  min-height: 104px;
  padding: 15px 38px 15px 16px;
  border: 1px solid rgba(18,53,95,0.16);
  border-radius: 14px;
  color: var(--navy);
  background: #f8f3eb;
  cursor: pointer;
  overflow-wrap: anywhere;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}
.option-card::after {
  content: "";
  position: absolute;
  top: 15px;
  right: 15px;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(18, 53, 95, 0.3);
  border-radius: 50%;
  background: #fffaf4;
  box-shadow: inset 0 0 0 3px #fffaf4;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}
.option-card:hover {
  transform: translateY(-1px);
  border-color: rgba(163,38,56,0.42);
  background: #fff7ee;
  box-shadow: 0 8px 20px rgba(18,53,95,0.06);
}
.option-card:has(input:focus-visible) {
  border-color: var(--red);
  box-shadow:
    0 0 0 3px rgba(163, 38, 56, 0.14),
    0 8px 18px rgba(18, 53, 95, 0.07);
}
.option-card input {
  position: absolute;
  opacity: 0;
  inset: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}
.option-card:has(input:checked) {
  color: var(--navy-deep);
  border-color: rgba(163, 38, 56, 0.72);
  background: #fff4eb;
  box-shadow:
    inset 0 0 0 1px rgba(163, 38, 56, 0.16),
    0 10px 24px rgba(18, 53, 95, 0.07);
}
.option-card:has(input:checked)::after {
  border-color: var(--red);
  background: var(--red);
  box-shadow:
    inset 0 0 0 3px #fffaf4,
    0 0 0 3px rgba(163, 38, 56, 0.1);
}
.option-card:has(input.is-invalid) {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(163, 38, 56, 0.12);
}
.option-card span {
  color: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.16;
}
.option-card small {
  color: #56677a;
  font-size: 12px;
  line-height: 1.36;
  font-weight: 500;
}
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}
.field-grid label {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  min-width: 0;
  overflow-wrap: anywhere;
}
.field-grid .full { grid-column: 1 / -1; }
.field-helper {
  display: block;
  margin-top: -2px;
  color: #667386;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 500;
}
[data-lot-ownership-field][hidden] {
  display: none;
}
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(18,53,95,0.16);
  border-radius: 12px;
  padding: 12px 13px;
  font: inherit;
  font-size: 14px;
  color: var(--ink);
  background: #f8f3eb;
}
input::placeholder,
textarea::placeholder {
  color: #526277;
  opacity: 1;
}
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(163, 38, 56, 0.2);
  outline-offset: 2px;
  border-color: var(--red);
}
input.is-invalid, select.is-invalid, textarea.is-invalid {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(163, 38, 56, 0.12);
}
textarea { resize: vertical; }
.field-error {
  min-height: 18px;
  margin: 10px 0 0;
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
  overflow-wrap: anywhere;
}
.wizard-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}
.step-viewport[hidden],
.wizard-actions[hidden],
.wizard-success[hidden] {
  display: none;
}
.contact-page .step-viewport[hidden],
.contact-page .wizard-actions[hidden],
.contact-page .wizard-success[hidden] {
  display: none;
}
.wizard-actions .btn {
  min-height: 46px;
  gap: 9px;
  padding: 9px 14px 9px 17px;
  font-size: 14px;
  transition:
    flex-basis 360ms cubic-bezier(.22, 1, .36, 1),
    opacity 240ms ease,
    color 650ms cubic-bezier(0.19, 1, 0.22, 1),
    border-color 650ms cubic-bezier(0.19, 1, 0.22, 1),
    transform 300ms ease;
}
.wizard-actions .circle-arrow {
  width: 26px;
  height: 26px;
  margin-right: -6px;
}
.wizard-actions .circle-arrow::before {
  width: 12px;
  height: 12px;
}
.wizard-actions .btn[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}
.wizard-next {
  --btn-bg: var(--red);
  --btn-text: #fff;
  --btn-border: transparent;
  --btn-hover-fill: #fffaf4;
  --btn-hover-text: var(--red);
  --btn-arrow-bg: #fffaf4;
  --btn-arrow-color: var(--red);
  --btn-arrow-hover-bg: var(--red);
  --btn-arrow-hover-color: #fffaf4;
  flex: 0 0 auto;
  min-width: 158px;
}
.wizard-back {
  --btn-bg: #f2eadf;
  --btn-text: var(--navy);
  --btn-border: rgba(18,53,95,0.12);
  --btn-hover-fill: var(--navy);
  --btn-hover-text: #fffaf4;
  flex: 0 0 auto;
  min-width: 86px;
}
.wizard-actions.is-start .wizard-back {
  flex-basis: 0;
  min-width: 0;
  width: 0;
  padding-inline: 0;
  opacity: 0;
  overflow: hidden;
  transform: scale(0.92);
  pointer-events: none;
}
.wizard-success {
  padding: 32px 20px 22px;
  text-align: center;
}
.success-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-size: 28px;
  font-weight: 600;
}
.wizard-success h2 {
  max-width: 650px;
  margin: 0 auto 12px;
  font-size: 34px;
}
.wizard-success p {
  max-width: 580px;
  margin: 0 auto;
  color: #405167;
}
.success-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.success-primary {
  min-height: 46px;
  padding: 9px 14px 9px 18px;
}
.success-secondary {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.success-secondary:hover,
.success-secondary:focus-visible {
  color: var(--red);
}
.button-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@keyframes stepIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.contact-card {
  padding: 24px;
  border: 1px solid rgba(18, 53, 95, 0.08);
  border-radius: 18px;
  background: rgba(255, 250, 244, 0.74);
  box-shadow: 0 10px 24px rgba(18, 53, 95, 0.045);
}
.contact-card h2 {
  max-width: 360px;
  margin-bottom: 16px;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.08;
}
.contact-card > p {
  max-width: 390px;
  color: #53657a;
  font-size: 14px;
  line-height: 1.5;
}
.contact-list { margin: 18px 0; }
.contact-trust-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(18, 53, 95, 0.1);
  list-style: none;
}
.contact-trust-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(18, 53, 95, 0.78);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}
.contact-trust-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--red);
  transform: translateY(-50%);
}
.contact-card-line {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 9px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 500;
}
.contact-card-line a {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  color: inherit;
  font: inherit;
  text-decoration: none;
}
.contact-card-line a:hover,
.contact-card-line a:focus-visible {
  color: var(--red);
}
.contact-card-line svg {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-card-line span {
  min-width: 0;
  overflow-wrap: anywhere;
}
.contact-card img {
  width: 100%;
  max-height: 390px;
  border-radius: 14px;
  aspect-ratio: 1.72;
  object-fit: cover;
  object-position: center 46%;
  opacity: 0.92;
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 100px;
  }
  h1 { font-size: 44px; }
  h2 { font-size: 34px; }
  .shell, .site-header { width: min(100% - 34px, 1180px); }
  .site-header {
    top: 18px;
    top: max(18px, env(safe-area-inset-top));
    left: 50%;
    transform: translate(-50%, 0);
    justify-content: space-between;
  }
  .site-header.is-floating .brand {
    margin-left: 0;
  }
  .brand {
    display: inline-flex;
    align-items: center;
    height: 46px;
    line-height: 0;
  }
  .brand-logo { width: 78px; }
  .site-header.inner-header .brand-logo {
    filter: none;
  }
  .homes-overlay-header:not(.is-floating) .brand-logo,
  .process-hero-header:not(.is-floating) .brand-logo,
  .lot-hero-header:not(.is-floating) .brand-logo {
    filter: brightness(0) invert(1) drop-shadow(0 4px 14px rgba(7, 31, 61, 0.28));
  }
  .menu-toggle {
    flex: 0 0 auto;
    justify-self: end;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: var(--red);
  }
  .menu-toggle span { width: 21px; height: 2px; margin: 0 auto; background: #fff; }
  .header-cta { display: none; }
  .nav-pill {
    position: absolute;
    top: 60px;
    right: max(0px, env(safe-area-inset-right));
    left: auto;
    transform: none;
    display: none;
    width: min(280px, calc(100vw - 34px));
    gap: 10px;
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    border-radius: 22px;
    background: rgba(255,250,244,0.96);
    border-color: rgba(18,53,95,0.08);
  }
  .nav-pill.open { display: flex; }
  .nav-pill a,
  .inner-header .nav-pill a,
  .header-overlay .nav-pill a:not(.nav-cta),
  .process-hero-header:not(.is-floating) .nav-pill a:not(.nav-cta) {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    background: rgba(18,53,95,0.08);
  }
  .nav-pill a:hover,
  .nav-pill a:focus-visible,
  .inner-header .nav-pill a:hover,
  .header-overlay .nav-pill a:not(.nav-cta):hover,
  .header-overlay .nav-pill a:not(.nav-cta):focus-visible {
    color: var(--navy);
    background: rgba(18,53,95,0.13);
  }
  .nav-pill .nav-mobile-cta { display: inline-flex; }
  .nav-pill .nav-cta,
  .header-overlay .nav-pill .nav-cta {
    color: #fffaf4;
    background: var(--red);
  }
  .hero { height: auto; min-height: 700px; align-items: end; }
  .hero-content { min-height: 700px; padding: 150px 0 64px; }
  .glass-panel { width: min(700px, 100%); }
  .glass-panel h1 { max-width: 680px; font-size: 54px; }
  .glass-panel p { max-width: 610px; font-size: 17px; }
  .feature-tags { width: min(100%, 650px); margin: 18px 0 28px; }
  .split-layout, .contact-grid { grid-template-columns: 1fr; gap: 38px; }
  .contact-grid {
    max-width: 780px;
  }
  .contact-intake-section {
    padding-top: 28px;
  }
  .gallery-hero {
    padding: 78px 0 12px;
  }
  .gallery-track {
    min-height: clamp(540px, 72vh, 700px);
    border-radius: 0;
  }
  .gallery-cta {
    align-items: flex-start;
    flex-direction: column;
  }
  .about-hero {
    padding: 132px 0 78px;
  }
  .about-hero-shell,
  .about-story,
  .about-expect {
    grid-template-columns: 1fr;
  }
  .about-hero-shell {
    gap: 32px;
  }
  .about-hero-panel {
    max-width: 620px;
  }
  .about-story {
    gap: 34px;
  }
  .about-difference-grid,
  .about-development {
    grid-template-columns: 1fr;
  }
  .about-difference-grid {
    max-width: 760px;
  }
  .about-story-copy h2,
  .about-story-copy p {
    max-width: 720px;
  }
  .about-story-media .rounded-image {
    aspect-ratio: 1.55;
  }
  .about-expect-list article {
    grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1fr);
  }
  .about-cta {
    align-items: flex-start;
    flex-direction: column;
  }
  .about-preview .split-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .about-preview h2,
  .about-preview p {
    max-width: 680px;
  }
  .why-grid,
  .lot-preview-panel,
  .gallery-preview-grid,
  .lot-page-intro,
  .lot-smart-grid,
  .lot-gallery-grid {
    grid-template-columns: 1fr;
  }
  .lot-checklist,
  .lot-path-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lot-smart-grid {
    gap: 30px;
  }
  .lot-gallery-grid {
    align-items: start;
  }
  .why-card:nth-child(2) {
    margin-top: 0;
  }
  .lot-preview-panel {
    padding: 28px;
  }
  .lot-preview-media img {
    aspect-ratio: 1.45;
  }
  .gallery-preview-images {
    grid-template-rows: 220px 220px;
  }
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .homes-selector-section {
    min-height: auto;
    padding: 0;
  }
  .homes-selector {
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    height: auto;
    min-height: 0;
    border-radius: 0;
  }
  .homes-selector-media,
  .homes-selector-media img {
    min-height: clamp(460px, 58svh, 560px);
    height: auto;
  }
  .homes-selector-intro {
    bottom: 124px;
    max-width: 390px;
  }
  .homes-selector-intro h1 {
    font-size: clamp(24px, 3.6vw, 32px);
    max-width: 390px;
  }
  .homes-selector-intro p:not(.eyebrow) {
    max-width: 360px;
    font-size: 13.5px;
  }
  .selector-orbit {
    top: 510px;
    left: auto;
    right: 18px;
    width: 130px;
    height: 130px;
    opacity: 0.2;
  }
  .selector-orbit-dot {
    transform: rotate(var(--selector-dot-angle)) translateX(65px) rotate(calc(var(--selector-dot-angle) * -1));
  }
  .selector-panel-head h2 {
    max-width: 560px;
  }
  .homes-selector-panel {
    min-height: auto;
    height: auto;
    padding: 38px clamp(28px, 6vw, 56px) 44px;
  }
  .home-grid { grid-template-columns: repeat(2, 1fr); }
  .home-card { flex-basis: calc((100% - 30px) / 2); }
  .process-cards { gap: 12px; height: 350px; min-height: 350px; }
  .process-card { padding-inline: 14px; }
  .contact-grid { max-width: 760px; }
  .testimonial-content { grid-template-columns: 1fr; gap: 34px; }
  .cta-panel { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .process-story {
    padding: 72px 0 82px;
  }
  .process-story-shell {
    gap: 54px;
  }
  .process-story-intro p:not(.eyebrow) {
    font-size: 16px;
  }
  .process-story-rows {
    gap: 54px;
  }
  .process-story-row,
  .process-story-row--reverse {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 760px;
    color: var(--navy);
    opacity: 1;
  }
  .process-story-row--reverse .process-story-copy,
  .process-story-row--reverse .process-story-visual {
    grid-column: auto;
    grid-row: auto;
  }
  .process-story-copy {
    max-width: 680px;
  }
  .process-story-image {
    top: 0;
    height: 100%;
    transform: none;
    will-change: auto;
  }
  .values-grid, .masonry { grid-template-columns: 1fr 1fr; }
  .masonry .wide { grid-column: span 1; }
}

@media (max-width: 768px) {
  .why-grid {
    gap: 10px;
  }
  .why-card {
    min-height: 0;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 2px 14px;
    justify-content: start;
    padding: 16px;
    border-radius: 16px;
    box-shadow: none;
  }
  .why-card span {
    grid-row: 1 / span 2;
    align-self: start;
    width: 30px;
    height: 30px;
    margin-bottom: 0;
    padding-bottom: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(163, 38, 56, 0.28);
    background: rgba(163, 38, 56, 0.16);
    color: var(--red);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
  }
  .why-card span::after {
    content: none;
  }
  .why-card h3 {
    max-width: none;
    margin: 0 0 6px;
    font-size: 18px;
    line-height: 1.18;
  }
  .why-card p {
    max-width: none;
    font-size: 13.5px;
    line-height: 1.46;
  }
  .gallery-labels {
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    margin: 18px 0 22px;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .gallery-labels::-webkit-scrollbar {
    display: none;
  }
  .gallery-labels span {
    flex: 0 0 auto;
    padding: 7px 10px;
    font-size: 12px;
  }
  .gallery-labels span:nth-child(n+5) {
    display: none;
  }
  .proof-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .proof-card {
    position: relative;
    min-height: 0;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 4px 14px;
    padding: 18px 0;
    border-radius: 0;
    border-top: 1px solid rgba(18, 53, 95, 0.12);
    background: transparent;
    box-shadow: none;
  }
  .proof-card:last-child {
    border-bottom: 1px solid rgba(18, 53, 95, 0.12);
  }
  .proof-card::before {
    grid-row: 1 / span 3;
    color: var(--red);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
  }
  .proof-card:nth-child(1)::before { content: "01"; }
  .proof-card:nth-child(2)::before { content: "02"; }
  .proof-card:nth-child(3)::before { content: "03"; }
  .proof-card:nth-child(4)::before { content: "04"; }
  .proof-card span {
    width: auto;
    margin: 0 0 5px;
    padding: 0;
    border: 0;
    font-size: 11.5px;
    line-height: 1.3;
  }
  .proof-card h3 {
    max-width: none;
    margin-bottom: 8px;
    font-size: 19px;
    line-height: 1.16;
  }
  .proof-card p {
    font-size: 13.5px;
    line-height: 1.5;
  }
  .process-band {
    padding: 38px 0 40px;
  }
  .process-cards {
    flex-direction: column;
    height: auto;
    min-height: 0;
    gap: 0;
    margin-bottom: 24px;
  }
  .process-card,
  .process-card.active {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    min-height: 0;
    grid-template-columns: 42px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 4px 12px;
    padding: 15px 0;
    border: 0;
    border-top: 1px solid rgba(255, 250, 244, 0.16);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #fffaf4;
    align-self: stretch;
  }
  .process-card:last-child {
    border-bottom: 1px solid rgba(255, 250, 244, 0.16);
  }
  .process-card::after {
    content: none;
  }
  .process-card img {
    display: none;
  }
  .card-description-wrap {
    grid-column: 2;
    min-height: 0;
    overflow: visible;
  }
  .process-card:not(.active) .card-icon,
  .process-card:not(.active) h3 {
    color: #fffaf4;
  }
  .process-card:not(.active) img,
  .process-card:not(.active) .card-description-wrap p {
    opacity: 1;
    transform: none;
    visibility: visible;
    pointer-events: auto;
  }
  .process-card p {
    width: auto;
    margin: 0;
    color: #fffaf4;
    font-size: 13.5px;
    line-height: 1.46;
  }
  .process-card.active .card-description-wrap p,
  .process-card:not(.active) .card-description-wrap p {
    color: #fffaf4;
  }
  .process-card.active {
    transform: none;
  }
  .process-card:hover,
  .process-card:focus-within {
    transform: none;
  }
  .process-card h3 {
    grid-column: 2;
    margin: 0;
    color: #fffaf4;
    font-size: 21px;
    line-height: 1.12;
  }
  .card-icon {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: start;
    margin: 0;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 250, 244, 0.34);
    border-radius: 999px;
    color: #fffaf4;
    font-size: 15px;
  }
  .process-content > .btn {
    width: 100%;
    justify-content: center;
  }
  .short-about {
    padding-block: 40px;
  }
  .about-preview .split-layout {
    gap: 18px;
  }
  .about-preview .rounded-image {
    display: none;
  }
  .about-preview .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 620px) {
  h1 { font-size: 36px; }
  h2 { font-size: 30px; }
  p { font-size: 15px; }
  .shell,
  .site-header {
    width: min(100% - 48px, 1180px);
  }
  .site-header {
    top: 14px;
    top: max(14px, env(safe-area-inset-top));
    min-height: 58px;
    padding: 8px 0;
  }
  .brand-logo {
    width: 72px;
  }
  .menu-toggle {
    width: 43px;
    height: 43px;
    box-shadow: 0 10px 22px rgba(163, 38, 56, 0.22);
  }
  .menu-toggle span {
    width: 19px;
  }
  .nav-pill {
    top: 66px;
    width: min(300px, calc(100vw - 48px));
  }
  .contact-hero {
    padding: 112px 0 34px;
  }
  .contact-intake-section {
    padding-top: 22px;
  }
  .form-progress {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
  }
  .progress-dots {
    order: 0;
  }
  .consultation-form {
    padding: 20px;
    border-radius: 18px;
  }
  .form-step legend {
    font-size: 24px;
  }
  .step-intro {
    margin-bottom: 14px;
  }
  .option-card {
    min-height: 96px;
    padding: 14px 36px 14px 15px;
  }
  .wizard-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .wizard-actions.is-start .wizard-back {
    display: none;
  }
  .wizard-back,
  .wizard-next {
    width: 100%;
    flex-basis: auto;
  }
  .contact-card {
    padding: 20px;
  }
  .contact-card img {
    aspect-ratio: 1.55;
  }
  .gallery-hero {
    padding: 108px 0 26px;
  }
  .gallery-hero .eyebrow {
    margin-bottom: 6px;
    font-size: 13px;
  }
  .gallery-hero h1 {
    margin-bottom: 12px;
    font-size: clamp(27px, 7vw, 32px);
  }
  .gallery-hero p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.42;
  }
  .gallery-explorer {
    padding: 16px 0 42px;
  }
  .gallery-track {
    width: min(100% - 28px, 760px);
    max-width: none;
    margin: 0 auto;
    overflow: visible;
    min-height: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    cursor: auto;
    touch-action: auto;
    user-select: auto;
  }
  .gallery-canvas-hint {
    display: none;
  }
  .gallery-set {
    display: grid;
    grid-template-columns: 1fr;
    gap: 13px;
    width: 100%;
    transform: none !important;
    will-change: auto;
  }
  .gallery-card,
  .gallery-card-large,
  .gallery-card-tall,
  .gallery-card-wide {
    grid-column: auto;
    flex-basis: auto;
    width: 100%;
    min-height: 0;
    height: auto;
    border-radius: 18px;
  }
  .gallery-card[aria-hidden="true"] {
    display: none;
  }
  .gallery-set[aria-hidden="true"] {
    display: none;
  }
  .gallery-caption {
    left: 15px;
    right: 15px;
    bottom: 15px;
    gap: 5px;
  }
  .gallery-caption span {
    font-size: 16px;
  }
  .gallery-caption small {
    display: block;
    max-width: 31rem;
    color: rgba(255, 250, 244, 0.78);
    font-size: 11px;
    line-height: 1.38;
  }
  .gallery-cta-section {
    padding: 8px 0 56px;
  }
  .gallery-cta {
    padding: 26px 22px;
    border-radius: 18px;
  }
  .gallery-cta h2 {
    font-size: 30px;
  }
  .gallery-cta .btn {
    width: 100%;
  }
  .gallery-page .site-footer {
    padding-top: 28px;
  }
  .gallery-page .footer-grid {
    gap: 18px;
  }
  .gallery-page .footer-bottom {
    gap: 10px;
    padding-top: 14px;
  }
  .about-hero {
    padding: 118px 0 58px;
  }
  .about-hero-copy h1 {
    font-size: clamp(36px, 10.5vw, 46px);
  }
  .about-hero-copy p:not(.eyebrow) {
    font-size: 16px;
  }
  .about-hero-panel {
    padding: 20px;
    border-radius: 16px;
  }
  .about-hero-panel p {
    font-size: 15px;
  }
  .about-story-section {
    padding: 56px 0 62px;
  }
  .about-story-copy h2 {
    font-size: 32px;
  }
  .about-story-copy p {
    font-size: 15px;
  }
  .about-note {
    margin-top: 24px;
    padding-top: 20px;
  }
  .about-note p {
    font-size: 19px;
  }
  .about-story-media .rounded-image {
    aspect-ratio: 1.22;
    border-radius: 18px;
  }
  .about-values {
    margin-top: 42px;
  }
  .about-values article {
    min-height: 0;
    padding: 24px;
    border-radius: 16px;
  }
  .about-difference {
    margin-top: 42px;
  }
  .about-difference-grid article,
  .about-development {
    min-height: 0;
    padding: 22px;
    border-radius: 16px;
  }
  .about-development h2 {
    font-size: 30px;
  }
  .about-development p {
    font-size: 15px;
  }
  .about-values article span {
    margin-bottom: 18px;
  }
  .about-values h3 {
    font-size: 22px;
  }
  .about-expect-section {
    padding: 58px 0;
  }
  .about-expect h2 {
    font-size: 32px;
  }
  .about-expect-list article {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px 0;
  }
  .about-expect-list h3 {
    font-size: 20px;
  }
  .about-cta-section {
    padding: 56px 0;
  }
  .about-cta {
    padding: 26px 22px;
    border-radius: 18px;
  }
  .about-cta h2 {
    font-size: 30px;
  }
  .about-cta .btn {
    width: 100%;
  }
  .hero { min-height: clamp(620px, 94svh, 700px); }
  .hero-content {
    min-height: clamp(620px, 94svh, 700px);
    padding: 142px 0 max(46px, calc(34px + env(safe-area-inset-bottom)));
  }
  .glass-panel {
    width: min(100%, 520px);
  }
  .glass-panel h1 {
    max-width: 390px;
    font-size: clamp(38px, 10vw, 43px);
    line-height: 1.06;
  }
  .glass-panel p {
    max-width: 390px;
    font-size: 15.5px;
    line-height: 1.58;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    width: min(100%, 390px);
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 58px;
  }
  .hero-actions .btn-quiet {
    background: rgba(255, 250, 244, 0.13);
    border-color: rgba(255, 250, 244, 0.46);
  }
  .home-grid, .values-grid, .masonry, .option-grid, .field-grid { grid-template-columns: 1fr; }
  .homes-selector-section {
    padding: 0;
  }
  .homes-selector {
    width: 100%;
    height: auto;
    border-radius: 0;
  }
  .homes-selector-media,
  .homes-selector-media img {
    min-height: clamp(380px, 62svh, 480px);
    aspect-ratio: auto;
    height: auto;
  }
  .homes-selector-media {
    border-radius: 0;
  }
  .homes-selector-intro {
    left: 20px;
    right: 20px;
    bottom: 110px;
    max-width: min(320px, calc(100% - 40px));
  }
  .homes-selector-intro .eyebrow {
    margin-bottom: 8px;
    font-size: 9px;
  }
  .homes-selector-intro h1 {
    font-size: clamp(21px, 6.2vw, 28px);
    line-height: 1.05;
  }
  .homes-selector-intro p:not(.eyebrow) {
    max-width: min(292px, 100%);
    margin-top: 0;
    font-size: 12.5px;
    line-height: 1.42;
  }
  .selector-image-caption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: min(300px, calc(100% - 32px));
    padding: 12px 14px;
    border-radius: 15px;
  }
  .selector-image-caption strong {
    font-size: 18px;
  }
  .selector-orbit {
    display: none;
  }
  .selector-panel-head {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
  }
  .selector-panel-head h2 {
    font-size: 24px;
  }
  .homes-selector-panel {
    height: auto;
    padding: 28px 18px 24px;
  }
  .selector-filters {
    display: flex;
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 4px;
  }
  .selector-filters button {
    flex: 1 1 calc(50% - 6px);
    padding-inline: 12px;
  }
  .selector-list {
    gap: 6px;
  }
  .selector-home {
    padding: 10px 14px 10px 28px;
  }
  .selector-home.active {
    min-height: 58px;
    padding: 12px 14px 12px 28px;
  }
  .selector-home::before {
    left: 10px;
  }
  .selector-home span {
    font-size: 17.5px;
  }
  .selector-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 22px;
  }
  .selector-arrows {
    justify-content: space-between;
  }
  .selector-actions .btn {
    width: 100%;
  }
  .keep-together {
    white-space: normal;
  }
  .why-marvel {
    padding: 44px 0 30px;
  }
  .lot-preview,
  .lot-page-section,
  .lot-path-section,
  .lot-smart-section,
  .lot-faq-section,
  .lot-gallery-preview,
  .gallery-preview,
  .short-about {
    padding-block: 42px;
  }
  .proof-section {
    padding-block: 44px;
  }
  .home-section-intro p:not(.eyebrow),
  .lot-preview-copy p:not(.eyebrow),
  .gallery-preview-copy p:not(.eyebrow),
  .section-head p:not(.eyebrow) {
    font-size: 15.5px;
  }
  .lot-proof-list,
  .lot-checklist,
  .lot-path-steps,
  .lot-faq-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }
  .lot-page-intro {
    margin-bottom: 24px;
  }
  .lot-page-intro p:not(.eyebrow),
  .lot-smart-copy p:not(.eyebrow),
  .lot-gallery-grid p:not(.eyebrow) {
    font-size: 15.5px;
  }
  .lot-checklist article,
  .lot-path-steps article,
  .lot-faq-grid article {
    padding: 20px;
    border-radius: 16px;
  }
  .lot-path-steps article {
    min-height: 0;
  }
  .lot-smart-media img {
    aspect-ratio: 1.32;
    border-radius: 18px;
  }
  .lot-gallery-images {
    grid-template-columns: 1fr 1fr;
  }
  .lot-gallery-images img:last-child {
    margin-bottom: 0;
  }
  .lot-gallery-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .lot-preview-panel {
    width: min(100% - 34px, 1180px);
    gap: 20px;
    padding: 18px;
    border-radius: 20px;
  }
  .lot-preview-copy h2 {
    font-size: clamp(30px, 8.6vw, 36px);
    margin-bottom: 16px;
  }
  .lot-preview-copy p:not(.eyebrow) {
    line-height: 1.56;
  }
  .lot-preview .lot-proof-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
    margin: 18px 0 22px;
  }
  .lot-preview .lot-proof-list li {
    font-size: 12.5px;
    line-height: 1.35;
  }
  .lot-preview-copy .btn {
    width: 100%;
    justify-content: center;
  }
  .lot-preview-media figcaption {
    position: static;
    max-width: none;
    margin-top: 10px;
    color: rgba(18,53,95,0.72);
    background: transparent;
    backdrop-filter: none;
    padding: 0 2px;
  }
  .lot-preview-media img {
    aspect-ratio: 1.62;
  }
  .gallery-labels {
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    margin: 18px 0 22px;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .gallery-labels::-webkit-scrollbar {
    display: none;
  }
  .gallery-labels span {
    flex: 0 0 auto;
    padding: 7px 10px;
    font-size: 12px;
  }
  .gallery-labels span:nth-child(n+5) {
    display: none;
  }
  .gallery-preview-images {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 12px;
  }
  .gallery-preview-images img,
  .gallery-preview-images img:first-child {
    grid-row: auto;
    aspect-ratio: 1.42;
  }
  .why-grid {
    gap: 10px;
  }
  .why-card {
    min-height: 0;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 2px 14px;
    justify-content: start;
    padding: 16px;
    border-radius: 16px;
    box-shadow: none;
  }
  .why-card span {
    grid-row: 1 / span 2;
    align-self: start;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(163, 38, 56, 0.28);
    background: rgba(163, 38, 56, 0.16);
    color: var(--red);
    font-size: 11px;
    font-weight: 900;
  }
  .why-card h3 {
    max-width: none;
    margin: 0 0 6px;
    font-size: 18px;
    line-height: 1.18;
  }
  .why-card p {
    max-width: none;
    font-size: 13.5px;
    line-height: 1.46;
  }
  .proof-grid {
    gap: 0;
  }
  .proof-card {
    position: relative;
    min-height: 0;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 4px 14px;
    padding: 18px 0;
    border-radius: 0;
    border-top: 1px solid rgba(18, 53, 95, 0.12);
    background: transparent;
    box-shadow: none;
  }
  .proof-card:last-child {
    border-bottom: 1px solid rgba(18, 53, 95, 0.12);
  }
  .proof-card::before {
    grid-row: 1 / span 3;
    color: var(--red);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
  }
  .proof-card:nth-child(1)::before { content: "01"; }
  .proof-card:nth-child(2)::before { content: "02"; }
  .proof-card:nth-child(3)::before { content: "03"; }
  .proof-card:nth-child(4)::before { content: "04"; }
  .proof-card span {
    width: auto;
    margin: 0 0 5px;
    padding: 0;
    border: 0;
    font-size: 11.5px;
    line-height: 1.3;
  }
  .proof-card h3 {
    max-width: none;
    margin-bottom: 8px;
    font-size: 19px;
    line-height: 1.16;
  }
  .proof-card p {
    font-size: 13.5px;
    line-height: 1.5;
  }
  .home-carousel-actions { align-items: flex-start; flex-direction: column; }
  .home-carousel-viewport {
    overflow: hidden;
    width: 100%;
    margin-right: 0;
  }
  .home-card-row {
    gap: 14px;
  }
  .home-card {
    flex-basis: min(84%, 330px);
    border-radius: 16px;
  }
  .home-card img {
    aspect-ratio: 1.42;
    border-radius: 16px 16px 0 0;
  }
  .home-card div {
    padding: 16px 15px 17px;
  }
  .home-card h3 {
    margin-bottom: 7px;
  }
  .carousel-controls {
    width: auto;
    gap: 10px;
  }
  .home-carousel-actions {
    width: 100%;
    gap: 14px;
  }
  .home-carousel-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .carousel-arrow {
    width: 44px;
    height: 44px;
    background: rgba(255, 250, 244, 0.72);
    border-width: 1.5px;
  }
  .process-content h2 { margin-bottom: 34px; }
  .process-band { padding: 38px 0 40px; }
  .process-cards {
    flex-direction: column;
    height: auto;
    min-height: 0;
    gap: 0;
    margin-bottom: 24px;
  }
  .process-card,
  .process-card.active {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    min-height: 0;
    grid-template-columns: 42px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 4px 12px;
    padding: 15px 0;
    border: 0;
    border-top: 1px solid rgba(255, 250, 244, 0.16);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #fffaf4;
    align-self: stretch;
  }
  .process-card:last-child {
    border-bottom: 1px solid rgba(255, 250, 244, 0.16);
  }
  .process-card::after {
    content: none;
  }
  .process-card img { display: none; }
  .card-description-wrap {
    grid-column: 2;
    min-height: 0;
    overflow: visible;
  }
  .process-card:not(.active) .card-icon,
  .process-card:not(.active) h3 {
    color: #fffaf4;
  }
  .process-card:not(.active) img,
  .process-card:not(.active) .card-description-wrap p {
    opacity: 1;
    transform: none;
    visibility: visible;
    pointer-events: auto;
  }
  .process-card p {
    width: auto;
    margin: 0;
    color: #fffaf4;
    font-size: 13.5px;
    line-height: 1.46;
  }
  .process-card.active .card-description-wrap p,
  .process-card:not(.active) .card-description-wrap p {
    color: #fffaf4;
  }
  .process-card.active { transform: none; }
  .process-card:hover,
  .process-card:focus-within { transform: none; }
  .process-card h3 {
    grid-column: 2;
    margin: 0;
    color: #fffaf4;
    font-size: 21px;
    line-height: 1.12;
  }
  .card-icon {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: start;
    margin: 0;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 250, 244, 0.34);
    border-radius: 999px;
    color: #fffaf4;
    font-size: 15px;
  }
  .process-content > .btn {
    width: 100%;
    justify-content: center;
  }
  .process-story {
    padding: 58px 0 66px;
  }
  .process-story-shell {
    gap: 38px;
  }
  .process-story-intro h2 {
    font-size: 32px;
  }
  .process-story-intro p:not(.eyebrow) {
    font-size: 15px;
  }
  .process-story-rows {
    gap: 34px;
  }
  .process-story-row {
    grid-template-columns: 1fr;
    gap: 16px 14px;
    padding: 18px;
    border: 1px solid rgba(18, 53, 95, 0.08);
    border-radius: 22px;
    color: var(--navy);
    background: rgba(255, 250, 244, 0.72);
    box-shadow: 0 14px 34px rgba(18, 53, 95, 0.06);
    opacity: 1;
    transform: none;
  }
  .process-story-row.is-active {
    transform: none;
  }
  .process-story-copy {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
    padding-left: 0;
  }
  .process-story-copy::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 18px;
    width: 8px;
    height: 8px;
    border: 2px solid var(--cream);
    border-radius: 999px;
    background: var(--red);
    box-shadow: 0 0 0 5px rgba(163, 38, 56, 0.1);
  }
  .process-story-number {
    margin-top: 18px;
    color: var(--red);
    font-size: 32px;
  }
  .process-story-copy h3 {
    margin-bottom: 14px;
    font-size: 25px;
  }
  .process-story-copy p {
    color: rgba(23, 52, 85, 0.74);
    font-size: 14.5px;
  }
  .process-story-visual {
    margin-top: 2px;
  }
  .process-story-frame {
    aspect-ratio: 1.28;
    border-radius: 16px;
    box-shadow: none;
  }
  .consultation-form { padding: 20px; }
  .form-step legend { font-size: 24px; }
  .option-card { min-height: 96px; padding: 14px 36px 14px 15px; }
  .wizard-actions { flex-direction: column; }
  .wizard-actions.is-start .wizard-back { display: none; }
  .wizard-back,
  .wizard-next { width: 100%; flex-basis: auto; }
  .row-head { align-items: flex-start; flex-direction: column; }
  .short-about {
    padding-block: 40px;
  }
  .about-preview .split-layout {
    gap: 18px;
  }
  .about-preview .rounded-image {
    display: none;
  }
  .about-preview h2 {
    font-size: clamp(30px, 8.4vw, 36px);
  }
  .about-preview p {
    line-height: 1.56;
  }
  .about-preview .btn {
    width: 100%;
    justify-content: center;
  }
  .testimonial-carousel { min-height: 0; }
  .testimonial-card { height: auto; min-height: 0; padding: 24px 24px 26px; }
  .testimonial-card blockquote { font-size: 16px; line-height: 1.38; }
  .testimonial-stars { font-size: 16px; margin-bottom: 14px; letter-spacing: 4px; }
  .testimonial-divider { margin: 20px 0 14px; }
  .testimonial-footer h3 { font-size: 20px; }
  .testimonial-footer p { font-size: 15px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-line,
  .footer-button {
    white-space: normal;
  }
  .footer-bottom { flex-direction: column; }
  .page-hero { padding: 120px 0 64px; }
  .page-hero.contact-hero { padding: 112px 0 34px; }
  .masonry { grid-auto-rows: 220px; }
  .masonry .tall { grid-row: span 1; }
}

@media (max-width: 620px) and (max-height: 700px) {
  .hero,
  .hero-content {
    min-height: 560px;
  }
  .homes-selector-media,
  .homes-selector-media img {
    min-height: 340px;
  }
  .homes-selector-intro {
    bottom: 92px;
  }
  .selector-image-caption {
    bottom: 12px;
  }
}

@media (max-width: 430px) {
  html {
    scroll-padding-top: 92px;
  }
  .hero-content {
    padding-top: 136px;
  }
  .glass-panel h1 {
    max-width: 340px;
    font-size: clamp(35px, 9.8vw, 40px);
    line-height: 1.05;
  }
  .feature-tags {
    display: none;
  }
  .why-card {
    padding: 18px;
  }
  .proof-card {
    padding: 17px 0;
  }
  .bottom-cta {
    padding-top: 30px;
  }
  .cta-panel {
    padding: 26px 22px;
  }
  .testimonial-carousel { min-height: 0; }
  .testimonial-card { height: auto; min-height: 0; padding: 22px 22px 24px; }
  .testimonial-card blockquote { font-size: 15px; line-height: 1.36; }
  .testimonial-stars { font-size: 15px; margin-bottom: 12px; letter-spacing: 3px; }
  .testimonial-divider { margin: 18px 0 12px; }
  .testimonial-footer h3 { font-size: 18px; }
  .testimonial-footer p { font-size: 14px; }
}

@media (max-width: 370px) {
  .testimonial-carousel { min-height: 0; }
  .testimonial-card { height: auto; min-height: 0; padding: 20px 18px 22px; }
  .testimonial-card blockquote { font-size: 14px; line-height: 1.34; }
}

.homes-mobile-copy {
  display: none;
}

@media (max-width: 768px) {
  .homes-desktop-copy {
    display: none;
  }

  .homes-mobile-copy {
    display: inline;
  }

  .homes-selector-section {
    overflow: clip;
  }

  .homes-selector-media,
  .homes-selector-media img {
    min-height: clamp(400px, 52svh, 500px);
  }

  .homes-selector-media::after {
    background:
      linear-gradient(180deg, rgba(7, 31, 61, 0.34) 0%, rgba(7, 31, 61, 0.46) 52%, rgba(7, 31, 61, 0.72) 100%);
  }

  .homes-selector-intro {
    bottom: 126px;
    max-width: min(350px, calc(100% - 40px));
  }

  .homes-selector-intro h1 {
    max-width: 330px;
    font-size: clamp(24px, 5.7vw, 30px);
    line-height: 1.08;
    text-wrap: balance;
  }

  .homes-selector-intro p:not(.eyebrow) {
    max-width: 320px;
    margin-top: 2px;
    font-size: 12.5px;
    line-height: 1.45;
  }

  .selector-image-caption {
    bottom: 24px;
    width: min(278px, calc(100% - 32px));
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(7, 31, 61, 0.68);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
  }

  .selector-image-caption span {
    font-size: 9px;
  }

  .selector-image-caption strong {
    font-size: 16px;
  }

  .selector-image-caption small {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 10px;
    line-height: 1.28;
  }

  .homes-selector-panel {
    padding: 26px 18px 24px;
  }

  .selector-panel-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 12px;
    margin-bottom: 16px;
  }

  .selector-panel-head .eyebrow {
    margin-bottom: 6px;
  }

  .selector-panel-head h2 {
    max-width: 300px;
    font-size: clamp(22px, 5.8vw, 25px);
    line-height: 1.12;
  }

  .selector-panel-head p:last-child {
    align-self: end;
    padding: 6px 9px;
    background: rgba(255, 250, 244, 0.84);
    color: rgba(18, 53, 95, 0.66);
  }

  .selector-filters {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    width: calc(100% + 36px);
    margin: 0 -18px 16px;
    padding: 0 18px 8px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .selector-filters::-webkit-scrollbar {
    display: none;
  }

  .selector-filters button {
    flex: 0 0 auto;
    width: auto;
    min-height: 38px;
    padding: 9px 13px;
    border-color: rgba(18, 53, 95, 0.14);
    background: rgba(255, 250, 244, 0.64);
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
  }

  .selector-filters button.active {
    border-color: rgba(163, 38, 56, 0.78);
    background: var(--red);
    box-shadow: 0 8px 18px rgba(163, 38, 56, 0.14);
  }

  .selector-list {
    gap: 0;
    border-top: 1px solid rgba(18, 53, 95, 0.1);
  }

  .selector-home {
    min-height: 64px;
    padding: 13px 12px 13px 24px;
    border-radius: 0;
    border-bottom: 1px solid rgba(18, 53, 95, 0.1);
    color: rgba(18, 53, 95, 0.9);
    background: transparent;
  }

  .selector-home:hover,
  .selector-home:focus-visible {
    background: rgba(255, 250, 244, 0.62);
    transform: none;
  }

  .selector-home::before {
    top: 16px;
    bottom: 16px;
    left: 8px;
    width: 2px;
    background: var(--red);
    opacity: 0;
  }

  .selector-home.active {
    min-height: 68px;
    padding: 14px 14px 14px 26px;
    border-radius: 14px;
    border: 1px solid rgba(18, 53, 95, 0.09);
    color: var(--navy);
    background: rgba(255, 250, 244, 0.82);
    box-shadow: 0 10px 24px rgba(18, 53, 95, 0.06);
    transform: none;
  }

  .selector-home.active + .selector-home {
    border-top-color: transparent;
  }

  .selector-home.active::before {
    opacity: 0.72;
    transform: scaleY(0.72);
  }

  .selector-home span {
    font-size: 17px;
    line-height: 1.12;
  }

  .selector-home small {
    max-width: 94%;
    font-size: 12px;
    line-height: 1.34;
    opacity: 0.68;
  }

  .selector-home.active small {
    opacity: 0.76;
  }

  .selector-actions {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 14px;
    border: 1px solid rgba(18, 53, 95, 0.09);
    border-radius: 18px;
    background: rgba(255, 250, 244, 0.64);
  }

  .selector-arrows {
    gap: 8px;
    justify-content: flex-start;
  }

  .selector-arrows .carousel-arrow {
    width: 42px;
    height: 42px;
    background: rgba(255, 250, 244, 0.8);
  }

  .selector-actions .btn {
    width: 100%;
    min-height: 44px;
    padding: 11px 12px;
    font-size: 13px;
    white-space: nowrap;
  }

  .footer-grid {
    gap: 18px;
  }

  .footer-logo {
    margin-bottom: 12px;
  }

  .footer-socials {
    margin-top: 14px;
  }

  .site-footer .footer-heading {
    margin: 6px 0 10px;
  }

  .footer-contact {
    gap: 8px;
  }

  .footer-button {
    margin-top: 6px;
  }
}

@media (max-width: 620px) {
  .homes-selector-media,
  .homes-selector-media img {
    min-height: clamp(350px, 52svh, 430px);
  }

  .homes-selector-intro {
    bottom: 116px;
    max-width: min(310px, calc(100% - 40px));
  }

  .homes-selector-intro h1 {
    max-width: 300px;
    font-size: clamp(23px, 6.4vw, 28px);
  }

  .homes-selector-intro p:not(.eyebrow) {
    max-width: 285px;
  }

  .selector-image-caption {
    bottom: 22px;
  }

  .footer-grid {
    gap: 16px;
  }
}

@media (max-width: 620px) and (max-height: 700px) {
  .homes-selector-media,
  .homes-selector-media img {
    min-height: 330px;
  }

  .homes-selector-intro {
    bottom: 104px;
  }

  .selector-image-caption {
    bottom: 18px;
  }
}

@media (max-width: 430px) {
  .homes-selector-media,
  .homes-selector-media img {
    min-height: clamp(336px, 50svh, 400px);
  }

  .homes-selector-intro {
    left: 18px;
    right: 18px;
    bottom: 108px;
  }

  .homes-selector-intro h1 {
    max-width: 286px;
    font-size: clamp(22px, 6.8vw, 27px);
  }

  .homes-selector-intro p:not(.eyebrow) {
    max-width: 276px;
    font-size: 12px;
  }

  .selector-image-caption {
    left: 14px;
    right: 14px;
    width: min(270px, calc(100% - 28px));
  }

  .homes-selector-panel {
    padding: 24px 16px 22px;
  }

  .selector-filters {
    width: calc(100% + 32px);
    margin-inline: -16px;
    padding-inline: 16px;
  }

  .selector-panel-head h2 {
    font-size: 23px;
  }

  .selector-actions {
    gap: 10px;
    padding: 12px;
  }
}

@media (max-width: 370px) {
  .homes-selector-intro h1 {
    max-width: 260px;
    font-size: 22px;
  }

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

  .selector-arrows {
    justify-content: space-between;
  }
}

.process-hero-copy-mobile {
  display: none;
}

@media (max-width: 980px) {
  .process-story-row,
  .process-story-row--reverse {
    color: var(--navy);
    opacity: 1;
  }

  .process-story-image {
    top: 0;
    height: 100%;
    transform: none;
    will-change: auto;
  }
}

@media (max-width: 620px) {
  .process-hero-copy-full {
    display: none;
  }

  .process-hero-copy-mobile {
    display: inline;
  }

  .process-page-hero {
    padding: 112px 0 52px;
  }

  .process-page-hero .narrow {
    max-width: 430px;
  }

  .process-page-hero h1 {
    max-width: 356px;
    margin-bottom: 16px;
    font-size: clamp(34px, 9.2vw, 42px);
    line-height: 1.04;
    text-wrap: balance;
  }

  .process-page-hero p:not(.eyebrow):not(.section-badge) {
    max-width: 350px;
    font-size: 15px;
    line-height: 1.52;
  }

  .process-page-hero .btn {
    min-height: 54px;
    margin-top: 18px;
    padding: 14px 18px 14px 22px;
    font-size: 14px;
  }

  .process-page-hero .btn:active,
  .process-final-cta .btn:active {
    transform: scale(0.98);
  }

  .process-story {
    padding: 48px 0 78px;
  }

  .process-story-shell {
    gap: 30px;
  }

  .process-story-intro {
    gap: 12px;
  }

  .process-story-intro h2 {
    max-width: 360px;
    font-size: clamp(29px, 8vw, 34px);
    line-height: 1.06;
    text-wrap: balance;
  }

  .process-story-intro p:not(.eyebrow) {
    max-width: 350px;
    font-size: 14.5px;
    line-height: 1.55;
  }

  .process-trust-points {
    gap: 7px;
    margin-top: 2px;
  }

  .process-trust-points span {
    min-height: 30px;
    padding: 6px 9px;
    font-size: 11.5px;
    line-height: 1.15;
  }

  .process-story-rows {
    gap: 22px;
  }

  .process-story-row {
    position: relative;
    gap: 12px;
    padding: 15px;
    border: 1px solid rgba(18, 53, 95, 0.09);
    border-radius: 18px;
    background: rgba(255, 250, 244, 0.7);
    box-shadow: 0 10px 24px rgba(18, 53, 95, 0.045);
    transition:
      border-color 220ms cubic-bezier(0.23, 1, 0.32, 1),
      background 220ms cubic-bezier(0.23, 1, 0.32, 1),
      box-shadow 220ms cubic-bezier(0.23, 1, 0.32, 1),
      transform 180ms cubic-bezier(0.23, 1, 0.32, 1);
  }

  .process-story-row.is-active {
    border-color: rgba(163, 38, 56, 0.22);
    background: rgba(255, 250, 244, 0.9);
    box-shadow: 0 14px 30px rgba(18, 53, 95, 0.075);
    transform: translateY(-1px);
  }

  .process-story-copy {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 11px;
    align-items: start;
  }

  .process-story-copy::before {
    top: 17px;
    left: 21px;
    width: 7px;
    height: 7px;
    box-shadow: 0 0 0 4px rgba(163, 38, 56, 0.1);
  }

  .process-story-number {
    margin-top: 12px;
    font-size: 27px;
    line-height: 0.95;
  }

  .process-story-copy h3 {
    margin-bottom: 8px;
    font-size: 22px;
    line-height: 1.08;
  }

  .process-story-copy p {
    max-width: 100%;
    font-size: 13.8px;
    line-height: 1.5;
  }

  .process-story-row.is-active .process-story-copy p {
    color: rgba(23, 52, 85, 0.82);
  }

  .process-story-visual {
    margin-top: 0;
  }

  .process-story-frame {
    aspect-ratio: 1.58;
    border-radius: 14px;
    box-shadow: none;
  }

  .process-final-cta {
    padding-top: 20px;
  }

  .process-final-cta .cta-panel {
    gap: 20px;
    padding: 28px 22px;
  }

  .process-final-cta .cta-panel h2 {
    font-size: clamp(29px, 8.2vw, 35px);
  }

  .process-final-cta .cta-panel p {
    margin-top: 12px;
    font-size: 14.5px;
    line-height: 1.5;
  }

  .process-final-cta .btn {
    min-height: 52px;
    padding: 14px 18px 14px 22px;
    font-size: 14px;
  }

  .footer-grid {
    gap: 16px;
  }

  .footer-logo {
    margin-bottom: 12px;
  }

  .footer-socials {
    gap: 8px;
    margin-top: 14px;
  }

  .site-footer .footer-social-link {
    width: 36px;
    height: 36px;
  }

  .site-footer .footer-heading {
    margin: 6px 0 10px;
  }

  .site-footer a {
    margin-bottom: 8px;
  }

  .contact-line {
    margin-bottom: 9px;
  }

  .footer-button {
    margin-top: 4px;
  }
}

@media (max-width: 430px) {
  .process-page-hero {
    padding: 106px 0 46px;
  }

  .process-page-hero h1 {
    max-width: 318px;
    font-size: clamp(32px, 9.4vw, 38px);
  }

  .process-page-hero p:not(.eyebrow):not(.section-badge) {
    max-width: 310px;
  }

  .process-trust-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    max-width: 310px;
  }

  .process-trust-points span {
    justify-content: flex-start;
    width: fit-content;
  }

  .process-story-row {
    padding: 14px;
  }

  .process-story-frame {
    aspect-ratio: 1.5;
  }

}

@media (max-width: 370px) {
  .process-page-hero h1 {
    max-width: 290px;
    font-size: 31px;
  }

  .process-story-copy {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 10px;
  }

  .process-story-number {
    font-size: 25px;
  }

  .process-story-copy h3 {
    font-size: 21px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .process-story-row,
  .process-story-row.is-active,
  .process-story-frame,
  .process-page-hero .btn,
  .process-final-cta .btn {
    transition: none;
    transform: none;
  }
}

.lot-hero-title-mobile,
.lot-hero-copy-mobile,
.lot-intro-copy-mobile,
.lot-card-copy-mobile,
.lot-smart-copy-mobile {
  display: none;
}

@media (max-width: 620px) {
  .lot-hero-title-full,
  .lot-hero-copy-full,
  .lot-intro-copy-full,
  .lot-card-copy-full,
  .lot-smart-copy-full {
    display: none;
  }

  .lot-hero-title-mobile,
  .lot-hero-copy-mobile,
  .lot-intro-copy-mobile,
  .lot-card-copy-mobile,
  .lot-smart-copy-mobile {
    display: inline;
  }

  .lot-page-hero {
    min-height: auto;
    padding: 108px 0 50px;
  }

  .lot-page-hero .narrow {
    max-width: 430px;
  }

  .lot-page-hero h1 {
    max-width: 365px;
    margin-bottom: 16px;
    font-size: clamp(34px, 9vw, 42px);
    line-height: 1.04;
    text-wrap: balance;
  }

  .lot-page-hero p:not(.eyebrow):not(.section-badge) {
    max-width: 350px;
    font-size: 15px;
    line-height: 1.52;
  }

  .lot-page-hero .btn {
    min-height: 54px;
    margin-top: 18px;
    padding: 14px 18px 14px 22px;
    font-size: 14px;
  }

  .lot-page-section {
    padding-top: 42px;
    padding-bottom: 44px;
  }

  .lot-page-intro {
    gap: 16px;
    margin-bottom: 22px;
  }

  .lot-page-intro h2 {
    max-width: 360px;
    font-size: clamp(29px, 7.8vw, 34px);
    line-height: 1.08;
    text-wrap: balance;
  }

  .lot-page-intro p:not(.eyebrow) {
    max-width: 360px;
    font-size: 14.5px;
    line-height: 1.54;
  }

  .lot-page-intro p + p {
    margin-top: 10px;
  }

  .lot-checklist {
    gap: 12px;
  }

  .lot-checklist article {
    padding: 18px 18px 17px;
    border-radius: 17px;
    background:
      linear-gradient(180deg, rgba(255, 250, 244, 0.88), rgba(255, 250, 244, 0.68)),
      rgba(255, 250, 244, 0.76);
    border-color: rgba(18, 53, 95, 0.13);
    box-shadow: 0 12px 28px rgba(18, 53, 95, 0.045);
  }

  .lot-checklist h3 {
    margin-bottom: 8px;
    font-size: 19px;
    line-height: 1.12;
  }

  .lot-checklist p {
    font-size: 14px;
    line-height: 1.48;
  }

  .lot-path-section {
    padding: 50px 0 54px;
  }

  .lot-path .section-head {
    margin-bottom: 24px;
  }

  .lot-path .section-head h2 {
    max-width: 360px;
    font-size: clamp(29px, 7.8vw, 34px);
    line-height: 1.08;
    text-wrap: balance;
  }

  .lot-path-steps {
    gap: 12px;
  }

  .lot-path-steps article {
    padding: 18px;
    border-radius: 17px;
    background: rgba(255, 250, 244, 0.1);
    border-color: rgba(255, 250, 244, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 250, 244, 0.05);
  }

  .lot-path-steps span {
    margin-bottom: 18px;
    color: rgba(255, 250, 244, 0.9);
    letter-spacing: 0.04em;
  }

  .lot-path-steps h3 {
    margin: 0 0 8px;
    font-size: 21px;
    line-height: 1.1;
  }

  .lot-path-steps p {
    font-size: 14px;
    line-height: 1.5;
  }

  .lot-smart-section {
    padding-top: 54px;
    padding-bottom: 48px;
  }

  .lot-smart-grid {
    gap: 24px;
  }

  .lot-smart-media {
    position: relative;
    padding-top: 8px;
  }

  .lot-smart-media::before {
    content: "";
    position: absolute;
    top: 0;
    left: 18px;
    right: 18px;
    height: 1px;
    background: rgba(18, 53, 95, 0.12);
  }

  .lot-smart-media img {
    aspect-ratio: 1.42;
    border-radius: 18px;
  }

  .lot-smart-copy h2 {
    max-width: 360px;
    margin-bottom: 14px;
    font-size: clamp(29px, 7.8vw, 34px);
    line-height: 1.08;
    text-wrap: balance;
  }

  .lot-smart-copy p:not(.eyebrow) {
    max-width: 360px;
    font-size: 14.5px;
    line-height: 1.54;
  }

  .lot-proof-list {
    gap: 12px;
    margin-top: 18px;
  }

  .lot-proof-list li {
    display: grid;
    grid-template-columns: 10px minmax(0, 1fr);
    column-gap: 11px;
    align-items: start;
    min-height: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.35;
  }

  .lot-proof-list li::before {
    position: static;
    align-self: start;
    width: 7px;
    height: 7px;
    margin-top: 0.48em;
  }

  .lot-faq-section {
    padding-top: 44px;
    padding-bottom: 46px;
  }

  .lot-faq .section-head {
    margin-bottom: 22px;
  }

  .lot-faq .section-head h2 {
    max-width: 360px;
    font-size: clamp(29px, 7.8vw, 34px);
    line-height: 1.08;
    text-wrap: balance;
  }

  .lot-faq-grid {
    gap: 12px;
  }

  .lot-faq-grid article {
    padding: 20px 18px;
    border-radius: 17px;
    background: rgba(255, 250, 244, 0.88);
    border-color: rgba(18, 53, 95, 0.12);
  }

  .lot-faq-grid h3 {
    margin-bottom: 11px;
    font-size: 18px;
    line-height: 1.18;
  }

  .lot-faq-grid p {
    font-size: 14px;
    line-height: 1.5;
  }

  .lot-gallery-preview {
    padding-top: 48px;
    padding-bottom: 60px;
  }

  .lot-gallery-grid {
    gap: 24px;
  }

  .lot-gallery-grid h2 {
    max-width: 360px;
    font-size: clamp(29px, 7.8vw, 34px);
    line-height: 1.08;
    text-wrap: balance;
  }

  .lot-gallery-grid p:not(.eyebrow) {
    max-width: 360px;
    font-size: 14.5px;
    line-height: 1.54;
  }

  .lot-gallery-actions {
    gap: 10px;
    margin-top: 20px;
  }

  .lot-gallery-actions .btn {
    min-height: 50px;
    justify-content: center;
  }

  .lot-gallery-images {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 10px;
    align-items: stretch;
  }

  .lot-gallery-images img {
    border-radius: 16px;
  }

  .lot-gallery-images img:first-child,
  .lot-gallery-images img:last-child {
    aspect-ratio: 0.92;
    margin-bottom: 0;
  }

  .lot-final-cta {
    padding-top: 34px;
  }

  .lot-final-cta .cta-panel {
    gap: 20px;
    padding: 28px 22px;
  }

  .lot-final-cta .cta-panel h2 {
    font-size: clamp(29px, 8vw, 35px);
    line-height: 1.08;
    text-wrap: balance;
  }

  .lot-final-cta .cta-panel p {
    margin-top: 12px;
    font-size: 14.5px;
    line-height: 1.5;
  }

  .lot-final-cta .btn {
    min-height: 52px;
    padding: 14px 18px 14px 22px;
    font-size: 14px;
  }
}

@media (max-width: 430px) {
  .lot-page-hero {
    padding: 104px 0 46px;
  }

  .lot-page-hero h1 {
    max-width: 322px;
    font-size: clamp(32px, 9.2vw, 38px);
  }

  .lot-page-hero p:not(.eyebrow):not(.section-badge),
  .lot-page-intro p:not(.eyebrow),
  .lot-smart-copy p:not(.eyebrow),
  .lot-gallery-grid p:not(.eyebrow) {
    max-width: 318px;
  }

  .lot-checklist article,
  .lot-path-steps article,
  .lot-faq-grid article {
    padding: 17px;
  }

  .lot-gallery-images {
    gap: 8px;
  }
}

@media (max-width: 370px) {
  .lot-page-hero h1 {
    max-width: 286px;
    font-size: 31px;
  }

  .lot-checklist h3,
  .lot-path-steps h3,
  .lot-faq-grid h3 {
    font-size: 18px;
  }

  .lot-gallery-actions .btn,
  .lot-final-cta .btn {
    padding-inline: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lot-page-hero .btn,
  .lot-gallery-actions .btn,
  .lot-final-cta .btn {
    transition: none;
    transform: none;
  }
}

.about-hero-copy-mobile,
.about-story-copy-mobile,
.about-difference-copy-mobile,
.about-development-copy-mobile,
.about-development-points,
.about-process-copy-mobile,
.about-story-points,
.about-story-link {
  display: none;
}

@media (max-width: 620px) {
  .about-hero-copy-full,
  .about-story-copy-full,
  .about-difference-copy-full,
  .about-development-copy-full,
  .about-process-copy-full {
    display: none;
  }

  .about-hero-copy-mobile,
  .about-story-copy-mobile,
  .about-difference-copy-mobile,
  .about-development-copy-mobile,
  .about-process-copy-mobile {
    display: inline;
  }

  .about-hero {
    padding: 112px 0 48px;
    background:
      linear-gradient(180deg, rgba(255, 250, 244, 0.2), rgba(242, 236, 227, 0.94)),
      #f2ece3;
  }

  .about-hero-shell {
    gap: 24px;
  }

  .about-hero-copy .eyebrow {
    margin-bottom: 14px;
  }

  .about-hero-copy h1 {
    max-width: 355px;
    margin-bottom: 16px;
    font-size: clamp(36px, 10.2vw, 44px);
    line-height: 1.04;
    text-wrap: balance;
  }

  .about-hero-copy p:not(.eyebrow) {
    max-width: 360px;
    font-size: 15px;
    line-height: 1.54;
  }

  .about-hero-panel {
    max-width: 100%;
    padding: 20px 18px;
    border-radius: 18px;
    background: rgba(255, 250, 244, 0.76);
    box-shadow: 0 14px 32px rgba(18, 53, 95, 0.06);
  }

  .about-hero-panel p {
    margin-bottom: 17px;
    font-size: 15px;
    line-height: 1.48;
  }

  .about-proof-row {
    gap: 12px;
    padding-top: 16px;
  }

  .about-proof-row span {
    display: grid;
    grid-template-columns: 8px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    font-size: 13.5px;
    line-height: 1.28;
  }

  .about-proof-row span::before {
    margin-top: 0.44em;
  }

  .about-story-section {
    padding: 46px 0 54px;
  }

  .about-story {
    gap: 24px;
  }

  .about-story-copy h2 {
    max-width: 360px;
    margin-bottom: 14px;
    font-size: clamp(29px, 8vw, 35px);
    line-height: 1.08;
    text-wrap: balance;
  }

  .about-story-copy p {
    max-width: 360px;
    font-size: 14.5px;
    line-height: 1.54;
  }

  .about-story-copy-secondary {
    display: none;
  }

  .about-story-points {
    display: grid;
    gap: 9px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
  }

  .about-story-points li {
    display: grid;
    grid-template-columns: 8px minmax(0, 1fr);
    gap: 11px;
    align-items: start;
    color: rgba(23, 52, 85, 0.82);
    font-size: 13.5px;
    font-weight: 750;
    line-height: 1.34;
  }

  .about-story-points li::before {
    content: "";
    width: 7px;
    height: 7px;
    margin-top: 0.48em;
    border-radius: 999px;
    background: var(--red);
  }

  .about-note {
    display: none;
    margin-top: 18px;
    padding-top: 16px;
  }

  .about-note span {
    margin-bottom: 8px;
    font-size: 12.5px;
  }

  .about-note p {
    max-width: 350px;
    font-size: 17px;
    line-height: 1.34;
  }

  .about-story-link {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    margin-top: 18px;
    color: var(--red);
    font-size: 14px;
    font-weight: 800;
    text-decoration-line: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: rgba(163, 38, 56, 0.28);
    text-underline-offset: 0.22em;
    border-bottom: 0;
  }

  .about-story-link:hover,
  .about-story-link:focus-visible {
    text-decoration-color: var(--red);
  }

  .about-story-media .rounded-image {
    aspect-ratio: 1.48;
    border-radius: 18px;
  }

  .about-story-media figcaption {
    max-width: 340px;
    margin-top: 10px;
    font-size: 12.5px;
    line-height: 1.45;
  }

  .about-difference {
    margin-top: 44px;
  }

  .about-difference .section-head {
    margin-bottom: 18px;
  }

  .about-difference .section-head h2 {
    max-width: 360px;
    font-size: clamp(28px, 7.6vw, 34px);
    line-height: 1.08;
    text-wrap: balance;
  }

  .about-difference-grid {
    gap: 12px;
  }

  .about-difference-grid article {
    min-height: 0;
    padding: 20px 18px;
    border-radius: 17px;
    background: rgba(255, 250, 244, 0.82);
  }

  .about-difference-grid h3 {
    margin-bottom: 9px;
    font-size: 20px;
    line-height: 1.14;
  }

  .about-difference-grid p {
    font-size: 14px;
    line-height: 1.5;
  }

  .about-development {
    gap: 14px;
    margin-top: 34px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .about-development h2 {
    max-width: 340px;
    margin-bottom: 12px;
    font-size: clamp(27px, 7.4vw, 32px);
    line-height: 1.08;
    text-wrap: balance;
  }

  .about-development p {
    max-width: 360px;
    font-size: 14.5px;
    line-height: 1.54;
  }

  .about-development-points {
    display: grid;
    gap: 9px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
  }

  .about-development-points li {
    display: grid;
    grid-template-columns: 8px minmax(0, 1fr);
    gap: 11px;
    align-items: start;
    color: rgba(23, 52, 85, 0.82);
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.34;
  }

  .about-development-points li::before {
    content: "";
    width: 7px;
    height: 7px;
    margin-top: 0.48em;
    border-radius: 999px;
    background: var(--red);
  }

  .about-development-note {
    display: none;
  }

  .about-values {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 40px;
    border-top: 1px solid rgba(18, 53, 95, 0.12);
  }

  .about-values article {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 4px 10px;
    min-height: 0;
    padding: 16px 0;
    border: 0;
    border-bottom: 1px solid rgba(18, 53, 95, 0.12);
    border-radius: 0;
    background: transparent;
  }

  .about-values article span {
    grid-row: 1 / span 2;
    width: auto;
    margin: 3px 0 0;
    padding: 0;
    border: 0;
    color: var(--red);
    font-size: 13px;
    line-height: 1;
  }

  .about-values h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.18;
  }

  .about-values p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.45;
  }

  .about-expect-section {
    padding: 50px 0 54px;
  }

  .about-expect {
    gap: 24px;
  }

  .about-expect h2 {
    max-width: 330px;
    font-size: clamp(29px, 8vw, 34px);
    line-height: 1.08;
    text-wrap: balance;
  }

  .about-process-link {
    min-height: 42px;
    margin-top: 14px;
    font-size: 14px;
    text-decoration-line: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: rgba(255, 250, 244, 0.42);
    text-underline-offset: 0.22em;
    border-bottom: 0;
  }

  .about-process-link:hover,
  .about-process-link:focus-visible {
    text-decoration-color: var(--red);
  }

  .about-expect-list article {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }

  .about-expect-list h3 {
    font-size: 19px;
  }

  .about-expect-list p {
    max-width: 340px;
    font-size: 14px;
    line-height: 1.48;
  }

  .about-cta-section {
    padding: 42px 0 54px;
  }

  .about-cta {
    gap: 20px;
    padding: 28px 22px;
    border-radius: 18px;
  }

  .about-cta h2 {
    max-width: 330px;
    font-size: clamp(29px, 8vw, 35px);
    line-height: 1.08;
    text-wrap: balance;
  }

  .about-cta p {
    max-width: 340px;
    font-size: 14.5px;
    line-height: 1.5;
  }

  .about-cta .btn {
    min-height: 52px;
    width: 100%;
    justify-content: center;
  }

  .footer-grid {
    gap: 16px;
  }
}

@media (max-width: 430px) {
  .about-hero-copy h1 {
    max-width: 315px;
    font-size: clamp(33px, 9.4vw, 39px);
  }

  .about-hero-copy p:not(.eyebrow),
  .about-story-copy p,
  .about-development p,
  .about-expect-list p {
    max-width: 318px;
  }

  .about-hero-panel,
  .about-difference-grid article {
    padding-inline: 17px;
  }
}

@media (max-width: 370px) {
  .about-hero-copy h1 {
    max-width: 288px;
    font-size: 31px;
  }

  .about-values article {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .about-values h3,
  .about-expect-list h3,
  .about-difference-grid h3 {
    font-size: 18px;
  }
}

@media (max-width: 620px) {
  .contact-page .contact-hero {
    padding: 106px 0 26px;
  }

  .contact-page .contact-hero h1 {
    max-width: 350px;
    font-size: clamp(34px, 9vw, 40px);
    line-height: 1.08;
  }

  .contact-page .contact-hero p:not(.eyebrow) {
    max-width: 352px;
    font-size: 15px;
    line-height: 1.52;
  }

  .contact-page .contact-intake-section {
    padding-top: 14px;
  }

  .contact-page .contact-grid {
    gap: 18px;
  }

  .contact-page .consultation-form {
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(18, 53, 95, 0.055);
  }

  .contact-page .form-progress {
    gap: 8px;
    margin-bottom: 12px;
    padding-bottom: 12px;
  }

  .contact-page .progress-label {
    font-size: 12px;
    line-height: 1.25;
  }

  .contact-page .progress-label span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    margin-right: 4px;
    padding: 0 8px;
    border-radius: 999px;
    color: #fffaf4;
    background: var(--red);
  }

  .contact-page .progress-dots {
    gap: 14px;
  }

  .contact-page .progress-pill,
  .contact-page .consultation-form[data-step="2"] .progress-pill,
  .contact-page .consultation-form[data-step="3"] .progress-pill {
    width: 42px;
  }

  .contact-page .progress-dot {
    width: 9px;
    height: 9px;
    box-shadow: 0 0 0 3px #fffaf4;
  }

  .contact-page .step-viewport {
    min-height: 0 !important;
    transition: none;
  }

  .contact-page .form-step legend {
    font-size: 21px;
    line-height: 1.12;
  }

  .contact-page .form-step legend .eyebrow {
    margin-bottom: 5px;
    font-size: 10.5px;
  }

  .contact-page .step-intro {
    margin: 7px 0 11px;
    font-size: 13px;
    line-height: 1.42;
  }

  .contact-page .option-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-page .option-card {
    min-height: 0;
    gap: 3px;
    padding: 11px 42px 11px 13px;
    border-radius: 12px;
  }

  .contact-page .option-card::after {
    top: 14px;
    right: 14px;
    width: 13px;
    height: 13px;
  }

  .contact-page .option-card span {
    font-size: 14.5px;
  }

  .contact-page .option-card small {
    font-size: 11.5px;
    line-height: 1.28;
  }

  .contact-page .form-side-note {
    margin-top: 9px;
    font-size: 11.5px;
    line-height: 1.38;
  }

  .contact-page .field-grid {
    gap: 9px;
  }

  .contact-page .field-grid label {
    gap: 5px;
    font-size: 12.5px;
  }

  .contact-page .field-helper {
    font-size: 11.5px;
    line-height: 1.3;
  }

  .contact-page input,
  .contact-page select,
  .contact-page textarea {
    min-height: 44px;
    padding: 9px 11px;
    border-radius: 10px;
    font-size: 13.5px;
  }

  .contact-page textarea {
    min-height: 104px;
  }

  .contact-page .field-error {
    min-height: 16px;
    margin-top: 7px;
    font-size: 12px;
  }

  .contact-page .wizard-actions {
    display: grid;
    grid-template-columns: minmax(72px, 0.34fr) minmax(0, 1fr);
    gap: 9px;
    margin-top: 13px;
  }

  .contact-page .wizard-actions.is-start {
    display: block;
  }

  .contact-page .wizard-actions.is-start .wizard-back {
    display: none;
  }

  .contact-page .wizard-actions .btn {
    min-height: 44px;
    width: 100%;
    padding: 8px 12px;
    font-size: 13.5px;
  }

  .contact-page .wizard-back {
    --btn-bg: transparent;
    --btn-text: #405167;
    --btn-border: rgba(18, 53, 95, 0.16);
    --btn-hover-fill: rgba(18, 53, 95, 0.08);
    --btn-hover-text: var(--navy);
    min-width: 0;
    box-shadow: none;
  }

  .contact-page .wizard-next {
    min-width: 0;
    white-space: nowrap;
  }

  .contact-page .wizard-actions .circle-arrow {
    width: 24px;
    height: 24px;
  }

  .contact-page .wizard-success {
    padding: 18px 4px 8px;
  }

  .contact-page .success-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
    font-size: 21px;
  }

  .contact-page .wizard-success h2 {
    max-width: 310px;
    margin-bottom: 9px;
    font-size: 22px;
    line-height: 1.12;
  }

  .contact-page .wizard-success p {
    max-width: 310px;
    font-size: 13.5px;
    line-height: 1.45;
  }

  .contact-page .success-actions {
    gap: 8px;
    margin-top: 14px;
  }

  .contact-page .success-primary {
    width: 100%;
    justify-content: center;
  }

  .contact-page .success-secondary {
    min-height: 36px;
  }

  .contact-page .contact-card {
    padding: 17px;
    border-radius: 16px;
  }

  .contact-page .contact-card h2 {
    margin-bottom: 8px;
    font-size: 22px;
  }

  .contact-page .contact-card > p {
    font-size: 13.5px;
    line-height: 1.45;
  }

  .contact-page .contact-list {
    display: grid;
    gap: 8px;
    margin: 13px 0 0;
  }

  .contact-page .contact-card-line {
    margin: 0;
    font-size: 13.5px;
  }

  .contact-page .contact-trust-list {
    gap: 6px;
    margin-top: 13px;
    padding-top: 12px;
  }

  .contact-page .contact-trust-list li {
    font-size: 12.5px;
    line-height: 1.3;
  }

  .contact-page .contact-card img {
    display: none;
  }

  .contact-page .site-footer {
    padding-top: 42px;
  }

  .contact-page .footer-grid {
    gap: 16px;
  }

  .contact-page .footer-brand p,
  .contact-page .site-footer p {
    max-width: 340px;
    line-height: 1.48;
  }

  .contact-page .footer-bottom {
    gap: 7px;
    padding-top: 16px;
    line-height: 1.4;
  }
}

@media (max-width: 430px) {
  .contact-page .wizard-actions {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .contact-page .wizard-next {
    font-size: 13px;
  }
}

@media (max-width: 370px) {
  .contact-page .contact-hero h1 {
    max-width: 304px;
    font-size: 32px;
  }

  .contact-page .consultation-form,
  .contact-page .contact-card {
    padding: 14px;
  }

  .contact-page .wizard-actions {
    grid-template-columns: 1fr;
  }

  .contact-page .wizard-back {
    min-height: 38px;
  }
}

.gallery-showroom {
  padding: 34px 0 42px;
  overflow: visible;
}

.gallery-editorial-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 224px 224px 292px 248px;
  grid-auto-rows: 230px;
  gap: 18px;
  align-items: stretch;
}

.gallery-showroom .gallery-card {
  position: relative;
  grid-column: auto;
  height: auto;
  min-height: 0;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  background: var(--navy-deep);
  box-shadow: 0 16px 34px rgba(18, 53, 95, 0.08);
  isolation: isolate;
}

.gallery-showroom .gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 244, 0.22),
    inset 0 0 0 1px rgba(255, 250, 244, 0.08);
  pointer-events: none;
}

.gallery-showroom .gallery-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 54%;
  background: linear-gradient(180deg, rgba(7, 31, 61, 0), rgba(7, 31, 61, 0.76));
  pointer-events: none;
}

.gallery-showroom .gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 820ms cubic-bezier(0.32, 0.72, 0, 1);
}

.gallery-showroom .gallery-card:hover img {
  transform: scale(1.018);
}

.gallery-showroom .gallery-card-01 {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
}

.gallery-showroom .gallery-card-02 {
  grid-column: 8 / 13;
  grid-row: 1;
}

.gallery-showroom .gallery-card-05 {
  grid-column: 8 / 13;
  grid-row: 2;
}

.gallery-showroom .gallery-card-04 {
  grid-column: 1 / 9;
  grid-row: 3;
}

.gallery-showroom .gallery-card-06 {
  grid-column: 9 / 13;
  grid-row: 3;
}

.gallery-showroom .gallery-card-07 {
  grid-column: 1 / 13;
  grid-row: 4;
}

.gallery-showroom .gallery-card-08 {
  grid-column: 1 / 5;
  grid-row: 5;
}

.gallery-showroom .gallery-card-09 {
  grid-column: 5 / 9;
  grid-row: 5;
}

.gallery-showroom .gallery-card-10 {
  grid-column: 9 / 13;
  grid-row: 5;
}

.gallery-showroom .gallery-card-11 {
  grid-column: 1 / 4;
  grid-row: 6 / 8;
}

.gallery-showroom .gallery-card-12 {
  grid-column: 4 / 7;
  grid-row: 6 / 8;
}

.gallery-showroom .gallery-card-13 {
  grid-column: 7 / 10;
  grid-row: 6 / 8;
}

.gallery-showroom .gallery-card-14 {
  grid-column: 10 / 13;
  grid-row: 6 / 8;
}

.gallery-showroom .gallery-card-15 {
  grid-column: 1 / 5;
  grid-row: 8;
}

.gallery-showroom .gallery-card-16 {
  grid-column: 5 / 9;
  grid-row: 8;
}

.gallery-showroom .gallery-card-17 {
  grid-column: 9 / 13;
  grid-row: 8;
}

.gallery-showroom .gallery-card-18 {
  grid-column: 1 / 7;
  grid-row: 9;
}

.gallery-showroom .gallery-card-19 {
  grid-column: 7 / 10;
  grid-row: 9 / 11;
}

.gallery-showroom .gallery-card-20 {
  grid-column: 10 / 13;
  grid-row: 9 / 11;
}

.gallery-showroom .gallery-card-21 {
  grid-column: 1 / 4;
  grid-row: 10 / 12;
}

.gallery-showroom .gallery-card-22 {
  grid-column: 4 / 7;
  grid-row: 10 / 12;
}

.gallery-showroom .gallery-card-23 {
  grid-column: 7 / 10;
  grid-row: 11 / 13;
}

.gallery-showroom .gallery-card-24 {
  grid-column: 10 / 13;
  grid-row: 11 / 13;
}

.gallery-showroom .gallery-card-25 {
  grid-column: 1 / 7;
  grid-row: 12;
}

.gallery-showroom .gallery-card-26 {
  grid-column: 7 / 13;
  grid-row: 13;
}

.gallery-showroom .gallery-card-01 img { object-position: 50% 54%; }
.gallery-showroom .gallery-card-02 img { object-position: 50% 48%; }
.gallery-showroom .gallery-card-04 img { object-position: 50% 52%; }
.gallery-showroom .gallery-card-05 img { object-position: 52% 50%; }
.gallery-showroom .gallery-card-06 img { object-position: 50% 58%; }
.gallery-showroom .gallery-card-07 img { object-position: 50% 52%; }
.gallery-showroom .gallery-card-08 img { object-position: 50% 54%; }
.gallery-showroom .gallery-card-09 img { object-position: 50% 50%; }
.gallery-showroom .gallery-card-10 img { object-position: 50% 48%; }
.gallery-showroom .gallery-card-11 img { object-position: 48% 50%; }
.gallery-showroom .gallery-card-12 img { object-position: 50% 46%; }
.gallery-showroom .gallery-card-13 img { object-position: 50% 48%; }
.gallery-showroom .gallery-card-14 img { object-position: 50% 50%; }
.gallery-showroom .gallery-card-15 img { object-position: 50% 47%; }
.gallery-showroom .gallery-card-16 img { object-position: 50% 45%; }
.gallery-showroom .gallery-card-17 img { object-position: 50% 48%; }
.gallery-showroom .gallery-card-18 img { object-position: 50% 50%; }
.gallery-showroom .gallery-card-19 img { object-position: 48% 50%; }
.gallery-showroom .gallery-card-20 img { object-position: 50% 52%; }
.gallery-showroom .gallery-card-21 img { object-position: 50% 48%; }
.gallery-showroom .gallery-card-22 img { object-position: 50% 45%; }
.gallery-showroom .gallery-card-23 img { object-position: 50% 48%; }
.gallery-showroom .gallery-card-24 img { object-position: 50% 50%; }
.gallery-showroom .gallery-card-25 img { object-position: 50% 48%; }
.gallery-showroom .gallery-card-26 img { object-position: 50% 46%; }

.gallery-showroom .gallery-caption {
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 18px;
  gap: 5px;
}

.gallery-showroom .gallery-caption span {
  font-size: 16px;
  line-height: 1.1;
}

.gallery-showroom .gallery-caption small {
  max-width: 360px;
  color: rgba(255, 250, 244, 0.78);
  font-size: 11.5px;
  line-height: 1.38;
}

.gallery-showroom .gallery-feature-card .gallery-caption {
  left: 24px;
  right: 24px;
  bottom: 22px;
}

.gallery-showroom .gallery-feature-card .gallery-caption span {
  font-size: 19px;
}

.gallery-showroom .gallery-feature-card .gallery-caption small {
  font-size: 12px;
}

@media (max-width: 980px) {
  .gallery-editorial-grid {
    grid-template-rows: 210px 210px 260px 230px;
    gap: 14px;
  }
}

@media (max-width: 900px) {
  .gallery-showroom {
    padding: 20px 0 40px;
  }

  .gallery-editorial-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 14px;
  }

  .gallery-showroom .gallery-card,
  .gallery-showroom .gallery-card-01,
  .gallery-showroom .gallery-card-02,
  .gallery-showroom .gallery-card-04,
  .gallery-showroom .gallery-card-05,
  .gallery-showroom .gallery-card-06,
  .gallery-showroom .gallery-card-07 {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    min-height: 0;
    height: auto;
    aspect-ratio: 1.22;
    border-radius: 18px;
  }

  .gallery-showroom .gallery-card-01,
  .gallery-showroom .gallery-card-04,
  .gallery-showroom .gallery-card-07 {
    aspect-ratio: 1.34;
  }

  .gallery-showroom .gallery-card img {
    transform: none;
  }

  .gallery-showroom .gallery-caption,
  .gallery-showroom .gallery-feature-card .gallery-caption {
    left: 15px;
    right: 15px;
    bottom: 15px;
  }

  .gallery-showroom .gallery-caption span,
  .gallery-showroom .gallery-feature-card .gallery-caption span {
    font-size: 16px;
  }

  .gallery-showroom .gallery-caption small,
  .gallery-showroom .gallery-feature-card .gallery-caption small {
    max-width: 31rem;
    font-size: 11px;
    line-height: 1.38;
  }
}

@media (max-width: 430px) {
  .gallery-showroom {
    padding-bottom: 34px;
  }

  .gallery-editorial-grid {
    gap: 12px;
  }

  .gallery-showroom .gallery-card,
  .gallery-showroom .gallery-card-01,
  .gallery-showroom .gallery-card-02,
  .gallery-showroom .gallery-card-04,
  .gallery-showroom .gallery-card-05,
  .gallery-showroom .gallery-card-06,
  .gallery-showroom .gallery-card-07 {
    aspect-ratio: 1.12;
  }

  .gallery-showroom .gallery-card-01,
  .gallery-showroom .gallery-card-04,
  .gallery-showroom .gallery-card-07 {
    aspect-ratio: 1.24;
  }
}

.step-viewport[hidden],
.wizard-actions[hidden],
.wizard-success[hidden] {
  display: none !important;
}
