/* ============================================
   NYLAH'S KITCHEN — CINEMATIC WEBSITE
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #0a0a0a;
  --black-light: #111111;
  --black-mid: #1a1a1a;
  --gold: #c9a96e;
  --gold-light: #dfc08a;
  --gold-dark: #a8864e;
  --white: #f5f0e8;
  --white-pure: #ffffff;
  --cream: #f5f0e8;
  --grey: #888888;
  --grey-dark: #444444;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'Space Grotesk', monospace;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-expo: cubic-bezier(0.87, 0, 0.13, 1);
}

html {
  font-size: 16px;
  scroll-behavior: auto; /* Lenis handles smooth scroll */
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Background sheen - dark top, lighter bottom */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0a0a0a 0%, #151515 40%, #1a1a1a 100%);
  z-index: -1;
  pointer-events: none;
}

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

a:hover {
  color: var(--gold-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

/* --- PRELOADER --- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.preloader-logo {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 3rem;
}

.logo-letter {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 800;
  color: var(--gold);
  opacity: 0;
  transform: translateY(40px);
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: var(--grey-dark);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 1px;
}

.preloader-bar-fill {
  width: 0%;
  height: 100%;
  background: var(--gold);
  border-radius: 1px;
}

/* --- CUSTOM CURSOR --- */
.cursor {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width 0.3s var(--ease-out-expo), height 0.3s var(--ease-out-expo);
}

.cursor-follower {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease-out-expo), height 0.4s var(--ease-out-expo), border-color 0.3s ease;
}

body:hover .cursor {
  opacity: 1;
}

@media (max-width: 768px) {
  .cursor, .cursor-follower { display: none !important; }
}

/* --- NAVIGATION --- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease;
}

#navbar.scrolled {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem clamp(1.5rem, 5vw, 4rem);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.05em;
}

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

.nav-link {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  padding: 0.25rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out-expo);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link-cta {
  background: var(--gold);
  color: var(--black);
  padding: 0.6rem 1.5rem;
  border-radius: 0;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s ease, transform 0.3s ease;
}

.nav-link-cta::after {
  display: none;
}

.nav-link-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: all 0.4s var(--ease-out-expo);
  transform-origin: center;
}

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

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

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

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

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--black);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.6s var(--ease-in-out-expo);
}

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

.mobile-menu-inner {
  text-align: center;
}

.mobile-link {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--white);
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.mobile-link:hover {
  color: var(--gold);
}

.mobile-link-cta {
  color: var(--gold) !important;
  margin-top: 1rem;
  border: 1px solid var(--gold);
  display: inline-block !important;
  width: auto;
  padding: 0.8rem 2.5rem !important;
  font-size: clamp(1.2rem, 4vw, 1.8rem) !important;
}

/* --- HERO --- */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.5) 0%,
    rgba(10, 10, 10, 0.3) 40%,
    rgba(10, 10, 10, 0.6) 80%,
    rgba(10, 10, 10, 0.9) 100%
  );
}

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

.hero-logo-spin {
  margin-bottom: 2rem;
  display: inline-block;
}

.hero-logo-img {
  width: clamp(80px, 15vw, 140px);
  height: clamp(80px, 15vw, 140px);
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--gold);
  animation: spin-coin 4s ease-in-out infinite;
}

@keyframes spin-coin {
  0% { transform: rotateY(0deg); }
  50% { transform: rotateY(180deg); }
  100% { transform: rotateY(360deg); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-family: var(--font-mono);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 1rem 2rem;
  transition: all 0.4s ease;
}

.hero-cta:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(2px);
}

.hero-cta svg {
  transition: transform 0.3s ease;
}

.hero-cta:hover svg {
  transform: translateY(3px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: var(--grey-dark);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* --- MARQUEE --- */
.marquee-band {
  overflow: hidden;
  padding: 1.5rem 0;
  background: var(--gold);
  color: var(--black);
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  gap: 2rem;
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
}

.marquee-track-reverse {
  display: flex;
  gap: 2rem;
  animation: marqueeScrollReverse 25s linear infinite;
  width: max-content;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.marquee-dot {
  font-size: 0.8rem;
  flex-shrink: 0;
}

.marquee-band-reverse {
  background: transparent;
  color: var(--gold);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeScrollReverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* --- SECTIONS --- */
.section {
  padding: clamp(5rem, 12vw, 10rem) 0;
  position: relative;
}

.section-header {
  margin-bottom: clamp(3rem, 8vw, 6rem);
}

.section-number {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
}

.line-wrap {
  display: block;
  overflow: hidden;
}

.line {
  display: block;
}

/* --- ANIMATION CLASSES --- */
.reveal-text {
  /* JS will animate these in */
}

.img-reveal {
  /* JS will animate these in */
}

/* --- ABOUT --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.about-text {
  padding-top: 2rem;
}

.about-lead {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 500;
  line-height: 1.6;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.8;
  color: var(--grey);
  margin-bottom: 1.25rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-top: 2rem;
  position: relative;
}

.text-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out-expo);
}

.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.text-link svg {
  transition: transform 0.3s ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.about-img {
  overflow: hidden;
  border-radius: 0;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.about-img:hover img {
  transform: scale(1.05);
}

.about-img-1 {
  grid-row: span 2;
  height: 100%;
}

.about-img-2 {
  height: 280px;
}

/* Stats */
.stats-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: clamp(4rem, 8vw, 8rem);
  padding: 3rem 0;
  border-top: 1px solid var(--grey-dark);
  border-bottom: 1px solid var(--grey-dark);
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  color: var(--gold);
  display: block;
}

.stat-slash {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  color: var(--gold);
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--grey);
  margin-top: 0.5rem;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--grey-dark);
}

/* --- PRODUCTS / SHOP --- */
.product-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.product-card-reverse {
  direction: ltr;
}

.product-card-reverse .product-images {
  order: 2;
}

.product-card-reverse .product-info {
  order: 1;
}

.product-img {
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.product-img:hover img:not(.product-logo-overlay) {
  transform: scale(1.05);
}

.product-logo-overlay {
  position: absolute !important;
  width: 80px !important;
  height: 80px !important;
  min-width: 80px !important;
  max-width: 80px !important;
  border-radius: 50% !important;
  border: 2px solid var(--gold) !important;
  object-fit: cover !important;
  z-index: 2;
  opacity: 0.85;
  mix-blend-mode: multiply;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-card:not(.product-bottle) .product-logo-overlay {
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.product-bottle .product-logo-overlay {
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.product-img:hover .product-logo-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.05);
}


.product-info {
  padding: 2rem 0;
}

.product-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.35rem 1rem;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.product-badge-new {
  color: var(--white);
  background: var(--gold);
  border-color: var(--gold);
}

.product-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.product-prices {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--grey-dark);
}

.price-option {
  display: flex;
  flex-direction: column;
}

.price-size {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--grey);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}

.product-description {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--grey);
  margin-bottom: 1rem;
}

.product-ingredients {
  font-size: 0.85rem;
  color: var(--grey-dark);
  line-height: 1.6;
}

/* Sorrel Teaser */
.sorrel-teaser {
  text-align: center;
  padding: 2.5rem 2rem;
  border: 1px dashed var(--gold-dark);
  margin-top: 2rem;
}

.teaser-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.teaser-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.sorrel-teaser p {
  color: var(--grey);
  font-size: 1rem;
}

/* --- GALLERY --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  grid-auto-rows: 280px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent 50%, rgba(10, 10, 10, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.gallery-overlay span {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
}

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

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

/* --- TESTIMONIALS --- */
.video-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 4rem;
}

.video-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9/16;
  cursor: pointer;
  border-radius: 0;
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.video-card:hover video {
  transform: scale(1.05);
}

.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.3);
  transition: background 0.3s ease;
}

.video-card:hover .video-play-overlay {
  background: rgba(10, 10, 10, 0.1);
}

.play-btn {
  width: 60px;
  height: 60px;
  border: 2px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.video-card:hover .play-btn {
  transform: scale(1.1);
  border-color: var(--gold);
  color: var(--gold);
}

/* Reviews Band */
.reviews-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 3rem 0;
  margin-bottom: 2rem;
}

.review-star-item {
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--grey-dark);
}

.stars {
  color: var(--gold);
  font-size: 1.2rem;
  display: block;
  margin-bottom: 1rem;
  letter-spacing: 0.2em;
}

.review-star-item p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--cream);
}

.google-review-link {
  text-align: center;
}

.google-review-link a {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.25rem;
}

/* --- Q&A --- */
.qa-grid {
  max-width: 900px;
  margin: 0 auto;
}

.qa-item {
  border-bottom: 1px solid var(--grey-dark);
}

.qa-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  text-align: left;
  padding: 1.5rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.3s ease;
}

.qa-question:hover {
  color: var(--gold);
}

.qa-icon {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.qa-item.active .qa-icon {
  transform: rotate(45deg);
}

.qa-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out-expo), padding 0.5s ease;
}

.qa-item.active .qa-answer {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

.qa-answer p {
  color: var(--grey);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* --- CONTACT --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.contact-lead {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-details {
  margin-bottom: 2rem;
}

.contact-detail {
  margin-bottom: 1rem;
}

.contact-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--grey-dark);
  display: block;
  margin-bottom: 0.25rem;
}

.contact-detail a {
  font-size: 1rem;
}

.contact-socials {
  display: flex;
  gap: 1.5rem;
}

.social-link {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  border: 1px solid var(--grey-dark);
  padding: 0.5rem 1.2rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--grey);
  display: block;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--black-light);
  border: 1px solid var(--grey-dark);
  color: var(--white);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-group select {
  cursor: pointer;
}

.submit-btn {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 1rem 2.5rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  align-self: flex-start;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* --- FOOTER --- */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--grey-dark);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--grey);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.footer-links a {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey);
}

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

.footer-socials {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-socials a {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--grey);
}

.footer-socials a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--grey-dark);
  text-align: center;
}

.footer-bottom p {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--grey-dark);
  letter-spacing: 0.05em;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-images {
    order: -1;
  }

  .product-card,
  .product-card-reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-bottle .product-images {
    order: -1;
  }

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

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-socials {
    text-align: center;
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .gallery-item-tall {
    grid-row: span 1;
  }

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

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

  .video-card {
    aspect-ratio: 1/1;
  }

  .reviews-band {
    grid-template-columns: 1fr;
  }

  .stats-row {
    flex-direction: column;
    gap: 2rem;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-links {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(2.2rem, 12vw, 3.5rem);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .gallery-item-wide {
    grid-column: span 1;
  }
}

/* --- UTILITY --- */
::selection {
  background: var(--gold);
  color: var(--black);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--grey-dark);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--grey-dark) var(--black);
}

/* Skip Navigation */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  padding: 1rem 2rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  z-index: 10001;
  transition: top 0.3s ease;
}

.skip-nav:focus {
  top: 1rem;
}

/* Honeypot field (hidden from users, visible to bots) */
.form-honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

/* Improved contrast for grey text */
.about-text p,
.product-description,
.product-ingredients,
.qa-answer p,
.contact-label {
  color: var(--grey);
}

/* Lighter grey for better WCAG AA contrast on dark background */
.stat-label,
.price-size,
.form-group label {
  color: #999999;
}

/* Video error fallback */
.video-card video::after {
  content: 'Video unavailable';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--black-mid);
  color: var(--grey);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* --- LIGHTBOX --- */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10001;
  line-height: 1;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: var(--gold);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 2rem;
  padding: 1rem 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10001;
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 0;
}

.lightbox-caption {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--grey);
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .lightbox-prev,
  .lightbox-next {
    font-size: 1.5rem;
    padding: 0.75rem 1rem;
  }

  .lightbox-img {
    max-width: 95vw;
    max-height: 75vh;
  }
}