/* ===================================================
   CASAVINO EXPÉRIENCE — Stylesheet
   Palette: #fee8c9 #5a131e #f69f1b #87b832 #b71f1d #8c1914 #ea5720 #eec700
   =================================================== */

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

:root {
  --cream: #fee8c9;
  --burgundy: #5a131e;
  --burgundy-dark: #3d0c14;
  --gold: #f69f1b;
  --gold-bright: #eec700;
  --green: #87b832;
  --red: #b71f1d;
  --red-dark: #8c1914;
  --orange: #ea5720;
  --white: #ffffff;
  --off-white: #fdf6ee;
  --text-dark: #2a0a0f;
  --text-mid: #5a131e;

  /* Typography */
  --font-title: 'Felix Titling', 'Garamond', 'Georgia', serif;
  --font-body: 'Libre Franklin', 'Franklin Gothic Book', sans-serif;

  /* Spacing */
  --section-pad: 7rem 0;
  --container: 1200px;
}

/* Polices hébergées sur LWS */
@font-face {
  font-family: 'Felix Titling';
  src: local('Felix Titling'),
       url('../fonts/FELIXTI.TTF') format('truetype');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Libre Franklin';
  src: local('Libre Franklin'),
       url('../fonts/LibreFranklin-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-display: swap;
}

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

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

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

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

ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-title);
  font-weight: 400;
  line-height: 1.2;
}

em { font-style: italic; color: var(--gold); }

/* --- Utility --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--burgundy);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-title-light {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
  text-align: center;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.section-subtitle {
  text-align: center;
  color: var(--red-dark);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 3.5rem;
}

.section-subtitle-light {
  text-align: center;
  color: var(--cream);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 3.5rem;
  opacity: 0.9;
}

/* Soulignement SVG decorations */
.soulignement-title {
  display: block;
  margin: 0.4rem auto 2rem;
  width: 240px;
  opacity: 0.85;
}

.soulignement-title-light {
  display: block;
  margin: 0.4rem auto 2rem;
  width: 240px;
  filter: brightness(5);
  opacity: 0.7;
}

.soulignement-sm {
  display: block;
  margin: 0.3rem 0 1.2rem;
  width: 160px;
  opacity: 0.7;
}

.soulignement-xs {
  display: block;
  margin: 0.2rem 0 0.8rem;
  width: 120px;
  opacity: 0.7;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: var(--gold);
  color: var(--burgundy-dark);
  font-family: var(--font-title);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(90, 19, 30, 0.25);
}

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

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

.btn-outline {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: transparent;
  color: var(--cream);
  font-family: var(--font-title);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid rgba(254, 232, 201, 0.6);
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(254, 232, 201, 0.15);
  border-color: var(--cream);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: transparent;
  color: var(--burgundy);
  font-family: var(--font-title);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid var(--burgundy);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--burgundy);
  color: var(--cream);
  transform: translateY(-2px);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* =========================================
   NAVBAR
   ========================================= */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all 0.4s ease;
  background: rgba(20, 5, 8, 0.35);
  backdrop-filter: blur(4px);
}

#navbar.scrolled {
  background: rgba(58, 6, 14, 0.96);
  backdrop-filter: blur(10px);
  padding: 0.7rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  flex-shrink: 0;
}

.logo-svg {
  height: 60px;
  width: auto;
  transition: height 0.4s ease;

}

#navbar.scrolled .logo-svg {
  height: 44px;
}

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

.nav-links li a {
  font-family: var(--font-title);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 0.4rem 0.7rem;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}

.nav-links li a:hover {
  opacity: 1;
  color: var(--gold);
}

.nav-links .nav-cta {
  background: var(--gold);
  color: var(--burgundy-dark) !important;
  padding: 0.5rem 1rem;
  opacity: 1 !important;
}

.nav-links .nav-cta:hover {
  background: var(--cream);
}

.nav-links .nav-it {
  color: var(--gold-bright);
  font-style: italic;
  font-size: 0.65rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s;
}

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

.hero-parallax {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(58, 6, 14, 0.75) 0%,
    rgba(90, 19, 30, 0.55) 50%,
    rgba(20, 5, 8, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
}

.hero-logo-wrap {
  margin-bottom: 2rem;
  animation: fadeInDown 1.2s ease both;
}

.hero-logo {
  height: 154px;
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.4));
}

.hero-tagline {
  animation: fadeInUp 1.2s ease 0.3s both;
  margin-bottom: 2.5rem;
}

.soulignement.top {
  display: block;
  margin: 0 auto 0.8rem;
  width: 300px;
  filter: brightness(3) sepia(1) saturate(2) hue-rotate(-10deg);
  opacity: 0.8;
  transform: scaleY(-1);
}

.soulignement.bottom {
  display: block;
  margin: 0.8rem auto 0;
  width: 300px;
  filter: brightness(3) sepia(1) saturate(2) hue-rotate(-10deg);
  opacity: 0.8;
}

.hero-sub {
  font-family: var(--font-title);
  font-size: clamp(0.9rem, 2.5vw, 1.3rem);
  color: var(--cream);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.9;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1.2s ease 0.6s both;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--cream);
  opacity: 0.5;
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  z-index: 1;
}

/* =========================================
   INTRO
   ========================================= */
.intro {
  background: var(--off-white);
  padding: var(--section-pad);
}

.intro-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 3rem;
  align-items: start;
}

.intro-deco {
  display: flex;
  justify-content: center;
}

.feuille-deco {
  width: 120px;
  height: auto;
  opacity: 0.85;
}

.intro-text h2 {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--burgundy);
  margin-bottom: 0.5rem;
}

.intro-text .soulignement-title {
  margin-left: 0;
}

.intro-text p {
  color: #3a2028;
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

/* =========================================
   SERVICES
   ========================================= */
.services {
  background: var(--cream);
}

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

.service-card {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card--alt .service-body {
  background: var(--burgundy);
  color: var(--cream);
}

.service-card--alt .service-body h3 {
  color: var(--gold);
}

.service-card--alt .service-body p {
  color: rgba(254, 232, 201, 0.85);
}

.service-card--alt .service-link {
  color: var(--gold);
}

.service-card--alt .soulignement-sm {
  filter: brightness(5) sepia(1) saturate(2) hue-rotate(-10deg);
}

.service-img-wrap {
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

.service-card:hover .service-img-wrap img {
  transform: scale(1.04);
}

.service-body {
  padding: 2.5rem 2rem;
  background: var(--off-white);
  flex: 1;
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.service-icon img {
  height: 48px;
  width: auto;
}

.service-body h3 {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: var(--burgundy);
  margin-bottom: 0.4rem;
}

.service-body p {
  font-size: 0.95rem;
  color: #4a2028;
  margin-bottom: 0.8rem;
}

.service-link {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-title);
  font-size: 0.85rem;
  color: var(--red);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s, letter-spacing 0.2s;
}

.service-link:hover {
  color: var(--gold);
  letter-spacing: 0.14em;
}

/* =========================================
   CIRCUITS
   ========================================= */
.circuits {
  position: relative;
  padding: var(--section-pad);
}

.circuits-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.circuits-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(58, 6, 14, 0.88) 0%,
    rgba(140, 25, 20, 0.82) 100%
  );
}

.circuits .container {
  position: relative;
  z-index: 1;
}

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

.circuit-card {
  background: rgba(254, 232, 201, 0.06);
  border: 1px solid rgba(254, 232, 201, 0.2);
  backdrop-filter: blur(4px);
  padding: 2rem;
  transition: all 0.3s ease;
}

.circuit-card:hover {
  background: rgba(254, 232, 201, 0.1);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.circuit-card--center {
  background: rgba(246, 159, 27, 0.12);
  border-color: rgba(246, 159, 27, 0.4);
}

.circuit-flag {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.circuit-region {
  font-family: var(--font-title);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.circuit-card h4 {
  font-family: var(--font-title);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 0.8rem;
}

.circuit-tag {
  display: inline-block;
  font-size: 0.72rem;
  color: rgba(254, 232, 201, 0.6);
  font-style: italic;
  margin-bottom: 1rem;
}

.circuit-card p {
  font-size: 0.88rem;
  color: rgba(254, 232, 201, 0.8);
  margin-bottom: 1.2rem;
  line-height: 1.65;
}

.circuit-prog {
  margin-bottom: 1.5rem;
  border-left: 2px solid rgba(246, 159, 27, 0.4);
  padding-left: 1rem;
}

.circuit-prog li {
  font-size: 0.78rem;
  color: rgba(254, 232, 201, 0.65);
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(254, 232, 201, 0.08);
}

.circuit-btn {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(246, 159, 27, 0.5);
  color: var(--gold);
  font-family: var(--font-title);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
}

.circuit-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--burgundy-dark);
}

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

.circuits-cta p {
  color: rgba(254, 232, 201, 0.8);
  font-style: italic;
  margin-bottom: 1.5rem;
}

/* =========================================
   VINS
   ========================================= */
.vins {
  padding: var(--section-pad);
  background: var(--off-white);
}

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

.vin-card {
  background: var(--white);
  border: 1px solid rgba(90, 19, 30, 0.1);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.vin-card:hover {
  box-shadow: 0 12px 40px rgba(90, 19, 30, 0.12);
  transform: translateY(-4px);
  border-color: var(--gold);
}

.vin-card--featured {
  background: var(--burgundy);
  border-color: var(--burgundy);
}

.vin-card--featured h4,
.vin-card--featured p,
.vin-card--featured .vin-region {
  color: var(--gold) !important;
}

.vin-card--featured p {
  color: rgba(254, 232, 201, 0.85);
}

.vin-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--burgundy-dark);
  font-family: var(--font-title);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  white-space: nowrap;
}

.vin-illus {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vin-illus img {
  height: 130px;
  width: auto;
  margin: 0 auto;
}

.vin-region {
  font-size: 0.72rem;
  color: var(--red-dark);
  font-style: italic;
  letter-spacing: 0.08em;
}

.vin-body h4 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--burgundy);
  margin-bottom: 0;
}

.vin-body p {
  font-size: 0.9rem;
  color: #4a2028;
  line-height: 1.65;
}

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

/* =========================================
   DÉGUSTATIONS
   ========================================= */
.degustations {
  padding: var(--section-pad);
  background: var(--cream);
}

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

.deg-card {
  background: var(--white);
  overflow: hidden;
  transition: all 0.3s ease;
}

.deg-card:hover {
  box-shadow: 0 12px 40px rgba(90, 19, 30, 0.15);
  transform: translateY(-4px);
}

.deg-img {
  overflow: hidden;
  aspect-ratio: 16/10;
}

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

.deg-card:hover .deg-img img {
  transform: scale(1.05);
}

.deg-body {
  padding: 1.8rem;
}

.deg-body h4 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  color: var(--burgundy);
  margin-bottom: 0.8rem;
}

.deg-body p {
  font-size: 0.9rem;
  color: #4a2028;
  line-height: 1.65;
}

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

/* =========================================
   TÉMOIGNAGES
   ========================================= */
.temoignages {
  position: relative;
  padding: var(--section-pad);
}

.temoignages-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.temoignages-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(90, 19, 30, 0.9) 0%,
    rgba(58, 6, 14, 0.92) 100%
  );
}

.temoignages .container {
  position: relative;
  z-index: 1;
}

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

.temoignage-card {
  background: rgba(254, 232, 201, 0.06);
  border: 1px solid rgba(254, 232, 201, 0.15);
  padding: 2.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.temoignage-card:hover {
  background: rgba(254, 232, 201, 0.1);
  border-color: rgba(246, 159, 27, 0.4);
}

.temoignage-quote {
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.5;
  line-height: 0.6;
  margin-bottom: 1rem;
  leading-trim: both;
}

.temoignage-card p {
  font-size: 0.95rem;
  color: rgba(254, 232, 201, 0.85);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.temoignage-author strong {
  display: block;
  font-family: var(--font-title);
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 400;
}

.temoignage-author span {
  font-size: 0.78rem;
  color: rgba(254, 232, 201, 0.5);
}

/* =========================================
   ARMEL
   ========================================= */
.armel {
  padding: var(--section-pad);
  background: var(--off-white);
}

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

.armel-img-frame {
  position: relative;
}

.armel-img-frame img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border: 6px solid var(--cream);
  box-shadow: 16px 16px 0 var(--gold);
}

.armel-img-deco {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 80px;
  opacity: 0.7;
}

.armel-text h2 {
  font-family: var(--font-title);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--burgundy);
  margin-bottom: 0.3rem;
}

.armel-subtitle {
  display: block;
  font-style: italic;
  color: var(--red-dark);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.armel-text .soulignement-title {
  margin-left: 0;
}

.armel-text p {
  color: #3a2028;
  font-size: 0.97rem;
  margin-bottom: 1.2rem;
}

.armel-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 2rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-title);
  font-size: 0.95rem;
  color: var(--burgundy);
  transition: color 0.2s;
}

.contact-link:hover { color: var(--red); }

/* =========================================
   CONTACT
   ========================================= */
.contact {
  position: relative;
  padding: var(--section-pad);
}

.contact-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(20, 5, 8, 0.92) 0%,
    rgba(90, 19, 30, 0.88) 100%
  );
}

.contact .container {
  position: relative;
  z-index: 1;
}

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

.contact-card {
  background: rgba(254, 232, 201, 0.05);
  border: 1px solid rgba(254, 232, 201, 0.15);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s;
}

.contact-card:hover {
  background: rgba(254, 232, 201, 0.1);
  border-color: rgba(246, 159, 27, 0.4);
  transform: translateY(-4px);
}

.contact-card--featured {
  background: rgba(246, 159, 27, 0.1);
  border-color: rgba(246, 159, 27, 0.4);
}

.contact-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-card h4 {
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.contact-card p {
  font-size: 0.88rem;
  color: rgba(254, 232, 201, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.contact-card-btn {
  display: inline-block;
  padding: 0.65rem 1.4rem;
  background: var(--gold);
  color: var(--burgundy-dark);
  font-family: var(--font-title);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s;
}

.contact-card-btn:hover {
  background: var(--cream);
}

.contact-email {
  display: block;
  margin-top: 0.8rem;
  font-size: 0.82rem;
  color: rgba(254, 232, 201, 0.6);
  font-style: italic;
}

/* =========================================
   PARTENAIRES
   ========================================= */
.partenaires {
  padding: var(--section-pad);
  background: var(--cream);
}

.partenaires-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.partenaires-flag {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.partenaires-content h2 {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--burgundy);
  margin-bottom: 0.5rem;
}

.partenaires-content .soulignement-title {
  margin-left: auto;
  margin-right: auto;
}

.partenaires-text {
  text-align: left;
  margin-bottom: 2rem;
}

.partenaires-text p {
  font-size: 0.97rem;
  color: #4a2028;
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--burgundy-dark);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(254, 232, 201, 0.12);
}

.footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: 1rem;

}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(254, 232, 201, 0.90);
  font-style: italic;
}

.footer-nav h5,
.footer-contact h5 {
  font-family: var(--font-title);
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.footer-nav ul li {
  margin-bottom: 0.5rem;
}

.footer-nav ul li a {
  font-size: 0.85rem;
  color: rgba(254, 232, 201, 0.95);
  transition: color 0.2s;
}

.footer-nav ul li a:hover {
  color: var(--cream);
}

.footer-contact p {
  font-size: 0.85rem;
  color: rgba(254, 232, 201, 0.80);
  margin-bottom: 0.5rem;
}

.footer-contact p a {
  color: rgba(254, 232, 201, 0.85);
  transition: color 0.2s;
}

.footer-contact p a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding: 1.2rem 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(254, 232, 201, 0.5);
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .services-grid,
  .circuits-grid,
  .vins-grid,
  .deg-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    flex-direction: row;
    align-items: stretch;
  }

  .service-card .service-img-wrap {
    width: 40%;
    flex-shrink: 0;
    aspect-ratio: unset;
  }

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

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

  .intro-deco { display: none; }

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

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

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

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

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(58, 6, 14, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li a {
    font-size: 1.1rem;
    letter-spacing: 0.15em;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
    position: relative;
  }

  .hero-logo {
    height: 160px;
  }

  .service-card {
    flex-direction: column;
  }

  .service-card .service-img-wrap {
    width: 100%;
    aspect-ratio: 16/9;
  }

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

  .armel-img-frame img {
    aspect-ratio: 4/3;
  }

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

@media (max-width: 480px) {
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .hero-logo {
    height: 120px;
  }
}
