/* =====================================================
   Salaisons de Bourbon - Styles principaux
   ===================================================== */

/* Variables & Reset */
:root {
  --primary: rgb(247, 148, 31);
  --primary-dark: rgb(165, 99, 21);
  --primary-light: rgb(255, 190, 100);
  --primary-pale: rgb(255, 245, 225);
  --text-dark: #2c1a0e;
  --text-mid: #5a3e28;
  --text-light: #8a6a50;
  --white: #ffffff;
  --bg-warm: #fdf8f0;
  --bg-section: #faf3e8;
  --border: rgba(165, 99, 21, 0.15);
  --shadow: 0 4px 20px rgba(165, 99, 21, 0.12);
  --shadow-lg: 0 8px 40px rgba(165, 99, 21, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Source Sans 3', 'Arial', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

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

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

.section {
  padding: 5rem 0;
}

.section--alt {
  background: var(--bg-section);
}

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

.badge {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: var(--primary-pale);
  color: var(--primary-dark);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
}

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

.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(247, 148, 31, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--primary);
}

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

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

.btn--white:hover {
  background: var(--primary-pale);
  transform: translateY(-2px);
}

.btn svg {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}

/* =====================================================
   HEADER / NAVIGATION
   ===================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 2rem;
}

.nav__logo {
  flex-shrink: 0;
}

.nav__logo img {
  height: 52px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: 0.4rem 0;
  position: relative;
  transition: color var(--transition);
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav__links a:hover {
  color: var(--primary-dark);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  flex-shrink: 0;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1a0d06 0%, #3d1f0a 50%, #5a2e0f 100%);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-pattern {
  position: absolute;
  inset: -10% 0 0 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(247, 148, 31, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(247, 148, 31, 0.05) 0%, transparent 40%);
  will-change: transform;
}

.hero__deco {
  position: absolute;
  opacity: 0.12;
  pointer-events: none;
  transition: transform 0.4s ease-out;
  will-change: transform;
}

.hero__deco--thym {
  right: -80px;
  top: -40px;
  width: 400px;
  transform: rotate(15deg);
}

.hero__deco--ail {
  left: -30px;
  bottom: 5%;
  width: 180px;
  opacity: 0.08;
}

.hero__spotlight {
  position: absolute;
  width: 500px;
  height: 500px;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(247, 148, 31, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero__text {
  color: var(--white);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(247, 148, 31, 0.2);
  border: 1px solid rgba(247, 148, 31, 0.4);
  border-radius: 100px;
  color: var(--primary-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero__title em {
  font-style: normal;
  color: var(--primary);
}

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.5rem;
  max-width: 500px;
  line-height: 1.7;
}

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

.hero__stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__img-wrap {
  position: relative;
  width: 420px;
  max-width: 100%;
  transition: transform 0.2s ease-out;
  will-change: transform;
}

.hero__img-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(247, 148, 31, 0.25) 0%, transparent 70%);
  border-radius: 50%;
}

.hero__img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 580px;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero__logo-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  z-index: 2;
  background: var(--white);
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.hero__logo-badge img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 50%;
}

/* =====================================================
   SECTION ENGAGEMENT
   ===================================================== */
.engagement {
  background: var(--white);
}

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

.engagement__visual {
  position: relative;
}

.engagement__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.engagement__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.engagement__img-wrap:hover .engagement__img {
  transform: scale(1.04);
}

.engagement__noulafe {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 220px;
}

.engagement__noulafe img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
}

.engagement__noulafe-text {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.4;
}

.engagement__noulafe-title {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.85rem;
}

.engagement__content {}

.engagement__lead {
  font-size: 1.1rem;
  color: var(--text-mid);
  margin: 1.5rem 0;
  line-height: 1.8;
}

.engagement__values {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.engagement__values li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.engagement__value-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.engagement__value-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.engagement__value-text span {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* =====================================================
   SECTION NOS MARQUES
   ===================================================== */
.marques {
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

.marques::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(247, 148, 31, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.marques__intro {
  max-width: 620px;
  margin: 0 auto 3.5rem;
}

.marques__subtitle {
  color: var(--text-mid);
  font-size: 1.05rem;
  margin-top: 1rem;
}

.marques__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.marque-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.15s ease-out, box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.marque-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.marque-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.marque-card:hover::before {
  transform: scaleX(1);
}

.marque-card__logo {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.marque-card__logo img {
  max-height: 100px;
  max-width: 200px;
  object-fit: contain;
  margin: 0 auto;
}

.marque-card__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.marque-card__desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.marques__cta {
  text-align: center;
  margin-top: 3rem;
}

/* =====================================================
   SECTION PRODUITS (Galerie)
   ===================================================== */
.produit-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-warm);
  box-shadow: var(--shadow);
  transition: transform 0.15s ease-out, box-shadow var(--transition);
  cursor: pointer;
  will-change: transform;
}

.produit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.produit-card__img-wrap {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
  background: var(--bg-section);
}

.produit-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.produit-card:hover .produit-card__img {
  transform: scale(1.08);
}

.produit-card__body {
  padding: 1rem;
}

.produit-card__name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 600;
}

.produit-card__cat {
  font-size: 0.78rem;
  color: var(--primary-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
}

/* =====================================================
   SLIDER PRODUITS (dans section Nos Marques)
   ===================================================== */
.produits__slider-intro {
  margin: 4rem auto 2rem;
  text-align: center;
}

.produits__slider-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-dark);
}

.produits__slider {
  position: relative;
  padding: 0 2.5rem;
}

.produits__track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 0 1rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.produits__track::-webkit-scrollbar {
  display: none;
}

.produits__track .produit-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
}

.produits__slider-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all var(--transition);
}

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

.produits__slider-btn--prev { left: 0; }
.produits__slider-btn--next { right: 0; }

@media (max-width: 640px) {
  .produits__slider { padding: 0 1rem; }
  .produits__slider-btn { display: none; }
  .produits__track .produit-card { flex-basis: 65vw; }
}

/* =====================================================
   SECTION CONTACT
   ===================================================== */
.contact {
  background: linear-gradient(135deg, #2c1a0e 0%, #4a2810 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 80%, rgba(247, 148, 31, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 90% 10%, rgba(247, 148, 31, 0.07) 0%, transparent 40%);
}

.contact__deco {
  position: absolute;
  right: -80px;
  bottom: -60px;
  width: 350px;
  opacity: 0.05;
  transform: rotate(-20deg);
}

.contact__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact__text h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.contact__lead {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact__items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact__item-icon {
  width: 44px;
  height: 44px;
  background: rgba(247, 148, 31, 0.2);
  border: 1px solid rgba(247, 148, 31, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact__item-content {
  flex: 1;
}

.contact__item-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.contact__item-value {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 500;
  line-height: 1.4;
}

.contact__item-value a {
  color: var(--primary-light);
  transition: color var(--transition);
}

.contact__item-value a:hover {
  color: var(--primary);
}

.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(247, 148, 31, 0.2);
}

.contact__map iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

/* =====================================================
   SECTION RÉSEAUX SOCIAUX
   ===================================================== */
.social {
  background: var(--bg-section);
}

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

.social__text {}

.social__lead {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 1rem 0 2rem;
}

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

.btn--facebook {
  background: #1877F2;
  color: var(--white);
}

.btn--facebook:hover {
  background: #1565c0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

.social__preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.social__preview-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-warm);
}

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

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

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: #1a0d06;
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 1.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.5rem;
}

.footer__brand img {
  height: 48px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer__brand-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer__col-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer__links a {
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--primary);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.footer__contact-item span:first-child {
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  flex-wrap: wrap;
}

.footer__legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer__legal-links a:hover {
  color: var(--primary);
}

/* =====================================================
   DIVIDER DÉCORATIF
   ===================================================== */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}

.divider--center {
  margin: 1rem auto 1.5rem;
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* =====================================================
   SCROLL TO TOP
   ===================================================== */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(247, 148, 31, 0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 999;
  font-size: 1.1rem;
}

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

.scroll-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

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

  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__img-wrap { width: 300px; }

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

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .social__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .nav__links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border);
    transform: translateY(-120%);
    transition: transform var(--transition);
    z-index: 999;
  }

  .nav__links.open {
    transform: translateY(0);
  }

  .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .marques__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer__legal-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .hero__logo-badge {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero__stats {
    flex-direction: column;
    gap: 1rem;
  }

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

  .btn { width: 100%; justify-content: center; }

  .hero__actions .btn { width: auto; min-width: 200px; }
}
