/* =========================================================
   ROOT & RESET
========================================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --forest:      #1E2D1F;
  --forest-mid:  #2E4A30;
  --forest-light:#4A7C59;
  --maroon:      #6B1A1A;
  --gold:        #C8A96E;
  --gold-light:  #E8D5A3;
  --cream:       #F4EEE2;
  --cream-dark:  #EBE2D0;
  --warm-white:  #FAF7F2;
  --charcoal:    #2C2418;
  --text-body:   #4A3F33;
  --text-muted:  #7A6E62;
  --shadow-deep: 0 20px 60px rgba(30,45,31,0.25);
  --shadow-card: 0 8px 32px rgba(30,45,31,0.12);
  --transition:  all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Raleway', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.7;
}
img  { display: block; width: 100%; object-fit: cover; }
a    { text-decoration: none; color: inherit; }

/* =========================================================
   NAVBAR
========================================================= */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 60px; height: 80px;
  display: flex; align-items: center; justify-content: space-between;
  transition: var(--transition); background: linear-gradient(180deg, rgba(0,0,0,0.38) 0%, transparent 100%);
}
.navbar.scrolled {
  background: rgba(30,45,31,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(0,0,0,0.3);
}
.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
}
.nav-logo img.nav-logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(200,169,110,0.55);
  box-shadow: 0 2px 10px rgba(0,0,0,0.35);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.nav-logo:hover img.nav-logo-icon {
  transform: scale(1.06);
  border-color: var(--gold-light);
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.nav-logo-text .brand {
  font-family: 'Cinzel', serif;
  font-size: 26px;
  letter-spacing: 10px;
  color: #E8D5A3;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 0 1px 10px rgba(0,0,0,0.85), 0 0px 3px rgba(0,0,0,0.95);
}
.nav-logo-text .sub {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 4px;
  color: rgba(232,213,163,0.75);
  font-weight: 400;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
}
.nav-logo-text .sub::before,
.nav-logo-text .sub::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: rgba(232,213,163,0.55);
}
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(244,238,226,0.85); font-weight: 600;
  position: relative; padding-bottom: 4px; transition: var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--gold) !important; color: var(--forest) !important;
  padding: 10px 24px !important; border-radius: 2px;
  letter-spacing: 2px !important; font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-cta::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; z-index: 1001; }
.hamburger span { display: block; width: 28px; height: 2px; background: var(--gold-light); transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  position: fixed; top: 80px; left: 0; right: 0;
  background: rgba(30,45,31,0.98); z-index: 999;
  padding: 0 40px; flex-direction: column; gap: 0;
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.25,0.46,0.45,0.94), padding 0.35s ease;
  display: flex;
}
.mobile-menu a {
  font-family: 'Cinzel', serif; font-size: 15px; letter-spacing: 3px;
  color: var(--gold-light); padding: 14px 0;
  border-bottom: 1px solid rgba(200,169,110,0.15);
  opacity: 0; transform: translateX(-12px);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu.open {
  max-height: 520px;
  padding: 20px 40px 36px;
}
.mobile-menu.open a {
  opacity: 1; transform: translateX(0);
}
.mobile-menu.open a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.10s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.20s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.open a:nth-child(6) { transition-delay: 0.30s; }
.mobile-menu.open a:nth-child(7) { transition-delay: 0.35s; }

/* =========================================================
   HERO BANNER – FULL VIEWPORT
========================================================= */
.gallery-hero {
  position: relative;
  height: 100vh; min-height: 700px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.gallery-hero-bg {
  position: absolute; inset: 0;
  background-image: url("/img/Gellery/Banner.png");
  background-size: cover; background-position: center 50%;
  transform: scale(1.05);
  animation: slowZoom 14s ease forwards;
}
@keyframes slowZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.00); }
}
.gallery-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    175deg,
    rgba(10,18,10,0.05) 0%,
    rgba(30,45,31,0.30) 40%,
    rgba(15,25,15,0.88) 100%
  );
}
/* White fade at bottom blending into page */
.gallery-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to top, var(--warm-white), transparent);
  z-index: 5; pointer-events: none;
}
.gallery-hero-content {
  position: relative; z-index: 10;
  padding: 0 100px 110px;
  animation: heroUp 1s 0.3s both;
}
@keyframes heroUp {
  from { opacity: 0; transform: translateY(50px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 16px;
  font-size: 10px; letter-spacing: 6px; color: var(--gold);
  text-transform: uppercase; font-weight: 600; margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 50px; height: 1px; background: var(--gold);
}
.gallery-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(60px, 9vw, 116px);
  font-weight: 300; color: var(--cream);
  line-height: 0.92; letter-spacing: -3px;
  margin-bottom: 28px;
}
.gallery-hero-content h1 em { font-style: italic; color: var(--gold-light); }
.gallery-hero-content p {
  font-size: 15px; color: rgba(244,238,226,0.72);
  max-width: 480px; line-height: 1.9; letter-spacing: 0.3px;
}
/* Slide count badge top-right */
.hero-badge {
  position: absolute; top: 110px; right: 80px; z-index: 10;
  text-align: right;
  animation: heroUp 1s 0.8s both;
}
.hero-badge .big-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 100px; font-weight: 300; line-height: 1;
  color: rgba(200,169,110,0.22); letter-spacing: -4px;
}
.hero-badge .label {
  font-size: 9px; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(200,169,110,0.55); margin-top: -14px;
}
/* Vertical scroll hint */
.hero-scroll {
  position: absolute; right: 60px; bottom: 200px; z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(244,238,226,0.45); font-size: 8px; letter-spacing: 4px;
  text-transform: uppercase; writing-mode: vertical-lr; transform: rotate(180deg);
  animation: heroUp 1s 1.1s both;
}
.scroll-line {
  width: 1px; height: 64px;
  background: linear-gradient(to bottom, rgba(200,169,110,0.9), transparent);
  animation: pulse 2.2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 0.35; } 50% { opacity: 1; } }

/* =========================================================
   BREADCRUMB BAR
========================================================= */
.breadcrumb-bar {
  background: var(--forest); padding: 16px 100px;
  display: flex; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(200,169,110,0.55);
}
.breadcrumb-bar a { color: var(--gold-light); transition: var(--transition); }
.breadcrumb-bar a:hover { color: var(--gold); }
.breadcrumb-bar .sep { opacity: 0.3; margin: 0 4px; }
.breadcrumb-bar .current { color: rgba(244,238,226,0.45); }

/* =========================================================
   COUNTER STRIP
========================================================= */
.counter-strip {
  display: grid; grid-template-columns: repeat(4,1fr);
  background: var(--cream); border-bottom: 1px solid var(--cream-dark);
}
.counter-item {
  padding: 44px 50px;
  border-right: 1px solid var(--cream-dark);
  text-align: center; transition: var(--transition);
}
.counter-item:last-child { border-right: none; }
.counter-item:hover { background: rgba(200,169,110,0.07); }
.counter-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 54px; font-weight: 300; color: var(--forest); line-height: 1;
}
.counter-lbl {
  font-size: 9px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--text-muted); margin-top: 6px; font-weight: 600;
}

/* =========================================================
   GALLERY SECTION
========================================================= */
.gallery-section { padding: 90px 80px; }
.gallery-section-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 54px; flex-wrap: wrap; gap: 24px;
}
.gallery-section-header-left {}
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 10px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 12px;
}
.eyebrow::before, .eyebrow::after {
  content: ''; display: block; width: 28px; height: 1px; background: var(--gold);
}
.gallery-section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px,4vw,52px); font-weight: 300;
  color: var(--forest); line-height: 1.1;
}

/* Filter Tabs */
.filter-wrap { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-btn {
  padding: 10px 28px; font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 600;
  font-family: 'Raleway', sans-serif; cursor: pointer;
  border-radius: 2px; transition: var(--transition);
  border: 1px solid var(--cream-dark);
  background: transparent; color: var(--text-muted);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--forest); color: var(--gold-light); border-color: var(--forest);
}

/* =========================================================
   BENTO GALLERY GRID
========================================================= */

/* Outer wrapper — uniform gap, no columns */
.masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 80px;
  gap: 10px;
}

/* ── Base tile ── */
.masonry-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  background: var(--forest-mid);
  /* stagger entrance */
  opacity: 0;
  transform: translateY(22px) scale(0.98);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    box-shadow 0.4s ease;
}
.masonry-item.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── Desktop 12-col grid — 18 active items (16 & 19 kept commented) ── */

/* ROW A — tall portrait | landscape | landscape */
.masonry-item:nth-child(1)  { grid-column: 1 / 5;  grid-row: 1 / 7;  } /* tall portrait  */
.masonry-item:nth-child(2)  { grid-column: 5 / 9;  grid-row: 1 / 4;  } /* landscape      */
.masonry-item:nth-child(3)  { grid-column: 9 / 13; grid-row: 1 / 4;  } /* landscape      */

/* ROW B — fills under A right pair */
.masonry-item:nth-child(4)  { grid-column: 5 / 9;  grid-row: 4 / 7;  } /* square         */
.masonry-item:nth-child(5)  { grid-column: 9 / 13; grid-row: 4 / 7;  } /* square         */

/* ROW C — wide hero + 2 portrait */
.masonry-item:nth-child(6)  { grid-column: 1 / 7;  grid-row: 7 / 11; } /* wide landscape */
.masonry-item:nth-child(7)  { grid-column: 7 / 10; grid-row: 7 / 11; } /* portrait       */
.masonry-item:nth-child(8)  { grid-column: 10 / 13; grid-row: 7 / 11;} /* portrait       */

/* ROW D — 3 equal squares */
.masonry-item:nth-child(9)  { grid-column: 1 / 5;  grid-row: 11 / 15;} /* square         */
.masonry-item:nth-child(10) { grid-column: 5 / 9;  grid-row: 11 / 15;} /* square         */
.masonry-item:nth-child(11) { grid-column: 9 / 13; grid-row: 11 / 15;} /* square         */

/* ROW E — tall portrait | wide panoramic */
.masonry-item:nth-child(12) { grid-column: 1 / 4;  grid-row: 15 / 20;} /* tall portrait  */
.masonry-item:nth-child(13) { grid-column: 4 / 13; grid-row: 15 / 19;} /* ultra-wide     */

/* ROW F — wide | portrait | square (fills under row E) */
.masonry-item:nth-child(14) { grid-column: 4 / 8;  grid-row: 19 / 23;} /* wide           */
.masonry-item:nth-child(15) { grid-column: 8 / 13; grid-row: 19 / 23;} /* wide           */

/* ROW G — full panoramic + portrait */
.masonry-item:nth-child(16) { grid-column: 1 / 8;  grid-row: 23 / 27;} /* panoramic      */
.masonry-item:nth-child(17) { grid-column: 8 / 13; grid-row: 23 / 27;} /* portrait       */

/* ROW H — wide panoramic closing */
.masonry-item:nth-child(18) { grid-column: 1 / 8;  grid-row: 27 / 31;} /* panoramic      */

/* Image fills the tile */
.masonry-item img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.masonry-item:hover { box-shadow: 0 16px 48px rgba(20,40,22,0.45); }
.masonry-item:hover img { transform: scale(1.07); }

/* Overlay */
.masonry-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    170deg,
    transparent 40%,
    rgba(20,35,22,0.75) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex; align-items: flex-end;
  padding: 22px;
}
.masonry-item:hover .masonry-overlay { opacity: 1; }

/* Expand icon */
.masonry-expand {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(244,238,226,0.35);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px;
  opacity: 0; transform: scale(0.75);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.masonry-item:hover .masonry-expand { opacity: 1; transform: scale(1); }

/* Stagger delays */
.masonry-item:nth-child(1)  { transition-delay: 0.00s; }
.masonry-item:nth-child(2)  { transition-delay: 0.06s; }
.masonry-item:nth-child(3)  { transition-delay: 0.10s; }
.masonry-item:nth-child(4)  { transition-delay: 0.14s; }
.masonry-item:nth-child(5)  { transition-delay: 0.18s; }
.masonry-item:nth-child(6)  { transition-delay: 0.22s; }
.masonry-item:nth-child(7)  { transition-delay: 0.26s; }
.masonry-item:nth-child(8)  { transition-delay: 0.30s; }
.masonry-item:nth-child(9)  { transition-delay: 0.34s; }
.masonry-item:nth-child(10) { transition-delay: 0.38s; }
.masonry-item:nth-child(11) { transition-delay: 0.42s; }
.masonry-item:nth-child(12) { transition-delay: 0.46s; }
.masonry-item:nth-child(13) { transition-delay: 0.50s; }
.masonry-item:nth-child(14) { transition-delay: 0.54s; }
.masonry-item:nth-child(15) { transition-delay: 0.58s; }
.masonry-item:nth-child(16) { transition-delay: 0.62s; }
.masonry-item:nth-child(17) { transition-delay: 0.66s; }
.masonry-item:nth-child(18) { transition-delay: 0.70s; }

/* Hidden for filter */
.masonry-item.hidden {
  display: none !important;
}

/* ── Tablet (≤1100px) — 8-col grid — 18 items ── */
@media (max-width: 1100px) {
  .masonry {
    grid-template-columns: repeat(8, 1fr);
    grid-auto-rows: 72px;
    gap: 8px;
  }
  /* ROW A */
  .masonry-item:nth-child(1)  { grid-column: 1 / 4;  grid-row: 1 / 6;  }
  .masonry-item:nth-child(2)  { grid-column: 4 / 9;  grid-row: 1 / 4;  }
  .masonry-item:nth-child(3)  { grid-column: 4 / 7;  grid-row: 4 / 7;  }
  .masonry-item:nth-child(4)  { grid-column: 7 / 9;  grid-row: 4 / 7;  }
  /* ROW B */
  .masonry-item:nth-child(5)  { grid-column: 1 / 4;  grid-row: 6 / 10; }
  .masonry-item:nth-child(6)  { grid-column: 4 / 9;  grid-row: 7 / 11; }
  /* ROW C */
  .masonry-item:nth-child(7)  { grid-column: 1 / 3;  grid-row: 10 / 14;}
  .masonry-item:nth-child(8)  { grid-column: 3 / 6;  grid-row: 10 / 14;}
  .masonry-item:nth-child(9)  { grid-column: 6 / 9;  grid-row: 11 / 15;}
  /* ROW D */
  .masonry-item:nth-child(10) { grid-column: 1 / 5;  grid-row: 14 / 18;}
  .masonry-item:nth-child(11) { grid-column: 5 / 9;  grid-row: 15 / 19;}
  /* ROW E */
  .masonry-item:nth-child(12) { grid-column: 1 / 4;  grid-row: 18 / 23;}
  .masonry-item:nth-child(13) { grid-column: 4 / 9;  grid-row: 18 / 22;}
  /* ROW F */
  .masonry-item:nth-child(14) { grid-column: 4 / 7;  grid-row: 22 / 26;}
  .masonry-item:nth-child(15) { grid-column: 7 / 9;  grid-row: 22 / 26;}
  /* ROW G */
  .masonry-item:nth-child(16) { grid-column: 1 / 5;  grid-row: 23 / 27;}
  .masonry-item:nth-child(17) { grid-column: 5 / 9;  grid-row: 26 / 30;}
  /* ROW H */
  .masonry-item:nth-child(18) { grid-column: 1 / 5;  grid-row: 27 / 31;}
}

/* ── Mobile (≤700px) — 2-col alternating — 18 items ── */
@media (max-width: 700px) {
  .masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 60px;
    gap: 8px;
  }
  /* Rhythm: tall+short | short+tall | full-width | tall+short | ... */
  .masonry-item:nth-child(1)  { grid-column: 1 / 2; grid-row: 1 / 6;  }  /* tall   */
  .masonry-item:nth-child(2)  { grid-column: 2 / 3; grid-row: 1 / 4;  }  /* med    */
  .masonry-item:nth-child(3)  { grid-column: 2 / 3; grid-row: 4 / 7;  }  /* med    */

  .masonry-item:nth-child(4)  { grid-column: 1 / 2; grid-row: 6 / 9;  }  /* med    */
  .masonry-item:nth-child(5)  { grid-column: 2 / 3; grid-row: 7 / 11; }  /* tall   */
  .masonry-item:nth-child(6)  { grid-column: 1 / 2; grid-row: 9 / 13; }  /* tall   */

  .masonry-item:nth-child(7)  { grid-column: 1 / 3; grid-row: 13 / 17;} /* full-w */

  .masonry-item:nth-child(8)  { grid-column: 1 / 2; grid-row: 17 / 21;} /* tall   */
  .masonry-item:nth-child(9)  { grid-column: 2 / 3; grid-row: 17 / 20;} /* med    */
  .masonry-item:nth-child(10) { grid-column: 2 / 3; grid-row: 20 / 23;} /* med    */

  .masonry-item:nth-child(11) { grid-column: 1 / 3; grid-row: 23 / 27;} /* full-w */

  .masonry-item:nth-child(12) { grid-column: 1 / 2; grid-row: 27 / 30;} /* med    */
  .masonry-item:nth-child(13) { grid-column: 2 / 3; grid-row: 27 / 31;} /* tall   */
  .masonry-item:nth-child(14) { grid-column: 1 / 2; grid-row: 30 / 34;} /* tall   */

  .masonry-item:nth-child(15) { grid-column: 1 / 3; grid-row: 34 / 38;} /* full-w */

  .masonry-item:nth-child(16) { grid-column: 1 / 2; grid-row: 38 / 42;} /* tall   */
  .masonry-item:nth-child(17) { grid-column: 2 / 3; grid-row: 38 / 41;} /* med    */
  .masonry-item:nth-child(18) { grid-column: 2 / 3; grid-row: 41 / 45;} /* tall   */

  .masonry-expand { width: 30px; height: 30px; font-size: 12px; top: 10px; right: 10px; }
  /* On touch, always show expand icon faintly */
  .masonry-expand { opacity: 0.6; transform: scale(1); }
}

/* ── Small mobile (≤400px) ── */
@media (max-width: 400px) {
  .masonry { grid-auto-rows: 52px; gap: 6px; }
}

/* =========================================================
   FULL-WIDTH DIVIDER IMAGE
========================================================= */
.divider-image {
  position: relative; height: 480px; overflow: hidden;
  margin-top: 20px;
}
.divider-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.divider-image-overlay {
  position: absolute; inset: 0;
  background: rgba(20,30,20,0.52);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; text-align: center;
}
.divider-image-overlay h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px,5vw,70px); font-weight: 300;
  color: var(--cream); letter-spacing: -1px; line-height: 1.1; margin-bottom: 16px;
}
.divider-image-overlay h2 em { font-style: italic; color: var(--gold-light); }
.divider-image-overlay p {
  font-size: 14px; color: rgba(244,238,226,0.68);
  letter-spacing: 0.5px; max-width: 480px; line-height: 1.8;
}

/* =========================================================
   VIDEO / REEL SECTION
========================================================= */
.reel-section {
  background: var(--charcoal);
  padding: 90px 80px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.reel-left {}
.reel-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 10px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 18px;
}
.reel-eyebrow::before {
  content: ''; display: block; width: 28px; height: 1px; background: var(--gold);
}
.reel-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px,4vw,54px); font-weight: 300;
  color: var(--cream); line-height: 1.15; margin-bottom: 20px;
}
.reel-left h2 em { font-style: italic; color: var(--gold-light); }
.reel-left p {
  font-size: 14px; color: rgba(244,238,226,0.65);
  line-height: 1.85; margin-bottom: 36px;
}
.btn-primary {
  background: var(--gold); color: var(--forest);
  padding: 17px 44px; font-family: 'Raleway', sans-serif;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  font-weight: 700; border: none; cursor: pointer;
  transition: var(--transition); border-radius: 2px; display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 36px rgba(200,169,110,0.4); }
.reel-mosaic {
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px;
  gap: 10px;
}
.reel-mosaic-img { overflow: hidden; border-radius: 3px; }
.reel-mosaic-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.reel-mosaic-img:hover img { transform: scale(1.07); }
.reel-mosaic-img.tall { grid-row: span 2; }

/* =========================================================
   INSTAGRAM STRIP
========================================================= */
.instagram-strip {
  background: var(--cream); padding: 70px 80px;
  text-align: center;
}
.instagram-strip .eyebrow { justify-content: center; }
.instagram-strip h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px,4vw,50px); font-weight: 300;
  color: var(--forest); margin-bottom: 10px;
}
.instagram-strip > p {
  font-size: 14px; color: var(--text-muted); margin-bottom: 44px; line-height: 1.8;
}
.insta-grid {
  display: grid; grid-template-columns: repeat(6,1fr); gap: 10px;
  margin-bottom: 36px;
}
.insta-item {
  aspect-ratio: 1/1; overflow: hidden; border-radius: 2px; cursor: pointer;
  position: relative;
}
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.insta-item:hover img { transform: scale(1.1); }
.insta-overlay {
  position: absolute; inset: 0;
  background: rgba(30,45,31,0); display: flex;
  align-items: center; justify-content: center;
  transition: var(--transition);
}
.insta-overlay span { color: #fff; font-size: 22px; opacity: 0; transition: var(--transition); }
.insta-item:hover .insta-overlay { background: rgba(30,45,31,0.5); }
.insta-item:hover .insta-overlay span { opacity: 1; }
.insta-handle {
  font-family: 'Cinzel', serif; font-size: 13px; letter-spacing: 3px;
  color: var(--forest); display: inline-flex; align-items: center; gap: 10px;
}
.insta-handle::before { content: '@'; color: var(--gold); }

/* =========================================================
   CTA BOOKING BANNER
========================================================= */
.cta-banner {
  position: relative; min-height: 460px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
}
.cta-banner-bg {
  position: absolute; inset: 0;
  background-image: url("/img/Gellery/Banner.png");
  background-size: cover; background-position: center;
}
.cta-banner-overlay { position: absolute; inset: 0; background: rgba(15,25,15,0.80); }
.cta-content {
  position: relative; z-index: 5;
  padding: 80px 60px; max-width: 720px; margin: 0 auto;
}
.cta-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 10px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 20px; justify-content: center;
}
.cta-eyebrow::before, .cta-eyebrow::after {
  content: ''; display: block; width: 28px; height: 1px; background: var(--gold);
}
.cta-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px,5vw,64px); font-weight: 300;
  color: var(--cream); line-height: 1.1; letter-spacing: -1px; margin-bottom: 20px;
}
.cta-content h2 em { font-style: italic; color: var(--gold-light); }
.cta-content p {
  font-size: 14px; color: rgba(244,238,226,0.68);
  line-height: 1.85; margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto;
}
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-outline {
  background: transparent; color: var(--cream);
  padding: 16px 44px; font-family: 'Raleway', sans-serif;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  font-weight: 600; border: 1px solid rgba(244,238,226,0.4);
  cursor: pointer; transition: var(--transition); border-radius: 2px; display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }

/* =========================================================
   FOOTER
========================================================= */
footer { background: var(--charcoal); color: var(--cream); padding: 80px 100px 40px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 60px;
}
.footer-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.footer-logo img.footer-logo-icon { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(200,169,110,0.4); box-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.footer-logo .name { font-family: 'Cinzel', serif; font-size: 16px; letter-spacing: 3px; color: var(--gold-light); }
.footer-brand p { font-size: 13px; color: rgba(244,238,226,0.55); line-height: 1.8; margin-bottom: 24px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px; border: 1px solid rgba(200,169,110,0.3);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--gold); cursor: pointer; transition: var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--forest); border-color: var(--gold); }
.footer-col h4 {
  font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 3px;
  color: var(--gold); margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(200,169,110,0.2); text-transform: uppercase;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13px; color: rgba(244,238,226,0.55); transition: var(--transition); cursor: pointer;
}
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 6px; }
.footer-bottom {
  border-top: 1px solid rgba(244,238,226,0.08); padding-top: 30px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 12px; color: rgba(244,238,226,0.35); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  font-family: 'Raleway', sans-serif;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--cream-dark);
  border-radius: 3px;
  background: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  color: var(--charcoal);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--forest-light);
  box-shadow: 0 0 0 3px rgba(74,124,89,0.1);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A6E62' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--warm-white);
  border-radius: 6px;
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 40px 100px rgba(0,0,0,0.4);
  animation: modalIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(30px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-header {
  background: var(--forest);
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-header-brand { display: flex; align-items: center; gap: 16px; }
.modal-header-logo { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(244,238,226,0.35); box-shadow: 0 2px 8px rgba(0,0,0,0.35); flex-shrink: 0; }
.modal-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--cream);
}
.modal-header p { font-size: 12px; color: rgba(244,238,226,0.6); letter-spacing: 1px; margin-top: 4px; }
.modal-close {
  width: 36px; height: 36px;
  border: 1px solid rgba(244,238,226,0.3);
  border-radius: 50%;
  background: transparent;
  color: var(--cream);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.modal-close:hover { background: rgba(255,255,255,0.1); }
.modal-body { padding: 40px; }
.modal-package-info {
  background: var(--cream);
  border-radius: 4px;
  padding: 20px 24px;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-package-info .pkg-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--forest);
}
.modal-package-info .pkg-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--maroon);
}
.modal-package-info .pkg-price span { font-size: 13px; color: var(--text-muted); }
.modal-success {
  text-align: center;
  padding: 30px 20px;
  display: none;
}
.modal-success.show { display: block; }
.modal-success-logo { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(200,169,110,0.4); margin: 0 auto 18px; display: block; box-shadow: 0 4px 14px rgba(0,0,0,0.18); animation: modalSuccessPop 0.5s ease; }
@keyframes modalSuccessPop { 0% { transform: scale(0.6); opacity: 0; } 60% { transform: scale(1.08); opacity: 1; } 100% { transform: scale(1); } }
.modal-success .success-icon { font-size: 60px; margin-bottom: 16px; }
.modal-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 300;
  color: var(--forest);
  margin-bottom: 12px;
}
.modal-success p { font-size: 14px; color: var(--text-body); }
.form-divider {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin: 24px 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.form-divider::before, .form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--cream-dark);
}
/* =========================================================
   LIGHTBOX
========================================================= */
.lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 5000;
  background: rgba(6,10,6,0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  align-items: center; justify-content: center;
  padding: 0;
  touch-action: none;
}
.lightbox.open { display: flex; }

/* Fullscreen wrapper */
.lightbox-inner {
  position: relative;
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: lbIn 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}
@keyframes lbIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

/* Image */
.lightbox-img {
  display: block;
  max-width: 92vw;
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
  transition: opacity 0.25s ease;
  user-select: none;
  -webkit-user-drag: none;
}

/* Top bar: counter left, close right */
.lb-topbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55), transparent);
  z-index: 10;
}
.lightbox-counter {
  font-family: 'Raleway', sans-serif;
  font-size: 11px; letter-spacing: 3px;
  color: rgba(244,238,226,0.5);
  font-weight: 600;
}
.lightbox-close {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(244,238,226,0.25);
  background: rgba(255,255,255,0.06);
  color: var(--cream); font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lightbox-close:hover { background: rgba(200,169,110,0.25); border-color: var(--gold); }

/* Side nav arrows */
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(244,238,226,0.2);
  background: rgba(10,18,10,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--cream); font-size: 24px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  z-index: 10;
}
.lightbox-nav:hover { background: rgba(200,169,110,0.25); border-color: var(--gold); color: var(--gold-light); }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }

/* Caption */
.lightbox-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
}
.lightbox-caption .cat {
  font-size: 9px; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(200,169,110,0.7); font-weight: 600;
}

/* ---- Mobile lightbox ---- */
@media (max-width: 768px) {
  .lightbox-img {
    max-width: 100vw;
    max-height: 75vh;
    border-radius: 0;
    box-shadow: none;
  }
  .lb-topbar { padding: 0 16px; height: 52px; }
  .lightbox-close { width: 38px; height: 38px; font-size: 16px; }
  .lightbox-nav {
    width: 44px; height: 44px; font-size: 20px;
    background: rgba(0,0,0,0.5);
  }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
  /* Dot indicators on mobile */
  .lb-dots {
    position: absolute;
    bottom: 14px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 7px; align-items: center;
    z-index: 10;
  }
  .lb-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(255,255,255,0.35);
    transition: all 0.3s ease;
    cursor: pointer;
  }
  .lb-dot.active { background: var(--gold); width: 20px; border-radius: 3px; }
}
@media (min-width: 769px) {
  .lb-dots { display: none; }
}

/* =========================================================
   FLOATING SOCIALS
========================================================= */
.floating-socials {
  position: fixed; bottom: 32px; right: 28px;
  z-index: 9999; display: flex; flex-direction: column; gap: 14px; align-items: flex-end;
}
.float-btn {
  display: flex; align-items: center; height: 52px; border-radius: 30px;
  text-decoration: none; font-family: 'Raleway', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 1px; color: #fff;
  box-shadow: 0 6px 24px rgba(0,0,0,0.22);
  transition: all 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  overflow: hidden; max-width: 52px; white-space: nowrap;
}
.float-btn:hover { max-width: 240px; box-shadow: 0 10px 36px rgba(0,0,0,0.3); transform: translateY(-2px); }
.float-btn-icon { width: 52px; height: 52px; border-radius: 30px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.float-btn-label { padding-right: 20px; opacity: 0; transition: opacity 0.2s ease 0.1s; }
.float-btn:hover .float-btn-label { opacity: 1; }
.float-whatsapp { background: #25D366; }
.float-whatsapp .float-btn-icon { background: #1ebe5d; }
.float-instagram { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4); }
.float-instagram .float-btn-icon { background: rgba(0,0,0,0.15); }

/* =========================================================
   SCROLL REVEAL
========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }

/* =========================================================
   RESPONSIVE
========================================================= */

/* ---- Tablet large ---- */
@media(max-width:1200px) {
  .navbar { padding: 0 40px; }
  .gallery-hero-content { padding: 0 60px 100px; }
  .gallery-section { padding: 80px 60px; }
  .reel-section { padding: 80px 60px; }
  .instagram-strip { padding: 60px 60px; }
  footer { padding: 70px 60px 36px; }
  .breadcrumb-bar { padding: 16px 60px; }
}

/* ---- Tablet ---- */
@media(max-width:1100px) {
  .insta-grid { grid-template-columns: repeat(3,1fr); }
  .reel-section { grid-template-columns: 1fr; gap: 50px; }
  .reel-mosaic { grid-template-rows: 200px 200px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .counter-item { padding: 36px 24px; }
}

/* ---- Tablet small / large mobile ---- */
@media(max-width:900px) {
  /* ── Mobile branding ── */
  .nav-logo { flex-direction: column !important; align-items: center !important; gap: 3px !important; }
  .nav-logo img.nav-logo-icon { width: 34px !important; height: 34px !important; object-fit: cover !important; border-radius: 50% !important; }
  .nav-logo-text { display: flex !important; flex-direction: column !important; align-items: center !important; gap: 4px !important; line-height: 1 !important; }
  .nav-logo-text .brand { font-family: 'Cinzel', serif !important; font-size: 20px !important; letter-spacing: 7px !important; color: #C8A96E !important; font-weight: 600 !important; text-transform: uppercase !important; line-height: 1 !important;   text-shadow: 0 1px 10px rgba(0,0,0,0.85), 0 0px 3px rgba(0,0,0,0.95);
}
  .nav-logo-text .sub { display: flex !important; align-items: center !important; gap: 8px !important; font-family: 'Cinzel', serif !important; font-size: 8px !important; letter-spacing: 3px !important; color: rgba(200,169,110,0.75) !important; font-weight: 400 !important; text-transform: uppercase !important; white-space: nowrap !important; }
  .nav-logo-text .sub::before, .nav-logo-text .sub::after { content: '' !important; display: inline-block !important; width: 22px !important; height: 1px !important; background: rgba(200,169,110,0.6) !important; }
  /* Navbar - solid green bar, logo left, hamburger right */
  .navbar {
    padding: 0 20px; height: 60px;
    background: #1E2D1F !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    pointer-events: all;
    overflow: visible;
  }
  .nav-logo { display: flex; }
  .nav-links { display: none; }
  .hamburger {
    display: flex;
    position: static;
    background: none;
    backdrop-filter: none;
    box-shadow: none;
    border-radius: 0;
    padding: 4px;
    top: auto; right: auto;
  }
  .hamburger span { background: var(--gold-light); }
  .mobile-menu { top: 60px; }

  /* Hero */
  .gallery-hero { min-height: 580px; }
  .gallery-hero-content { padding: 0 24px 90px; }
  .gallery-hero-content h1 { letter-spacing: -2px; }
  .hero-badge { display: none; }
  .hero-scroll { display: none; }

  /* Layout sections */
  .breadcrumb-bar { display: none; }
  .gallery-section { padding: 56px 24px; }
  .gallery-section-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .counter-strip { grid-template-columns: 1fr 1fr; }
  .counter-item { padding: 32px 20px; }
  .counter-num { font-size: 44px; }
  .instagram-strip { padding: 56px 24px; }
  .reel-section { padding: 56px 24px; grid-template-columns: 1fr; gap: 44px; }
  .reel-mosaic { grid-template-rows: 180px 180px; }
  .cta-content { padding: 60px 24px; }
  footer { padding: 56px 24px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; margin-bottom: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* Floating socials smaller */
  .floating-socials { bottom: 20px; right: 16px; }
}

/* ---- Mobile ---- */
@media(max-width:600px) {
  /* Navbar - tighter on small mobile */
  .navbar { padding: 0 16px; height: 56px; }
  .hamburger { position: static; background: none; box-shadow: none; border-radius: 0; padding: 4px; }
  .mobile-menu { top: 56px; }
  .mobile-menu.open { padding: 18px 24px 30px; }
  .mobile-menu a { font-size: 13px; letter-spacing: 2px; padding: 13px 0; }

  /* Hero */
  .gallery-hero { min-height: 520px; }
  .gallery-hero-content { padding: 0 18px 80px; }
  .gallery-hero-content h1 { font-size: clamp(42px, 11vw, 60px); letter-spacing: -1.5px; }
  .gallery-hero-content p { font-size: 13px; max-width: 100%; }
  .gallery-hero::after { height: 120px; }

  /* Gallery */
  .filter-wrap { gap: 8px; }
  .filter-btn { padding: 9px 18px; font-size: 9px; }

  /* Counter */
  .counter-strip { grid-template-columns: 1fr 1fr; }
  .counter-item { padding: 28px 12px; }
  .counter-num { font-size: 38px; }
  .counter-lbl { font-size: 8px; letter-spacing: 2.5px; }

  /* Instagram */
  .insta-grid { grid-template-columns: repeat(2,1fr); gap: 8px; }

  /* Reel section */
  .reel-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 140px 140px; gap: 8px; }
  .reel-mosaic-img.tall { grid-row: span 1; }
  .reel-section { gap: 32px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { font-size: 11px; }

  /* CTA */
  .cta-content { padding: 50px 18px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; max-width: 300px; text-align: center; }

  /* Lightbox */
  .lightbox { padding: 0; }

  /* Modal */
  .modal-header { padding: 22px 20px; }
  .modal-body { padding: 24px 20px; }
  .modal-package-info { flex-direction: column; gap: 6px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }

  /* Floating socials */
  .float-btn { max-width: 46px; height: 46px; }
  .float-btn-icon { width: 46px; height: 46px; }
  .floating-socials { gap: 10px; bottom: 16px; right: 12px; }
}

/* ---- Very small mobile ---- */
@media(max-width:380px) {
  .gallery-hero-content h1 { font-size: 38px; }
  .counter-strip { grid-template-columns: 1fr 1fr; }
  .insta-grid { grid-template-columns: repeat(2,1fr); }
  .filter-btn { padding: 8px 14px; font-size: 8.5px; letter-spacing: 1.5px; }
}
/* =========================================================
   GALLERY — RESPONSIVE OVERHAUL ADDITIONS
========================================================= */
html, body { max-width: 100vw; overflow-x: hidden; }

@media (min-width: 1440px) {
  .gallery-hero-content { padding: 0 140px 120px; }
  .gallery-section { padding: 100px 140px; }
  .breadcrumb-bar { padding: 18px 140px; }
  footer { padding: 100px 140px 50px; }
}

@media (max-width: 1280px) and (min-width: 1101px) {
  .gallery-hero-content { padding: 0 80px 110px; }
  .gallery-section { padding: 84px 80px; }
  .reel-section { padding: 84px 80px; }
  footer { padding: 80px 80px 40px; }
  .breadcrumb-bar { padding: 16px 80px; }
}

@media (max-width: 1100px) and (min-width: 769px) {
  .gallery-hero-content { padding: 0 52px 100px; }
  .gallery-section { padding: 72px 52px; }
  .reel-section { padding: 72px 52px; gap: 48px; }
  .instagram-strip { padding: 60px 52px; }
  .cta-content { padding: 72px 52px; }
  footer { padding: 64px 52px 32px; }
  .breadcrumb-bar { padding: 14px 52px; }
  .counter-item { padding: 36px 28px; }
  .insta-grid { grid-template-columns: repeat(4, 1fr); }
  .reel-mosaic { grid-template-rows: 200px 200px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  /* Hero */
  .gallery-hero { min-height: 100svh; height: 100svh; }
  .gallery-hero-content { padding: 0 22px 90px; }
  .gallery-hero-content h1 { font-size: clamp(44px, 11vw, 72px); letter-spacing: -1.5px; }
  .gallery-hero-content p { font-size: 14px; max-width: 100%; }
  .gallery-hero::after { height: 120px; }
  .hero-badge { display: none; }
  .hero-scroll { display: none; }
  .hero-eyebrow { font-size: 9px; letter-spacing: 4px; margin-bottom: 16px; }

  /* Breadcrumb */
  .breadcrumb-bar { display: none; }

  /* Counter strip */
  .counter-strip { grid-template-columns: 1fr 1fr; }
  .counter-item { padding: 28px 16px; border-bottom: 1px solid var(--cream-dark); }
  .counter-item:nth-child(1),
  .counter-item:nth-child(2) { border-bottom: 1px solid var(--cream-dark); }
  .counter-item:nth-child(3),
  .counter-item:nth-child(4) { border-bottom: none; }
  .counter-num { font-size: 42px; }
  .counter-lbl { font-size: 8px; letter-spacing: 3px; }

  /* Gallery section */
  .gallery-section { padding: 52px 22px; }
  .gallery-section-header { flex-direction: column; align-items: flex-start; gap: 18px; margin-bottom: 36px; }
  .gallery-section-header h2 { font-size: clamp(28px, 8vw, 44px); }
  .filter-wrap { gap: 8px; }
  .filter-btn { padding: 9px 18px; font-size: 9px; }

  /* Divider image */
  .divider-image { height: 300px; }
  .divider-image-overlay h2 { font-size: clamp(28px, 7vw, 48px); }
  .divider-image-overlay p { font-size: 13px; max-width: 100%; padding: 0 16px; }

  /* Reel section */
  .reel-section { padding: 52px 22px; grid-template-columns: 1fr; gap: 40px; }
  .reel-left h2 { font-size: clamp(28px, 8vw, 44px); }
  .reel-mosaic { grid-template-rows: 160px 160px; gap: 8px; }
  .reel-mosaic-img.tall { grid-row: span 1; }

  /* Instagram strip */
  .instagram-strip { padding: 52px 22px; }
  .instagram-strip h2 { font-size: clamp(28px, 8vw, 44px); }
  .insta-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }

  /* CTA banner */
  .cta-content { padding: 60px 22px; }
  .cta-content h2 { font-size: clamp(30px, 8vw, 50px); }
  .cta-btns { flex-direction: column; align-items: center; gap: 12px; }
  .btn-primary, .btn-outline { width: 100%; max-width: 290px; text-align: center; display: flex; justify-content: center; }

  /* Footer */
  footer { padding: 52px 22px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  /* Modal */
  .modal-header { padding: 20px 20px; }
  .modal-header h2 { font-size: 20px; }
  .modal-body { padding: 22px 18px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .modal-package-info { flex-direction: column; gap: 8px; }

  /* Floating socials */
  .floating-socials { bottom: 18px; right: 14px; gap: 10px; }
  .float-btn { height: 46px; max-width: 46px; }
  .float-btn-icon { width: 46px; height: 46px; }
  .float-btn-label { display: none; }
  .float-btn:hover { max-width: 46px; }
}

@media (max-width: 480px) {
  .navbar { padding: 0 16px; height: 60px; }
  .mobile-menu { top: 60px; }
  .gallery-hero-content { padding: 0 16px 80px; }
  .gallery-hero-content h1 { font-size: clamp(36px, 11vw, 56px); letter-spacing: -1px; }
  .gallery-section { padding: 40px 16px; }
  .gallery-section-header { gap: 14px; margin-bottom: 28px; }
  .counter-item { padding: 22px 10px; }
  .counter-num { font-size: 36px; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .reel-mosaic { grid-template-rows: 130px 130px; }
  .reel-section { padding: 40px 16px; }
  .instagram-strip { padding: 40px 16px; }
  .cta-content { padding: 48px 16px; }
  footer { padding: 40px 16px 22px; }
  .divider-image { height: 240px; }

  /* Lightbox on small screens */
  .lightbox-nav { width: 38px; height: 38px; font-size: 16px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
}

@media (max-width: 360px) {
  .gallery-hero-content h1 { font-size: 32px; }
  .section, .gallery-section, .reel-section { padding-left: 12px; padding-right: 12px; }
  footer { padding-left: 12px; padding-right: 12px; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .filter-btn { padding: 8px 12px; font-size: 8px; }
}

@media (max-height: 500px) and (max-width: 900px) and (orientation: landscape) {
  .gallery-hero { min-height: 100svh; height: 100svh; }
  .gallery-hero-content { padding: 0 24px 60px; }
  .gallery-hero-content h1 { font-size: clamp(28px, 7vh, 46px); }
  .gallery-hero-content p { display: none; }
}
