/* ================================================================
   LA CAVE SOLOGNOTE — style.css
   Direction artistique « cave de proximité » :
   crème & papier · bordeaux de l'enseigne · bois/cuivre · vert bouteille
   ================================================================ */

:root {
  /* Bordeaux (couleur de l'enseigne) */
  --wine:        #6E1B2E;
  --wine-dark:   #571422;
  --wine-deep:   #3C0E19;
  /* Vert bouteille — accent terroir, usage parcimonieux */
  --forest:      #2E4034;
  /* Fonds clairs */
  --cream:       #F5EEE1;   /* fond principal */
  --cream-2:     #EFE6D6;   /* bande légèrement plus soutenue */
  --paper:       #FFFDF8;   /* cartes / surfaces de lecture */
  /* Encre & texte */
  --ink:         #2A2320;
  --muted:       #6E6157;
  --muted-2:     #978A7C;
  /* Cuivre — détail premium discret */
  --copper:      #B07A4A;
  --copper-deep: #97562A;
  /* Filets */
  --border:      #E6DBC9;
  --border-soft: #EFE7D9;

  --shadow-sm:   0 6px 18px rgba(58,32,20,0.06);
  --shadow:      0 18px 45px rgba(58,32,20,0.10);
  --shadow-lg:   0 34px 74px rgba(58,32,20,0.16);

  --radius:      16px;
  --radius-lg:   22px;
  --pill:        999px;

  --font-display:'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:   'Nunito', system-ui, -apple-system, Segoe UI, sans-serif;

  --container:   1180px;
  --header-h:    64px;
  --ease:        cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--wine); color: #fff; }

:focus-visible { outline: 3px solid var(--copper); outline-offset: 2px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 2000;
  background: var(--wine); color: #fff; padding: 10px 16px; border-radius: var(--pill);
  font-weight: 700; font-size: 0.85rem; transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ================================================================
   LAYOUT PRIMITIVES
   ================================================================ */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px, 5vw, 48px); }
.section { padding-block: clamp(52px, 8vw, 104px); }
.section--paper { background: var(--paper); }
.section--cream2 { background: var(--cream-2); }
.section--wine { background: linear-gradient(160deg, var(--wine) 0%, var(--wine-deep) 130%); color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 11px;
  font-weight: 700; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--wine); margin-bottom: 16px;
}
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--copper); border-radius: 2px; }
.section--wine .eyebrow { color: var(--copper); }

.section-title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.9rem, 5vw, 3rem); line-height: 1.08; letter-spacing: -0.01em; color: var(--ink);
}
.section-title em { font-style: italic; color: var(--wine); }
.section--wine .section-title { color: #fff; }
.section--wine .section-title em { color: var(--copper); }

.lead { max-width: 62ch; margin-top: 16px; font-size: clamp(1rem, 2.3vw, 1.14rem); line-height: 1.75; color: var(--muted); }
.section--wine .lead { color: rgba(255,255,255,0.86); }

.center { text-align: center; }
.center .eyebrow, .center .lead { margin-inline: auto; }
.center .lead { max-width: 60ch; }

/* ================================================================
   BOUTONS
   ================================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 50px; padding: 0.75em 1.7em; border-radius: var(--pill);
  font-family: var(--font-body); font-weight: 700; font-size: 0.98rem; letter-spacing: 0.01em;
  border: 2px solid transparent; white-space: nowrap; cursor: pointer;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--wine); color: #fff; box-shadow: 0 12px 26px rgba(110,27,46,0.28); }
.btn--primary:hover { background: var(--wine-dark); box-shadow: 0 16px 34px rgba(110,27,46,0.34); }
.btn--ghost { background: transparent; color: var(--wine); border-color: rgba(110,27,46,0.4); }
.btn--ghost:hover { background: var(--wine); color: #fff; border-color: var(--wine); }
.btn--light { background: #fff; color: var(--wine); }
.btn--light:hover { background: var(--copper); color: #fff; }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn--outline-light:hover { background: #fff; color: var(--wine); border-color: #fff; }
.btn--sm { min-height: 42px; padding: 0.5em 1.2em; font-size: 0.9rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.center .btn-row, .btn-row.center { justify-content: center; }

/* ================================================================
   HEADER + NAVIGATION
   ================================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; height: var(--header-h); z-index: 1000;
  background: rgba(245,238,225,0.86); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, var(--wine), var(--copper)); }
.site-header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 1.28rem; color: var(--wine); letter-spacing: 0.01em; }
.brand__tag { font-size: 0.56rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

.main-nav { display: none; }
.main-nav a { position: relative; font-weight: 600; font-size: 0.92rem; color: var(--ink); padding: 6px 2px; transition: color .25s var(--ease); }
.main-nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px; background: var(--wine); transition: right .3s var(--ease); }
.main-nav a:hover, .main-nav a.active { color: var(--wine); }
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }

.site-header__actions { display: flex; align-items: center; gap: 10px; }
.header-phone { display: none; align-items: center; gap: 8px; color: var(--wine); font-weight: 700; font-size: 0.95rem; }
.header-phone svg { width: 16px; height: 16px; }
.header-cta { display: none; }

/* Burger */
.burger { width: 46px; height: 46px; display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border-radius: 10px; transition: background .25s var(--ease); }
.burger:hover { background: rgba(110,27,46,0.08); }
.burger span { display: block; width: 24px; height: 2px; border-radius: 2px; background: var(--wine); transition: transform .35s var(--ease), opacity .25s var(--ease), width .35s var(--ease); }
.burger span:nth-child(2) { width: 18px; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 24px; }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 24px; }

/* Drawer mobile */
.nav-backdrop { position: fixed; inset: 0; z-index: 998; background: rgba(40,10,18,0.5); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); opacity: 0; pointer-events: none; transition: opacity .35s var(--ease); }
.nav-backdrop.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; inset: 0 auto 0 0; width: 310px; max-width: 85vw; z-index: 999;
  background: linear-gradient(180deg, var(--wine) 0%, var(--wine-deep) 130%); color: #fff;
  display: flex; flex-direction: column; padding-top: calc(var(--header-h) + 14px);
  transform: translateX(-100%); visibility: hidden; overflow-y: auto;
  transition: transform .4s var(--ease), visibility 0s linear .4s;
}
.drawer.open { transform: translateX(0); visibility: visible; transition: transform .4s var(--ease); }
@media (min-width: 1024px) { .drawer, .nav-backdrop { display: none; } }
.drawer nav { padding: 14px 26px; flex: 1; }
.drawer nav a { display: block; font-family: var(--font-display); font-size: 1.6rem; color: rgba(255,255,255,0.9); padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.12); transition: color .25s var(--ease), padding-left .25s var(--ease); }
.drawer nav a:hover, .drawer nav a.active { color: var(--copper); padding-left: 8px; }
.drawer nav a:last-child { border-bottom: none; }
.drawer__foot { padding: 22px 26px 34px; border-top: 1px solid rgba(255,255,255,0.14); display: flex; flex-direction: column; align-items: center; gap: 16px; }
.drawer__foot img { width: 96px; height: auto; }
.drawer__socials { display: flex; gap: 14px; }
.drawer__socials a { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.3); border-radius: 50%; color: #fff; transition: background .25s var(--ease), border-color .25s var(--ease); }
.drawer__socials a:hover { background: rgba(255,255,255,0.12); border-color: var(--copper); }
.drawer__socials svg { width: 20px; height: 20px; }
.drawer__phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 1.05rem; color: #fff; }
.drawer__phone svg { width: 17px; height: 17px; color: var(--copper); }

/* ================================================================
   BOUTON D'APPEL FLOTTANT (mobile)
   ================================================================ */
.call-fab {
  position: fixed; left: 50%; bottom: 18px; transform: translateX(-50%); z-index: 900;
  display: inline-flex; align-items: center; gap: 9px; min-height: 52px; padding: 0 24px;
  background: var(--wine); color: #fff; font-weight: 700; border-radius: var(--pill);
  box-shadow: 0 12px 30px rgba(60,14,25,0.45); transition: transform .3s var(--ease), background .3s var(--ease);
}
.call-fab:hover { transform: translateX(-50%) translateY(-2px); background: var(--wine-dark); }
.call-fab svg { width: 18px; height: 18px; }

/* ================================================================
   HERO
   ================================================================ */
.hero { position: relative; min-height: clamp(500px, 82svh, 720px); display: flex; align-items: flex-end; overflow: hidden; background: var(--wine-deep); margin-top: var(--header-h); }
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 60%; animation: heroZoom 16s var(--ease) forwards; }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(40,10,18,0.15) 0%, rgba(40,10,18,0.30) 45%, rgba(40,10,18,0.82) 100%); }
.hero__content { position: relative; z-index: 2; width: 100%; padding-block: clamp(34px, 7vw, 76px); color: #fff; }
.hero__inner { max-width: 660px; }
.hero__kicker { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--copper); margin-bottom: 18px; }
.hero__kicker::before { content: ''; width: 24px; height: 2px; background: var(--copper); }
.hero__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.5rem, 7vw, 4.6rem); line-height: 1.03; letter-spacing: -0.01em; text-shadow: 0 4px 30px rgba(0,0,0,0.35); }
.hero__title em { font-style: italic; color: var(--copper); }
.hero__sub { max-width: 46ch; margin-top: 20px; font-size: clamp(1rem, 2.4vw, 1.2rem); line-height: 1.7; color: rgba(255,255,255,0.92); }
.hero__note { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 8px 16px; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.82); }
.hero__note span { display: inline-flex; align-items: center; gap: 10px; }
.hero__note span:not(:last-child)::after { content: '·'; color: var(--copper); }

/* ================================================================
   RÉASSURANCE
   ================================================================ */
.reassure { display: grid; grid-template-columns: 1fr; gap: 14px; }
.reassure__item { display: flex; align-items: flex-start; gap: 15px; padding: 20px; background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius); }
.reassure__ico { flex-shrink: 0; width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center; border-radius: 12px; background: rgba(176,122,74,0.12); color: var(--copper-deep); }
.reassure__ico svg { width: 23px; height: 23px; }
.reassure__t { font-weight: 800; font-size: 1rem; color: var(--ink); }
.reassure__p { font-size: 0.9rem; color: var(--muted); margin-top: 3px; line-height: 1.55; }

/* ================================================================
   CATÉGORIES / SÉLECTION
   ================================================================ */
.section-head { margin-bottom: clamp(28px, 4vw, 44px); }
.cats { display: grid; grid-template-columns: 1fr; gap: 20px; }
.cat-card { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease); }
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(176,122,74,0.5); }
.cat-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.cat-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.cat-card:hover .cat-card__media img { transform: scale(1.06); }
.cat-card__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(40,10,18,0.35)); }
.cat-card__body { display: flex; flex-direction: column; flex: 1; padding: 22px 22px 24px; }
.cat-card__kicker { font-weight: 700; font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--copper-deep); margin-bottom: 8px; }
.cat-card__t { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; line-height: 1.1; color: var(--ink); }
.cat-card__p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; margin-top: 8px; }
.cat-card__link { margin-top: 16px; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.9rem; color: var(--wine); transition: gap .25s var(--ease); }
.cat-card__link svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.cat-card:hover .cat-card__link { gap: 12px; }
.cat-card:hover .cat-card__link svg { transform: translateX(3px); }

/* ================================================================
   LA CAVE (présentation humaine, composition asymétrique)
   ================================================================ */
.cave { display: grid; grid-template-columns: 1fr; gap: clamp(30px, 5vw, 56px); align-items: center; }
.cave__media { position: relative; }
.cave__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); position: relative; z-index: 1; }
.cave__media::before { content: ''; position: absolute; inset: 16px -16px -16px 16px; border: 2px solid var(--copper); border-radius: var(--radius-lg); z-index: 0; }
.cave__marks { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--border); }
.cave__mark { display: flex; flex-direction: column; }
.cave__mark b { font-family: var(--font-display); font-weight: 600; font-size: 2.2rem; line-height: 1; color: var(--wine); }
.cave__mark b i { font-style: normal; font-size: 1rem; color: var(--copper); vertical-align: super; }
.cave__mark span { font-size: 0.85rem; color: var(--muted); margin-top: 5px; max-width: 18ch; }

/* ================================================================
   NOUVEAUTÉS (teaser)
   ================================================================ */
.news-teaser { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 8px; }
.news-item { display: flex; align-items: center; gap: 16px; padding: 18px 20px; background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.news-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.news-item__ico { flex-shrink: 0; width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center; border-radius: 12px; background: rgba(110,27,46,0.08); color: var(--wine); }
.news-item__ico svg { width: 26px; height: 26px; }
.news-item__cat { font-weight: 700; font-size: 0.64rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--copper-deep); }
.news-item__t { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; line-height: 1.15; color: var(--ink); margin-top: 2px; }

/* ================================================================
   OCCASIONS / CONSEIL
   ================================================================ */
.occasions { display: grid; grid-template-columns: 1fr; gap: 14px; }
.occasion { display: flex; align-items: flex-start; gap: 14px; padding: 20px; background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius); }
.section--paper .occasion { background: var(--cream); }
.occasion__ico { flex-shrink: 0; width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: #fff; border: 1px solid var(--border); color: var(--wine); }
.occasion__ico svg { width: 21px; height: 21px; }
.occasion__t { font-weight: 800; font-size: 0.98rem; color: var(--ink); }
.occasion__p { font-size: 0.88rem; color: var(--muted); margin-top: 2px; line-height: 1.55; }

/* ================================================================
   AVIS GOOGLE (rouleau défilant)
   ================================================================ */
.reviews-head { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 34px; }
.reviews-score { font-family: var(--font-display); font-weight: 600; font-size: 3.2rem; line-height: 1; color: var(--wine); }
.reviews-stars { display: flex; gap: 3px; }
.reviews-stars svg { width: 18px; height: 18px; fill: var(--copper); }
.reviews-src { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-top: 5px; }
.reviews-viewport { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.reviews-track { display: flex; gap: 16px; width: max-content; padding: 6px 0; animation: reviewsScroll 80s linear infinite; }
.reviews-track:hover { animation-play-state: paused; }
@keyframes reviewsScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.review-card { width: 300px; flex-shrink: 0; background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; display: flex; flex-direction: column; gap: 12px; box-shadow: var(--shadow-sm); }
.review-head { display: flex; align-items: center; gap: 11px; }
.review-avatar { width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(150deg, var(--wine), var(--wine-deep)); color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
.review-name { display: block; font-weight: 700; font-size: 0.9rem; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 190px; }
.review-date { display: block; font-size: 0.68rem; color: var(--muted-2); margin-top: 1px; }
.review-stars { color: var(--copper); font-size: 0.9rem; letter-spacing: 2px; }
.review-text { font-size: 0.9rem; color: var(--muted); line-height: 1.6; flex: 1; }
.review-badge { display: flex; align-items: center; gap: 6px; font-size: 0.68rem; color: var(--muted-2); border-top: 1px solid var(--border-soft); padding-top: 11px; }
.review-badge svg { width: 14px; height: 14px; }
@media (prefers-reduced-motion: reduce) { .reviews-track { animation: none; flex-wrap: wrap; width: 100%; } }

/* ================================================================
   INFOS PRATIQUES (la visite)
   ================================================================ */
.visite { display: grid; grid-template-columns: 1fr; gap: 22px; }
.panel { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.panel__head { display: flex; align-items: center; gap: 11px; padding: 16px 22px; background: linear-gradient(160deg, var(--wine), var(--wine-deep)); color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; }
.panel__head svg { width: 18px; height: 18px; color: var(--copper); }
.panel__cta { margin-top: auto; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 15px; border-top: 1px solid var(--border); color: var(--wine); font-weight: 700; font-size: 0.9rem; transition: background .25s var(--ease); }
.panel__cta:hover { background: rgba(110,27,46,0.05); }
.panel__cta svg { width: 16px; height: 16px; }

.hours { width: 100%; border-collapse: collapse; }
.hours tr { border-bottom: 1px solid var(--border-soft); }
.hours tr:last-child { border-bottom: none; }
.hours td { padding: 13px 22px; font-size: 0.92rem; }
.hours td:first-child { color: var(--ink); font-weight: 700; }
.hours td:last-child { text-align: right; color: var(--muted); }
.hours tr.closed td:last-child { color: var(--wine); font-weight: 600; }
.hours tr.today { background: rgba(176,122,74,0.1); }
.today-pill { display: inline-block; font-size: 0.6rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; background: var(--wine); color: #fff; padding: 2px 9px; border-radius: var(--pill); margin-left: 9px; vertical-align: middle; }
.hours-note { display: flex; align-items: center; gap: 8px; padding: 12px 22px; font-size: 0.78rem; color: var(--muted); border-top: 1px solid var(--border-soft); }
.hours-note svg { width: 15px; height: 15px; color: var(--copper-deep); flex-shrink: 0; }

.coord { padding: 4px 0; }
.coord-row { display: flex; align-items: flex-start; gap: 15px; padding: 16px 22px; border-bottom: 1px solid var(--border-soft); }
.coord-row:last-child { border-bottom: none; }
.coord-ico { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: rgba(110,27,46,0.07); display: flex; align-items: center; justify-content: center; color: var(--wine); }
.coord-ico svg { width: 18px; height: 18px; }
.coord-lbl { display: block; font-weight: 700; font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--copper-deep); margin-bottom: 5px; }
.coord-val { display: block; font-size: 0.98rem; font-weight: 600; color: var(--ink); line-height: 1.45; }
.coord-val.muted { color: var(--muted); font-weight: 500; }
a.coord-val { transition: color .25s var(--ease); }
a.coord-val:hover { color: var(--wine); }
.coord-cap { display: block; font-size: 0.72rem; color: var(--muted-2); margin-top: 1px; }
.coord-cap + .coord-val { margin-top: 10px; }

.map-strip { grid-column: 1 / -1; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.map-strip iframe { width: 100%; height: 280px; border: 0; display: block; }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer { background: linear-gradient(180deg, var(--wine-deep) 0%, #2C0A13 100%); color: rgba(255,255,255,0.8); padding: clamp(46px, 6vw, 66px) 0 calc(env(safe-area-inset-bottom) + 96px); }
.site-footer__inner { text-align: center; }
.site-footer__logo { width: 108px; height: auto; margin: 0 auto 8px; }
.site-footer__tag { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--copper); }
.footer-phones { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px 34px; margin: 26px 0; padding: 24px 0; border-block: 1px solid rgba(255,255,255,0.14); }
.footer-phone { display: inline-flex; align-items: center; gap: 10px; color: #fff; transition: color .25s var(--ease); }
.footer-phone:hover { color: var(--copper); }
.footer-phone svg { width: 18px; height: 18px; color: var(--copper); }
.footer-phone b { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; }
.footer-phone small { display: block; font-size: 0.58rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 1px; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; margin-bottom: 22px; }
.footer-nav a { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.78); transition: color .25s var(--ease); }
.footer-nav a:hover { color: var(--copper); }
.footer-evin { max-width: 620px; margin: 0 auto 18px; padding: 12px 18px; border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius); font-size: 0.7rem; line-height: 1.6; color: rgba(255,255,255,0.72); }
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.55); }
.footer-credit { font-size: 0.68rem; color: rgba(255,255,255,0.45); margin-top: 6px; }
.footer-credit a { color: var(--copper); }
.footer-credit a:hover { color: #fff; }

/* ================================================================
   PAGE INTÉRIEURE (hero secondaire — nouveautés, mentions)
   ================================================================ */
.page-hero { position: relative; margin-top: var(--header-h); min-height: 300px; display: flex; align-items: flex-end; overflow: hidden; background: var(--wine-deep); }
.page-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.page-hero__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(40,10,18,0.3) 0%, rgba(40,10,18,0.45) 45%, rgba(40,10,18,0.86) 100%); }
.page-hero__content { position: relative; z-index: 2; width: 100%; padding-block: clamp(28px, 5vw, 52px); color: #fff; }
.page-hero__kicker { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--copper); margin-bottom: 12px; }
.page-hero__kicker::before { content: ''; width: 22px; height: 2px; background: var(--copper); }
.page-hero__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.2rem, 6vw, 3.6rem); line-height: 1.05; }
.page-hero__title em { font-style: italic; color: var(--copper); }
.page-hero__sub { margin-top: 8px; font-size: clamp(0.95rem, 2.4vw, 1.1rem); color: rgba(255,255,255,0.9); }

/* ================================================================
   NOUVEAUX ARRIVAGES (page)
   ================================================================ */
.featured { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.featured__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.featured__media img { width: 100%; height: 100%; object-fit: cover; }
.badge { position: absolute; top: 16px; left: 16px; z-index: 2; background: var(--wine); color: #fff; font-weight: 700; font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 13px; border-radius: var(--pill); }
.featured__body { padding: 28px 26px 30px; }
.arr-cat { font-weight: 700; font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--copper-deep); margin-bottom: 9px; }
.arr-name { font-family: var(--font-display); font-weight: 600; color: var(--ink); line-height: 1.12; }
.featured__body .arr-name { font-size: 1.9rem; margin-bottom: 12px; }
.arr-desc { font-size: 0.92rem; color: var(--muted); line-height: 1.7; }
.arr-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 22px; }
.arr-tag { font-size: 0.72rem; font-weight: 600; color: var(--wine); background: rgba(110,27,46,0.07); border: 1px solid var(--border); padding: 5px 12px; border-radius: var(--pill); }
.arr-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 24px; }
.arr-card { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease); }
.arr-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(176,122,74,0.5); }
.arr-card__media { position: relative; height: 128px; display: flex; align-items: center; justify-content: center; background: radial-gradient(130% 130% at 30% 10%, rgba(176,122,74,0.14), rgba(245,238,225,0) 70%), var(--cream); border-bottom: 1px solid var(--border); }
.arr-ico { width: 46px; height: 46px; color: var(--wine); }
.arr-card__body { display: flex; flex-direction: column; flex: 1; padding: 18px 20px 20px; }
.arr-card__body .arr-name { font-size: 1.2rem; margin-bottom: 8px; }
.arr-foot { margin-top: auto; padding-top: 14px; }
.arr-note { display: flex; align-items: flex-start; gap: 11px; margin-top: 30px; padding: 16px 18px; background: var(--paper); border: 1px solid var(--border); border-left: 3px solid var(--copper); border-radius: var(--radius); font-size: 0.86rem; color: var(--muted); line-height: 1.6; }
.arr-note svg { width: 18px; height: 18px; color: var(--copper-deep); flex-shrink: 0; margin-top: 2px; }

/* ================================================================
   PAGE LÉGALE
   ================================================================ */
.legal { max-width: 760px; }
.legal-note { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 34px; padding: 16px 18px; background: var(--paper); border: 1px solid var(--border); border-left: 3px solid var(--copper); border-radius: var(--radius); font-size: 0.88rem; color: var(--muted); line-height: 1.6; }
.legal-note svg { width: 18px; height: 18px; color: var(--copper-deep); flex-shrink: 0; margin-top: 2px; }
.legal-note b { color: var(--wine); }
.legal-h { font-family: var(--font-display); font-weight: 600; font-size: 1.55rem; color: var(--wine); margin: 34px 0 12px; }
.legal p { font-size: 0.96rem; color: var(--muted); line-height: 1.75; margin-bottom: 12px; }
.legal a { color: var(--wine); text-decoration: underline; text-underline-offset: 3px; transition: color .25s var(--ease); }
.legal a:hover { color: var(--copper-deep); }
.legal-list { display: flex; flex-direction: column; gap: 9px; margin: 6px 0 12px; }
.legal-list li { position: relative; padding-left: 18px; font-size: 0.94rem; color: var(--ink); line-height: 1.6; }
.legal-list li::before { content: ''; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; background: var(--copper); transform: rotate(45deg); }
.legal-list li b { color: var(--ink); font-weight: 700; }
.legal-evin { margin-top: 8px; padding: 14px 18px; border: 1px solid var(--wine); border-radius: var(--radius); background: rgba(110,27,46,0.05); color: var(--wine); font-weight: 700; font-size: 0.9rem; line-height: 1.6; }
.legal-updated { font-size: 0.78rem; color: var(--muted-2); margin-top: 26px; }

/* ================================================================
   REVEAL AU SCROLL
   ================================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (min-width: 600px) {
  .reassure { grid-template-columns: 1fr 1fr; }
  .cats { grid-template-columns: 1fr 1fr; }
  .news-teaser { grid-template-columns: 1fr 1fr 1fr; }
  .occasions { grid-template-columns: 1fr 1fr; }
  .arr-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .visite { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .cave { grid-template-columns: 0.9fr 1.1fr; }
  .cave--reverse .cave__media { order: 2; }
  .cave--reverse .cave__media::before { inset: 16px 16px -16px -16px; }
  .featured { flex-direction: row; }
  .featured__media { width: 46%; aspect-ratio: auto; }
  .featured__body { flex: 1; align-self: center; padding: 36px 34px; }
}
@media (min-width: 1024px) {
  :root { --header-h: 74px; }
  .main-nav { display: flex; gap: 26px; }
  .header-cta { display: inline-flex; }
  .call-fab { display: none; }
  .burger { display: none; }
  .reassure { grid-template-columns: repeat(4, 1fr); }
  .cats { grid-template-columns: repeat(4, 1fr); }
  .occasions { grid-template-columns: repeat(4, 1fr); }
  .arr-grid { grid-template-columns: repeat(3, 1fr); }
  .map-strip iframe { height: 340px; }
}
@media (min-width: 1024px) and (max-width: 1140px) {
  .main-nav { gap: 18px; }
}
