/* ==========================================================
   home.css — Cedar Stone Bistro
   Homepage-only styles. Loaded before main.css via $page_css.
   ========================================================== */

/* ──────────────────────────────────────────
   HERO
────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  max-height: 1080px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to top,
    rgba(5, 4, 7, 0.96) 0%,
    rgba(5, 4, 7, 0.55) 40%,
    rgba(5, 4, 7, 0.18) 75%,
    transparent 100%
  );
}

.hero__content {
  padding: 0 0 5rem;
  max-width: 760px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cs-gold);
  margin-bottom: 1.25rem;
}

.hero__eyebrow::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--cs-gold);
  opacity: 0.6;
}

.hero__title {
  font-size: clamp(2.75rem, 6vw, 5.25rem);
  font-weight: 700;
  color: var(--cs-white);
  line-height: 1.06;
  margin-bottom: 1.25rem;
}

.hero__title em {
  font-style: italic;
  color: var(--cs-gold);
}

.hero__desc {
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  color: var(--cs-muted);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232, 223, 240, 0.45);
}

.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(215, 181, 109, 0.5), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.15);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__scroll::after {
    animation: none;
  }
}

@media (max-width: 767px) {
  .hero__content {
    padding-bottom: 4rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 360px;
  }

  .hero__scroll {
    display: none;
  }
}

/* ──────────────────────────────────────────
   PROMISE SECTION
────────────────────────────────────────── */
.promise-section {
  position: relative;
  padding-block: 6rem;
  overflow: hidden;
}

.promise-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cs-bg-2) 0%, var(--cs-bg-3) 100%);
  transform: skewY(-2deg);
  transform-origin: top left;
  z-index: -1;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.promise-item {
  position: relative;
  padding-top: 1rem;
}

.promise-item__number {
  font-size: 4rem;
  font-weight: 700;
  font-style: italic;
  color: rgba(131, 28, 145, 0.15);
  line-height: 1;
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
}

.promise-item__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cs-white);
  margin-bottom: 0.625rem;
}

.promise-item__text {
  font-size: 1.1375rem;
  color: var(--cs-muted);
  line-height: 1.7;
}

.promise-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--cs-gold);
}

@media (max-width: 767px) {
  .promise-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .promise-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* ──────────────────────────────────────────
   WELCOME SECTION
────────────────────────────────────────── */
.welcome-section {
  position: relative;
  padding-block: 7rem;
  overflow: hidden;
  isolation: isolate;
}

.welcome-section__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.welcome-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(2px) brightness(0.35);
}

.welcome-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(5, 4, 7, 0.65);
}

.welcome-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}

.welcome-intro h2 {
  color: var(--cs-white);
}

.welcome-intro p {
  font-size: 1.2rem;
  color: var(--cs-muted);
  line-height: 1.75;
  margin-top: 1rem;
}

.welcome-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.welcome-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(215, 181, 109, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    border-color var(--transition),
    transform var(--transition);
}

.welcome-card:hover {
  border-color: rgba(215, 181, 109, 0.45);
  transform: translateY(-4px);
}

.welcome-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.welcome-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.welcome-card:hover .welcome-card__img img {
  transform: scale(1.04);
}

.welcome-card__body {
  padding: 1.5rem;
}

.welcome-card__icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  display: block;
}

.welcome-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--cs-white);
  margin-bottom: 0.5rem;
}

.welcome-card__text {
  font-size: 1.1rem;
  color: var(--cs-muted);
  line-height: 1.65;
}

@media (max-width: 767px) {
  .welcome-cards {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .welcome-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

/* ──────────────────────────────────────────
   SPLIT SECTIONS (restaurant + lounge preview)
────────────────────────────────────────── */
.split-section {
  padding-block: 6rem;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.split-layout--reverse {
  direction: rtl;
}

.split-layout--reverse > * {
  direction: ltr;
}

.split-visual {
  position: relative;
}

.split-visual__frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.split-visual__frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

/* Gold corner accent */
.split-visual__frame::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  width: 64px;
  height: 64px;
  border-top: 2px solid var(--cs-gold);
  border-left: 2px solid var(--cs-gold);
  z-index: 1;
  pointer-events: none;
  border-radius: 2px;
}

.split-visual__frame::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 64px;
  height: 64px;
  border-bottom: 2px solid var(--cs-gold);
  border-right: 2px solid var(--cs-gold);
  z-index: 1;
  pointer-events: none;
  border-radius: 2px;
}

.split-visual__badge {
  position: absolute;
  bottom: -1.25rem;
  right: 1.5rem;
  background: var(--cs-bg-3);
  border: 1px solid var(--cs-line-gold);
  border-radius: var(--radius-md);
  padding: 0.875rem 1.25rem;
  z-index: 2;
}

.split-visual__badge-label {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cs-gold);
  margin-bottom: 0.125rem;
}

.split-visual__badge-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cs-white);
  font-style: italic;
  font-family: var(--font-display);
}

.split-body {
  padding-block: 1rem;
}

.split-body h2 {
  margin-bottom: 1rem;
}

.split-body p {
  font-size: 1.2rem;
  color: var(--cs-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.split-body .btn {
  margin-top: 0.5rem;
}

.split-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 2rem;
}

.split-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1375rem;
  color: var(--cs-muted);
}

.split-features li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cs-gold);
}

@media (max-width: 1023px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .split-layout--reverse {
    direction: ltr;
  }

  .split-visual__frame img {
    aspect-ratio: 16/9;
  }
}

/* ──────────────────────────────────────────
   LOUNGE STRIP
────────────────────────────────────────── */
.lounge-strip {
  padding-block: 5rem;
  background: var(--cs-bg-2);
}

.lounge-strip__grid {
  display: grid;
  grid-template-columns: 1fr 520px 1fr;
  gap: 1.5rem;
  align-items: center;
}

.lounge-strip__side img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

.lounge-strip__center {
  background: var(--cs-bg-3);
  border: 1px solid var(--cs-line-gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
}

.lounge-strip__center h2 {
  margin-bottom: 1rem;
}

.lounge-strip__center p {
  font-size: 1.4rem;
  color: var(--cs-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.lounge-strip__drinks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.lounge-drink {
  text-align: center;
  padding: 1rem 0.5rem;
  border-radius: var(--radius-sm);
  background: rgba(131, 28, 145, 0.07);
  border: 1px solid rgba(131, 28, 145, 0.15);
}

.lounge-drink__name {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cs-white);
  margin-bottom: 0.25rem;
}

.lounge-drink__type {
  display: block;
  font-size: 0.9rem;
  color: var(--cs-muted);
  letter-spacing: 0.06em;
}

@media (max-width: 1023px) {
  .lounge-strip__grid {
    grid-template-columns: 1fr;
  }

  .lounge-strip__side {
    display: none;
  }

  .lounge-strip__side:first-child {
    display: block;
  }

  .lounge-strip__side img {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 767px) {
  .lounge-strip__side {
    display: none;
  }

  .lounge-strip__drinks {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ──────────────────────────────────────────
   CASINO SECTION
────────────────────────────────────────── */
.casino-section {
  position: relative;
  padding-block: 7rem;
  overflow: hidden;
  isolation: isolate;
}

.casino-section__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.casino-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.casino-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(5, 4, 7, 0.88) 0%,
    rgba(27, 13, 34, 0.82) 50%,
    rgba(5, 4, 7, 0.92) 100%
  );
}

.casino-section .section-header--center h2,
.casino-section .section-header--center p {
  color: var(--cs-white);
}

.casino-section .section-header--center p {
  color: var(--cs-muted);
}

.casino-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.casino-card {
  background: rgba(27, 13, 34, 0.7);
  border: 1px solid rgba(131, 28, 145, 0.3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    border-color var(--transition),
    transform var(--transition);
}

.casino-card:hover {
  border-color: var(--cs-purple-soft);
  transform: translateY(-6px);
}

.casino-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.casino-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.casino-card:hover .casino-card__img img {
  transform: scale(1.05);
}

.casino-card__body {
  padding: 1.5rem;
}

.casino-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--cs-white);
  margin-bottom: 0.5rem;
}

.casino-card__text {
  font-size: 1.1rem;
  color: var(--cs-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.casino-card__link {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cs-gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap var(--transition);
}

.casino-card__link:hover {
  gap: 0.75rem;
}

.casino-card__link::after {
  content: '→';
}

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

@media (min-width: 768px) and (max-width: 1023px) {
  .casino-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

/* ──────────────────────────────────────────
   PACKAGES SECTION
────────────────────────────────────────── */
.packages-section {
  padding-block: 6rem;
  background: var(--cs-bg-2);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.package-card {
  background: var(--cs-bg-3);
  border: 1px solid var(--cs-line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.package-card:hover {
  border-color: var(--cs-line-gold);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.package-card--featured {
  border-color: var(--cs-purple-soft);
  background: linear-gradient(
    160deg,
    rgba(131, 28, 145, 0.12) 0%,
    var(--cs-bg-3) 100%
  );
  box-shadow:
    0 0 0 1px rgba(131, 28, 145, 0.2),
    0 8px 40px rgba(131, 28, 145, 0.1);
  position: relative;
}

.package-card--featured::before {
  content: 'Bestseller';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cs-purple);
  color: var(--cs-white);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.package-card__badge {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cs-gold);
  margin-bottom: 1rem;
}

.package-card__name {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--cs-white);
  margin-bottom: 0.375rem;
}

.package-card__tagline {
  font-size: 1.1rem;
  color: var(--cs-muted);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.package-card__price {
  margin-bottom: 1.5rem;
}

.package-card__price-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--cs-white);
  font-family: var(--font-display);
}

.package-card__price-unit {
  font-size: 0.875rem;
  color: var(--cs-muted);
  margin-left: 0.375rem;
}

.package-card__divider {
  width: 100%;
  height: 1px;
  background: var(--cs-line);
  margin-bottom: 1.5rem;
}

.package-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
  margin-bottom: 2rem;
}

.package-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 1.1rem;
  color: var(--cs-muted);
  line-height: 1.5;
}

.package-card__features li::before {
  content: '✓';
  flex-shrink: 0;
  color: var(--cs-gold);
  font-weight: 700;
  margin-top: 0.05em;
}

.package-card .btn {
  width: 100%;
}

@media (max-width: 767px) {
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-inline: auto;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

/* ──────────────────────────────────────────
   TASTING SECTION
────────────────────────────────────────── */
.tasting-section {
  position: relative;
  padding-block: 7rem;
  overflow: hidden;
  isolation: isolate;
}

.tasting-section__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.tasting-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.tasting-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(5, 4, 7, 0.97) 0%,
    rgba(5, 4, 7, 0.85) 50%,
    rgba(5, 4, 7, 0.55) 100%
  );
}

.tasting-inner {
  max-width: 680px;
}

.tasting-inner h2 {
  color: var(--cs-white);
  margin-bottom: 0.75rem;
}

.tasting-intro {
  font-size: 1.2rem;
  color: var(--cs-muted);
  line-height: 1.75;
  margin-bottom: 3rem;
}

.tasting-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 3rem;
}

.tasting-step {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.25rem;
  align-items: flex-start;
  padding-bottom: 2rem;
  position: relative;
}

.tasting-step:last-child {
  padding-bottom: 0;
}

.tasting-step__marker {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(131, 28, 145, 0.12);
  border: 1px solid rgba(131, 28, 145, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  font-style: italic;
  color: var(--cs-purple-soft);
  font-family: var(--font-display);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.tasting-step:not(:last-child) .tasting-step__marker::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: calc(2rem + 3rem);
  background: linear-gradient(to bottom, rgba(131, 28, 145, 0.4), transparent);
}

.tasting-step__body {
  padding-top: 0.5rem;
}

.tasting-step__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cs-white);
  margin-bottom: 0.25rem;
}

.tasting-step__desc {
  font-size: 1.1rem;
  color: var(--cs-muted);
  line-height: 1.65;
}

.tasting-price {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.75rem;
  background: rgba(215, 181, 109, 0.08);
  border: 1px solid var(--cs-line-gold);
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
}

.tasting-price__label {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cs-muted);
}

.tasting-price__value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--cs-gold);
  font-family: var(--font-display);
  font-style: italic;
}

@media (max-width: 767px) {
  .tasting-section::before {
    background: rgba(5, 4, 7, 0.92);
  }
}

/* ──────────────────────────────────────────
   MENU PREVIEW SECTION
────────────────────────────────────────── */
.menu-preview-section {
  padding-block: 6rem;
}

.menu-poster-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
}

.menu-poster {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.menu-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 3/4;
  transition: transform 0.5s ease;
}

.menu-poster--wide {
  grid-column: span 2;
}

.menu-poster--wide img {
  aspect-ratio: 16/9;
}

.menu-poster:hover img {
  transform: scale(1.04);
}

.menu-poster__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 4, 7, 0.85) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.menu-poster:hover .menu-poster__overlay {
  opacity: 1;
}

.menu-poster__label {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cs-gold);
}

.menu-preview-cta {
  text-align: center;
  margin-top: 3rem;
}

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

  .menu-poster--wide {
    grid-column: span 2;
  }
}

/* ──────────────────────────────────────────
   EVENTS SECTION
────────────────────────────────────────── */
.events-section {
  padding-block: 6rem;
  background: var(--cs-bg-2);
}

.events-layout {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 5rem;
  align-items: start;
}

.events-sticky {
  position: sticky;
  top: calc(var(--header-h, 80px) + 2rem);
}

.events-sticky img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.events-item {
  padding: 1.5rem;
  background: var(--cs-bg-3);
  border: 1px solid var(--cs-line);
  border-left: 3px solid var(--cs-purple);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.events-item:hover {
  border-color: var(--cs-purple-soft);
  border-left-color: var(--cs-gold);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.events-item__tag {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cs-gold);
  margin-bottom: 0.5rem;
}

.events-item__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--cs-white);
  margin-bottom: 0.375rem;
}

.events-item__desc {
  font-size: 1.1rem;
  color: var(--cs-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.events-item__meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 1.1rem;
  color: rgba(232, 223, 240, 0.45);
}

.events-item__meta span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.events-cta {
  margin-top: 2.5rem;
}

@media (max-width: 1023px) {
  .events-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .events-sticky {
    position: static;
  }

  .events-sticky img {
    aspect-ratio: 16/9;
  }
}

/* ──────────────────────────────────────────
   GALLERY SECTION
────────────────────────────────────────── */
.gallery-section {
  padding-block: 6rem;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 0.75rem;
}

.gallery-mosaic__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.gallery-mosaic__item--tall {
  grid-row: span 2;
}

.gallery-mosaic__item--wide {
  grid-column: span 2;
}

.gallery-mosaic__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-mosaic__item:hover img {
  transform: scale(1.04);
}

@media (max-width: 767px) {
  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery-mosaic__item--tall {
    grid-row: span 1;
  }

  .gallery-mosaic__item--wide {
    grid-column: span 2;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .gallery-mosaic {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
  }

  .gallery-mosaic__item--wide {
    grid-column: span 2;
  }
}

/* ──────────────────────────────────────────
   HOMEPAGE CONTACT / RESERVATION CTA
────────────────────────────────────────── */
.homepage-contact {
  position: relative;
  padding-block: 7rem;
  overflow: hidden;
  isolation: isolate;
}

.homepage-contact__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.homepage-contact__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.homepage-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    135deg,
    rgba(5, 4, 7, 0.95) 0%,
    rgba(27, 13, 34, 0.88) 60%,
    rgba(131, 28, 145, 0.25) 100%
  );
}

.homepage-contact__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.homepage-contact__intro h2 {
  color: var(--cs-white);
  margin-bottom: 1rem;
}

.homepage-contact__intro p {
  font-size: 1.2rem;
  color: var(--cs-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.homepage-contact__trust {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.homepage-contact__trust li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1375rem;
  color: var(--cs-muted);
}

.homepage-contact__trust li::before {
  content: '✓';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(215, 181, 109, 0.12);
  border: 1px solid rgba(215, 181, 109, 0.4);
  color: var(--cs-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
}

.homepage-contact__panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(215, 181, 109, 0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.homepage-contact__panel h3 {
  font-size: 1.375rem;
  color: var(--cs-white);
  margin-bottom: 0.5rem;
}

.homepage-contact__panel-sub {
  font-size: 1.1375rem;
  color: var(--cs-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.homepage-contact__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.homepage-contact__actions .btn {
  width: 100%;
  justify-content: center;
}

.homepage-contact__divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.homepage-contact__divider::before,
.homepage-contact__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--cs-line);
}

.homepage-contact__divider span {
  font-size: 0.9rem;
  color: rgba(232, 223, 240, 0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.homepage-contact__direct {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.homepage-contact__contact-link {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--cs-line);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition:
    border-color var(--transition),
    background var(--transition);
}

.homepage-contact__contact-link:hover {
  border-color: var(--cs-line-gold);
  background: rgba(215, 181, 109, 0.05);
}

.homepage-contact__contact-link-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(215, 181, 109, 0.1);
  border: 1px solid rgba(215, 181, 109, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
}

.homepage-contact__contact-link-label {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232, 223, 240, 0.45);
  margin-bottom: 0.125rem;
}

.homepage-contact__contact-link-value {
  display: block;
  font-size: 1.1375rem;
  font-weight: 700;
  color: var(--cs-white);
}

@media (max-width: 1023px) {
  .homepage-contact__layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 767px) {
  .homepage-contact {
    padding-block: 5rem;
  }
}
