/* ============================================
   DANCEHOOD BY MEHEK — CINEMATIC STYLESHEET
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Bebas+Neue&family=Montserrat:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --black: #080808;
  --red: #D00000;
  --magenta: #BA265C;
  --lavender: #C8A2C8;
  --blue: #5A5B8D;
  --white: #F5F0F0;
  --gold: #C9A84C;
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
  --spotlight: radial-gradient(ellipse at 50% 0%, rgba(208,0,0,0.15) 0%, transparent 70%);
  --curtain-gradient: linear-gradient(135deg, #1a0000 0%, #0d0000 30%, #080808 100%);
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  --font-elegant: 'Cormorant Garamond', serif;
  --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: default;
}

body.loading {
  overflow: hidden;
}

::selection {
  background: var(--red);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--red);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== LOADING SCREEN ===== */

#loading-screen{
  gap:40px;
  position:fixed;
  inset:0;
  background:#000;
  z-index:9999;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;

  overflow:hidden;

  transition:
    opacity 0.8s var(--transition-slow),
    transform 0.8s var(--transition-slow);
}

#loading-screen.fade-out{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}

/* ===== LOGO ===== */

.loading-logo-wrap{
  position: relative;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;

  width: min(420px, 82vw);

  animation:
    logoReveal 1.2s var(--transition-slow) 0.3s both;
}

@keyframes logoReveal{
  from{
    opacity:0;
    transform:scale(0.85) translateY(20px);
    filter:blur(10px);
  }

  to{
    opacity:1;
    transform:scale(1) translateY(0);
    filter:blur(0);
  }
}

.loading-logo{
  width:min(240px, 52vw);
  height:auto;

  filter:
    drop-shadow(0 0 20px rgba(208,0,0,0.35))
    drop-shadow(0 0 50px rgba(208,0,0,0.12));
}

.loading-logo-text{
  text-align:center;
  margin-top:20px;
}

.loading-logo-text .brand-name{
  display:block;

  font-family:var(--font-display);
  font-size:clamp(2rem, 7vw, 3.5rem);
  letter-spacing:0.12em;

  color:var(--white);

  text-shadow:
    0 0 30px rgba(208,0,0,0.25);
}

.loading-logo-text .brand-sub{
  display:block;
  margin-top:6px;

  font-family:var(--font-elegant);
  font-size:0.9rem;
  letter-spacing:0.35em;
  font-style:italic;

  color:rgba(200,162,200,0.8);
}

/* ===== LOADING BAR ===== */

.loading-progress-wrap{
  width:min(420px, 82vw);

  display:flex;
  flex-direction:column;
  gap:14px;

  animation:fadeUp 0.8s ease 0.8s both;
}

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(10px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }
}

.loading-progress-label{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  
  font-family:var(--font-body);
  font-size:0.7rem;
  letter-spacing:0.25em;
  text-transform:uppercase;

  color:rgba(255,255,255,0.45);
}

.loading-progress-track{
  position:relative;

  width:100%;
  height:10px;

  background:rgba(255,255,255,0.05);

  border:
    1px solid rgba(255,255,255,0.06);

  border-radius:999px;

  overflow:hidden;

  backdrop-filter:blur(10px);
}

.loading-progress-fill{
  position:relative;

  width:0%;
  height:100%;

  border-radius:999px;

  background:
    linear-gradient(
      90deg,
      #D00000 0%,
      #BA265C 50%,
      #C8A2C8 100%
    );

  box-shadow:
    0 0 18px rgba(208,0,0,0.3),
    0 0 40px rgba(186,38,92,0.12);

  transition:width 0.18s linear;
}

.loading-progress-fill::after{
  content:'';

  position:absolute;
  top:0;
  right:0;

  width:80px;
  height:100%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,0.4),
      transparent
    );

  animation:loadingShine 1.4s linear infinite;
}

@keyframes loadingShine{
  from{
    transform:translateX(-120%);
  }

  to{
    transform:translateX(120%);
  }
}

#progress-num{
  font-family:var(--font-display);
  font-size:1rem;
  letter-spacing:0.08em;

  color:var(--white);

  opacity:0.9;

  min-width:unset;
  width:auto;
  text-align:center;
}

/* ===== MOBILE ===== */

@media (max-width:768px){


  .startup-logo-video{
  width:min(260px, 82vw);
}

  .loading-logo{
    width:min(180px, 56vw);
  }

  .loading-logo-wrap{
    margin-bottom:40px;
  }

  .loading-progress-wrap{
    width:min(280px, 88vw);
    gap:12px;
  }

  .loading-progress-track{
    height:8px;
  }

  .loading-progress-label{
    font-size:0.58rem;
    letter-spacing:0.2em;
  }

  #progress-num{
    font-size:0.9rem;
  }

  .loading-logo-text .brand-sub{
    font-size:0.7rem;
    letter-spacing:0.25em;
  }

}

/* ===== THEATRE CURTAINS ===== */
#curtain-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  display: flex;
}

.curtain-left,
.curtain-right {
  width: 50%;
  height: 100%;
  background: var(--curtain-gradient);
  position: relative;
  transition: transform 1.8s var(--transition-slow);
}

.curtain-left {
  transform-origin: left center;
}

.curtain-right {
  transform-origin: right center;
}

/* Velvet texture */
.curtain-left::before,
.curtain-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    180deg,
    rgba(0,0,0,0) 0px,
    rgba(0,0,0,0.05) 2px,
    rgba(0,0,0,0) 4px
  );
}

.curtain-left::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40px;
  background: linear-gradient(90deg, transparent, rgba(208,0,0,0.1), rgba(208,0,0,0.05));
}

.curtain-right::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 40px;
  background: linear-gradient(270deg, transparent, rgba(208,0,0,0.1), rgba(208,0,0,0.05));
}

#curtain-overlay.open .curtain-left {
  transform: translateX(-110%);
}

#curtain-overlay.open .curtain-right {
  transform: translateX(110%);
}

/* ===== SPOTLIGHT EFFECT ===== */
.spotlight-beam {
  position: fixed;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 600px;
  background: radial-gradient(ellipse at 50% 0%, rgba(208,0,0,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  animation: spotlightSway 8s ease-in-out infinite;
}

@keyframes spotlightSway {
  0%, 100% { transform: translateX(-50%) rotate(-5deg); }
  50% { transform: translateX(-40%) rotate(5deg); }
}

/* ===== NAVIGATION ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}

#navbar.scrolled {
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(20px);
  padding: 16px 60px;
  border-bottom: 1px solid rgba(208,0,0,0.15);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo span {
  color: var(--red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,240,0.7);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white) !important;
  border: 1px solid var(--red);
  padding: 10px 24px;
  transition: all 0.3s ease !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--red) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */

#hero{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  padding:50px 40px 60px;
  position:relative;
  overflow:hidden;
  background: linear-gradient(rgba(8,8,8,0.72), rgba(8,8,8,0.72)), url('Assets/Images/hero-bg.jpg') center top/cover no-repeat;
  animation: kenBurns 20s ease-in-out infinite alternate;
  animation-delay: 4.5s;
  animation-fill-mode: backwards;
}

@keyframes kenBurns {
  from {
    background-size: 100%;
  }
  to {
    background-size: 115%;
  }
}

/* LEFT SIDE */
.hero-eyebrow{
  font-family:var(--font-elegant);
  font-size:0.95rem;
  letter-spacing:0.45em;
  text-transform:uppercase;
  color:rgba(245,240,240,0.75);
  display:block;
  margin-bottom:24px;
  font-style:italic;
}

.hero-logo-wrap{
  display:flex;
  justify-content:center;
  align-items:center;

  margin-bottom:30px;
}

.hero-logo-video{
  width:min(380px, 70vw);
  max-width:100%;
  height:auto;
  filter:
    drop-shadow(0 0 30px rgba(208,0,0,0.18))
    drop-shadow(0 0 80px rgba(208,0,0,0.08));

  opacity:0.98;
}

.hero-title{
  font-family:var(--font-display);
  font-size:clamp(6rem, 14vw, 12rem);
  line-height:0.82;
  letter-spacing:0.03em;
  color:var(--white);
  margin-bottom:18px;
  text-shadow:0 0 30px rgba(208,0,0,0.14);
}

.hero-title .line-accent{
  color:var(--red);
  display:block;
}

.hero-tagline{
  font-family:var(--font-serif);
  font-size:clamp(1.2rem, 2.5vw, 1.8rem);
  font-style:italic;
  color:rgba(245,240,240,0.92);
  margin-bottom:18px;
}

.hero-sub{
  font-family:var(--font-body);
  font-size:0.78rem;
  letter-spacing:0.28em;
  text-transform:uppercase;
  color:rgba(245,240,240,0.72);
  line-height:1.9;
}

.hero-content{
  position:relative;
  z-index:2;
  width:100%;
  max-width:820px;
  margin:0 auto;
  text-align:center;
}


/* RIGHT SIDE */

.hero-right{
  position:relative;
  z-index:2;
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

.hero-right .mini-text{
  font-family:var(--font-body);
  font-size:0.75rem;
  letter-spacing:0.4em;
  text-transform:uppercase;

  color:var(--red);

  margin-bottom:24px;
}

.hero-right h1{
  font-family:var(--font-display);

  font-size:clamp(4rem, 8vw, 8rem);

  line-height:0.9;
  letter-spacing:0.02em;

  margin-bottom:28px;
}

.hero-desc{
  max-width:520px;

  font-size:1.1rem;
  line-height:1.8;

  color:rgba(245,240,240,0.72);

  margin-bottom:40px;
}

.hero-buttons{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

/* ===== RESPONSIVE ===== */

@media (max-width:1024px){

  #hero{
    flex-direction:column;
    text-align:center;
    padding:50px 32px 60px;
    background: radial-gradient(ellipse at 50% 40%, rgba(208,0,0,0.18) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(90,91,141,0.12) 0%, transparent 50%),
              #080808 !important;
  animation: none !important;
  }

  .hero-content{
    width:100%;
    max-width:100%;
    margin:0 auto;
  }

  .hero-right{
    align-items:center;
  }

  .hero-buttons{
    justify-content:center;
  }

}

@media (max-width:768px){
  .hero-logo-video{
  width:min(260px, 82vw);
}


  .hero-title{
    font-size:clamp(4rem, 18vw, 6rem);
  }

  .hero-right h1{
    font-size:clamp(3rem, 15vw, 5rem);
  }

  .hero-sub{
    font-size:0.65rem;
    letter-spacing:0.2em;
    line-height:1.8;
  }



  #hero{
    min-height:100svh !important;
    padding:50px 16px 40px !important;
    display:flex !important;
    flex-direction:column !important;
    justify-content:center !important;
    align-items:center !important;
  }

  .hero-content{
    width:100% !important;
    max-width:100% !important;

    margin:0 auto !important;
    margin-top:0 !important;

    padding:0 !important;

    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;

    text-align:center !important;
  }

  .hero-eyebrow{
    font-size:0.72rem !important;
    letter-spacing:0.18em !important;

    margin-bottom:18px !important;
  }

  .hero-logo-video{
    width:220px !important;
  }

  .hero-tagline{
    max-width:260px !important;

    font-size:1.8rem !important;
    line-height:1.25 !important;
  }

  .hero-sub{
    max-width:280px !important;

    font-size:0.72rem !important;
    line-height:1.8 !important;

    letter-spacing:0.08em !important;
  }

  .hero-buttons {
    display: flex !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    margin-top: 28px !important;
  }

  .hero-scroll-hint {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: 36px !important;
    opacity: 0.4 !important;
  }

  .hero-scroll-text {
    font-family: var(--font-body) !important;
    font-size: 0.55rem !important;
    letter-spacing: 0.35em !important;
    text-transform: uppercase !important;
    color: var(--white) !important;
  }

  .hero-scroll-line {
    width: 1px !important;
    height: 40px !important;
    background: var(--white) !important;
    animation: heroScrollPulse 1.8s ease-in-out infinite !important;
  }

}

@keyframes heroScrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.65); }
}

/* Hide scroll hint on desktop */
.hero-scroll-hint { display: none; }
.hero-buttons { display: none; }

@media (max-width: 768px) {
  .hero-buttons { display: flex !important; }
  .hero-scroll-hint { display: flex !important; }
}


.btn-primary {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--Fite);
  background: var(--red);
  border: 1px solid var(--red);
  padding: 16px 36px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--magenta);
  transform: translateX(-101%);
  transition: transform 0.4s var(--transition);
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-secondary {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(245,240,240,0.3);
  padding: 16px 36px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: var(--lavender);
  color: var(--lavender);
}

.btn-ghost {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,240,240,0.6);
  background: transparent;
  border: 1px solid transparent;
  padding: 16px 36px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-ghost:hover {
  color: var(--white);
  border-color: rgba(245,240,240,0.2);
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: heroFade 1s ease 1.8s both;
}

.scroll-indicator-text {
  font-family: var(--font-elegant);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  color: rgba(245,240,240,0.3);
  text-transform: uppercase;
}

.scroll-indicator-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, rgba(208,0,0,0.8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-eyebrow {
  font-family: var(--font-elegant);
  font-size: 0.8rem;
  letter-spacing: 0.5em;
  color: var(--red);
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
  font-style: italic;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--white);
}

.section-title .accent {
  color: var(--red);
}

.section-rule {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--magenta));
  margin: 24px auto 0;
}

/* ===== ABOUT SECTION ===== */
#about {
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}

#about::before {
  content: '';
  position: absolute;
  left: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(90,91,141,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-frame {
  position: relative;
  aspect-ratio: 3/4;
  background:
    linear-gradient(
     360deg,
     #000000 0%,
     #050505 35%,
     #120814 65%,
     #24102b 100%
);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-frame-inner {
  font-family: var(--font-display);
  font-size: 8rem;
  color: rgba(208,0,0,0.08);
  letter-spacing: -0.05em;
  line-height: 1;
  text-align: center;
  padding: 40px;
  user-select: none;
}

.about-frame-badge {
  position: absolute;
  bottom: 30px;
  right: -10px;
  background: var(--red);
  padding: 16px 20px;
  text-align: center;
}

.about-frame-badge .num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--white);
  display: block;
  line-height: 1;
}

.about-frame-badge .label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  display: block;
}

.about-frame-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  border-left: 2px solid var(--red);
  border-top: 2px solid var(--red);
}

.about-content {
  padding: 20px 0;
}

.about-lead {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 32px;
}

.about-body {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.9;
  color: rgba(245,240,240,0.65);
  margin-bottom: 24px;
}

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin: 48px 0;
  border: 1px solid rgba(255,255,255,0.06);
}

.about-stat-item {
  padding: 28px 20px;
  background: var(--glass);
  text-align: center;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.about-stat-item:hover {
  background: rgba(208,0,0,0.06);
  border-color: rgba(208,0,0,0.2);
}

.about-stat-item .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--red);
  display: block;
  line-height: 1;
}

.about-stat-item .label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,240,0.5);
  display: block;
  margin-top: 8px;
}

/* ===== FOUNDER SECTION ===== */
#founder {
  padding: 120px 60px;
  background: linear-gradient(180deg, transparent, rgba(90,91,141,0.04), transparent);
  position: relative;
}

.founder-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.founder-portrait {
  position: relative;
}

.founder-portrait-frame {
  aspect-ratio: 2/3;
  background: linear-gradient(160deg, rgba(186,38,92,0.1) 0%, rgba(8,8,8,0.9) 50%, rgba(90,91,141,0.08) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.founder-portrait-placeholder {
  font-family: var(--font-display);
  font-size: 12rem;
  color: rgba(186,38,92,0.06);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
  user-select: none;
}

.founder-portrait-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 32px;
  background: linear-gradient(0deg, rgba(8,8,8,0.95), transparent);
}

.founder-portrait-name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--white);
  display: block;
}

.founder-portrait-title {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--lavender);
  display: block;
  margin-top: 6px;
}

.founder-corner-tl {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 50px;
  height: 50px;
  border-left: 2px solid var(--magenta);
  border-top: 2px solid var(--magenta);
}

.founder-corner-br {
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 50px;
  height: 50px;
  border-right: 2px solid var(--magenta);
  border-bottom: 2px solid var(--magenta);
}

.founder-content .section-header {
  text-align: left;
  margin-bottom: 32px;
}

.founder-content .section-rule {
  margin: 24px 0 0;
}

.founder-quote {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--white);
  border-left: 3px solid var(--red);
  padding-left: 24px;
  margin: 40px 0;
}

.founder-body {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.9;
  color: rgba(245,240,240,0.65);
  margin-bottom: 20px;
}

.founder-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 40px 0;
}

.founder-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.founder-highlight-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

.founder-highlight-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(245,240,240,0.7);
  line-height: 1.6;
}

/* ===== SERVICES SECTION ===== */
#services {
  padding: 120px 60px;
  position: relative;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}

.service-card {
  position: relative;
  padding: 48px 28px 40px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  transition: all 0.5s var(--transition);
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--magenta));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(208,0,0,0.06), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card:hover {
  background: rgba(208,0,0,0.04);
  border-color: rgba(208,0,0,0.2);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(208,0,0,0.1);
}

.service-number {
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(208,0,0,0.08);
  line-height: 1;
  display: block;
  margin-bottom: 20px;
  transition: color 0.4s ease;
}

.service-card:hover .service-number {
  color: rgba(208,0,0,0.2);
}

.service-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.service-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.5;
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.service-desc {
  font-family: var(--font-body);
  font-size: 0.78rem;
  line-height: 1.7;
  color: rgba(245,240,240,0.5);
  position: relative;
  z-index: 1;
}

/* ===== GALLERY PREVIEW ===== */
#gallery-preview {
  padding: 120px 60px;
  background: linear-gradient(180deg, transparent, rgba(208,0,0,0.03), transparent);
}

.gallery-preview-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.gallery-preview-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(208,0,0,0.06), rgba(90,91,141,0.06));
  border: 1px solid rgba(255,255,255,0.04);
}

.gallery-preview-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8,8,8,0.9));
  z-index: 1;
  opacity: 0.6;
  transition: opacity 0.4s ease;
}

.gallery-preview-card:hover::before {
  opacity: 0.3;
}

.gallery-card-bg {
  position: absolute;
  inset: 0;
  font-family: var(--font-display);
  font-size: 7rem;
  color: rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s var(--transition-slow);
  line-height: 1;
  padding: 20px;
  text-align: center;
}

.gallery-preview-card:hover .gallery-card-bg {
  transform: scale(1.08);
}

.gallery-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  z-index: 2;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

.gallery-preview-card:hover .gallery-card-content {
  transform: translateY(0);
}

.gallery-card-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--lavender);
  display: block;
  margin-bottom: 8px;
}

.gallery-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--white);
}

.gallery-card-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.4s var(--transition-slow);
}

.gallery-preview-card:hover .gallery-card-arrow {
  transform: translate(-50%, -50%) scale(1);
}

.gallery-card-arrow svg {
  width: 20px;
  height: 20px;
  stroke: white;
  fill: none;
}

.gallery-preview-cta {
  text-align: center;
  margin-top: 48px;
}

/* ===== GALLERY SIMPLE (homepage) ===== */
#gallery-preview {
  padding: 120px 60px;
  text-align: center;
}

.gallery-simple-wrap {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.gallery-simple-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
  margin: 20px 0 28px;
  text-transform: uppercase;
}

.gallery-simple-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.9;
  letter-spacing: 0.06em;
  color: rgba(245,240,240,0.55);
  max-width: 520px;
  margin-bottom: 36px;
}

.gallery-simple-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
}

.gallery-tag {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,240,0.5);
  border: 1px solid rgba(245,240,240,0.12);
  padding: 7px 14px;
  transition: all 0.3s ease;
}

.gallery-tag:hover {
  border-color: var(--red);
  color: var(--white);
}

/* ===== FORM HINT & SUCCESS ===== */
.form-hint {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  margin-top: 6px;
  color: rgba(208,0,0,0.85);
  min-height: 14px;
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 48px 24px;
  text-align: center;
  color: var(--white);
}

.form-success.visible {
  display: flex;
}

.form-success svg {
  stroke: var(--red);
}

.form-success-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.form-success-sub {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,240,0.5);
}

@media (max-width: 768px) {
  #gallery-preview { padding: 80px 24px; }
  .gallery-simple-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
}


#batches-preview {
  padding: 120px 60px;
}

.batches-scroll {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

/* ===== BATCH CARD ===== */
.batch-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.batch-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.batch-card:hover::before {
  opacity: 1;
}

.batch-card:hover {
  background: rgba(208,0,0,0.03);
  border-color: rgba(208,0,0,0.15);
}

.batch-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(208,0,0,0.3);
  padding: 4px 12px;
  margin-bottom: 16px;
}

.batch-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.1;
}

.batch-age {
  font-family: var(--font-elegant);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--lavender);
  margin-bottom: 20px;
  display: block;
}

.batch-timing {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(245,240,240,0.6);
  margin-bottom: 6px;
}

.batch-timing strong {
  color: var(--white);
}

.batch-location {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(245,240,240,0.5);
  margin-bottom: 24px;
  line-height: 1.5;
}

.batch-fee {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.batch-fee .currency {
  font-size: 1rem;
  color: var(--lavender);
}

.batch-actions {
  display: flex;
  gap: 10px;
}

.batch-actions .btn-primary,
.batch-actions .btn-secondary {
  padding: 12px 20px;
  font-size: 0.65rem;
}

/* ===== CONTACT SECTION ===== */
#contact {
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(208,0,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info-title {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(208,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--red);
  fill: none;
}

.contact-item-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,240,0.4);
  display: block;
  margin-bottom: 4px;
}

.contact-item-value {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--white);
  display: block;
  line-height: 1.5;
}

/* ===== ENQUIRY FORM ===== */
.enquiry-form {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 48px 40px;
  position: relative;
  min-width: 0;
}

.enquiry-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--magenta));
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,240,240,0.5);
  display: block;
  margin-bottom: 10px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--red);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23D00000' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-textarea {
  height: 120px;
  resize: none;
}

.form-select option {
  background: #1a0a0a;
}

/* ===== MAPS SECTION ===== */
#locations {
  padding: 80px 60px;
}

.maps-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.map-card {
  position: relative;
}

.map-card-header {
  background: var(--red);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.map-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: var(--white);
}

.map-card-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.map-embed {
  height: 300px;
  filter: grayscale(80%) contrast(1.1) brightness(0.7);
  border: 1px solid rgba(255,255,255,0.06);
  border-top: none;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== FOOTER ===== */
footer {
  background: #030303;
  border-top: 1px solid rgba(208,0,0,0.15);
  padding: 80px 60px 40px;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-brand-name span {
  color: var(--red);
}

.footer-brand-tagline {
  font-family: var(--font-elegant);
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(200,162,200,0.6);
  margin-bottom: 24px;
}

.footer-brand-desc {
  font-family: var(--font-body);
  font-size: 0.8rem;
  line-height: 1.8;
  color: rgba(245,240,240,0.4);
  max-width: 260px;
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
  display: block;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(245,240,240,0.5);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-social a.social-icon {
  position: relative;
  z-index: 2;
}

.social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.social-icon:hover {
  border-color: var(--red);
  background: rgba(208,0,0,0.1);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  stroke: rgba(245,240,240,0.6);
  fill: none;
  transition: stroke 0.3s ease;
}

.social-icon:hover svg {
  stroke: var(--white);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(245,240,240,0.3);
  letter-spacing: 0.05em;
}

.footer-made {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(245,240,240,0.3);
}

/* ===== FLOATING ELEMENTS ===== */
.floating-announcement {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(208,0,0,0.4);
}

.floating-announcement:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(208,0,0,0.6);
}

.floating-announcement svg {
  width: 22px;
  height: 22px;
  stroke: white;
  fill: none;
}



.floating-social {
  position: fixed;
  left: 24px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 900;
}

.floating-social-item {
  width: 40px;
  height: 40px;
  background: rgba(8,8,8,0.9);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.floating-social-item:hover {
  border-color: var(--red);
}

.floating-social-item svg {
  width: 16px;
  height: 16px;
  stroke: rgba(245,240,240,0.6);
  fill: none;
}

.floating-social-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  align-self: center;
}

/* ===== INSTRUCTIONS SECTION ===== */
#instructions {
  padding: 80px 60px;
  background: rgba(208,0,0,0.03);
  border-top: 1px solid rgba(208,0,0,0.1);
  border-bottom: 1px solid rgba(208,0,0,0.1);
}

.instructions-inner {
  max-width: 800px;
  margin: 0 auto;
}

.instructions-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.instructions-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-left: 3px solid var(--red);
}

.instr-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--red);
  line-height: 1;
  flex-shrink: 0;
  width: 32px;
}

.instr-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(245,240,240,0.7);
  padding-top: 4px;
}

/* ===== ANIMATE ON SCROLL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition-slow), transform 0.8s var(--transition-slow);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--transition-slow), transform 0.8s var(--transition-slow);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--transition-slow), transform 0.8s var(--transition-slow);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== GALLERY PAGE ===== */
.gallery-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 60px 80px;
  text-align: center;
  position: relative;
}

.gallery-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(208,0,0,0.15) 0%, transparent 60%);
}

.gallery-location-cards {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.gallery-loc-card {
  aspect-ratio: 16/9;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
}

.gallery-loc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(208,0,0,0.12) 0%, transparent 50%, rgba(90,91,141,0.08) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-loc-card:hover::before {
  opacity: 1;
}

.gallery-loc-card:hover {
  border-color: rgba(208,0,0,0.3);
  transform: scale(0.99);
}

.gallery-loc-bg {
  position: absolute;
  inset: 0;
  font-family: var(--font-display);
  font-size: 10rem;
  color: rgba(255,255,255,0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.05em;
  transition: transform 0.6s ease;
}

.gallery-loc-card:hover .gallery-loc-bg {
  transform: scale(1.05);
}

.gallery-loc-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.gallery-loc-act {
  font-family: var(--font-elegant);
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  color: var(--red);
  text-transform: uppercase;
  font-style: italic;
  display: block;
  margin-bottom: 12px;
}

.gallery-loc-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.08em;
  color: var(--white);
}

/* Gallery Masonry */
.gallery-masonry-section {
  padding: 0 60px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-masonry {
  columns: 4;
  column-gap: 4px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 4px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.masonry-item-bg {
  width: 100%;
  background: var(--glass);
  border: 1px solid rgba(255,255,255,0.04);
  transition: transform 0.5s var(--transition-slow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  color: rgba(255,255,255,0.03);
  font-size: 4rem;
}

.masonry-item:hover .masonry-item-bg {
  transform: scale(1.03);
}

/* Gallery Batches Section */
.gallery-batches-section {
  padding: 80px 60px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.gallery-batches-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}

/* ===== ANNOUNCEMENT PAGE ===== */
.announcement-page {
  min-height: 100vh;
  padding: 120px 0 80px;
}

.announcement-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2px;
  min-height: 70vh;
}

.announcement-sidebar {
  background: rgba(255,255,255,0.015);
  border: 1px solid var(--glass-border);
  border-right: none;
}

.announcement-sidebar-header {
  padding: 24px 28px;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--white);
}

.sidebar-count {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--lavender);
  background: rgba(200,162,200,0.1);
  padding: 2px 10px;
}

.announcement-item {
  padding: 20px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.announcement-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--red);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.announcement-item:hover::before,
.announcement-item.active::before {
  transform: scaleY(1);
}

.announcement-item:hover,
.announcement-item.active {
  background: rgba(208,0,0,0.04);
}

.announcement-category {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 6px;
}

.announcement-title-preview {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.4;
}

.announcement-date {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: rgba(245,240,240,0.35);
}

.announcement-main {
  background: rgba(255,255,255,0.01);
  border: 1px solid var(--glass-border);
  padding: 48px 48px;
}

.announcement-main-header {
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 32px;
  margin-bottom: 40px;
}

.announcement-main-cat {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 12px;
}

.announcement-main-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 16px;
}

.announcement-main-meta {
  display: flex;
  gap: 24px;
}

.announcement-main-meta span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(245,240,240,0.4);
}

.announcement-main-body {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.9;
  color: rgba(245,240,240,0.7);
}

.announcement-enquiry {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--glass-border);
}

@media (max-width:1024px){

#navbar {
  padding: 20px 30px;
}

#navbar.scrolled {
  padding: 14px 30px;
}

/* MOBILE NAV MENU */

.nav-links{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #080808;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;

  transform: translateX(100%);
  transition: transform 0.45s ease;

  z-index: 999;
}

.nav-links.open{
  transform: translateX(0);
}

.nav-links a{
  font-size: 1rem;
}

/* HAMBURGER */

.hamburger{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span{
  width: 100%;
  height: 2px;
  background: white;
  transition: 0.35s ease;
}

/* ANIMATION */

.hamburger.active span:nth-child(1){
  transform: rotate(45deg) translateY(10px);
}

.hamburger.active span:nth-child(2){
  opacity: 0;
}

.hamburger.active span:nth-child(3){
  transform: rotate(-45deg) translateY(-10px);
}

  .hero-stats {
    gap: 30px;
  }

  #about, #founder, #services, #gallery-preview, #batches-preview, #contact, #locations {
    padding: 80px 30px;
  }

  .about-grid,
  .founder-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .batches-scroll {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .maps-grid {
    grid-template-columns: 1fr;
  }

  .gallery-location-cards,
  .gallery-masonry-section,
  .gallery-batches-section {
    padding-left: 30px;
    padding-right: 30px;
  }

  .gallery-masonry {
    columns: 2;
  }

  .gallery-batches-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .announcement-layout {
    padding: 0 30px;
    grid-template-columns: 1fr;
  }

  .announcement-main {
    padding: 32px 24px;
  }

}



@media (max-width: 640px) {
  .hero-title{
  font-family:var(--font-display);
  font-size:clamp(7rem, 15vw, 13rem);
  line-height:0.82;
  letter-spacing:0.03em;
  color:var(--white);
  margin-bottom:18px;
  text-align:center;
  text-shadow:0 0 30px rgba(208,0,0,0.12);
}

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .hero-divider {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .batches-scroll,
  .gallery-batches-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .gallery-location-cards {
    grid-template-columns: 1fr;
  }

  .gallery-masonry {
    columns: 2;
  }

  footer {
    padding: 60px 24px 30px;
  }

  .loading-logo {
    width: 160px;
  }

  .loading-logo-text .brand-name {
    font-size: 2.5rem;
  }
}

/* ===== GALLERY PAGE HEADER ===== */
.page-header {
  padding: 140px 60px 60px;
  text-align: center;
  position: relative;
  background: radial-gradient(ellipse at 50% 0%, rgba(208,0,0,0.12) 0%, transparent 60%);
}

/* Noise texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9997;
  opacity: 0.4;
}


.loading-logo-wrap{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  background: transparent !important;
  width: 240px;
  margin-top: 18px;
}

.startup-logo-video{
  width:min(420px, 78vw);
  height:auto;
  display:block;
}


.loading-progress-fill{
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg,#D00000,#BA265C,#C8A2C8);
}


.loading-progress-track{
  width:280px;
  height:6px;
  background:rgba(255,255,255,0.08);
  border-radius:999px;
  overflow:hidden;
}

.loading-progress-fill{
  width:0%;
  height:100%;
  background:linear-gradient(90deg,#D00000,#BA265C,#C8A2C8);
  border-radius:999px;
  transition:width .05s linear;
}

.loading-progress-label{
  width:100%;

  display:flex;
  align-items:center;
  justify-content:center;

  gap:12px;

  text-align:center;
}

.loading-progress-wrap{
  align-items:center;
}

.loading-progress-track{
  width:100%;
}

.loading-progress-label span:last-child{
  text-align:center;
}

#progress-num{
  min-width:42px;
  text-align:right;
}

.about-logo-video{
  width: 80%;
  height: 80%;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(208,0,0,0.35));
  opacity: 0.95;
}



.btn-primary,
.btn-secondary{
    position: relative;
    overflow: hidden;
    padding: 15px 32px;
    text-decoration: none;
    border: 1px solid #ff1f1f;
    color: white;
    letter-spacing: 2px;
    font-size: 13px;
    transition: 0.4s ease;
    z-index: 1;
}

/* PRIMARY */

.btn-primary{
    background: #ff1f1f;
}

/* SLIDE BACKGROUND */

.btn-primary::before,
.btn-secondary::before{
    content: '';
    position: absolute;
    inset: 0;
    background: white;
    transform: translateX(-100%);
    transition: transform 0.45s ease;
    z-index: -1;
}

/* HOVER EFFECT */

.btn-primary:hover::before,
.btn-secondary:hover::before{
    transform: translateX(0);
}

/* TEXT COLOR CHANGE */

.btn-primary:hover,
.btn-secondary:hover{
    color: black;
}

/* SECONDARY BUTTON */

.btn-secondary{
    background: transparent;
}
/* ============================================
   DANCEHOOD v2 — ENHANCEMENTS
   ============================================ */

/* ===== FLOATING ANNOUNCEMENT BUTTON ===== */
.floating-announcement {
  position: fixed;
  bottom: 88px;
  right: 24px;
  z-index: 500;
  width: 48px;
  height: 48px;
  background: rgba(8,8,8,0.9);
  border: 1px solid rgba(208,0,0,0.45);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.floating-announcement svg { width: 18px; height: 18px; }
.floating-announcement:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: scale(1.08);
}
.floating-announcement::after {
  content: '';
  position: absolute;
  top: -4px; right: -4px;
  width: 10px; height: 10px;
  background: var(--red);
  border-radius: 50%;
  border: 2px solid var(--black);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

/* ===== FLOATING MUSIC BUTTON ===== */
.floating-music {
  position: fixed;
  bottom: 32px; right: 24px;
  z-index: 500;
  width: 48px; height: 48px;
  background: rgba(8,8,8,0.9);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(245,240,240,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.floating-music svg { width: 17px; height: 17px; }
.floating-music:hover { border-color: var(--lavender); color: var(--lavender); }

/* ===== FLOATING SOCIAL ===== */
.floating-social {
  position: fixed;
  left: 28px; bottom: 0;
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.floating-social-line {
  width: 1px; height: 60px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.15));
}
.floating-social-item {
  color: rgba(245,240,240,0.4);
  transition: color 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
}
.floating-social-item svg { width: 16px; height: 16px; }
.floating-social-item:hover { color: var(--lavender); transform: translateX(3px); }

@media (max-width: 640px) {
  .floating-social { display: none; }
  .floating-announcement { bottom: 88px; right: 16px; }
  .floating-music { bottom: 28px; right: 16px; }
}

/* ===== FOOTER SOCIAL ===== */
.footer-social { display: flex; gap: 14px; }
.social-icon {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(245,240,240,0.5);
  transition: all 0.3s ease;
}
.social-icon svg { width: 16px; height: 16px; }
.social-icon:hover { border-color: var(--red); color: var(--red); background: rgba(208,0,0,0.08); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.75s var(--transition-slow), transform 0.75s var(--transition-slow);
}
.reveal { transform: translateY(30px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }


.insta-dropdown-wrap {
  position: relative;
  cursor: pointer;
  z-index: 1;
}

.insta-dropdown {
  position: absolute;
  left: 52px;
  bottom: 0;
  background: rgba(8,8,8,0.97);
  border: 1px solid rgba(208,0,0,0.3);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  min-width: 210px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-8px);
  transition: all 0.3s ease;
  z-index: 9999;
}

.insta-dropdown--up {
  bottom: 100%;
  left: 0;
  top: auto;
  margin-bottom: 8px;
  transform: translateY(8px);
}

.insta-dropdown.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.insta-dropdown--up.open {
  transform: translateY(0);
}

.insta-dropdown a {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,240,0.7);
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.2s ease;
  display: block;
}

.insta-dropdown a:last-child {
  border-bottom: none;
}

.insta-dropdown a:hover {
  color: var(--white);
  background: rgba(208,0,0,0.08);
  padding-left: 24px;
}
/* ============================================
   CLEAN MOBILE NAVBAR
   ============================================ */

@media (max-width: 1024px){

  #navbar{
    padding:16px 20px;
  }

  #navbar.scrolled{
    padding:12px 20px;
  }

  .hamburger{
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:5px;
    width:32px;
    height:24px;
    cursor:pointer;
    z-index:10001;
  }

  .hamburger span{
    width:100%;
    height:2px;
    background:#fff;
    transition:0.35s ease;
  }

  .hamburger.active span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2){
    opacity:0;
  }

  .hamburger.active span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
  }

  .nav-links{
    position:fixed;
    inset:0;

    margin:0;
    padding:0;

    list-style:none;

    background:#080808;

    display:flex;
    flex-direction:column;

    align-items:center;
    justify-content:center;

    gap:32px;

    transform:translateX(100%);
    transition:transform 0.4s ease;

    z-index:10000;
  }

  .nav-links.open{
    transform:translateX(0);
  }

  .nav-links a{
    font-size:1rem;
    letter-spacing:0.2em;
    text-transform:uppercase;
  }

}
/* ============================================
   TARGETED MOBILE FIXES
   ============================================ */

/* Prevent overflow on all sections */
section, footer {
  max-width: 100vw;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  #hero {
  background-size: cover !important;
  background-position: center top !important;
  background-attachment: scroll !important;
  animation: none !important;
}

  /* About section — prevent badge overflow */
  .about-frame-badge {
    right: 0 !important;
    bottom: 20px !important;
  }

  .about-frame-accent {
    top: -10px;
    left: -10px;
    width: 50px;
    height: 50px;
  }

  .reveal-right {
  transform: none !important;
}

.reveal-left {
  transform: none !important;
}
.about-content,
.founder-content,
.about-grid,
.founder-inner {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

  /* Founder corners — prevent overflow */
  .founder-corner-tl { top: -8px; left: -8px; }
  .founder-corner-br { bottom: -8px; right: -8px; }

  /* Batch cards — full width, no overflow */
  .batches-scroll {
    grid-template-columns: 1fr !important;
  }

  .batch-actions {
    flex-wrap: wrap;
  }

  /* Contact form */
  .enquiry-form {
    padding: 28px 20px !important;
  }

  /* Instructions */
  #instructions {
    padding: 60px 20px !important;
  }

  .instructions-list li {
    padding: 16px 16px;
    gap: 14px;
  }

  /* Maps */
  #locations {
    padding: 60px 16px !important;
  }

  .maps-grid {
    grid-template-columns: 1fr !important;
  }

  /* Footer */
  footer {
    padding: 60px 20px 30px !important;
  }

  .footer-top {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* Gallery preview — 2 cols on mobile */
  .gallery-preview-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Services — 1 col on mobile */
  .services-grid {
    grid-template-columns: 1fr !important;
  }

  /* Section headers */
  .section-title {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }

  /* About grid */
  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  /* Founder grid */
  .founder-inner {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  /* Contact grid */
  .contact-inner {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  /* General section padding */
  #about, #founder, #services, #gallery-preview, #batches-preview, #contact {
    padding: 80px 20px !important;
  }

  /* Announcement button position */
  .floating-announcement {
    bottom: 80px !important;
    right: 16px !important;
  }
}

@media (max-width: 480px) {
  /* Extra small phones */
  .hero-logo-video {
    width: 200px !important;
  }

  .hero-tagline {
    font-size: 1.6rem !important;
  }

  .batch-card {
    padding: 28px 20px;
  }

  .gallery-preview-grid {
    grid-template-columns: 1fr !important;
  }
}
/* ============================================
   MOBILE OVERFLOW & LAYOUT FIXES
   ============================================ */

/* Global overflow guard */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

@media (max-width: 1024px) {

  /* About section */
  #about {
    padding: 80px 20px !important;
  }

  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    max-width: 100% !important;
  }

  /* Founder section */
  #founder {
    padding: 80px 20px !important;
  }

  .founder-inner {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    max-width: 100% !important;
  }

  /* Services */
  #services {
    padding: 80px 20px !important;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 100% !important;
  }

  /* Gallery preview */
  #gallery-preview {
    padding: 80px 20px !important;
  }

  .gallery-preview-grid {
    max-width: 100% !important;
  }

  /* Batches — override the inline style */
  #batches-preview {
    padding: 80px 20px !important;
  }

  .batches-scroll {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 100% !important;
  }

  /* Contact */
  #contact {
    padding: 80px 20px !important;
  }

  .contact-inner {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    max-width: 100% !important;
  }

  /* Instructions */
  #instructions {
    padding: 60px 20px !important;
  }

  .instructions-inner {
    max-width: 100% !important;
  }

  /* Locations */
  #locations {
    padding: 60px 20px !important;
  }

  .maps-grid {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
  }

  /* Footer */
  footer {
    padding: 60px 20px 30px !important;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px !important;
    max-width: 100% !important;
  }

  /* Section headers */
  .section-header {
    padding: 0 4px;
  }

  .section-title {
    font-size: clamp(1.8rem, 8vw, 3rem) !important;
  }

  /* Batch card actions */
  .batch-actions {
    flex-wrap: wrap;
    gap: 8px;
  }

  /* Contact email overflow */
  .contact-item-value {
    word-break: break-all;
    font-size: 0.82rem !important;
  }

  /* Enquiry form */
  .enquiry-form {
    padding: 28px 18px !important;
  }

}

@media (max-width: 640px) {

  /* Services — 1 col on small phones */
  .services-grid {
    grid-template-columns: 1fr !important;
  }

  /* Batches — 1 col on small phones */
  .batches-scroll {
    grid-template-columns: 1fr !important;
  }

  /* Footer — 1 col */
  .footer-top {
    grid-template-columns: 1fr !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    gap: 10px !important;
    text-align: center !important;
  }

  /* About stats */
  .about-stats-row {
    grid-template-columns: 1fr !important;
  }

  /* Founder highlights */
  .founder-highlights {
    gap: 12px;
  }

  /* Gallery preview */
  .gallery-preview-grid {
    grid-template-columns: 1fr !important;
  }

}

/* ============================================
   FOOTER DIVIDER
   ============================================ */
.footer-divider {
  max-width: 100%;
  border: none;
  border-top: 5px solid rgba(255,255,255,0.06);
  margin: 0;
}

/* ============================================
   FOOTER STUDIO POLICY — REDESIGNED
   ============================================ */
.footer-policy {
  grid-column: 1 / -1;
  padding: 36px 0 0;
  margin-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-policy-title {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245,240,240,0.35);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-policy-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.05);
}

.footer-policy-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 48px;
  margin: 0;
  padding: 0;
}

.footer-policy-list li {
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: rgba(245,240,240,0.3);
  line-height: 1.6;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-basis: calc(50% - 24px);
}

.footer-policy-list li::before {
  content: '—';
  color: rgba(208,0,0,0.5);
  flex-shrink: 0;
  font-size: 0.6rem;
}

@media (max-width: 768px) {
  .footer-policy-list {
    flex-direction: column;
    gap: 8px;
  }
  .footer-policy-list li {
    flex-basis: 100%;
  }
}

/* ============================================
   GALLERY PAGE STYLES
   ============================================ */
.gallery-filter-bar {
      display: flex;
      justify-content: center;
      gap: 4px;
      padding: 0 60px;
      margin-bottom: 60px;
      flex-wrap: wrap;
    }
    .filter-btn {
      font-family: var(--font-body);
      font-size: 0.65rem;
      font-weight: 500;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: rgba(245,240,240,0.5);
      background: transparent;
      border: 1px solid rgba(255,255,255,0.08);
      padding: 10px 24px;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .filter-btn:hover,
    .filter-btn.active {
      color: var(--white);
      border-color: var(--red);
      background: rgba(208,0,0,0.08);
    }
    .masonry-item-bg {
      aspect-ratio: var(--ar, 1);
    }
    .video-placeholder {
      aspect-ratio: 9/16;
      background: linear-gradient(135deg, rgba(208,0,0,0.08), rgba(90,91,141,0.08));
      border: 1px solid rgba(255,255,255,0.04);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.5s ease;
    }
    .video-placeholder:hover {
      transform: scale(1.02);
    }
    .video-play-icon {
      width: 56px;
      height: 56px;
      border: 2px solid rgba(255,255,255,0.3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      transition: all 0.3s ease;
    }
    .video-placeholder:hover .video-play-icon {
      border-color: var(--red);
      background: rgba(208,0,0,0.2);
    }
    .video-play-icon svg {
      width: 20px;
      height: 20px;
      fill: white;
      margin-left: 4px;
    }
    .video-label {
      font-family: var(--font-body);
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(245,240,240,0.5);
    }
    .video-overlay-text {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: flex-end;
      padding: 20px;
      background: linear-gradient(0deg, rgba(8,8,8,0.7), transparent);
    }
    .gallery-batches-title {
      font-family: var(--font-display);
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      color: var(--lavender);
    }
    .gallery-section-divider {
      max-width: 1200px;
      margin: 0 auto 40px;
      padding: 0 60px;
      display: flex;
      align-items: center;
      gap: 24px;
    }
    .gallery-section-divider span {
      font-family: var(--font-elegant);
      font-size: 0.75rem;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: rgba(245,240,240,0.3);
      white-space: nowrap;
      font-style: italic;
    }
    .gallery-section-divider::before,
    .gallery-section-divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: rgba(255,255,255,0.06);
    }

/* ============================================
   ANNOUNCEMENT PAGE STYLES
   ============================================ */
/* ===== PAGE HERO ===== */
    .ann-hero {
      padding: 180px 60px 80px;
      position: relative;
      background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(208,0,0,0.14) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 90% 50%, rgba(90,91,141,0.07) 0%, transparent 60%);
      overflow: hidden;
    }

    .ann-hero::before {
      content: 'ANNOUNCEMENTS';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: var(--font-display);
      font-size: clamp(4rem, 12vw, 14rem);
      color: rgba(255,255,255,0.02);
      white-space: nowrap;
      pointer-events: none;
      letter-spacing: 0.06em;
      line-height: 1;
    }

    .ann-hero-inner {
      max-width: 900px;
    }

    .ann-breadcrumb {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 32px;
    }

    .ann-breadcrumb a {
      font-family: var(--font-body);
      font-size: 0.65rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: rgba(245,240,240,0.35);
      transition: color 0.3s ease;
    }

    .ann-breadcrumb a:hover { color: var(--lavender); }

    .ann-breadcrumb-sep {
      width: 20px;
      height: 1px;
      background: rgba(255,255,255,0.2);
    }

    .ann-breadcrumb span {
      font-family: var(--font-body);
      font-size: 0.65rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--red);
    }

    .ann-hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-elegant);
      font-size: 0.8rem;
      font-style: italic;
      letter-spacing: 0.4em;
      color: var(--lavender);
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .ann-hero-tag::before {
      content: '';
      display: block;
      width: 32px;
      height: 1px;
      background: var(--lavender);
    }

    .ann-hero-title {
      font-family: var(--font-display);
      font-size: clamp(3.5rem, 8vw, 7.5rem);
      line-height: 0.92;
      letter-spacing: 0.03em;
      color: var(--white);
      margin-bottom: 28px;
    }

    .ann-hero-title span { color: var(--red); }

    .ann-hero-sub {
      font-family: var(--font-serif);
      font-size: 1.1rem;
      font-style: italic;
      color: rgba(200,162,200,0.7);
      max-width: 540px;
      line-height: 1.6;
    }

    .ann-hero-meta {
      display: flex;
      gap: 40px;
      margin-top: 48px;
      padding-top: 40px;
      border-top: 1px solid rgba(255,255,255,0.06);
    }

    .ann-meta-item {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .ann-meta-val {
      font-family: var(--font-display);
      font-size: 2rem;
      color: var(--red);
      line-height: 1;
    }

    .ann-meta-label {
      font-family: var(--font-body);
      font-size: 0.6rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(245,240,240,0.4);
    }

    /* ===== FILTER BAR ===== */
    .ann-filter-strip {
      position: sticky;
      top: calc(36px + 65px);
      z-index: 100;
      background: rgba(8,8,8,0.92);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255,255,255,0.05);
      border-top: 1px solid rgba(255,255,255,0.04);
    }

    .ann-filter-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 60px;
      display: flex;
      align-items: center;
      gap: 0;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .ann-filter-inner::-webkit-scrollbar { display: none; }

    .ann-filter-btn {
      flex-shrink: 0;
      font-family: var(--font-body);
      font-size: 0.62rem;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(245,240,240,0.45);
      background: transparent;
      border: none;
      border-bottom: 2px solid transparent;
      padding: 18px 24px;
      cursor: pointer;
      transition: all 0.25s ease;
      white-space: nowrap;
    }

    .ann-filter-btn:hover {
      color: var(--white);
    }

    .ann-filter-btn.active {
      color: var(--white);
      border-bottom-color: var(--red);
    }

    /* ===== MAIN LAYOUT ===== */
    .ann-main {
      max-width: 1280px;
      margin: 0 auto;
      padding: 60px 60px 120px;
      display: grid;
      grid-template-columns: 380px 1fr;
      gap: 2px;
      align-items: start;
    }

    /* ===== SIDEBAR LIST ===== */
    .ann-sidebar {
      position: sticky;
      top: calc(36px + 65px + 55px);
      border-right: 1px solid rgba(255,255,255,0.05);
      max-height: calc(100vh - 220px);
      overflow-y: auto;
      scrollbar-width: thin;
      scrollbar-color: rgba(208,0,0,0.3) transparent;
    }

    .ann-sidebar::-webkit-scrollbar { width: 2px; }
    .ann-sidebar::-webkit-scrollbar-thumb { background: rgba(208,0,0,0.4); }

    .ann-list-header {
      padding: 24px 28px 20px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .ann-list-title {
      font-family: var(--font-body);
      font-size: 0.6rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: rgba(245,240,240,0.35);
    }

    .ann-count-badge {
      font-family: var(--font-display);
      font-size: 0.75rem;
      color: var(--red);
      background: rgba(208,0,0,0.12);
      padding: 2px 10px;
      border-radius: 2px;
    }

    .ann-item {
      padding: 22px 28px;
      cursor: pointer;
      border-bottom: 1px solid rgba(255,255,255,0.04);
      position: relative;
      transition: background 0.25s ease;
      display: none; /* hidden by default, JS filters */
    }

    .ann-item.show { display: block; }

    .ann-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 2px;
      background: var(--red);
      transform: scaleY(0);
      transition: transform 0.3s ease;
    }

    .ann-item.active::before { transform: scaleY(1); }

    .ann-item:hover,
    .ann-item.active { background: rgba(208,0,0,0.04); }

    .ann-item-cat {
      font-family: var(--font-body);
      font-size: 0.58rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      margin-bottom: 7px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .ann-item-cat-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .ann-item-headline {
      font-family: var(--font-body);
      font-size: 0.84rem;
      font-weight: 500;
      color: var(--white);
      line-height: 1.45;
      margin-bottom: 8px;
    }

    .ann-item-date {
      font-family: var(--font-elegant);
      font-size: 0.7rem;
      font-style: italic;
      color: rgba(245,240,240,0.3);
    }

    .ann-item-badge {
      position: absolute;
      top: 22px;
      right: 20px;
      font-family: var(--font-body);
      font-size: 0.5rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 3px 8px;
      background: var(--red);
      color: #fff;
      border-radius: 2px;
    }

    /* ===== PANEL ===== */
    .ann-panel {
      padding: 48px 56px;
      min-height: 600px;
    }

    .ann-panel-inner {
      display: none;
      animation: panelIn 0.4s var(--transition-slow) both;
    }

    .ann-panel-inner.active { display: block; }

    @keyframes panelIn {
      from { opacity: 0; transform: translateY(16px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .ann-panel-eyebrow {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
    }

    .ann-panel-cat {
      font-family: var(--font-body);
      font-size: 0.58rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .ann-panel-cat-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
    }

    .ann-panel-tag {
      font-family: var(--font-body);
      font-size: 0.55rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      background: rgba(208,0,0,0.18);
      color: var(--red);
      padding: 3px 10px;
      border-radius: 2px;
    }

    .ann-panel-title {
      font-family: var(--font-serif);
      font-size: clamp(1.6rem, 3vw, 2.5rem);
      font-style: italic;
      color: var(--white);
      line-height: 1.25;
      margin-bottom: 20px;
    }

    .ann-panel-meta {
      display: flex;
      gap: 28px;
      padding: 16px 0;
      border-top: 1px solid rgba(255,255,255,0.06);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      margin-bottom: 36px;
    }

    .ann-panel-meta-item {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .ann-panel-meta-item svg {
      width: 13px;
      height: 13px;
      stroke: rgba(245,240,240,0.3);
      stroke-width: 2;
      fill: none;
    }

    .ann-panel-meta-item span {
      font-family: var(--font-body);
      font-size: 0.7rem;
      color: rgba(245,240,240,0.4);
    }

    .ann-panel-body {
      font-family: var(--font-body);
      font-size: 0.9rem;
      line-height: 1.95;
      color: rgba(245,240,240,0.7);
    }

    .ann-panel-body p { margin-bottom: 18px; }

    .ann-panel-body strong {
      color: var(--white);
      font-weight: 600;
    }

    .ann-panel-body ul {
      list-style: none;
      margin: 20px 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .ann-panel-body ul li {
      display: flex;
      gap: 12px;
      align-items: flex-start;
    }

    .ann-panel-body ul li::before {
      content: '—';
      color: var(--red);
      flex-shrink: 0;
      font-weight: 600;
    }

    .ann-panel-highlight {
      background: rgba(208,0,0,0.06);
      border-left: 3px solid var(--red);
      padding: 20px 24px;
      margin: 28px 0;
      font-family: var(--font-serif);
      font-size: 1.05rem;
      font-style: italic;
      color: rgba(245,240,240,0.85);
      line-height: 1.6;
    }

    .ann-panel-cta {
      margin-top: 48px;
      padding-top: 36px;
      border-top: 1px solid rgba(255,255,255,0.06);
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      align-items: center;
    }

    .ann-panel-cta-text {
      font-family: var(--font-elegant);
      font-size: 0.85rem;
      font-style: italic;
      color: rgba(245,240,240,0.4);
      margin-right: 12px;
    }

    /* ===== PINNED BANNER ===== */
    .ann-pinned-banner {
      background: linear-gradient(135deg, rgba(208,0,0,0.12) 0%, rgba(186,38,92,0.06) 100%);
      border: 1px solid rgba(208,0,0,0.25);
      padding: 24px 32px;
      margin-bottom: 60px;
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .ann-pinned-icon {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      border: 1px solid rgba(208,0,0,0.4);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .ann-pinned-icon svg {
      width: 18px;
      height: 18px;
      stroke: var(--red);
      stroke-width: 2;
      fill: none;
    }

    .ann-pinned-label {
      font-family: var(--font-body);
      font-size: 0.58rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 4px;
    }

    .ann-pinned-text {
      font-family: var(--font-body);
      font-size: 0.85rem;
      color: var(--white);
    }

    .ann-pinned-arrow {
      margin-left: auto;
      flex-shrink: 0;
    }

    .ann-pinned-arrow svg {
      width: 20px;
      height: 20px;
      stroke: rgba(245,240,240,0.3);
      stroke-width: 2;
      fill: none;
    }

    /* ===== EMPTY STATE ===== */
    .ann-empty {
      text-align: center;
      padding: 80px 40px;
      display: none;
    }

    .ann-empty.show { display: block; }

    .ann-empty-icon {
      width: 56px;
      height: 56px;
      margin: 0 auto 20px;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .ann-empty-icon svg {
      width: 22px;
      height: 22px;
      stroke: rgba(245,240,240,0.3);
      fill: none;
      stroke-width: 2;
    }

    .ann-empty p {
      font-family: var(--font-elegant);
      font-size: 1rem;
      font-style: italic;
      color: rgba(245,240,240,0.3);
    }

    /* ===== CAT COLORS ===== */
    .cat-batch { color: #C9A84C; }
    .cat-batch-dot { background: #C9A84C; }
    .cat-event { color: #5A8DC8; }
    .cat-event-dot { background: #5A8DC8; }
    .cat-notice { color: #D00000; }
    .cat-notice-dot { background: #D00000; }
    .cat-special { color: #BA265C; }
    .cat-special-dot { background: #BA265C; }
    .cat-update { color: #C8A2C8; }
    .cat-update-dot { background: #C8A2C8; }

    /* ===== MOBILE ===== */
    @media (max-width: 1024px) {
      .ann-hero { padding: 140px 30px 60px; }
      .ann-filter-inner { padding: 0 30px; }
      .ann-main {
        grid-template-columns: 1fr;
        padding: 40px 30px 80px;
      }
      .ann-sidebar {
        position: relative;
        top: 0;
        max-height: none;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        overflow-y: visible;
      }
      .ann-panel { padding: 36px 0; }
      .ann-hero-meta { gap: 24px; }
      #navbar { top: 36px !important; }
    }

    @media (max-width: 640px) {
      .ann-hero { padding: 120px 24px 48px; }
      .ann-filter-inner { padding: 0 24px; }
      .ann-main { padding: 30px 24px 60px; }
      #navbar { top: 0 !important; }
      .ann-filter-strip { top: 65px; }
      .ann-hero-meta { flex-wrap: wrap; gap: 20px; }

      /* Gmail-style slide-in panel on mobile */
      .ann-panel {
        position: fixed;
        inset: 0;
        z-index: 2000;
        background: var(--black);
        overflow-y: auto;
        padding: 0 !important;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
        -webkit-overflow-scrolling: touch;
      }

      .ann-panel.panel-open {
        transform: translateX(0);
      }

      .ann-panel-inner {
        padding: 24px 20px 80px;
      }

      /* Back button shown on mobile */
      .ann-back-btn {
        display: flex !important;
      }
    }

    /* Back button hidden on desktop */
    .ann-back-btn {
      display: none;
      align-items: center;
      gap: 10px;
      padding: 16px 20px;
      background: rgba(8,8,8,0.95);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      position: sticky;
      top: 0;
      z-index: 10;
      cursor: pointer;
      font-family: var(--font-body);
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(245,240,240,0.6);
      border: none;
      width: 100%;
      text-align: left;
    }

    .ann-back-btn svg {
      width: 16px;
      height: 16px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
    }

    .ann-back-btn:hover {
      color: var(--white);
    }
/* ============================================
   ABOUT — STATS & MOBILE FIXES
   ============================================ */

/* 4 equal square stat boxes */
.about-stats-row {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 2px !important;
  margin: 32px 0 !important;
  border: none !important;
}

.about-stat-item {
  aspect-ratio: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 16px 8px !important;
  background: var(--glass) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
}

.about-stat-item .num {
  font-size: 1.8rem !important;
}

.about-stat-item .label {
  font-size: 0.55rem !important;
  letter-spacing: 0.12em !important;
  margin-top: 6px !important;
  text-align: center !important;
  line-height: 1.4 !important;
}

/* Hide about visual on mobile */
@media (max-width: 768px) {
  .about-visual {
    display: none !important;
  }

  .about-grid {
    grid-template-columns: 1fr !important;
  }

  .about-stats-row {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .about-stat-item .num {
    font-size: 1.4rem !important;
  }

  .about-stat-item .label {
    font-size: 0.48rem !important;
  }

  .service-card {
  aspect-ratio: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}
}
/* ============================================
   SERVICES MOBILE — CLEAN 2x2+1 FIX
   ============================================ */
@media (max-width: 768px) {

  /* Override any previous service card rules */
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2px !important;
    max-width: 100% !important;
  }

  .service-card {
    aspect-ratio: 1 !important;
    padding: 20px 16px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    align-items: flex-start !important;
    text-align: left !important;
     border: 1px solid rgba(255,255,255,0.08) !important;
  }

  /* 5th card — full width, horizontal layout */
  .services-grid .service-card:last-child {
  grid-column: 1 / -1 !important;
  aspect-ratio: 1 !important;
  width: 50% !important;
  margin: 0 auto !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-end !important;
  padding: 20px 16px !important;
}
  .services-grid .service-card:last-child .service-number {
    position: static !important;
    margin-bottom: 0 !important;
    flex-shrink: 0 !important;
  }

  .services-grid .service-card:last-child .service-icon {
    flex-shrink: 0 !important;
    margin-bottom: 0 !important;
  }

  .services-grid .service-card:last-child .service-name {
    margin-top: 0 !important;
    font-size: 1rem !important;
  }

  /* Remove descriptions on mobile */
  .service-desc {
    display: none !important;
  }

  .service-number {
    font-size: 0.55rem !important;
    margin-bottom: auto !important;
    opacity: 0.4 !important;
  }

  .service-icon {
    width: 28px !important;
    height: 28px !important;
    margin-bottom: 8px !important;
    margin-top: 0 !important;
  }

  .service-icon svg {
    width: 22px !important;
    height: 22px !important;
  }

  .service-name {
    font-size: 0.85rem !important;
    margin-top: 4px !important;
    line-height: 1.3 !important;
  }

  /* ---- MUTE BUTTON — proper position ---- */
  #mute-btn {
    position: fixed !important;
    bottom: 24px !important;
    right: 16px !important;
    width: 40px !important;
    height: 40px !important;
    z-index: 500 !important;
  }

  /* Announcement button above mute */
  .floating-announcement {
    bottom: 72px !important;
    right: 16px !important;
  }
}

@media (max-width: 768px) {
  .gallery-filter-bar {
    display: none !important;
  }
}
/* ============================================
   VIDEO PLAYER
   ============================================ */
.video-player-section {
  padding: 60px 0 80px;
}

.video-player-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 4px;
  align-items: start;
}

/* Main player */
.video-player-main {
  position: relative;
  background: #000;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.video-player-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Big play overlay */
.video-player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  z-index: 3;
  transition: opacity 0.3s ease;
}

.video-player-overlay.hidden { opacity: 0; pointer-events: none; }

.video-big-play {
  width: 72px;
  height: 72px;
  background: rgba(208,0,0,0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.video-big-play:hover { transform: scale(1.1); background: var(--red); }
.video-big-play svg { width: 28px; height: 28px; color: #fff; margin-left: 4px; }

/* Arrows */
.video-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 44px;
  height: 44px;
  background: rgba(8,8,8,0.7);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
  backdrop-filter: blur(8px);
}
.video-arrow:hover { background: var(--red); border-color: var(--red); }
.video-arrow svg { width: 20px; height: 20px; }
.video-arrow-prev { left: 12px; }
.video-arrow-next { right: 12px; }

/* Progress + controls */
.video-progress-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 24px 16px 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.video-player-main:hover .video-progress-wrap,
.video-player-main.controls-visible .video-progress-wrap { opacity: 1; }

.video-progress-track {
  height: 3px;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  margin-bottom: 10px;
  position: relative;
}
.video-progress-fill {
  height: 100%;
  background: var(--red);
  width: 0%;
  pointer-events: none;
  transition: width 0.1s linear;
}

.video-controls-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.video-ctrl-btn {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.video-ctrl-btn:hover { opacity: 1; }
.video-ctrl-btn svg { width: 18px; height: 18px; }
.video-time {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
  flex: 1;
}

/* Thumbnail strip */
.video-thumb-strip {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-height: calc(9/16 * (100vw - 120px - 200px - 4px));
  overflow-y: auto;
  scrollbar-width: none;
}
.video-thumb-strip::-webkit-scrollbar { display: none; }

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
  flex-shrink: 0;
}
.video-thumb.active { border-color: var(--red); }
.video-thumb:hover { border-color: rgba(208,0,0,0.5); }

.video-thumb-bg {
  position: absolute;
  inset: 0;
}
.video-thumb svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  color: rgba(255,255,255,0.7);
  z-index: 2;
}
.video-thumb span {
  position: absolute;
  bottom: 4px;
  right: 6px;
  font-family: var(--font-body);
  font-size: 0.5rem;
  color: rgba(255,255,255,0.4);
  z-index: 2;
  letter-spacing: 0.1em;
}

/* ============================================
   MOBILE — PHONE FIRST OVERRIDES
   ============================================ */
@media (max-width: 768px) {

  /* Video player — stacked on mobile */
  .video-player-wrap {
    grid-template-columns: 1fr !important;
    padding: 0 !important;
    gap: 2px !important;
  }

  .video-thumb-strip {
    flex-direction: row !important;
    max-height: none !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 0 16px !important;
  }

  .video-thumb {
    width: 120px !important;
    flex-shrink: 0 !important;
  }

  .video-arrow {
    width: 36px !important;
    height: 36px !important;
  }
  .video-arrow svg { width: 16px !important; height: 16px !important; }

  .video-big-play {
    width: 56px !important;
    height: 56px !important;
  }
  .video-big-play svg { width: 22px !important; height: 22px !important; }

  .video-player-section {
    padding: 40px 0 48px !important;
  }
}

/* VIDEO PLAYER */

.video-player-el{
  width:100%;
  height:100%;
  object-fit:cover;
  background:#000;
}


/* LAPTOP — HORIZONTAL */

@media (min-width:769px){

  .video-player-el{

    aspect-ratio:16/9;

    width:100%;
    height:auto;

    max-height:80vh;

    object-fit:contain;
  }

}


/* PHONE — VERTICAL */

@media (max-width:768px){

  .video-player-el{

    aspect-ratio:9/16;

    width:100%;
    height:auto;

    max-height:85vh;

    object-fit:cover;
  }

}

.video-player-el{
  transform:translateZ(0);
  backface-visibility:hidden;
}

/* VIDEO PERFORMANCE */

.video-player-el{

  transition:opacity .25s ease;

  transform:translateZ(0);

  backface-visibility:hidden;

  will-change:auto;

}


/* LAPTOP */

@media (min-width:769px){

  .video-player-el{

    aspect-ratio:16/9;

    object-fit:contain;

    max-height:80vh;
  }

}


/* PHONE */

@media (max-width:768px){

  .video-player-el{

    aspect-ratio:9/16;

    object-fit:cover;

    max-height:85vh;
  }

}

.video-thumb-number{

  position:absolute;

  right:12px;
  bottom:0;

  font-size:5rem;

  font-family:var(--font-display);

  color:rgba(255,255,255,.06);

  line-height:1;

}

/* MASONRY LOGO STYLE */

.masonry-item-bg{

  position:relative;

  overflow:hidden;

  border-radius:22px;

  background:
    radial-gradient(
      circle at top,
      rgba(208,0,0,.12),
      rgba(8,8,8,.96)
    );

  border:
    1px solid rgba(255,255,255,.05);

  display:flex;
  align-items:center;
  justify-content:center;

  transition:
    transform .35s ease,
    border-color .35s ease,
    box-shadow .35s ease;

}

.masonry-item-bg:hover{

  transform:translateY(-6px);

  border-color:rgba(208,0,0,.35);

  box-shadow:
    0 20px 40px rgba(0,0,0,.45),
    0 0 25px rgba(208,0,0,.16);

}

.gallery-logo-video{

  width:68%;
  height:68%;

  object-fit:contain;

  opacity:.16;

  filter:
    drop-shadow(0 0 18px rgba(208,0,0,.45));

  pointer-events:none;

}
/* ============================================
   GALLERY MASONRY LOGO VIDEO
   ============================================ */
.masonry-item-bg {
  position: relative;
  overflow: hidden;
}

.gallery-logo-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70% !important;
  height: auto !important;
  object-fit: contain;
  z-index: 2;
  mix-blend-mode: normal;
}
/* ============================================
   MOBILE-FIRST OVERHAUL — COMPLETE REWRITE
   ============================================ */

/* ── Global touch & input fixes ───────────────── */
input, select, textarea,
.form-input, .form-select, .form-textarea {
  font-size: 16px !important;
  -webkit-text-size-adjust: 100%;
}

body { padding-bottom: env(safe-area-inset-bottom); }

button:focus-visible, a:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.filter-btn, .batches-filter-btn, .ann-filter-btn,
.video-thumb, .video-ctrl-btn, .video-arrow,
.video-big-play, .batch-card, .service-card,
.gallery-preview-card {
  -webkit-tap-highlight-color: transparent;
}

/* ── Batches teaser (mobile-only element) ─────── */
.batches-mobile-teaser {
  display: none; /* hidden on desktop */
}

@media (max-width: 768px) {
  .batches-mobile-teaser {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    padding: 56px 24px 64px;
  }

  .batches-teaser-eyebrow {
    font-family: var(--font-elegant);
    font-size: 0.72rem;
    letter-spacing: 0.45em;
    color: var(--red);
    text-transform: uppercase;
    font-style: italic;
    display: block;
    margin-bottom: 20px;
  }

  .batches-teaser-count {
    font-family: var(--font-display);
    font-size: clamp(5rem, 28vw, 8rem);
    line-height: 0.85;
    color: var(--white);
    letter-spacing: 0.02em;
    display: block;
    margin-bottom: 4px;
  }

  .batches-teaser-count span {
    color: var(--red);
  }

  .batches-teaser-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(245,240,240,0.45);
    display: block;
    margin-bottom: 28px;
  }

  .batches-teaser-rule {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, var(--red), var(--magenta));
    margin: 0 auto 28px;
  }

  .batches-teaser-desc {
    font-family: var(--font-elegant);
    font-size: 1.05rem;
    font-style: italic;
    color: rgba(200,162,200,0.7);
    line-height: 1.6;
    max-width: 280px;
    margin-bottom: 36px;
  }

  /* Hide the real cards grid on mobile */
  #batches-preview .batches-scroll,
  #batches-preview .section-header {
    display: none !important;
  }

  /* Hide the "View All Batches" link at bottom — teaser has its own CTA */
  #batches-preview > div[style*="margin-top:48px"] {
    display: none !important;
  }

  /* Show teaser instead */
  #batches-preview {
    padding: 0 !important;
  }
}

/* ── Navigation — full-screen mobile ─────────── */
@media (max-width: 1024px) {
  #navbar { padding: 14px 20px; }
  #navbar.scrolled { padding: 10px 20px; }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10001;
    padding: 4px;
    min-height: unset;
    min-width: unset;
  }

  .hamburger span {
    width: 100%;
    height: 2px;
    background: #fff;
    transition: 0.35s ease;
    display: block;
  }

  .hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .nav-links {
    position: fixed;
    inset: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    background: rgba(8,8,8,0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10000;
    overflow-y: auto;
  }

  .nav-links.open { transform: translateX(0); }

  .nav-links li { width: 100%; text-align: center; }

  .nav-links a {
    font-size: 1.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: var(--font-display);
    color: rgba(245,240,240,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
    width: 100%;
    min-height: 56px;
    transition: color 0.2s ease;
  }

  .nav-links a:hover,
  .nav-links a.active { color: var(--red); }
  .nav-links a::after { display: none; }

  .nav-cta {
    border: 1px solid var(--red) !important;
    padding: 14px 40px !important;
    font-size: 0.75rem !important;
    font-family: var(--font-body) !important;
    color: var(--white) !important;
    letter-spacing: 0.2em !important;
    margin-top: 8px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

/* ── Hero ─────────────────────────────────────── */
@media (max-width: 768px) {
  #hero {
    min-height: 100svh !important;
    padding: 80px 20px 48px !important;
    background-attachment: scroll !important;
    animation: none !important;
  }

  .hero-content {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .hero-eyebrow {
    font-size: 0.68rem !important;
    letter-spacing: 0.2em !important;
    margin-bottom: 16px !important;
  }

  .hero-logo-video { width: min(240px, 72vw) !important; }

  .hero-tagline {
    font-size: clamp(1.3rem, 5.5vw, 1.6rem) !important;
    max-width: 300px !important;
    line-height: 1.3 !important;
    margin-bottom: 10px !important;
  }

  .hero-sub {
    font-size: 0.68rem !important;
    letter-spacing: 0.1em !important;
    line-height: 1.85 !important;
    max-width: 300px !important;
  }

  .hero-buttons {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 260px !important;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    text-align: center !important;
    padding: 16px 24px !important;
    justify-content: center !important;
    min-height: 52px;
  }

  .scroll-indicator { display: none; }
}

/* ── Buttons ──────────────────────────────────── */
@media (max-width: 768px) {
  .btn-primary, .btn-secondary, .btn-ghost {
    padding: 15px 28px;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .batch-actions {
    flex-direction: column !important;
    gap: 8px !important;
  }

  .batch-actions .btn-primary,
  .batch-actions .btn-secondary {
    width: 100% !important;
    padding: 14px 20px !important;
    font-size: 0.68rem !important;
    justify-content: center !important;
  }
}

/* ── About ────────────────────────────────────── */
@media (max-width: 768px) {
  #about {
    padding: 64px 20px !important;
  }

  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    max-width: 100% !important;
  }

  .about-visual { display: none !important; }

  .about-stats-row {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2px !important;
    margin: 32px 0 !important;
  }

  .about-stat-item {
    aspect-ratio: 1 !important;
    padding: 12px 6px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .about-stat-item .num {
    font-size: 1.5rem !important;
  }

  .about-stat-item .label {
    font-size: 0.45rem !important;
    letter-spacing: 0.08em !important;
    text-align: center !important;
    line-height: 1.4 !important;
    margin-top: 5px !important;
  }

  .about-lead {
    font-size: 1.1rem !important;
    margin-bottom: 20px !important;
  }
}

/* ── Founder ──────────────────────────────────── */
@media (max-width: 768px) {
  #founder {
    padding: 64px 20px !important;
  }

  .founder-inner {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .founder-portrait { display: none !important; }

  .founder-quote {
    font-size: 1.1rem;
    padding-left: 16px;
    margin: 24px 0;
  }

  .founder-body { font-size: 0.85rem; }

  .founder-content > div[style] {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .founder-content > div[style] .btn-primary,
  .founder-content > div[style] .btn-secondary {
    text-align: center !important;
    width: 100%;
  }
}

/* ── Services ─────────────────────────────────── */
@media (max-width: 768px) {
  #services {
    padding: 64px 20px !important;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2px !important;
    max-width: 100% !important;
  }

  .service-card {
    aspect-ratio: 1 !important;
    padding: 20px 16px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    align-items: flex-start !important;
    text-align: left !important;
  }

  .services-grid .service-card:last-child {
    grid-column: 1 / -1 !important;
    aspect-ratio: auto !important;
    width: 50% !important;
    margin: 0 auto !important;
  }

  .service-number {
    font-size: 3rem !important;
    opacity: 0.1 !important;
    margin-bottom: auto !important;
  }

  .service-icon {
    width: 26px !important;
    height: 26px !important;
    margin-bottom: 6px !important;
  }

  .service-icon svg {
    width: 22px !important;
    height: 22px !important;
  }

  .service-name {
    font-size: 0.9rem !important;
    letter-spacing: 0.03em !important;
    line-height: 1.2 !important;
    margin-bottom: 0 !important;
  }

  .service-desc { display: none !important; }
}

/* ── Gallery preview ──────────────────────────── */
@media (max-width: 768px) {
  #gallery-preview {
    padding: 64px 20px !important;
  }

  .gallery-preview-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 4px !important;
    max-width: 100% !important;
  }

  .gallery-card-title { font-size: 1rem; }
}

@media (max-width: 440px) {
  .gallery-preview-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ── Contact ──────────────────────────────────── */
@media (max-width: 768px) {
  #contact {
    padding: 64px 20px !important;
  }

  .contact-inner {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    max-width: 100% !important;
  }

  .enquiry-form {
    padding: 28px 20px !important;
  }

  .form-input, .form-select, .form-textarea {
    font-size: 16px !important;
    padding: 14px 16px;
  }

  .contact-item-value {
    font-size: 0.85rem;
    word-break: break-all;
  }
}

/* ── Locations ────────────────────────────────── */
@media (max-width: 768px) {
  #locations {
    padding: 56px 20px !important;
  }

  .maps-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    max-width: 100% !important;
  }

  .map-embed { height: 240px; }
}

/* ── Footer ───────────────────────────────────── */
@media (max-width: 768px) {
  footer {
    padding: 56px 20px 40px !important;
  }

  .footer-top {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    max-width: 100% !important;
    padding-bottom: 40px;
  }

  .footer-bottom {
    flex-direction: column !important;
    gap: 10px !important;
    text-align: center !important;
    padding-top: 24px;
  }

  .footer-brand-name { font-size: 1.8rem; }

  .footer-policy-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
}

/* ── Section headers ──────────────────────────── */
@media (max-width: 768px) {
  .section-header { margin-bottom: 40px; }

  .section-title {
    font-size: clamp(2rem, 9vw, 3.2rem) !important;
  }

  .section-eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
  }

  .page-header {
    padding: 100px 20px 48px !important;
  }

  .page-header .section-title {
    font-size: clamp(3rem, 14vw, 5rem) !important;
  }
}

/* ── Gallery page ─────────────────────────────── */
@media (max-width: 768px) {
  .gallery-location-cards {
    grid-template-columns: 1fr !important;
    padding: 0 20px !important;
    margin-bottom: 40px !important;
    gap: 8px !important;
  }

  .gallery-loc-title { font-size: 1.8rem; }

  /* Filter bar — scrollable horizontal strip */
  .gallery-filter-bar {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    padding: 0 20px !important;
    gap: 6px !important;
    margin-bottom: 32px !important;
    justify-content: flex-start !important;
  }

  .gallery-filter-bar::-webkit-scrollbar { display: none !important; }

  .filter-btn {
    flex-shrink: 0 !important;
    padding: 10px 18px !important;
    font-size: 0.62rem !important;
    white-space: nowrap !important;
    min-height: 42px !important;
    min-width: unset !important;
  }

  .gallery-masonry-section {
    padding: 0 20px 48px !important;
    max-width: 100% !important;
  }

  .gallery-masonry {
    columns: 2 !important;
    column-gap: 6px !important;
  }

  .masonry-item { margin-bottom: 6px !important; }

  .gallery-section-divider {
    padding: 0 20px !important;
    margin-bottom: 28px !important;
  }
}

@media (max-width: 400px) {
  .gallery-masonry { columns: 1 !important; }
}

/* ── Batches page — base (desktop) styles ────────── */

.batches-hero {
  min-height: 340px;
  padding: 160px 60px 80px;
  text-align: center;
  background: var(--spotlight);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-eyebrow {
  font-family: var(--font-elegant);
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-style: italic;
  color: var(--lavender);
  margin-bottom: 16px;
  display: block;
}

.batches-hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 10vw, 9rem);
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 0;
}

.batches-hero-title .accent {
  color: var(--red);
}

.batches-hero-sub {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(245,240,240,0.5);
  letter-spacing: 0.12em;
  margin-top: 8px;
}

.batches-filter-bar {
  padding: 24px 60px;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--glass-border);
  position: sticky;
  top: 70px;
  z-index: 100;
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.batches-filter-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 900px;
}

.batches-filter-btn {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--glass-border);
  color: rgba(245,240,240,0.55);
  padding: 10px 22px;
  cursor: pointer;
  transition: all 0.25s ease;
  min-height: 40px;
}

.batches-filter-btn:hover {
  border-color: rgba(208,0,0,0.4);
  color: var(--white);
}

.batches-filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.batches-page-section {
  padding: 64px 60px 100px;
  max-width: 1400px;
  margin: 0 auto;
}

.batches-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}

.batch-fee-note {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: rgba(245,240,240,0.45);
  letter-spacing: 0.05em;
  margin-left: 4px;
}

/* hidden card state for JS filter */
.batch-card[hidden],
.batch-card.hidden {
  display: none;
}

/* ── Batches page — tablet ────────────────────── */
@media (max-width: 1024px) {
  .batches-page-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ── Batches page ─────────────────────────────── */
@media (max-width: 768px) {
  .batches-hero {
    padding: 100px 20px 48px !important;
    min-height: auto !important;
  }

  .batches-hero-title {
    font-size: clamp(3.5rem, 16vw, 5.5rem) !important;
  }

  .batches-filter-bar {
    padding: 0 !important;
    margin-bottom: 32px;
    position: sticky;
    top: 60px;
    z-index: 100;
    background: rgba(8,8,8,0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .batches-filter-inner {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    padding: 12px 20px !important;
    gap: 6px !important;
    justify-content: flex-start !important;
  }

  .batches-filter-inner::-webkit-scrollbar { display: none !important; }

  .batches-filter-btn {
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    padding: 10px 18px !important;
    font-size: 0.62rem !important;
    min-height: 42px !important;
    min-width: unset !important;
  }

  .batches-page-section {
    padding: 24px 20px 64px !important;
  }

  .batches-page-grid {
    grid-template-columns: 1fr !important;
    gap: 2px !important;
    max-width: 100% !important;
  }

  .batch-card { padding: 28px 20px !important; }
  .batch-name { font-size: 1.4rem !important; }
  .batch-age { font-size: 0.82rem !important; }
  .batch-timing { font-size: 0.82rem !important; }
  .batch-location { font-size: 0.75rem !important; }
  .batch-fee { font-size: 1.6rem !important; }
}

/* ── Announcements page ───────────────────────── */
@media (max-width: 768px) {
  .ann-hero { padding: 100px 20px 48px !important; }
  .ann-main {
    grid-template-columns: 1fr !important;
    padding: 32px 20px 64px !important;
    gap: 0 !important;
  }

  .ann-sidebar {
    position: relative !important;
    top: 0 !important;
    max-height: none !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
    overflow-y: visible !important;
  }

  .ann-panel {
    position: fixed !important;
    inset: 0 !important;
    z-index: 2000 !important;
    background: var(--black) !important;
    overflow-y: auto !important;
    padding: 0 !important;
    transform: translateX(100%) !important;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .ann-panel.panel-open { transform: translateX(0) !important; }
  .ann-panel-inner { padding: 24px 20px 80px !important; }
  .ann-back-btn { display: flex !important; min-height: 52px !important; }
  .ann-filter-inner { padding: 0 20px !important; }
  .ann-pinned-banner { padding: 18px 20px !important; margin-bottom: 32px !important; }

  .ann-filter-btn {
    padding: 14px 16px !important;
    font-size: 0.6rem !important;
    min-height: 44px !important;
  }

  .ann-filter-strip { top: 60px; }
}

/* ── Floating buttons ─────────────────────────── */
@media (max-width: 768px) {
  .floating-social { display: none !important; }

  #mute-btn {
    position: fixed !important;
    bottom: calc(20px + env(safe-area-inset-bottom)) !important;
    right: 16px !important;
    width: 44px !important;
    height: 44px !important;
    z-index: 500 !important;
  }

  .floating-announcement {
    position: fixed !important;
    bottom: calc(72px + env(safe-area-inset-bottom)) !important;
    right: 16px !important;
    width: 44px !important;
    height: 44px !important;
  }
}

/* ── Video player — mobile-first rebuild ─────── */
.video-player-section { padding: 48px 0 56px; }

.video-player-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 100%;
  padding: 0;
}

.video-player-main {
  position: relative;
  background: #000;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 9/16;
  max-height: 85svh;
}

.video-player-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}

.video-player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  z-index: 3;
  transition: opacity 0.3s ease;
}

.video-player-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.video-big-play {
  width: 64px;
  height: 64px;
  background: rgba(208,0,0,0.92);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  min-height: unset;
  min-width: unset;
}

.video-big-play:active { transform: scale(0.92); }
.video-big-play svg { width: 24px; height: 24px; color: #fff; margin-left: 3px; }

.video-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 44px;
  height: 44px;
  background: rgba(8,8,8,0.65);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  backdrop-filter: blur(8px);
  border-radius: 50%;
  min-height: unset;
  min-width: unset;
}

.video-arrow:active { background: var(--red); border-color: var(--red); }
.video-arrow svg { width: 18px; height: 18px; }
.video-arrow-prev { left: 14px; }
.video-arrow-next { right: 14px; }

/* Controls — always visible on mobile */
.video-progress-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  padding: 40px 16px 16px;
  opacity: 1 !important;
  transition: opacity 0.3s ease;
}

@media (min-width: 769px) {
  .video-progress-wrap { opacity: 0; }
  .video-player-main:hover .video-progress-wrap,
  .video-player-main.controls-visible .video-progress-wrap { opacity: 1; }
}

.video-progress-track {
  height: 4px;
  background: rgba(255,255,255,0.18);
  cursor: pointer;
  margin-bottom: 10px;
  position: relative;
  border-radius: 2px;
  padding: 8px 0;
  margin-top: -8px;
  box-sizing: content-box;
}

.video-progress-fill {
  height: 4px;
  background: var(--red);
  width: 0%;
  pointer-events: none;
  border-radius: 2px;
  transition: width 0.1s linear;
  position: relative;
}

.video-progress-fill::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(208,0,0,0.6);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.video-player-main.controls-visible .video-progress-fill::after { opacity: 1; }
.video-progress-track:hover .video-progress-fill::after { opacity: 1; }

.video-controls-row {
  display: flex;
  align-items: center;
  gap: 4px;
}

.video-ctrl-btn {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity 0.2s;
  min-height: unset;
  min-width: unset;
  width: 36px;
  height: 36px;
  border-radius: 4px;
}

.video-ctrl-btn:active {
  opacity: 1;
  background: rgba(255,255,255,0.1);
}

.video-ctrl-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.video-time {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  flex: 1;
  padding-left: 4px;
}

/* Thumbnail strip — horizontal scroll on mobile */
.video-thumb-strip {
  display: flex;
  flex-direction: row;
  gap: 4px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px 16px;
  background: rgba(4,4,4,0.98);
  border-top: 1px solid rgba(255,255,255,0.06);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  max-height: none;
}

.video-thumb-strip::-webkit-scrollbar { display: none; }

.video-thumb {
  position: relative;
  flex-shrink: 0;
  width: 72px;
  aspect-ratio: 9/16;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 4px;
  transition: border-color 0.2s ease;
  min-height: unset;
  min-width: unset;
}

.video-thumb.active { border-color: var(--red); }
.video-thumb:active { border-color: rgba(208,0,0,0.6); }

.video-thumb-bg {
  position: absolute;
  inset: 0;
  border-radius: 2px;
}

.video-thumb svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  color: rgba(255,255,255,0.75);
  z-index: 2;
}

.video-thumb span {
  position: absolute;
  bottom: 4px;
  right: 4px;
  font-family: var(--font-body);
  font-size: 0.48rem;
  color: rgba(255,255,255,0.4);
  z-index: 2;
  letter-spacing: 0.08em;
}

.video-thumb.active span { color: var(--red); }

/* Desktop video layout */
@media (min-width: 769px) {
  .video-player-wrap {
    display: grid;
    grid-template-columns: 1fr 160px;
    gap: 4px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    align-items: start;
  }

  .video-player-main {
    aspect-ratio: 16/9;
    max-height: 75vh;
  }

  .video-player-el { object-fit: contain; }

  .video-thumb-strip {
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    background: transparent;
    border-top: none;
    max-height: 600px;
    gap: 2px;
  }

  .video-thumb {
    width: 100%;
    aspect-ratio: 16/9;
  }

  .video-big-play { width: 72px; height: 72px; }
  .video-big-play svg { width: 28px; height: 28px; }
}

@media (max-width: 768px) {
  .video-player-section { padding: 40px 0 48px; }
  .video-player-section .section-header { padding: 0 20px 32px; }
}

/* ── Touch hover fixes ────────────────────────── */
@media (hover: none) {
  .masonry-item:hover .masonry-item-bg { transform: none !important; }
  .gallery-preview-card:hover::before { opacity: 0.6 !important; }
  .gallery-preview-card:hover .gallery-card-content { transform: translateY(0) !important; }
  .service-card:hover { transform: none !important; }
}

/* ── Tablet 769px–1024px ──────────────────────── */
@media (min-width: 769px) and (max-width: 1024px) {
  #about, #founder, #services, #gallery-preview, #contact, #locations {
    padding: 80px 32px !important;
  }

  .services-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .services-grid .service-card:last-child {
    grid-column: auto !important;
    width: 100% !important;
  }

  .gallery-preview-grid { grid-template-columns: repeat(2, 1fr) !important; }

  .batches-scroll {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 100% !important;
  }

  /* Show batches grid on tablet, hide teaser */
  .batches-mobile-teaser { display: none !important; }
  #batches-preview .batches-scroll { display: grid !important; }
  #batches-preview .section-header { display: block !important; }
  #batches-preview > div[style*="margin-top:48px"] { display: block !important; }
  #batches-preview { padding: 80px 32px !important; }

  .footer-top { grid-template-columns: 1fr 1fr !important; gap: 40px !important; }

  .gallery-location-cards { padding: 0 32px !important; }
  .gallery-masonry-section { padding: 0 32px 60px !important; }
  .gallery-masonry { columns: 3 !important; }

  .batches-page-grid { grid-template-columns: repeat(2, 1fr) !important; }

  .ann-main { padding: 40px 32px 80px !important; }
  .ann-filter-inner { padding: 0 32px !important; }
  .floating-social { display: flex !important; left: 16px !important; }
}

/* ============================================
   FOUNDER PHOTO — REAL IMAGE
   ============================================ */

/* Desktop portrait uses the real photo */
.founder-portrait-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Hide the old placeholder initials now photo exists */
.founder-portrait-placeholder {
  display: none;
}

/* ── Mobile-only founder photo card ─────────── */
.founder-mobile-photo {
  display: none; /* hidden on desktop — shown only on mobile */
}

@media (max-width: 768px) {

  /* Hide the desktop portrait column (already done above),
     show the mobile card instead */
  .founder-portrait {
    display: none !important;
  }

  .founder-mobile-photo {
    display: block;
    width: 100%;
    padding: 0 20px;
    margin-bottom: 40px;
  }

  .founder-mobile-photo-inner {
    position: relative;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    aspect-ratio: 3/4;
    overflow: hidden;
  }

  .founder-mobile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  .founder-mobile-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 20px 20px;
    background: linear-gradient(0deg, rgba(8,8,8,0.95) 0%, transparent 100%);
  }

  .founder-mobile-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--white);
    display: block;
    margin-bottom: 4px;
  }

  .founder-mobile-title {
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--lavender);
    display: block;
  }

  .founder-mobile-corner-tl {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 36px;
    height: 36px;
    border-left: 2px solid var(--magenta);
    border-top: 2px solid var(--magenta);
    pointer-events: none;
  }

  .founder-mobile-corner-br {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 36px;
    height: 36px;
    border-right: 2px solid var(--magenta);
    border-bottom: 2px solid var(--magenta);
    pointer-events: none;
  }

  /* Stack founder section: photo card first, then content */
  .founder-inner {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  /* Section becomes a flex column so mobile photo sits on top */
  #founder {
    padding: 56px 0 64px !important;
    display: flex !important;
    flex-direction: column !important;
  }

  /* founder-inner (which contains the desktop portrait + content)
     on mobile only shows the content column */
  #founder .founder-inner {
    order: 2;
  }

  /* mobile photo card comes first */
  .founder-mobile-photo {
    order: 1;
  }

  .founder-content {
    padding: 0 20px !important;
  }

  .founder-quote {
    font-size: 1rem !important;
    padding-left: 16px !important;
    margin: 24px 0 !important;
  }

  .founder-highlights {
    gap: 12px !important;
    margin: 28px 0 !important;
  }

  .founder-highlight-text {
    font-size: 0.82rem !important;
  }

  .founder-content > div[style*="display:flex"] {
    flex-direction: column !important;
  }

  .founder-content > div[style*="display:flex"] .btn-primary,
  .founder-content > div[style*="display:flex"] .btn-secondary {
    text-align: center !important;
    width: 100% !important;
    justify-content: center !important;
  }
}
/* ============================================
   GALLERY LIGHTBOX
   ============================================ */

/* ── Backdrop ─────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 4, 4, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

/* ── Image stage ──────────────────────────── */
.lightbox-stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 88svh;
  object-fit: contain;
  display: block;
  border-radius: 2px;
  transition: opacity 0.2s ease, transform 0.2s ease;
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox-img.transitioning {
  opacity: 0;
  transform: scale(0.97);
}

/* ── Counter ──────────────────────────────── */
.lightbox-counter {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  color: rgba(245, 240, 240, 0.45);
  text-transform: uppercase;
  pointer-events: none;
  white-space: nowrap;
}

/* ── Close button ─────────────────────────── */
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: rgba(8, 8, 8, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(245, 240, 240, 0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border-radius: 50%;
  z-index: 2;
  min-height: unset;
  min-width: unset;
  -webkit-tap-highlight-color: transparent;
}

.lightbox-close:hover,
.lightbox-close:active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.lightbox-close svg {
  width: 18px;
  height: 18px;
  pointer-events: none;
}

/* ── Arrow buttons ────────────────────────── */
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(8, 8, 8, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(245, 240, 240, 0.8);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
  border-radius: 50%;
  z-index: 2;
  min-height: unset;
  min-width: unset;
  -webkit-tap-highlight-color: transparent;
}

.lightbox-arrow:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.lightbox-arrow:active {
  transform: translateY(-50%) scale(0.92);
}

.lightbox-arrow svg {
  width: 22px;
  height: 22px;
  pointer-events: none;
}

.lightbox-arrow-prev { left: 20px; }
.lightbox-arrow-next { right: 20px; }

/* Hide arrows if only 1 image */
.lightbox.single .lightbox-arrow {
  display: none;
}

/* ── Thumbnail strip ──────────────────────── */
.lightbox-thumbs {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 3px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 12px 60px;
  background: linear-gradient(transparent, rgba(4, 4, 4, 0.9));
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.lightbox-thumbs::-webkit-scrollbar {
  display: none;
}

.lightbox-thumb {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.4;
  border: 2px solid transparent;
  border-radius: 2px;
  transition: opacity 0.2s, border-color 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.lightbox-thumb.active {
  opacity: 1;
  border-color: var(--red);
}

.lightbox-thumb:hover {
  opacity: 0.8;
}

/* ── Mobile adjustments ───────────────────── */
@media (max-width: 768px) {
  .lightbox-img {
    max-width: 100vw;
    max-height: 80svh;
  }

  .lightbox-arrow {
    width: 44px;
    height: 44px;
  }

  .lightbox-arrow svg {
    width: 18px;
    height: 18px;
  }

  .lightbox-arrow-prev { left: 8px; }
  .lightbox-arrow-next { right: 8px; }

  .lightbox-thumbs {
    padding: 10px 16px;
    gap: 3px;
  }

  .lightbox-thumb {
    width: 44px;
    height: 44px;
  }

  .lightbox-counter {
    top: 14px;
    font-size: 0.58rem;
  }
}

/* ── Masonry cursor hint ──────────────────── */
.masonry-item {
  cursor: zoom-in;
}

/* ── Lightbox pointer-event fix ─────────────── */
/* Children must not block clicks on .masonry-item */
.masonry-item * {
  pointer-events: none;
}
/* But when masonry-item itself is clickable, restore for thumb strip only */
.lightbox-thumbs img {
  pointer-events: auto;
}
/* ===== FLOATING SOCIAL: HIDE NEAR FOOTER ===== */
.floating-social {
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.floating-social--hidden {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateX(-20px);
}

/* ===== FLOATING SOCIAL: WHATSAPP BRAND ICON ===== */
.floating-social-whatsapp {
  color: #25D366 !important;
}
.floating-social-whatsapp:hover {
  color: #25D366 !important;
}
.floating-social-whatsapp svg {
  width: 18px !important;
  height: 18px !important;
}

/* ===== ENQUIRY GOOGLE FORM ===== */
.enquiry-google-form-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 32px 0 12px;
}
.enquiry-google-form-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(245,240,240,0.55);
  letter-spacing: 0.05em;
  line-height: 1.7;
}
.enquiry-google-btn {
  min-width: 200px;
  text-align: center;
}

.floating-social-whatsapp img{
    width:24px;
    height:24px;
    display:block;

    opacity:0.65;
    filter: grayscale(1) brightness(0.7);
    transition: all 0.3s ease;
}

.floating-social-whatsapp:hover img{
    opacity:1;
    filter: grayscale(1) brightness(1);
}

/* ── Cookie Consent Banner ── */
#cookie-banner {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(140px);
  z-index: 99990;
  background: rgba(10,10,10,0.96);
  border: 1px solid rgba(208,0,0,0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 500px;
  width: calc(100vw - 40px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.55);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.55s cubic-bezier(0.34,1.4,0.64,1), opacity 0.4s;
}
#cookie-banner.cookie-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: all;
}
#cookie-banner.cookie-hiding {
  transform: translateX(-50%) translateY(140px);
  opacity: 0;
  pointer-events: none;
}
.cookie-emoji {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
}
.cookie-text { flex: 1; min-width: 0; }
.cookie-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--white, #f5f0f0);
  margin-bottom: 4px;
  text-transform: uppercase;
}
.cookie-sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: rgba(245,240,240,0.38);
  line-height: 1.5;
}
.cookie-accept {
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--red, #D00000);
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.cookie-accept:hover {
  background: #a80000;
  transform: scale(1.04);
}

/* ── Enquiry Form Fields ── */
    .enquiry-form-fields { display: flex; flex-direction: column; gap: 16px; }
    .form-row { display: flex; flex-direction: column; }
    .form-group { display: flex; flex-direction: column; gap: 6px; }
    .form-label {
      font-family: var(--font-body);
      font-size: 0.65rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(245,240,240,0.5);
    }
    .form-input {
      background: rgba(245,240,240,0.04);
      border: 1px solid rgba(245,240,240,0.12);
      color: var(--white);
      font-family: var(--font-body);
      font-size: 0.85rem;
      padding: 12px 16px;
      outline: none;
      transition: border-color 0.25s;
      border-radius: 0;
      width: 100%;
      box-sizing: border-box;
      -webkit-appearance: none;
      appearance: none;
    }
    .form-input:focus { border-color: var(--red); }
    .form-input::placeholder { color: rgba(245,240,240,0.25); }
    .form-select { cursor: pointer; }
    .form-select option { background: #0f0f0f; color: #f5f0f0; }
    .form-textarea { resize: vertical; min-height: 80px; }
    .form-hint {
      font-family: var(--font-body);
      font-size: 0.7rem;
      min-height: 14px;
      transition: color 0.2s;
    }
    .enquiry-submit-btn {
      display: block;
      text-align: center;
      border: none;
      cursor: pointer;
    }
    /* ── Success State ── */
    .form-success {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 48px 24px;
      text-align: center;
    }
    .form-success-icon {
      width: 56px; height: 56px;
      background: rgba(80,200,120,0.12);
      border: 1px solid rgba(80,200,120,0.4);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem;
      color: rgba(80,200,120,0.9);
    }
    .form-success-title {
      font-family: var(--font-display);
      font-size: 1.4rem;
      color: var(--white);
      letter-spacing: 0.05em;
    }
    .form-success-sub {
      font-family: var(--font-body);
      font-size: 0.8rem;
      color: rgba(245,240,240,0.45);
      max-width: 280px;
    }

    .hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  max-width: 1200px;
  margin-top: 60px;
  border: 1px solid rgba(255,255,255,0.08);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;        /* was 40px 20px */
  border-right: 1px solid rgba(255,255,255,0.08);
  background: rgba(208,0,0,0.15);   /* red tint */
}

.hero-stat-item:last-child { border-right: none; }

.hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);   
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}

.hero-stat-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,240,240,0.5);
}

@media (max-width: 600px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat-item:nth-child(2) { border-right: none; }
  .hero-stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.08); }
  .hero-stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.08); border-right: none; }
}

.service-card {
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top right,
    rgba(0,0,0,0.95) 0%,
    rgba(0,0,0,0.80) 40%,
    rgba(0,0,0,0.30) 100%
  );
  z-index: 0;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card .service-number,
.service-card .service-name,
.service-card .service-desc {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 1px 2px rgba(0,0,0,1);
}

/* ============================================
   MOBILE OPTIMISATION IMPROVEMENTS
   ============================================ */

/* ── General section spacing on small phones ── */
@media (max-width: 480px) {
  #about, #founder, #services, #batches-preview, #contact, #locations {
    padding: 56px 18px !important;
  }

  footer {
    padding: 60px 20px 32px !important;
  }
}

/* ── Navbar — tighter on small phones ── */
@media (max-width: 480px) {
  #navbar {
    padding: 16px 18px !important;
  }

  .nav-logo {
    font-size: 1.1rem !important;
    letter-spacing: 0.15em !important;
  }
}

/* ── Hero stats — better 2×2 grid on mobile ── */
@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    border: 1px solid rgba(255,255,255,0.07);
    margin-top: 28px !important;
  }

  .hero-stat-item {
    padding: 16px 12px !important;
    border-right: 1px solid rgba(255,255,255,0.07) !important;
    border-bottom: 1px solid rgba(255,255,255,0.07) !important;
  }

  .hero-stat-item:nth-child(2),
  .hero-stat-item:nth-child(4) {
    border-right: none !important;
  }

  .hero-stat-item:nth-child(3),
  .hero-stat-item:nth-child(4) {
    border-bottom: none !important;
  }

  .hero-stat-num {
    font-size: 1.8rem !important;
  }

  .hero-stat-label {
    font-size: 0.58rem !important;
    letter-spacing: 0.06em !important;
  }
}

/* ── About section ── */
@media (max-width: 480px) {
  .about-lead {
    font-size: 1.05rem !important;
    line-height: 1.7 !important;
  }

  .about-body {
    font-size: 0.85rem !important;
    line-height: 1.85 !important;
  }
}

/* ── Services grid — full width cards on small phones ── */
@media (max-width: 480px) {
  .service-card {
    min-height: 220px !important;
    padding: 24px 20px !important;
  }

  .service-name {
    font-size: 1rem !important;
  }

  .service-desc {
    font-size: 0.78rem !important;
    line-height: 1.7 !important;
  }
}

/* ── Batch cards — full width, better touch targets ── */
@media (max-width: 480px) {
  .batch-card {
    padding: 24px 20px !important;
  }

  .batch-name {
    font-size: 1rem !important;
  }

  .batch-actions {
    flex-direction: column !important;
    gap: 10px !important;
  }

  .batch-actions .btn-primary,
  .batch-actions .btn-secondary {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
  }
}

/* ── Contact section ── */
@media (max-width: 480px) {
  .contact-item {
    gap: 12px !important;
    align-items: flex-start !important;
  }

  .contact-item-value {
    font-size: 0.8rem !important;
    word-break: break-word !important;
  }

  .enquiry-form {
    padding: 28px 20px !important;
  }

  .form-input,
  .form-select {
    font-size: 16px !important; /* prevents iOS zoom on focus */
    padding: 14px 16px !important;
  }

  .enquiry-submit-btn {
    min-height: 54px !important;
    font-size: 0.78rem !important;
  }
}

/* ── Maps — full width on mobile ── */
@media (max-width: 480px) {
  .maps-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .map-embed,
  .map-embed iframe {
    height: 220px !important;
    width: 100% !important;
  }

  .map-card {
    border-radius: 4px;
    overflow: hidden;
  }
}

/* ── Footer improvements on mobile ── */
@media (max-width: 480px) {
  .footer-top {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
    padding-bottom: 36px !important;
  }

  .footer-brand-desc {
    max-width: 100% !important;
    font-size: 0.82rem !important;
  }

  .footer-social {
    gap: 10px !important;
  }

  .social-icon {
    width: 44px !important;
    height: 44px !important; /* bigger tap targets */
  }

  .footer-policy-list {
    flex-direction: column !important;
    gap: 10px !important;
  }

  .footer-policy-list li {
    font-size: 0.75rem !important;
    line-height: 1.6 !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    gap: 8px !important;
    text-align: center !important;
    padding-top: 20px !important;
  }

  .footer-copy,
  .footer-made {
    font-size: 0.68rem !important;
  }
}

/* ── Mobile nav menu — bigger tap targets ── */
@media (max-width: 1024px) {
  .nav-links a {
    min-height: 52px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.05rem !important;
    padding: 0 24px !important;
  }

  .nav-cta {
    min-height: 52px !important;
  }
}

/* ── Section headers on phones ── */
@media (max-width: 480px) {
  .section-title {
    font-size: clamp(1.8rem, 8vw, 2.4rem) !important;
    line-height: 1.1 !important;
  }

  .section-eyebrow {
    font-size: 0.6rem !important;
    letter-spacing: 0.25em !important;
  }
}

/* ── Cookie banner — better mobile layout ── */
@media (max-width: 480px) {
  #cookie-banner {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding: 18px 18px !important;
    border-radius: 12px 12px 0 0 !important;
  }

  .cookie-accept {
    width: 100% !important;
    text-align: center !important;
    padding: 12px !important;
  }
}

/* ── Prevent iOS text size adjustment ── */
@media (max-width: 480px) {
  html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }
}