/* ==========================================================================
   ALL4WINE / ZAMBELLI ENOTECH - MODERN LUXURY DESIGN SYSTEM
   Agency-Tier UI/UX Stylesheet (2026 Edition)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --bg-body: #0d0910;
  --bg-surface-1: #191020;
  --bg-surface-2: #22152b;
  --bg-surface-3: #2d1c3a;
  --bg-card: rgba(36, 23, 46, 0.85);
  --bg-card-hover: rgba(48, 30, 60, 0.95);
  
  --wine-deep: #320a1f;
  --wine-rich: #571036;
  --wine-accent: #871954;
  
  --gold-primary: #d4af37;
  --gold-light: #f5e7a9;
  --gold-dark: #9c7a1c;
  --gold-glow: rgba(212, 175, 55, 0.3);
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f9f1c7 45%, #b8860b 100%);
  --gold-gradient-subtle: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(245, 231, 169, 0.05) 100%);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --text-gold: #e6ca65;
  
  --border-hairline: rgba(255, 255, 255, 0.07);
  --border-subtle: rgba(255, 255, 255, 0.12);
  --border-gold: rgba(212, 175, 55, 0.35);
  --border-gold-strong: rgba(212, 175, 55, 0.7);
  
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.8);
  --shadow-gold: 0 0 40px rgba(212, 175, 55, 0.15);
  
  /* Fonts */
  --font-serif: 'Cinzel', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Transitions */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-normal: 0.4s;
  --duration-fast: 0.2s;
  --duration-slow: 0.8s;
  
  /* Radii */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
}

/* Base Resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-body);
  color: var(--text-main);
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* Background Atmosphere Glows */
body::before {
  content: '';
  position: fixed;
  top: -20vh;
  left: 10vw;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(114, 22, 71, 0.12) 0%, rgba(10, 7, 12, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  bottom: 0;
  right: 5vw;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, rgba(10, 7, 12, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); }
h4 { font-size: 1.25rem; }

p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--duration-fast) var(--ease-smooth);
}

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

/* Container */
.site-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* Eyebrow Pill Badges */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  background: var(--gold-gradient-subtle);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.badge-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--gold-primary);
  box-shadow: 0 0 8px var(--gold-primary);
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem auto;
}

.section-header.text-left {
  text-align: left;
  margin-left: 0;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.15rem;
  color: var(--text-muted);
}

/* Gradient Text */
.gold-text-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Double-Bezel Component Architecture */
.double-bezel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-hairline);
  padding: 0.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--duration-normal) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.double-bezel:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  transform: translateY(-4px);
}

.double-bezel .bezel-inner {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: calc(var(--radius-xl) - 0.35rem);
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Interactive Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  background: var(--gold-gradient);
  color: #0c080e;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
  transition: all var(--duration-fast) var(--ease-smooth);
}

.btn-primary:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
  color: #000000;
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-primary .btn-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: transform var(--duration-fast) var(--ease-spring);
}

.btn-primary:hover .btn-icon {
  transform: translateX(3px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-smooth);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* ==========================================================================
   NAVIGATION (Floating Island Navbar)
   ========================================================================== */
.header-wrapper {
  position: fixed;
  top: 1.2rem;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 1.5rem;
  transition: all var(--duration-normal) var(--ease-smooth);
}

.navbar-island {
  max-width: 1280px;
  margin: 0 auto;
  background: rgba(18, 12, 21, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  padding: 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.05);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.header-scrolled .navbar-island {
  background: rgba(14, 9, 17, 0.92);
  border-color: var(--border-gold);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8), var(--shadow-gold);
  padding: 0.5rem 1.25rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  white-space: nowrap;
}

.brand-logo img {
  height: 36px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.brand-badge {
  display: none;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.3);
  white-space: nowrap;
  flex-shrink: 0;
}

@media (min-width: 1200px) {
  .brand-badge { display: inline-block; }
}

.nav-menu {
  display: none;
  align-items: center;
  list-style: none;
  gap: 0.25rem;
  flex-shrink: 0;
}

@media (min-width: 1080px) {
  .nav-menu { display: flex; }
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-full);
  position: relative;
  transition: all var(--duration-fast) var(--ease-smooth);
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-block;
}

@media (min-width: 1280px) {
  .nav-menu { gap: 0.4rem; }
  .nav-link { font-size: 0.92rem; padding: 0.5rem 0.85rem; }
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.nav-link.active {
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

@media (max-width: 1079px) {
  .mobile-toggle { display: flex !important; }
}

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
}

.dropdown-menu-box {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #180f1e;
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-lg);
  padding: 0.75rem;
  min-width: 320px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85), 0 0 25px rgba(212, 175, 55, 0.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 1001;
}

/* Invisible Hover Bridge to prevent dropdown from closing when cursor moves down */
.dropdown-menu-box::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  height: 15px;
  background: transparent;
}

.nav-dropdown:hover .dropdown-menu-box,
.nav-dropdown:focus-within .dropdown-menu-box,
.nav-dropdown.is-active .dropdown-menu-box {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1.1rem;
  border-radius: var(--radius-md);
  color: #e2e8f0;
  font-size: 0.92rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all var(--duration-fast) var(--ease-smooth);
}

.dropdown-item:hover {
  background: rgba(212, 175, 55, 0.18);
  color: var(--gold-light);
  transform: translateX(4px);
}

.dropdown-item i {
  color: var(--gold-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  padding: 9px;
}

@media (min-width: 992px) {
  .mobile-toggle { display: none; }
}

.mobile-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: all var(--duration-fast) var(--ease-smooth);
}

.mobile-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Fullscreen Drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(10, 7, 12, 0.97);
  backdrop-filter: blur(30px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--duration-normal) var(--ease-smooth);
  padding: 2rem;
}

.mobile-drawer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-list {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-main);
  transition: color var(--duration-fast);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--gold-primary);
}

/* ==========================================================================
   HERO SECTION - FULL WIDTH CINEMATIC BANNER
   ========================================================================== */
.hero-section-fullwidth {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 10rem 0 6rem 0;
  background: url('/images/baner/baner_1.jpg') center center / cover no-repeat;
  border-bottom: 2px solid var(--border-gold);
  overflow: hidden;
}

.hero-fullwidth-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 5, 10, 0.95) 0%, rgba(20, 10, 24, 0.85) 45%, rgba(10, 6, 12, 0.6) 100%);
  z-index: 1;
}

.hero-fullwidth-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.hero-fullwidth-content h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  line-height: 1.12;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-fullwidth-content p {
  font-size: 1.25rem;
  line-height: 1.75;
  color: #e2e8f0;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.hero-stats-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.hero-stats-band .hero-stat-item h3 {
  font-size: 2.2rem;
  color: var(--gold-light);
  margin-bottom: 0.2rem;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.hero-stats-band .hero-stat-item p {
  font-size: 0.85rem;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0;
}

/* ==========================================================================
   DISTINCT ALTERNATING SECTION STRIPES ("PASY") - HIGH CONTRAST LUXURY TONES
   ========================================================================== */
/* Pas A: Rozjaśniony grafit / tytan z subtelną poświatą (Bento grid) */
.stripe-graphite {
  background-color: #1a1424;
  background-image: 
    radial-gradient(circle at 15% 30%, rgba(140, 28, 85, 0.28) 0%, transparent 55%),
    radial-gradient(circle at 85% 70%, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
  border-top: 2px solid rgba(212, 175, 55, 0.35);
  border-bottom: 2px solid rgba(212, 175, 55, 0.35);
  padding: 7.5rem 0;
  position: relative;
}

/* Pas B: Wyraźny szlachetny bordeaux / winny (Historia Zambelli i Karta urządzenia) */
.stripe-wine {
  background-color: #32132a;
  background-image: 
    linear-gradient(135deg, #421636 0%, #270c20 50%, #3a122e 100%),
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.25) 0%, transparent 70%);
  border-top: 2px solid rgba(212, 175, 55, 0.6);
  border-bottom: 2px solid rgba(212, 175, 55, 0.6);
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.65);
  padding: 7.5rem 0;
  position: relative;
}

/* Pas C: Głęboki antracyt z rozjaśnionymi kartami (Katalog i Galeria) */
.stripe-obsidian {
  background-color: #130c18;
  background-image: 
    linear-gradient(180deg, #180f20 0%, #110915 100%),
    radial-gradient(circle at 50% 100%, rgba(140, 28, 85, 0.2) 0%, transparent 60%);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 2px solid rgba(212, 175, 55, 0.45);
  padding: 7.5rem 0;
  position: relative;
}

/* Pas D: Zaufanie i serwis (Luthmar) */
.stripe-trust {
  background-color: #2c1630;
  background-image: 
    linear-gradient(90deg, #3d1a42 0%, #28122c 50%, #3e1635 100%);
  border-top: 2px solid rgba(212, 175, 55, 0.65);
  border-bottom: 2px solid rgba(212, 175, 55, 0.65);
  padding: 6.5rem 0;
  position: relative;
}

/* Pas E: Call to Action - Wyrazisty aksamit winny */
.stripe-cta {
  background-color: #3b1232;
  background-image: 
    radial-gradient(circle at center, #781b53 0%, #2b0b23 75%);
  border-top: 3px solid var(--gold-primary);
  border-bottom: 2px solid rgba(212, 175, 55, 0.4);
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.7);
  padding: 7.5rem 0;
  position: relative;
  text-align: center;
}

/* ==========================================================================
   BENTO GRID CATEGORIES SECTION
   ========================================================================== */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}

@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(12, 1fr);
  }
  
  .bento-card-main {
    grid-column: span 8;
  }
  
  .bento-card-side-1 {
    grid-column: span 4;
  }
  
  .bento-card-side-2 {
    grid-column: span 6;
  }
  
  .bento-card-side-3 {
    grid-column: span 6;
  }
}

.bento-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #1f1526;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: all var(--duration-normal) var(--ease-smooth);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  min-height: 360px;
}

.bento-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), var(--shadow-gold);
}

.bento-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bento-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-smooth);
  filter: brightness(0.65);
}

.bento-card:hover .bento-card-bg img {
  transform: scale(1.06);
  filter: brightness(0.75);
}

.bento-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 7, 12, 0.95) 0%, rgba(10, 7, 12, 0.4) 60%, rgba(10, 7, 12, 0.1) 100%);
  z-index: 1;
}

.bento-card-content {
  position: relative;
  z-index: 2;
}

.bento-card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.bento-card-content p {
  font-size: 0.95rem;
  color: #cbd5e1;
  margin-bottom: 1.2rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-light);
}

.link-arrow span {
  transition: transform var(--duration-fast) var(--ease-spring);
}

.bento-card:hover .link-arrow span {
  transform: translateX(5px);
}

/* ==========================================================================
   HERITAGE / ZAMBELLI EDITORIAL SECTION
   ========================================================================== */
.heritage-section {
  padding: 7rem 0;
  background: linear-gradient(180deg, var(--bg-body) 0%, var(--bg-surface-1) 50%, var(--bg-body) 100%);
}

.heritage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 992px) {
  .heritage-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.heritage-image-stack {
  position: relative;
}

.heritage-img-main {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  width: 100%;
}

.heritage-quote-card {
  position: absolute;
  bottom: -2rem;
  right: -1rem;
  max-width: 320px;
  background: rgba(18, 12, 21, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .heritage-quote-card {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 1.5rem;
    max-width: 100%;
  }
}

.heritage-quote-card p {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.heritage-quote-card span {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

/* ==========================================================================
   PRODUCTS CATALOG GRID
   ========================================================================== */
.products-section {
  padding: 7rem 0;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 3.5rem;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-hairline);
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-smooth);
}

.filter-btn:hover, .filter-btn.active {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--border-gold);
  color: var(--gold-light);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background: #21162c;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.65), 0 0 20px rgba(212, 175, 55, 0.05);
  transition: all var(--duration-normal) var(--ease-smooth);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  background: #2c1d3a;
  border-color: var(--gold-light);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85), 0 0 35px rgba(212, 175, 55, 0.3);
}

.product-thumb-wrapper {
  position: relative;
  background: #ffffff;
  margin: 1.2rem;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.product-thumb-wrapper img {
  max-height: 180px;
  width: auto;
  object-fit: contain;
  transition: transform var(--duration-normal) var(--ease-smooth);
}

.product-card:hover .product-thumb-wrapper img {
  transform: scale(1.08);
}

.product-category-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  width: fit-content;
}

.product-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-body h4 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.product-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-hairline);
  padding-top: 1.2rem;
}

/* ==========================================================================
   VIDEO & GALLERY SECTIONS
   ========================================================================== */
.media-section {
  padding: 7rem 0;
  background: var(--bg-surface-1);
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.video-card {
  background: var(--bg-surface-2);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.video-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.video-embed-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
}

.video-embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-info {
  padding: 1.5rem;
}

.video-info h4 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-hairline);
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-smooth);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 7, 12, 0.9) 0%, rgba(10, 7, 12, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--duration-fast) var(--ease-smooth);
}

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

.gallery-overlay h5 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.gallery-overlay p {
  color: var(--gold-light);
  font-size: 0.8rem;
  margin-bottom: 0;
}

/* ==========================================================================
   ABOUT / SERVICES / DISPENSERS
   ========================================================================== */
.about-split-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 5rem;
}

@media (min-width: 992px) {
  .about-split-row {
    grid-template-columns: 1fr 1fr;
  }
  
  .about-split-row.reverse {
    grid-template-columns: 1fr 1fr;
  }
  
  .about-split-row.reverse .about-col-text {
    order: 2;
  }
  
  .about-split-row.reverse .about-col-img {
    order: 1;
  }
}

.about-img-box {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-md);
}

.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   CONTACT SECTION & FORM
   ========================================================================== */
.contact-section {
  padding: 7rem 0;
}

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

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.contact-info-card {
  background: var(--bg-surface-2);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.contact-item-text p, .contact-item-text a {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.contact-item-text a:hover {
  color: var(--gold-light);
}

/* Form Styles */
.form-card {
  background: var(--bg-surface-2);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group label .req {
  color: var(--gold-primary);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(10, 7, 12, 0.7);
  border: 1px solid var(--border-subtle);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: all var(--duration-fast) var(--ease-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.form-checkbox input[type="checkbox"] {
  accent-color: var(--gold-primary);
  width: 18px;
  height: 18px;
  margin-top: 3px;
  cursor: pointer;
}

.form-checkbox span {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* Map Container */
.map-section {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-hairline);
  box-shadow: var(--shadow-md);
  margin-top: 4rem;
}

.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
  filter: grayscale(80%) invert(90%) contrast(90%);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.site-footer {
  background: #070508;
  border-top: 1px solid var(--border-hairline);
  padding: 5rem 0 2rem 0;
  position: relative;
}

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

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }
}

.footer-col h4 {
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: color var(--duration-fast);
}

.footer-links a:hover {
  color: var(--gold-primary);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--border-hairline);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 0;
}

.visitor-stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-hairline);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* Scroll to top button */
.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-surface-2);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--duration-fast) var(--ease-smooth);
  z-index: 900;
}

.scroll-top-btn.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--gold-gradient);
  color: #000;
  transform: translateY(-4px);
}

/* Breadcrumb styling */
.page-hero {
  padding: 8.5rem 0 3.5rem 0;
  background: radial-gradient(circle at center, rgba(74, 14, 46, 0.35) 0%, rgba(10, 7, 12, 0.95) 70%);
  border-bottom: 1px solid var(--border-hairline);
  text-align: center;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--text-dim);
}

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

.breadcrumbs span {
  color: var(--text-dim);
}
