:root {
  --bg: #091112;
  --text: #f5f1e8;
  --muted: rgba(245, 241, 232, 0.72);
  --line: rgba(220, 206, 185, 0.16);
  --accent: #9fc7d8;
  --accent-2: #f0d8a6;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.26);
  --white-04: rgba(255, 255, 255, 0.04);
  --white-06: rgba(255, 255, 255, 0.06);
  --white-08: rgba(255, 255, 255, 0.08);
  --white-12: rgba(255, 255, 255, 0.12);
  --white-14: rgba(255, 255, 255, 0.14);
  --button-bg: rgba(11, 14, 15, 0.28);
  --glass-panel: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(159, 199, 216, 0.12), transparent 22%),
    radial-gradient(circle at 80% 15%, rgba(240, 216, 166, 0.18), transparent 26%),
    linear-gradient(180deg, #081011, #171314 48%, #0b0d10);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  overflow-x: hidden;
}
body.lightbox-open { overflow: hidden; }

body.theme-olive {
  --bg: #12110c;
  --text: #f4efdf;
  --muted: rgba(244, 239, 223, 0.72);
  --line: rgba(210, 194, 149, 0.18);
  --accent: #9dab83;
  --accent-2: #d8bc7f;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
  background:
    radial-gradient(circle at 15% 14%, rgba(157, 171, 131, 0.18), transparent 24%),
    radial-gradient(circle at 85% 12%, rgba(216, 188, 127, 0.16), transparent 28%),
    linear-gradient(180deg, #11100b, #1b1811 46%, #0d0c09);
}

a, button { color: inherit; font: inherit; }
a { text-decoration: none; }
button { cursor: pointer; }

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  gap: 14px;
  background: rgba(8, 10, 11, 0.97);
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-mark {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  border: 1px solid var(--white-14);
  background: var(--white-06);
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 700;
  animation: loaderPulse 1.8s ease-in-out infinite;
}
@keyframes loaderPulse { 50% { transform: scale(1.08); box-shadow: 0 0 44px rgba(255, 228, 167, 0.18); } }

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 18px clamp(16px, 3vw, 44px);
  background: linear-gradient(to bottom, rgba(8, 10, 11, 0.88), rgba(8, 10, 11, 0));
}

.back-home {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  backdrop-filter: blur(14px);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.back-home:hover {
  transform: translateX(-2px);
  border-color: rgba(255, 228, 167, 0.38);
  background: rgba(255, 255, 255, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
}

.brand-logo {
  display: block;
  width: clamp(150px, 16vw, 210px);
  height: auto;
  max-height: 54px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
}

.hero-shell, .subhero-shell {
  position: relative;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
  --spot-x: 50%;
  --spot-y: 20%;
}

.hero-shell {
  min-height: 100svh;
}
.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(159, 199, 216, 0.14), transparent 30%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 180px);
  opacity: 0.8;
  pointer-events: none;
}
.hero-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(196, 153, 87, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(8, 16, 17, 0.06), rgba(8, 16, 17, 0.8));
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-media img,
.subhero-shell::before {
  position: absolute;
  inset: -2%;
  width: 104%;
  height: 104%;
  object-fit: cover;
  transform: scale(1.08);
  animation: auroraZoom 18s ease-in-out infinite alternate;
}
.hero-media img { filter: saturate(1.06) brightness(0.72); }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 11, 12, 0.18), rgba(6, 11, 12, 0.84)),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 32%);
}
@keyframes auroraZoom { to { transform: scale(1.18) translateY(-1.5%); } }

.aurora-beam,
.aurora-beam::before,
.aurora-beam::after {
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.38;
}
.aurora-beam {
  top: 12%;
  right: -8%;
  width: 42vw;
  height: 42vw;
  background: radial-gradient(circle, rgba(159, 199, 216, 0.18), transparent 62%);
  animation: driftA 13s ease-in-out infinite alternate;
}
.aurora-beam::before,
.aurora-beam::after { content: ""; inset: auto; }
.aurora-beam::before {
  left: -10vw;
  top: 25vh;
  width: 30vw;
  height: 30vw;
  background: radial-gradient(circle, rgba(255, 225, 168, 0.28), transparent 66%);
  animation: driftB 16s ease-in-out infinite alternate;
}
.aurora-beam::after {
  right: 24vw;
  top: 44vh;
  width: 22vw;
  height: 22vw;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 68%);
}
@keyframes driftA { to { transform: translate(-6vw, 5vh) scale(1.16); } }
@keyframes driftB { to { transform: translate(6vw, -4vh) scale(1.1); } }

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100svh;
}
.hero-categories {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 100svh;
}
.hero-category {
  position: relative;
  min-height: 100svh;
  min-width: 0;
  padding: 24px;
  border-right: 1px solid var(--line);
  overflow: hidden;
  background: rgba(13, 14, 15, 0.12);
  backdrop-filter: blur(6px);
  text-align: left;
  isolation: isolate;
  transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1), filter 0.25s ease;
}
.hero-category:last-child { border-right: 0; }
.hero-category::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -2;
  background: var(--card-bg) center/cover;
  transform: scale(1.04);
  transition: transform 0.9s cubic-bezier(0.19, 1, 0.22, 1), filter 0.4s ease;
}
.hero-category::after {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(14, 10, 9, 0.1), rgba(14, 10, 9, 0.88)),
    linear-gradient(135deg, rgba(159, 199, 216, 0.08), transparent 36%);
}
.hero-category:hover { z-index: 2; }
.hero-category:hover::before { transform: scale(1.12); filter: saturate(1.08) contrast(1.04); }
.hero-category-inner {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 42px;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 11px;
  font-weight: 800;
  color: var(--accent-2);
}
h1, h2, h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
}
.hero-category h1 { font-size: clamp(40px, 4.4vw, 68px); margin-bottom: 12px; letter-spacing: 0.02em; }
.hero-category p { margin: 0 0 18px; color: rgba(255, 255, 255, 0.78); line-height: 1.7; }
.hero-category span,
.summary-card span,
.subhero-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--white-14);
  background: var(--button-bg);
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.content-shell,
.subhero-content {
  width: min(1240px, calc(100% - 36px));
  margin-inline: auto;
}
.content-shell {
  position: relative;
  z-index: 1;
  padding: 72px 0 120px;
}

.content-shell > section + section {
  margin-top: 76px;
}

.intro-panel-large + .estate-ribbon {
  margin-top: 32px;
}

.intro-panel,
.category-section { position: relative; }
.intro-panel {
  padding: 34px;
  border-radius: 34px;
  border: 1px solid var(--line);
  background: var(--glass-panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.intro-panel p:last-child { max-width: 760px; color: var(--muted); line-height: 1.8; }
.intro-panel-large {
  padding: 42px;
  text-align: center;
}
.intro-panel-large h2 {
  max-width: none;
  margin-inline: auto;
  font-size: clamp(30px, 3.8vw, 50px);
  line-height: 1.04;
  text-wrap: pretty;
}
.intro-panel-large p:last-child {
  margin-inline: auto;
}
.estate-ribbon {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 12px 0;
  border-top: 1px solid var(--white-08);
  border-bottom: 1px solid var(--white-08);
}
.estate-ribbon-item {
  padding: 18px 28px;
  border-right: 1px solid var(--white-08);
}
.estate-ribbon-item:last-child { border-right: 0; }
.estate-ribbon-label {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.estate-ribbon-item strong {
  font-size: 18px;
  line-height: 1.5;
}

.estate-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 20px;
  align-items: stretch;
}
.estate-story,
.estate-visual {
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.estate-story {
  padding: 38px;
  background: var(--glass-panel);
  text-align: center;
}
.estate-story h2 {
  max-width: min(100%, 30ch);
  margin-inline: auto;
  font-size: clamp(28px, 3.3vw, 40px);
  line-height: 1.04;
  text-wrap: pretty;
}
.estate-story p:not(.eyebrow) {
  max-width: 62ch;
  margin-inline: auto;
  color: var(--muted);
  line-height: 1.85;
}
.estate-story-actions {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}
.estate-story-actions .subhero-link {
  background: rgba(11, 14, 15, 0.42);
}
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.estate-visual {
  position: relative;
  min-height: 520px;
  background: var(--white-04);
}
.estate-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--card-bg) center/cover;
  transform: scale(1.04);
}
.estate-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 12, 13, 0.08), rgba(10, 12, 13, 0.84)),
    linear-gradient(135deg, rgba(159, 199, 216, 0.08), transparent 36%);
}
.estate-visual-card {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 1;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid var(--white-12);
  background: rgba(11, 14, 15, 0.3);
  backdrop-filter: blur(14px);
}
.estate-visual-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--accent-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.estate-visual-card strong {
  display: block;
  max-width: 12ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 5vw, 54px);
  line-height: 0.98;
}

.summary-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--white-08);
}
.summary-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  grid-template-areas:
    "media eyebrow"
    "media title"
    "media text"
    "media link";
  align-items: center;
  column-gap: 34px;
  row-gap: 10px;
  min-height: 286px;
  padding: 28px 0;
  border-bottom: 1px solid var(--white-08);
  overflow: visible;
  background: none;
  box-shadow: none;
  isolation: isolate;
  transition: opacity 0.28s ease;
}
.summary-card::after { content: none; }
.summary-card .eyebrow {
  grid-area: eyebrow;
  margin: 0;
  padding-top: 6px;
}
.summary-card:hover {
  opacity: 0.96;
}
.summary-card h2 {
  grid-area: title;
  margin: 0;
  max-width: 16ch;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 0.96;
}
.summary-card p:not(.eyebrow) {
  grid-area: text;
  max-width: 58ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}
.summary-card span {
  grid-area: link;
  margin-top: 4px;
  justify-self: start;
}

.story-grid,
.feature-grid,
.practical-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.story-card,
.feature-card,
.practical-card {
  position: relative;
  padding: 28px 0 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  transition: transform 0.28s ease, opacity 0.25s ease;
}

.story-card::before,
.feature-card::before,
.practical-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 84px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-2), var(--white-08));
}

.story-card::after,
.feature-card::after,
.practical-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  border-top: 1px solid var(--white-08);
}

.story-card:hover,
.feature-card:hover,
.practical-card:hover {
  transform: translateX(8px);
}

.story-card h2,
.feature-card h2,
.practical-card h2 {
  margin-bottom: 18px;
  max-width: min(100%, 22ch);
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-wrap: pretty;
}

.story-card p:not(.eyebrow),
.feature-card p:not(.eyebrow),
.practical-card p:not(.eyebrow) {
  max-width: 58ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.practical-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.practical-card li + li {
  margin-top: 10px;
}

.practical-card li {
  position: relative;
  padding-left: 18px;
}

.practical-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.92em;
  width: 7px;
  height: 1px;
  background: var(--accent-2);
}

.practical-card a {
  color: var(--accent-2);
  text-decoration: underline;
  text-decoration-color: rgba(240, 216, 166, 0.45);
  text-underline-offset: 0.18em;
}

.practical-card a:hover {
  text-decoration-color: currentColor;
}

.reservation-section {
  margin-bottom: 110px;
}

.reservation-section-page {
  margin-bottom: 0;
}

.reservation-widget {
  margin-top: 26px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.reservation-widget iframe {
  display: block;
  width: 100%;
  min-height: 120px;
  border: 0;
  border-radius: 10px;
  background: #fff;
}

.story-card .eyebrow,
.feature-card .eyebrow,
.practical-card .eyebrow {
  margin-bottom: 12px;
  color: rgba(240, 216, 166, 0.82);
  letter-spacing: 0.2em;
}

.summary-card::before {
  content: "";
  position: absolute;
  inset: 28px auto 28px 0;
  z-index: -1;
  width: min(360px, 32vw);
  height: 230px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(10, 12, 13, 0.1), rgba(10, 12, 13, 0.62)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 36%),
    var(--card-bg) center/cover;
  transform: scale(1);
  transition: transform 0.75s cubic-bezier(0.19, 1, 0.22, 1), filter 0.35s ease;
  transform-origin: center;
  clip-path: inset(0 round 26px);
}

.summary-card:hover::before {
  transform: scale(1.025);
  filter: saturate(1.06) contrast(1.03);
}

.feature-card:nth-child(2) h2,
.practical-card:nth-child(2) h2 {
  max-width: min(100%, 24ch);
}

.subhero-shell {
  min-height: 82svh;
  display: grid;
  align-items: end;
  padding: 120px 0 56px;
}
.subhero-shell::before {
  content: "";
  background: var(--hero-bg) center/cover;
}
.subhero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 11, 12, 0.18), rgba(6, 11, 12, 0.88)),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 32%);
}
.subhero-content {
  position: relative;
  z-index: 1;
}
.subhero-content h1 { max-width: 9ch; font-size: clamp(54px, 9vw, 118px); }
.reservation-hero .subhero-content h1 {
  max-width: min(100%, 1120px);
  font-size: clamp(48px, 7vw, 96px);
}
.subhero-content p:not(.eyebrow) { max-width: 700px; color: rgba(255, 255, 255, 0.78); line-height: 1.8; font-size: 18px; }
.subhero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }

.category-section { display: grid; gap: 28px; scroll-margin-top: 92px; }
.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 1.15fr);
  gap: 30px 42px;
  align-items: end;
}
.section-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -16px; }
.section-heading h2 { font-size: clamp(42px, 6vw, 78px); }
.section-heading > h2:last-child {
  grid-column: 1 / -1;
  max-width: none;
}
.section-heading p { margin: 0; color: var(--muted); line-height: 1.8; }

.gallery {
  perspective: 1200px;
}

.gallery-collage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(220px, 0.9fr);
  gap: 16px;
  min-height: 520px;
  width: 100%;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 34px;
  overflow: hidden;
  background: var(--white-04);
  box-shadow: var(--shadow);
  text-align: left;
  transition: transform 0.28s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.gallery-collage-single {
  grid-template-columns: 1fr;
}

.gallery-collage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(159, 199, 216, 0.08), transparent 40%);
  pointer-events: none;
}

.gallery-collage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(6, 8, 5, 0.72) 100%);
  pointer-events: none;
}

.gallery-collage:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 228, 167, 0.28);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.3);
}

.gallery-collage-main,
.gallery-collage-small {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 24px;
}

.gallery-collage-main {
  min-height: 488px;
}

.gallery-collage-stack {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 16px;
}

.gallery-collage-small {
  min-height: 152px;
}

.gallery-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
  transition: transform 0.75s cubic-bezier(0.19, 1, 0.22, 1), filter 0.45s ease;
}

.gallery-collage:hover img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.04);
}

.gallery-collage-overlay {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 30px;
  z-index: 1;
  display: grid;
  gap: 10px;
  max-width: 440px;
}

.gallery-collage-overlay strong {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 5vw, 54px);
  line-height: 0.96;
}

.gallery-collage-overlay small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.65;
}

.gallery-collage-main::after,
.gallery-collage-small::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 11, 12, 0.5), transparent 58%);
  pointer-events: none;
}

.gallery-chip {
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--white-12);
  background: rgba(9, 11, 12, 0.45);
  backdrop-filter: blur(16px);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.site-footer {
  position: relative;
  width: 100%;
  margin: 84px 0 0;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    linear-gradient(135deg, rgba(240, 216, 166, 0.06), transparent 42%),
    rgba(7, 9, 10, 0.88);
  border-top: 1px solid var(--white-08);
  border-bottom: 1px solid var(--white-06);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(159, 199, 216, 0.08), transparent 24%),
    radial-gradient(circle at 86% 24%, rgba(240, 216, 166, 0.08), transparent 28%);
  pointer-events: none;
}

.site-footer-grid {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  padding: 42px 0 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 28px;
  align-items: start;
}

.footer-column h3 {
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-family: "Manrope", "Segoe UI", sans-serif;
  text-align: center;
}

.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  text-align: left;
}

.footer-column li {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.75;
}

.footer-column a {
  color: var(--text);
}

.footer-column a:hover {
  color: var(--accent-2);
}

.footer-bottom {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  padding: 16px 0 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--white-08);
  color: var(--muted);
  font-size: 13px;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}
.footer-legal a {
  color: var(--muted);
}
.footer-legal a:hover {
  color: var(--accent-2);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: rgba(5, 7, 8, 0.88);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox figure {
  margin: 0;
  width: min(1100px, calc(100vw - 120px));
  max-height: 86vh;
  transform: scale(0.92) translateY(20px);
  opacity: 0;
  transition: transform 0.34s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.34s ease;
}
.lightbox.open figure { transform: scale(1) translateY(0); opacity: 1; }
.lightbox img { width: 100%; max-height: 78vh; object-fit: contain; border-radius: 24px; }
.lightbox figcaption { margin-top: 12px; text-align: center; color: var(--muted); }
.lightbox-gallery {
  display: grid;
  gap: 16px;
}
.lightbox-gallery #lightboxImage {
  max-height: 62vh;
  background: rgba(255, 255, 255, 0.03);
  opacity: 1;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.lightbox-gallery #lightboxImage.is-changing {
  opacity: 0.62;
  transform: scale(0.992);
}
.lightbox-thumbs {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 10px;
}
.lightbox-thumb {
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  opacity: 0.72;
  transition: opacity 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}
.lightbox-thumb:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.lightbox-thumb.active {
  opacity: 1;
  border-color: rgba(255, 228, 167, 0.38);
}
.lightbox-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0;
}
.lightbox-close {
  position: absolute;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: var(--text);
}
.lightbox-close { top: 20px; right: 20px; width: 50px; height: 50px; font-size: 34px; }
.lightbox-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(10, 12, 12, 0.58);
  color: var(--text);
  backdrop-filter: blur(16px);
  transform: translateY(-50%);
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}
.lightbox-arrow:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 228, 167, 0.42);
  transform: translateY(-50%) scale(1.04);
}
.lightbox-arrow:focus-visible {
  outline: 2px solid rgba(255, 228, 167, 0.72);
  outline-offset: 4px;
}
.lightbox-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
}
.lightbox-arrow-prev { left: max(22px, calc((100vw - 1240px) / 2)); }
.lightbox-arrow-next { right: max(22px, calc((100vw - 1240px) / 2)); }
.lightbox-arrow-prev::before { transform: translate(-35%, -50%) rotate(-45deg); }
.lightbox-arrow-next::before { transform: translate(-65%, -50%) rotate(135deg); }

.mobile-bottom-nav { display: none; }

@media (max-width: 920px) {
  .content-shell,
  .subhero-content { width: min(100% - 28px, 760px); }
  body {
    background:
      radial-gradient(circle at 20% 6%, rgba(157, 171, 131, 0.12), transparent 26%),
      linear-gradient(180deg, #11100b, #16130e 46%, #0d0c09);
  }
  .topbar {
    align-items: flex-start;
    padding: 16px 14px;
    gap: 10px;
  }
  .back-home {
    width: 40px;
    height: 40px;
    border-radius: 13px;
    background: rgba(12, 13, 12, 0.52);
  }
  .brand {
    min-height: 42px;
  }
  .brand-logo {
    width: clamp(142px, 48vw, 188px);
    max-height: 46px;
  }
  .hero-media img,
  .hero-category::before,
  .subhero-shell::before {
    inset: 0;
    width: 100%;
    height: 100%;
    transform: none;
    animation: none;
  }
  .aurora-beam { width: 70vw; height: 70vw; }
  .hero-categories,
  .estate-ribbon,
  .estate-grid,
  .summary-grid,
  .story-grid,
  .feature-grid,
  .practical-grid,
  .site-footer-grid,
  .section-heading { grid-template-columns: 1fr; }
  .intro-panel-large {
    padding: 24px 20px;
  }
  .intro-panel-large h2 {
    max-width: none;
    font-size: 28px;
    line-height: 1.08;
  }
  .content-shell {
    padding: 46px 0 110px;
  }
  .content-shell > section + section {
    margin-top: 52px;
  }
  .intro-panel {
    padding: 24px 20px;
    border-radius: 22px;
  }
  .intro-panel h2 {
    font-size: 30px;
    line-height: 1.06;
  }
  .intro-panel p:last-child {
    font-size: 15px;
    line-height: 1.75;
  }
  .estate-story h2 {
    max-width: none;
  }
  .estate-story,
  .estate-visual {
    min-height: auto;
  }
  .estate-visual {
    min-height: 360px;
  }
  .estate-story {
    padding: 28px 20px;
    border-radius: 24px;
  }
  .estate-visual,
  .estate-visual-card {
    border-radius: 24px;
  }
  .estate-visual-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 18px;
  }
  .estate-visual-card strong {
    max-width: none;
    font-size: 38px;
  }
  .hero-shell {
    min-height: 100svh;
  }
  .hero-categories {
    min-height: 100svh;
    padding-bottom: 88px;
  }
  .hero-category {
    min-height: 31svh;
    padding: 20px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .hero-category-inner {
    left: 18px;
    right: 18px;
    bottom: 22px;
  }
  .hero-category h1 {
    font-size: clamp(36px, 11vw, 48px);
    line-height: 0.98;
    margin-bottom: 8px;
  }
  .hero-category p {
    max-width: 30ch;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.55;
  }
  .hero-category span,
  .summary-card span,
  .subhero-link {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }
  .hero-category:hover { transform: none; }
  .estate-ribbon-item {
    padding-inline: 0;
    border-right: 0;
    border-bottom: 1px solid var(--white-08);
  }
  .estate-ribbon-item:last-child {
    border-bottom: 0;
  }
  .summary-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "media"
      "title"
      "text"
      "link";
    row-gap: 16px;
    padding: 24px 0;
  }
  .summary-card::before,
  .summary-card::after {
    inset: 58px 0 auto 0;
    width: 100%;
    height: 220px;
  }
  .summary-card h2 {
    max-width: none;
    font-size: 34px;
    line-height: 1.02;
  }
  .summary-card p:not(.eyebrow) {
    max-width: none;
    font-size: 15px;
    line-height: 1.72;
  }
  .story-card,
  .feature-card,
  .practical-card {
    padding-top: 22px;
  }
  .story-card:hover,
  .feature-card:hover,
  .practical-card:hover {
    transform: none;
  }
  .story-card h2,
  .feature-card h2,
  .practical-card h2 {
    max-width: none;
    font-size: 31px;
    line-height: 1.06;
    margin-bottom: 14px;
  }
  .story-card p:not(.eyebrow),
  .feature-card p:not(.eyebrow),
  .practical-card p:not(.eyebrow),
  .practical-card ul {
    font-size: 15px;
    line-height: 1.75;
  }
  .subhero-shell {
    min-height: 76svh;
    align-items: end;
    padding: 108px 0 42px;
  }
  .subhero-overlay {
    background:
      linear-gradient(180deg, rgba(6, 7, 6, 0.22), rgba(6, 7, 6, 0.78) 62%, rgba(6, 7, 6, 0.94)),
      radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.08), transparent 32%);
  }
  .subhero-content h1 {
    max-width: 10.5ch;
    font-size: clamp(44px, 13vw, 58px);
    line-height: 0.98;
  }
  .reservation-hero .subhero-content h1 {
    font-size: clamp(42px, 12vw, 56px);
  }
  .subhero-content p:not(.eyebrow) {
    max-width: 33ch;
    font-size: 16px;
    line-height: 1.7;
  }
  .subhero-actions {
    gap: 10px;
    margin-top: 18px;
  }
  .section-heading {
    gap: 12px;
  }
  .section-heading .eyebrow {
    margin-bottom: 0;
  }
  .section-heading h2 {
    font-size: clamp(36px, 12vw, 50px);
    line-height: 1;
  }
  .gallery { grid-template-columns: 1fr; }
  .gallery-collage {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 10px;
    padding: 10px;
    border-radius: 22px;
  }
  .gallery-collage-main {
    min-height: 300px;
    border-radius: 17px;
  }
  .gallery-collage-stack {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: none;
    gap: 10px;
  }
  .gallery-collage-small {
    min-height: 86px;
    border-radius: 14px;
  }
  .gallery-collage-overlay {
    position: static;
    max-width: none;
    margin-top: 0;
    padding: 8px 4px 4px;
  }
  .gallery-collage-overlay strong {
    font-size: 30px;
    line-height: 1;
  }
  .gallery-collage-overlay small {
    font-size: 14px;
    line-height: 1.55;
  }
  .gallery-chip {
    padding: 8px 11px;
    font-size: 11px;
  }
  .footer-bottom,
  .footer-legal {
    justify-content: center;
    text-align: center;
  }
  .mobile-bottom-nav {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    z-index: 120;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
    padding: 7px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: rgba(9, 10, 9, 0.9);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
  }
  .mobile-bottom-nav a,
  .mobile-bottom-nav button {
    border: 0;
    border-radius: 13px;
    padding: 11px 7px;
    background: rgba(255, 255, 255, 0.075);
    text-align: center;
    color: var(--text);
    font-size: 14px;
    line-height: 1;
  }
  .site-footer {
    margin: 56px 0 0;
    padding-bottom: 84px;
  }
  .site-footer-grid {
    width: min(100% - 24px, 760px);
    padding: 32px 0 22px;
    gap: 22px;
  }
  .footer-column h3,
  .footer-column ul {
    text-align: left;
    margin-inline: 0;
  }
  .footer-bottom {
    width: min(100% - 24px, 760px);
    flex-direction: column;
    text-align: center;
  }
  .lightbox figure { width: calc(100vw - 30px); }
  .lightbox-gallery #lightboxImage {
    max-height: 46vh;
  }
  .lightbox-arrow {
    top: calc(50% - 42px);
    width: 46px;
    height: 46px;
  }
  .lightbox-arrow-prev { left: 14px; }
  .lightbox-arrow-next { right: 14px; }
  .lightbox-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }
  .lightbox-thumb {
    flex: 0 0 78px;
    scroll-snap-align: center;
  }
}
