/* =========================================
   LES BIENHEUREUX - Main Stylesheet
   ========================================= */

:root {
  --primary: #001d85;
  --primary-light: #002aad;
  --primary-dark: #001260;
  --secondary: #e63229;
  --gold: #c9a14a;
  --gold-light: #e8c97a;
  --white: #ffffff;
  --off-white: #f8f6f2;
  --dark: #0a0a0a;
  --grey-light: #f4f4f4;
  --grey: #888888;
  --text: #1a1a2e;
  --font-serif: 'Cormorant Garamond', 'Garamond', Georgia, serif;
  --font-sans: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 50px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow: 0 4px 24px rgba(0, 29, 133, 0.1);
  --shadow-lg: 0 8px 48px rgba(0, 29, 133, 0.18);
  --shadow-card: 0 2px 20px rgba(0, 0, 0, 0.08), 0 8px 40px rgba(0, 0, 0, 0.04);
}

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

/* === TYPOGRAPHY === */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-serif);
  line-height: 1.2;
  letter-spacing: 0.01em;
}
h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 600;
}
h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 600;
}
h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 500;
}
h4 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 500;
}
p {
  line-height: 1.85;
  font-size: 0.95rem;
}

.section-title {
  font-family: var(--font-serif);
  color: var(--primary);
  position: relative;
  display: inline-block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin-top: 0.8rem;
  border-radius: 2px;
}
.section-title.centered::after {
  margin: 0.8rem auto 0;
}
.section-subtitle {
  color: var(--grey);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: var(--font-sans);
  font-weight: 600;
}

/* === AWARD BADGES === */
.award-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: linear-gradient(135deg, #c9a14a, #e8c97a);
  color: #3a2600;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  line-height: 1;
}
.award-tag svg {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}
.award-tag-sm {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(201, 161, 74, 0.12);
  border: 1px solid rgba(201, 161, 74, 0.4);
  color: var(--gold);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.22rem 0.6rem;
  border-radius: var(--radius-pill);
  line-height: 1;
}
.award-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.6rem;
}

/* === LIGHTBOX === */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  padding: 2rem;
  backdrop-filter: blur(4px);
}
#lightbox.open {
  display: flex;
}
#lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
  cursor: default;
  animation: lightboxIn 0.25s ease;
}
@keyframes lightboxIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
#lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 9999;
}
#lightbox-close:hover {
  background: rgba(255, 255, 255, 0.22);
}
#lightbox-close svg {
  width: 20px;
  height: 20px;
}
.zoomable {
  cursor: zoom-in;
  transition: opacity 0.2s;
}
.zoomable:hover {
  opacity: 0.88;
}

/* === AGE VERIFICATION === */
#age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.age-gate-inner {
  background: var(--dark);
  border: 1px solid rgba(201, 161, 74, 0.3);
  max-width: 520px;
  width: 100%;
  text-align: center;
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
}
.age-gate-logo {
  width: 160px;
  margin: 0 auto 2rem;
}
.age-gate-inner h2 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.age-gate-inner p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
.age-gate-lang {
  margin-bottom: 1.5rem;
}
.age-gate-lang button {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.7);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  margin: 0 0.2rem;
  transition: var(--transition);
}
.age-gate-lang button:hover,
.age-gate-lang button.active {
  border-color: var(--gold);
  color: var(--gold);
}
.age-gate-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.btn-age-yes {
  background: var(--primary);
  color: var(--white);
  padding: 0.85rem 2.5rem;
  border: 2px solid var(--primary);
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  font-family: var(--font-sans);
  font-weight: 600;
  transition: var(--transition);
}
.btn-age-yes:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
}
.btn-age-no {
  background: transparent;
  color: var(--white);
  padding: 0.85rem 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  font-family: var(--font-sans);
  font-weight: 600;
  transition: var(--transition);
}
.btn-age-no:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}
.age-gate-warning {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  margin-top: 1.5rem;
  letter-spacing: 0.05em;
}
#age-gate.hidden {
  display: none;
}

/* === NAVBAR === */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
  background: linear-gradient(180deg, rgba(0, 18, 96, 0.75) 0%, transparent 100%);
}
#navbar.scrolled {
  background: rgba(0, 14, 72, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.8rem 0;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
/* Logo always white — ensures contrast on any background */
.nav-logo {
  width: 140px;
  flex-shrink: 0;
}
.nav-logo img {
  width: 100%;
  filter: brightness(0) invert(1);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.nav-menu a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-menu a:hover {
  color: var(--white);
}
.nav-menu a:hover::after {
  width: 60%;
}

/* Brands dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.nav-dropdown > a svg {
  width: 12px;
  height: 12px;
  transition: var(--transition);
}
.nav-dropdown:hover > a svg,
.nav-dropdown:focus-within > a svg {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  /* Bridge gap with padding-top so mouse can travel from link to dropdown */
  padding-top: 0.8rem;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
  pointer-events: none;
  z-index: 100;
}
.dropdown-menu-inner {
  background: rgba(0, 14, 72, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 161, 74, 0.2);
  border-radius: var(--radius);
  min-width: 240px;
  padding: 0.6rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.dropdown-menu a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.78rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: var(--transition);
}
.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
  padding-left: 1.3rem;
}
.dropdown-menu a::after {
  display: none;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  gap: 0.3rem;
  margin-left: 0.5rem;
}
.lang-btn {
  background: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.6rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  cursor: pointer;
}
.lang-btn:hover,
.lang-btn.active {
  color: var(--gold);
  border-color: rgba(201, 161, 74, 0.5);
  background: rgba(201, 161, 74, 0.08);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 18, 96, 0.98);
  z-index: 999;
  padding: 6rem 2rem 2rem;
  overflow-y: auto;
  height: 100dvh;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  min-height: 0;
  flex-direction: column;
}
.nav-mobile.open {
  display: flex;
}
.nav-mobile a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: block;
  transition: var(--transition);
}
.nav-mobile a:hover {
  color: var(--gold);
  padding-left: 0.5rem;
}
.nav-mobile-brands-toggle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: color 0.25s ease;
}
.nav-mobile-brands-toggle:hover {
  color: var(--gold);
}
.nav-mobile-brands-toggle svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.nav-mobile-brands-toggle.open svg {
  transform: rotate(180deg);
}
.nav-mobile-brands {
  padding-left: 1rem;
  display: none;
  overflow: hidden;
  min-height: 0;
}
.nav-mobile-brands.open {
  display: block;
  max-height: 55vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
}
.nav-mobile-brands a {
  font-size: 0.9rem;
  font-family: var(--font-sans);
  border: none;
  padding: 0.5rem 0;
  font-weight: 400;
}
.nav-mobile-lang {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}
.nav-mobile-lang button {
  background: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
}
.nav-mobile-lang button.active {
  color: var(--gold);
  border-color: var(--gold);
}

/* === HERO === */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/company.webp') center/cover no-repeat;
  transform: scale(1.08);
  transition: transform 8s ease;
}
#hero.loaded .hero-bg {
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 18, 96, 0.88) 0%,
    rgba(0, 18, 96, 0.55) 60%,
    rgba(0, 18, 96, 0.3) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 5rem;
}
.hero-eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-title {
  color: var(--white);
  margin-bottom: 1.2rem;
  font-size: clamp(2.5rem, 6vw, 5rem);
  max-width: 720px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s 0.5s forwards;
}
.hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  font-style: italic;
  font-family: var(--font-serif);
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s 0.7s forwards;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s 0.9s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll svg {
  width: 20px;
  height: 20px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  border: 2px solid transparent;
  font-family: var(--font-sans);
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(0, 29, 133, 0.35);
}
.btn-primary:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  box-shadow: 0 6px 28px rgba(0, 29, 133, 0.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #2a1800;
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201, 161, 74, 0.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #b8903d, var(--gold));
  box-shadow: 0 6px 28px rgba(201, 161, 74, 0.45);
}
.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-sm {
  padding: 0.55rem 1.4rem;
  font-size: 0.72rem;
}

/* === SECTIONS === */
section {
  padding: 6rem 0;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* === ABOUT SECTION === */
#about {
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text .section-subtitle {
  margin-bottom: 0.5rem;
}
.about-text h2 {
  margin-bottom: 1.5rem;
}
.about-text p {
  color: #444;
  margin-bottom: 1.2rem;
}
.about-highlight {
  background: var(--primary);
  color: var(--white);
  padding: 1.5rem 2rem;
  border-left: 4px solid var(--gold);
  margin: 1.8rem 0;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.about-stat {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 29, 133, 0.06);
}
.about-stat .number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--primary);
  display: block;
  line-height: 1;
}
.about-stat .label {
  font-size: 0.72rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
}
.about-images {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-img-secondary {
  position: absolute;
  bottom: -2.5rem;
  right: -2.5rem;
  width: 55%;
  height: 260px;
  object-fit: cover;
  border: 6px solid var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* === FOUNDER SECTION === */
#founders {
  background: var(--primary-dark);
  overflow: hidden;
}
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.founders-image {
  position: relative;
  min-height: 500px;
}
.founders-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founders-content {
  background: var(--primary-dark);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.founders-content .section-subtitle {
  color: var(--gold);
  opacity: 0.8;
}
.founders-content h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}
.founders-content p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.2rem;
  line-height: 1.9;
}
.founders-list {
  margin: 2rem 0;
}
.founder-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.founder-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.founder-icon {
  width: 40px;
  height: 40px;
  background: rgba(201, 161, 74, 0.15);
  border: 1px solid rgba(201, 161, 74, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.founder-icon svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}
.founder-item-content h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}
.founder-item-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin: 0;
}

/* === VALUES SECTION === */
#values {
  background: var(--off-white);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.value-card {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(0, 29, 133, 0.08);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  background: var(--white);
}
.value-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.value-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 29, 133, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.value-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}
.value-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.value-card p {
  color: #555;
  font-size: 0.9rem;
}

/* === BRANDS SECTION === */
#brands {
  background: #f0ede6;
}
.brands-header {
  text-align: center;
  margin-bottom: 4rem;
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.brand-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.04);
  --card-accent: var(--primary);
}
.brand-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.14);
}
/* Thin top accent stripe per card */
.brand-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--card-accent);
  opacity: 0.18;
  transition: opacity 0.3s ease;
}
.brand-card:hover .brand-card-image::after {
  opacity: 0.45;
}
.brand-card-image {
  position: relative;
  height: 260px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  /* Single consistent background — warm cream so multiply works on all image types */
  background: #f0ebe2 !important;
}
.brand-card-image img.brand-bottle {
  max-height: 210px;
  width: auto;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* multiply: white pixels become transparent → uniform appearance across PNG/JPEG/WebP */
  mix-blend-mode: multiply;
  /* drop-shadow adds depth without being affected by mix-blend-mode */
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.18));
  position: relative;
  z-index: 2;
}
.brand-card:hover .brand-card-image img.brand-bottle {
  transform: scale(1.09) translateY(-5px);
}
.brand-card-body {
  padding: 1rem 1.4rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.brand-card-category {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
  font-family: var(--font-sans);
}
.brand-card h3 {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.brand-card p {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 0.8rem;
  flex: 1;
  line-height: 1.65;
}
.brand-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.brand-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  transition: var(--transition);
  font-family: var(--font-sans);
}
.brand-card-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}
.brand-card-link:hover {
  color: var(--gold);
}
.brand-card-link:hover svg {
  transform: translateX(3px);
}

/* === FACILITIES SECTION === */
#facilities {
  background: var(--off-white);
}
.facilities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.facilities-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.facilities-images img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
}
.facilities-images img:first-child {
  grid-column: 1 / -1;
  height: 320px;
}
.facilities-content h2 {
  margin-bottom: 1.5rem;
}
.facilities-content p {
  color: #444;
  margin-bottom: 1.2rem;
}
.facilities-list {
  margin-top: 2rem;
}
.facilities-list li {
  display: flex;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(0, 29, 133, 0.08);
  font-size: 0.9rem;
  color: #444;
}
.facilities-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 0.55rem;
  flex-shrink: 0;
}

/* === AWARDS SECTION === */
#awards {
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 60%, #001a7a 100%);
}
.awards-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.awards-header .section-title {
  color: var(--white);
}
.awards-header .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}
.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.award-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 161, 74, 0.25);
  padding: 2rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.award-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(201, 161, 74, 0.5);
}
.award-year {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.award-title {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.4rem;
  font-family: var(--font-serif);
}
.award-brand {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

/* === CONTACT SECTION === */
#contact {
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 {
  margin-bottom: 1.5rem;
}
.contact-info p {
  color: #555;
  margin-bottom: 2rem;
}
.contact-details {
  margin-top: 2rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 29, 133, 0.08);
}
.contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
}
.contact-item-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--primary);
  margin-bottom: 0.2rem;
}
.contact-item-text span {
  font-size: 0.9rem;
  color: #555;
}
.contact-social {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
.social-link {
  width: 44px;
  height: 44px;
  background: var(--grey-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--primary);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.social-link:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 29, 133, 0.25);
}
.social-link svg {
  width: 18px;
  height: 18px;
}

/* Contact Form */
.contact-form {
  background: var(--grey-light);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
}
.contact-form h3 {
  margin-bottom: 1.5rem;
  color: var(--primary);
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(0, 29, 133, 0.15);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 29, 133, 0.08);
}
.form-group textarea {
  height: 130px;
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* === FOOTER === */
#footer {
  background: #0c2461;
  color: rgba(255, 255, 255, 0.65);
}
.footer-top {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(201, 161, 74, 0.18);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand-logo {
  width: 140px;
  margin-bottom: 1.2rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  gap: 0.8rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover {
  background: rgba(201, 161, 74, 0.3);
}
.footer-social a svg {
  width: 16px;
  height: 16px;
}
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-col ul li {
  margin-bottom: 0.6rem;
}
.footer-col ul li a {
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-col ul li a:hover {
  color: var(--gold);
}
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.8rem;
}
.footer-bottom a {
  color: var(--gold);
  transition: var(--transition);
}
.footer-bottom a:hover {
  text-decoration: underline;
}
.footer-warning {
  background: rgba(201, 161, 74, 0.06);
  border-top: 1px solid rgba(201, 161, 74, 0.2);
  padding: 1rem 0;
  text-align: center;
}
.footer-warning p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.05em;
  font-weight: 400;
}
.footer-warning strong {
  color: rgba(201, 161, 74, 0.7);
  font-weight: 500;
}

/* === BACK TO TOP === */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 29, 133, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 500;
  cursor: pointer;
}
#back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#back-to-top:hover {
  background: var(--primary-light);
}
#back-to-top svg {
  width: 20px;
  height: 20px;
}

/* === ANIMATIONS === */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
}

/* Stagger children */
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.stagger.visible > *:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0.05s;
}
.stagger.visible > *:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.15s;
}
.stagger.visible > *:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 0.25s;
}
.stagger.visible > *:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: 0.35s;
}
.stagger.visible > *:nth-child(5) {
  opacity: 1;
  transform: none;
  transition-delay: 0.45s;
}
.stagger.visible > *:nth-child(6) {
  opacity: 1;
  transform: none;
  transition-delay: 0.55s;
}
.stagger.visible > *:nth-child(7) {
  opacity: 1;
  transform: none;
  transition-delay: 0.65s;
}
.stagger.visible > *:nth-child(8) {
  opacity: 1;
  transform: none;
  transition-delay: 0.75s;
}
.stagger.visible > *:nth-child(9) {
  opacity: 1;
  transform: none;
  transition-delay: 0.85s;
}
.stagger.visible > *:nth-child(10) {
  opacity: 1;
  transform: none;
  transition-delay: 0.95s;
}
.stagger.visible > *:nth-child(11) {
  opacity: 1;
  transform: none;
  transition-delay: 1.05s;
}
.stagger.visible > *:nth-child(12) {
  opacity: 1;
  transform: none;
  transition-delay: 1.15s;
}
.stagger.visible > *:nth-child(13) {
  opacity: 1;
  transform: none;
  transition-delay: 1.25s;
}

/* === BRAND PAGE === */
/* brand-hero defined below at the canonical section */
.brand-hero-overlay {
  position: absolute;
  inset: 0;
}
.brand-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2rem;
}
.brand-breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}
.brand-breadcrumb a:hover {
  color: var(--gold);
}
.brand-breadcrumb svg {
  width: 12px;
  height: 12px;
}

.brand-about {
  padding: 5rem 0;
}
.brand-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
.brand-image-wrap {
  position: relative;
}
.brand-main-image {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.2));
  transition: transform 0.5s ease;
}
.brand-main-image:hover {
  transform: translateY(-8px);
}
.brand-text h2 {
  margin-bottom: 1.2rem;
}
.brand-text p {
  color: #444;
  margin-bottom: 1rem;
  line-height: 1.85;
}

/* Editions grid */
.editions-section {
  background: var(--off-white);
  padding: 5rem 0;
}
.editions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.edition-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}
.edition-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.13);
}
.edition-card-image {
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow: hidden;
}
.edition-card-image img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.18));
  transition: transform 0.5s ease;
}
.edition-card:hover .edition-card-image img {
  transform: scale(1.06) translateY(-3px);
}
.edition-card-body {
  padding: 1.2rem 1.4rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.edition-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.7rem;
  font-family: var(--font-sans);
}
.edition-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.edition-card .abv {
  font-size: 0.78rem;
  color: var(--grey);
  margin-bottom: 0.8rem;
}
.edition-card .award-badge {
  font-size: 0.7rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.edition-card .award-badge svg {
  width: 12px;
  height: 12px;
}

/* Tasting notes */
.tasting-notes {
  margin-top: 1rem;
}
.tasting-notes h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.3rem;
}
.tasting-item {
  margin-bottom: 0.6rem;
}
.tasting-item strong {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
  display: block;
  margin-bottom: 0.2rem;
}
.tasting-item p {
  font-size: 0.85rem;
  color: #555;
  margin: 0;
}

/* Cellar master */
.cellarmaster-section {
  padding: 5rem 0;
  background: var(--off-white);
}
.cellarmaster-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}
.cellarmaster-img {
  border-radius: 50%;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
}
.cellarmaster-content h3 {
  color: var(--primary);
  margin-bottom: 0.3rem;
}
.cellarmaster-content .title {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.cellarmaster-content p {
  color: #444;
  margin-bottom: 1rem;
}

/* =============================================
   BRAND HERO — premium split layout
   Left: brand gradient + text content
   Right: clean product bottle, large, floating
   ============================================= */
.brand-hero {
  min-height: 82vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 7rem 0 5rem;
}

/* === Product bottle — right side, large & clean === */
.brand-hero-bg {
  position: absolute !important;
  top: -8% !important;
  right: -2% !important;
  bottom: -8% !important;
  left: auto !important;
  width: 58% !important;
  background-size: 72% auto !important;
  background-position: center 45% !important;
  background-repeat: no-repeat !important;
  opacity: 0.18 !important;
  z-index: 1;
  animation: hero-bottle-float 9s ease-in-out infinite;
}
.brand-hero:hover .brand-hero-bg {
  animation-play-state: paused;
  transform: scale(1.025) translateY(-6px);
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* === Ambient spotlight behind the bottle === */
.brand-hero::before {
  content: '';
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 52%;
  aspect-ratio: 1;
  /* background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(255, 255, 255, 0.05) 45%,
    transparent 72%
  ); */
  z-index: 2;
  pointer-events: none;
}

/* === Left-side text protection — directional, light === */
.brand-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    100deg,
    rgba(0, 0, 0, 0.52) 0%,
    rgba(0, 0, 0, 0.3) 32%,
    rgba(0, 0, 0, 0.08) 55%,
    transparent 70%
  ); */
  z-index: 3;
  pointer-events: none;
}

/* === Bottom fade for a clean transition to specs bar === */
.brand-hero .brand-hero-bottom-fade {
  display: none; /* handled via padding */
}

.brand-hero-open-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 6;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-pill);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.38rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-sans);
  backdrop-filter: blur(10px);
}
.brand-hero-open-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}
.brand-hero-open-btn svg {
  width: 11px;
  height: 11px;
}

/* === Hero content — left panel === */
.brand-hero-content {
  position: relative;
  z-index: 4;
  padding-top: 1rem;
  max-width: 52%;
}

/* === Brand logo in hero — white === */
.brand-hero-logo {
  max-width: 220px;
  max-height: 100px;
  object-fit: contain;
  margin-bottom: 1.4rem;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

/* === Hero typography === */
.brand-hero h1 {
  color: var(--white);
  margin-bottom: 0.8rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.brand-hero .tagline {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  font-style: italic;
  font-family: var(--font-serif);
}

/* Floating animation */
@keyframes hero-bottle-float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  40% {
    transform: translateY(-16px) rotate(0.5deg);
  }
  70% {
    transform: translateY(-8px) rotate(-0.3deg);
  }
}

/* Brand about section richer */
.brand-about-grid {
  gap: 4rem;
}

/* Brand image presentation */
.brand-product-showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
.brand-product-showcase img {
  max-height: 400px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.3));
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.brand-product-showcase img:hover {
  transform: translateY(-8px) scale(1.03);
}
.brand-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
}
.brand-product-grid img {
  max-height: 280px;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.22));
  transition: transform 0.5s ease;
}
.brand-product-grid img:hover {
  transform: scale(1.05) translateY(-4px);
}

/* Thoreau design section */
.thoreau-design-section {
  background: var(--off-white);
  padding: 3rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.thoreau-design-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.thoreau-design-image {
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.15));
}

/* Brand stat cards (Pura Vida) */
.brand-stat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.brand-stat-card {
  padding: 2rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.brand-stat-num {
  font-size: 2.4rem;
  font-family: var(--font-serif);
  color: #c9a14a;
  font-weight: 700;
  line-height: 1;
}
.brand-stat-label {
  color: #888;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

/* Achievement block */
.achievement-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(201, 161, 74, 0.08);
  border: 1px solid rgba(201, 161, 74, 0.25);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
}
.achievement-block svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
  flex-shrink: 0;
}
.achievement-block strong {
  color: var(--gold);
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.2rem;
}
.achievement-block span {
  font-size: 0.85rem;
  color: #444;
}

/* Links section */
.brand-links-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 3.5rem 0;
}
.brand-links-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.brand-links-inner h3 {
  color: var(--white);
  margin: 0;
}
.brand-links-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* === LEGAL PAGE === */
.legal-hero {
  background: var(--primary-dark);
  padding: 8rem 0 4rem;
}
.legal-hero h1 {
  color: var(--white);
}
.legal-content {
  padding: 5rem 0;
}
.legal-section {
  margin-bottom: 3rem;
}
.legal-section h2 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
.legal-section h3 {
  color: var(--primary);
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  margin-top: 1.5rem;
}
.legal-section p,
.legal-section li {
  color: #444;
  line-height: 1.9;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}
.legal-section ul {
  list-style: disc;
  padding-left: 1.5rem;
}
.legal-divider {
  border: none;
  border-top: 1px solid rgba(0, 29, 133, 0.1);
  margin: 2.5rem 0;
}

/* === UTILITY === */
.text-center {
  text-align: center;
}
.text-gold {
  color: var(--gold);
}
.text-primary {
  color: var(--primary);
}
.text-white {
  color: var(--white);
}
.bg-dark {
  background: var(--dark);
}
.bg-primary {
  background: var(--primary);
}
.mt-1 {
  margin-top: 1rem;
}
.mt-2 {
  margin-top: 2rem;
}
.mt-3 {
  margin-top: 3rem;
}
.mb-1 {
  margin-bottom: 1rem;
}
.mb-2 {
  margin-bottom: 2rem;
}

/* Divider */
.gold-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  display: block;
  margin: 1rem 0;
}
.gold-line.center {
  margin: 1rem auto;
}

/* === TYPOGRAPHY NORMALIZATION === */
/* Standardize body text across all sections — eliminates scattered inline font-size overrides */
.brand-text p,
.brand-about p {
  font-size: 0.92rem;
  line-height: 1.85;
  color: #444;
}
.edition-card-body p,
.tasting-item p {
  font-size: 0.88rem;
}
.brand-card p {
  font-size: 0.82rem;
}
.facilities-content p,
.about-text p {
  font-size: 0.93rem;
  line-height: 1.85;
}
.contact-info p {
  font-size: 0.92rem;
}
/* Consistent section text styles */
.text-sm {
  font-size: 0.82rem;
}
.text-body {
  font-size: 0.92rem;
}
.text-lg {
  font-size: 1.05rem;
}

/* === FOUNDERS SECTION — tighter image ratio === */
.founders-grid {
  grid-template-columns: 5fr 7fr;
}
.founders-image {
  max-height: 580px;
  overflow: hidden;
}
.founders-image img {
  object-position: top center;
}

/* === PHILOSOPHY / VALUES — redesigned as manifesto === */
#values {
  background: var(--primary-dark);
  overflow: hidden;
  position: relative;
}
#values::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/bellevoye/portfolio.webp') center/cover no-repeat;
  opacity: 0.06;
  pointer-events: none;
}
.philosophy-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem;
  position: relative;
}
.philosophy-intro .section-subtitle {
  color: var(--gold);
  opacity: 0.9;
}
.philosophy-intro h2 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
}
.philosophy-intro > p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  line-height: 1.8;
  font-style: italic;
  font-family: var(--font-serif);
}
.philosophy-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  margin-bottom: 4rem;
}
.philosophy-pillar {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  transition: var(--transition);
}
.philosophy-pillar:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 161, 74, 0.3);
  transform: translateY(-4px);
}
.philosophy-pillar.featured {
  background: rgba(201, 161, 74, 0.1);
  border-color: rgba(201, 161, 74, 0.4);
}
.pillar-number {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(201, 161, 74, 0.18);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.philosophy-pillar h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.philosophy-pillar p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.pillar-metric {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 161, 74, 0.4);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
}
.philosophy-manifesto {
  position: relative;
  text-align: center;
  padding: 2.5rem 2rem;
  margin: 0 auto;
  max-width: 800px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.philosophy-manifesto p {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0;
}
.philosophy-manifesto cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.78rem;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-sans);
  font-weight: 600;
}

/* === AWARDS SECTION — impactful redesign === */
.awards-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 4rem;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 161, 74, 0.2);
  border-radius: var(--radius-lg);
}
.awards-counter-stat {
  text-align: center;
}
.awards-counter-stat .num {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.awards-counter-stat .lbl {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  margin-top: 0.4rem;
  display: block;
}
.awards-counter-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
}
/* Award cards — medal type color coding */
.award-card {
  position: relative;
  overflow: hidden;
}
.award-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(201, 161, 74, 0.5);
}
.award-card.medal-master::before {
  background: linear-gradient(90deg, #c0c8d8, #e8edf5);
}
.award-card.medal-grand::before {
  background: linear-gradient(90deg, #c9a14a, #fff0b0, #c9a14a);
}
.award-card.medal-gold::before {
  background: linear-gradient(90deg, #c9a14a, #e8c97a);
}
.award-card.medal-bronze::before {
  background: linear-gradient(90deg, #a07050, #c09070);
}

.award-medal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}
.award-medal-badge.gold {
  background: rgba(201, 161, 74, 0.18);
  color: var(--gold-light);
  border: 1px solid rgba(201, 161, 74, 0.35);
}
.award-medal-badge.master {
  background: rgba(180, 200, 230, 0.12);
  color: #c0d0e8;
  border: 1px solid rgba(180, 200, 230, 0.25);
}
.award-medal-badge.grand {
  background: rgba(201, 161, 74, 0.25);
  color: #fff0b0;
  border: 1px solid rgba(201, 161, 74, 0.5);
}
.award-medal-badge.bronze {
  background: rgba(160, 112, 80, 0.15);
  color: #c8a080;
  border: 1px solid rgba(160, 112, 80, 0.3);
}

.award-icon-large {
  margin-bottom: 1rem;
}
.award-icon-large svg {
  width: 40px;
  height: 40px;
}
.award-year {
  font-size: 0.9rem;
}
.award-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.award-brand {
  font-size: 0.82rem;
}

/* === BRAND SPECS BAR === */
.brand-specs-bar {
  background: var(--white);
  border-bottom: 1px solid rgba(0, 29, 133, 0.07);
  padding: 1.2rem 0;
}
.brand-specs-inner {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
}
.brand-spec-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 2rem;
  border-right: 1px solid rgba(0, 29, 133, 0.08);
  flex-shrink: 0;
  min-width: 110px;
}
.brand-spec-item:last-child {
  border-right: none;
}
.brand-spec-item .spec-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.3rem;
  font-family: var(--font-sans);
}
.brand-spec-item .spec-value {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  font-family: var(--font-sans);
  text-align: center;
}

/* === BRAND GALLERY MASONRY === */
.brand-gallery-masonry {
  columns: 2;
  column-gap: 1rem;
  margin-top: 2rem;
}
.brand-gallery-masonry .gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
}
.brand-gallery-masonry .gallery-item-bg {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}
.brand-gallery-masonry .gallery-item:hover .gallery-item-bg {
  transform: scale(1.04);
}
.brand-gallery-masonry .gallery-item-bg.ratio-4-3 {
  aspect-ratio: 4/3;
}
.brand-gallery-masonry .gallery-item-bg.ratio-3-4 {
  aspect-ratio: 3/4;
}
.brand-gallery-masonry .gallery-item-bg.ratio-1-1 {
  aspect-ratio: 1/1;
}
.brand-gallery-masonry .gallery-item-bg.ratio-16-9 {
  aspect-ratio: 16/9;
}
.brand-gallery-masonry .gallery-item-bg.ratio-3-2 {
  aspect-ratio: 3/2;
}
/* Product bottle shots — contain keeps full bottle visible */
.brand-gallery-masonry .gallery-item-bg.product {
  background-size: cover;
  /* background-color: #f0ebe2; */
}
/* Hover zoom icon overlay */
.brand-gallery-masonry .gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
}
.brand-gallery-masonry .gallery-item:hover::after {
  background: rgba(0, 0, 0, 0.12);
}

/* === FLOATING / LIVE ANIMATIONS === */
@keyframes bottle-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-8px) rotate(0.4deg);
  }
  66% {
    transform: translateY(-4px) rotate(-0.3deg);
  }
}
@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(201, 161, 74, 0);
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 16px 4px rgba(201, 161, 74, 0.28);
    opacity: 0.85;
  }
}
@keyframes shimmer-bg {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}
@keyframes counter-count-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Apply float to brand bottle images on homepage */
.brand-card-image img.brand-bottle {
  animation: bottle-float 7s ease-in-out infinite;
}
.brand-card:nth-child(2) .brand-bottle {
  animation-delay: -2.3s;
}
.brand-card:nth-child(3) .brand-bottle {
  animation-delay: -4.1s;
}
.brand-card:nth-child(4) .brand-bottle {
  animation-delay: -1.5s;
}
.brand-card:nth-child(5) .brand-bottle {
  animation-delay: -3.7s;
}
.brand-card:nth-child(6) .brand-bottle {
  animation-delay: -0.8s;
}
/* Pulse on award tags */
.award-tag {
  animation: pulse-glow 4s ease-in-out infinite;
}
/* Hero title — keep white, add subtle gold shimmer via text-shadow only */
.hero-title {
  text-shadow: 0 0 40px rgba(201, 161, 74, 0.3);
}
/* Counter stat numbers animate on appearance */
.awards-counter-stat .num {
  animation: counter-count-in 0.8s ease both;
}
.awards-counter-stat:nth-child(1) .num {
  animation-delay: 0.1s;
}
.awards-counter-stat:nth-child(3) .num {
  animation-delay: 0.25s;
}
.awards-counter-stat:nth-child(5) .num {
  animation-delay: 0.4s;
}
.awards-counter-stat:nth-child(7) .num {
  animation-delay: 0.55s;
}

/* === AWARDS LIST — editorial redesign === */
.awards-list {
  margin-top: 3rem;
}
.awards-list-item {
  display: grid;
  grid-template-columns: 80px 1fr auto 180px;
  align-items: center;
  gap: 1.5rem;
  padding: 1.4rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.25s ease;
  border-radius: var(--radius-sm);
}
.awards-list-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.awards-list-item:hover {
  background: rgba(255, 255, 255, 0.04);
}
.awards-list-year {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.18);
  line-height: 1;
}
.awards-list-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}
.awards-list-medal {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.28rem 0.9rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.awards-list-medal.gold {
  background: rgba(201, 161, 74, 0.18);
  color: var(--gold-light);
  border: 1px solid rgba(201, 161, 74, 0.4);
}
.awards-list-medal.master {
  background: rgba(192, 208, 232, 0.12);
  color: #c8d8ee;
  border: 1px solid rgba(192, 208, 232, 0.3);
}
.awards-list-medal.grand {
  background: rgba(255, 240, 176, 0.15);
  color: #fff0b0;
  border: 1px solid rgba(255, 240, 176, 0.35);
}
.awards-list-medal.bronze {
  background: rgba(160, 112, 80, 0.15);
  color: #c8a080;
  border: 1px solid rgba(160, 112, 80, 0.3);
}
.awards-list-medal.spirit {
  background: rgba(201, 161, 74, 0.12);
  color: var(--gold);
  border: 1px solid rgba(201, 161, 74, 0.3);
}
.awards-list-brand {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  text-align: right;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .awards-list-item {
    grid-template-columns: 44px 1fr;
    gap: 0.3rem 0.8rem;
    padding: 0.9rem 0.5rem;
  }
  .awards-list-year {
    font-size: 1.1rem;
    grid-row: 1;
    padding-top: 0.1rem;
  }
  .awards-list-name {
    grid-column: 2;
  }
  .awards-list-medal {
    grid-column: 2;
  }
  .awards-list-brand {
    grid-column: 2;
    text-align: left;
  }
}
@media (max-width: 480px) {
  .awards-list-item {
    grid-template-columns: 38px 1fr;
    gap: 0.25rem 0.6rem;
    padding: 0.8rem 0;
  }
  .awards-list-year {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.25);
  }
  .awards-list-name {
    font-size: 0.95rem;
  }
  .awards-list-medal,
  .awards-list-brand {
    text-align: left;
  }
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .editions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-img-secondary {
    display: none;
  }
  .founders-grid {
    grid-template-columns: 1fr;
  }
  .founders-image {
    min-height: 400px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .facilities-grid {
    grid-template-columns: 1fr;
  }
  .brand-about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .cellarmaster-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .cellarmaster-img {
    max-width: 200px;
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .philosophy-pillars {
    grid-template-columns: 1fr 1fr;
  }
  .awards-counter {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }
  .nav-menu {
    display: none;
  }
  .lang-switcher {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }
  .awards-grid {
    grid-template-columns: 1fr 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .philosophy-pillars {
    grid-template-columns: 1fr;
  }
  .awards-counter {
    flex-direction: column;
    gap: 1.5rem;
  }
  .awards-counter-divider {
    width: 80px;
    height: 1px;
  }
  .brand-gallery-masonry {
    columns: 2;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .editions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .facilities-images img {
    height: 200px;
  }
  .facilities-images img:first-child {
    height: 240px;
  }
  .brand-links-inner {
    flex-direction: column;
    text-align: center;
  }
  /* Brand hero: full-width content on mobile, bottle becomes subtle bg */
  .brand-hero-content {
    max-width: 100%;
  }
  .brand-hero-bg {
    width: 100% !important;
    opacity: 0.18 !important;
    background-position: center !important;
  }
  .brand-hero::after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.4) 100%);
  }
  /* Brand hero text: full opacity on mobile */
  .brand-hero-content {
    color: var(--white);
  }
  .brand-hero .tagline,
  .brand-breadcrumb,
  .brand-breadcrumb a {
    color: var(--white);
  }
  /* Hero title: ensure white on mobile */
  .hero-title {
    color: var(--white);
  }
  /* Specs bar: wrap to 3-per-row grid on mobile */
  .brand-specs-inner {
    flex-wrap: wrap;
    overflow-x: visible;
    justify-content: center;
  }
  .brand-spec-item {
    flex: 0 0 33.333%;
    padding: 0.6rem 0.5rem;
    border-right: none;
    border-bottom: 1px solid rgba(0, 29, 133, 0.08);
    min-width: unset;
  }
  /* Brand card footer: wrap tag to next line if needed */
  .brand-card-footer {
    flex-wrap: wrap;
    gap: 0.4rem;
  }
  .stagger > * {
    opacity: 1;
    transform: none;
  }
  .thoreau-design-section {
    padding: 2.5rem 0;
  }
  .thoreau-design-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .thoreau-design-grid h3 {
    font-size: 1.25rem;
  }
  .brand-stat-cards {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .brand-stat-card {
    padding: 1.4rem 1.2rem;
  }
  .brand-stat-num {
    font-size: 2.1rem;
  }
  /* Awards counter: tighter padding on mobile */
  .awards-counter {
    padding: 1.5rem 1rem;
  }
  /* Container padding on mobile */
  .container {
    padding: 0 1.25rem;
  }
}

@media (max-width: 480px) {
  .brands-grid {
    grid-template-columns: 1fr;
  }
  .editions-grid {
    grid-template-columns: 1fr !important;
  }
  .about-stats {
    grid-template-columns: 1fr;
  }
  .awards-grid {
    grid-template-columns: 1fr;
  }
  .editions-grid {
    grid-template-columns: 1fr 1fr;
  }
  .age-gate-btns {
    flex-direction: column;
  }
  .hero-btns {
    flex-direction: column;
  }
  .about-img-main {
    height: 350px;
  }
  .facilities-images {
    grid-template-columns: 1fr;
  }
  /* Specs bar: 2-per-row on very small screens */
  .brand-spec-item {
    flex: 0 0 50%;
  }
  /* Brand gallery: single column on small phones */
  .brand-gallery-masonry {
    columns: 1;
  }
}
