/* ================================================================
   JUDE PHOTOGRAPHS — Premium Editorial Luxury Gold Theme
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800;900&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Great+Vibes&family=Jost:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,400;1,600&display=swap');

:root {
  /* Rich Gold Palette */
  --gold:           #D4AF37;   /* Classic Gold */
  --gold-light:     #F7E5A9;   /* Bright Champagne Gold */
  --gold-dark:      #997A15;   /* Deep Metallic Gold */
  --gold-grad:      linear-gradient(135deg, #F7E5A9 0%, #D4AF37 50%, #997A15 100%);
  --gold-glow:      rgba(212, 175, 55, 0.35);

  /* Dark Luxury Backgrounds */
  --dark:           #0B0907;
  --dark-2:         #16120E;
  --dark-3:         #241E17;

  /* Cream Light Theme */
  --cream:          #FAF6F0;
  --cream-2:        #EFE7DA;
  --cream-3:        #DFCFC0;

  /* Text Colors */
  --white:          #FFFFFF;
  --text-warm:      #F7F3EB;
  --text-muted:     rgba(247, 243, 235, 0.75);
  --text-dark:      #1A140E;
  --text-mid:       #594937;

  /* Fonts */
  --font-hero: 'Cinzel', 'Playfair Display', serif;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'Jost', system-ui, sans-serif;
  --script:    'Great Vibes', cursive;

  /* Layout */
  --section-py: clamp(65px, 8vw, 115px);
  --container:  1280px;
  --header-h:   92px;
  --header-mob: 76px;

  --trans: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; width: 100%; overflow-x: hidden; }
body {
  font-family: var(--sans);
  background: var(--dark);
  color: var(--text-warm);
  line-height: 1.65;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--sans); border: none; background: none; }

/* ─── CONTAINER & SECTIONS ─── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}
.section-dark  { background: var(--dark); color: var(--text-warm); }
.section-dark2 { background: var(--dark-2); color: var(--text-warm); }
.section-cream { background: var(--cream); color: var(--text-dark); position: relative; }
.section-py    { padding-block: var(--section-py); }

/* ─── GOLD TYPOGRAPHY ACCENTS ─── */
.eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: var(--font-hero);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 600;
  line-height: 1.18;
  color: inherit;
  letter-spacing: 0.03em;
}
.section-subtitle {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.8;
  margin-top: 0.75rem;
}
.section-title--cream { color: var(--text-dark); }
.underline-accent {
  display: inline-block;
  width: 50px;
  height: 2px;
  background: var(--gold-grad);
  margin: 1rem 0 2rem;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1.05rem 2.4rem;
  border: 2px solid transparent;
  transition: var(--trans);
  white-space: nowrap;
  line-height: 1;
}
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.btn-amber {
  background: var(--gold-grad);
  border-color: var(--gold-light);
  color: #0B0907;
  box-shadow: 0 4px 18px rgba(212,175,55,0.35);
}
.btn-amber:hover {
  background: linear-gradient(135deg, #FFFFFF 0%, #F7E5A9 100%);
  border-color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(212,175,55,0.55);
}

.btn-outline-light {
  background: rgba(0,0,0,0.35);
  border-color: var(--gold);
  color: var(--gold-light);
  backdrop-filter: blur(4px);
}
.btn-outline-light:hover {
  background: var(--gold);
  color: #0B0907;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,175,55,0.4);
}

.btn-outline-dark {
  background: transparent;
  border: 2px solid var(--gold-dark);
  color: var(--gold-light);
  border-radius: 4px;
}
.btn-outline-dark:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #0B0907;
  transform: translateY(-2px);
}

/* ================================================================
   HEADER (DESKTOP & LAPTOP) — BIG BOLD LOGO
   ================================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 9000;
  background: linear-gradient(to bottom, rgba(11, 9, 7, 0.95) 0%, rgba(35, 30, 25, 0.70) 60%, rgba(65, 58, 50, 0.25) 85%, transparent 100%);
  transition: background var(--trans), box-shadow var(--trans);
}
.site-header.scrolled {
  background: rgba(11,9,7,0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 25px rgba(0,0,0,0.9);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 100%;
  max-width: 1460px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
  gap: 1.5rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: -10px;
}

/* LARGER BOLD LOGO STYLING */
.site-logo {
  height: clamp(105px, 13vw, 145px) !important;
  width: auto;
  object-fit: contain;
  filter: brightness(1.4) contrast(1.2) drop-shadow(0 4px 18px rgba(0,0,0,0.95));
  display: block;
  transform: scale(1.35) !important;
  transform-origin: left center;
  margin-top: -4px;
}
.logo-fallback { display: none; flex-direction: column; line-height: 1; }
.logo-fallback .name { font-family: var(--font-hero); font-size: 2.6rem; font-weight: 700; color: var(--gold-light); letter-spacing: 0.12em; }
.logo-fallback .sub { font-size: 0.62rem; letter-spacing: 0.32em; color: var(--gold); text-transform: uppercase; }

/* ─── DESKTOP NAV ─── */
.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 2.2rem);
}
.nav-link {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247,243,235,0.9);
  padding: 4px 4px;
  position: relative;
  transition: color 0.25s;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}
.nav-link:hover { color: var(--gold-light); }
.nav-link.active { color: var(--gold-light); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}

.header-right { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }

.header-right .btn-amber {
  border: none !important;
  border-radius: 100px !important;
  background: linear-gradient(135deg, #F7E5A9 0%, #D4AF37 50%, #997A15 100%) !important;
  padding: 0.75rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 2px 2px rgba(255, 255, 255, 0.8),
    inset 0 -2px 4px rgba(0, 0, 0, 0.35),
    0 6px 20px rgba(212, 175, 55, 0.45) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.header-right .btn-amber::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 48%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 100px 100px 50% 50% / 100px 100px 20% 20%;
  pointer-events: none;
}
.header-right .btn-amber:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.95),
    inset 0 -2px 4px rgba(0, 0, 0, 0.35),
    0 10px 28px rgba(212, 175, 55, 0.65) !important;
}

/* Hide mobile floating bottom bar on desktop */
.mobile-bottom-cta { display: none; }

.hamburger { display: none; flex-direction: column; justify-content: center; gap: 6px; width: 44px; height: 44px; padding: 6px; }
.ham-bar { display: block; height: 2px; width: 100%; background: var(--gold-light); border-radius: 1px; transition: transform 0.35s, opacity 0.25s; }
.hamburger.open .ham-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open .ham-bar:nth-child(2) { opacity: 0; }
.hamburger.open .ham-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11,9,7,0.98);
  z-index: 8900;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }
.mobile-close { position: absolute; top: 24px; right: 28px; font-size: 2.2rem; color: var(--gold); }
.mobile-nav-links { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-bottom: 2rem; }
.mobile-nav-links a { font-family: var(--font-hero); font-size: clamp(1.5rem, 6vw, 2.2rem); color: var(--text-warm); transition: color 0.22s; }
.mobile-nav-links a:hover { color: var(--gold); }

/* ================================================================
   HERO SECTION (DESKTOP)
   ================================================================ */
.page-hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  max-height: 920px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero--inner {
  height: 52vh;
  min-height: 380px;
  align-items: flex-end;
}

.hero-bg { position: absolute; inset: 0; background: var(--dark-2); }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(11,9,7,0.85) 0%, rgba(11,9,7,0.45) 55%, rgba(11,9,7,0.1) 100%),
    linear-gradient(to top, rgba(11,9,7,0.85) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-h) + 0.2rem);
  padding-bottom: 2.5rem;
  padding-inline: clamp(1.5rem, 5vw, 5rem);
  max-width: 760px;
}
.page-hero--inner .hero-content { padding-top: calc(var(--header-h) + 0.5rem); padding-bottom: 3rem; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.15);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 1.2rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.hero-heading {
  font-family: var(--font-hero);
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero-heading .line1 { color: var(--white); display: block; }
.hero-heading .line2 {
  color: var(--gold-light);
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}
.hero-heading--single {
  color: var(--gold-light);
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(247,243,235,0.75); margin-bottom: 1rem; }
.hero-rule { width: 48px; height: 2px; background: var(--gold-grad); margin-bottom: 1.6rem; }
.hero-btns { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-top: 0.5rem; }

/* ================================================================
   PORTFOLIO COVER ENTER SPLASH SCREEN GATE
   ================================================================ */
.portfolio-gate {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #0B0907;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.8s ease, transform 0.8s ease;
}

.portfolio-gate.entered {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.05);
}

.gate-slides {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.gate-slide-item {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.gate-slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) contrast(1.15);
  animation: slowZoom 20s infinite alternate ease-in-out;
}

@keyframes slowZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}

.gate-slide-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,9,7,0.92) 0%, rgba(11,9,7,0.4) 50%, rgba(11,9,7,0.85) 100%);
}

.gate-card-box {
  position: relative;
  z-index: 10;
  background: rgba(18, 14, 10, 0.88);
  border: 2px solid var(--gold);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 6vw, 4.5rem);
  text-align: center;
  max-width: 600px;
  width: 92%;
  box-shadow: 0 30px 70px rgba(0,0,0,0.95), 0 0 40px rgba(212,175,55,0.35);
  animation: gateCardPop 0.8s ease-out forwards;
}

@keyframes gateCardPop {
  0% { opacity: 0; transform: translateY(20px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.gate-logo {
  height: clamp(80px, 12vw, 115px);
  width: auto;
  margin-inline: auto;
  margin-bottom: 1.2rem;
  filter: brightness(1.4) drop-shadow(0 4px 15px rgba(0,0,0,0.9));
}

.gate-title {
  font-family: var(--font-hero);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.4rem;
}

.gate-sub {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 2.2rem;
  font-weight: 600;
}

.btn-enter-portfolio {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--gold-grad);
  color: #0B0907;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 1.25rem 3rem;
  border-radius: 100px;
  border: 2px solid var(--gold-light);
  box-shadow: 0 10px 30px rgba(212,175,55,0.5), inset 0 2px 4px rgba(255,255,255,0.8);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-enter-portfolio:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 15px 40px rgba(212,175,55,0.7), inset 0 2px 4px rgba(255,255,255,0.95);
}

/* ================================================================
   PURE REAL 3D GLOSSY BRAND SOCIAL BUTTONS
   ================================================================ */
.hero-social {
  position: absolute;
  right: 2rem;
  top: 52%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.social-btn-3d {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, filter 0.3s;
}

.social-btn-3d::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 46%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 15px 15px 50% 50% / 15px 15px 25% 25%;
  pointer-events: none;
  z-index: 2;
}

.social-btn-3d--insta {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  box-shadow: inset 0 2px 2px rgba(255,255,255,0.7), inset 0 -3px 5px rgba(0,0,0,0.4), 0 10px 25px rgba(0,0,0,0.65), 0 0 16px rgba(214, 36, 159, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.social-btn-3d--insta:hover {
  transform: scale(1.16) translateX(-4px);
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.9), inset 0 -3px 5px rgba(0,0,0,0.4), 0 15px 32px rgba(0,0,0,0.8), 0 0 28px rgba(214, 36, 159, 0.75);
}

.social-btn-3d--fb {
  background: linear-gradient(145deg, #1877F2 0%, #0A53B4 100%);
  box-shadow: inset 0 2px 2px rgba(255,255,255,0.7), inset 0 -3px 5px rgba(0,0,0,0.4), 0 10px 25px rgba(0,0,0,0.65), 0 0 16px rgba(24, 119, 242, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.social-btn-3d--fb:hover {
  transform: scale(1.16) translateX(-4px);
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.9), inset 0 -3px 5px rgba(0,0,0,0.4), 0 15px 32px rgba(0,0,0,0.8), 0 0 28px rgba(24, 119, 242, 0.75);
}

.social-btn-3d--wa {
  background: linear-gradient(145deg, #25D366 0%, #0E7542 100%);
  box-shadow: inset 0 2px 2px rgba(255,255,255,0.7), inset 0 -3px 5px rgba(0,0,0,0.4), 0 10px 25px rgba(0,0,0,0.65), 0 0 16px rgba(37, 211, 102, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.social-btn-3d--wa:hover {
  transform: scale(1.16) translateX(-4px);
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.9), inset 0 -3px 5px rgba(0,0,0,0.4), 0 15px 32px rgba(0,0,0,0.8), 0 0 28px rgba(37, 211, 102, 0.75);
}

.social-btn-3d svg { width: 27px; height: 27px; fill: #FFFFFF; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.45)); z-index: 3; }

/* Scroll indicator */
.scroll-ind { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.scroll-ind .mouse { width: 20px; height: 32px; border: 2px solid var(--gold); border-radius: 10px; display: flex; justify-content: center; padding-top: 5px; }
.scroll-ind .wheel { width: 4px; height: 7px; background: var(--gold-light); border-radius: 2px; animation: scrollWheel 2s ease-in-out infinite; }
@keyframes scrollWheel { 0% { opacity: 1; transform: none; } 50% { opacity: 0; transform: translateY(6px); } 100% { opacity: 1; transform: none; } }
.scroll-ind span { font-size: 0.55rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold-light); }

/* ================================================================
   WHAT I CAPTURE — 3 CARDS
   ================================================================ */
.capture-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.capture-card { position: relative; overflow: hidden; aspect-ratio: 3/4; cursor: pointer; background: var(--dark-2); border-radius: 8px; border: 1px solid rgba(212,175,55,0.25); }
.capture-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.capture-card:hover img { transform: scale(1.08); }
.capture-card .c-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,9,7,0.92) 0%, rgba(11,9,7,0.3) 55%, transparent 100%); transition: background 0.4s ease; }
.capture-card:hover .c-overlay { background: linear-gradient(to top, rgba(11,9,7,0.96) 0%, rgba(11,9,7,0.5) 60%, rgba(11,9,7,0.2) 100%); }
.capture-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 2.2rem; }
.capture-info h3 { font-family: var(--font-hero); font-size: clamp(1.6rem, 2.3vw, 2.5rem); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--white); margin-bottom: 0.3rem; }
.capture-info .tagline { font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1rem; }
.capture-info .explore { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 700; transition: color 0.2s; }

/* ================================================================
   VIBRANT MULTI-COLOR LUXURY STATS CARDS
   ================================================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  padding: 2.5rem clamp(1.25rem, 4vw, 3rem);
  background: var(--dark);
}

.stat-cell-colorful {
  padding: 2.8rem 2rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.stat-cell-colorful:hover { transform: translateY(-6px); }

.stat-cell-gold {
  background: linear-gradient(135deg, rgba(212,175,55,0.18) 0%, rgba(20,15,10,0.95) 100%);
  border: 1px solid rgba(212,175,55,0.4);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(212, 175, 55, 0.2);
}
.stat-cell-gold .stat-num { color: var(--gold-light); text-shadow: 0 0 12px rgba(212, 175, 55, 0.5); }

.stat-cell-blue {
  background: linear-gradient(135deg, rgba(59,130,246,0.18) 0%, rgba(15,22,35,0.95) 100%);
  border: 1px solid rgba(59,130,246,0.4);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(59, 130, 246, 0.2);
}
.stat-cell-blue .stat-num { color: #60A5FA; text-shadow: 0 0 12px rgba(96, 165, 250, 0.5); }

.stat-cell-green {
  background: linear-gradient(135deg, rgba(16,185,129,0.18) 0%, rgba(12,25,20,0.95) 100%);
  border: 1px solid rgba(16,185,129,0.4);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(16, 185, 129, 0.2);
}
.stat-cell-green .stat-num { color: #34D399; text-shadow: 0 0 12px rgba(52, 211, 153, 0.5); }

.stat-cell-rose {
  background: linear-gradient(135deg, rgba(244,63,94,0.18) 0%, rgba(25,12,18,0.95) 100%);
  border: 1px solid rgba(244,63,94,0.4);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(244, 63, 94, 0.2);
}
.stat-cell-rose .stat-num { color: #FB7185; text-shadow: 0 0 12px rgba(251, 113, 133, 0.5); }

.stat-num { font-family: var(--font-hero); font-size: clamp(2.4rem, 4.5vw, 3.6rem); font-weight: 700; line-height: 1; }
.stat-label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-warm); font-weight: 600; }

/* ================================================================
   ULTRA-LUXURY PROFESSIONAL PACKAGE CARDS (CLEAN CUSTOM QUOTE)
   ================================================================ */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 2.5rem;
  align-items: stretch;
}

.pkg-card {
  background: linear-gradient(145deg, #1A140E 0%, #0F0C09 100%);
  border: 1.5px solid rgba(212,175,55,0.35);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

.pkg-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(212,175,55,0.25);
}

.pkg-card.featured {
  border: 2px solid var(--gold);
  background: linear-gradient(145deg, #241B12 0%, #140E09 100%);
  box-shadow: 0 20px 50px rgba(0,0,0,0.7), 0 0 25px rgba(212,175,55,0.25);
}

.pkg-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-grad);
  color: #0B0907;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 100px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.6);
  white-space: nowrap;
}

.pkg-title {
  font-family: var(--font-hero);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.pkg-sub {
  font-size: 0.78rem;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 1.4rem;
}

.pkg-price-box {
  background: rgba(212,175,55,0.08);
  border: 1px dashed rgba(212,175,55,0.35);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  margin-bottom: 1.8rem;
}

.pkg-price-box .from {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 2px;
}

.pkg-price-box .amount {
  font-family: var(--font-hero);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold-light);
  text-shadow: 0 2px 10px rgba(212,175,55,0.3);
}

.pkg-features {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pkg-features li {
  font-size: 0.88rem;
  color: var(--text-warm) !important;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.5;
}

.pkg-features li .check-icon {
  color: var(--gold-light);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ================================================================
   PORTFOLIO FILTER BAR
   ================================================================ */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  background: rgba(22,18,14,0.8);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--text-muted);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.8rem 1.8rem;
  border-radius: 100px;
  transition: var(--trans);

}

.filter-btn:hover, .filter-btn.active {
  background: var(--gold-grad);
  border-color: var(--gold-light);
  color: #0B0907;
  box-shadow: 0 6px 20px rgba(212,175,55,0.4);
}

.port-item.hidden {
  display: none !important;
}

/* ================================================================
   PERFECTLY ALIGNED UNIFORM GALLERY GRIDS
   ================================================================ */
.gallery-grid,
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.gallery-item,
.port-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: 8px;
  cursor: pointer;
  background: var(--dark-2);
  border: 1px solid rgba(212,175,55,0.3);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.gallery-item:hover,
.port-item:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 15px 35px rgba(212,175,55,0.3);
}

.gallery-item img,
.port-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.65s ease;
}

.gallery-item:hover img,
.port-item:hover img { transform: scale(1.08); }

.gallery-item .g-overlay,
.port-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,9,7,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-item:hover .g-overlay,
.port-item:hover .port-overlay { opacity: 1; }

.port-cat {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(11,9,7,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lb-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lb-img { max-width: 100%; max-height: 85vh; border-radius: 6px; box-shadow: 0 20px 50px rgba(0,0,0,0.8); }
.lb-close { position: absolute; top: -40px; right: 0; font-size: 2.4rem; color: var(--gold); }

/* ================================================================
   HIGHLY DECORATIVE CREAM ABOUT PREVIEW SECTION
   ================================================================ */
.about-grid-decorative {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  position: relative;
}

.about-photo-wrapper {
  position: relative;
  padding: 16px;
  background: #0D0B09;
  border: 3px solid var(--gold);
  border-radius: 6px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.65), 0 0 25px rgba(212, 175, 55, 0.25);
}

.corner-accent-tl { position: absolute; top: 8px; left: 8px; width: 18px; height: 18px; border-top: 2px solid var(--gold-light); border-left: 2px solid var(--gold-light); pointer-events: none; z-index: 3; }
.corner-accent-br { position: absolute; bottom: 8px; right: 8px; width: 18px; height: 18px; border-bottom: 2px solid var(--gold-light); border-right: 2px solid var(--gold-light); pointer-events: none; z-index: 3; }
.about-photo { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center top; border-radius: 2px; display: block; }
.photo-frame-tag { position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%); background: var(--gold-grad); color: #0B0907; font-size: 0.64rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; padding: 7px 22px; border-radius: 100px; box-shadow: 0 4px 16px rgba(0,0,0,0.6); display: flex; align-items: center; gap: 8px; white-space: nowrap; z-index: 5; }

.about-heading { font-family: var(--font-hero); font-size: clamp(1.6rem, 2.8vw, 2.5rem); font-weight: 600; line-height: 1.25; color: var(--text-dark); margin: 0.5rem 0 1.2rem; }

.about-quote-box {
  border-left: 3px solid var(--gold-dark);
  padding-left: 1.5rem;
  margin-block: 1.2rem;
  background: rgba(212,175,55,0.06);
  padding: 1.2rem 1.5rem;
  border-radius: 0 8px 8px 0;
}
.about-para { font-size: 0.94rem; font-weight: 400; line-height: 1.85; color: var(--text-mid); }

.about-sig { font-family: var(--script); font-size: 3.2rem; color: var(--text-dark); line-height: 1; margin-top: 1rem; }
.about-founder { font-size: 0.6rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--text-mid); margin-top: 4px; }

.about-stats-col-dec { display: flex; flex-direction: column; gap: 1.2rem; }
.about-stat-card {
  background: #FFFFFF;
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 8px;
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.about-stat-card:hover { transform: translateX(-4px); border-color: var(--gold-dark); }

.stat-card-icon { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #FFF; }
.stat-card-icon--gold { background: linear-gradient(135deg, #D4AF37, #997A15); }
.stat-card-icon--blue { background: linear-gradient(135deg, #3B82F6, #1E40AF); }
.stat-card-icon--rose { background: linear-gradient(135deg, #F43F5E, #9F1239); }

.about-stat-card .label { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-dark); font-weight: 700; margin-bottom: 2px; }
.about-stat-card .val { font-size: 0.88rem; font-weight: 700; color: var(--text-dark); line-height: 1.4; }

/* INSTAGRAM STRIP */
.insta-top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 2rem; margin-bottom: 2.5rem; }
.insta-left { display: flex; align-items: center; gap: 1.2rem; }
.insta-label-sm { font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem; font-weight: 700; }
.insta-heading { font-family: var(--font-hero); font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 600; color: var(--white); line-height: 1; }
.insta-handles { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.insta-handle-grp { display: flex; flex-direction: column; gap: 3px; }
.insta-handle { font-size: 0.85rem; font-weight: 600; color: var(--gold-light); transition: color 0.2s; }
.insta-handle:hover { color: var(--white); }
.insta-handle-tag { font-size: 0.64rem; letter-spacing: 0.06em; color: var(--text-muted); }
.insta-vdiv { width: 1px; height: 40px; background: rgba(212,175,55,0.3); flex-shrink: 0; }
.insta-photos { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.insta-item { aspect-ratio: 1; overflow: hidden; background: var(--dark-2); border-radius: 6px; position: relative; display: block; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.insta-item:hover img { transform: scale(1.1); }

/* REVIEWS SECTION */
.reviews-section-vibrant { background: #14100C; border-block: 1px solid rgba(212,175,55,0.25); position: relative; overflow: hidden; }
.reviews-section-vibrant::before { content: ''; position: absolute; top: -120px; right: -120px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%); pointer-events: none; }
.testi-layout { display: grid; grid-template-columns: 280px 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: stretch; }
.testi-head-col { display: flex; flex-direction: column; justify-content: space-between; }
.testi-head-col .section-title { color: var(--white); font-family: var(--font-hero); font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.15; margin-top: 0.8rem; }
.testi-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; align-items: stretch; }
.testi-card-glass { background: #1C1610; border: 1px solid rgba(212, 175, 55, 0.25); border-radius: 8px; padding: 2.2rem 1.8rem; transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease; display: flex; flex-direction: column; justify-content: space-between; }
.testi-card-glass.active-card, .testi-card-glass:hover { border-color: var(--gold); box-shadow: 0 0 25px rgba(212, 175, 55, 0.3); transform: translateY(-4px); }
.testi-stars-gold { color: var(--gold-light); font-size: 1rem; letter-spacing: 5px; margin-bottom: 1.2rem; }
.testi-text-white { font-size: 0.88rem; font-weight: 300; line-height: 1.8; color: rgba(247, 243, 235, 0.9); margin-bottom: 2rem; }
.testi-name-gold { font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-light); font-weight: 700; }
.testi-role-muted { font-size: 0.72rem; color: rgba(247,243,235,0.55); margin-top: 4px; }

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, #18120B 0%, #291F14 50%, #0F0B07 100%);
  border-block: 1px solid rgba(212,175,55,0.3);
  padding-block: var(--section-py);
  position: relative;
  overflow: hidden;
}
.cta-inner { display: grid; grid-template-columns: 1fr 1fr auto; gap: 2rem; align-items: center; }
.cta-heading { font-family: var(--font-hero); font-size: clamp(2rem, 3.8vw, 3.2rem); font-weight: 600; color: var(--white); line-height: 1.2; }
.cta-text { font-size: 0.92rem; color: var(--text-muted); max-width: 420px; }
.cta-btns { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }

.cta-travel-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.12);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

/* CONTACT SUITE PAGE STYLING */
.contact-split-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}

.contact-card-glass {
  background: #18130E;
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-card-glass:hover {
  transform: translateX(6px);
  border-color: var(--gold);
  box-shadow: 0 8px 25px rgba(212,175,55,0.25);
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.contact-icon--wa { background: linear-gradient(135deg, #25D366 0%, #0E7542 100%); }
.contact-icon--phone { background: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%); }
.contact-icon--email { background: linear-gradient(135deg, #EF4444 0%, #991B1B 100%); }
.contact-icon--location { background: linear-gradient(135deg, #8B5CF6 0%, #5B21B6 100%); }

.contact-form-glass {
  background: linear-gradient(145deg, #1A140E 0%, #0F0C09 100%);
  border: 2px solid var(--gold);
  border-radius: 12px;
  padding: 3rem 2.5rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 30px rgba(212,175,55,0.2);
}

.form-group-custom { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.form-label-custom { font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-light); font-weight: 700; }
.form-input-custom, .form-select-custom, .form-textarea-custom {
  width: 100%;
  background: rgba(22,18,14,0.9);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--text-warm);
  font-family: var(--sans);
  font-size: 0.92rem;
  padding: 0.95rem 1.2rem;
  border-radius: 4px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-input-custom:focus, .form-select-custom:focus, .form-textarea-custom:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(212,175,55,0.35);
}

/* FOOTER */
.site-footer { background: var(--dark); border-top: 1px solid rgba(212,175,55,0.25); }
.footer-top { padding-block: 4.5rem; display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.5fr; gap: 3rem; align-items: start; }
.footer-brand-col { display: flex; flex-direction: column; align-items: flex-start; text-align: left; margin-left: 0; padding-left: 0; }
.footer-logo { height: clamp(95px, 12vw, 140px); width: auto; margin-top: -10px; margin-bottom: 1rem; margin-left: -22px; padding: 0; object-fit: contain; filter: brightness(1.25) contrast(1.15) drop-shadow(0 4px 12px rgba(0,0,0,0.95)); display: block; }
.footer-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; max-width: 320px; text-align: left; }
.footer-col h4 { font-size: 0.65rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.4rem; font-weight: 700; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul li a { font-size: 0.85rem; color: var(--text-muted); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-addr p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }
.footer-addr a { color: var(--gold-light); font-weight: 600; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-block: 1.4rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.68rem; letter-spacing: 0.08em; color: rgba(255,255,255,0.35); }
.footer-links { display: flex; gap: 1.5rem; align-items: center; }
.footer-links a { font-size: 0.68rem; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }

/* ================================================================
   PERFECT MOBILE & TABLET RESPONSIVE ENGINE (max-width: 768px)
   ================================================================ */
@media (max-width: 1024px) {
  .about-grid-decorative { grid-template-columns: 1fr 1.4fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .packages-grid { grid-template-columns: 1fr 1fr; }
  .testi-layout { grid-template-columns: 1fr; }
  .testi-grid-3 { grid-template-columns: 1fr; gap: 1.2rem; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .gallery-grid, .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .contact-split-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root {
    --header-h: 76px;
    --section-py: 45px;
  }

  /* 1. HEADER & BOLDER LOGO FIT ON PHONE */
  .site-header {
    background: rgba(11,9,7,0.98) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    height: var(--header-h) !important;
  }

  .header-inner {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding-inline: 1rem !important;
    height: 100% !important;
    width: 100% !important;
  }

  .logo-wrap {
    margin-left: 0 !important;
  }

  .site-logo {
    height: 60px !important;
    max-width: 220px !important;
    transform: scale(1.1) !important;
    margin-top: 0 !important;
    filter: brightness(1.35) contrast(1.2) drop-shadow(0 2px 8px rgba(0,0,0,0.85)) !important;
  }

  .main-nav {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
    margin-left: auto !important;
  }

  .header-right .btn-amber {
    display: none !important;
  }

  /* 2. FIXED FLOATING BOTTOM BOOK SHOOT BUTTON ON PHONE */
  .mobile-bottom-cta {
    display: flex !important;
    position: fixed !important;
    bottom: 14px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 8800 !important;
    width: calc(100% - 28px) !important;
    max-width: 360px !important;
  }

  .mobile-bottom-cta .btn-amber {
    width: 100% !important;
    justify-content: center !important;
    border-radius: 100px !important;
    padding: 0.85rem 1.4rem !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.18em !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.9), 0 0 20px rgba(212,175,55,0.55) !important;
  }

  /* 3. HERO COUPLE IMAGE CENTERING & OVERLAYS */
  .page-hero {
    height: auto !important;
    min-height: 100vh !important;
    max-height: none !important;
    padding-top: calc(var(--header-h) + 1rem) !important;
    padding-bottom: 90px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .page-hero--inner {
    min-height: 340px !important;
    padding-bottom: 2.5rem !important;
  }

  .hero-bg img {
    object-fit: cover !important;
    object-position: 78% center !important;
  }

  .hero-overlay {
    background: linear-gradient(to top, rgba(11,9,7,0.95) 0%, rgba(11,9,7,0.65) 50%, rgba(11,9,7,0.85) 100%) !important;
  }

  .hero-content {
    padding-inline: 1.2rem !important;
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
    text-align: center !important;
    margin-inline: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-badge {
    margin-inline: auto !important;
    font-size: 0.58rem !important;
    padding: 5px 14px !important;
  }

  .hero-heading {
    font-size: clamp(1.7rem, 6.8vw, 2.4rem) !important;
    text-align: center !important;
    line-height: 1.2 !important;
    margin-bottom: 0.8rem !important;
  }

  .hero-sub {
    text-align: center !important;
    font-size: 0.6rem !important;
    letter-spacing: 0.2em !important;
  }

  .hero-rule {
    margin-inline: auto !important;
    margin-bottom: 1.2rem !important;
  }

  .hero-btns {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 320px !important;
    margin-inline: auto !important;
    margin-bottom: 1rem !important;
  }

  .hero-btns .btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 0.9rem 1.4rem !important;
  }

  .hero-social {
    display: none !important;
  }

  .scroll-ind {
    display: none !important;
  }

  /* 4. SECTIONS & GRID ALIGNMENTS ON MOBILE */
  .capture-grid {
    grid-template-columns: 1fr !important;
    gap: 1.4rem !important;
  }

  .capture-card {
    aspect-ratio: 4/5 !important;
  }

  .capture-info {
    padding: 1.4rem !important;
  }

  .capture-info h3 {
    font-size: 1.7rem !important;
  }

  .gallery-grid,
  .portfolio-grid {
    grid-template-columns: 1fr !important;
    gap: 1.2rem !important;
  }

  .gallery-item,
  .port-item {
    aspect-ratio: 4/3 !important;
  }

  .stats-row {
    grid-template-columns: 1fr !important;
    gap: 0.9rem !important;
    padding: 1.5rem 1rem !important;
  }

  .stat-cell-colorful {
    padding: 1.6rem 1rem !important;
  }

  .about-grid-decorative {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    text-align: center !important;
  }

  .about-photo-wrapper {
    max-width: 300px !important;
    margin-inline: auto !important;
  }

  .about-heading {
    text-align: center !important;
  }

  .underline-accent {
    margin-inline: auto !important;
  }

  .about-quote-box {
    text-align: left !important;
    margin-inline: auto !important;
    padding: 1rem 1.2rem !important;
  }

  .about-stats-col-dec {
    gap: 0.9rem !important;
  }

  .about-stat-card {
    text-align: left !important;
    padding: 1rem 1.2rem !important;
  }

  .packages-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .pkg-card {
    padding: 1.8rem 1.4rem !important;
  }

  .insta-top {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 1rem !important;
  }

  .insta-left {
    flex-direction: column !important;
  }

  .insta-heading {
    font-size: 2rem !important;
  }

  .insta-handles {
    justify-content: center !important;
  }

  .insta-photos {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 6px !important;
  }

  .testi-layout {
    grid-template-columns: 1fr !important;
    gap: 1.8rem !important;
  }

  .testi-grid-3 {
    grid-template-columns: 1fr !important;
    gap: 1.2rem !important;
  }

  .testi-card-glass {
    padding: 1.6rem 1.2rem !important;
  }

  .contact-split-grid {
    grid-template-columns: 1fr !important;
    gap: 1.8rem !important;
  }

  .contact-form-glass {
    padding: 1.8rem 1.2rem !important;
  }

  .google-map-card {
    margin-top: 1.4rem !important;
  }

  .footer-top {
    grid-template-columns: 1fr !important;
    gap: 1.8rem !important;
    padding-block: 2.5rem !important;
  }

  .footer-brand-col {
    align-items: center !important;
    text-align: center !important;
  }

  .footer-desc {
    text-align: center !important;
  }

  .footer-logo {
    margin-inline: auto !important;
  }

  .footer-col {
    text-align: center !important;
  }

  .footer-addr {
    text-align: center !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    text-align: center !important;
    gap: 0.8rem !important;
  }
}

@media (max-width: 480px) {
  .insta-photos { grid-template-columns: 1fr !important; }
}
