:root {
  --bg: #080808;
  --bg2: #0f0f0f;
  --text: #ffffff;
  --gold: #d4af37;
  --gold2: #f0cc5a;
  --gold3: #9a7b1e;
  --font: "Outfit", sans-serif;
  --serif: "Playfair Display", serif;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --hdr: 60px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  cursor: none;
}

/* ============================================================
   SCROLL CONTAINER — Vertical 4-page snap
   ============================================================ */
.swipe-container {
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.swipe-container::-webkit-scrollbar {
  display: none;
}

/* ============================================================
   SLIDES — each page = full viewport
   ============================================================ */
.slide {
  height: 100vh;
  scroll-snap-align: start;
  overflow: hidden;
  position: relative;
}

/* Page 1: Hero video — no top padding, video fills everything */
#hero-slide {
  background: #000;
}

/* Dark cinematic overlay so video text doesn't clash with our title */
#hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  /* Very slight bottom gradient just to ground the text */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 25%);
}

/* =========================
   HERO SECTION NEW
   ========================= */
#hero-slide {
  position: relative;
  background: #000;
  min-height: 100vh;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  /* Maximum brightness and pop */
  filter: brightness(1.2) saturate(1.15) contrast(1.05);
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Barely visible gradient directly behind text area only */
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0) 30%);
  z-index: 2;
}

.hero-promo {
  position: absolute;
  top: 90px;
  right: -20px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 30px 8px 24px;
  border-radius: 30px 0 0 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-right: none;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: slideInRight 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0;
  transform: translateX(20px);
}

.hero-promo span {
  font-size: 0.75rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 1px;
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-content {
  position: absolute;
  left: 4%;
  bottom: 6%;
  z-index: 5;
  max-width: 420px;
  display: flex;
  flex-direction: column;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  opacity: 1;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  line-height: 1.1;
  font-weight: 700;
  color: #fff;
  /* Strong shadow to survive the bright background */
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6), 0 1px 4px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.5px;
}

.hero-subtitle {
  margin-top: 10px;
  max-width: 360px;
  font-size: 0.8rem;
  line-height: 1.4;
  color: #fff;
  letter-spacing: 0.2px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, border-color 0.25s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
}

.hero-btn-primary {
  color: #070707;
  background: linear-gradient(135deg, #b8941e, #d4af37, #f0cc5a, #d4af37);
  background-size: 200%;
  box-shadow: 0 8px 26px rgba(212, 175, 55, 0.28);
}

.hero-btn-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
  border-color: rgba(212, 175, 55, 0.5);
  color: var(--gold);
}

.hero-scroll-hint {
  position: absolute;
  right: 20px;
  bottom: 92px;
  z-index: 6;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 0.56rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.18);
  animation: scrollHint 2s ease-in-out infinite;
}

/* Desktop */
@media (min-width: 768px) {
  .hero-promo {
    top: auto;
    bottom: 40px;
    right: 40px;
    border-radius: 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }

  .hero-content {
    left: 40px;
    bottom: 40px;
    max-width: 450px !important;
  }

  .hero-title {
    font-size: clamp(2.5rem, 3vw, 3.5rem);
  }

  .hero-subtitle {
    font-size: 1rem;
    max-width: 620px;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .hero-btn {
    min-height: 50px;
    padding: 0 22px;
    font-size: 0.78rem;
  }

  .hero-scroll-hint {
    right: 56px;
    bottom: 34px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .hero-promo {
    top: 75px;
    padding: 6px 16px 6px 12px;
  }

  .hero-promo span {
    font-size: 0.6rem;
  }

  .hero-content {
    left: 20px;
    right: 20px;
    /* Don't restrict right margin too much so it can breathe */
    bottom: 40px;
    /* Flush bottom */
    max-width: unset !important;
  }

  .hero-kicker {
    font-size: 0.5rem;
    letter-spacing: 3px;
    margin-bottom: 6px;
  }

  .hero-title {
    font-size: 1.8rem;
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 0.75rem;
    line-height: 1.4;
    max-width: 90%;
    margin-top: 8px;
  }

  .hero-actions {
    margin-top: 16px;
  }

  .hero-btn {
    width: 100%;
    max-width: 220px;
    min-height: 44px;
    font-size: 0.65rem;
    letter-spacing: 1px;
  }
}

/* Pages 2-4: leave room for fixed header, allow inner scroll */
#page-portfolio,
#page-featured,
#page-products {
  overflow-y: auto;
  padding-top: var(--hdr);
}

/* Pulsing animation for the mute/sound badge */
@keyframes soundPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.25);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
  }
}

/* Bounce hint for Scroll ↓ pill */
@keyframes scrollHint {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.35;
  }

  50% {
    transform: translateY(6px);
    opacity: 0.7;
  }
}

/* Slide 2: Existing Website — flows naturally in the page */
#view-main {
  overflow: visible;
  padding-top: var(--hdr);
}

/* ======= CUSTOM GOLD CURSOR (desktop) ======= */
.cursor-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition:
    width 0.2s,
    height 0.2s,
    background 0.2s;
  mix-blend-mode: difference;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.6);
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition:
    transform 0.12s var(--ease),
    width 0.3s,
    height 0.3s,
    border-color 0.3s;
}

.cursor-ring.hovering {
  width: 52px;
  height: 52px;
  border-color: var(--gold);
}

@media (hover: none) {

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  body {
    cursor: auto;
  }
}

/* ======= TOP PROGRESS BAR ======= */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold3), var(--gold), var(--gold2));
  z-index: 10000;
  width: 0%;
  transition: width 0.4s var(--ease);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.7);
}

/* ============================================
   NETFLIX INTRO
   ============================================ */
#netflix-intro {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at center, #0d0d0d 0%, #000 100%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 1.2s ease,
    visibility 1.2s ease;
}

#netflix-intro.nf-fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.nf-intro-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.nf-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.12);
  animation: nfRingPulse 2.6s ease-out infinite;
}

.nf-ring-1 {
  width: 200px;
  height: 200px;
  animation-delay: 0s;
}

.nf-ring-2 {
  width: 320px;
  height: 320px;
  animation-delay: 0.5s;
}

.nf-ring-3 {
  width: 440px;
  height: 440px;
  animation-delay: 1s;
}

@keyframes nfRingPulse {
  0% {
    transform: scale(0.85);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.nf-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: nfReveal 1.4s var(--ease) 0.4s both;
}

@keyframes nfReveal {
  from {
    opacity: 0;
    transform: scale(0.65);
    filter: blur(16px);
  }

  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

.nf-logo-top {
  font-family: var(--serif);
  font-size: clamp(2rem, 10vw, 4.2rem);
  font-weight: 700;
  letter-spacing: 8px;
  background: linear-gradient(135deg,
      #9a7b1e 0%,
      #d4af37 40%,
      #f0cc5a 65%,
      #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation:
    shimmerText 3s ease infinite,
    nfGlow 2s ease-in-out infinite alternate;
  background-size: 200%;
}

@keyframes shimmerText {
  0% {
    background-position: 0%;
  }

  100% {
    background-position: 200%;
  }
}

@keyframes nfGlow {
  from {
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.4));
  }

  to {
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.8)) drop-shadow(0 0 60px rgba(212, 175, 55, 0.3));
  }
}

.nf-logo-bottom {
  font-family: var(--font);
  font-size: clamp(0.7rem, 3vw, 1rem);
  font-weight: 300;
  letter-spacing: 12px;
  color: rgba(212, 175, 55, 0.7);
  text-transform: uppercase;
}

.nf-tagline {
  margin-top: 28px;
  font-size: 0.55rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  animation: nfTagFade 1s ease 2s both;
}

@keyframes nfTagFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   HEADER — Glassmorphism
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--hdr);
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8, 8, 8, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  transition:
    background 0.4s,
    border-color 0.4s;
}

.site-header.scrolled {
  background: rgba(8, 8, 8, 0.92);
  border-color: rgba(212, 175, 55, 0.18);
}

/* Gold line at very top of header */
.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.header-logo,
.drawer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
}

.logo-main {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 5vw, 1.8rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 4px;
  white-space: nowrap;
  background: linear-gradient(90deg, #d4af37, #ffe58f, #f0cc5a, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200%;
  animation: shimmerText 3s ease infinite;
  filter: drop-shadow(0 2px 10px rgba(212, 175, 55, 0.45));
}

.logo-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 3px 0 2px;
  opacity: 0.8;
}

.logo-sub {
  font-family: var(--font);
  font-size: 0.4rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--text);
  text-transform: uppercase;
  text-align: center;
  opacity: 0.9;
}

.header-cta {
  padding: 8px 16px;
  background: linear-gradient(135deg, #b8941e, #d4af37, #f0cc5a, #d4af37);
  background-size: 200%;
  color: #060606;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.72rem;
  border-radius: 4px;
  letter-spacing: 0.5px;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s ease,
    background-position 0.4s ease;
  white-space: nowrap;
  box-shadow: 0 2px 16px rgba(212, 175, 55, 0.25);
  animation: shimmerText 3s ease infinite;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.45);
}

/* ============================================
   HERO PROMO MARQUEE (Inside Hero, Full Width)
   ============================================ */
.hero-promo-marquee {
  position: absolute;
  top: var(--hdr);
  /* Flush against the bottom of the sticky header */
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  /* Optional elegant line separating it */
  padding: 8px 0;
}

.hero-marquee-text {
  display: inline-flex;
  white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
  font-family: var(--font);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

/* Ticker contents wrapper so we can loop it smoothly */
.ticker-content {
  display: inline-flex;
  align-items: center;
  padding-right: 20px;
}

.ticker-diamond {
  display: inline-block;
  margin: 0 20px;
  font-size: 0.55rem;
  color: var(--gold3);
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(-50%);
  }

  /* Scrolls precisely half its duplicated length */
}

/* ---- Header right group ---- */
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 480px) {
  .hero-promo-marquee {
    /* Full width, just ensure it sits correctly under mobile header */
    top: var(--hdr);
  }
}

/* ---- Desktop nav links ---- */
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.hn-link {
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 4px;
  transition:
    color 0.2s,
    background 0.2s;
  white-space: nowrap;
}

.hn-link:hover {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.07);
}

.hn-link.active {
  color: var(--gold);
}

/* Hide center nav on phones — hamburger handles it */
@media (max-width: 920px) {
  .header-nav {
    display: none;
  }
}

/* ---- Hamburger button ---- */
.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  -webkit-tap-highlight-color: transparent;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 2px;
  transition:
    transform 0.32s var(--ease),
    opacity 0.25s ease,
    width 0.25s ease;
  transform-origin: center;
}

/* Open state → X */
.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ---- Nav Drawer ---- */
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border-left: 1px solid rgba(212, 175, 55, 0.12);
  z-index: 5000;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}

.nav-drawer.open {
  transform: translateX(0);
}

.drawer-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 80px 28px 36px;
}

.drawer-logo {
  margin-bottom: 40px;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.drawer-link {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition:
    color 0.2s,
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
  display: block;
}

.drawer-link:hover {
  color: #fff;
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.15);
  transform: translateX(4px);
}

.drawer-wa {
  margin-top: 16px;
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.25);
  color: #25d366;
  font-size: 0.9rem;
}

.drawer-wa:hover {
  background: rgba(37, 211, 102, 0.18);
  border-color: rgba(37, 211, 102, 0.5);
}

.drawer-socials {
  display: flex;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.drawer-socials a {
  font-size: 0.58rem;
  letter-spacing: 2px;
  font-weight: 700;
  color: rgba(212, 175, 55, 0.45);
  text-decoration: none;
  padding: 6px 10px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 4px;
  transition:
    color 0.2s,
    border-color 0.2s;
}

.drawer-socials a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ---- Overlay ---- */
.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 4999;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   VIEWS + TRANSITIONS
   ============================================ */
.view {
  padding-top: var(--hdr);
  min-height: 100vh;
  animation: viewFadeIn 0.5s var(--ease);
}

/* Gallery must overlay the entire screen when open,
   because body overflow:hidden would hide a normal document-flow element */
#view-gallery {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: var(--bg);
  overflow-y: auto;
  overflow-x: hidden;
  padding-top: var(--hdr);
}

.view.hidden {
  display: none;
}

@keyframes viewFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   STATS MARQUEE
   ============================================ */
.stats-marquee {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  padding: 10px 0;
  margin-bottom: 2px;
  background: rgba(212, 175, 55, 0.03);
}

.stats-track {
  display: inline-block;
  animation: marquee 22s linear infinite;
  font-size: 0.6rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.65);
  font-weight: 600;
}

.stats-track span {
  margin: 0 32px;
}

.stats-track .bullet {
  color: var(--gold);
  opacity: 0.4;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ============================================
   SECTION HEADS
   ============================================ */
.section-head {
  padding: 22px 20px 16px;
}

.section-label {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 6px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  opacity: 0.8;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.1;
  background: linear-gradient(135deg, #fff 60%, rgba(212, 175, 55, 0.6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 6px;
  letter-spacing: 0.5px;
}

/* Gold rule */
.section-rule {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 10px 20px;
}

/* ============================================
   PORTFOLIO CATEGORY TILES
   ============================================ */
.cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 16px 10px;
}

.cat-tile {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #141414;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s ease;
}

.cat-tile:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(212, 175, 55, 0.4);
}

/* Ken Burns zoom on bg image */
.cat-tile-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  transform-origin: center;
  animation: kenBurns 12s ease-in-out infinite alternate;
  transition: none;
}

@keyframes kenBurns {
  from {
    transform: scale(1) translate(0, 0);
  }

  to {
    transform: scale(1.12) translate(-2%, -2%);
  }
}

/* Dark gradient */
.cat-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      rgba(0, 0, 0, 0.92) 0%,
      rgba(0, 0, 0, 0.3) 50%,
      rgba(0, 0, 0, 0.1) 100%),
    linear-gradient(to right, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
}

.cat-tile-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 14px 14px;
  z-index: 5;
}

.cat-tile-name {
  font-family: var(--serif);
  font-size: clamp(1rem, 3.5vw, 1.3rem);
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

.cat-tile-count {
  font-size: 0.58rem;
  letter-spacing: 3px;
  color: var(--gold);
  margin-top: 4px;
  font-weight: 600;
  text-transform: uppercase;
}

.cat-tile-arrow {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 8px;
  letter-spacing: 2px;
  transition:
    color 0.3s,
    transform 0.3s;
  display: inline-block;
}

.cat-tile:hover .cat-tile-arrow {
  color: var(--gold);
  transform: translateX(4px);
}

/* Gold border flash on hover */
.cat-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1.5px solid transparent;
  border-radius: 12px;
  z-index: 6;
  background:
    linear-gradient(#080808, #080808) padding-box,
    linear-gradient(135deg, var(--gold3), var(--gold), var(--gold2)) border-box;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.cat-tile:hover::before {
  opacity: 1;
}

/* Stagger entrance */
.cat-tile {
  opacity: 0;
  transform: translateY(20px);
}

.cat-tile.tile-visible {
  animation: tileIn 0.6s var(--ease) forwards;
}

@keyframes tileIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   BEST OF THE MONTH — FEATURED GRID
   ============================================ */
.section-featured {
  padding: 0 0 10px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0 16px 10px;
}

.feat-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #141414;
  border: 1px solid rgba(212, 175, 55, 0.18);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s ease;
}

.feat-card:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.7),
    0 0 0 1.5px rgba(212, 175, 55, 0.5);
}

.feat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.feat-card:hover img {
  transform: scale(1.08);
}

.feat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 60%);
  pointer-events: none;
}

/* ============================================
   BEFORE & AFTER — 2 smaller boxes
   ============================================ */
.ba-section {
  padding: 8px 16px 6px;
}

.ba-label {
  font-size: 0.55rem;
  letter-spacing: 5px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 8px;
}

.ba-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.ba-box {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  background: #141414;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.ba-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #111 100%);
}

.ba-tag {
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-size: 0.5rem;
  letter-spacing: 3px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.55);
  padding: 3px 8px;
  border-radius: 20px;
  text-transform: uppercase;
}

.ba-tag.after {
  background: rgba(212, 175, 55, 0.25);
  color: var(--gold);
}

/* ============================================
   TESTIMONIALS — Google Reviews
   ============================================ */
.testi-section {
  padding: 8px 16px 16px;
}

.testi-label {
  font-size: 0.55rem;
  letter-spacing: 5px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 8px;
}

.testi-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}

.testi-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 10px;
  padding: 10px 12px;
}

.testi-stars {
  color: #f5c518;
  font-size: 0.7rem;
  margin-bottom: 4px;
  letter-spacing: 2px;
}

.testi-text {
  font-size: 0.68rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
  font-style: italic;
  margin: 0 0 6px;
}

.testi-author {
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.5px;
}

.testi-via {
  color: var(--gold);
  opacity: 0.7;
  margin-left: 4px;
}


/* ============================================
   TRUST BADGES (between sections)
   ============================================ */
.trust-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 16px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  margin: 14px 0;
}

.trust-item {
  text-align: center;
  flex: 1;
  min-width: 80px;
}

.trust-num {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold3), var(--gold2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trust-label {
  font-size: 0.55rem;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  margin-top: 2px;
  font-weight: 600;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.section-products {
  margin-top: 6px;
  padding-bottom: 10px;
}

.products-row {
  padding: 0 16px 8px;
  max-width: 1200px;
  margin: 0 auto;
}

.prod-tabs-nav {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.prod-tabs-nav::-webkit-scrollbar {
  display: none;
}

.prod-tab-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 8px 4px;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s var(--ease);
}

.prod-tab-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* --- Hierarchical Navigation --- */
.prod-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 0 10px;
}

.prod-breadcrumbs {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

.prod-breadcrumbs span {
    cursor: pointer;
    transition: color 0.3s;
}

.prod-breadcrumbs span:hover {
    color: var(--accent);
}

.prod-back-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
}

.prod-back-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    color: var(--accent);
}

/* Folder/Collection Cards */
.prod-folder-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.prod-folder-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.folder-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.cat-sub-item {
    cursor: pointer;
    transition: color 0.3s ease;
}

.cat-sub-item:hover,
.cat-sub-item.active {
    color: var(--accent);
    text-decoration: underline;
}

.prod-tab-pane {
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.prod-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.prod-card {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 8px;
  overflow: hidden;
  background: #131313;
  cursor: pointer;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.prod-card:hover {
  transform: scale(1.06) translateY(-3px);
  box-shadow: 0 10px 32px rgba(212, 175, 55, 0.22);
  border-color: rgba(212, 175, 55, 0.2);
}

.prod-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.prod-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 6px 6px 5px;
  font-size: 0.58rem;
  color: #fff;
  font-weight: 600;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.88));
  line-height: 1.2;
}

/* ============================================
   GALLERY VIEW
   ============================================ */
.gallery-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--hdr);
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  z-index: 150;
}

.back-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-family: var(--font);
  letter-spacing: 1px;
  padding: 7px 14px;
  border-radius: 4px;
  transition:
    color 0.2s,
    border-color 0.2s,
    background 0.2s;
}

.back-btn:hover {
  color: #fff;
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.07);
}

.gallery-cat-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 2px;
  flex: 1;
  background: linear-gradient(90deg, #fff, rgba(212, 175, 55, 0.6));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Gallery grid ---- */
.gallery-grid {
  padding: calc(var(--hdr) + 10px) 8px 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

/* Figure-style card */
.gal-card {
  display: flex;
  flex-direction: column;
  border-radius: 9px;
  overflow: hidden;
  background: #111;
  cursor: pointer;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0;
  animation: cardIn 0.5s var(--ease) forwards;
}

.gal-card:hover {
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 10px 32px rgba(212, 175, 55, 0.25);
  border-color: rgba(212, 175, 55, 0.3);
}

@keyframes cardIn {
  to {
    opacity: 1;
  }
}

/* Image/video portion — portrait */
.gal-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  flex-shrink: 0;
}

.gal-card-media img,
.gal-card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease);
}

.gal-card:hover .gal-card-media img,
.gal-card:hover .gal-card-media video {
  transform: scale(1.06);
}

/* Video badge inside media */
.gal-card.is-video .gal-card-media::before {
  content: "▶";
  position: absolute;
  top: 7px;
  right: 7px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.92);
  color: #060606;
  font-size: 0.45rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  padding-left: 1px;
}

/* Title strip — solid dark band, ALWAYS visible */
.gal-card-title {
  background: #0d0d0d;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 7px 8px 8px;
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.3;
  letter-spacing: 0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s;
}

.gal-card:hover .gal-card-title {
  color: var(--gold);
}

/* ============================================
   FULLSCREEN LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: lbIn 0.3s ease;
  backdrop-filter: blur(6px);
}

@keyframes lbIn {
  from {
    opacity: 0;
    transform: scale(0.97);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox.hidden {
  display: none;
}

.lightbox-close {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
  backdrop-filter: blur(10px);
}

.lightbox-close:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold);
  transform: rotate(90deg);
}

.lightbox-media {
  max-width: 100%;
  max-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-media img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.8);
}

.lightbox-media video {
  max-width: 100%;
  max-height: 82vh;
  border-radius: 8px;
}

.lightbox-title {
  margin-top: 14px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  font-weight: 500;
  letter-spacing: 1px;
}

/* ---- Slide nav arrows ---- */
.lb-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;
  backdrop-filter: blur(8px);
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.lb-nav:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.1);
}

.lb-nav.lb-prev {
  left: 10px;
}

.lb-nav.lb-next {
  right: 10px;
}

.lb-nav:disabled {
  opacity: 0.2;
  cursor: default;
}

/* ---- Slide counter ---- */
.lb-counter {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.4);
  z-index: 15;
  font-weight: 600;
  pointer-events: none;
}

/* ---- Slide animation ---- */
.lightbox-media.slide-left {
  animation: slideLeft 0.28s var(--ease);
}

.lightbox-media.slide-right {
  animation: slideRight 0.28s var(--ease);
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
#wa-float {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 500;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #128c7e, #25d366);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  text-decoration: none;
  animation: waPulse 2.5s ease-in-out infinite;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s ease;
  font-size: 1.4rem;
}

#wa-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55);
  animation: none;
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow:
      0 6px 36px rgba(37, 211, 102, 0.7),
      0 0 0 8px rgba(37, 211, 102, 0.1);
  }
}

#wa-float .wa-tooltip {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 10, 10, 0.92);
  color: #fff;
  font-size: 0.68rem;
  letter-spacing: 0.5px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

#wa-float:hover .wa-tooltip {
  opacity: 1;
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
  padding: 32px 20px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-brand {
  font-family: var(--serif);
  font-size: 0.9rem;
  letter-spacing: 3px;
  color: rgba(212, 175, 55, 0.4);
  margin-bottom: 4px;
}

.footer-btn {
  padding: 14px 32px;
  color: #060606;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: 4px;
  text-align: center;
  background: linear-gradient(135deg, #b8941e, #d4af37, #f0cc5a, #d4af37);
  background-size: 200%;
  animation: shimmerText 3s ease infinite;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.footer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.5);
}

.footer-ig {
  color: rgba(212, 175, 55, 0.55);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  transition: color 0.3s;
}

.footer-ig:hover {
  color: var(--gold);
}

/* ============================================
   MOBILE
   ============================================ */
@media (max-width: 480px) {
  :root {
    --hdr: 52px;
  }

  .cat-grid {
    gap: 8px;
    padding: 0 12px 8px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
  }

  .section-head {
    padding: 18px 14px 12px;
  }

  .products-row {
    padding: 0 12px 8px;
  }

  .trust-row {
    padding: 16px 10px;
  }

  .stats-track {
    font-size: 0.52rem;
  }

  #wa-float {
    bottom: 16px;
    right: 14px;
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
  }

  #wa-float .wa-tooltip {
    display: none;
  }
}

/* ============================================
   TAP TO START SCREEN
   ============================================ */
#tap-to-start {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}

#tap-to-start.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.tts-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  user-select: none;
}

.tts-logo {
  font-family: var(--serif);
  font-size: clamp(2rem, 10vw, 4rem);
  font-weight: 700;
  letter-spacing: 8px;
  background: linear-gradient(135deg,
      #9a7b1e 0%,
      #d4af37 40%,
      #f0cc5a 65%,
      #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200%;
  animation: shimmerText 3s ease infinite;
}

.tts-sub {
  font-size: clamp(0.7rem, 3vw, 1rem);
  font-weight: 300;
  letter-spacing: 12px;
  color: rgba(212, 175, 55, 0.5);
  margin-top: 4px;
  text-transform: uppercase;
}

.tts-pulse {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  margin: 32px auto 0;
  animation: ttsPulse 1.6s ease-in-out infinite;
  position: relative;
}

.tts-pulse::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  animation: ttsPulse 1.6s ease-in-out 0.4s infinite;
}

@keyframes ttsPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.1;
  }
}

.tts-hint {
  margin-top: 20px;
  font-size: 0.62rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  animation: ttsHintBlink 2s ease-in-out infinite;
}

@keyframes ttsHintBlink {

  0%,
  100% {
    opacity: 0.25;
  }

  50% {
    opacity: 0.7;
  }
}

/* ============================================
   SOCIAL MEDIA GRID
   ============================================ */
.footer-tagline {
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.3);
  margin: 4px 0 24px;
  text-align: center;
}

.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 24px;
}

.social-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 6px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.social-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-btn:hover {
  transform: translateY(-4px) scale(1.04);
}

.social-btn:hover::before {
  opacity: 1;
}

/* Brand colors */
.social-btn.ig {
  border-color: rgba(193, 53, 132, 0.3);
}

.social-btn.ig:hover {
  box-shadow: 0 8px 28px rgba(193, 53, 132, 0.4);
}

.social-btn.ig::before {
  background: linear-gradient(135deg,
      rgba(64, 93, 230, 0.12),
      rgba(193, 53, 132, 0.12),
      rgba(253, 186, 74, 0.12));
}

.social-btn.tt {
  border-color: rgba(255, 0, 80, 0.25);
}

.social-btn.tt:hover {
  box-shadow: 0 8px 28px rgba(105, 201, 208, 0.3);
}

.social-btn.tt::before {
  background: linear-gradient(135deg,
      rgba(105, 201, 208, 0.1),
      rgba(255, 0, 80, 0.08));
}

.social-btn.wa {
  border-color: rgba(37, 211, 102, 0.3);
}

.social-btn.wa:hover {
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
}

.social-btn.wa::before {
  background: rgba(37, 211, 102, 0.08);
}

.social-btn.gm {
  border-color: rgba(234, 67, 53, 0.3);
}

.social-btn.gm:hover {
  box-shadow: 0 8px 28px rgba(234, 67, 53, 0.3);
}

.social-btn.gm::before {
  background: rgba(234, 67, 53, 0.07);
}

.social-btn.xtwt {
  border-color: rgba(255, 255, 255, 0.15);
}

.social-btn.xtwt:hover {
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.12);
}

.social-btn.xtwt::before {
  background: rgba(255, 255, 255, 0.05);
}

.social-btn.yt {
  border-color: rgba(255, 0, 0, 0.3);
}

.social-btn.yt:hover {
  box-shadow: 0 8px 28px rgba(255, 0, 0, 0.3);
}

.social-btn.yt::before {
  background: rgba(255, 0, 0, 0.07);
}

.social-btn.fb {
  border-color: rgba(24, 119, 242, 0.3);
}

.social-btn.fb:hover {
  box-shadow: 0 8px 28px rgba(24, 119, 242, 0.35);
}

.social-btn.fb::before {
  background: rgba(24, 119, 242, 0.08);
}

.fb .social-icon {
  color: #1877f2;
}

/* Icon */
.social-icon {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon svg {
  width: 22px;
  height: 22px;
}

/* Brand icon colors */
.ig .social-icon {
  color: #e1306c;
}

.tt .social-icon {
  color: #69c9d0;
}

.wa .social-icon {
  color: #25d366;
}

.gm .social-icon {
  color: #ea4335;
}

.xtwt .social-icon {
  color: rgba(255, 255, 255, 0.85);
}

.yt .social-icon {
  color: #ff0000;
}

.social-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.social-handle {
  font-size: 0.5rem;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  line-height: 1.3;
}

.footer-copy {
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 1px;
  margin-top: 8px;
  text-align: center;
}

@media (max-width: 360px) {
  .social-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   DESKTOP / TABLET LAYOUT  ≥ 768px
   ============================================ */
@media (min-width: 768px) {

  /* --- Content max-width container --- */
  :root {
    --hdr: 60px;
  }

  .view-main,
  .view-gallery-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  /* --- Header --- */
  .site-header {
    padding: 0 32px;
  }

  /* Show desktop nav links */
  .header-nav {
    display: flex !important;
  }

  /* Hide hamburger on desktop */
  .hamburger {
    display: none;
  }

  /* --- Stats marquee smaller --- */
  .stats-bar {
    font-size: 0.7rem;
  }

  /* --- Section heads --- */
  .section-head {
    padding: 36px 32px 20px;
  }

  .section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
  }

  .section-rule {
    margin: 12px 32px;
  }

  /* --- Portfolio cat-grid: 4 in one row, landscape --- */
  .cat-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 0 32px 16px;
  }

  .cat-tile {
    aspect-ratio: 3/4;
    /* stays portrait but all 4 side by side = normal size */
  }

  /* --- Gallery grid: more columns on desktop --- */
  .gallery-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    padding: calc(var(--hdr) + 20px) 32px 80px;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* --- Products section --- */
  .section-products {
    padding: 0 32px;
  }

  .prod-cat-group {
    width: 160px;
  }

  .prod-cat-label {
    font-size: 0.6rem;
  }

  /* --- Trust badges --- */
  .trust-grid {
    gap: 28px;
    padding: 28px 0;
  }

  .trust-num {
    font-size: 2.2rem;
  }

  /* --- Footer --- */
  .main-footer {
    padding: 48px 40px 64px;
  }

  .social-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 640px;
  }

  /* --- Lightbox arrows further from edge --- */
  .lb-nav.lb-prev {
    left: 24px;
  }

  .lb-nav.lb-next {
    right: 24px;
  }

  .lb-nav {
    width: 52px;
    height: 52px;
    font-size: 1.6rem;
  }
}

/* ============================================
   WIDE DESKTOP  ≥ 1200px
   ============================================ */
@media (min-width: 1200px) {

  /* Limit total content width */
  #view-main {
    max-width: 1280px;
    margin: 0 auto;
  }

  .cat-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    max-width: 1280px;
    padding: calc(var(--hdr) + 24px) 40px 100px;
  }

  /* Trust section side by side */
  .trust-grid {
    max-width: 800px;
    margin: 0 auto;
  }

  /* Footer social grid wider */
  .social-grid {
    grid-template-columns: repeat(7, 1fr);
    max-width: 900px;
  }

  /* Marquee font */
  .stats-bar {
    font-size: 0.8rem;
    letter-spacing: 2px;
  }
}

.prod-brand-block {
  margin-bottom: 40px;
}

.prod-brand-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 16px;
  color: #fff;
  letter-spacing: 1px;
}

.prod-catalog-block {
  margin-bottom: 28px;
}

.prod-catalog-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}