/* L&T Realty Elara Celestia ? light brand theme */

:root {
  --section-black: #ffffff;
  --section-grey: #fff8e6;
  --section-alt: #f3f4f6;
  --color-black: #231f20;
  --color-grey-950: #2a2627;
  --color-grey-900: #3a3536;
  --color-grey-800: #4a4546;
  --color-grey-700: #5a5556;
  --color-muted: #f7f7f5;
  --color-dark: #231f20;
  --color-navy: #231f20;
  --color-green-cta: #231f20;
  --color-green-panel: #fff8e6;
  /* L&T Realty yellow ? from logo accent bars */
  --color-gold: #e0b000;
  --color-gold-bright: #ffcb05;
  --color-gold-map: #ffcb05;
  --color-gold-deep: #c99a00;
  --color-gold-soft: #fff6d1;
  --color-gold-mist: rgba(255, 203, 5, 0.18);
  --color-charcoal: #231f20;
  --color-white: #ffffff;
  --color-surface: rgba(255, 203, 5, 0.08);
  --color-surface-raised: rgba(255, 203, 5, 0.14);
  --color-text: rgba(35, 31, 32, 0.9);
  --color-text-soft: rgba(35, 31, 32, 0.72);
  --color-text-muted: rgba(35, 31, 32, 0.55);
  --font-serif: "Gilda Display", Georgia, serif;
  --font-sans: "Montserrat", system-ui, sans-serif;
  --header-h: 76px;
  --sticky-bar-h: 88px;
  --page-pad-x: clamp(20px, 4vw, 5rem);
  --radius: 4px;
  --radius-sharp: 50px;
  --shadow: 0 16px 48px rgba(35, 31, 32, 0.1);
  --glow-gold: 0 0 0 1px rgba(255, 203, 5, 0.45), 0 8px 28px rgba(255, 203, 5, 0.22);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-text);
  background: var(--section-black);
}

main { width: 100%; min-width: 0; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
svg { color: var(--color-gold); }
.site-header__cta svg { color: var(--color-white); }
.mb-2 { margin-bottom: 20px; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

main > section { scroll-margin-top: calc(var(--header-h) + 16px); }

/* Alternating light section bands ? white / soft L&T wash / cool mist */
main > section:nth-child(odd) {
  background-color: var(--section-black);
}

main > section:nth-child(even) {
  background-color: var(--section-grey);
}

main > section.hero {
  background-color: #0b0b0b;
}

main > section.features-section,
main > section.location-section,
main > section.contact-section {
  background-color: var(--section-alt);
}

main > section.amenities-section,
main > section.config-section,
main > section.about-band {
  background:
    linear-gradient(180deg, rgba(255, 203, 5, 0.07) 0%, rgba(255, 248, 230, 0.95) 40%, #fff 100%);
}

/* ?? Header shell ?? */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(12px, 3.5vw, 22px);
}

.site-header__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 22px;
  flex: 1;
  justify-content: center;
}

@media (min-width: 1100px) {
  .site-nav {
    display: flex;
  }
}

.site-header__cta {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.site-header__cta svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@media (min-width: 769px) {
  .site-header__cta {
    display: inline-flex;
  }
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-right: -8px;
}

.menu-toggle span {
  display: block;
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.2s;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

body::-webkit-scrollbar {
  width: 0.45em;
  background-color: #000000;
}

body::-webkit-scrollbar-thumb {
  background-color: #7e7b7b;
  border-radius: 15px;
}

/* Header ? Ellegenza banner: logo left, menu right */
.site-header--banner {
  background: transparent;
  justify-content: space-between;
  padding: 1.25rem clamp(20px, 4vw, 5rem);
  min-height: auto;
  height: auto;
  z-index: 1002;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}

.site-header--banner.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 1px 0 0 var(--color-gold-bright),
    0 8px 28px rgba(35, 31, 32, 0.08);
}

.site-header--banner.is-scrolled .menu-toggle span {
  background: var(--color-charcoal);
}

.site-header--banner.is-scrolled .site-nav a {
  color: var(--color-charcoal);
  text-shadow: none;
}

.site-header--banner.is-scrolled .site-nav a:hover {
  color: var(--color-gold-deep);
}

.site-header--banner .site-header__logo {
  filter: invert(0);
  height: auto;
width: 150px;
}

.site-header--banner .site-header__brand {
  margin-right: auto;
}

.site-header--banner .menu-toggle {
  display: flex;
  margin-left: auto;
  margin-right: 0;
}

.site-header__logo {

  height: clamp(40px, 5.5vw, 56px);
  max-width: min(240px, 55vw);
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 1003;
  display: flex;
  justify-content: flex-end;
  visibility: hidden;
  pointer-events: none;
}

.mobile-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

.mobile-drawer__backdrop {
  position: absolute;
  inset: 0;
  border: none;
  padding: 0;
  margin: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.35s ease;
}

.mobile-drawer.is-open .mobile-drawer__backdrop {
  opacity: 1;
}

.mobile-drawer__panel {
  position: relative;
  z-index: 1;
  width: 30%;
  min-width: 220px;
  max-width: 340px;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  padding: clamp(56px, 10vh, 88px) 20px 32px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.18);
}

.mobile-drawer.is-open .mobile-drawer__panel {
  transform: translateX(0);
}

.mobile-drawer__close {
  position: absolute;
  top: clamp(16px, 3vw, 28px);
  right: clamp(16px, 3vw, 24px);
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  color: #111;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.mobile-drawer__close:hover {
  opacity: 0.6;
}

.mobile-drawer__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.mobile-drawer__nav a {
  color: #111;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  text-align: left;
  padding: clamp(12px, 2.4vh, 18px) 0;
  border: none;
  width: 100%;
  transition: opacity 0.2s ease;
}

.mobile-drawer__nav a:hover {
  color: #111;
  opacity: 0.55;
}

@keyframes drawerLinkIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.mobile-drawer.is-open .mobile-drawer__nav a {
  animation: drawerLinkIn 0.45s ease forwards;
  opacity: 0;
}

.mobile-drawer.is-open .mobile-drawer__nav a:nth-child(1) { animation-delay: 0.04s; }
.mobile-drawer.is-open .mobile-drawer__nav a:nth-child(2) { animation-delay: 0.08s; }
.mobile-drawer.is-open .mobile-drawer__nav a:nth-child(3) { animation-delay: 0.12s; }
.mobile-drawer.is-open .mobile-drawer__nav a:nth-child(4) { animation-delay: 0.16s; }
.mobile-drawer.is-open .mobile-drawer__nav a:nth-child(5) { animation-delay: 0.2s; }
.mobile-drawer.is-open .mobile-drawer__nav a:nth-child(6) { animation-delay: 0.24s; }
.mobile-drawer.is-open .mobile-drawer__nav a:nth-child(7) { animation-delay: 0.28s; }

body.menu-open .site-header--banner .menu-toggle {
  visibility: visible;
  pointer-events: auto;
}

/* Hero banner — desktop animated image only, mobile video only */
.hero {
  position: relative;
  overflow: hidden;
  background-color: #0b0b0b;
  background-image: none;
  min-height: 100vh;
}

@supports (min-height: 100svh) {
  .hero {
    min-height: 100svh;
  }
}

.hero__media--desktop {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__media--mobile {
  display: none !important;
}

.hero__media--desktop picture,
.hero__media--desktop .hero__image,
.hero__media--mobile .hero__video {
  width: 100%;
  height: 100%;
  display: block;
}

.hero__media--desktop picture {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero__media--desktop .hero__image,
.hero__media--mobile .hero__video {
  object-fit: cover;
  object-position: center;
}

.hero__media--desktop .hero__image {
  transform-origin: 55% 40%;
  will-change: transform;
  animation: heroKenBurns 28s ease-in-out infinite alternate;
}

.hero__media--desktop::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 38%,
    rgba(255, 203, 5, 0.08) 50%,
    transparent 62%,
    transparent 100%
  );
  background-size: 220% 100%;
  animation: heroLightSweep 10s ease-in-out infinite;
}

.hero__media--desktop .hero__overlay {
  z-index: 2;
  animation: heroOverlayPulse 12s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  50% {
    transform: scale(1.08) translate(-1.5%, -1%);
  }
  100% {
    transform: scale(1.12) translate(1%, 0.5%);
  }
}

@keyframes heroLightSweep {
  0% {
    background-position: 120% 0;
    opacity: 0.35;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    background-position: -40% 0;
    opacity: 0.35;
  }
}

@keyframes heroOverlayPulse {
  0% {
    opacity: 0.85;
  }
  100% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__media--desktop .hero__image,
  .hero__media--desktop::after,
  .hero__media--desktop .hero__overlay {
    animation: none;
  }

  .hero__media--desktop .hero__image {
    transform: none;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    rgba(0, 0, 0, 0.55) 100%
  );
  pointer-events: none;
}

.hero--banner {
  min-height: 100vh;
  display: block;
  padding: 0;
}

@supports (min-height: 100svh) {
  .hero--banner {
    min-height: 100svh;
  }
}

@media (max-width: 767px) {
  .hero,
  .hero--banner {
    min-height: 0 !important;
    width: 100%;
    height: auto;
  }

  .hero__media--desktop {
    display: none !important;
  }

  .hero__media--mobile {
    display: block !important;
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    z-index: 0;
  }

  .hero__media--mobile[hidden] {
    display: block !important;
  }

  .hero__media--mobile .hero__video {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .hero__media--mobile .hero__overlay {
    position: absolute;
    inset: 0;
  }
}

/* Overview ? form left, content + highlights slider right */
.overview-intro {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 4vw, 5rem);
}

.overview-intro__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}

@media (min-width: 992px) {
  .overview-intro__inner {
    grid-template-columns: minmax(300px, 400px) minmax(0, 1fr);
    gap: clamp(48px, 5vw, 80px);
  }
}

.overview-intro__inner > * {
  min-width: 0;
}

.overview-intro__content {
  width: 100%;
  max-width: 100%;
}

.overview-intro__form-card {
  border: 1px solid var(--color-gold);
  padding: clamp(28px, 4vw, 40px) clamp(22px, 3vw, 32px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 40px rgba(35, 31, 32, 0.06);
}

.overview-intro__form-title {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 400;
  line-height: 1.35;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 28px;
  text-align: center;
  white-space: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.overview-intro__form .field--minimal {
  margin-bottom: 16px;
}

.overview-intro__form .input-wrap--minimal {
  border: 1px solid var(--color-gold);
  background: transparent;
  border-radius: 0;
  padding: 0 14px;
  min-height: 48px;
}

.overview-intro__form .input-wrap--minimal input {
  color: var(--color-charcoal);
  font-size: 14px;
  padding: 12px 0;
}

.overview-intro__form .input-wrap--minimal input::placeholder {
  color: var(--color-text-muted);
}

.overview-intro__form .form-consent--compact {
  margin: 18px 0 22px;
}

.overview-intro__form .form-consent__label {
  font-size: 11px;
  line-height: 1.5;
  color: var(--color-text-soft);
}

.btn--submit-pill,
.overview-intro__submit {
  display: block;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  background: var(--color-gold-bright);
  color: var(--color-charcoal);
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: var(--glow-gold);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--submit-pill:hover,
.overview-intro__submit:hover {
  background: var(--color-gold-deep);
  color: #0b0b0b;
  transform: translateY(-1px);
}

.overview-intro__kicker {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--color-text-soft);
  margin: 0 0 12px;
}

.overview-intro__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0 0 24px;
  white-space: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
  max-width: 100%;
}

.overview-intro__text {
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 36px;
  white-space: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
  max-width: 100%;
}

.highlights-slider-wrap {
  margin-top: 8px;
  max-width: 100%;
  min-width: 0;
}

.highlights-slider {
  overflow: hidden;
  width: 100%;
}

.highlights-slider .swiper-slide {
  height: auto;
}

.highlight-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding: 4px 10px 0;
  min-height: 130px;
}

.highlight-slide__icon {
  display: block;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(72%) sepia(21%) saturate(687%) hue-rotate(1deg) brightness(92%) contrast(89%);
}

.highlight-slide__label {
  font-family: var(--font-sans);
  font-size: clamp(12px, 1.5vw, 14px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-gold);
  margin: 0;
  max-width: 11rem;
}

.highlights-slider__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding-right: 0;
}

.highlights-slider__arrow {
  width: 46px;
  height: 46px;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  background: transparent;
  color: var(--color-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, color 0.2s ease;
}

.highlights-slider__arrow svg {
  width: 18px;
  height: 18px;
}

.highlights-slider__arrow:hover {
  background: rgba(255, 203, 5, 0.12);
}

.highlights-slider__arrow.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

/* Features ? reference mosaic slider */
.features-section {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 4vw, 5rem);
}

.features-section__head {
  max-width: 46rem;
  margin: 0 auto clamp(40px, 6vw, 64px);
  text-align: center;
}

.features-section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 400;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 28px;
}

.features-section__lead {
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 18px;
}

.features-section__lead:last-child {
  margin-bottom: 0;
}

.features-showcase-wrap {
  max-width: 1280px;
  margin: 0 auto;
  min-width: 0;
}

.features-showcase {
  overflow: hidden;
  width: 100%;
}

.features-showcase .swiper-slide {
  height: auto;
  box-sizing: border-box;
}

.features-showcase .swiper-wrapper {
  align-items: stretch;
}

.features-card {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.5vw, 24px);
  min-width: 0;
  height: 100%;
  padding: clamp(12px, 2vw, 20px);
  margin: 0;
}

.features-card__img {
  margin: 0;
  overflow: hidden;
  width: 100%;
  flex-shrink: 0;
}

.features-card__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.features-card--size-1 .features-card__img,
.features-card--size-2 .features-card__img,
.features-card--size-3 .features-card__img {
  height: clamp(220px, 30vw, 360px);
  margin: 0;
  width: 100%;
}

.features-card--text-top {
  justify-content: flex-end;
}

.features-card--text-top .features-card__copy,
.features-card:not(.features-card--text-top) .features-card__copy {
  margin: 0;
}

.features-card__copy h3 {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  color: var(--color-gold);
  margin: 0 0 8px;
  line-height: 1.35;
}

.features-card__copy p {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  font-weight: 400;
  color: var(--color-text);
  margin: 0;
  line-height: 1.5;
}

.features-card--size-1 .features-card__copy,
.features-card--size-2 .features-card__copy,
.features-card--size-3 .features-card__copy {
  padding: 0;
  text-align: left;
}

.features-showcase__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.features-showcase__arrow {
  width: 46px;
  height: 46px;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  background: transparent;
  color: var(--color-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease;
}

.features-showcase__arrow svg {
  width: 18px;
  height: 18px;
}

.features-showcase__arrow:hover {
  background: rgba(255, 203, 5, 0.12);
}

.features-showcase__arrow.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

@media (max-width: 900px) {
  .features-card {
    padding: 16px;
    gap: 20px;
  }

  .features-card--size-1 .features-card__img,
  .features-card--size-2 .features-card__img,
  .features-card--size-3 .features-card__img {
    height: auto;
    aspect-ratio: 4 / 3;
    min-height: 220px;
    max-height: none;
  }
}

@media (max-width: 559px) {
  .highlight-slide {
    max-width: 100%;
    padding-inline: 16px;
  }

  .highlight-slide__label {
    max-width: 16rem;
  }
}

.site-nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-shadow: none;
  color: #fff;
}

.site-nav a:hover {
  color: var(--color-gold);
}

.site-header__cta {
  background: #fff;
  color: var(--color-gold);
  border-radius: 50px;
  font-weight: 500;
  padding: 10px 22px;
}

.site-header__cta:hover {
  background: var(--color-gold-soft);
}

.site-header__cta svg {
  color: var(--color-gold);
}

/* Button variants */
.btn--gold {
  background: #fff;
  color: var(--color-gold);
  border-color: #fff;
}

.btn--gold:hover {
  filter: none;
  background: var(--color-gold-soft);
}

.btn--gold svg {
  color: var(--color-gold);
}

.btn--outline {
  border: 1px solid #fff;
  color: #fff;
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: #fff;
}

.btn--green {
  background: #fff;
  color: var(--color-gold);
  border-color: #fff;
  border-radius: 50px;
}

.btn--green:hover {
  background: var(--color-gold-soft);
}

.btn--map {
  background: #fff;
  color: var(--color-gold);
  border-radius: 50px;
}

/* Configuration / pricing ? reference layout */
.config-section {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 4vw, 5rem);
}

.config-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 64px);
  align-items: stretch;
}

@media (min-width: 992px) {
  .config-section__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(40px, 5vw, 72px);
  }
}

.config-section__media {
  min-width: 0;
  overflow: hidden;
}

.config-section__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(320px, 42vw, 520px);
  object-fit: cover;
  border-radius: 0;
}

@media (min-width: 992px) {
  .config-section__media img {
    border-radius: 0 250px 250px 0;
    min-height: 100%;
  }
}

.config-section__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.config-section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 400;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.15;
  margin: 0 auto clamp(32px, 5vw, 48px);
  text-align: center;
  width: 100%;
  max-width: 1280px;
  display: block;
}

.config-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.config-list__item {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 28px);
  padding: clamp(22px, 3.5vw, 32px) 0;
}

.config-list__item + .config-list__item {
  border-top: 1px solid rgba(35, 31, 32, 0.1);
}

.config-list__meta {
  flex: 1;
  min-width: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-serif);
  font-size: clamp(0.85rem, 1.8vw, 1.05rem);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-text);
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.config-list__type {
  display: block;
}

.config-list__price {
  display: block;
  color: var(--color-gold);
  font-weight: 600;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  letter-spacing: 0.04em;
}

.config-list__price-link {
  text-decoration: none;
}

.config-list__price-link:hover {
  text-decoration: underline;
}

.config-list__divider {
  flex-shrink: 0;
  width: 1px;
  align-self: stretch;
  min-height: 44px;
  background: var(--color-gold);
}

.config-list__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gold-bright);
  color: var(--color-charcoal);
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.config-list__btn:hover {
  background: var(--color-gold-deep);
  color: #0b0b0b;
}

@media (max-width: 767px) {
  .config-list__item {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: clamp(20px, 4vw, 28px) 0;
  }

  .config-list__item + .config-list__item {
    border-top: none;
  }

  .config-list__meta {
    width: 100%;
  }

  .config-list__divider {
    display: block;
    width: 100%;
    height: 1px;
    min-height: 0;
    align-self: stretch;
    background: var(--color-gold);
  }

  .config-list__btn {
    align-self: center;
    width: auto;
    max-width: none;
    margin-left: 0;
  }
}

/* Gallery ? reference tabs + carousel */
.gallery-section {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 4vw, 5rem);
  overflow: hidden;
}

.gallery-section__head {
  max-width: 42rem;
  margin: 0 auto clamp(28px, 4vw, 40px);
  text-align: center;
}

.gallery-section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 400;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 14px;
}

.gallery-section__sub {
  margin: 0;
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.7;
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: clamp(32px, 5vw, 48px);
}

.gallery-tabs__btn {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 12px 28px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  background: transparent;
  color: var(--color-charcoal);
  border: 1px solid rgba(35, 31, 32, 0.22);
}

.gallery-tabs__btn.is-active {
  background: var(--color-gold-bright);
  color: var(--color-charcoal);
  border-color: var(--color-gold-bright);
  font-weight: 600;
  box-shadow: var(--glow-gold);
}

.gallery-tabs__btn:hover:not(.is-active) {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: transparent;
}

.gallery-panel[hidden] {
  display: none !important;
}

.gallery-carousel-wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.gallery-carousel {
  position: relative;
  overflow: hidden;
  padding: 0 clamp(40px, 6vw, 56px);
}

.gallery-carousel .swiper-slide {
  height: auto;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery-carousel .swiper-slide:not(.swiper-slide-active) {
  opacity: 0.72;
}

.gallery-carousel__slide {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.gallery-carousel__slide img {
  display: block;
  width: 100%;
  height: clamp(260px, 38vw, 460px);
  object-fit: cover;
  border-radius: 0;
}

#plans .gallery-carousel__slide {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

#plans .gallery-carousel__slide img {
  display: block;
  width: 100%;
  height: clamp(260px, 38vw, 460px);
  object-fit: contain;
  object-position: center;
  background: #f4f4f4;
  border-radius: 0;
  filter: blur(10px);
  transform: scale(1.06);
  transition: filter 0.25s ease, transform 0.25s ease;
}

#plans .gallery-carousel__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.42);
  pointer-events: none;
  z-index: 1;
}

.gallery-carousel__lock {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  text-align: center;
  pointer-events: none;
}

.gallery-carousel__lock-title {
  font-family: var(--font-display, "Gilda Display", Georgia, serif);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.gallery-carousel__lock-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-family: var(--font-body, "Montserrat", sans-serif);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

#plans .gallery-carousel__slide:hover img,
#plans .gallery-carousel__slide:focus-visible img {
  filter: blur(12px);
}

.gallery-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: var(--color-charcoal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.gallery-carousel__arrow svg {
  width: 18px;
  height: 18px;
}

.gallery-carousel__arrow--prev {
  left: 0;
}

.gallery-carousel__arrow--next {
  right: 0;
}

.gallery-carousel__arrow:hover {
  transform: translateY(-50%) scale(1.04);
}

.gallery-carousel__arrow.swiper-button-disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* Amenities ? reference split layout */
.amenities-section {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 4vw, 5rem);
}

.amenities-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 64px);
  align-items: start;
}

@media (min-width: 992px) {
  .amenities-section__inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(40px, 5vw, 72px);
  }
}

.amenities-section__content {
  min-width: 0;
}

.amenities-section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 24px;
  line-height: 1.15;
}

.amenities-section__text {
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 18px;
}

.amenities-section__text:last-of-type {
  margin-bottom: 0;
}

.amenities-gallery-wrap {
  min-width: 0;
  width: 100%;
}

.amenities-gallery {
  overflow: hidden;
  width: 100%;
}

.amenities-gallery__figure {
  position: relative;
  margin: 0;
  height: 100%;
}

.amenities-gallery__figure img {
  display: block;
  width: 100%;
  height: clamp(320px, 42vw, 460px);
  object-fit: cover;
  border-radius: 0;
}

.amenities-gallery__caption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  margin: 0;
  padding: 4px 8px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.04em;
}

.amenities-gallery__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.amenities-gallery__arrow {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(35, 31, 32, 0.25);
  border-radius: 50%;
  background: transparent;
  color: var(--color-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.amenities-gallery__arrow svg {
  width: 18px;
  height: 18px;
}

.amenities-gallery__arrow:hover {
  border-color: var(--color-gold);
  background: rgba(255, 203, 5, 0.1);
}

.amenities-gallery__arrow.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* Location ? reference accordion + map */
.location-section {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 4vw, 5rem);
}

.location-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 56px);
  align-items: stretch;
}

@media (min-width: 992px) {
  .location-section__inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(48px, 5vw, 72px);
  }
}

.location-section__content {
  min-width: 0;
}

.location-section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 400;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin: 0 0 20px;
}

.location-section__text {
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 28px;
}

.location-accordion {
  border-top: 1px solid rgba(35, 31, 32, 0.14);
}

.location-accordion__item[open] .location-accordion__trigger {
  color: var(--color-gold);
}

.location-accordion__item[open] {
  box-shadow: inset 0px 0 0 var(--color-gold);
}

.location-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-charcoal);
}

.location-accordion__trigger::-webkit-details-marker {
  display: none;
}

.location-accordion__chevron {
  width: 18px;
  height: 18px;
  color: var(--color-gold);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.location-accordion__item[open] .location-accordion__chevron {
  transform: rotate(180deg);
}

.location-accordion__list {
  list-style: none;
  margin: 0;
  padding: 0 0 16px;
}

.location-accordion__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(35, 31, 32, 0.1);
  font-size: 14px;
}

.location-accordion__name {
  color: var(--color-text);
}

.location-accordion__time {
  color: var(--color-gold);
  font-size: 13px;
  white-space: nowrap;
}

.location-section__map-btn {
  margin-top: 24px;
}

.location-section__map {
  min-width: 0;
  display: flex;
  align-items: stretch;
}

.location-section__map-frame {
  position: relative;
  width: 100%;
  min-height: clamp(320px, 42vw, 480px);
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid rgba(255, 203, 5, 0.35);

}

.location-section__map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #e8e4dc;
  filter: grayscale(0.3) brightness(0.84) contrast(1.05);
}

.location-section__spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle at 58% 52%, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.25) 32%, rgba(0, 0, 0, 0.72) 58%, rgba(10, 10, 10, 0.92) 100%);
}

.location-section__map-pin {
  position: absolute;
  left: 54%;
  top: 46%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  pointer-events: none;
  z-index: 2;
  padding: 12px 16px 10px;
  background: rgba(10, 10, 10, 0.9);
  border: 1px solid rgba(255, 203, 5, 0.45);
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.location-section__map-pin-mark svg {
  width: 36px;
  height: 36px;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}

.location-section__map-pin-title {
  margin-top: 8px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: #fff;
  text-shadow: none;
}

.location-section__map-pin-sub {
  margin-top: 2px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  text-shadow: none;
}

/* Developer */
.about-band,
.about-band__top,
.about-band--group .about-band__top {
  background: transparent;
}

.about-band__visual {
  border-radius: 0 250px 250px 0;
}

.about-band__kicker {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  color: var(--color-gold);
  letter-spacing: 0.06em;
}

.about-band h2 {
  font-family: var(--font-serif);
  text-transform: uppercase;
  white-space: normal;
  color: var(--color-charcoal);
}

.about-band__content > p:not(.about-band__kicker) {
  line-height: 1.75;
  color: var(--color-text);
}

.about-stat__value {
  color: var(--color-charcoal);
}

.about-stat__label {
  color: var(--color-text-soft);
}

/* Contact ? reference split layout */
.contact-section {
  padding: 0;
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.contact-section__inner {
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 0;
}

@media (min-width: 992px) {
  .contact-section__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: clamp(520px, 52vw, 640px);
  }
}

.contact-section__media {
  min-width: 0;
  overflow: hidden;
}

.contact-section__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(280px, 45vw, 520px);
  object-fit: cover;
}

@media (min-width: 992px) {
  .contact-section__media img {
    min-height: 100%;
  }
}

.contact-section__form-wrap {
  min-width: 0;
  padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 400;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.15;
  margin: 0 0 14px;
}

.contact-section__lead {
  margin: 0 0 28px;
  color: var(--color-text-soft);
  font-size: 14px;
  line-height: 1.7;
  max-width: 36rem;
}

.contact-section__form .field--minimal {
  margin-bottom: 16px;
}

.contact-section__form .input-wrap--minimal {
  border: 1px solid var(--color-gold);
  background: transparent;
  border-radius: 0;
  padding: 0 14px;
  min-height: 48px;
}

.contact-section__form .input-wrap--minimal input {
  color: var(--color-charcoal);
  font-size: 14px;
  padding: 12px 0;
  width: 100%;
}

.contact-section__form .input-wrap--minimal input::placeholder {
  color: var(--color-text-muted);
}

.contact-section__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 600px) {
  .contact-section__row {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-section__form .form-consent--compact {
  margin: 18px 0 22px;
}

.contact-section__form .form-consent__label {
  font-size: 11px;
  line-height: 1.5;
  color: var(--color-text-soft);
}

.contact-section__submit {
  display: inline-flex;
  width: auto;
  min-width: 160px;
  margin: 0;
}

.contact-section__reach {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-top: 24px;
  font-size: 13px;
}

/* Prominent phone + WhatsApp hotline */
.contact-hotline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 18px 20px;
  border: 2px solid var(--color-gold-bright);
  background: linear-gradient(135deg, rgba(255, 203, 5, 0.18) 0%, rgba(255, 246, 209, 0.65) 100%);
  box-shadow: 0 8px 28px rgba(255, 203, 5, 0.2);
}

.contact-hotline--compact {
  margin-top: 22px;
  padding: 14px 16px;
  justify-content: center;
  text-align: center;
}

.overview-intro > .contact-hotline--compact,
.gallery-section .contact-hotline--compact {
  width: max-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.about-band .contact-hotline--compact {
  margin-left: 0;
  margin-right: 0;
}

.contact-hotline--footer {
  justify-content: center;
  margin: 16px auto 20px;
  max-width: 420px;
  background: rgba(255, 203, 5, 0.12);
  border-color: var(--color-gold-bright);
}

.contact-hotline__phone {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.contact-hotline__phone--inline {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  padding: 12px 20px;
  border: 2px solid var(--color-gold-bright);
  border-radius: 50px;
  background: #fff;
}

.contact-hotline__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  opacity: 0.75;
}

.contact-hotline__number {
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--color-charcoal);
  line-height: 1.15;
  text-decoration: none;
  white-space: nowrap;
}

.contact-hotline__phone:hover .contact-hotline__number,
.contact-hotline__phone--inline:hover .contact-hotline__number {
  color: var(--color-gold-deep);
}

.contact-hotline__wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 50px;
  background: #25d366;
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.contact-hotline__wa:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.contact-hotline__wa-label {
  color: #fff;
}

.contact-hotline__note {
  flex-basis: 100%;
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-soft);
}

.contact-hotline--footer .contact-hotline__label,
.contact-hotline--footer .contact-hotline__number {
  color: #fff;
}

.contact-hotline--footer .contact-hotline__phone:hover .contact-hotline__number {
  color: var(--color-gold-bright);
}

.contact-hotline--footer .contact-hotline__number {
  font-size: clamp(1.25rem, 3vw, 1.6rem);
}

.contact-section__link {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid var(--color-gold);
  border-radius: 50px;
  background: rgba(255, 203, 5, 0.12);
  color: var(--color-gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.contact-section__link:hover {
  background: rgba(255, 203, 5, 0.22);
  text-decoration: none;
}

.contact-section__link--wa {
  color: var(--color-gold);
  border-color: var(--color-gold);
  background: rgba(255, 203, 5, 0.12);
}

.contact-section__link--wa:hover {
  background: rgba(255, 203, 5, 0.22);
  color: var(--color-gold);
}

.contact-section__sep {
  display: none;
}

.contact-section__note {
  flex-basis: 100%;
  margin: 4px 0 0;
  color: var(--color-text-muted);
  font-size: 12px;
}

/* Footer ? reference black band, centered */
.site-footer {
  background: #000;
  color: #fff;
  padding: clamp(28px, 5vw, 40px) var(--page-pad-x) clamp(20px, 3.5vw, 28px);
  text-align: center;
  margin-bottom: 0;
}

.site-footer::before,
.site-footer__accent {
  display: none;
}

.site-footer__inner {
  max-width: 920px;
  margin: 0 auto 80px;
  padding: 0;
  text-align: center;
}

.site-footer__logo {
  display: inline-block;
  margin: 0 auto 8px;
  line-height: 0;
}

.site-footer__logo img {
  display: block;
  width: auto;
  max-width: min(36px, 19vw);
  height: auto;
  margin: 0 auto;
}

.site-footer__line {
  margin: 0 0 8px;
  font-size: 12px;
  line-height: 1.55;
  color: #fff;
  font-weight: 400;
}

.site-footer__line a {
  color: #fff;
  text-decoration: none;
}

.site-footer__line a:hover {
  text-decoration: underline;
}

.site-footer__disclaimer {
  margin: 14px 0 12px;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  font-size: 10px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  text-align: justify;
  max-width: none;
}

.site-footer__disclaimer strong {
  color: #fff;
  font-weight: 600;
}

.site-footer__copy {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

.site-footer__policy {
  margin: 0;
  font-size: 11px;
}

.site-footer__policy a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
}

.site-footer__policy a:hover {
  color: var(--color-gold-bright);
}

/* Floating side CTAs ? Ellegenza-style */
.float-ctas {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.float-ctas__btn {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  padding: 20px 11px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-charcoal);
  background: #fff;
  border: 1px solid var(--color-charcoal);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.float-ctas__btn--call {
  background: var(--color-gold-bright);
  color: var(--color-charcoal);
  border-color: var(--color-gold-bright);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.float-ctas__btn--call:hover {
  background: var(--color-gold-deep);
  color: #0b0b0b;
  border-color: var(--color-gold-deep);
}

.float-ctas__btn--enquire {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
  font-weight: 700;
}

.float-ctas__btn--enquire:hover {
  background: #1ebe57;
  color: #fff;
  border-color: #1ebe57;
}

@media (max-width: 991px) {
  .float-ctas {
    display: none;
  }
}

body.sticky-bar-visible .float-ctas {
  display: none;
}

/* Gallery viewer */
.gallery-viewer__panel {
  background: #0b0b0b;
  border: 1px solid rgba(255, 203, 5, 0.35);
}

/* Simple pages */
.page-simple {
  background: var(--section-black);
}

@media (min-width: 960px) {
  .about-band__visual {
    border-radius: 0 250px 250px 0;
    max-height: none;
    height: 100%;
    min-height: 320px;
  }
}

.menu-toggle span {
  background: #fff;
  height: 2px;
}

.site-header--banner .menu-toggle span {
  width: 28px;
}

@media (max-width: 767px) {
  .contact-section__row {
    grid-template-columns: 1fr;
  }

  .gallery-carousel {
    padding: 0 36px;
  }

  .gallery-tabs__btn {
    padding: 10px 20px;
    font-size: 12px;
  }

  .overview-intro__inner {
    gap: 32px;
  }

  .location-section__inner {
    gap: 28px;
  }
}

/* Scroll reveal ? section fade-up */
.section-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-reveal.is-revealed {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .section-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .mobile-drawer.is-open .mobile-drawer__nav a {
    animation: none;
    opacity: 1;
  }

  .mobile-drawer {
    transition: none;
  }
}

/* Gallery lightbox ? smooth open */
.gallery-viewer {
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-viewer__img {
  transition: opacity 0.25s ease;
}

/* ?? Forms ?? */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border: 2px solid transparent;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.field {
  margin-bottom: 16px;
}

.input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 203, 5, 0.75);
  border-radius: var(--radius);
  background: transparent;
  padding: 0 14px;
  min-height: 48px;
}

.input-wrap input,
.input-wrap select {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  color: #fff;
  padding: 12px 0;
  outline: none;
}

.input-wrap input::placeholder {
  color: var(--color-text-muted);
}

.status-msg {
  font-size: 13px;
  margin: 0 0 12px;
  color: #ffb4b4;
}

.status-msg--ok {
  color: #8fd4a0;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--color-gold);
}

.form-consent__label {
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-text-soft);
}

.form-consent__policy {
  color: var(--color-gold);
  text-decoration: underline;
}

.form-consent__req {
  color: var(--color-gold);
}

/* ?? Developer band layout ?? */
.about-band {
  padding: 0;
  margin: 0;
  scroll-margin-top: calc(var(--header-h) + 16px);
}

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

.about-band__top-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

@media (min-width: 960px) {
  .about-band__top-inner {
    grid-template-columns: minmax(260px, 30vw) minmax(0, 1fr);
    gap: 0;
    align-items: stretch;
  }
}

.about-band__visual {
  position: relative;
  min-height: 130px;
  height: 130px;
  overflow: hidden;
  background: #0a0a0a url("../images/gallery/g4.webp") center / cover;
}

@media (min-width: 960px) {
  .about-band__visual {
    align-self: stretch;
    min-height: auto;
    height: auto;
    max-height: none;
  }
}

.about-band__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.55) 100%);
}

@media (min-width: 960px) {
  .about-band__visual::after {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 40%, var(--section-grey) 92%);
  }
}

.about-band__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--page-pad-x) 2px;
}

@media (min-width: 960px) {
  .about-band__content {
    padding: 16px clamp(16px, 3vw, 40px) 20px clamp(20px, 3vw, 48px);
  }
}

.about-band--group .about-band__content {
  padding-top: clamp(2.75rem, 6vw, 4.5rem);
  padding-bottom: clamp(2.75rem, 6vw, 4.5rem);
}

@media (max-width: 959px) {
  .about-band__top {
    padding: clamp(16px, 4vw, 28px) 0 0;
  }

  .about-band__top-inner {
    gap: 0;
  }

  .about-band__visual {
    margin: 0 var(--page-pad-x) clamp(20px, 4.5vw, 28px);
    height: clamp(210px, 55vw, 300px);
    min-height: clamp(210px, 55vw, 300px);
    border-radius: 10px;
    border: 1px solid rgba(255, 203, 5, 0.5);
    box-shadow:
      0 10px 32px rgba(0, 0, 0, 0.38),
      inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  }

  .about-band__visual::before {
    content: "About the Builder";
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1;
    padding: 6px 12px;
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-gold);
    background: rgba(10, 10, 10, 0.88);
    border: 1px solid rgba(255, 203, 5, 0.4);
    border-radius: 4px;
    pointer-events: none;
  }

  .about-band__visual::after {
    border-radius: inherit;
    background: linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.62) 100%);
  }

  .about-band--group .about-band__content {
    padding-top: clamp(1.25rem, 3.5vw, 1.75rem);
    border-top: 1px solid rgba(255, 203, 5, 0.28);
    margin: 0 var(--page-pad-x);
    padding-left: 0;
    padding-right: 0;
  }
}

.about-band--group .about-band__visual {
  background-image: url("../images/gallery/g5.webp");
}

.about-band h2 {
  font-size: clamp(0.82rem, 2.85vw + 0.35rem, 2.5rem);
  font-weight: 500;
  margin: 0 0 16px;
  line-height: 1.18;
  max-width: 100%;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

@media (max-width: 767px) {
  .about-band h2 {
    white-space: normal;
    overflow-x: visible;
  }
}

.about-band h2::-webkit-scrollbar {
  display: none;
}

.about-band__row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

@media (min-width: 720px) {
  .about-band__row {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-end;
    gap: 16px 24px;
  }
}

.about-band__stats {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-end;
  gap: clamp(10px, 2.2vw, 22px);
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.about-band__stats::-webkit-scrollbar {
  display: none;
}

.about-stat {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 3px;
  align-items: start;
}

.about-stat__icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(72%) sepia(21%) saturate(687%) hue-rotate(1deg) brightness(92%) contrast(89%);
}

.about-stat__value {
  grid-column: 2;
  grid-row: 1;
  font-size: clamp(0.95rem, 1.8vw, 1.25rem);
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
}

.about-stat__label {
  grid-column: 2;
  grid-row: 2;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

.about-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.35rem;
}

/* ?? Gallery lightbox ?? */
.gallery-viewer {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: max(12px, env(safe-area-inset-top, 0px)) max(12px, env(safe-area-inset-right, 0px))
    max(12px, env(safe-area-inset-bottom, 0px)) max(12px, env(safe-area-inset-left, 0px));
}

.gallery-viewer.is-open {
  display: flex;
}

.gallery-viewer__dim {
  position: absolute;
  inset: 0;
  border: none;
  padding: 0;
  margin: 0;
  background: rgba(0, 0, 0, 0.88);
  cursor: pointer;
}

.gallery-viewer__panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: min(100%, 1200px);
  max-height: 92vh;
  padding-top: 48px;
  pointer-events: none;
}

.gallery-viewer__panel > * {
  pointer-events: auto;
}

.gallery-viewer__img {
  max-width: 100%;
  max-height: min(78vh, 860px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

.gallery-viewer__caption {
  margin: 14px 0 0;
  padding: 0 56px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  text-align: center;
  line-height: 1.4;
  max-width: 42em;
}

.gallery-viewer__close {
  position: fixed;
  top: max(12px, env(safe-area-inset-top, 12px));
  right: max(12px, env(safe-area-inset-right, 12px));
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.gallery-viewer__close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.gallery-viewer__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.82);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 2;
}

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

.gallery-viewer__nav--prev {
  left: max(10px, env(safe-area-inset-left, 10px));
}

.gallery-viewer__nav--next {
  right: max(10px, env(safe-area-inset-right, 10px));
}

@media (max-width: 640px) {
  .gallery-viewer__nav {
    width: 42px;
    height: 42px;
    font-size: 24px;
  }

  .gallery-viewer__caption {
    padding: 0 16px;
  }
}

/* ?? Sticky action dock ?? */
.sticky-mobile-bar-spacer {
  height: 0;
  background: #000;
  transition: height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

body.sticky-bar-visible .sticky-mobile-bar-spacer {
  height: calc(var(--sticky-bar-h) + env(safe-area-inset-bottom, 0px));
}

.sticky-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  pointer-events: none;
  transform: translateY(calc(100% + 24px));
  opacity: 0;
  visibility: hidden;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s ease,
    visibility 0.4s ease;
}

.sticky-mobile-bar.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.sticky-mobile-bar__shell {
  padding: 0 16px calc(14px + env(safe-area-inset-bottom, 0px));
  max-width: 520px;
  margin: 0 auto;
  pointer-events: none;
}

.sticky-mobile-bar.is-visible .sticky-mobile-bar__shell {
  pointer-events: auto;
}

.sticky-mobile-bar__track {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(28, 28, 28, 0.96) 0%, rgba(10, 10, 10, 0.98) 100%);
  border: 1px solid rgba(255, 203, 5, 0.42);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.sticky-mobile-bar__track::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 203, 5, 0.75), transparent);
  pointer-events: none;
}

.sticky-mobile-bar__chip {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-width: 52px;
  padding: 6px 4px;
  border-radius: 999px;
  color: #c8c8c8;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.sticky-mobile-bar__chip:hover,
.sticky-mobile-bar__chip:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transform: translateY(-1px);
}

.sticky-mobile-bar__chip-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.sticky-mobile-bar__chip-icon svg {
  width: 18px;
  height: 18px;
  color: #d4d4d4;
}

.sticky-mobile-bar__chip--wa .sticky-mobile-bar__chip-icon svg {
  color: #7fd99a;
}

.sticky-mobile-bar__chip-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  line-height: 1.15;
  max-width: 72px;
  text-align: center;
  white-space: normal;
}

.sticky-mobile-bar__cta {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  overflow: hidden;
  text-decoration: none;
  background: linear-gradient(135deg, #ffe566 0%, var(--color-gold) 45%, var(--color-gold-deep) 100%);
  color: #1a1208;
  box-shadow:
    0 4px 18px rgba(255, 203, 5, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.25) inset;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.sticky-mobile-bar__cta:hover,
.sticky-mobile-bar__cta:focus-visible {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.06);
  box-shadow:
    0 8px 24px rgba(255, 203, 5, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.35) inset;
}

.sticky-mobile-bar__cta-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.35) 45%,
    transparent 70%
  );
  transform: translateX(-120%);
  animation: stickyCtaShine 4s ease-in-out infinite;
  pointer-events: none;
}

.sticky-mobile-bar__cta-text {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-size: clamp(0.72rem, 2.8vw, 0.85rem);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes stickyCtaShine {
  0%,
  68% {
    transform: translateX(-120%);
  }

  88% {
    transform: translateX(120%);
  }

  100% {
    transform: translateX(120%);
  }
}

@keyframes stickyDockPop {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.92);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.sticky-mobile-bar.is-visible .sticky-mobile-bar__chip--call {
  animation: stickyDockPop 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
}

.sticky-mobile-bar.is-visible .sticky-mobile-bar__cta {
  animation: stickyDockPop 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.sticky-mobile-bar.is-visible .sticky-mobile-bar__chip--wa {
  animation: stickyDockPop 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.19s both;
}

@media (min-width: 480px) {
  .sticky-mobile-bar__shell {
    max-width: 460px;
  }

  .sticky-mobile-bar__chip {
    min-width: 58px;
  }

  .sticky-mobile-bar__cta {
    min-height: 52px;
    padding: 0 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sticky-mobile-bar {
    transition: none;
  }

  .sticky-mobile-bar__cta-shine {
    animation: none;
    display: none;
  }

  .sticky-mobile-bar.is-visible .sticky-mobile-bar__chip--call,
  .sticky-mobile-bar.is-visible .sticky-mobile-bar__cta,
  .sticky-mobile-bar.is-visible .sticky-mobile-bar__chip--wa {
    animation: none;
  }
}

/* ?? Subpages (thank you, privacy) ?? */
.page-simple main {
  margin-top: 0;
  min-height: 0;
  padding: 0;
}

.subpage-hero {
  padding: calc(var(--header-h) + clamp(40px, 8vw, 64px)) var(--page-pad-x) clamp(32px, 5vw, 48px);
  background: var(--section-black);
  text-align: center;
}

.subpage-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 400;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 16px;
  line-height: 1.15;
}

.subpage-hero__lead {
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 36rem;
}

.subpage-body {
  background: var(--section-grey);
  padding: 0 var(--page-pad-x) clamp(56px, 8vw, 80px);
}

.subpage-body__inner {
  max-width: 640px;
  margin: 0 auto;
}

.subpage-body__inner--wide {
  max-width: 800px;
}

.thankyou-card {
  text-align: center;
  padding: clamp(40px, 6vw, 56px) clamp(24px, 4vw, 40px);
  border: 1px solid rgba(255, 203, 5, 0.35);
  background: rgba(255, 255, 255, 0.65);
}

.thankyou-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
}

.thankyou-card p {
  color: var(--color-text);
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.8;
}

.thankyou-card p:last-of-type {
  margin-bottom: 0;
}

.thankyou-card__link {
  color: var(--color-gold);
  font-weight: 600;
  text-decoration: none;
}

.thankyou-card__link:hover {
  text-decoration: underline;
}

.thankyou-card__btn {
  margin-top: 28px;
}

.legal-page {
  padding: clamp(32px, 5vw, 48px) clamp(24px, 4vw, 40px);
  border: 1px solid rgba(255, 203, 5, 0.35);
  background: rgb(255 255 255 / 65%);
  color: var(--color-text);
}

.legal-page h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  font-weight: 400;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 32px 0 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 203, 5, 0.4);
  line-height: 1.35;
}

.legal-page h2:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.legal-page h3 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-gold);
  margin: 20px 0 10px;
  letter-spacing: 0.02em;
}

.legal-page p,
.legal-page li {
  font-size: 14px;
  line-height: 1.75;
  margin: 0 0 14px;
}

.legal-page ul {
  padding-left: 1.2rem;
  margin: 0 0 16px;
}

.legal-page a {
  color: var(--color-gold);
  text-decoration: underline;
}

.legal-page a:hover {
  color: var(--color-gold);
}

.legal-page__back {
  margin: 36px 0 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 203, 5, 0.4);
  text-align: center;
}
