:root {
  color-scheme: dark;
  --black: #0f0f0f;
  --black-soft: #151516;
  --black-deep: #090909;
  --gold: #c6a75e;
  --ivory: #f4f1ea;
  --taupe: #b8aa9a;
  --darkText: #1d1d1d;
  --muted: rgba(244, 241, 234, 0.72);
  --muted-soft: rgba(244, 241, 234, 0.56);
  --line: rgba(255, 255, 255, 0.08);
  --gold-line: rgba(198, 167, 94, 0.26);
  --panel: rgba(255, 255, 255, 0.03);
  --panel-strong: rgba(255, 255, 255, 0.05);
  --shadow: 0 28px 72px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.18);
  --radius: 24px;
  --radius-small: 18px;
  --container: min(1240px, calc(100% - 2rem));
  --transition: 240ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
  color: var(--ivory);
  line-height: 1.6;
  background:
    radial-gradient(circle at 12% 0%, rgba(198, 167, 94, 0.08), transparent 28%),
    radial-gradient(circle at 82% 4%, rgba(34, 43, 58, 0.16), transparent 22%),
    linear-gradient(180deg, #101011 0%, #0e0e10 28%, #0f0f0f 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.08;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.26), transparent 72%);
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 1200;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--darkText);
  transform: translateY(-140%);
  transition: transform var(--transition);
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.hero,
.section,
.site-footer {
  scroll-margin-top: 6.5rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.86), transparent);
  transition:
    background var(--transition),
    backdrop-filter var(--transition),
    border-color var(--transition);
}

.site-header.is-scrolled,
.site-header.menu-active {
  background: rgba(15, 15, 15, 0.8);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5rem;
}

.brand {
  display: inline-grid;
  gap: 0.05rem;
}

.brand-mark,
.footer-brand {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 1.3rem + 1vw, 2.15rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-copy,
.footer-copy {
  color: var(--taupe);
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-copy {
  letter-spacing: 0.03em;
  text-transform: none;
}

.site-navigation {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  font-size: 0.95rem;
}

.site-navigation a {
  position: relative;
  color: rgba(244, 241, 234, 0.88);
}

.site-navigation a:not(.button)::after,
.footer-links a::after,
.contact-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.22rem;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.site-navigation a:hover::after,
.footer-links a:hover::after,
.contact-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 1px;
  margin: 0.35rem 0;
  background: #fff;
  transition: transform var(--transition), opacity var(--transition);
}

.site-header.menu-active .menu-toggle span:nth-child(1) {
  transform: translateY(0.43rem) rotate(45deg);
}

.site-header.menu-active .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-active .menu-toggle span:nth-child(3) {
  transform: translateY(-0.43rem) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--darkText);
  background: linear-gradient(135deg, #d9bc78, var(--gold));
  box-shadow: 0 14px 34px rgba(198, 167, 94, 0.16);
}

.button-primary:hover {
  box-shadow: 0 18px 38px rgba(198, 167, 94, 0.2);
}

.button-secondary,
.button-outline {
  color: var(--ivory);
  border-color: var(--gold-line);
  background: rgba(255, 255, 255, 0.025);
}

.button-secondary:hover,
.button-outline:hover {
  border-color: rgba(198, 167, 94, 0.44);
  background: rgba(255, 255, 255, 0.06);
}

.button-small {
  min-height: 2.8rem;
  padding-inline: 1rem;
  font-size: 0.92rem;
}

.button-strong {
  min-height: 3.7rem;
}

.button-full {
  width: 100%;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: min(92vh, 100svh);
  min-height: 760px;
  display: flex;
  align-items: stretch;
  overflow: clip;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero img,
.hero-media img {
  object-position: 64% center;
  transform: scale(1.045);
  filter: brightness(0.82) contrast(1.12) saturate(0.94) sepia(0.12);
  animation: heroImageEntrance 1.8s ease-out forwards;
}

.hero-overlay {
  background:
    linear-gradient(
      180deg,
      rgba(15, 15, 15, 0.2) 0%,
      rgba(15, 15, 15, 0.08) 22%,
      rgba(15, 15, 15, 0.26) 62%,
      rgba(15, 15, 15, 0.48) 100%
    ),
    linear-gradient(
      to right,
      rgba(15, 15, 15, 0.9) 0%,
      rgba(15, 15, 15, 0.72) 28%,
      rgba(15, 15, 15, 0.28) 62%,
      rgba(15, 15, 15, 0) 100%
    ),
    radial-gradient(
      circle at 18% 32%,
      rgba(198, 167, 94, 0.1) 0%,
      rgba(15, 15, 15, 0.18) 28%,
      transparent 56%
    ),
    radial-gradient(
      circle at 82% 22%,
      rgba(0, 0, 0, 0.2) 0%,
      transparent 26%
    );
}

.hero::after {
  content: none;
}

.hero-shell {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 7.5rem;
  padding-bottom: 4.4rem;
  padding-left: 8.25vw;
  padding-right: 5vw;
  display: flex;
  align-items: flex-start;
}

.hero-content {
  max-width: 640px;
  margin-top: clamp(12rem, 26vh, 19rem);
  opacity: 1;
  transform: none;
  animation: none;
}

.hero h1,
.section h2,
.section h3,
.location-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.02em;
}

.hero h1 {
  max-width: 10.8ch;
  color: var(--ivory);
  font-size: clamp(4rem, 4.6vw + 1.15rem, 5.2rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.hero-price {
  margin: 1.4rem 0 0;
  color: #f2e4c0;
  font-size: clamp(1.18rem, 1rem + 0.42vw, 1.45rem);
  font-weight: 700;
  line-height: 1.3;
}

.hero-intro,
.section-intro,
.location-card p,
.form-note {
  color: var(--muted);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.1rem);
}

.hero-intro {
  max-width: 34rem;
  margin: 1.5rem 0 0;
  color: rgba(244, 241, 234, 0.76);
  font-size: clamp(1.125rem, 1.05rem + 0.35vw, 1.3rem);
  line-height: 1.68;
}

.hero-facts {
  max-width: 34rem;
  margin: 1.65rem 0 0;
  color: rgba(244, 241, 234, 0.7);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.6;
}

.hero-urgency {
  max-width: 34rem;
  margin: 0.95rem 0 0;
  color: rgba(242, 228, 192, 0.88);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.55;
}

.hero-actions,
.cta-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.2rem;
}

.hero .button {
  min-height: 3.55rem;
  padding: 0.875rem 1.75rem;
  font-weight: 600;
}

.hero .button-primary {
  background: #c6a75e;
  color: #0f0f0f;
  box-shadow: none;
}

.hero .button-primary:hover {
  background: #d3b870;
  color: #0f0f0f;
  box-shadow: none;
}

.hero .button-secondary {
  border: 1px solid rgba(198, 167, 94, 0.75);
  background: transparent;
  color: #f4f1ea;
}

.hero .button-secondary:hover {
  background: #c6a75e;
  border-color: #c6a75e;
  color: #0f0f0f;
}

.hero-eyebrow {
  letter-spacing: 0.18em;
}

.hero-eyebrow,
.hero h1,
.hero-price,
.hero-subheadline,
.hero-facts,
.hero-urgency,
.hero-actions {
  opacity: 0;
  transform: translateY(18px);
  animation: heroFadeUp 0.9s ease-out forwards;
}

.hero-eyebrow {
  animation-delay: 100ms;
}

.hero h1 {
  animation-delay: 180ms;
}

.hero-price {
  animation-delay: 220ms;
}

.hero-subheadline {
  animation-delay: 260ms;
}

.hero-facts {
  animation-delay: 300ms;
}

.hero-urgency {
  animation-delay: 320ms;
}

.hero-actions {
  animation-delay: 340ms;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

.section {
  position: relative;
  padding: clamp(5.2rem, 8.8vw, 7.4rem) 0;
  overflow: clip;
}

.section h2 {
  font-size: clamp(2.4rem, 6.6vw, 4.7rem);
}

.section-head-centered,
.narrow-copy {
  max-width: 52rem;
  margin-inline: auto;
  text-align: center;
}

.location-label,
.step-number,
.room-label {
  color: var(--gold);
}

.section-gallery {
  padding: 5rem 0;
  background:
    linear-gradient(180deg, rgba(15, 15, 15, 0.65), transparent 26%),
    linear-gradient(180deg, #0d0d0f 0%, #111214 100%);
}

.gallery-layout {
  display: grid;
  gap: 2rem;
}

.gallery-head {
  max-width: 56rem;
}

.gallery-head .section-intro {
  max-width: 44rem;
  margin: 1.15rem auto 0;
}

.impact-gallery {
  display: grid;
  gap: 1.5rem;
}

.impact-gallery-top,
.impact-gallery-stack,
.impact-gallery-bottom {
  display: grid;
  gap: 1.5rem;
}

.gallery-item,
.media-panel,
.gallery-room,
.location-card,
.ideal-card,
.step-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.section-gallery .gallery-item {
  border-radius: 16px;
}

.gallery-item,
.media-panel,
.gallery-room {
  background: rgba(255, 255, 255, 0.015);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.14);
}

.gallery-item img,
.media-panel img,
.gallery-room img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease, filter 520ms ease;
}

.gallery-item::after,
.media-panel::after,
.gallery-room::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gallery-item::after,
.gallery-room::after {
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.02), rgba(10, 10, 10, 0.1) 46%, rgba(10, 10, 10, 0.36));
}

.media-panel::after {
  background:
    radial-gradient(circle at 72% 20%, rgba(255, 232, 190, 0.06), transparent 22%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.04), rgba(10, 10, 10, 0.12) 46%, rgba(10, 10, 10, 0.42));
}

.gallery-item img {
  filter: brightness(0.88) contrast(1.08) saturate(0.92);
}

.media-panel img {
  filter: brightness(0.84) contrast(1.1) saturate(0.9) sepia(0.05);
}

.gallery-room img {
  filter: brightness(0.86) contrast(1.08) saturate(0.9) sepia(0.05);
}

.gallery-item:hover img,
.media-panel:hover img,
.gallery-room:hover img {
  transform: scale(1.03);
}

.gallery-item:hover img {
  filter: brightness(0.93) contrast(1.1) saturate(0.96);
}

.media-panel:hover img {
  filter: brightness(0.89) contrast(1.12) saturate(0.95) sepia(0.05);
}

.gallery-room:hover img {
  filter: brightness(0.9) contrast(1.1) saturate(0.94) sepia(0.05);
}

.gallery-item-main {
  min-height: clamp(24rem, 44vw, 38rem);
}

.gallery-item-stack {
  min-height: clamp(15rem, 20vw, 18.5rem);
}

.gallery-item-bottom {
  min-height: clamp(15rem, 22vw, 18rem);
}

.gallery-item-wide {
  min-height: 20rem;
}

.gallery-item-tall,
.gallery-item {
  min-height: 18rem;
}

.gallery-values {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem 2rem;
  margin-top: 0.25rem;
}

.gallery-values p {
  margin: 0;
  color: rgba(244, 241, 234, 0.82);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gallery-values p::before {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 1px;
  margin-right: 0.7rem;
  vertical-align: middle;
  background: rgba(198, 167, 94, 0.7);
}

.gallery-cta {
  max-width: 44rem;
  margin-top: 0.7rem;
}

.gallery-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(244, 241, 234, 0.82);
  font-size: 0.98rem;
  font-weight: 600;
  transition: color var(--transition);
}

.gallery-link::after {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: rgba(198, 167, 94, 0.72);
  transition: width var(--transition), background var(--transition);
}

.gallery-link:hover {
  color: var(--gold);
}

.gallery-link:hover::after {
  width: 3rem;
  background: var(--gold);
}

.gallery-cta-text {
  margin: 0;
  color: var(--ivory);
  font-size: clamp(1.05rem, 1rem + 0.3vw, 1.2rem);
  line-height: 1.5;
}

.gallery-cta-actions {
  justify-content: center;
  margin-top: 1.4rem;
}

.section-design-identity {
  position: relative;
  background:
    radial-gradient(circle at 76% 28%, rgba(198, 167, 94, 0.08), transparent 20%),
    radial-gradient(circle at 18% 22%, rgba(48, 32, 14, 0.14), transparent 22%),
    linear-gradient(180deg, #090909 0%, #111113 100%);
  padding: 0;
}

.section-location-bosco {
  position: relative;
  background: #0f0f0f;
  padding: 0;
}

.location-bosco-stage {
  position: relative;
  min-height: max(760px, 88vh);
  overflow: hidden;
  background: #0f0f0f;
}

.location-bosco-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(15, 15, 15, 0.72) 0%,
    rgba(15, 15, 15, 0.55) 40%,
    rgba(15, 15, 15, 0.25) 70%,
    rgba(15, 15, 15, 0.05) 100%
  );
}

.location-bosco-media {
  position: absolute;
  inset: 0;
  margin: 0;
}

.location-bosco-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.82) contrast(1.08) saturate(0.92);
}

.location-bosco-copy {
  position: relative;
  z-index: 2;
  min-height: max(760px, 88vh);
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding:
    clamp(5.2rem, 8vw, 7.6rem)
    clamp(1.35rem, 5vw, 4.2rem)
    clamp(4.2rem, 7vw, 6rem)
    7vw;
}

.location-bosco-copy h2 {
  max-width: 620px;
  margin: 0;
  color: var(--ivory);
  font-size: clamp(3.8rem, 5.9vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.location-bosco-copy .section-intro {
  max-width: 620px;
  margin: 1.7rem 0 0;
  color: rgba(244, 241, 234, 0.92);
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
  line-height: 1.4;
}

.location-bosco-body {
  max-width: 620px;
  margin: 1.7rem 0 0;
  color: rgba(244, 241, 234, 0.78);
  font-size: clamp(1rem, 1.08vw, 1.14rem);
  line-height: 1.72;
}

.location-bosco-meta {
  max-width: 620px;
  margin: 1.1rem 0 0;
  color: rgba(244, 241, 234, 0.66);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.design-identity-stage {
  position: relative;
  min-height: clamp(46rem, 92vh, 62rem);
  overflow: hidden;
  background: #050505;
}

.design-identity-media {
  position: absolute;
  inset: 0;
  margin: 0;
  z-index: 0;
  overflow: hidden;
  background: #050505;
}

.design-identity-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 46%;
  display: block;
  filter: brightness(0.54) contrast(1.22) saturate(0.84) sepia(0.18)
    hue-rotate(-8deg);
  transform: translate3d(0, var(--design-parallax-offset, 0px), 0)
    scale(var(--design-identity-scale, 1.06));
  transform-origin: center center;
  transition:
    transform 280ms linear,
    filter 840ms ease;
  will-change: transform;
}

.design-identity-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 35% 76%, rgba(255, 115, 24, 0.16) 0%, transparent 12%),
    radial-gradient(circle at 50% 70%, rgba(219, 161, 71, 0.14) 0%, transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015) 0%, rgba(255, 255, 255, 0) 14%, rgba(0, 0, 0, 0.22) 100%);
}

.design-identity-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(5, 5, 5, 0.97) 0%,
      rgba(5, 5, 5, 0.94) 18%,
      rgba(5, 5, 5, 0.78) 34%,
      rgba(5, 5, 5, 0.48) 46%,
      rgba(5, 5, 5, 0.14) 62%,
      rgba(5, 5, 5, 0) 78%
    ),
    radial-gradient(circle at 80% 40%, rgba(0, 0, 0, 0.16) 0%, transparent 30%);
  box-shadow:
    inset 0 -160px 140px rgba(0, 0, 0, 0.34),
    inset 0 0 120px rgba(0, 0, 0, 0.24);
}

.design-identity-media:hover img {
  filter: brightness(0.58) contrast(1.24) saturate(0.86) sepia(0.18)
    hue-rotate(-8deg);
  transform: translate3d(0, var(--design-parallax-offset, 0px), 0) scale(1.08);
}

.design-identity-media[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 900ms ease,
    transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

.design-identity-media[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.design-identity-shell {
  position: relative;
  z-index: 2;
  width: min(1480px, calc(100% - 2rem));
  min-height: inherit;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.design-identity-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100%, 33rem);
  padding-block: clamp(4.6rem, 9vh, 6.6rem);
}

.design-identity-copy .eyebrow {
  margin-bottom: 1.4rem;
  color: rgba(242, 228, 192, 0.92);
  letter-spacing: 0.22em;
}

.design-identity-copy h2 {
  max-width: 8.2ch;
  margin: 0;
  color: var(--ivory);
  font-size: clamp(4.2rem, 6vw, 6.25rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.design-identity-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  color: #f2d08c;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition:
    color var(--transition),
    transform var(--transition);
}

.design-identity-link::after {
  content: none;
}

.design-identity-link:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.design-identity-link:hover::after {
  content: none;
}

.design-identity-body {
  max-width: 25rem;
  margin: 2.2rem 0 0;
}

.design-identity-body p {
  margin: 0;
}

.design-identity-intro {
  color: rgba(244, 241, 234, 0.78);
  font-size: clamp(1.16rem, 1.08rem + 0.26vw, 1.34rem);
  line-height: 1.72;
}

.design-identity-presence {
  margin-top: 1.9rem;
  color: rgba(244, 241, 234, 0.9);
  font-size: clamp(1.16rem, 1.06rem + 0.32vw, 1.36rem);
  line-height: 1.64;
}

.design-identity-details {
  display: grid;
  gap: 1.05rem;
  max-width: 26rem;
  padding: 1.55rem 0 0;
  margin: 2.25rem 0 0;
  list-style: none;
  border-top: 1px solid rgba(198, 167, 94, 0.18);
}

.design-identity-details li {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(244, 241, 234, 0.84);
  font-size: 1rem;
  line-height: 1.5;
}

.design-identity-details li::before {
  content: "";
  flex: none;
  width: 1.75rem;
  height: 1.75rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.9;
}

.design-identity-detail-chair::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none'%3E%3Cpath d='M7 12.5V18.5M21 12.5V18.5M9 12.5H19C19.55 12.5 20 12.95 20 13.5V18.5H8V13.5C8 12.95 8.45 12.5 9 12.5Z' stroke='%23d7c39a' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9 18.5V21M19 18.5V21M8 21H20' stroke='%23d7c39a' stroke-width='1.4' stroke-linecap='round'/%3E%3Cpath d='M10 9.5C10 8.67 10.67 8 11.5 8H16.5C17.33 8 18 8.67 18 9.5V12.5H10V9.5Z' stroke='%23d7c39a' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.design-identity-detail-light::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none'%3E%3Ccircle cx='14' cy='14' r='4.25' stroke='%23d7c39a' stroke-width='1.4'/%3E%3Cpath d='M14 4.75V7.25M14 20.75V23.25M23.25 14H20.75M7.25 14H4.75M20.54 7.46L18.77 9.23M9.23 18.77L7.46 20.54M20.54 20.54L18.77 18.77M9.23 9.23L7.46 7.46' stroke='%23d7c39a' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E");
}

.design-identity-detail-screen::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none'%3E%3Cpath d='M6 5.5V22.5M10.67 5.5V22.5M15.33 5.5V22.5M20 5.5V22.5' stroke='%23d7c39a' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E");
}

.design-identity-detail-marble::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none'%3E%3Cpath d='M5.5 21.5L10.75 6.5M11 21.5L16.75 10M16.5 21.5L22.5 6.75M4.75 10.5C6.6 8.7 8.45 8.2 10.3 9M10.1 17.25C11.8 15.8 13.85 15.55 16.1 16.5M15.25 11.25C17 9.55 19.15 9.2 21.75 10.4' stroke='%23d7c39a' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.design-identity-copy .design-identity-link {
  margin-top: 3rem;
}

.section-space,
.section-kitchen,
.section-extra,
.section-booking {
  background:
    radial-gradient(circle at 84% 14%, rgba(198, 167, 94, 0.07), transparent 18%),
    linear-gradient(180deg, #0d0d0f 0%, #121214 100%);
}

.section-living,
.section-bedrooms,
.section-location,
.section-checkin {
  background:
    radial-gradient(circle at 14% 12%, rgba(198, 167, 94, 0.08), transparent 22%),
    linear-gradient(180deg, #101113 0%, #0d0d0f 100%);
}

.section-wellness,
.section-parking,
.section-ideal,
.section-availability,
.section-statement {
  background:
    radial-gradient(circle at 84% 12%, rgba(34, 44, 60, 0.16), transparent 22%),
    linear-gradient(180deg, #0c0c0d 0%, #101113 100%);
}

.split-section {
  display: grid;
  gap: clamp(2rem, 4vw, 3.4rem);
  align-items: center;
}

.split-copy {
  max-width: 31rem;
}

.split-copy .section-intro {
  margin: 1.15rem 0 0;
}

.space-body {
  max-width: 29rem;
  margin: 1.3rem 0 0;
  color: rgba(244, 241, 234, 0.68);
  font-size: 1rem;
  line-height: 1.72;
}

.section-wellness {
  background:
    radial-gradient(circle at 18% 16%, rgba(198, 167, 94, 0.1), transparent 24%),
    radial-gradient(circle at 84% 14%, rgba(54, 40, 18, 0.14), transparent 24%),
    linear-gradient(180deg, #090909 0%, #111113 100%);
}

.section-wellness::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 24%),
    radial-gradient(circle at 76% 24%, rgba(198, 167, 94, 0.08), transparent 20%),
    radial-gradient(circle at 50% 100%, rgba(0, 0, 0, 0.34), transparent 48%);
}

.wellness-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}

.wellness-copy {
  max-width: 28rem;
}

.wellness-title {
  max-width: 7.2ch;
}

.wellness-subtext {
  max-width: 24rem;
  margin: 1.35rem 0 0;
  color: rgba(244, 241, 234, 0.8);
  line-height: 1.65;
}

.wellness-body {
  max-width: 24rem;
  margin: 1.2rem 0 0;
  color: rgba(244, 241, 234, 0.7);
  font-size: 1rem;
  line-height: 1.7;
}

.wellness-feature-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.wellness-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.95rem 0;
  border-top: 1px solid rgba(198, 167, 94, 0.14);
  color: rgba(244, 241, 234, 0.86);
  line-height: 1.55;
}

.wellness-feature-list li::before {
  content: "";
  flex: none;
  width: 0.75rem;
  height: 1px;
  margin-top: 0.78rem;
  background: rgba(198, 167, 94, 0.72);
}

.wellness-feature-list li:last-child {
  border-bottom: 1px solid rgba(198, 167, 94, 0.12);
}

.wellness-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.25rem;
}

.wellness-stage {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: clamp(0.85rem, 1.8vw, 1rem);
  border: 1px solid rgba(198, 167, 94, 0.1);
  border-radius: clamp(1.5rem, 3vw, 2rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.24);
}

.wellness-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(circle at 18% 14%, rgba(198, 167, 94, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.22));
}

.wellness-hero-card,
.wellness-detail-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 0;
  border-radius: clamp(1.15rem, 2.4vw, 1.6rem);
  background: #0b0b0c;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
  isolation: isolate;
}

.wellness-hero-card {
  min-height: clamp(24rem, 42vw, 34rem);
}

.wellness-detail-grid {
  display: grid;
  gap: 1rem;
}

.wellness-detail-card {
  min-height: clamp(14rem, 22vw, 18rem);
}

.wellness-hero-card img,
.wellness-detail-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.79) contrast(1.08) saturate(0.92) sepia(0.14);
  transform: scale(1.02);
  transition: transform 680ms ease, filter 680ms ease;
}

.wellness-hero-card img {
  object-position: 50% center;
  filter: brightness(0.74) contrast(1.1) saturate(0.94) sepia(0.16);
}

.wellness-detail-card-vanity img {
  object-position: 50% center;
}

.wellness-detail-card-shower img {
  object-position: center 50%;
  filter: brightness(0.7) contrast(1.12) saturate(0.88) sepia(0.16);
}

.wellness-hero-card::before,
.wellness-detail-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(12, 12, 12, 0.03) 0%, rgba(12, 12, 12, 0.1) 38%, rgba(12, 12, 12, 0.44) 100%),
    radial-gradient(circle at 16% 18%, rgba(220, 187, 110, 0.16), transparent 34%),
    radial-gradient(circle at 82% 82%, rgba(0, 0, 0, 0.34), transparent 42%);
}

.wellness-hero-card::after,
.wellness-detail-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 -50px 70px rgba(0, 0, 0, 0.22),
    inset 0 0 72px rgba(0, 0, 0, 0.14);
}

.wellness-hero-card:hover img,
.wellness-detail-card:hover img {
  transform: scale(1.05);
  filter: brightness(0.83) contrast(1.12) saturate(0.96) sepia(0.16);
}

.wellness-detail-card-shower:hover img {
  filter: brightness(0.75) contrast(1.14) saturate(0.92) sepia(0.16);
}

.detail-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.detail-list li {
  padding: 1rem 0;
  border-top: 1px solid var(--gold-line);
  color: rgba(244, 241, 234, 0.86);
}

.detail-list li:last-child {
  border-bottom: 1px solid rgba(198, 167, 94, 0.16);
}

.section-space .media-panel {
  min-height: clamp(22rem, 46vw, 36rem);
}

.split-section-wide .media-panel {
  min-height: clamp(28rem, 54vw, 44rem);
}

.section-space .media-panel img {
  filter: brightness(0.8) contrast(1.12) saturate(0.88) sepia(0.08);
  object-position: 58% center;
}

.space-stage {
  position: relative;
  padding:
    clamp(0.8rem, 1.6vw, 1rem)
    0
    clamp(2rem, 4vw, 2.6rem)
    clamp(1.3rem, 3vw, 2.4rem);
}

.section-space .space-panel-main {
  min-height: clamp(25rem, 48vw, 38rem);
  border-radius: 24px;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.24);
}

.space-panel-main::after {
  background:
    radial-gradient(circle at 82% 14%, rgba(198, 167, 94, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.04), rgba(10, 10, 10, 0.1) 44%, rgba(10, 10, 10, 0.46));
}

.section-space .space-panel-detail {
  position: absolute;
  left: 0;
  bottom: 0;
  width: clamp(12rem, 22vw, 18rem);
  min-height: clamp(15rem, 24vw, 20rem);
  border: 1px solid rgba(198, 167, 94, 0.12);
  background: rgba(12, 12, 12, 0.9);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.section-space .space-panel-detail img {
  object-position: 64% center;
  filter: brightness(0.76) contrast(1.12) saturate(0.86) sepia(0.1);
}

.space-note {
  position: absolute;
  right: clamp(1rem, 2.8vw, 1.8rem);
  bottom: clamp(1rem, 2.8vw, 1.8rem);
  z-index: 2;
  max-width: 16rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(198, 167, 94, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(12, 12, 12, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}

.space-note-label {
  margin: 0;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.space-note-copy {
  margin: 0.55rem 0 0;
  color: rgba(244, 241, 234, 0.72);
  font-size: 0.9rem;
  line-height: 1.55;
}

.section-living {
  position: relative;
  padding:
    clamp(1rem, 1.8vw, 1.5rem)
    0
    clamp(5.4rem, 8.5vw, 7rem);
  background:
    radial-gradient(circle at 16% 10%, rgba(198, 167, 94, 0.06), transparent 22%),
    linear-gradient(180deg, #0b0b0c 0%, #101113 100%);
}

.section-living::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent 18%),
    linear-gradient(180deg, rgba(15, 15, 15, 0), rgba(15, 15, 15, 0.14) 100%);
}

.living-stage {
  position: relative;
  width: 100%;
  min-height: max(780px, 96vh);
  margin: 0 auto;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(198, 167, 94, 0.1);
  border-radius: 30px;
  background: #090909;
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.3);
}

.living-visual,
.living-overlay,
.living-copy {
  position: absolute;
  inset: 0;
}

.living-visual {
  z-index: 0;
  margin: 0;
}

.living-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 54% center;
  filter: brightness(0.74) contrast(1.14) saturate(0.88) sepia(0.1);
  transform: scale(1.02);
  transition:
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.living-overlay {
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 28% 24%,
      rgba(198, 167, 94, 0.16),
      transparent 32%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.14) 0%,
      rgba(0, 0, 0, 0.18) 30%,
      rgba(0, 0, 0, 0.38) 72%,
      rgba(0, 0, 0, 0.56) 100%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.78) 24%,
      rgba(0, 0, 0, 0.48) 48%,
      rgba(0, 0, 0, 0.18) 72%,
      rgba(0, 0, 0, 0.04) 100%
    );
}

.living-copy {
  z-index: 2;
  display: flex;
  align-items: center;
  padding:
    clamp(5.2rem, 9vh, 7rem)
    clamp(2rem, 4vw, 4rem)
    clamp(4.8rem, 8vh, 6.4rem)
    5.2rem;
}

.living-copy-inner {
  width: 100%;
  max-width: 500px;
  margin-left: clamp(0rem, 0.4vw, 0.35rem);
}

.living-heading {
  margin: 0;
  display: grid;
  gap: 0.5rem;
  max-width: 9.5ch;
  color: var(--ivory);
  font-size: clamp(3.4rem, 5.9vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.038em;
}

.living-heading-line {
  display: block;
}

.living-body {
  max-width: 30rem;
  margin-top: 1.75rem;
}

.living-body .section-intro {
  margin: 0;
  max-width: 24rem;
  color: rgba(244, 241, 234, 0.84);
  line-height: 1.72;
}

.living-body p + p {
  max-width: 28rem;
  margin: 1.4rem 0 0;
  color: rgba(244, 241, 234, 0.72);
  line-height: 1.82;
}

.living-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.35rem;
  margin: 2.45rem 0 0;
  padding: 0;
  list-style: none;
  max-width: 29rem;
}

.living-features li {
  position: relative;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(198, 167, 94, 0.2);
  color: rgba(244, 241, 234, 0.8);
  font-size: 0.98rem;
  line-height: 1.58;
}

.living-features li::before {
  content: "";
  display: block;
  width: 1.15rem;
  height: 1.15rem;
  margin-bottom: 0.7rem;
  border: 1px solid rgba(198, 167, 94, 0.48);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(198, 167, 94, 0.72) 0 22%, transparent 24%);
}

.living-cta {
  margin-top: 2.6rem;
  gap: 1rem;
}

.living-stage:hover .living-visual img {
  transform: scale(1.03);
}

.section-living [data-reveal] {
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.section-living .living-visual[data-reveal] {
  opacity: 0;
  transform: scale(1.01);
  transition:
    opacity 600ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.section-living .living-visual[data-reveal] img {
  filter: brightness(0.66) contrast(1.08) saturate(0.84) sepia(0.08);
}

.section-living .living-visual[data-reveal].is-visible {
  opacity: 1;
  transform: scale(1);
}

.section-living .living-visual[data-reveal].is-visible img {
  filter: brightness(0.74) contrast(1.14) saturate(0.88) sepia(0.1);
}

.section-living .living-overlay[data-reveal] {
  opacity: 0;
  transition: opacity 720ms cubic-bezier(0.22, 1, 0.36, 1) 120ms;
}

.section-living .living-overlay[data-reveal].is-visible {
  opacity: 1;
}

.section-living .eyebrow[data-reveal] {
  opacity: 0;
  transform: translate(-24px, 10px);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.section-living .eyebrow[data-reveal].is-visible,
.section-living .living-heading-line[data-reveal].is-visible,
.section-living .living-body[data-reveal].is-visible,
.section-living .living-features li[data-reveal].is-visible,
.section-living .living-cta [data-reveal].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.section-living .living-heading-line[data-reveal] {
  opacity: 0;
  transform: translateX(-20px);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.section-living .living-body[data-reveal],
.section-living .living-features li[data-reveal],
.section-living .living-cta [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 69.99rem) {
  .section-living {
    padding-top: 0.9rem;
  }

  .living-stage {
    width: 100%;
    min-height: 85vh;
    border-radius: 24px;
  }

  .living-overlay {
    background:
      radial-gradient(
        circle at 18% 34%,
        rgba(198, 167, 94, 0.08),
        transparent 42%
      ),
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.18) 0%,
        rgba(0, 0, 0, 0.34) 30%,
        rgba(0, 0, 0, 0.56) 72%,
        rgba(0, 0, 0, 0.72) 100%
      ),
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.38) 36%,
        rgba(0, 0, 0, 0.14) 70%,
        rgba(0, 0, 0, 0.03) 100%
      );
  }

  .living-copy {
    align-items: flex-end;
    padding:
      clamp(2rem, 7vw, 3rem)
      1.25rem
      clamp(1.8rem, 7vw, 2.4rem);
  }

  .living-copy-inner {
    max-width: 100%;
  }

  .living-heading {
    max-width: 8.8ch;
    font-size: clamp(2.95rem, 10.6vw, 4.4rem);
    line-height: 0.95;
  }

  .living-body {
    margin-top: 1.5rem;
  }

  .living-body .section-intro {
    max-width: 25rem;
  }

  .living-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem 1rem;
    margin-top: 2rem;
  }

  .living-features li::before {
    margin-bottom: 0.6rem;
  }

  .living-cta {
    flex-direction: column;
    align-items: stretch;
    margin-top: 2.2rem;
  }

  .living-cta .button {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-living .living-visual[data-reveal],
  .section-living .living-overlay[data-reveal],
  .section-living .eyebrow[data-reveal],
  .section-living .living-heading-line[data-reveal],
  .section-living .living-body[data-reveal],
  .section-living .living-features li[data-reveal],
  .section-living .living-cta [data-reveal] {
    transition: none;
    opacity: 1;
    transform: none;
  }

  .living-visual img,
  .living-stage:hover .living-visual img {
    transition: none;
    transform: none;
  }
}

.section-kitchen {
  background:
    radial-gradient(circle at 84% 14%, rgba(198, 167, 94, 0.05), transparent 18%),
    linear-gradient(180deg, #0f0f0f 0%, #111214 100%);
}

.kitchen-layout {
  display: grid;
  gap: clamp(2rem, 4vw, 3.4rem);
  align-items: start;
}

.kitchen-copy {
  max-width: 31rem;
  padding-top: clamp(0.35rem, 1vw, 0.8rem);
}

.kitchen-features {
  display: grid;
  gap: 0.8rem;
  margin: 1.9rem 0 0;
  padding: 0;
  list-style: none;
}

.kitchen-features li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(244, 241, 234, 0.84);
  font-size: 0.98rem;
  line-height: 1.55;
}

.kitchen-features li::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: rgba(198, 167, 94, 0.86);
  flex: 0 0 auto;
}

.kitchen-visuals {
  display: grid;
  gap: 1.15rem;
}

.section-kitchen .media-panel {
  border-radius: 16px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.18);
}

.kitchen-main {
  min-height: clamp(23rem, 46vw, 36rem);
}

.kitchen-main img {
  object-position: 50% center;
}

.kitchen-support {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.kitchen-support-item {
  min-height: 12.5rem;
}

.kitchen-support-item:first-child img {
  object-position: 54% center;
}

.kitchen-support-item:last-child img {
  object-position: 46% center;
}

.section-kitchen .media-panel:hover img {
  transform: scale(1.03);
}

.rooms-head {
  margin-bottom: 2.4rem;
}

.bedrooms-capacity {
  margin: 1.35rem auto 0;
  max-width: 32rem;
  color: rgba(244, 241, 234, 0.78);
  font-size: 0.98rem;
  letter-spacing: 0.015em;
}

.bedroom-gallery {
  display: grid;
  gap: 1rem;
}

.gallery-room-master {
  min-height: 24rem;
}

.gallery-room-family,
.gallery-room-alt {
  min-height: 18rem;
}

.gallery-room img {
  filter: brightness(0.9) contrast(1.04) saturate(0.94);
}

.gallery-room-master img {
  object-position: 50% center;
}

.gallery-room-family img {
  object-position: 50% center;
}

.gallery-room-alt img {
  object-position: center;
}

.bedrooms-details {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.1rem;
}

.room-note {
  padding-top: 1.15rem;
  border-top: 1px solid var(--gold-line);
}

.room-label {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.room-copy {
  max-width: 28rem;
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.bedrooms-meta {
  margin-top: 2rem;
}

.stacked-media {
  display: grid;
  gap: 1rem;
}

.stacked-media .media-panel:first-child {
  min-height: 24rem;
}

.stacked-media .media-panel:last-child {
  min-height: 24rem;
}

.stacked-media .media-panel:first-child img {
  object-position: 52% center;
}

.stacked-media .media-panel:last-child img {
  object-position: center;
}

.media-panel-relax-kids img {
  object-position: 50% center;
}

.parking-media {
  display: grid;
  gap: 1rem;
}

.media-panel-garage {
  min-height: 21rem;
}

.media-panel-garage img {
  object-position: 34% center;
}

.media-panel-portrait {
  min-height: 25rem;
}

.media-panel-portrait img {
  object-position: center;
}

.location-card,
.ideal-card,
.step-card,
.form-shell {
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(198, 167, 94, 0.18);
  box-shadow: none;
}

.location-card {
  padding: clamp(1.6rem, 4vw, 2.4rem);
}

.location-label,
.step-number {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.location-card h3 {
  margin-top: 0.8rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.location-card p {
  margin: 1rem 0 0;
}

.ideal-grid,
.steps-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.ideal-card,
.step-card {
  padding: 1.55rem 0 0;
}

.ideal-card {
  background: transparent;
}

.step-card {
  background: transparent;
}

.ideal-card h3,
.step-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.35;
}

.step-card p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.section-availability {
  background:
    radial-gradient(circle at 18% 22%, rgba(198, 167, 94, 0.1), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.03), transparent 18%),
    linear-gradient(180deg, #111214 0%, #0d0d0f 100%);
}

.section-availability::before {
  content: "";
  position: absolute;
  top: 0;
  left: 6vw;
  right: 6vw;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(198, 167, 94, 0),
    rgba(198, 167, 94, 0.22) 18%,
    rgba(198, 167, 94, 0.08) 82%,
    rgba(198, 167, 94, 0)
  );
  pointer-events: none;
}

.availability-layout {
  display: grid;
  gap: clamp(2rem, 4vw, 3.6rem);
  align-items: stretch;
}

.availability-copy {
  max-width: 35rem;
}

.availability-copy h2 {
  max-width: 8ch;
}

.availability-intro {
  max-width: 31rem;
}

.availability-price-block {
  margin-top: 1.5rem;
  padding: 1.2rem 1.3rem;
  border: 1px solid rgba(198, 167, 94, 0.12);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012)),
    rgba(16, 17, 19, 0.56);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

.cta-inline-stacked {
  margin-top: 2.1rem;
}

.availability-actions {
  margin-top: 2rem;
}

.availability-anchor {
  margin: 0;
  color: #f2e4c0;
  font-size: clamp(1.24rem, 1rem + 0.45vw, 1.55rem);
  font-weight: 700;
  line-height: 1.25;
}

.availability-subtext {
  margin: 0.75rem 0 0;
  color: rgba(244, 241, 234, 0.68);
  font-size: 0.98rem;
  line-height: 1.6;
}

.availability-urgency {
  margin: 1.6rem 0 0;
  color: rgba(244, 241, 234, 0.94);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.55;
}

.availability-trust {
  display: grid;
  gap: 0.35rem;
  margin-top: 1.5rem;
}

.availability-trust p {
  margin: 0;
  color: rgba(244, 241, 234, 0.68);
  font-size: 0.94rem;
  line-height: 1.55;
}

.availability-panel {
  display: grid;
  gap: 1.35rem;
}

.availability-card,
.availability-calendar-card,
.availability-fallback {
  border: 1px solid rgba(198, 167, 94, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(16, 17, 19, 0.9);
  box-shadow: 0 26px 52px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.availability-card {
  padding: clamp(1.4rem, 3vw, 2rem);
}

.availability-card-header {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.availability-card-meta {
  display: grid;
  justify-items: end;
  gap: 0.85rem;
  margin-left: auto;
}

.availability-card-note {
  margin: 0.7rem 0 0;
  color: rgba(244, 241, 234, 0.54);
  font-size: 0.84rem;
  line-height: 1.45;
  max-width: 20rem;
}

.availability-calendar-card {
  padding: clamp(1.3rem, 2.6vw, 1.9rem);
}

.availability-calendar-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.availability-calendar-subtitle {
  margin: 0.6rem 0 0;
  color: rgba(244, 241, 234, 0.64);
  font-size: 0.92rem;
  line-height: 1.55;
  max-width: 24rem;
}

.availability-feed-message {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.6rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(244, 241, 234, 0.72);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.35;
  text-align: right;
}

.availability-feed-message.is-live {
  background: rgba(198, 167, 94, 0.08);
  color: #f2e4c0;
}

.availability-feed-message.is-fallback,
.availability-feed-message.is-error {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(244, 241, 234, 0.68);
}

.availability-month-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.availability-nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.65rem 0.95rem;
  border: 1px solid rgba(198, 167, 94, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(244, 241, 234, 0.82);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  transition:
    border-color var(--transition),
    background var(--transition),
    color var(--transition),
    transform var(--transition);
}

.availability-nav-button:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: rgba(198, 167, 94, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.availability-nav-button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.availability-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.3rem;
  margin-top: 1.25rem;
}

.availability-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(244, 241, 234, 0.72);
  font-size: 0.82rem;
  line-height: 1.4;
}

.availability-swatch {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(198, 167, 94, 0.22);
  background: rgba(255, 255, 255, 0.02);
}

.availability-swatch-available {
  background: rgba(244, 241, 234, 0.08);
}

.availability-swatch-unavailable {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.08);
}

.availability-swatch-selected {
  background: rgba(198, 167, 94, 0.9);
  border-color: rgba(198, 167, 94, 0.9);
}

.availability-months {
  display: grid;
  gap: 1rem;
  margin-top: 1.35rem;
}

.availability-month {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.018);
  border: 1px solid rgba(198, 167, 94, 0.08);
}

.availability-month-title {
  margin: 0;
  color: var(--ivory);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.4;
}

.availability-weekdays,
.availability-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.availability-weekdays {
  gap: 0.45rem;
  margin-top: 0.95rem;
}

.availability-weekdays span {
  color: rgba(244, 241, 234, 0.42);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.availability-days {
  gap: 0.45rem;
  margin-top: 0.55rem;
}

.availability-day,
.availability-day-placeholder {
  min-height: 2.7rem;
}

.availability-day-placeholder {
  display: block;
}

.availability-day {
  border: 1px solid rgba(198, 167, 94, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.018);
  color: rgba(244, 241, 234, 0.88);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1;
  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

.availability-day:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: rgba(198, 167, 94, 0.32);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

.availability-day.is-past,
.availability-day.is-unavailable,
.availability-day.is-readonly {
  background: rgba(255, 255, 255, 0.03);
  color: rgba(244, 241, 234, 0.32);
  border-color: rgba(255, 255, 255, 0.04);
  cursor: not-allowed;
  box-shadow: none;
}

.availability-day.is-past {
  color: rgba(244, 241, 234, 0.22);
}

.availability-day.is-unavailable {
  position: relative;
}

.availability-day.is-unavailable::after {
  content: "";
  position: absolute;
  left: 22%;
  right: 22%;
  top: 50%;
  height: 1px;
  background: rgba(244, 241, 234, 0.18);
  transform: rotate(-28deg);
}

.availability-day.is-readonly {
  border-style: dashed;
}

.availability-day.is-selected,
.availability-day.is-arrival,
.availability-day.is-departure {
  background: rgba(198, 167, 94, 0.88);
  color: #0f0f0f;
  border-color: rgba(198, 167, 94, 0.92);
  box-shadow: 0 14px 28px rgba(198, 167, 94, 0.18);
}

.availability-day.is-in-range {
  background: rgba(198, 167, 94, 0.18);
  border-color: rgba(198, 167, 94, 0.2);
  color: rgba(244, 241, 234, 0.94);
}

.availability-selection {
  margin-top: 1.35rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(198, 167, 94, 0.1);
}

.availability-selection-grid {
  display: grid;
  gap: 0.85rem;
}

.availability-selection .form-field input[readonly] {
  cursor: default;
}

.availability-selection .form-field select,
.booking-request-form .form-field select {
  width: 100%;
  border: 1px solid rgba(198, 167, 94, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--ivory);
  padding: 1rem 2.8rem 1rem 1.1rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(244, 241, 234, 0.72) 50%),
    linear-gradient(135deg, rgba(244, 241, 234, 0.72) 50%, transparent 50%);
  background-position:
    calc(100% - 1.2rem) calc(50% - 0.12rem),
    calc(100% - 0.85rem) calc(50% - 0.12rem);
  background-size: 0.38rem 0.38rem, 0.38rem 0.38rem;
  background-repeat: no-repeat;
}

.availability-selection .form-field select:focus,
.booking-request-form .form-field select:focus {
  outline: none;
  border-color: rgba(198, 167, 94, 0.38);
  background-color: rgba(255, 255, 255, 0.035);
  box-shadow:
    0 0 0 4px rgba(198, 167, 94, 0.08),
    0 14px 34px rgba(0, 0, 0, 0.14);
}

.availability-selection-note {
  margin: 1rem 0 0;
  color: rgba(244, 241, 234, 0.64);
  font-size: 0.9rem;
  line-height: 1.55;
}

.availability-selection-cta {
  margin-top: 1rem;
}

.availability-selection-cta.is-disabled {
  opacity: 0.45;
  pointer-events: none;
  box-shadow: none;
}

.availability-fallback {
  padding: clamp(1.35rem, 2.6vw, 1.8rem);
}

.availability-fallback-copy p:last-child {
  margin: 0.6rem 0 0;
  color: rgba(244, 241, 234, 0.68);
  font-size: 0.92rem;
  line-height: 1.6;
}

.booking-request-form-compact {
  margin-top: 1.4rem;
}

.availability-form-grid {
  display: grid;
  gap: 0.85rem;
}

.section-statement {
  padding-block: clamp(3.4rem, 7vw, 5rem);
}

.statement-copy {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.05rem, 5vw, 3.65rem);
  line-height: 1.05;
  color: #f2e4c0;
  text-align: center;
}

.section-final-cta {
  background:
    radial-gradient(circle at 50% 0%, rgba(198, 167, 94, 0.08), transparent 30%),
    linear-gradient(180deg, #0f0f0f 0%, #101011 100%);
  padding-block: clamp(6.25rem, 10vw, 7.5rem);
}

.booking-request {
  max-width: 37.5rem;
  margin: 0 auto;
  text-align: center;
}

.booking-request h2 {
  max-width: 11ch;
  margin-inline: auto;
}

.booking-request .section-intro {
  max-width: 33rem;
  margin: 1.35rem auto 0;
}

.booking-request-trust,
.booking-request-urgency,
.booking-request-advantage,
.booking-request-micro,
.booking-request-secondary {
  margin: 0;
}

.booking-request-trust {
  max-width: 32rem;
  margin: 1.3rem auto 0;
  color: rgba(244, 241, 234, 0.78);
  font-size: 1rem;
  line-height: 1.65;
}

.booking-request-urgency {
  margin-top: 0.9rem;
  color: #f2e4c0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
}

.booking-request-advantage {
  margin-top: 1.7rem;
  color: var(--gold);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.55;
}

.booking-request-form {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  text-align: left;
}

.form-field {
  display: grid;
  gap: 0.55rem;
}

.form-field span {
  color: rgba(244, 241, 234, 0.84);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(198, 167, 94, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--ivory);
  padding: 1rem 1.1rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(244, 241, 234, 0.36);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(198, 167, 94, 0.38);
  background: rgba(255, 255, 255, 0.035);
  box-shadow:
    0 0 0 4px rgba(198, 167, 94, 0.08),
    0 14px 34px rgba(0, 0, 0, 0.14);
}

.form-field textarea {
  min-height: 9rem;
  resize: vertical;
}

.booking-request-form .button {
  margin-top: 0.35rem;
}

.booking-request-secondary {
  margin-top: 1.1rem;
  color: rgba(244, 241, 234, 0.76);
  font-size: 0.96rem;
  line-height: 1.6;
}

.booking-request-secondary a {
  color: var(--gold);
  font-weight: 700;
  transition: color var(--transition);
}

.booking-request-secondary a:hover {
  color: #d8bc7b;
}

.booking-request-micro {
  margin-top: 0.9rem;
  color: rgba(244, 241, 234, 0.58);
  font-size: 0.92rem;
  line-height: 1.6;
}

.site-footer {
  padding: 1.6rem 0 6rem;
  background: #0d0d0e;
}

.footer-inner {
  display: grid;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1rem;
}

.footer-links a {
  position: relative;
  color: rgba(244, 241, 234, 0.84);
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 1rem);
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 3.5rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #d9bc78, var(--gold));
  color: var(--darkText);
  box-shadow: 0 18px 38px rgba(198, 167, 94, 0.2);
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
}

.floating-whatsapp-icon {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(15, 15, 15, 0.12);
  font-weight: 800;
}

.floating-whatsapp-copy {
  font-weight: 800;
}

.sticky-mobile-cta {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 0.75rem);
  z-index: 1090;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 3.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #d9bc78, var(--gold));
  color: var(--darkText);
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(198, 167, 94, 0.18);
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.floating-whatsapp.is-hidden,
.sticky-mobile-cta.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.75rem);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 720ms ease,
    transform 720ms ease;
  transition-delay: var(--delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroTextEntrance {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes heroImageEntrance {
  from {
    transform: scale(1.035);
  }

  to {
    transform: scale(1);
  }
}

@media (min-width: 48rem) {
  .design-identity-shell {
    justify-content: flex-start;
  }

  .hero-shell {
    min-height: min(90vh, 100svh);
  }

  .kitchen-layout {
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
    align-items: start;
  }

  .impact-gallery {
    gap: 1.5rem;
  }

  .impact-gallery-top {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    align-items: stretch;
  }

  .impact-gallery-bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item-main {
    min-height: clamp(30rem, 48vw, 44rem);
  }

  .gallery-item-stack {
    min-height: clamp(14rem, 18vw, 17.2rem);
  }

  .gallery-item-bottom {
    min-height: clamp(16rem, 20vw, 19rem);
  }

  .split-section {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .wellness-shell {
    grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
  }

  .wellness-copy {
    padding-right: clamp(1rem, 2vw, 2.5rem);
  }

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

  .availability-layout {
    grid-template-columns: minmax(18rem, 0.42fr) minmax(22rem, 0.58fr);
    align-items: start;
  }

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

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

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

  .split-section-wide {
    grid-template-columns: minmax(0, 1.18fr) minmax(18rem, 0.82fr);
  }

  .split-section-reverse > :first-child {
    order: 2;
  }

  .split-section-reverse > :last-child {
    order: 1;
  }

  .bedroom-gallery {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: stretch;
  }

  .gallery-room-master {
    grid-column: span 7;
    grid-row: span 2;
    min-height: 38rem;
  }

  .gallery-room-family {
    grid-column: span 5;
    min-height: 18.25rem;
  }

  .gallery-room-alt {
    grid-column: span 5;
    min-height: 18.25rem;
  }

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

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

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

  .ideal-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }

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

  .footer-inner {
    grid-template-columns: 1.2fr auto auto;
    align-items: center;
  }
}

@media (min-width: 64rem) {
  .hero-shell {
    padding-left: 8.5vw;
    padding-right: 5vw;
    padding-bottom: 4.8rem;
  }

  .media-panel-large {
    min-height: clamp(34rem, 52vw, 48rem);
  }
}

@media (max-width: 63.99rem) {
  .site-navigation {
    position: fixed;
    inset: 5rem 1rem auto;
    display: grid;
    gap: 0.25rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-small);
    background: rgba(15, 15, 15, 0.96);
    backdrop-filter: blur(16px);
    transform: translateY(-0.75rem);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity var(--transition),
      transform var(--transition);
    box-shadow: var(--shadow);
  }

  .site-header.menu-active .site-navigation {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 47.99rem) {
  .hero {
    min-height: 88svh;
  }

  .hero-shell {
    padding-top: 6.5rem;
    padding-bottom: 2.4rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    align-items: flex-start;
  }

  .hero-content {
    max-width: 100%;
    margin-top: 42svh;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(2.6rem, 6.6vw + 0.9rem, 3.15rem);
  }

  .hero-price {
    margin-top: 1rem;
    font-size: 1.08rem;
  }

  .hero-intro {
    max-width: 100%;
    margin-top: 1.2rem;
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-facts {
    margin-top: 1.45rem;
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .hero img,
  .hero-media img {
    object-position: 68% center;
  }

  .hero-actions,
  .cta-inline,
  .cta-inline-stacked {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button,
  .cta-inline .button {
    width: 100%;
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(15, 15, 15, 0.56) 0%,
        rgba(15, 15, 15, 0.26) 24%,
        rgba(15, 15, 15, 0.56) 56%,
        rgba(15, 15, 15, 0.84) 100%
      ),
      linear-gradient(
        to right,
        rgba(15, 15, 15, 0.78) 0%,
        rgba(15, 15, 15, 0.46) 42%,
        rgba(15, 15, 15, 0.14) 74%,
        rgba(15, 15, 15, 0.02) 100%
      ),
      radial-gradient(
        circle at 24% 24%,
        rgba(198, 167, 94, 0.08) 0%,
        transparent 32%
      );
  }

  .section {
    padding: 3.8rem 0;
  }

  .section-design-identity {
    padding: 0;
  }

  .section-location-bosco {
    padding: 0;
  }

  .location-bosco-stage,
  .location-bosco-copy {
    min-height: clamp(36rem, 84svh, 52rem);
  }

  .location-bosco-stage::after {
    background:
      linear-gradient(
        180deg,
        rgba(15, 15, 15, 0.12) 0%,
        rgba(15, 15, 15, 0.26) 28%,
        rgba(15, 15, 15, 0.58) 62%,
        rgba(15, 15, 15, 0.8) 100%
      ),
      linear-gradient(
        to right,
        rgba(15, 15, 15, 0.8) 0%,
        rgba(15, 15, 15, 0.62) 42%,
        rgba(15, 15, 15, 0.3) 72%,
        rgba(15, 15, 15, 0.08) 100%
      );
  }

  .location-bosco-media img {
    object-position: 56% center;
  }

  .location-bosco-copy {
    justify-content: flex-end;
    padding:
      5.2rem
      1.2rem
      2.4rem;
  }

  .location-bosco-copy h2 {
    max-width: 10ch;
    font-size: clamp(2.9rem, 10vw, 4rem);
    line-height: 0.98;
  }

  .location-bosco-copy .section-intro {
    max-width: 21rem;
    margin-top: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.45;
  }

  .location-bosco-body {
    max-width: 21rem;
    margin-top: 1.25rem;
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .design-identity-stage,
  .design-identity-shell {
    min-height: auto;
  }

  .design-identity-stage {
    min-height: auto;
    padding-bottom: 4rem;
  }

  .design-identity-media {
    position: relative;
    inset: auto;
    min-height: clamp(24rem, 62svh, 34rem);
  }

  .design-identity-media::after {
    background:
      linear-gradient(
        180deg,
        rgba(5, 5, 5, 0.1) 0%,
        rgba(5, 5, 5, 0.16) 26%,
        rgba(5, 5, 5, 0.34) 100%
      ),
      radial-gradient(circle at 76% 40%, rgba(0, 0, 0, 0.14) 0%, transparent 34%);
    box-shadow:
      inset 0 -120px 110px rgba(0, 0, 0, 0.3),
      inset 0 0 96px rgba(0, 0, 0, 0.18);
  }

  .design-identity-shell {
    display: block;
    width: var(--container);
    margin: 0 auto;
    padding-top: 1.7rem;
  }

  .design-identity-copy {
    width: 100%;
    max-width: none;
    padding-block: 0;
  }

  .design-identity-copy h2 {
    max-width: 8.8ch;
    font-size: clamp(2.9rem, 10vw, 4rem);
    line-height: 0.94;
  }

  .design-identity-body {
    max-width: 25rem;
    margin-top: 1.45rem;
  }

  .design-identity-intro {
    font-size: 1.02rem;
    line-height: 1.62;
  }

  .design-identity-presence {
    margin-top: 1.45rem;
    font-size: 1.08rem;
    line-height: 1.58;
  }

  .design-identity-details {
    gap: 0.85rem;
    max-width: 25rem;
    padding-top: 1.4rem;
    margin-top: 1.65rem;
  }

  .design-identity-copy .design-identity-link {
    margin-top: 1.8rem;
  }

  .gallery-layout {
    gap: 1.5rem;
  }

  .impact-gallery,
  .impact-gallery-top,
  .impact-gallery-stack,
  .impact-gallery-bottom {
    gap: 1rem;
  }

  .gallery-item-main,
  .gallery-item-stack,
  .gallery-item-bottom,
  .gallery-item-wide,
  .gallery-item-tall,
  .gallery-item {
    min-height: 16rem;
  }

  .gallery-values {
    justify-content: flex-start;
    gap: 0.8rem 1rem;
  }

  .gallery-values p {
    font-size: 0.74rem;
    line-height: 1.5;
  }

  .gallery-cta {
    text-align: left;
  }

  .gallery-cta-actions {
    justify-content: flex-start;
  }

  .cta-inline-stacked .button {
    width: 100%;
    justify-content: center;
  }

  .section-space .media-panel,
  .section-kitchen .media-panel,
  .section-living .media-panel,
  .split-section-wide .media-panel,
  .wellness-hero-card,
  .wellness-detail-card,
  .gallery-room-master,
  .gallery-room-family,
  .gallery-room-alt,
  .stacked-media .media-panel,
  .media-panel-garage,
  .media-panel-portrait {
    min-height: 18rem;
  }

  .bedrooms-meta {
    margin-top: 1.6rem;
  }

  .wellness-copy,
  .wellness-subtext,
  .wellness-body {
    max-width: none;
  }

  .wellness-stage {
    padding: 0.75rem;
  }

  .wellness-hero-card {
    min-height: 19rem;
  }

  .wellness-detail-grid {
    grid-template-columns: 1fr;
  }

  .wellness-detail-card {
    min-height: 15rem;
  }

  .wellness-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .wellness-actions .button {
    width: 100%;
  }

  .availability-card-meta {
    width: 100%;
    justify-items: start;
    margin-left: 0;
  }

  .availability-feed-message {
    text-align: left;
  }

  .availability-month-nav {
    flex-wrap: wrap;
  }

  .availability-nav-button {
    flex: 1 1 0;
    justify-content: center;
  }

  .space-stage {
    display: grid;
    gap: 0.9rem;
    padding: 0;
  }

  .section-space .space-panel-main,
  .section-space .space-panel-detail {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
  }

  .section-space .space-panel-main {
    min-height: 20rem;
  }

  .section-space .space-panel-detail {
    min-height: 14rem;
  }

  .space-note {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
  }

  .kitchen-support-item {
    min-height: 10.5rem;
  }

  .footer-inner {
    padding-bottom: 5.2rem;
  }

  .floating-whatsapp {
    bottom: calc(env(safe-area-inset-bottom, 0px) + 5.1rem);
  }

  .sticky-mobile-cta {
    display: inline-flex;
  }
}

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

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

  [data-reveal],
  .hero-content,
  .hero-eyebrow,
  .hero h1,
  .hero-subheadline,
  .hero-actions,
  .hero img,
  .hero-media img {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}
