/* ═════════════════════════════════════
   Balay Kasadya — Premium Villa Website
   Design system: tropical luxury, calm, elegant
   ═════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Colors */
  --cream: #f8f5f2;
  --warm-white: #faf9f7;
  --deep-green: #1a2a1a;
  --dark: #151812;
  --charcoal: #2c2522;
  --gold: #c4a265;
  --gold-light: #d4b87a;
  --stone: #8a7d72;
  --muted: #6b6460;
  --white: #ffffff;
  --white-90: rgba(255,255,255,0.9);
  --white-70: rgba(255,255,255,0.7);
  --white-50: rgba(255,255,255,0.5);
  --white-10: rgba(255,255,255,0.1);

  /* Typography */
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-pad: clamp(4rem, 10vw, 8rem);
  --container: 1200px;
  --container-narrow: 800px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.75;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

/* ── Typography ── */
.section-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-label.light {
  color: var(--white-70);
}

.section-heading {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: inherit;
  margin-bottom: 2rem;
}

.section-heading.light {
  color: var(--white);
}

.subsection-heading {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  margin: 3rem 0 1.5rem;
  color: var(--charcoal);
}

.centered-text {
  max-width: 650px;
  margin: 0 auto 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
}

.centered-note {
  max-width: 650px;
  margin: 1.5rem auto 0;
  font-size: 0.85rem;
  color: var(--stone);
  font-style: italic;
}

.caretaker-note {
  font-size: 0.85rem;
  color: var(--stone);
  font-style: italic;
  margin-top: 1.5rem;
  padding: 1rem 0 0;
  border-top: 1px solid var(--white-10);
}

/* ── Layout ── */
.section-padded {
  padding: var(--section-pad) 2rem;
}

.bg-warm {
  background: var(--cream);
  color: var(--charcoal);
}

.bg-deep {
  background: var(--deep-green);
  color: var(--white-90);
}

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

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

.text-center {
  text-align: center;
}

/* ── Full-bleed Video Sections ── */
.fullbleed-video {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.25) 40%,
    rgba(0,0,0,0.55) 100%
  );
  z-index: 1;
}

.fullbleed-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding: 2rem;
  text-align: center;
  color: var(--white);
}

.fullbleed-text {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--white-90);
  font-weight: 300;
}

.fullbleed-note {
  font-size: 0.8rem;
  color: var(--white-50);
  margin-top: 1.5rem;
  font-style: italic;
}

/* ── Navigation ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.4s var(--ease);
  padding: 1.25rem 0;
}

#navbar.scrolled {
  background: rgba(21, 24, 18, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--white-90);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  flex-shrink: 0;
}

.brand-mark.large {
  width: 3rem;
  height: 3rem;
  font-size: 1.4rem;
}

.brand-text {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: -0.01em;
}

#navbar.scrolled .brand-text {
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--white-70);
  letter-spacing: 0.02em;
  transition: color 0.3s var(--ease);
}

.nav-links a:hover {
  color: var(--white);
}

.btn-book {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.5rem;
  background: var(--white);
  color: var(--dark) !important;
  border-radius: 100px;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.06em !important;
  transition: all 0.3s var(--ease) !important;
}

.btn-book:hover {
  background: var(--gold-light);
  color: var(--dark) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s var(--ease);
  border-radius: 1px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 5rem 2rem 2rem;
  background: rgba(21, 24, 18, 0.98);
  backdrop-filter: blur(20px);
  z-index: 99;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateY(-100%);
  transition: transform 0.4s var(--ease-out);
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu a {
  font-size: 1.25rem;
  color: var(--white-70);
  font-family: var(--serif);
  font-weight: 400;
}

.btn-book-mobile {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.75rem 2rem;
  background: var(--white);
  color: var(--dark) !important;
  border-radius: 100px;
  font-family: var(--sans) !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  text-align: center;
}

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.2) 50%,
    rgba(0,0,0,0.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white-90);
  color: var(--charcoal);
  padding: 0.4rem 1.25rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  color: var(--white-70);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.5;
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--white-50);
  font-weight: 400;
}

.scroll-line {
  width: 1px;
  height: 3rem;
  background: var(--white-50);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(1.5); opacity: 1; }
}

/* ── Overview ── */
.overview-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.overview-text p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.overview-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-content: start;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.25rem;
  background: var(--white);
  border-radius: 0.75rem;
  font-size: 0.9rem;
  color: var(--charcoal);
  border: 1px solid rgba(0,0,0,0.05);
}

.feature-item i {
  color: var(--gold);
  font-size: 1rem;
  width: 1.5rem;
  text-align: center;
}

/* ── Garden Layout ── */
.garden-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.gallery-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gallery-main {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 1rem;
  transition: opacity 0.5s var(--ease);
}

.gallery-thumbs {
  display: flex;
  gap: 0.5rem;
}

.thumb {
  width: calc(20% - 0.4rem);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0.5rem;
  cursor: pointer;
  opacity: 0.5;
  border: 2px solid transparent;
  transition: all 0.3s var(--ease);
}

.thumb.active {
  opacity: 1;
  border-color: var(--gold);
}

.thumb:hover {
  opacity: 0.8;
}

.garden-text {
  color: var(--white-90);
}

.garden-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
  color: var(--white-70);
}

/* ── Split Layout (Cinema, Bar, Rooftop) ── */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

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

.split-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--white-70);
  margin-bottom: 1rem;
}

.media-video {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 1rem;
  display: block;
  background: #111;
}

.media-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.media-placeholder i {
  font-size: 2.5rem;
  color: var(--gold);
}

.media-placeholder span {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--white-50);
}

/* ── Power Grid ── */
.power-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0 2rem;
}

.power-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
}

.power-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.power-card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.power-card p {
  font-size: 0.9rem;
  color: var(--white-70);
  line-height: 1.6;
}

/* ── Tour Cards ── */
.tour-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0 3rem;
}

.tour-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 1rem;
  padding: 2rem;
}

.tour-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(196, 162, 101, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.tour-icon i {
  font-size: 1.25rem;
  color: var(--gold);
}

.tour-card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.tour-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

.tour-price {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
}

.tour-price span {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--stone);
  margin-top: 0.2rem;
}

/* ── Highlights Grid ── */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.highlight-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.highlight-time {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--gold);
  padding: 0.25rem 0.75rem;
  background: rgba(196, 162, 101, 0.1);
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

.highlight-card h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.highlight-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

.host-trip-note {
  margin-top: 0.25rem;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  color: var(--soft);
  font-style: italic;
}

.dining-heading {
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
}

.dining-desc {
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.kitchen-appliances {
  margin-top: 0.75rem;
}

/* ── Gallery Grid ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  border-radius: 0.75rem;
  overflow: hidden;
  position: relative;
}

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

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.03);
}

.gallery-video {
  position: relative;
}

.gallery-video::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem;
  pointer-events: none;
}

/* ── CTA Button ── */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: var(--charcoal);
  color: var(--white);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-top: 2rem;
  transition: all 0.3s var(--ease);
}

.cta-button:hover {
  background: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.cta-button i {
  transition: transform 0.3s var(--ease);
}

.cta-button:hover i {
  transform: translateX(4px);
}

/* ── Footer ── */
.site-footer {
  background: var(--dark);
  color: var(--white-70);
  padding: 3rem 2rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.footer-brand h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0.75rem 0 0.25rem;
  color: var(--white);
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--white-50);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--white-50);
  transition: color 0.3s var(--ease);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--white-50);
  letter-spacing: 0.04em;
}

/* ── Reveal Animations (Intersection Observer) ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .overview-grid,
  .garden-layout,
  .split-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .split-layout.reverse {
    grid-template-columns: 1fr;
  }

  .split-layout.reverse .split-media {
    order: -1;
  }

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

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

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

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

  .nav-toggle {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .section-padded {
    padding: 3rem 1.25rem;
  }

  .hero-badge {
    font-size: 0.6rem;
    padding: 0.35rem 1rem;
  }

  .tour-cards {
    grid-template-columns: 1fr;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .power-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-grid {
    flex-direction: column;
    gap: 2rem;
  }

  .fullbleed-content {
    padding: 1rem;
  }

  .fullbleed-text {
    font-size: 1rem;
  }

  .gallery-thumbs {
    display: none;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 3rem;
  }

  .section-heading {
    font-size: 2rem;
  }
}


/* Bohol-specific landing hero */
.bohol-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.bohol-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,15,10,.70), rgba(10,15,10,.25), rgba(10,15,10,.58));
  z-index: 1;
  pointer-events: none;
}
.bohol-hero .hero-overlay,
.bohol-hero .hero-content,
.bohol-hero .hero-scroll { position: relative; z-index: 2; }


/* ── Real Airbnb Photo Collages ── */
.warm-copy p {
  color: var(--muted);
}

.warm-note {
  border-top-color: rgba(0,0,0,0.08);
}

.media-collage {
  position: relative;
  min-height: 480px;
}

.media-photo {
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 24px 60px rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.16);
}

.bg-warm .media-photo {
  box-shadow: 0 24px 60px rgba(44,37,34,0.18);
}

.media-photo-large {
  width: 78%;
  aspect-ratio: 4/5;
}

.media-photo-small {
  position: absolute;
  right: 0;
  width: 46%;
  aspect-ratio: 4/3;
}

.media-photo-small.top {
  top: 2rem;
}

.media-photo-small.bottom {
  bottom: 2rem;
}

.roof-collage .media-photo-large {
  aspect-ratio: 4/3;
  margin-top: 3rem;
}

.roof-collage .media-photo-small.top {
  top: 0;
}

.roof-collage .media-photo-small.bottom {
  bottom: 0;
}

.airbnb-gallery {
  grid-auto-flow: dense;
}

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

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

.gallery-tall img {
  height: 100%;
  aspect-ratio: auto;
}


/* ── Section-specific Airbnb media ── */
.section-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0 0 2.5rem;
}

.section-photo-strip img,
.inline-photo-row img {
  width: 100%;
  object-fit: cover;
  border-radius: 0.85rem;
  box-shadow: 0 18px 45px rgba(0,0,0,0.16);
}

.section-photo-strip img {
  aspect-ratio: 4/3;
}

.section-photo-strip.compact {
  margin-bottom: 2rem;
}

.stacked-media {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.inline-photo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.inline-photo-row img {
  aspect-ratio: 4/3;
}

.pool-photos {
  max-width: 560px;
  margin: 1.5rem auto 0;
  grid-template-columns: repeat(2, 1fr);
}

.pool-photos img {
  border: 1px solid rgba(255,255,255,0.22);
}

.highlight-card {
  display: block;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.highlight-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(0,0,0,0.1);
}

.highlight-card h4 i {
  font-size: 0.7rem;
  color: var(--gold);
  margin-left: 0.3rem;
}

.media-caption {
  margin: -0.35rem 0 0.1rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.bar-photo-row.secondary {
  grid-template-columns: repeat(2, 1fr);
}

.rooftop-main-photo,
.cinema-main-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

.rooftop-photo-row.secondary {
  grid-template-columns: 1fr;
}

.rooftop-photo-row.secondary img {
  aspect-ratio: 16 / 9;
}

.media-note {
  margin: 0;
  padding: 1rem;
  border: 1px dashed rgba(184, 134, 83, 0.45);
  border-radius: 0.85rem;
  color: var(--muted);
  font-size: 0.9rem;
  background: rgba(255,255,255,0.06);
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 300px));
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
}

.reel-card {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(184, 134, 83, 0.18);
  border-radius: 1.2rem;
  padding: 1rem 1rem 1.15rem;
  box-shadow: 0 18px 45px rgba(0,0,0,0.1);
}

.reel-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
  border-radius: 0.9rem;
  background: #111;
}

.reel-card h3 {
  margin: 0.9rem 0 0;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--ink);
}

.reels-grid.single-reel {
  grid-template-columns: minmax(230px, 300px);
}

/* cinema reel grid */
.cinema-reel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.cinema-reel-card video {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 0.75rem;
  background: #111;
}

/* pool reel row */
.pool-reel-row {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.pool-reel-card {
  max-width: 360px;
}

.pool-reel-card video {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 0.75rem;
  background: #111;
}

@media (max-width: 760px) {
  .reels-grid {
    grid-template-columns: 1fr;
  }
}
