:root {
  --bg: #050403;
  --bg-soft: #120f0b;
  --panel: #15120f;
  --panel-soft: #1c1814;
  --surface: #f4ede3;
  --surface-soft: #e7dccb;
  --text: #faf5ef;
  --muted: #c7b8a2;
  --dark-text: #1a130f;
  --accent: #a57843;
  --accent-strong: #d0ad75;
  --accent-deep: #6d4b2c;
  --accent-rose: #7a1730;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --radius: 28px;
  --container: min(1240px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(165, 120, 67, 0.12), transparent 28%),
    radial-gradient(circle at 84% 14%, rgba(122, 23, 48, 0.12), transparent 22%),
    linear-gradient(180deg, #090705 0%, var(--bg) 48%, #060504 100%);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.08), transparent 32%),
    radial-gradient(circle at 0% 100%, rgba(164, 120, 67, 0.08), transparent 24%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.08) 100%);
  mix-blend-mode: screen;
  opacity: 0.45;
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  background: transparent;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.brand img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.site-nav {
  --nav-hover-left: 0px;
  --nav-hover-width: 0px;
  --nav-hover-scale-x: 0;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 11px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  position: relative;
}

.site-nav a {
  position: relative;
  z-index: 1;
  padding: 0 0 10px;
  color: rgba(250, 245, 239, 0.88);
  background-image: linear-gradient(
    120deg,
    rgba(250, 245, 239, 0.88) 0%,
    rgba(250, 245, 239, 0.88) 46%,
    #e3be7f 50%,
    #f4d497 54%,
    rgba(250, 245, 239, 0.88) 58%,
    rgba(250, 245, 239, 0.88) 100%
  );
  background-size: 220% 100%;
  background-position: 100% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  transition:
    transform 0.26s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.26s ease,
    background-position 0.4s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-hovered {
  transform: translateY(-4px) scale(1.08);
  color: transparent;
  background-position: 0% 50%;
}

.nav-hover-bar {
  position: absolute;
  left: 0;
  bottom: 0;
  width: var(--nav-hover-width);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #b98a4e, #f3d193 50%, #b98a4e);
  box-shadow: 0 0 18px rgba(227, 190, 127, 0.45);
  transform: translateX(var(--nav-hover-left)) scaleX(var(--nav-hover-scale-x));
  transform-origin: var(--nav-hover-origin, left);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.46);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
}

.hero::before {
  content: none;
}

.hero::after {
  content: none;
}

.hero-banner {
  display: block;
  width: 100%;
  height: 100svh;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  background: #000;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.9s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 7s ease, filter 0.8s ease;
}

.hero-slide.is-active > img {
  transform: scale(1.08);
}

.hero-slide-photo img {
  object-position: center 34%;
  filter: saturate(1.04) contrast(1.08);
}

.hero-slide-brand img {
  object-position: center 18%;
  filter: saturate(1.08) contrast(1.08);
}

.hero-dot {
  width: 34px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.hero-dot.is-active {
  background: var(--accent-strong);
  transform: scaleX(1.1);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.34), rgba(7, 7, 7, 0.12) 42%, rgba(7, 7, 7, 0.06) 65%, rgba(7, 7, 7, 0.28)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.14) 46%, rgba(26, 2, 9, 0.34) 72%, rgba(20, 2, 8, 0.58));
}

.hero-content-shell {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  margin: 0;
  padding: 0;
  transform: none;
}

.hero-copy-wrap {
  width: 100%;
  padding: 0;
}

.hero-dots {
  position: absolute;
  right: clamp(18px, 4vw, 42px);
  bottom: clamp(18px, 2.8vw, 28px);
  display: flex;
  gap: 12px;
  margin: 0;
  z-index: 3;
}

.hero-copy {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 14px;
  min-height: clamp(84px, 10vh, 116px);
  padding: 0 clamp(12px, 2vw, 20px) clamp(12px, 1.8vw, 16px);
  background: transparent;
  box-shadow: none;
}

.eyebrow,
.kicker {
  margin: 0 0 12px;
  color: #d7bcc4;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
}

.hero-copy h1,
.section-heading h2 {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
  margin: 0;
}

.hero-main {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "eyebrow"
    "title"
    "details";
  align-items: end;
  column-gap: 0;
  row-gap: 4px;
  width: 100%;
  justify-self: stretch;
  padding: clamp(2px, 0.25vw, 4px) clamp(10px, 1vw, 14px);
  border: 1px solid rgba(208, 173, 117, 0.42);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(22, 14, 13, 0.74), rgba(36, 11, 19, 0.48) 58%, rgba(14, 10, 10, 0.26)),
    rgba(8, 8, 8, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 10px 24px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(8px);
  max-width: none;
  min-height: 92px;
  min-width: 0;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.28s ease,
    background 0.28s ease,
    box-shadow 0.32s ease;
}

.hero-main::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(208, 173, 117, 0.8), rgba(239, 217, 171, 0.88), transparent);
}

.hero-main::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 14px;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(208, 173, 117, 0.22);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(239, 217, 171, 0.18), rgba(208, 173, 117, 0.04));
  transition: transform 0.32s ease, border-color 0.28s ease;
}

.hero-main:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(239, 217, 171, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 34px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(239, 217, 171, 0.18);
}

.hero-main:hover::after {
  transform: scale(1.08);
  border-color: rgba(239, 217, 171, 0.44);
}

.hero-eyebrow {
  grid-area: eyebrow;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: #e7d1ac;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.hero-eyebrow::before {
  content: "";
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, rgba(208, 173, 117, 0.2), rgba(208, 173, 117, 0.92));
}

.hero-eyebrow::after {
  content: "";
  width: 8px;
  height: 8px;
  border: 1px solid rgba(208, 173, 117, 0.65);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(208, 173, 117, 0.08);
}

.hero-copy h1 {
  grid-area: title;
  font-size: clamp(1.32rem, 2.45vw, 2.05rem);
  line-height: 0.94;
  letter-spacing: 0.02em;
  white-space: normal;
  max-width: 26ch;
  color: #fff8ef;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.38);
}

.hero-details {
  grid-area: details;
  display: grid;
  align-content: end;
  width: 100%;
  margin-top: 10px;
}

.hero-subcopy {
  max-width: none;
  margin: 0;
  color: rgba(248, 244, 238, 0.82);
  font-size: 0.69rem;
  line-height: 1.26;
  letter-spacing: 0.02em;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 16px;
  padding-top: 0;
  margin-top: 0;
}

.hero-price,
.hero-address {
  margin: 0;
}

.hero-price {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 14px;
  border: 1px solid rgba(208, 173, 117, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(248, 244, 238, 0.84);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.hero-price span {
  margin-left: 8px;
  color: #efd9ab;
}

.hero-address {
  color: rgba(248, 244, 238, 0.72);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(144px, 1fr));
  gap: 14px;
  margin-top: 0;
  width: min(100%, 600px);
  justify-self: end;
  align-self: end;
}

.hero-facts article,
.lead-card,
.stat-card,
.price-card,
.media-card,
.accordion-stack details,
.map-shell,
.contact-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-facts article {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  min-height: 0;
  padding: 16px 52px 16px 18px;
  border: 1px solid rgba(208, 173, 117, 0.42);
  background:
    linear-gradient(180deg, rgba(39, 14, 20, 0.62), rgba(17, 16, 16, 0.26)),
    radial-gradient(circle at top right, rgba(208, 173, 117, 0.14), transparent 34%),
    rgba(8, 8, 8, 0.14);
  backdrop-filter: blur(14px);
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.28s ease,
    background 0.28s ease,
    box-shadow 0.32s ease;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 10px 24px rgba(0, 0, 0, 0.16);
}

.hero-facts article::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(208, 173, 117, 0.8), rgba(239, 217, 171, 0.88), transparent);
}

.hero-facts article::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 14px;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(208, 173, 117, 0.22);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(239, 217, 171, 0.18), rgba(208, 173, 117, 0.04));
  transition: transform 0.32s ease, border-color 0.28s ease;
}

.hero-facts article:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(239, 217, 171, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 34px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(239, 217, 171, 0.18);
}

.hero-facts article:hover::after {
  transform: scale(1.08);
  border-color: rgba(239, 217, 171, 0.44);
}

.hero-facts strong {
  display: block;
  color: #f7e7c9;
  max-width: 10ch;
  font-size: 1.2rem;
  line-height: 1.02;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.015em;
}

.hero-facts span {
  display: block;
  margin-top: 6px;
  max-width: 14ch;
  color: rgba(248, 244, 238, 0.74);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.lead-card,
.contact-shell {
  position: relative;
  background:
    linear-gradient(180deg, rgba(79, 9, 26, 0.52), rgba(37, 5, 15, 0.9)),
    rgba(10, 10, 10, 0.76);
  backdrop-filter: blur(18px);
  border-color: rgba(208, 173, 117, 0.28);
  padding: 14px 16px 16px;
}

.lead-card {
  justify-self: end;
  width: 100%;
  max-width: 500px;
}

.enquiry-section {
  position: relative;
  padding: 74px 0 42px;
  background:
    radial-gradient(circle at top left, rgba(126, 23, 48, 0.07), transparent 28%),
    radial-gradient(circle at 100% 0%, rgba(176, 141, 87, 0.12), transparent 24%),
    linear-gradient(180deg, #f7f1e8, #ede1d0);
  overflow: hidden;
}

.enquiry-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.22)),
    repeating-linear-gradient(0deg, rgba(176, 141, 87, 0.02) 0, rgba(176, 141, 87, 0.02) 1px, transparent 1px, transparent 4px);
  opacity: 0.65;
  pointer-events: none;
}

.enquiry-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1120px, calc(100% - 48px));
  height: 1px;
  background: rgba(176, 141, 87, 0.34);
  transform: translateX(-50%);
  pointer-events: none;
}

.enquiry-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 480px);
  justify-content: space-between;
  gap: 64px;
  align-items: center;
}

.enquiry-copy {
  max-width: 560px;
  padding: 24px 0;
}

.enquiry-label {
  margin: 0;
  max-width: 14ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4.8vw, 4.4rem);
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.enquiry-label span {
  display: block;
  width: fit-content;
  text-shadow: 0 10px 24px rgba(84, 43, 12, 0.12);
}

.enquiry-label-black {
  color: #120f0b;
}

.enquiry-label-gradient {
  background: linear-gradient(180deg, #120f0b 0%, #7a1730 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.enquiry-label-wine {
  color: #7a1730;
}

.enquiry-text {
  max-width: 52ch;
  margin: 22px 0 0;
  color: rgba(45, 26, 28, 0.78);
  font-size: 1.02rem;
  line-height: 1.95;
}

.enquiry-price {
  display: grid;
  gap: 6px;
  width: fit-content;
  margin-top: 30px;
  padding: 0 0 0 18px;
  border-left: 1px solid rgba(176, 141, 87, 0.45);
}

.enquiry-price-label {
  color: rgba(45, 26, 28, 0.62);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.enquiry-price-value {
  color: #7a1730;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 0.95;
}

.enquiry-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
  margin-top: 34px;
}

.enquiry-stat {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 126px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(176, 141, 87, 0.24);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.12)),
    rgba(232, 216, 195, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 16px 36px rgba(72, 45, 22, 0.08);
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.42s ease,
    border-color 0.32s ease;
}

.enquiry-stat strong {
  display: block;
  color: #2d1a1c;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 700;
  line-height: 0.95;
}

.enquiry-stat span {
  display: block;
  margin-top: 12px;
  color: rgba(45, 26, 28, 0.62);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.6;
  text-transform: uppercase;
}

.enquiry-stat::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(
    from -90deg,
    rgba(176, 141, 87, 0.92) 0deg,
    rgba(176, 141, 87, 0.92) 318deg,
    rgba(239, 217, 171, 1) 338deg,
    rgba(176, 141, 87, 0.92) 360deg
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transform: rotate(0deg);
  pointer-events: none;
  filter: drop-shadow(0 0 8px rgba(239, 217, 171, 0.28));
}

.enquiry-stat:hover {
  transform: translateY(-8px);
  border-color: rgba(239, 217, 171, 0.72);
  box-shadow:
    0 26px 54px rgba(72, 45, 22, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.enquiry-stat:hover::after {
  opacity: 1;
  animation: enquiry-gold-loop 1.25s linear forwards;
}

.enquiry-points,
.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.enquiry-points span,
.contact-points span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 16px;
  border: 1px solid rgba(176, 141, 87, 0.24);
  border-radius: 999px;
  background: rgba(232, 216, 195, 0.34);
  color: rgba(45, 26, 28, 0.74);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lead-card-featured {
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  max-width: 480px;
  padding: 36px 34px 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(122, 28, 72, 0.18), rgba(122, 28, 72, 0)),
    linear-gradient(180deg, rgba(102, 0, 51, 0.97), rgba(15, 15, 15, 0.98));
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  transition: transform 0.55s ease, box-shadow 0.55s ease, border-color 0.4s ease;
  animation: enquiry-card-rise 1s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.18s;
}

.lead-card-featured:hover {
  transform: translateY(-5px);
  border-color: rgba(239, 217, 171, 0.72);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lead-card::before {
  content: "";
  position: absolute;
  inset: 24px 34px auto 34px;
  width: auto;
  height: 1px;
  border-radius: 0;
  background: linear-gradient(90deg, rgba(176, 141, 87, 0), rgba(176, 141, 87, 0.5), rgba(207, 161, 141, 0.38), rgba(176, 141, 87, 0));
}

.enquiry-section .lead-card h3 {
  margin: 14px 0 10px;
  font-family: "Cormorant Garamond", serif;
  color: rgba(248, 243, 238, 0.96);
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0.02em;
}

.lead-card-intro {
  margin: 0 0 24px;
  max-width: 28ch;
  color: rgba(248, 243, 238, 0.68);
  font-size: 0.82rem;
  line-height: 1.7;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.enquiry-copy > * {
  opacity: 0;
  animation: enquiry-copy-rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.enquiry-copy > *:nth-child(1) {
  animation-delay: 0.06s;
}

.enquiry-copy > *:nth-child(2) {
  animation-delay: 0.14s;
}

.enquiry-copy > *:nth-child(3) {
  animation-delay: 0.24s;
}

.enquiry-copy > *:nth-child(4) {
  animation-delay: 0.32s;
}

.enquiry-copy > *:nth-child(5) {
  animation-delay: 0.4s;
}

.lead-form {
  display: grid;
  gap: 6px;
}

.lead-form label {
  display: grid;
  gap: 4px;
}

.lead-form span {
  font-size: 0.7rem;
  color: var(--muted);
}

.form-disclaimer {
  margin: 0;
  color: rgba(248, 244, 238, 0.78);
  font-size: 0.62rem;
  line-height: 1.45;
}

.form-disclaimer a {
  color: #f0d6dd;
  text-decoration: underline;
}

.lead-form input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid rgba(208, 173, 117, 0.28);
  border-radius: 14px;
  background: rgba(255, 250, 251, 0.97);
  color: #2a0d16;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-form input:focus {
  outline: none;
  border-color: rgba(208, 173, 117, 0.72);
  box-shadow: 0 0 0 4px rgba(165, 120, 67, 0.18);
}

.enquiry-section .lead-form {
  display: grid;
  gap: 16px;
}

.enquiry-section .lead-form label {
  display: grid;
  gap: 8px;
  opacity: 0;
  animation: enquiry-copy-rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.enquiry-section .lead-form label:nth-of-type(1) {
  animation-delay: 0.28s;
}

.enquiry-section .lead-form label:nth-of-type(2) {
  animation-delay: 0.36s;
}

.enquiry-section .lead-form label:nth-of-type(3) {
  animation-delay: 0.44s;
}

.enquiry-section .lead-form span {
  font-size: 0.64rem;
  color: rgba(232, 216, 195, 0.74);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.enquiry-section .form-disclaimer {
  margin: 0;
  padding-top: 10px;
  color: rgba(247, 243, 238, 0.58);
  font-size: 0.62rem;
  line-height: 1.75;
  opacity: 0;
  animation: enquiry-copy-rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.52s;
}

.enquiry-section .form-disclaimer a {
  color: #cfa18d;
  text-decoration: underline;
}

.enquiry-section .lead-form input {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  background: rgba(247, 243, 238, 0.06);
  color: rgba(247, 243, 238, 0.94);
  transition: border-color 0.28s ease, background-color 0.28s ease, box-shadow 0.28s ease;
}

.enquiry-section .lead-form input::placeholder {
  color: rgba(247, 243, 238, 0.38);
}

.enquiry-section .lead-form input:focus {
  outline: none;
  border-color: rgba(207, 161, 141, 0.72);
  background: rgba(247, 243, 238, 0.1);
  box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.1);
}

.enquiry-section .lead-form button {
  width: 100%;
  min-height: 56px;
  margin-top: 8px;
  border-color: rgba(176, 141, 87, 0.84);
  background: linear-gradient(180deg, #b08d57, #c39a75);
  color: #fff9f2;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
  animation: enquiry-copy-rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.6s;
}

.enquiry-section .lead-form button:hover {
  transform: translateY(-1px) scale(1.02);
  filter: brightness(1.03);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

@keyframes enquiry-copy-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

@keyframes enquiry-card-rise {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.985);
  }

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

@keyframes enquiry-gold-loop {
  from {
    opacity: 0.35;
    transform: rotate(0deg);
  }

  12% {
    opacity: 1;
  }

  to {
    opacity: 1;
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .enquiry-copy > *,
  .lead-card-featured,
  .enquiry-section .lead-form label,
  .enquiry-section .form-disclaimer,
  .enquiry-section .lead-form button {
    opacity: 1;
    animation: none;
    transition: none;
  }
}

.lead-form button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--accent-strong);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fffaf4;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.lead-form button:hover,
.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 44px rgba(93, 11, 31, 0.28);
}

.button-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(208, 173, 117, 0.52);
}

.section-light .button-outline {
  color: var(--dark-text);
  border-color: rgba(138, 107, 56, 0.7);
}

.section {
  position: relative;
  isolation: isolate;
  padding: 104px 0;
}

.section-light {
  background:
    radial-gradient(circle at top left, rgba(126, 23, 48, 0.1), transparent 28%),
    radial-gradient(circle at 100% 0%, rgba(165, 120, 67, 0.12), transparent 24%),
    linear-gradient(180deg, #f5efe5, #e9dfcf);
  color: var(--dark-text);
}

.section-dark {
  background:
    radial-gradient(circle at top right, rgba(122, 23, 48, 0.12), transparent 30%),
    radial-gradient(circle at 12% 0%, rgba(165, 120, 67, 0.08), transparent 26%),
    linear-gradient(180deg, #0a0908, #050403);
}

.section-heading {
  margin-bottom: 26px;
  display: grid;
  gap: 10px;
}

.section-heading::before {
  content: none;
}

.section-heading::after {
  content: "";
  display: block;
  width: 78px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-strong), transparent);
}

.section-heading.center::before,
.section-heading.center::after {
  margin: 0 auto;
}

.section-heading.center,
.section-intro.center,
.button-row {
  text-align: center;
  justify-content: center;
}

.section-heading h2 {
  font-size: clamp(2.6rem, 5vw, 5rem);
  letter-spacing: -0.02em;
}

#price {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(126, 23, 48, 0.07), transparent 28%),
    radial-gradient(circle at 100% 0%, rgba(176, 141, 87, 0.12), transparent 24%),
    linear-gradient(180deg, #f7f1e8, #ede1d0);
}

#price::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.22)),
    repeating-linear-gradient(0deg, rgba(176, 141, 87, 0.02) 0, rgba(176, 141, 87, 0.02) 1px, transparent 1px, transparent 4px);
  opacity: 0.65;
  pointer-events: none;
}

#price::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1120px, calc(100% - 48px));
  height: 1px;
  background: rgba(176, 141, 87, 0.34);
  transform: translateX(-50%);
  pointer-events: none;
}

#price .section-heading h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #2d1a1c;
}

#price .section-intro {
  font-family: "Manrope", sans-serif;
  color: rgba(45, 26, 28, 0.78);
}

#price .container {
  position: relative;
  z-index: 1;
}

#price .section-heading::after {
  width: 96px;
  background: linear-gradient(90deg, transparent, rgba(176, 141, 87, 0.9), transparent);
}

#floor {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'%3E%3Cpath d='M6 4l12 11-5.2.8L16.6 24l-3.1 1.4-3.8-8.3-3.7 3.1z' fill='%23d6b16f' stroke='%238a6836' stroke-width='1.2' stroke-linejoin='round'/%3E%3C/svg%3E") 4 4, auto;
}

#floor *,
#floor .button,
#floor .button-outline,
#floor .media-card,
#floor .media-card img {
  cursor: inherit;
}

#amenities {
  background:
    radial-gradient(circle at top left, rgba(126, 23, 48, 0.08), transparent 28%),
    radial-gradient(circle at 100% 0%, rgba(176, 141, 87, 0.1), transparent 24%),
    linear-gradient(180deg, #f4eee4, #eadfce);
}

#amenities .section-heading {
  margin-bottom: 18px;
}

#amenities .section-heading h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: -0.01em;
  background: linear-gradient(180deg, #52342c, #b08d57);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

#amenities .section-heading::after {
  width: 86px;
  background: linear-gradient(90deg, transparent, rgba(176, 141, 87, 0.88), transparent);
}

.amenities-intro {
  max-width: 38ch;
  margin: 0 0 28px;
  color: rgba(48, 31, 24, 0.8);
  font-size: 1rem;
  line-height: 1.95;
}

.section-intro {
  font-size: 1.04rem;
  line-height: 1.8;
  color: inherit;
}

.intro-narrow {
  max-width: 880px;
  margin: 0 auto 40px;
}

.brochure-grid,
.amenities-grid,
.location-grid,
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px;
  align-items: center;
}

.amenities-grid {
  gap: 48px;
  align-items: stretch;
}

.amenities-media {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.brochure-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 46px;
}

.section-copy p,
.accordion-stack p,
.disclaimer p {
  margin: 0 0 16px;
  line-height: 1.8;
}

.feature-list,
.location-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 24px 0 30px;
  list-style: none;
}

.feature-list li,
.location-list li {
  position: relative;
  transition: transform 0.32s ease, color 0.32s ease;
}

.feature-list li:hover,
.location-list li:hover {
  transform: translateX(6px);
  color: #f3dfb8;
}

.feature-list li::before,
.location-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 11px;
  height: 11px;
  border: 1px solid var(--accent-strong);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(165, 120, 67, 0.08);
  transform: translateY(-50%);
}

.location-list li {
  padding-left: 28px;
}

.location-reset-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  margin-top: 8px;
  border: 1px solid rgba(208, 173, 117, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #f3dfb8;
  cursor: pointer;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.32s ease, border-color 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.location-reset-button:hover,
.location-reset-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(239, 217, 171, 0.72);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.location-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 0.32s ease;
}

.location-link span {
  line-height: 1.6;
}

.location-link strong {
  flex-shrink: 0;
  color: rgba(243, 223, 184, 0.82);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-link.is-active {
  color: #f3dfb8;
}

.location-link:focus-visible {
  outline: 2px solid rgba(239, 217, 171, 0.7);
  outline-offset: 6px;
  border-radius: 8px;
}

.map-route-meta {
  margin-top: 14px;
  color: rgba(248, 244, 238, 0.74);
  font-size: 0.82rem;
  line-height: 1.7;
}

.map-route-meta strong {
  color: #f3dfb8;
}

.media-card {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.brochure-media {
  justify-self: end;
  width: min(100%, 680px);
}

.brochure-media .media-card {
  min-height: 560px;
  border: 1px solid rgba(208, 173, 117, 0.2);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.24);
}

.brochure-media .media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 28%, rgba(0, 0, 0, 0.08));
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.media-card img,
.media-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
  display: block;
}

.media-transition-card img,
.media-transition-card video {
  position: absolute;
  inset: 0;
}

.media-transition-card img {
  opacity: 0;
  transform: scale(1.035);
  filter: saturate(0.94) brightness(0.96);
  transition:
    opacity 1.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.4s ease;
}

.media-transition-card video {
  opacity: 1;
  transition:
    opacity 1.2s ease-out,
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.8s ease;
}

.media-transition-card.is-video-complete img {
  opacity: 1;
  transform: scale(1);
  filter: saturate(1) brightness(1);
}

.media-transition-card.is-video-complete video {
  opacity: 0;
  pointer-events: none;
}

.brochure-media .media-card:hover {
  transform: translateY(-8px);
  border-color: rgba(208, 173, 117, 0.34);
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.32);
}

.brochure-media .media-card:hover::after {
  opacity: 1;
}

.brochure-media .media-card:hover img,
.brochure-media .media-card:hover video {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.03);
}

.brochure-media .media-transition-card.is-video-complete:hover img {
  transform: scale(1.045);
}

.stats-section {
  padding-top: 0;
  background: linear-gradient(180deg, #050403, #0f0d0a);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.stat-card {
  padding: 30px 18px 26px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.065)),
    rgba(12, 10, 8, 0.58);
  backdrop-filter: blur(12px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.stat-card h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  color: var(--muted);
}

.counter {
  margin: 0;
  color: var(--accent-strong);
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}

.pricing-grid,
.downloads-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pricing-grid {
  gap: 24px;
  align-items: stretch;
}

.price-intro {
  margin-bottom: 40px;
}

.price-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 14px;
  min-height: 100%;
  padding: 28px 24px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  justify-items: center;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(122, 28, 72, 0.16), rgba(122, 28, 72, 0)),
    linear-gradient(180deg, rgba(102, 0, 51, 0.94), rgba(15, 15, 15, 0.98));
  backdrop-filter: blur(10px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.price-card-media {
  position: relative;
  overflow: hidden;
  margin-bottom: 6px;
  aspect-ratio: 4 / 3;
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(232, 216, 195, 0.12);
  background:
    linear-gradient(180deg, rgba(247, 243, 238, 0.06), rgba(247, 243, 238, 0.03)),
    rgba(255, 255, 255, 0.04);
}

.price-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(22, 9, 14, 0.26);
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.price-card-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: blur(8px);
  transform: scale(1.03);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
}

.price-card-view {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid rgba(176, 141, 87, 0.88);
  border-radius: 999px;
  background: rgba(15, 15, 15, 0.76);
  color: #f7f1e8;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  transform: translate(-50%, calc(-50% + 14px)) scale(0.96);
  transition: opacity 0.35s ease, transform 0.35s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.price-card-view:hover,
.price-card-view:focus-visible {
  background: #b08d57;
  box-shadow: 0 12px 24px rgba(43, 30, 8, 0.18);
  outline: none;
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(207, 161, 141, 0.22);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.price-card:hover .price-card-image,
.price-card:focus-within .price-card-image {
  filter: blur(8px);
  transform: scale(1.08);
}

.price-card:hover .price-card-media::after,
.price-card:focus-within .price-card-media::after {
  opacity: 0.1;
}

.price-card:hover .price-card-view,
.price-card:focus-within .price-card-view {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 24px 24px auto 24px;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(176, 141, 87, 0), rgba(176, 141, 87, 0.5), rgba(207, 161, 141, 0.38), rgba(176, 141, 87, 0));
  opacity: 1;
}

.price-card h3 {
  margin: 8px 0 8px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.25rem, 1.9vw, 1.55rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: rgba(248, 243, 238, 0.96);
}

.price-card p {
  display: grid;
  gap: 3px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
  justify-items: center;
}

.price-card p span {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232, 216, 195, 0.62);
}

.price-card p strong {
  color: rgba(255, 248, 240, 0.92);
  font-size: 0.98rem;
  font-weight: 600;
}

#price .button-outline {
  align-self: end;
  justify-self: center;
  margin-top: 10px;
  min-height: 46px;
  border: 1px solid rgba(176, 141, 87, 0.78);
  background: transparent;
  color: #e8d8c3;
  letter-spacing: 0.12em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

#price .button-outline:hover {
  background: #b08d57;
  color: #fffaf2;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(176, 141, 87, 0.18);
}

.button-row {
  display: flex;
  margin-top: 40px;
  justify-content: center;
  text-align: center;
}

#price .button-row .button {
  min-height: 52px;
  padding-inline: 28px;
  letter-spacing: 0.16em;
  background: #b08d57;
  border-color: #b08d57;
  box-shadow: 0 12px 40px rgba(176, 141, 87, 0.3);
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

#price .button-row .button:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.03);
  box-shadow: 0 18px 34px rgba(43, 30, 8, 0.16);
}

.floor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(250px, 390px));
  gap: 14px;
  justify-content: center;
  align-items: stretch;
  opacity: 0;
  animation: floor-section-rise 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.16s forwards;
}

.image-link-reset {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: inherit;
}

.floor-copy-card {
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: start;
  justify-items: center;
  grid-column: 1;
  width: 100%;
  min-height: 0;
  aspect-ratio: 1 / 1;
  padding: 6px 14px 0;
  border: 2px solid #b08d57;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(102, 0, 51, 0.16), rgba(12, 10, 8, 0.76)),
    rgba(10, 10, 10, 0.86);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.floor-copy-card .section-intro {
  margin: 0;
  max-width: 100%;
  padding: 12px 12px 0;
  color: rgba(247, 241, 232, 0.86);
  font-size: 1.02rem;
  line-height: 1.82;
  text-align: left;
  align-self: start;
}

.floor-copy-card .button {
  align-self: end;
  justify-self: stretch;
  width: calc(100% + 28px);
  margin: 0 -14px;
  min-height: 48px;
  padding: 10px 18px;
  font-size: 0.8rem;
  white-space: nowrap;
  border-radius: 0;
}

#floor .section-heading,
#floor > .container > .section-intro {
  opacity: 0;
  animation: floor-section-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

#floor > .container > .section-intro {
  animation-delay: 0.1s;
}

#floor .media-card {
  position: relative;
  border: 2px solid #b08d57;
  border-radius: 0;
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.35s ease;
}

#floor .floor-thumb-link,
#floor .floor-grid > .image-link-reset {
  width: 100%;
}

#floor .floor-thumb-link {
  grid-column: 2;
}

#floor .floor-grid > .image-link-reset:not(.floor-thumb-link) {
  grid-column: 1 / -1;
}

#floor .floor-thumb-link .media-card {
  aspect-ratio: 1 / 1;
}

#floor .floor-grid > .image-link-reset:not(.floor-thumb-link) .media-card {
  aspect-ratio: 2 / 1;
}

#floor .media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 30%, rgba(0, 0, 0, 0.18));
  opacity: 0.55;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.floor-grid .media-card img {
  filter: blur(14px);
  transform: scale(1.06);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
}

#floor .media-card:hover,
#floor .media-card:focus-within {
  transform: translateY(-8px);
  border-color: #d3ae6b;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

#floor .media-card:hover::after,
#floor .media-card:focus-within::after {
  opacity: 0.2;
}

#floor .media-card:hover img,
#floor .media-card:focus-within img {
  filter: blur(9px);
  transform: scale(1.12);
}

.floor-copy-card {
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.35s ease;
}

.floor-copy-card:hover,
.floor-copy-card:focus-within {
  transform: translateY(-8px);
  border-color: #d3ae6b;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

@keyframes floor-section-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@media (prefers-reduced-motion: reduce) {
  #floor .section-heading,
  #floor > .container > .section-intro,
  .floor-grid {
    opacity: 1;
    animation: none;
  }

  #floor .media-card,
  #floor .media-card::after,
  .floor-grid .media-card img,
  .floor-side .media-card img {
    transition: none;
  }
}

.video-shell,
.map-shell {
  overflow: hidden;
  border-radius: var(--radius);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.map-shell {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

#amenities .video-shell {
  position: relative;
  border: 1px solid rgba(176, 141, 87, 0.24);
  border-radius: 30px;
  box-shadow:
    0 22px 54px rgba(43, 30, 8, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

#amenities .video-shell::before {
  content: none;
}

#amenities .video-shell::after {
  content: none;
}

#amenities .video-shell iframe {
  filter: none;
}

#amenities .video-shell .video-fallback {
  position: relative;
}

#amenities .video-shell .video-fallback::before,
#amenities .video-shell iframe::before {
  content: "";
}

#amenities .video-shell:hover {
  transform: translateY(-8px);
  box-shadow:
    0 28px 62px rgba(43, 30, 8, 0.18),
    0 0 26px rgba(176, 141, 87, 0.08);
}

.amenities-stack {
  gap: 16px;
}

#amenities .amenity-card {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  padding: 20px 22px 22px 238px;
  border: 1px solid rgba(176, 141, 87, 0.22);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(247, 243, 238, 0.22)),
    rgba(23, 15, 13, 0.34);
  backdrop-filter: blur(16px);
  box-shadow:
    0 18px 42px rgba(43, 30, 8, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

#amenities .amenity-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 224px;
  background-position: center;
  background-size: 100% 100%, 100% 100%, cover;
  background-repeat: no-repeat;
  transform-origin: left center;
  transition: transform 0.45s ease;
}

#amenities .amenity-card:nth-of-type(1)::before {
  background-image:
    linear-gradient(90deg, rgba(18, 11, 8, 0) 62%, rgba(18, 11, 8, 0.16) 80%, rgba(18, 11, 8, 0.34) 100%),
    linear-gradient(180deg, rgba(18, 11, 8, 0.08), rgba(18, 11, 8, 0.28)),
    url("assets/images/clubhouse.jpg");
}

#amenities .amenity-card:nth-of-type(2)::before {
  background-image:
    linear-gradient(90deg, rgba(18, 11, 8, 0) 62%, rgba(18, 11, 8, 0.16) 80%, rgba(18, 11, 8, 0.34) 100%),
    linear-gradient(180deg, rgba(18, 11, 8, 0.08), rgba(18, 11, 8, 0.28)),
    url("assets/images/skypark.jpg");
}

#amenities .amenity-card:nth-of-type(3)::before {
  background-image:
    linear-gradient(90deg, rgba(18, 11, 8, 0) 62%, rgba(18, 11, 8, 0.16) 80%, rgba(18, 11, 8, 0.34) 100%),
    linear-gradient(180deg, rgba(18, 11, 8, 0.08), rgba(18, 11, 8, 0.28)),
    url("assets/images/Stiltamenities.jpg");
}

#amenities .amenity-card:hover {
  transform: translateY(-6px);
  border-color: rgba(176, 141, 87, 0.34);
  box-shadow:
    0 24px 52px rgba(43, 30, 8, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

#amenities .amenity-card:hover::before {
  transform: scale(1.12);
}

#amenities .amenity-card-head {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  color: #2d1a1c;
}

.amenity-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(176, 141, 87, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  color: #8f6c3d;
  font-size: 1rem;
  line-height: 1;
}

.amenity-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.amenity-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 0 0;
}

.amenity-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 14px;
  border: 1px solid rgba(176, 141, 87, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
  color: rgba(48, 31, 24, 0.76);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#amenities .amenities-cta,
#amenities .accordion-stack .button {
  width: 100%;
  min-height: 52px;
  margin-top: auto;
  padding-inline: 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, #c39a75, #b08d57);
  border-color: #b08d57;
  box-shadow: 0 14px 34px rgba(176, 141, 87, 0.22);
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

#amenities .amenities-cta {
  align-self: stretch;
}

#amenities .amenities-cta:hover,
#amenities .accordion-stack .button:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 18px 40px rgba(176, 141, 87, 0.28);
}

.video-shell:hover,
.map-shell:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.video-shell iframe,
.map-shell iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.video-fallback {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(208, 173, 117, 0.28);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top, rgba(165, 120, 67, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.9), rgba(8, 8, 8, 0.96));
  color: #ead8de;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 0.04em;
}

.accordion-stack {
  display: grid;
  gap: 14px;
}

.accordion-stack details {
  padding: 22px 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(247, 239, 228, 0.96)),
    rgba(255, 255, 255, 0.65);
  box-shadow: 0 18px 48px rgba(28, 21, 11, 0.1);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.accordion-stack details:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(28, 21, 11, 0.14);
}

.accordion-stack summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.accordion-stack summary::-webkit-details-marker {
  display: none;
}

.accordion-stack p {
  margin-top: 14px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.partners-grid figure {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 170px;
  margin: 0;
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(249, 245, 238, 0.95));
  box-shadow: 0 20px 50px rgba(43, 30, 8, 0.08);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.42s ease, border-color 0.42s ease;
  animation: partner-card-rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.partners-grid figure::before {
  content: "";
  position: absolute;
  inset: -30% 55% -30% -20%;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.6) 50%, transparent 80%);
  opacity: 0;
  transform: translateX(-30%) skewX(-18deg);
  transition: transform 0.7s ease, opacity 0.4s ease;
  pointer-events: none;
}

.partners-grid figure:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 24px 44px rgba(43, 30, 8, 0.16);
}

.partners-grid img {
  width: min(100%, 180px);
  max-width: 92%;
  max-height: 98px;
  object-fit: contain;
  filter: grayscale(0.1) saturate(0.95);
  transform: translateY(0) scale(1);
  transform-origin: center;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), filter 0.42s ease;
  animation: partner-logo-float 4.8s ease-in-out infinite;
}

.partners-grid figure:hover::before,
.partners-grid figure:focus-within::before {
  opacity: 1;
  transform: translateX(120%) skewX(-18deg);
}

.partners-grid figure:hover img,
.partners-grid figure:focus-within img {
  transform: translateY(-4px) scale(1.08);
  filter: grayscale(0) saturate(1.08);
}

.partners-grid figure:nth-child(2) {
  animation-delay: 0.08s;
}

.partners-grid figure:nth-child(3) {
  animation-delay: 0.16s;
}

.partners-grid figure:nth-child(4) {
  animation-delay: 0.24s;
}

.partners-grid figure:nth-child(5) {
  animation-delay: 0.32s;
}

.partners-grid figure:nth-child(6) {
  animation-delay: 0.4s;
}

@keyframes partner-card-rise {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.96);
  }

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

@keyframes partner-logo-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.downloads-grid .button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s ease,
    border-color 0.32s ease,
    color 0.32s ease;
}

.downloads-grid .button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 221, 159, 0) 0%, rgba(255, 221, 159, 0.24) 34%, rgba(255, 243, 214, 0.78) 50%, rgba(255, 221, 159, 0.24) 66%, rgba(255, 221, 159, 0) 100%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.98), rgba(24, 18, 8, 0.98));
  background-size: 220% 100%, 100% 100%;
  background-position: -140% 0, 0 0;
  opacity: 0;
  transition:
    background-position 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s ease;
}

.downloads-grid .button:hover,
.downloads-grid .button:focus-visible {
  color: #f2d9a6;
  border-color: rgba(208, 173, 117, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.24);
}

.downloads-grid .button:hover::before,
.downloads-grid .button:focus-visible::before {
  opacity: 1;
  background-position: 140% 0, 0 0;
}

.contact-shell {
  max-width: 820px;
  margin: 0 auto;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.contact-shell:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18);
}

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

.contact-form button {
  grid-column: 1 / -1;
}

.contact-form .form-disclaimer {
  grid-column: 1 / -1;
}

#contact {
  padding: 88px 0 96px;
  background:
    radial-gradient(circle at 18% 0%, rgba(122, 23, 48, 0.1), transparent 28%),
    radial-gradient(circle at 88% 22%, rgba(165, 120, 67, 0.08), transparent 24%),
    linear-gradient(180deg, #0c0908, #060404);
}

#contact .contact-shell {
  width: min(var(--container), 100%);
  max-width: 1120px;
  margin: 0 auto;
  padding: 42px 42px 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  background:
    linear-gradient(180deg, rgba(122, 28, 72, 0.16), rgba(122, 28, 72, 0)),
    linear-gradient(180deg, rgba(102, 0, 51, 0.94), rgba(15, 15, 15, 0.98));
  backdrop-filter: blur(10px);
}

#contact .contact-shell::before {
  content: "";
  position: absolute;
  inset: 28px auto 28px 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(208, 173, 117, 0.34), transparent);
  transform: translateX(-50%);
}

#contact .contact-intro,
#contact .contact-form {
  width: 100%;
  margin: 0;
  padding: 0;
}

#contact .contact-intro {
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
  text-align: left;
}

.contact-kicker {
  margin: 0;
  color: #d4b179;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

#contact .contact-intro h2 {
  margin: 0;
  color: #fff6ec;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 0.96;
  letter-spacing: 0.01em;
}

#contact .contact-intro p {
  max-width: 50ch;
  margin: 0;
  color: rgba(248, 244, 238, 0.72);
  line-height: 1.8;
}

#contact .contact-points {
  justify-content: flex-start;
  margin-top: 6px;
}

#contact .contact-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: end;
}

#contact .contact-form label {
  gap: 8px;
}

#contact .contact-form span {
  font-size: 0.64rem;
  color: rgba(232, 216, 195, 0.74);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

#contact .contact-form input {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(247, 243, 238, 0.06);
  color: rgba(247, 243, 238, 0.94);
  transition: border-color 0.28s ease, background-color 0.28s ease, box-shadow 0.28s ease;
}

#contact .contact-form input::placeholder {
  color: rgba(247, 243, 238, 0.4);
}

#contact .contact-form input:focus {
  outline: none;
  border-color: rgba(207, 161, 141, 0.72);
  background: rgba(247, 243, 238, 0.1);
  box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.1);
}

#contact .contact-form .form-disclaimer {
  grid-column: 1 / -1;
  color: rgba(247, 243, 238, 0.58);
  line-height: 1.75;
}

#contact .contact-form .form-disclaimer a {
  color: #cfa18d;
}

#contact .contact-form button {
  grid-column: 1 / -1;
  justify-self: start;
  min-height: 52px;
  padding-inline: 28px;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  background: #b08d57;
  border-color: #b08d57;
  color: #fff9f2;
  box-shadow: 0 12px 32px rgba(176, 141, 87, 0.24);
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

#contact .contact-form button:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 16px 36px rgba(176, 141, 87, 0.28);
}

.site-footer-main {
  padding: 56px 0 28px;
  background:
    radial-gradient(circle at top left, rgba(93, 11, 31, 0.2), transparent 24%),
    radial-gradient(circle at 92% 12%, rgba(165, 120, 67, 0.12), transparent 26%),
    linear-gradient(180deg, #13050a, #090305);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(220px, 0.7fr) minmax(0, 1.5fr);
  gap: 34px;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 18px;
}

.footer-brand img {
  width: min(160px, 100%);
}

.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-contact a {
  color: #f2dfe4;
  font-size: 1.02rem;
}

.footer-links-column,
.footer-disclaimer {
  display: grid;
  gap: 16px;
}

.footer-links-column h3,
.footer-disclaimer h3 {
  margin: 0;
  color: #fff5f7;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
}

.footer-links-list {
  display: grid;
  gap: 10px;
}

.footer-links-list a,
.footer-disclaimer a {
  color: #ddb6c2;
}

.footer-disclaimer p {
  margin: 0;
  color: rgba(248, 244, 238, 0.76);
  font-size: 0.9rem;
  line-height: 1.8;
}

.site-footer {
  padding: 16px;
  text-align: center;
  background: #040302;
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.site-credit {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: rgba(211, 198, 179, 0.82);
}

.site-credit a {
  color: rgba(240, 217, 168, 0.9);
  text-decoration: none;
}

.site-credit-separator {
  display: inline-block;
  margin: 0 8px;
  color: rgba(211, 198, 179, 0.46);
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: grid;
  gap: 12px;
}

.fab {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s ease,
    border-color 0.28s ease,
    filter 0.28s ease;
}

.fab svg {
  width: 22px;
  fill: #fff;
}

.fab img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.fab.phone {
  background: #8d1738;
}

.fab.whatsapp {
  background:
    center / 74% 74% no-repeat url("assets/images/contact.png?v=2"),
    rgba(0, 0, 0, 0.66);
  border-color: rgba(255, 255, 255, 0.16);
  padding: 0;
}

.fab.whatsapp svg,
.fab.whatsapp img {
  display: none;
}

.fab:hover,
.fab:focus-visible {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
  border-color: rgba(255, 255, 255, 0.28);
  filter: brightness(1.06);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
}

.modal-panel {
  position: relative;
  width: min(880px, calc(100vw - 24px));
  max-height: calc(100vh - 48px);
  margin: 24px auto 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  overflow: auto;
  background:
    radial-gradient(circle at top right, rgba(165, 120, 67, 0.14), transparent 18%),
    linear-gradient(180deg, rgba(41, 5, 15, 0.96), rgba(17, 17, 17, 0.98));
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

.modal-view-form {
  max-width: 620px;
  width: 100%;
  margin: 0 auto;
}

.modal-panel:has(.modal-view-form:not([hidden])) {
  width: min(680px, calc(100vw - 24px));
  padding: 28px 24px 24px;
}

.modal-view-legal {
  display: grid;
  gap: 22px;
}

.legal-header {
  display: grid;
  gap: 12px;
  padding-right: 36px;
}

.legal-kicker {
  margin: 0;
  color: #cfb8bf;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.legal-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid rgba(208, 173, 117, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #eadfe3;
}

.legal-links a.is-active {
  background: rgba(122, 23, 48, 0.8);
  border-color: rgba(208, 173, 117, 0.56);
}

.legal-content {
  display: grid;
  gap: 14px;
  color: rgba(248, 244, 238, 0.88);
  line-height: 1.75;
}

.legal-content h3 {
  margin: 12px 0 0;
  color: #fff4f7;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
}

.legal-content p {
  margin: 0;
}

.legal-content a {
  color: #dfb8c3;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 110;
  transform: translateX(-50%);
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(14, 11, 8, 0.92);
  color: #f7efe6;
  border: 1px solid rgba(208, 173, 117, 0.28);
  box-shadow: var(--shadow);
}

[hidden] {
  display: none !important;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .enquiry-grid,
  .brochure-grid,
  .amenities-grid,
  .location-grid,
  .about-grid,
  .floor-grid,
  .site-footer-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid,
  .partners-grid,
  .downloads-grid,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-copy h1 {
    max-width: none;
  }

  .hero-main {
    grid-template-columns: minmax(0, 1fr);
    column-gap: 0;
    row-gap: 4px;
    width: 100%;
  }

  .hero-subcopy {
    max-width: none;
  }

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

  .lead-card {
    justify-self: start;
    max-width: 480px;
  }

  .amenities-grid {
    gap: 30px;
  }

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

  .floor-copy-card,
  #floor .floor-thumb-link,
  #floor .floor-grid > .image-link-reset:not(.floor-thumb-link) {
    grid-column: auto;
  }

  #floor .floor-thumb-link {
    order: 1;
  }

  .floor-copy-card {
    order: 2;
  }

  #floor .floor-grid > .image-link-reset:not(.floor-thumb-link) {
    order: 3;
  }

  .enquiry-grid {
    gap: 32px;
  }

  .enquiry-section .lead-card {
    justify-self: stretch;
    max-width: none;
  }

  .brochure-media {
    justify-self: stretch;
    width: 100%;
  }

  .brochure-media .media-card {
    min-height: 460px;
  }

  .hero-content-shell {
    width: 100%;
    bottom: 0;
  }

  .hero-copy-wrap {
    padding: 0;
  }

  .hero-copy {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    min-height: auto;
    padding: 0 14px 14px;
  }

  .hero-facts {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-self: stretch;
  }

  .hero-facts article {
    min-height: 0;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: auto;
    display: block;
    overflow: hidden;
    background: transparent;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-banner {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: fill;
    object-position: center;
    background: transparent;
  }

  .hero-slideshow {
    position: relative;
    min-height: clamp(320px, 58vh, 460px);
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(8, 6, 7, 0.12), rgba(8, 6, 7, 0.12) 44%, rgba(16, 7, 10, 0.38) 78%, rgba(16, 7, 10, 0.66));
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 6px);
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    min-width: 236px;
    padding: 14px;
    border: 1px solid rgba(208, 173, 117, 0.42);
    border-radius: 24px;
    background:
      radial-gradient(circle at top right, rgba(122, 23, 48, 0.32), transparent 38%),
      linear-gradient(180deg, rgba(13, 9, 10, 0.98), rgba(35, 7, 20, 0.96));
    box-shadow:
      0 22px 52px rgba(0, 0, 0, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(14px);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 14px;
    border: 1px solid rgba(208, 173, 117, 0.18);
    border-radius: 16px;
    color: #efd9ab;
    background:
      linear-gradient(90deg, rgba(208, 173, 117, 0) 0%, rgba(208, 173, 117, 0.12) 50%, rgba(208, 173, 117, 0) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
    background-size: 220% 100%, 100% 100%;
    background-position: 100% 50%, 0 0;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    letter-spacing: 0.16em;
    transition:
      transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
      color 0.28s ease,
      border-color 0.28s ease,
      background-position 0.42s ease,
      background-color 0.28s ease;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a.is-hovered {
    transform: translateX(6px);
    color: #fff4d5;
    border-color: rgba(239, 217, 171, 0.62);
    background-position: 0% 50%, 0 0;
    background-color: rgba(208, 173, 117, 0.08);
  }

  .nav-hover-bar {
    display: none;
  }

  .hero-content-shell {
    position: relative;
    left: auto;
    right: auto;
    width: 100%;
    bottom: auto;
    margin-top: -1px;
    padding: 16px 0 24px;
  }

  .hero-copy-wrap {
    padding: 0;
  }

  .hero-copy {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
    padding: 0 10px 28px;
  }

  .hero-main {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    max-width: 520px;
    justify-self: center;
    margin-inline: auto;
    padding: 14px 13px;
    border-radius: 18px;
    min-height: 0;
  }

  .hero-details {
    display: grid;
    gap: 12px;
    align-content: start;
  }

  .hero-eyebrow {
    gap: 10px;
    font-size: 0.62rem;
    letter-spacing: 0.24em;
  }

  .hero-eyebrow::before {
    width: 34px;
  }

  .hero-subcopy {
    font-size: 0.88rem;
    max-width: none;
    line-height: 1.65;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading h2 {
    font-size: clamp(2rem, 10vw, 3.4rem);
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.65rem, 7.6vw, 2.5rem);
  }

  .hero-copy h1 {
    font-size: clamp(1.4rem, 6.2vw, 2rem);
    max-width: 15ch;
  }

  .hero-meta {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-price {
    width: 100%;
    justify-content: center;
    padding-inline: 16px;
    font-size: 0.74rem;
  }

  .hero-price,
  .hero-address {
    font-size: 0.68rem;
  }

  .hero-address {
    text-align: center;
    font-size: 0.74rem;
    letter-spacing: 0.12em;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .hero-dots {
    right: 16px;
    bottom: 16px;
  }

  .hero-facts article {
    min-height: 0;
    padding: 14px 44px 14px 16px;
  }

  .hero-facts strong,
  .hero-facts span {
    max-width: none;
  }

  .enquiry-section {
    padding: 40px 0 24px;
  }

  .enquiry-copy {
    padding-top: 0;
  }

  .enquiry-label {
    max-width: none;
    font-size: clamp(1.85rem, 9vw, 2.9rem);
  }

  .enquiry-text {
    max-width: none;
  }

  .enquiry-price {
    margin-top: 24px;
    padding-left: 14px;
  }

  .enquiry-price-value {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .enquiry-stats {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 26px;
  }

  .enquiry-stat {
    min-height: 0;
    padding: 16px;
  }

  .lead-card-featured {
    padding: 26px 22px 22px;
  }

  .brochure-media .media-card {
    min-height: 360px;
  }

  .enquiry-points,
  .contact-points {
    flex-direction: column;
    align-items: stretch;
  }

  .amenities-intro {
    max-width: none;
    margin-bottom: 22px;
  }


  #amenities .amenity-card {
    min-height: 0;
    padding: 188px 18px 20px;
  }

  #amenities .amenity-card::before {
    inset: 0 0 auto 0;
    width: auto;
    height: 164px;
    border-right: 0;
    border-bottom: 1px solid rgba(176, 141, 87, 0.2);
  }

  .amenity-pills {
    margin-left: 0;
  }

  #contact .contact-shell {
    width: calc(100% - 20px);
    padding: 24px 16px 22px;
    border-radius: 22px;
  }

  #contact .contact-shell::before {
    display: none;
  }

  #contact .contact-intro {
    gap: 10px;
    margin-bottom: 22px;
    text-align: center;
  }

  #contact .contact-intro p {
    max-width: none;
  }

  #contact .contact-form {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  #contact .contact-form input {
    padding: 14px 16px;
    border-radius: 14px;
  }

  #contact .contact-form .form-disclaimer {
    font-size: 0.6rem;
    line-height: 1.65;
  }

  #contact .contact-form button {
    width: 100%;
    justify-self: stretch;
    min-height: 48px;
    padding-inline: 16px;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }

  .pricing-grid,
  .partners-grid,
  .downloads-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .brand img {
    width: 72px;
    height: 72px;
  }

  .site-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .partners-grid {
    gap: 14px;
  }

  .partners-grid figure {
    min-height: 156px;
    padding: 22px 18px;
  }

  .partners-grid img {
    width: min(100%, 190px);
    max-height: 88px;
  }

  .modal-panel {
    width: calc(100vw - 16px);
    max-height: calc(100vh - 16px);
    margin-top: 8px;
    padding: 20px 16px;
    border-radius: 22px;
  }

  .legal-header {
    padding-right: 28px;
  }
}
