:root {
  --color-black: #0a0a0a;
  --color-ivory: #f9f9f9;
  --color-taupe: #c2b8a3;
  --color-gold: #d4af37;
  --color-red: #c0392b;
  --color-white: #ffffff;
  --container: min(1160px, calc(100vw - 48px));
  --section-space: clamp(88px, 11vw, 152px);
  --ease: 0.35s ease;
  --shadow-card: 0 24px 60px rgba(10, 10, 10, 0.08);
  --shadow-soft: 0 18px 36px rgba(10, 10, 10, 0.1);
  --border-soft: 1px solid rgba(10, 10, 10, 0.08);
  --nav-height: 72px;
  --color-gold-glow: rgba(212, 175, 55, 0.45);
}


html,
body {
  box-sizing: border-box;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  color: var(--color-black);
  background: var(--color-ivory);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

[hidden] {
  display: none !important;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

button,
a,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

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

ul,
p,
h1,
h2,
h3,
figure {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

address {
  font-style: normal;
}

main {
  overflow: clip;
}

h1,
h2,
h3,
.site-logo,
.section-heading__underline,
.pricing-card__amount,
.site-footer__logo,
.map-link__text strong,
.calendar-modal__header h2,
.hero h1 {
  font-family: "Playfair Display", serif;
  font-weight: 300;
  letter-spacing: -0.03em;
}

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

.button {
  min-height: 48px;
  padding: 14px 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 400;
  text-transform: uppercase;
  transition:
    border-color var(--ease),
    color var(--ease),
    background-color var(--ease),
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.button--solid {
  box-shadow: 0 6px 18px rgba(10, 10, 10, 0.14);
}

.button--solid:hover,
.button--solid:focus-visible {
  box-shadow: 0 12px 28px rgba(10, 10, 10, 0.18);
}

.button--ghost {
  border-color: rgba(212, 175, 55, 0.8);
  color: var(--color-ivory);
  background: rgba(10, 10, 10, 0.08);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: rgba(212, 175, 55, 0.12);
}

.button--solid {
  background: var(--color-black);
  color: var(--color-ivory);
}

.button--solid:hover,
.button--solid:focus-visible {
  background: rgba(10, 10, 10, 0.88);
}

.button--ghost-light {
  border-color: rgba(249, 249, 249, 0.4);
  color: var(--color-ivory);
}

.button--ghost-light:hover,
.button--ghost-light:focus-visible {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.button--ghost-dark {
  border-color: rgba(10, 10, 10, 0.18);
  color: var(--color-black);
}

.button--ghost-dark:hover,
.button--ghost-dark:focus-visible {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 12px 0;
  transition:
    background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    backdrop-filter 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    margin 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px) saturate(1.6);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 40px -10px rgba(10, 10, 10, 0.2);
}

.site-header.is-scrolled::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0.15) 100%
  );
  opacity: 0.8;
}

.site-header.is-scrolled::after {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.3),
    transparent
  );
}



.site-nav {
  width: var(--container);
  min-height: var(--nav-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  color: var(--color-gold);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}

.site-logo:hover {
  transform: scale(1.05);
}
  

.site-nav__links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 22px);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-ivory);
}

@media (max-width: 992px) {
  .site-nav__links {
    gap: 12px;
    font-size: 0.68rem;
  }
}



.site-header.is-scrolled .site-nav__links {
  color: var(--color-black);
}

.site-nav__links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  transition: color var(--ease);
}

.site-nav__links a::after,
.site-footer__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--ease);
}

.site-nav__links a:hover::after,
.site-nav__links a:focus-visible::after,
.site-nav__links a.is-active::after,
.site-footer__nav a:hover::after,
.site-footer__nav a:focus-visible::after,
.site-footer__nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav__links a.is-active,
.site-footer__nav a.is-active {
  color: var(--color-gold);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(10, 10, 10, 0.14);
  transition:
    background-color var(--ease),
    border-color var(--ease),
    color var(--ease);
}

.site-header.is-scrolled .nav-toggle {
  border-color: rgba(10, 10, 10, 0.12);
  background: rgba(10, 10, 10, 0.04);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(249, 249, 249, 0.98);
  display: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mobile-menu.is-open {
  display: flex;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--nav-height) clamp(22px, 5vw, 64px) var(--nav-height);
  text-align: center;
  perspective: 1000px;
}



.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media {
  background:
    linear-gradient(rgba(194, 184, 163, 0.12), rgba(194, 184, 163, 0.12)),
    url("../images/hero.jpg") center/cover no-repeat,
    var(--color-taupe);
  transform: scale(1.1) translateY(var(--hero-parallax, 0%));
  will-change: transform;
  transform-origin: center center;
  transition: transform 0.1s linear; /* Subtle smoothing */
}


.hero__overlay {
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.2) 0%,
    rgba(10, 10, 10, 0.35) 45%,
    rgba(10, 10, 10, 0.82) 100%
  );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  display: grid;
  gap: clamp(20px, 3.5vw, 36px);
  justify-items: center;
}

.hero__subline,
.section-heading__eyebrow,
.calendar-modal__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 300;
}

.hero__subline {
  margin-bottom: 0.5em;
  padding: 6px 16px;
  background: rgba(10, 10, 10, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 100px;
  display: inline-block;
  text-shadow: 0 2px 4px rgba(10, 10, 10, 0.5);
  font-weight: 400;
  letter-spacing: 0.35em;
  color: var(--color-gold);
  opacity: 0;
  animation: hero-fade-up 1.5s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}




.hero h1 {
  font-size: clamp(3.5rem, 16vw, 10.5rem);
  line-height: 0.85;
  letter-spacing: -0.055em;
  font-weight: 300;
  color: var(--color-ivory);
  max-width: min(100%, 18ch);
  margin: 0;
  text-wrap: balance;
  text-shadow: 0 10px 40px rgba(10, 10, 10, 0.4);
  animation: hero-fade-up 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  position: relative;
  transition: transform 0.15s ease-out;
  transform-style: preserve-3d;
}

.hero h1::after {
  content: "";
  position: absolute;
  inset: -10% -20%;
  background: linear-gradient(
    115deg,
    transparent 40%,
    rgba(212, 175, 55, 0.2) 45%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(212, 175, 55, 0.2) 55%,
    transparent 60%
  );
  background-size: 200% 100%;
  background-position: var(--shine-pos, 150%) 0%;
  mix-blend-mode: overlay;

  pointer-events: none;
  z-index: 2;
  transition: background-position 0.15s ease-out;
}


@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.hero__lead {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.05rem, 2.4vw, 1.4rem);
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: rgba(249, 249, 249, 0.88);
  max-width: 36ch;
  margin: 0;
  text-wrap: balance;
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35em 0.85em;
  margin: 0;
  padding-top: clamp(4px, 1vw, 10px);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(249, 249, 249, 0.55);
}

.hero__facts-sep {
  color: rgba(212, 175, 55, 0.55);
  user-select: none;
}

section[id] {
  scroll-margin-top: calc(var(--nav-height) + 16px);
}

.section {
  padding: var(--section-space) 0;
}

.section-heading {
  width: var(--container);
  margin: 0 auto clamp(40px, 5.5vw, 64px);
  display: grid;
  gap: clamp(16px, 2vw, 22px);
}

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

.section-heading p {
  max-width: 680px;
}

.section-heading__underline {
  width: 88px;
  height: 1px;
  background: var(--color-gold);
}

.hall-section,
.office-section,
.gallery-section,
.faq-section,
.reviews-section {
  background: var(--color-ivory);
}

.feature-stack,
.pricing-grid,
.contact-grid {
  width: var(--container);
  margin: 0 auto;
}

.feature-stack {
  display: grid;
  gap: clamp(40px, 6vw, 72px);
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
}

.feature-row--reverse {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.feature-row--reverse .feature-row__media {
  order: 2;
}

.feature-row__media {
  position: relative;
  margin: 0;
  padding: clamp(10px, 1.4vw, 14px);
  background:
    linear-gradient(
      155deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(249, 249, 249, 0.96) 48%,
      rgba(194, 184, 163, 0.28) 100%
    );
  aspect-ratio: 16 / 11;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 28px;
  overflow: visible;
  box-shadow:
    0 22px 54px rgba(10, 10, 10, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  isolation: isolate;
  transition:
    transform var(--ease),
    box-shadow var(--ease);
}

.feature-row__media::before {
  content: "";
  position: absolute;
  inset: clamp(10px, 1.4vw, 14px);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  pointer-events: none;
  z-index: 1;
}

.feature-row__media::after {
  content: "";
  position: absolute;
  inset: auto 18px -14px -18px;
  height: 34%;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.22),
    rgba(194, 184, 163, 0.08)
  );
  box-shadow: 0 18px 40px rgba(194, 184, 163, 0.24);
  z-index: -1;
}

.feature-row--reverse .feature-row__media::after {
  inset: auto -18px -14px 18px;
}

.feature-row__media img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-row__media img {
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(10, 10, 10, 0.14);
  transform: scale(1.01);
  transition:
    transform var(--ease),
    filter var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .feature-row:hover .feature-row__media {
    transform: translateY(-6px);
    box-shadow:
      0 28px 64px rgba(10, 10, 10, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }

  .feature-row:hover .feature-row__media img {
    transform: scale(1.04);
    filter: saturate(1.03);
  }
}

.feature-row__body {
  display: grid;
  gap: 18px;
}

.feature-row__body h3 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.detail-chip {
  width: fit-content;
  padding: 11px 16px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: var(--color-black);
  letter-spacing: 0.14em;
  font-size: 0.73rem;
  text-transform: uppercase;
}

.office-section {
  background: linear-gradient(
    180deg,
    rgba(194, 184, 163, 0.2) 0,
    rgba(249, 249, 249, 0.92) 100%
  );
}

.office-offer {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
  border: var(--border-soft);
  border-radius: 24px;
  background: rgba(249, 249, 249, 0.94);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition:
    transform var(--ease),
    box-shadow var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .office-offer:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 64px rgba(10, 10, 10, 0.12);
  }
}

.office-offer__media {
  margin: 0;
  min-height: 0;
  background: rgba(194, 184, 163, 0.28);
  aspect-ratio: 4 / 3;
}

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

.office-offer__body {
  padding: clamp(24px, 4vw, 40px);
  display: grid;
  gap: 18px;
  align-content: center;
}

.office-offer__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 300;
  letter-spacing: -0.02em;
}

.office-offer__list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.office-offer__list li {
  position: relative;
  padding-left: 26px;
  color: rgba(10, 10, 10, 0.78);
}

.office-offer__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-gold);
  font-weight: 400;
}

.office-offer__cta {
  justify-self: start;
  min-height: 48px;
}

.gallery-masonry {
  width: var(--container);
  margin: 0 auto;
  column-count: 3;
  column-gap: 18px;
}

.gallery-item {
  width: 100%;
  margin: 0 0 18px;
  padding: 0;
  display: block;
  background: rgba(194, 184, 163, 0.3);
  border: 0;
  overflow: hidden;
  break-inside: avoid;
}

.gallery-item img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform var(--ease), opacity var(--ease);
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.02);
}

.gallery-item--featured img {
  aspect-ratio: 4 / 5;
}

.gallery-item--portrait img {
  aspect-ratio: 4 / 6;
}

.gallery-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(212, 175, 55, 0.12), transparent 24%),
    radial-gradient(circle at 86% 14%, rgba(194, 184, 163, 0.26), transparent 22%),
    linear-gradient(180deg, #fcf8f1 0%, #efe6d9 54%, #f8f3ec 100%);
}

.gallery-section::before,
.gallery-section::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.72;
}

.gallery-section::before {
  top: 120px;
  left: -90px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0) 72%);
}

.gallery-section::after {
  right: -80px;
  bottom: 84px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0) 72%);
}

.gallery-section .section-heading {
  justify-items: center;
  text-align: center;
  width: min(760px, calc(100vw - 48px));
}

.gallery-section .section-heading p {
  color: rgba(10, 10, 10, 0.72);
}

.gallery-section .gallery-masonry {
  position: relative;
  z-index: 1;
  column-gap: clamp(20px, 2.4vw, 32px);
}

@media (max-width: 768px) {
  .gallery-masonry--home {
    column-count: 1;
    column-gap: 0;
  }

  .gallery-masonry--home .gallery-card__media img,
  .gallery-masonry--home .gallery-item img {
    aspect-ratio: 4 / 3.35;
  }

  .gallery-masonry--home .gallery-item--featured img {
    aspect-ratio: 4 / 4.2;
  }
}

.gallery-section .gallery-card {
  position: relative;
  isolation: isolate;
  display: inline-block;
  width: 100%;
  margin: 0 0 clamp(20px, 2.4vw, 32px);
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  border-radius: 24px;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.45s ease;
}

.gallery-section .gallery-card > .gallery-item {
  margin: 0;
}

.gallery-section .gallery-masonry > .gallery-item {
  margin: 0 0 clamp(20px, 2.4vw, 32px);
}

.gallery-section .gallery-item {
  position: relative;
  isolation: isolate;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(245, 236, 224, 0.1)),
    rgba(31, 24, 18, 0.06);
  box-shadow:
    0 20px 44px rgba(56, 38, 24, 0.12),
    0 6px 18px rgba(94, 72, 53, 0.08);
  transition:
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s ease,
    background 0.45s ease;
}

.gallery-section .gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
  opacity: 0.8;
  pointer-events: none;
}

.gallery-section .gallery-card__button {
  display: block;
  width: 100%;
  border-radius: inherit;
  overflow: hidden;
}

.gallery-section .gallery-card__media {
  position: relative;
  overflow: hidden;
  background: #1c1611;
}

.gallery-section .gallery-item img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 4.8;
  filter: saturate(0.93) contrast(1.02) brightness(1.02);
  transform: scale(1);
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.45s ease;
}

.gallery-section .gallery-item--featured img {
  aspect-ratio: 4 / 5.3;
}

.gallery-section .gallery-item--standard img,
.gallery-section .gallery-card:nth-child(2) .gallery-card__media img {
  aspect-ratio: 4 / 3.35;
}

.gallery-section .gallery-card:nth-child(3) .gallery-card__media img,
.gallery-section .gallery-card:nth-child(6) .gallery-card__media img {
  aspect-ratio: 4 / 5.8;
}

.gallery-section .gallery-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0) 10%,
    rgba(10, 10, 10, 0.06) 42%,
    rgba(10, 10, 10, 0.2) 66%,
    rgba(10, 10, 10, 0.56) 100%
  );
  opacity: 0.74;
  pointer-events: none;
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.gallery-section .gallery-card:hover,
.gallery-section .gallery-card:focus-within {
  transform: translateY(-8px);
}

.gallery-section .gallery-card:hover .gallery-item,
.gallery-section .gallery-card:focus-within .gallery-item {
  border-color: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 28px 60px rgba(56, 38, 24, 0.18),
    0 12px 28px rgba(94, 72, 53, 0.12);
}

.gallery-section .gallery-card:hover .gallery-card__overlay,
.gallery-section .gallery-card:focus-within .gallery-card__overlay {
  opacity: 1;
  transform: translateY(4px);
}

.gallery-section .gallery-card:hover img,
.gallery-section .gallery-card:focus-within img {
  transform: scale(1.08);
  filter: saturate(0.98) contrast(1.04) brightness(0.92);
}

.gallery-section__actions {
  width: var(--container);
  margin: 22px auto 0;
  display: flex;
  justify-content: center;
}

.gallery-section__button {
  position: relative;
  min-width: 232px;
  border: 1px solid transparent;
  border-radius: 999px;
  background:
    linear-gradient(135deg, #141414, #0a0a0a) padding-box,
    linear-gradient(135deg, rgba(212, 175, 55, 0.82), rgba(255, 255, 255, 0.9), rgba(212, 175, 55, 0.62))
      border-box;
  box-shadow:
    0 16px 34px rgba(10, 10, 10, 0.16),
    0 0 0 1px rgba(212, 175, 55, 0.1);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    filter 0.35s ease;
}

.gallery-section__button::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.34), rgba(212, 175, 55, 0));
  opacity: 0;
  filter: blur(14px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: -1;
}

.gallery-section__button:hover,
.gallery-section__button:focus-visible {
  transform: translateY(-3px);
  box-shadow:
    0 22px 42px rgba(10, 10, 10, 0.2),
    0 0 22px rgba(212, 175, 55, 0.16);
}

.gallery-section__button:hover::before,
.gallery-section__button:focus-visible::before {
  opacity: 1;
  transform: scale(1.04);
}

.pricing-section {
  background: var(--color-black);
  color: var(--color-ivory);
}

.section-heading--light h2,
.section-heading--light p {
  color: var(--color-ivory);
}

.pricing-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
}

.pricing-card {
  flex: 1 1 0;
  max-width: 460px;
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid rgba(249, 249, 249, 0.12);
  background: rgba(249, 249, 249, 0.03);
  display: grid;
  gap: 16px;
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    border-color var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .pricing-card:hover,
  .pricing-card:focus-within {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
  }
}

.pricing-card__icon {
  width: 48px;
  color: var(--color-gold);
}

.pricing-card__icon svg {
  stroke: currentColor;
  stroke-width: 1.35;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-card h3 {
  font-size: 1.6rem;
}

.pricing-card__amount {
  font-size: clamp(2.3rem, 5vw, 3.5rem);
  color: var(--color-gold);
}

.pricing-card__sub {
  color: rgba(249, 249, 249, 0.72);
}

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

.pricing-list li {
  position: relative;
  padding-left: 24px;
}

.pricing-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-gold);
  font-weight: 400;
}

.pricing-section__note {
  width: var(--container);
  margin: 28px auto 0;
  text-align: center;
  color: rgba(249, 249, 249, 0.7);
}

.faq-list {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  overflow: hidden;
  transition: box-shadow var(--ease), border-color var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .faq-item:hover,
  .faq-item:focus-within {
    border-color: rgba(212, 175, 55, 0.28);
    box-shadow: 0 12px 32px rgba(10, 10, 10, 0.06);
  }
}

.faq-item__button {
  width: 100%;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-weight: 400;
  letter-spacing: 0.02em;
  border-radius: 16px;
  transition: background-color var(--ease);
}

.faq-item__button::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--color-gold);
  flex-shrink: 0;
  transition: transform var(--ease);
}

.faq-item.is-open .faq-item__button::after {
  transform: rotate(45deg);
}

.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--ease);
}

.faq-item__panel p {
  overflow: hidden;
  color: rgba(10, 10, 10, 0.72);
}

.faq-item.is-open .faq-item__panel {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-item__panel p {
  padding: 0 22px 22px;
}

.reviews-section__heading {
  text-align: center;
  justify-items: center;
}

.reviews-showcase {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.reviews-showcase__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.reviews-showcase__note {
  color: rgba(10, 10, 10, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

.reviews-motion-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid rgba(10, 10, 10, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--color-black);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.74rem;
  transition:
    background-color var(--ease),
    color var(--ease),
    border-color var(--ease),
    transform var(--ease),
    box-shadow var(--ease);
}

.reviews-motion-toggle:hover,
.reviews-motion-toggle:focus-visible {
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10, 10, 10, 0.08);
}

.reviews-motion-toggle[aria-pressed="true"] {
  background: var(--color-black);
  color: var(--color-ivory);
  border-color: var(--color-black);
}

.reviews-marquee {
  position: relative;
  display: grid;
  gap: 20px;
  overflow: hidden;
}

.reviews-marquee::before,
.reviews-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(48px, 7vw, 120px);
  pointer-events: none;
  z-index: 2;
}

.reviews-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-ivory), rgba(249, 249, 249, 0));
}

.reviews-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--color-ivory), rgba(249, 249, 249, 0));
}

.reviews-marquee__lane {
  --review-gap: 20px;
  --reviews-distance: 0px;
  --reviews-duration: 44s;
  position: relative;
  display: flex;
  overflow: hidden;
}

.reviews-marquee__lane:not(.is-ready) .reviews-marquee__track {
  animation: none;
}

.reviews-marquee__track {
  --reviews-initial-offset: 0px;
  display: flex;
  gap: var(--review-gap);
  width: max-content;
  padding: 6px 0;
  will-change: transform;
  transform: translate3d(var(--reviews-initial-offset), 0, 0);
  animation: reviews-marquee-scroll var(--reviews-duration) linear infinite;
}

.reviews-marquee__track--clone {
  --reviews-initial-offset: calc(var(--reviews-distance) + var(--review-gap));
  position: absolute;
  inset: 0 auto 0 0;
}

.reviews-showcase.is-manually-paused .reviews-marquee__track,
.reviews-showcase.has-expanded-card .reviews-marquee__track,
.reviews-marquee__lane:hover .reviews-marquee__track,
.reviews-marquee__lane:focus-within .reviews-marquee__track {
  animation-play-state: paused;
}

.reviews-mobile-track {
  display: none;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 360px);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.reviews-mobile-track::-webkit-scrollbar {
  display: none;
}

.reviews-showcase.is-static .reviews-marquee {
  display: none;
}

.reviews-showcase.is-static .reviews-motion-toggle {
  display: none;
}

.reviews-showcase.is-static .reviews-mobile-track {
  display: grid;
}

.review-card {
  position: relative;
  scroll-snap-align: start;
  flex: 0 0 clamp(280px, 31vw, 360px);
  width: clamp(280px, 31vw, 360px);
  min-height: 290px;
  padding: 28px;
  border: 1px solid rgba(10, 10, 10, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 239, 230, 0.88)),
    rgba(194, 184, 163, 0.08);
  box-shadow: 0 26px 60px rgba(10, 10, 10, 0.08);
  display: grid;
  gap: 16px;
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    border-color var(--ease);
}

.review-card::before {
  content: "";
  width: 56px;
  height: 1px;
  background: rgba(212, 175, 55, 0.56);
}

.review-card:is(:hover, :focus-visible, :focus-within, .is-expanded) {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.36);
  box-shadow: 0 34px 72px rgba(10, 10, 10, 0.14);
}

.review-card--clone {
  pointer-events: none;
}

.review-card__body {
  display: grid;
  gap: 12px;
}

.review-card__stars {
  color: var(--color-gold);
  letter-spacing: 0.18em;
  font-size: 0.9rem;
}

.review-card__text,
.review-card__translation {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.review-card__text {
  -webkit-line-clamp: 6;
  line-clamp: 6;
  font-style: italic;
  color: rgba(10, 10, 10, 0.78);
}

.review-card__translation {
  -webkit-line-clamp: 3;
  line-clamp: 3;
  color: rgba(10, 10, 10, 0.6);
  font-size: 0.94rem;
}

.review-card__meta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(10, 10, 10, 0.08);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.review-card__name {
  font-weight: 600;
}

.review-card__source {
  color: rgba(10, 10, 10, 0.58);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.review-card__toggle {
  justify-self: start;
  color: var(--color-gold);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color var(--ease), transform var(--ease);
}

.review-card__toggle:hover,
.review-card__toggle:focus-visible {
  color: var(--color-black);
  transform: translateX(3px);
}

.review-card.is-expanded .review-card__text,
.review-card.is-expanded .review-card__translation {
  display: block;
  overflow: visible;
}

.reviews-section__action {
  width: var(--container);
  margin: 28px auto 0;
  text-align: center;
}

.reviews-section__action a {
  color: var(--color-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

@keyframes reviews-marquee-scroll {
  from {
    transform: translate3d(var(--reviews-initial-offset), 0, 0);
  }

  to {
    transform: translate3d(
      calc(var(--reviews-initial-offset) - var(--reviews-distance) - var(--review-gap)),
      0,
      0
    );
  }
}

@media (max-width: 768px) {
  .reviews-marquee {
    display: none;
  }

  .reviews-motion-toggle {
    display: none;
  }

  .reviews-mobile-track {
    display: grid;
  }
}

.map-preview-section {
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(194, 184, 163, 0.1), rgba(249, 249, 249, 0.92));
}

.map-preview {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 5vw, 48px);
  align-items: center;
}

.map-preview__copy {
  display: grid;
  gap: 18px;
}

.map-preview__copy h2 {
  font-size: clamp(2.2rem, 4.8vw, 4.2rem);
}

.map-preview__copy p:last-of-type {
  color: rgba(10, 10, 10, 0.68);
  max-width: 42ch;
}

.map-preview__frame {
  position: relative;
  min-height: 460px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  background:
    linear-gradient(rgba(10, 10, 10, 0.06), rgba(10, 10, 10, 0.06)),
    var(--color-taupe);
}

.map-preview__frame::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  pointer-events: none;
}

.map-preview__frame iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
  filter: grayscale(1) invert(0.9) contrast(1.04) brightness(0.88);
}

.contact-section {
  background: var(--color-black);
  color: var(--color-ivory);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: stretch;
}

.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--color-gold);
  margin: 14px 0 18px;
}

.contact-copy address {
  max-width: 34ch;
  margin-bottom: 28px;
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-list li {
  display: grid;
  gap: 5px;
}

.contact-list span {
  color: rgba(249, 249, 249, 0.58);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
}

.contact-list a,
.contact-list strong {
  font-weight: 400;
}

.map-link {
  min-height: 100%;
  padding: clamp(28px, 5vw, 42px);
  display: flex;
  align-items: center;
  gap: 22px;
  background: rgba(194, 184, 163, 0.16);
  border: 1px solid rgba(194, 184, 163, 0.28);
  transition:
    transform var(--ease),
    border-color var(--ease),
    background-color var(--ease);
}

.map-link:hover,
.map-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.48);
  background: rgba(194, 184, 163, 0.22);
}

.map-link__icon {
  flex-shrink: 0;
  width: 48px;
  color: var(--color-gold);
}

.map-link__icon svg {
  stroke: currentColor;
  stroke-width: 1.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.map-link__text {
  display: grid;
  gap: 6px;
}

.map-link__text strong {
  color: var(--color-gold);
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.map-link__text small {
  color: rgba(249, 249, 249, 0.72);
  font-size: 0.95rem;
}

.site-footer {
  padding: 40px 24px;
  background: var(--color-black);
  color: var(--color-taupe);
  text-align: center;
  display: grid;
  gap: 14px;
}

.site-footer__logo {
  font-size: 24px;
  color: var(--color-gold);
}

.site-footer__nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer__nav a {
  position: relative;
}

.site-footer p {
  font-size: 12px;
}

.site-footer__staff-link {
  margin-top: 4px;
}

.site-footer__stealth-link {
  color: rgba(194, 184, 163, 0.72);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
  transition:
    color var(--ease),
    opacity var(--ease);
}

.site-footer__stealth-link:hover,
.site-footer__stealth-link:focus-visible {
  color: var(--color-gold);
  text-decoration: none;
}

.floating-contact-bar {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 90;
  display: grid;
  gap: 12px;
  padding: 12px 10px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: rgba(249, 249, 249, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px rgba(10, 10, 10, 0.12);
  border-radius: 20px;
}

.floating-contact-bar:has(.contact-rail__item--solo) {
  padding: 10px;
  border-radius: 999px;
  gap: 0;
}

.contact-rail__item {
  position: relative;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--color-ivory);
  color: var(--color-black);
  transition:
    transform var(--ease),
    border-color var(--ease),
    color var(--ease),
    background-color var(--ease),
    box-shadow var(--ease);
}

.contact-rail__item--solo {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.22);
}

.contact-rail__item:hover,
.contact-rail__item:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.72);
  color: var(--color-gold);
}

.contact-rail__item svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-rail__item--whatsapp svg {
  fill: currentColor;
  stroke: none;
}

.contact-rail__item--whatsapp {
  color: #25d366;
}

.contact-rail__item--whatsapp:not(.contact-rail__item--solo) {
  animation: whatsapp-pulse 2s infinite;
}

.contact-rail__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  padding: 7px 10px;
  background: var(--color-black);
  color: var(--color-ivory);
  border: 1px solid rgba(212, 175, 55, 0.18);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--ease),
    visibility var(--ease);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-rail__item:hover .contact-rail__tooltip,
.contact-rail__item:focus-visible .contact-rail__tooltip {
  opacity: 1;
  visibility: visible;
}

body.keyboard-open .floating-contact-bar {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#calendar-modal,
.lightbox {
  position: fixed;
  inset: 0;
}

#calendar-modal {
  display: none;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.95);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#calendar-modal.is-open {
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox {
  display: none;
  z-index: 9998;
  background: rgba(10, 10, 10, 0.68);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.calendar-modal__dialog {
  width: min(100%, 480px);
  background: var(--color-ivory);
  padding: 32px 24px 24px;
  position: relative;
  border-radius: 2px;
}

.calendar-modal__close,
.lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
}

.calendar-modal__close span,
.lightbox__close span {
  position: absolute;
  width: 18px;
  height: 1px;
  background: currentColor;
}

.calendar-modal__close span:first-child,
.lightbox__close span:first-child {
  transform: rotate(45deg);
}

.calendar-modal__close span:last-child,
.lightbox__close span:last-child {
  transform: rotate(-45deg);
}

.calendar-modal__header {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.calendar-modal__header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.calendar-modal__controls {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 12px;
}

.calendar-modal__controls button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(10, 10, 10, 0.08);
  font-size: 1.4rem;
}

.calendar-modal__controls p {
  text-align: center;
  font-weight: 400;
}

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

.calendar-grid {
  gap: 5px;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.calendar-weekdays {
  margin-bottom: 10px;
}

.calendar-weekdays span {
  text-align: center;
  color: var(--color-gold);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.calendar-day {
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 0;
  background: var(--color-ivory);
  border: 1px solid rgba(10, 10, 10, 0.08);
  transition:
    border-color var(--ease),
    transform var(--ease);
}

.calendar-day:hover:not(:disabled),
.calendar-day:focus-visible:not(:disabled) {
  border-color: var(--color-gold);
  transform: translateY(-1px);
}

.calendar-day:disabled {
  cursor: not-allowed;
  font-weight: 400;
  line-height: 1;
}

.calendar-day.is-booked {
  background: rgba(192, 57, 43, 0.6);
  text-decoration: line-through;
}

.calendar-day.is-available {
  cursor: pointer;
}

.calendar-day.is-selected {
  border-color: var(--color-gold);
  background: rgba(212, 175, 55, 0.12);
}

.calendar-day.is-today {
  border-color: var(--color-gold);
}

.calendar-day.is-past {
  opacity: 0.4;
}

.calendar-day.is-outside {
  opacity: 0.25;
}

.calendar-modal__footer {
  margin-top: 20px;
  display: grid;
  gap: 16px;
}

.calendar-modal__selection {
  min-height: 1.5em;
  color: rgba(10, 10, 10, 0.72);
}

.calendar-legend {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.8rem;
}

.calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.legend-box {
  width: 12px;
  height: 12px;
  border: 1px solid rgba(10, 10, 10, 0.08);
}

.legend-box--booked {
  background: rgba(192, 57, 43, 0.6);
}

.legend-box--available {
  background: var(--color-ivory);
}

.calendar-modal__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.lightbox.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 24px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox__stage {
  width: min(90vw, 1040px);
  display: grid;
  gap: 18px;
  justify-items: center;
  position: relative;
  padding: 40px 28px 24px;
  background: rgba(10, 10, 10, 0.24);
  border: 1px solid rgba(249, 249, 249, 0.12);
}

.lightbox__stage img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox__stage p {
  color: var(--color-ivory);
}

.lightbox__arrow {
  width: 44px;
  height: 44px;
  color: var(--color-ivory);
  font-size: 2rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(32px) scale(0.97);
  transition:
    opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  filter: blur(4px);
  will-change: transform, opacity, filter;
}

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


@keyframes hero-zoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .hero__media {
    animation: none;
    transform: none;
  }
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  .site-nav__links {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    color: var(--color-ivory);
  }

  .site-header.is-scrolled .nav-toggle {
    color: var(--color-black);
  }

  .hero {
    padding-bottom: max(80px, calc(env(safe-area-inset-bottom, 0px) + 96px));
  }

  .hero h1 {
    max-width: 100%;
  }

  .feature-row,
  .feature-row--reverse,
  .contact-grid,
  .pricing-grid,
  .map-preview {
    grid-template-columns: 1fr;
    display: grid;
  }

  .feature-row--reverse .feature-row__media {
    order: 0;
  }

  .office-offer {
    grid-template-columns: 1fr;
  }

  .office-offer__cta {
    justify-self: center;
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .feature-row__media {
    aspect-ratio: 4 / 3;
    border-radius: 24px;
    overflow: visible;
  }

  .gallery-masonry {
    column-count: 2;
  }

  .reviews-showcase__toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .reviews-mobile-track {
    grid-auto-columns: minmax(260px, 84vw);
  }

  .floating-contact-bar {
    top: auto;
    left: 50%;
    right: auto;
    bottom: 16px;
    transform: translateX(-50%);
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    padding: 10px;
  }

  .contact-rail__tooltip {
    left: 50%;
    right: auto;
    top: auto;
    bottom: calc(100% + 10px);
    transform: translateX(-50%);
  }
}

@media (max-width: 480px) {
  :root {
    --container: min(100vw - 32px, 100%);
  }

  .hero {
    padding-bottom: max(72px, calc(env(safe-area-inset-bottom, 0px) + 88px));
  }

  .gallery-masonry {
    column-count: 1;
  }

  .calendar-modal {
    padding: 12px;
  }

  .calendar-modal__dialog {
    padding: 28px 16px 20px;
  }

  .calendar-day {
    min-height: 0;
  }

  .map-preview__frame {
    min-height: 360px;
  }

  .map-preview__frame iframe {
    min-height: 360px;
  }

  .lightbox {
    padding: 12px;
    gap: 8px;
  }

  .lightbox__arrow {
    width: 36px;
    height: 36px;
  }

  .contact-rail__item {
    width: 48px;
    height: 48px;
  }

  .reviews-mobile-track {
    grid-auto-columns: minmax(248px, 86vw);
  }

  .review-card {
    width: min(86vw, 320px);
    padding: 24px;
  }
}

.site-nav__links a[aria-current="page"]::after,
.site-footer__nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.gallery-page {
  position: relative;
  background:
    radial-gradient(circle at 14% 12%, rgba(212, 175, 55, 0.18), transparent 24%),
    radial-gradient(circle at 84% 10%, rgba(194, 184, 163, 0.26), transparent 22%),
    linear-gradient(180deg, #fcfaf6 0%, #f7f4ee 42%, #efe7da 100%);
}

.gallery-page .site-header:not(.is-scrolled) {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}

.gallery-page .site-nav__links:not(.is-scrolled),
.gallery-page .nav-toggle:not(.is-scrolled) {
  color: var(--color-black);
}

.gallery-page .site-header.is-scrolled .site-nav__links {
  color: var(--color-black);
}


.gallery-page-hero {
  position: relative;
  padding-top: calc(var(--nav-height) + 62px);
  padding-bottom: clamp(36px, 6vw, 72px);
  overflow: hidden;
}

.gallery-page-hero::before,
.gallery-page-hero::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  pointer-events: none;
}

.gallery-page-hero::before {
  top: 54px;
  right: min(8vw, 72px);
  width: clamp(180px, 26vw, 320px);
  height: clamp(180px, 26vw, 320px);
  background: radial-gradient(circle, rgba(212, 175, 55, 0.22), rgba(212, 175, 55, 0));
  filter: blur(8px);
}

.gallery-page-hero::after {
  left: min(6vw, 56px);
  bottom: 0;
  width: clamp(160px, 24vw, 280px);
  height: clamp(160px, 24vw, 280px);
  background: radial-gradient(circle, rgba(194, 184, 163, 0.3), rgba(194, 184, 163, 0));
}

.gallery-page-hero .section-heading {
  position: relative;
  z-index: 1;
  width: min(860px, calc(100vw - 48px));
  margin-bottom: 0;
  padding: clamp(28px, 5vw, 44px);
  justify-items: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.58)),
    rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(18px);
  box-shadow:
    0 28px 80px rgba(10, 10, 10, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.gallery-page-hero .section-heading::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 24px;
  border: 1px solid rgba(212, 175, 55, 0.14);
  pointer-events: none;
}

.gallery-page-hero .section-heading h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 0.94;
  max-width: 10ch;
}

.gallery-page-hero .section-heading p {
  max-width: 620px;
  color: rgba(10, 10, 10, 0.72);
  font-size: clamp(1rem, 1.5vw, 1.08rem);
}

.gallery-page-hero .section-heading__eyebrow {
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--color-black);
  color: var(--color-white);
  border: 1px solid rgba(212, 175, 55, 0.4);
  letter-spacing: 0.38em;
  font-weight: 500;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(10, 10, 10, 0.15);
}



.gallery-page-hero .section-heading__underline {
  width: clamp(96px, 16vw, 132px);
  margin: 2px auto 0;
  opacity: 0.78;
}

.gallery-page-section {
  padding-top: 0;
}

.gallery-page-hero__copy {
  max-width: 700px;
}

.gallery-filter {
  width: var(--container);
  margin: 0 auto 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.64)),
    rgba(255, 255, 255, 0.68);
  box-shadow:
    0 18px 42px rgba(10, 10, 10, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
}

.gallery-filter__label {
  flex: 0 0 100%;
  margin-bottom: 4px;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.46);
}

.gallery-filter__button {
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(10, 10, 10, 0.1);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 244, 235, 0.88));
  color: rgba(10, 10, 10, 0.78);
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(10, 10, 10, 0.05);
  transition:
    transform var(--ease),
    border-color var(--ease),
    background-color var(--ease),
    color var(--ease),
    box-shadow var(--ease);
}

.gallery-filter__button:hover,
.gallery-filter__button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.65);
  color: var(--color-black);
  box-shadow: 0 16px 34px rgba(10, 10, 10, 0.08);
}

.gallery-filter__button.is-active {
  border-color: rgba(212, 175, 55, 0.85);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.22), rgba(255, 255, 255, 0.98));
  color: var(--color-black);
  box-shadow: 0 16px 36px rgba(212, 175, 55, 0.18);
}

.gallery-page-section .gallery-masonry {
  width: var(--container);
  margin: 0 auto;
  column-count: 4;
  column-gap: 24px;
}

.gallery-page .gallery-card {
  position: relative;
  isolation: isolate;
  display: inline-block;
  width: 100%;
  margin: 0 0 22px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(251, 247, 239, 0.76)),
    rgba(255, 255, 255, 0.84);
  box-shadow:
    0 22px 56px rgba(10, 10, 10, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease,
    filter 0.45s ease;
}

.gallery-page .gallery-card::before {
  content: attr(data-category);
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.58);
  backdrop-filter: blur(14px);
  color: rgba(255, 249, 236, 0.96);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  pointer-events: none;
}

.gallery-page .gallery-card::after {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 22px;
  border: 1px solid rgba(212, 175, 55, 0.12);
  pointer-events: none;
}

.gallery-card__button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: inherit;
  overflow: hidden;
  background: transparent;
}

.gallery-page .gallery-card__media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #111111;
}

.gallery-page .gallery-card__media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  filter: saturate(0.94) contrast(1.03);
  transform: scale(1);
  transition:
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.45s ease;
}

.gallery-page .gallery-card:nth-child(3n + 1) .gallery-card__media img {
  aspect-ratio: 4 / 4.8;
}

.gallery-page .gallery-card:nth-child(4n) .gallery-card__media img {
  aspect-ratio: 4 / 6;
}

.gallery-page .gallery-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.02) 0%,
    rgba(10, 10, 10, 0.12) 34%,
    rgba(10, 10, 10, 0.44) 100%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.gallery-page .gallery-card:hover,
.gallery-page .gallery-card:focus-within {
  transform: translateY(-6px);
  box-shadow:
    0 28px 68px rgba(10, 10, 10, 0.14),
    0 0 0 1px rgba(212, 175, 55, 0.08);
}

.gallery-page .gallery-card:hover .gallery-card__media img,
.gallery-page .gallery-card:focus-within .gallery-card__media img {
  filter: saturate(1.02) contrast(1.04);
  transform: scale(1.06);
}

.gallery-page .gallery-card:hover .gallery-card__overlay,
.gallery-page .gallery-card:focus-within .gallery-card__overlay {
  opacity: 1;
}

.gallery-page .gallery-card {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
}

.gallery-page .gallery-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.gallery-page .gallery-card.is-visible:hover,
.gallery-page .gallery-card.is-visible:focus-within {
  transform: translateY(-6px) scale(1);
}

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

.gallery-page .gallery-section__actions {
  margin-top: 22px;
}

.gallery-page .gallery-section__button {
  position: relative;
  min-width: 220px;
  border: 1px solid transparent;
  border-radius: 999px;
  background:
    linear-gradient(135deg, #141414, #0a0a0a) padding-box,
    linear-gradient(135deg, rgba(212, 175, 55, 0.82), rgba(255, 255, 255, 0.9), rgba(212, 175, 55, 0.62))
      border-box;
  box-shadow:
    0 16px 34px rgba(10, 10, 10, 0.16),
    0 0 0 1px rgba(212, 175, 55, 0.1);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    filter 0.35s ease;
}

.gallery-page .gallery-section__button::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.34), rgba(212, 175, 55, 0));
  opacity: 0;
  filter: blur(14px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: -1;
}

.gallery-page .gallery-section__button:hover,
.gallery-page .gallery-section__button:focus-visible {
  transform: translateY(-3px);
  box-shadow:
    0 22px 42px rgba(10, 10, 10, 0.2),
    0 0 22px rgba(212, 175, 55, 0.16);
}

.gallery-page .gallery-section__button:hover::before,
.gallery-page .gallery-section__button:focus-visible::before {
  opacity: 1;
  transform: scale(1.04);
}

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

@media (max-width: 1024px) {
  .gallery-page-section .gallery-masonry {
    column-count: 2;
    column-gap: 18px;
  }

  .gallery-page .gallery-card {
    margin-bottom: 18px;
  }
}

@media (max-width: 640px) {
  .gallery-page-hero {
    padding-top: calc(var(--nav-height) + 42px);
  }

  .gallery-page-hero .section-heading {
    width: min(100%, calc(100vw - 32px));
    padding: 22px 18px 24px;
    border-radius: 26px;
  }

  .gallery-page-hero .section-heading::before {
    inset: 9px;
    border-radius: 18px;
  }

  .gallery-page-hero__copy {
    font-size: 0.96rem;
  }

  .gallery-filter {
    gap: 10px;
    margin-bottom: 28px;
    padding: 16px 14px;
    border-radius: 24px;
  }

  .gallery-filter__button {
    min-height: 44px;
    padding: 0 16px;
    letter-spacing: 0.1em;
    font-size: 0.74rem;
  }

  .gallery-page-section .gallery-masonry {
    column-count: 1;
    column-gap: 14px;
  }

  .gallery-page .gallery-card {
    margin-bottom: 14px;
    padding: 10px;
    border-radius: 24px;
  }

  .gallery-page .gallery-card::before {
    top: 20px;
    left: 20px;
    padding: 6px 10px;
    font-size: 0.62rem;
  }

  .gallery-page .gallery-card::after {
    inset: 9px;
    border-radius: 16px;
  }

  .gallery-page .gallery-card__media {
    border-radius: 16px;
  }

  .gallery-page .gallery-section__button {
    width: min(100%, 320px);
  }
}

@media (max-width: 768px) {
  .gallery-section .gallery-card,
  .gallery-section .gallery-masonry > .gallery-item {
    margin-bottom: 18px;
  }
}

@media (max-width: 480px) {
  .gallery-section .section-heading {
    width: min(100%, calc(100vw - 32px));
  }

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

  .gallery-section .gallery-card {
    border-radius: 20px;
  }

  .gallery-section .gallery-card:nth-child(3) .gallery-card__media img,
  .gallery-section .gallery-card:nth-child(6) .gallery-card__media img {
    aspect-ratio: 4 / 4.7;
  }

  .gallery-section__button {
    width: min(100%, 320px);
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Custom Interactive Cursor */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: var(--color-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition:
    transform 0.15s ease,
    width 0.3s ease,
    height 0.3s ease,
    background 0.3s ease;
  transform: translate(-50%, -50%);
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .custom-cursor {
    display: block;
  }

  .custom-cursor.is-hovering {
    width: 64px;
    height: 64px;
    background: var(--color-white);
    mix-blend-mode: difference;
  }
}

/* Mobile Concierge Bar */
.mobile-concierge {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 72px;
  background: rgba(249, 249, 249, 0.05);
  backdrop-filter: blur(16px) saturate(1.8);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 1000;
  box-shadow: 0 -10px 40px rgba(10, 10, 10, 0.15);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-concierge.is-visible {
  transform: translateY(0);
}

.mobile-concierge__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-concierge__btn--whatsapp {
  background: var(--color-black);
  color: var(--color-white);
}

.mobile-concierge__btn--book {
  background: var(--color-gold);
  color: var(--color-black);
  margin-left: 12px;
}

@media (min-width: 769px) {
  .mobile-concierge {
    display: none;
  }
}

/* Magnetic Interaction Support */
.magnetic-wrap {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Luxury Site Preloader */
.site-preloader {
  position: fixed;
  inset: 0;
  background: #0a0a0a;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    clip-path 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-clip-path 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 1.2s step-end;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  will-change: transform, clip-path;
}

.site-preloader.is-loaded {
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path: inset(0 0 100% 0);
  transform: translateY(-100%);
  visibility: hidden;
}


.site-preloader__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.site-preloader__title {
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  color: var(--color-gold);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin: 0;
  animation: preloader-fade 1.8s ease-in-out infinite alternate;
}

.site-preloader__bar {
  width: 140px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.site-preloader__bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-gold);
  transform: translateX(-100%);
  animation: preloader-progress 2.5s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes preloader-fade {
  from { opacity: 0.35; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1.02); }
}

@keyframes preloader-progress {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(0%); }
  100% { transform: translateX(100%); }
}
