/* ========================================
   BY GLAD CAFÉ — Stylesheet
   ======================================== */

:root {
  --primary: #BC8157;
  --primary-dark: #9a6740;
  --primary-light: #d4a07a;
  --secondary: #212121;
  --white: #ffffff;
  --light: #f9f5f1;
  --light-alt: #f2ebe3;
  --gray: #6b6b6b;
  --gray-light: #e8e0d8;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  --transition: 0.3s ease;
  --shadow: 0 4px 20px rgba(33, 33, 33, 0.12);
  --shadow-hover: 0 8px 32px rgba(33, 33, 33, 0.18);
  --radius: 4px;
  --radius-lg: 12px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--secondary);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--secondary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1rem; color: var(--gray); font-size: 1.05rem; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

/* ---- Utilities ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container--narrow { max-width: 800px; margin: 0 auto; padding: 0 1.5rem; }

.section { padding: 100px 0; }
.section--light { background: var(--light); }
.section--dark { background: var(--secondary); color: var(--white); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.75); }

.text-center { text-align: center; }
.text-primary { color: var(--primary); }

/* ---- CTA Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(188, 129, 87, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--secondary);
  border-color: var(--white);
}
.btn--white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---- Header / Navigation ---- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all var(--transition);
  padding: 1.25rem 0;
}

.header.scrolled {
  background: rgba(33, 33, 33, 0.97);
  backdrop-filter: blur(10px);
  padding: 0.75rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.header__logo img {
  height: 56px;
  width: auto;
  transition: height var(--transition);
}
.header.scrolled .header__logo img { height: 44px; }

.nav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav__link:hover { color: var(--primary); }
.nav__link:hover::after { transform: scaleX(1); }

.nav__cta { color: var(--white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  width: 26px; height: 2px;
  background: var(--white);
  transition: all var(--transition);
  display: block;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

.hero__slides { position: absolute; inset: 0; }

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero__slide.active { opacity: 1; }

.hero__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(33,33,33,0.7) 0%, rgba(33,33,33,0.3) 60%, rgba(0,0,0,0.1) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 700px;
}

.hero__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary-light);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero__label::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--primary-light);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero__desc {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__indicators {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}
.hero__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.hero__dot.active {
  background: var(--primary);
  width: 28px;
  border-radius: 4px;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem; right: 2rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---- Valeurs / Pilliers ---- */
.values { padding: 80px 0; background: var(--secondary); }
.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.value-item {
  padding: 3rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
  transition: background var(--transition);
}
.value-item:last-child { border-right: none; }
.value-item:hover { background: rgba(188, 129, 87, 0.08); }

.value-item__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(188, 129, 87, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: background var(--transition);
}
.value-item:hover .value-item__icon { background: var(--primary); }
.value-item__icon svg {
  width: 28px; height: 28px;
  color: var(--primary);
  transition: color var(--transition);
}
.value-item:hover .value-item__icon svg { color: var(--white); }

.value-item h3 { color: var(--white); margin-bottom: 0.75rem; font-size: 1.1rem; }
.value-item p { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin: 0; }

/* ---- Section Histoire ---- */
.histoire { background: var(--light); }
.histoire__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.histoire__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.histoire__image img {
  width: 100%; height: 520px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.histoire__image:hover img { transform: scale(1.04); }
.histoire__badge {
  position: absolute;
  bottom: 2rem; right: -1.5rem;
  background: var(--primary);
  color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
}
.histoire__badge strong { display: block; font-size: 2rem; font-family: var(--font-heading); line-height: 1; }
.histoire__badge span { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.9; }

.histoire__content { padding-right: 1rem; }
.histoire__content h2 { margin-bottom: 1.5rem; }
.histoire__content p { margin-bottom: 1.25rem; }
.histoire__tags { display: flex; gap: 0.75rem; flex-wrap: wrap; margin: 1.75rem 0; }
.tag {
  padding: 0.4rem 1rem;
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ---- Engagements ---- */
.engagements__header { text-align: center; margin-bottom: 4rem; }
.engagements__header h2 { margin-bottom: 1rem; }

.engagements__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.engagement-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-left: 4px solid transparent;
}
.engagement-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-left-color: var(--primary);
}
.engagement-card__icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.engagement-card__icon svg { width: 24px; height: 24px; color: var(--primary); }
.engagement-card h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.engagement-card p { margin: 0; font-size: 0.95rem; }
.engagements__cta { text-align: center; }

/* ---- Produits ---- */
.produits { background: var(--secondary); }
.produits__header { text-align: center; margin-bottom: 4rem; }
.produits__header h2 { color: var(--white); }
.produits__header p { color: rgba(255,255,255,0.65); max-width: 540px; margin: 1rem auto 0; }

.produits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.produit-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform var(--transition), border-color var(--transition);
  cursor: pointer;
}
.produit-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
}
.produit-card__img {
  overflow: hidden;
  height: 220px;
  position: relative;
}
.produit-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.produit-card:hover .produit-card__img img { transform: scale(1.08); }

.produit-card__body { padding: 1.5rem; }
.produit-card__badge {
  display: inline-block;
  background: rgba(188, 129, 87, 0.2);
  color: var(--primary-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}
.produit-card h3 { color: var(--white); margin-bottom: 0.5rem; font-size: 1.1rem; }
.produit-card p { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin: 0; }

.produits__cta { text-align: center; }

/* ---- Le Café ---- */
.cafe { background: var(--light); }
.cafe__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.cafe__content { order: 1; }
.cafe__images { order: 2; }

.cafe__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.cafe__gallery-main {
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
}
.cafe__gallery-main img, .cafe__gallery-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.cafe__gallery-main:hover img, .cafe__gallery-thumb:hover img { transform: scale(1.04); }

.cafe__gallery-thumb {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 160px;
}

.cafe__content h2 { margin-bottom: 1.5rem; }
.cafe__content p { margin-bottom: 1.25rem; }

.cafe__features { display: flex; flex-direction: column; gap: 1rem; margin: 2rem 0; }
.cafe__feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.cafe__feature-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(188, 129, 87, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.cafe__feature-icon svg { width: 18px; height: 18px; color: var(--primary); }
.cafe__feature-text strong { display: block; font-size: 0.95rem; color: var(--secondary); margin-bottom: 0.1rem; }
.cafe__feature-text span { font-size: 0.875rem; color: var(--gray); }

/* ---- Contact ---- */
.contact { background: var(--white); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact__info h2 { margin-bottom: 1.5rem; }
.contact__info p { margin-bottom: 2rem; }

.contact__details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact__detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact__detail-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__detail-icon svg { width: 20px; height: 20px; color: var(--primary); }
.contact__detail strong { display: block; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gray); margin-bottom: 0.25rem; }
.contact__detail a, .contact__detail span { color: var(--secondary); font-size: 0.95rem; }
.contact__detail a:hover { color: var(--primary); }

.contact__hours {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 2rem;
}
.contact__hours h4 { margin-bottom: 1rem; color: var(--secondary); }
.hours-list { display: flex; flex-direction: column; gap: 0.5rem; }
.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: 0.95rem;
}
.hours-item:last-child { border-bottom: none; }
.hours-day { font-weight: 600; color: var(--secondary); }
.hours-time { color: var(--primary); font-weight: 600; }

.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 480px;
  box-shadow: var(--shadow);
}
.contact__map iframe {
  width: 100%; height: 100%;
  border: none;
  display: block;
}

.contact__socials { display: flex; gap: 1rem; margin-top: 1.5rem; }
.social-link {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--secondary);
}
.social-link:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.social-link svg { width: 20px; height: 20px; }

/* ---- Footer ---- */
.footer { background: #111; color: rgba(255,255,255,0.7); }

.footer__top {
  padding: 80px 0 60px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
}

.footer__brand img { height: 50px; margin-bottom: 1.5rem; }
.footer__brand p { font-size: 0.95rem; line-height: 1.8; margin-bottom: 1.5rem; }

.footer__title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.footer__links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__link::before {
  content: '→';
  color: var(--primary);
  font-size: 0.8rem;
  transition: transform var(--transition);
}
.footer__link:hover { color: var(--white); }
.footer__link:hover::before { transform: translateX(3px); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.footer__contact-item svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; margin-top: 3px; }
.footer__contact-item a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer__contact-item a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__copy { font-size: 0.8rem; }
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { font-size: 0.8rem; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer__legal a:hover { color: rgba(255,255,255,0.8); }

/* ---- Back to top ---- */
.back-to-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 500;
  width: 46px; height: 46px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(188, 129, 87, 0.4);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-2px); }
.back-to-top svg { width: 20px; height: 20px; }

/* ---- Animations on scroll ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- Cookie Banner ---- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 2000;
  background: var(--secondary);
  color: rgba(255,255,255,0.85);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { margin: 0; font-size: 0.9rem; }
.cookie-banner__actions { display: flex; gap: 0.75rem; flex-shrink: 0; }

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
  .values__grid { grid-template-columns: repeat(2, 1fr); }
  .value-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .value-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .value-item:last-child { border-bottom: none; }

  .histoire__inner { grid-template-columns: 1fr; gap: 3rem; }
  .histoire__badge { right: 2rem; }
  .histoire__image img { height: 380px; }

  .cafe__inner { grid-template-columns: 1fr; gap: 3rem; }
  .cafe__content { order: 2; }
  .cafe__images { order: 1; }

  .contact__inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact__map { min-height: 320px; }

  .footer__top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer__brand { grid-column: 1 / -1; }
}

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

  /* Nav mobile */
  .hamburger { display: flex; }
  .nav {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--secondary);
    padding: 6rem 2rem 2rem;
    transition: right var(--transition);
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
    overflow-y: auto;
  }
  .nav.open { right: 0; }
  .nav__list { flex-direction: column; align-items: flex-start; gap: 0; }
  .nav__link {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    width: 100%;
    font-size: 0.95rem;
  }
  .nav__link::after { display: none; }
  .nav__item:last-child .nav__link { border-bottom: none; }

  .hero__content { padding-right: 1rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; }

  .produits__grid { grid-template-columns: 1fr; }
  .engagements__grid { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr; }
  .value-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .value-item:nth-child(odd) { border-right: none; }

  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer__brand { grid-column: auto; }

  .hero__scroll { display: none; }
  .histoire__badge { position: static; margin-top: 1rem; display: inline-block; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  .btn { padding: 0.75rem 1.5rem; font-size: 0.8rem; }
  .cafe__gallery { grid-template-columns: 1fr; }
  .cafe__gallery-main { height: 200px; }
  .cafe__gallery-thumb { height: 140px; }
}
