/* ============================================
   GLACIER ZIZI — Shared Stylesheet
   Artisanal Ice Cream — Brussels, since 1948
   ============================================ */

/* Screen reader only — accessible but hidden */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

:root {
  --cream: #FAF8F5;
  --brown: #2C2416;
  --gold: #B8956A;
  --secondary-text: #8B7355;
  --beige: #E8DCC8;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(44, 36, 22, 0.06);
  --shadow-md: 0 4px 20px rgba(44, 36, 22, 0.08);
  --shadow-lg: 0 8px 40px rgba(44, 36, 22, 0.12);
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--brown);
  background-color: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Optima', 'Didot', serif;
  font-weight: 300;
  line-height: 1.2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Section Animations --- */
.fade-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background-color: var(--brown);
  color: var(--cream);
}

.btn-primary:hover {
  background-color: var(--gold);
  color: var(--white);
}

.btn-secondary {
  background-color: transparent;
  color: var(--brown);
  border: 1px solid var(--brown);
}

.btn-secondary:hover {
  background-color: var(--brown);
  color: var(--cream);
}

.btn-primary-light {
  background-color: var(--cream);
  color: var(--brown);
}

.btn-primary-light:hover {
  background-color: var(--gold);
  color: var(--white);
}

.btn-secondary-light {
  background-color: transparent;
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.4);
}

.btn-secondary-light:hover {
  background-color: var(--cream);
  color: var(--brown);
}

.btn-gold {
  background-color: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background-color: var(--brown);
  color: var(--cream);
}

/* --- Section Label --- */
.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-label-light {
  color: var(--gold);
}

/* --- Section Title --- */
.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

/* --- Section Subtitle --- */
.section-subtitle {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--secondary-text);
  max-width: 600px;
  line-height: 1.8;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition);
  background: transparent;
}

.nav.scrolled {
  padding: 0.8rem 0;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Optima', 'Didot', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--brown);
  letter-spacing: 1px;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 80px;
  width: auto;
  filter: invert(1);
  transition: var(--transition);
}

.nav-hero.scrolled .nav-logo-img {
  filter: none;
  height: 50px;
}

.nav-hero .nav-logo,
.nav-hero .nav-links a,
.nav-hero .hamburger span {
  color: var(--white);
}

.nav-hero.scrolled .nav-logo,
.nav-hero.scrolled .nav-links a,
.nav-hero.scrolled .hamburger span {
  color: var(--brown);
}

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

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brown);
  position: relative;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-hero.scrolled .nav-links a:hover,
.nav-hero.scrolled .nav-links a.active {
  color: var(--gold);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--brown);
  transition: var(--transition);
}

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

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

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

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(250, 248, 245, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: 'Optima', 'Didot', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--brown);
  transition: var(--transition);
}

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

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

.hero-medium {
  min-height: 70vh;
}

.hero-small {
  min-height: auto;
  height: auto;
  padding: 200px 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(44, 36, 22, 0.4) 0%,
    rgba(44, 36, 22, 0.6) 100%
  );
}

.hero-overlay-cream {
  background: linear-gradient(
    to bottom,
    rgba(250, 248, 245, 0.5) 0%,
    rgba(250, 248, 245, 0.7) 50%,
    rgba(250, 248, 245, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-label {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

.hero-label-dark {
  color: var(--brown);
  text-shadow: none;
}

.hero-title {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}

.hero-title-dark {
  color: var(--brown);
}

.hero-description {
  font-family: 'Jost', sans-serif;
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  max-width: 550px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-description-dark {
  color: var(--secondary-text);
}

.hero-mascotte {
  width: 100px;
  height: auto;
  margin: 0.5rem auto 0.5rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   PAGE HERO (for sub-pages with dark overlay)
   ============================================ */
.page-hero .hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.page-hero .hero-subtitle {
  font-family: 'Jost', sans-serif;
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================
   SECTIONS
   ============================================ */
section {
  padding: 8rem 0;
}

.section-cream {
  background-color: var(--cream);
}

.section-white {
  background-color: var(--white);
}

.section-dark {
  background-color: var(--brown);
  color: var(--cream);
}

.section-dark .section-subtitle {
  color: rgba(250, 248, 245, 0.7);
}

.section-beige {
  background-color: var(--beige);
}

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

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   STORY / TWO-COLUMN SECTION
   ============================================ */
.grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.grid-two.reverse .grid-image {
  order: 2;
}

.grid-two.reverse .grid-text {
  order: 1;
}

.grid-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.grid-image {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4/5;
}

.grid-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--secondary-text);
  margin-bottom: 1.5rem;
}

.big-number {
  font-family: 'Optima', 'Didot', serif;
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 300;
  color: var(--beige);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.big-number-suffix {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 2rem;
}

/* ============================================
   GALLERY GRID
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 36, 22, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease;
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(44, 36, 22, 0.4);
}

.gallery-item-text {
  font-family: 'Optima', 'Didot', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  letter-spacing: 1px;
}

.gallery-item:hover .gallery-item-text {
  opacity: 1;
  transform: translateY(0);
}

/* 4-column gallery variant */
.gallery-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ============================================
   VALUE / FEATURE CARDS
   ============================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.cards-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.cards-grid-2-centered {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
  margin: 0 auto;
}

.card {
  background: var(--white);
  border-radius: 2px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.card-title {
  font-family: 'Optima', 'Didot', serif;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.card-text {
  font-size: 0.95rem;
  color: var(--secondary-text);
  line-height: 1.7;
}

/* Dark card variant */
.card-dark {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--cream);
}

.card-dark:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
}

.card-dark .card-text {
  color: rgba(250, 248, 245, 0.7);
}

/* Cream bg card */
.card-cream {
  background: var(--cream);
}

/* ============================================
   LOCATION CARDS
   ============================================ */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.location-card {
  background: var(--white);
  border-radius: 2px;
  padding: 3rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.location-card:hover {
  box-shadow: var(--shadow-md);
}

.locations-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.location-name {
  font-family: 'Optima', 'Didot', serif;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
  color: var(--brown);
}

.location-type {
  display: block;
  font-size: 0.85rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--secondary-text);
}

.location-detail svg {
  flex-shrink: 0;
  margin-top: 3px;
}

/* ============================================
   SEASONAL / DARK SPLIT SECTION
   ============================================ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
}

.split-image {
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 4rem;
}

.split-content .section-title {
  color: var(--cream);
}

.split-content p {
  color: rgba(250, 248, 245, 0.7);
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  text-align: center;
  padding: 8rem 2rem;
  overflow: hidden;
}

.cta-section .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.cta-section .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 36, 22, 0.85);
}

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

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 2rem;
  white-space: nowrap;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--beige);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-year {
  flex: 1;
  text-align: right;
  padding-right: 3rem;
  font-family: 'Optima', 'Didot', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
}

.timeline-item:nth-child(even) .timeline-year {
  text-align: left;
  padding-right: 0;
  padding-left: 3rem;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.timeline-content {
  flex: 1;
  padding-left: 3rem;
}

.timeline-item:nth-child(even) .timeline-content {
  padding-left: 0;
  padding-right: 3rem;
  text-align: right;
}

.timeline-title {
  font-family: 'Optima', 'Didot', serif;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.timeline-text {
  font-size: 0.95rem;
  color: var(--secondary-text);
}

/* ============================================
   TEAM
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  text-align: center;
}

.team-grid-4 {
  grid-template-columns: repeat(5, 1fr);
}

.team-member-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-md);
}

.team-member-name {
  font-family: 'Optima', 'Didot', serif;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.team-member-role {
  font-size: 0.9rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary-text);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--brown);
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: 2px;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 149, 106, 0.1);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
  accent-color: var(--gold);
}

.form-checkbox label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.9rem;
  color: var(--secondary-text);
}

/* ============================================
   QUICK ACTION CARDS
   ============================================ */
.quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.quick-action-card {
  background: var(--white);
  border-radius: 2px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.quick-action-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.quick-action-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.quick-action-title {
  font-family: 'Optima', 'Didot', serif;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.quick-action-text {
  font-size: 0.9rem;
  color: var(--secondary-text);
  margin-bottom: 1rem;
}

.quick-action-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.quick-action-link:hover {
  color: var(--brown);
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--beige);
  padding: 1.5rem 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 1rem;
}

.faq-question h3 {
  font-family: 'Optima', 'Didot', serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  transition: var(--transition);
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-top: 1rem;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--secondary-text);
  line-height: 1.8;
}

/* ============================================
   PRESS CARDS
   ============================================ */
.press-card {
  background: var(--white);
  border-radius: 2px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-left: 3px solid var(--gold);
}

.press-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.press-source {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 1rem;
}

.press-quote {
  font-family: 'Optima', 'Didot', serif;
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--brown);
}

.press-date {
  font-size: 0.85rem;
  color: var(--secondary-text);
}

/* ============================================
   BRAND ASSETS
   ============================================ */
.assets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.asset-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.asset-card:hover {
  box-shadow: var(--shadow-md);
}

.asset-preview {
  height: 180px;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Optima', 'Didot', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--secondary-text);
}

.asset-info {
  padding: 1.5rem;
}

.asset-name {
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.asset-format {
  font-size: 0.8rem;
  color: var(--secondary-text);
}

/* ============================================
   B2B SPECIFIC
   ============================================ */
.service-card {
  background: var(--white);
  border-radius: 2px;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.service-title {
  font-family: 'Optima', 'Didot', serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.service-text {
  font-size: 0.95rem;
  color: var(--secondary-text);
  line-height: 1.8;
}

.format-list {
  list-style: none;
}

.format-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--beige);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  color: var(--secondary-text);
}

.format-list li:last-child {
  border-bottom: none;
}

.format-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================
   SIGNATURE
   ============================================ */
.signature {
  font-family: 'Optima', 'Didot', serif;
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  margin-top: 1.5rem;
}

/* ============================================
   INFO CARDS (Contact page right column)
   ============================================ */
.info-card {
  background: var(--cream);
  border-radius: 2px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.info-card-title {
  font-family: 'Optima', 'Didot', serif;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.info-card p {
  font-size: 0.95rem;
  color: var(--secondary-text);
  line-height: 1.7;
}

/* ============================================
   MAP PLACEHOLDER
   ============================================ */
.map-placeholder {
  background: var(--beige);
  height: 300px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--secondary-text);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--brown);
  color: var(--cream);
  padding: 5rem 0 2rem;
}

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

.footer-logo-img {
  height: 100px;
  width: auto;
  filter: invert(1);
  margin-bottom: 1rem;
  opacity: 1;
}

.footer-brand-name {
  font-family: 'Optima', 'Didot', serif;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1rem;
  display: none;
}

.footer-brand-text {
  font-size: 0.9rem;
  color: rgba(250, 248, 245, 0.6);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  transition: var(--transition);
}

.footer-social-link:hover {
  background: var(--gold);
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--cream);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-heading {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-links a {
  display: block;
  font-size: 0.9rem;
  color: rgba(250, 248, 245, 0.6);
  margin-bottom: 0.75rem;
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(250, 248, 245, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.footer-mascotte {
  height: 120px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-mascotte:hover {
  opacity: 1;
}

/* ============================================
   MENU / LA CARTE — Style carte PDF
   ============================================ */

/* Fond texturé papier ancien */
.carte-page {
  background: #e8e2d8;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(200,190,175,0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(190,180,165,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(195,185,170,0.25) 0%, transparent 50%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

/* Category Navigation — sticky under header */
.menu-category-nav {
  position: sticky;
  top: 70px;
  z-index: 90;
  background: rgba(232, 226, 216, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: 0;
  transition: box-shadow 0.3s ease;
}

.menu-category-nav.shadow {
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.menu-category-nav-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.menu-category-nav-inner::-webkit-scrollbar {
  display: none;
}

.category-btn {
  background: none;
  border: none;
  padding: 0.85rem 1.1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #555;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  border-bottom: 2px solid transparent;
  position: relative;
}

.category-btn:hover {
  color: #222;
}

.category-btn.active {
  color: #222;
  border-bottom-color: #333;
  font-weight: 500;
}

/* Carte content area */
.carte-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5rem 3rem 4rem;
  position: relative;
}

/* Page header with mascotte + logo */
.carte-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.carte-mascotte {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.carte-mascotte img {
  height: 55px;
  width: auto;
}

.carte-mascotte-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #333;
}

.carte-logo {
  height: 45px;
  width: auto;
}

/* Decorative gravure icons — flanking section titles */
.carte-title-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin: 0 auto 1.8rem;
}

.carte-title-icon {
  width: 90px;
  height: 90px;
  object-fit: contain;
  opacity: 0.10;
  pointer-events: none;
  flex-shrink: 0;
}

.carte-title-icon.flip {
  transform: scaleX(-1);
}

.carte-title-row .carte-section-title {
  left: auto;
  transform: none;
  margin: 0;
}

/* Section styling — matches PDF framed titles */
.carte-section {
  margin-bottom: 3rem;
  scroll-margin-top: 140px;
  position: relative;
  z-index: 1;
}

.carte-section-title {
  font-family: 'Optima', 'Didot', serif;
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #222;
  text-align: center;
  border: 1.5px solid #333;
  padding: 0.6rem 2.5rem;
  display: inline-block;
  margin: 0 auto 1.8rem;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

/* Sub-category title (like BOISSONS FROIDES, JUS DE FRUITS FRAIS) */
.carte-subcategory {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brown);
  text-decoration: none;
  margin: 1.5rem 0 0.8rem;
}

/* Menu items */
.carte-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.carte-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  gap: 1rem;
}

.carte-item:last-child {
  border-bottom: none;
}

.carte-item-info {
  flex: 1;
  min-width: 0;
}

.carte-item-name {
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.1rem;
}

.carte-item-desc {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  color: #666;
  line-height: 1.4;
}

.carte-item-price {
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: #222;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Note at bottom of section */
.carte-note {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  color: #777;
  font-style: italic;
  margin-top: 1rem;
  text-align: center;
}

/* Footer notice */
.carte-footer-notice {
  text-align: center;
  padding: 1.5rem 0 0;
  margin-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.carte-footer-notice p {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  color: #888;
  line-height: 1.6;
  font-style: italic;
}

/* ============================================
   GALERIE PAGE
   ============================================ */

.galerie-filter-nav {
  position: sticky;
  top: 70px;
  z-index: 90;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 0.8rem 0;
}

.galerie-filter-inner {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.galerie-filter-inner::-webkit-scrollbar {
  display: none;
}

.galerie-filter-btn {
  background: none;
  border: 1px solid transparent;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8B7355;
  padding: 0.5rem 1.2rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.galerie-filter-btn:hover {
  color: #2C2416;
  border-color: rgba(0,0,0,0.15);
}

.galerie-filter-btn.active {
  color: #2C2416;
  border-bottom: 2px solid #B8956A;
  font-weight: 600;
}

.galerie-section {
  padding: 3rem 2rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.galerie-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  aspect-ratio: 4/3;
}

.galerie-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.galerie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.galerie-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1rem 0.8rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.galerie-item:hover .galerie-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox */
.galerie-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.galerie-lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
  z-index: 10;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
  padding: 1rem;
  z-index: 10;
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 1;
}

.lightbox-caption {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-family: 'Optima', 'Didot', serif;
  font-size: 1.3rem;
  font-style: italic;
  text-align: center;
  opacity: 0.8;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  section {
    padding: 6rem 0;
  }

  .grid-two {
    gap: 3rem;
  }

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

  .galerie-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }

  .container {
    padding: 0 1.5rem;
  }

  /* Galerie responsive */
  .galerie-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .galerie-section {
    padding: 2rem 1.5rem 3rem;
  }

  .galerie-caption {
    opacity: 1;
    transform: translateY(0);
    font-size: 0.78rem;
    padding: 1.5rem 0.8rem 0.6rem;
  }

  /* Carte responsive */
  .menu-category-nav-inner {
    padding: 0 1rem;
  }

  .category-btn {
    padding: 0.7rem 0.8rem;
    font-size: 0.72rem;
  }

  .carte-content {
    padding: 1.5rem 1.5rem 3rem;
  }

  .carte-section {
    margin-bottom: 2rem;
  }

  .carte-section-title {
    font-size: 1.2rem;
    padding: 0.5rem 1.5rem;
    letter-spacing: 0.08em;
  }

  .carte-header {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .carte-deco {
    display: none;
  }

  /* Navigation */
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .mobile-nav {
    display: flex;
  }

  /* Hero */
  .hero {
    min-height: 90vh;
  }

  .hero-small {
    min-height: auto;
    height: 50vh;
  }

  .hero-medium {
    min-height: auto;
    height: 60vh;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  /* Grids */
  .grid-two {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .grid-two.reverse .grid-image,
  .grid-two.reverse .grid-text {
    order: unset;
  }

  .cards-grid,
  .cards-grid-4 {
    grid-template-columns: 1fr;
  }

  .locations-grid,
  .locations-grid-3 {
    grid-template-columns: 1fr;
  }

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

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

  .split-section {
    grid-template-columns: 1fr;
  }

  .split-content {
    padding: 3rem 1.5rem;
  }

  .quick-actions {
    grid-template-columns: 1fr;
  }

  .team-grid,
  .team-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

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

  /* Timeline */
  .timeline::before {
    left: 0;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 2rem;
  }

  .timeline-dot {
    position: absolute;
    left: -7px;
    top: 0;
  }

  .timeline-year,
  .timeline-item:nth-child(even) .timeline-year {
    text-align: left;
    padding: 0;
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    padding: 0;
    text-align: left;
  }

  /* Assets */
  .assets-grid {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .cta-section {
    padding: 5rem 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  .big-number {
    font-size: 5rem;
  }
}
