/* ==========================================================================
   Oli’Destock — feuille de style
   Palette : beige #EBDBCD · brun #7F491A · noir #000501 (+ blanc cassé dérivé)
   Polices : Barlow Condensed (titres) · Barlow (texte), hébergées localement
   ========================================================================== */

@font-face { font-family: "Barlow Condensed"; font-weight: 600; font-style: normal; font-display: swap; src: url("/assets/fonts/barlow-condensed-v13-latin_latin-ext-600.woff2") format("woff2"); }
@font-face { font-family: "Barlow Condensed"; font-weight: 700; font-style: normal; font-display: swap; src: url("/assets/fonts/barlow-condensed-v13-latin_latin-ext-700.woff2") format("woff2"); }
@font-face { font-family: "Barlow"; font-weight: 400; font-style: normal; font-display: swap; src: url("/assets/fonts/barlow-v13-latin_latin-ext-regular.woff2") format("woff2"); }
@font-face { font-family: "Barlow"; font-weight: 400; font-style: italic; font-display: swap; src: url("/assets/fonts/barlow-v13-latin_latin-ext-italic.woff2") format("woff2"); }
@font-face { font-family: "Barlow"; font-weight: 500; font-style: normal; font-display: swap; src: url("/assets/fonts/barlow-v13-latin_latin-ext-500.woff2") format("woff2"); }
@font-face { font-family: "Barlow"; font-weight: 600; font-style: normal; font-display: swap; src: url("/assets/fonts/barlow-v13-latin_latin-ext-600.woff2") format("woff2"); }

:root {
  --beige: #EBDBCD;
  --beige-deep: #DCC6B2;
  --beige-line: #D3BBA4;
  --cream: #F8F2EC;
  --white: #FFFDFB;
  --brown: #7F491A;
  --brown-dark: #5E3612;
  --brown-tint: rgba(127, 73, 26, 0.10);
  --ink: #000501;
  --ink-soft: #3B3531;
  --ink-muted: #6B5F58;
  --on-dark: #F3E9DF;
  --on-dark-muted: #C9B8A8;

  --font-display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --font-body: "Barlow", "Helvetica Neue", Arial, sans-serif;

  --container: 1200px;
  --gutter: clamp(16px, 4vw, 40px);
  --section: clamp(56px, 9vw, 120px);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(0, 5, 1, 0.10);
  --transition: 180ms ease;
  --header-h: 76px;
  --mobile-bar-h: 60px;
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--beige);
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--brown); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--brown-dark); }
:focus-visible { outline: 3px solid var(--brown); outline-offset: 3px; border-radius: 2px; }
.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.section { padding-block: var(--section); }
address { font-style: normal; }
table { border-collapse: collapse; }
.ic { width: 1.15em; height: 1.15em; display: inline-block; vertical-align: -0.22em; flex: none; }

.skip-link { position: absolute; left: var(--gutter); top: -100px; background: var(--ink); color: var(--on-dark); padding: 0.6rem 1rem; border-radius: var(--radius-sm); z-index: 100; }
.skip-link:focus { top: 8px; }

.preview-banner { background: var(--ink); color: var(--on-dark); font-size: 0.85rem; text-align: center; padding: 0.35rem var(--gutter); letter-spacing: 0.02em; }

/* --------------------------------------------------------------------------
   Typographie
   -------------------------------------------------------------------------- */
.h1, .h2, .h3, h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.02; letter-spacing: -0.005em; margin: 0 0 0.5em; color: var(--ink); text-wrap: balance; }
.h1 { font-size: clamp(2.6rem, 6.2vw, 4.6rem); }
.h2 { font-size: clamp(2.1rem, 4.4vw, 3.3rem); }
.h3 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); font-weight: 600; line-height: 1.1; }
p { margin: 0 0 1rem; }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--ink-soft); max-width: 40ch; }
.eyebrow { font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brown); margin: 0 0 0.9rem; display: flex; align-items: center; gap: 0.6rem; }
.eyebrow::before { content: ""; width: 26px; height: 3px; background: var(--brown); border-radius: 2px; }
.section-head { max-width: 62ch; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head p:last-child { color: var(--ink-muted); margin: 0; }
.prose p { max-width: 68ch; }
.prose-narrow { max-width: 760px; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: 0.35rem; }
.notice { background: var(--cream); border-left: 4px solid var(--brown); padding: 0.9rem 1.1rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 0 0 1.5rem; }
mark.to-confirm { background: #FFE9A8; color: var(--ink); font-size: 0.8em; padding: 0.05em 0.4em; border-radius: 4px; font-weight: 600; }

/* --------------------------------------------------------------------------
   Boutons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 48px; padding: 0.7rem 1.35rem;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem; line-height: 1.2;
  text-decoration: none; border-radius: var(--radius-sm); border: 2px solid transparent; cursor: pointer;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--brown); color: var(--white); border-color: var(--brown); }
.btn-primary:hover { background: var(--brown-dark); border-color: var(--brown-dark); color: var(--white); box-shadow: 0 6px 16px rgba(127, 73, 26, 0.28); }
.btn-secondary { background: var(--ink); color: var(--on-dark); border-color: var(--ink); }
.btn-secondary:hover { background: #1c1a19; color: var(--white); box-shadow: 0 6px 16px rgba(0, 5, 1, 0.22); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--on-dark); }
.btn-light { background: var(--cream); color: var(--brown-dark); border-color: var(--cream); }
.btn-light:hover { background: var(--white); color: var(--brown-dark); }
.btn-outline-light { background: transparent; color: var(--on-dark); border-color: var(--on-dark); }
.btn-outline-light:hover { background: var(--on-dark); color: var(--brown-dark); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.6rem 0 0; }
.link-button { background: none; border: 0; padding: 0; font: inherit; text-align: left; color: var(--brown); text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.link-button:hover { color: var(--brown-dark); }

/* --------------------------------------------------------------------------
   En-tête et navigation
   -------------------------------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(235, 219, 205, 0.94); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--beige-line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: var(--header-h); position: relative; }
.brand { display: inline-flex; flex: none; padding: 6px 0; }
.brand img { width: 168px; height: auto; }
.nav { display: flex; align-items: center; gap: 1.25rem; }
.nav-list { display: flex; align-items: center; gap: 0.25rem; list-style: none; margin: 0; padding: 0; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 0.25rem; min-height: 44px; padding: 0.4rem 0.85rem;
  color: var(--ink); text-decoration: none; font-weight: 500; border-radius: var(--radius-sm);
  transition: background-color var(--transition), color var(--transition);
}
.nav-link:hover { background: var(--brown-tint); color: var(--brown-dark); }
.nav-link[aria-current] { color: var(--brown-dark); box-shadow: inset 0 -2px 0 var(--brown); border-radius: var(--radius-sm) var(--radius-sm) 0 0; }
.nav-toggle { display: none; }
.nav-toggle-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

@media (min-width: 900px) {
  .btn-header { min-height: 44px; padding-block: 0.5rem; }
}

/* Mobile et tablette : menu déroulant sous l'en-tête */
@media (max-width: 899.98px) {
  .js .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px;
    border: 2px solid var(--ink); background: transparent; color: var(--ink); border-radius: var(--radius-sm); cursor: pointer; position: relative;
  }
  .nav-toggle .ic { width: 26px; height: 26px; }
  .nav-toggle-close { display: none; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-open { display: none; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-close { display: inline; }
  .nav {
    position: absolute; left: calc(-1 * var(--gutter)); right: calc(-1 * var(--gutter)); top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--beige-line); box-shadow: var(--shadow);
    padding: 0.75rem var(--gutter) 1.25rem;
  }
  .js .nav { display: none; }
  .js .nav.is-open { display: flex; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-link { min-height: 50px; font-size: 1.1rem; width: 100%; }
  .btn-header { margin-top: 0.75rem; }
}

/* --------------------------------------------------------------------------
   Accueil : hero
   -------------------------------------------------------------------------- */
.hero { padding-block: clamp(36px, 6vw, 88px) clamp(48px, 7vw, 96px); overflow: hidden; }
.hero-grid { display: grid; gap: clamp(28px, 5vw, 64px); align-items: center; }
.hero-text .h1 { margin-bottom: 0.6em; }
.hero-meta { display: flex; flex-direction: column; gap: 0.3rem; margin: 1.6rem 0 0; color: var(--ink-muted); font-size: 0.98rem; }
.hero-meta > span[aria-hidden] { display: none; }
.hero-meta a { color: var(--ink); font-weight: 600; text-decoration: none; }
.hero-meta a:hover { color: var(--brown-dark); }
.hero-media { position: relative; }
.hero-media picture { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.hero-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.hero-media::before { content: ""; position: absolute; inset: 14px -14px -14px 14px; border: 2px solid var(--brown); border-radius: var(--radius); pointer-events: none; }
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 5fr 7fr; }
}
@media (max-width: 1023.98px) {
  .hero-media { order: -1; }
  .hero-media::before { inset: 10px -10px -10px 10px; }
}

/* --------------------------------------------------------------------------
   Accueil : univers
   -------------------------------------------------------------------------- */
.universes { display: grid; gap: clamp(18px, 2.5vw, 28px); }
.universe { display: flex; flex-direction: column; text-decoration: none; color: var(--ink); background: var(--cream); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--beige-deep); transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.universe:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--brown); color: var(--ink); }
.universe-media { overflow: hidden; }
.universe-media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform 500ms ease; }
.universe:hover .universe-media img { transform: scale(1.03); }
.universe-body { padding: 1.25rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.25rem; flex: 1; }
.universe-body .h3 { margin: 0; }
.universe-body p { color: var(--ink-soft); margin: 0.25rem 0 0.75rem; }
.more { margin-top: auto; font-weight: 600; color: var(--brown); display: inline-flex; align-items: center; gap: 0.35rem; }
.universe:hover .more { color: var(--brown-dark); gap: 0.6rem; }
.more .ic { transition: transform var(--transition); }
@media (min-width: 900px) {
  .universes { grid-template-columns: 1.45fr 1fr; grid-template-rows: auto auto; }
  .universe-large { grid-row: 1 / span 2; }
  .universe-large .universe-media img { aspect-ratio: 4 / 3; height: 100%; }
  .universe-large .universe-body { padding: 1.6rem 1.8rem 1.8rem; }
  .universe-large .h3 { font-size: clamp(1.9rem, 2.6vw, 2.4rem); }
  .universe:not(.universe-large) { flex-direction: row; }
  .universe:not(.universe-large) .universe-media { flex: 0 0 44%; position: relative; min-height: 220px; }
  .universe:not(.universe-large) .universe-media picture, .universe:not(.universe-large) .universe-media img, .universe:not(.universe-large) .ph { position: absolute; inset: 0; width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; }
}

/* --------------------------------------------------------------------------
   Accueil : magasin et arrivages
   -------------------------------------------------------------------------- */
.store-section { background: var(--cream); border-block: 1px solid var(--beige-deep); }
.store-grid { display: grid; gap: clamp(28px, 5vw, 72px); align-items: center; }
.store-text p:not(.eyebrow) { max-width: 56ch; }
.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; display: grid; gap: 1.1rem; }
.steps li { counter-increment: step; display: grid; grid-template-columns: 56px 1fr; gap: 1rem; align-items: start; padding: 1rem 1.1rem; background: var(--beige); border-radius: var(--radius-sm); }
.steps li::before { content: counter(step, decimal-leading-zero); font-family: var(--font-display); font-weight: 700; font-size: 2.4rem; line-height: 1; color: var(--brown); }
.steps strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; line-height: 1.15; margin-bottom: 0.2rem; }
.steps span { color: var(--ink-soft); grid-column: 2; }
@media (min-width: 900px) { .store-grid { grid-template-columns: 1.1fr 1fr; } }

/* --------------------------------------------------------------------------
   Marques
   -------------------------------------------------------------------------- */
.brands-section { padding-block: clamp(36px, 5vw, 64px); }
.brands-title { text-align: center; margin-bottom: 1.6rem; color: var(--ink-soft); }
.brands { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: clamp(20px, 4vw, 56px); }
.brands li { display: flex; align-items: center; justify-content: center; min-height: 48px; }
.brands img { height: 32px; width: auto; max-width: 150px; object-fit: contain; }
.brand-text { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; letter-spacing: 0.04em; color: var(--ink); line-height: 1; }
.brands-note { text-align: center; color: var(--ink-muted); font-size: 0.92rem; margin: 1.4rem 0 0; }

/* --------------------------------------------------------------------------
   Modules tiers (Facebook, carte) : consentement explicite
   -------------------------------------------------------------------------- */
.fb-section { background: var(--beige); border-top: 1px solid var(--beige-deep); }
.fb-grid { display: grid; gap: clamp(28px, 5vw, 72px); align-items: start; }
.fb-text p:not(.eyebrow) { max-width: 50ch; }
.fb-page-link { margin-top: 1.4rem; }
.embed { width: 100%; max-width: 500px; background: var(--cream); border: 1px solid var(--beige-deep); border-radius: var(--radius); overflow: hidden; }
.embed-consent { padding: 1.4rem 1.5rem 1.5rem; }
.embed-consent p { font-size: 0.98rem; color: var(--ink-soft); }
.embed-consent-title { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; color: var(--ink); margin-bottom: 0.4rem; }
.embed-consent-actions { margin: 1rem 0 0.8rem; }
.embed-remember { display: flex; align-items: flex-start; gap: 0.55rem; font-size: 0.95rem; color: var(--ink-soft); cursor: pointer; }
.embed-remember input { width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--brown); flex: none; }
.embed-noscript { margin-top: 0.8rem; }
.embed-frame iframe { display: block; width: 100%; border: 0; background: var(--white); }
.embed-after { font-size: 0.92rem; color: var(--ink-muted); padding: 0.8rem 1.2rem; margin: 0; border-top: 1px solid var(--beige-deep); }
.embed-map { max-width: none; margin-top: 1rem; }
.fb-embed { width: 100%; max-width: 500px; background: var(--cream); border: 1px solid var(--beige-deep); border-radius: var(--radius); overflow: hidden; }
.fb-embed iframe { display: block; width: 100%; height: 700px; border: 0; background: var(--white); }
.fb-embed-note { font-size: 0.92rem; color: var(--ink-muted); padding: 0.8rem 1.2rem; margin: 0; border-top: 1px solid var(--beige-deep); }
@media (max-width: 600px) { .fb-embed iframe { height: 620px; } }
@media (min-width: 900px) { .fb-grid { grid-template-columns: 1fr minmax(320px, 500px); } .fb-grid .fb-embed { justify-self: end; } }

/* --------------------------------------------------------------------------
   Bloc visite (fond brun)
   -------------------------------------------------------------------------- */
.visit-section { background: var(--brown); color: var(--on-dark); }
.visit-section .eyebrow { color: var(--on-dark); }
.visit-section .eyebrow::before { background: var(--on-dark); }
.visit-section .h2 { color: var(--white); }
.visit-section a { color: var(--white); }
.visit-section .btn-light { color: var(--brown-dark); }
.visit-section .btn-light:hover { color: var(--brown-dark); }
.visit-grid { display: grid; gap: clamp(28px, 5vw, 72px); align-items: start; }
.visit-intro p:not(.eyebrow) { max-width: 46ch; color: var(--on-dark); font-size: 1.1rem; }
.visit-details { margin: 0; display: grid; gap: 1.4rem; }
.visit-details > div { padding: 1.2rem 1.35rem; background: rgba(0, 5, 1, 0.18); border-radius: var(--radius-sm); }
.visit-details dt { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; letter-spacing: 0.06em; text-transform: uppercase; display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.45rem; color: var(--on-dark-muted); }
.visit-details dd { margin: 0; font-size: 1.2rem; line-height: 1.4; }
.visit-details dd a { text-decoration: none; font-weight: 600; }
.visit-details dd a:hover { text-decoration: underline; }
.hours { width: 100%; font-size: 1.05rem; }
.hours th { text-align: left; font-weight: 500; padding: 0.35rem 0; padding-right: 1rem; }
.hours td { text-align: right; padding: 0.35rem 0; font-weight: 600; white-space: nowrap; }
.hours tr + tr { border-top: 1px solid rgba(255, 255, 255, 0.14); }
.hours .closed td { opacity: 0.75; font-weight: 500; }
@media (min-width: 900px) { .visit-grid { grid-template-columns: 1fr 1fr; } .visit-details { grid-template-columns: 1fr 1fr; } .visit-details > div:last-child { grid-column: 1 / -1; } }

/* --------------------------------------------------------------------------
   Pied de page
   -------------------------------------------------------------------------- */
.site-footer { background: var(--ink); color: var(--on-dark-muted); padding-block: clamp(44px, 6vw, 72px) 0; }
.site-footer a { color: var(--on-dark); text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.footer-grid { display: grid; gap: clamp(28px, 4vw, 48px); padding-bottom: clamp(28px, 4vw, 48px); border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.footer-logo { display: inline-block; background: var(--beige); padding: 10px 14px; border-radius: var(--radius-sm); margin-bottom: 1rem; }
.footer-logo img { width: 150px; }
.footer-brand p { max-width: 34ch; }
.footer-social { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; }
.footer-title { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-dark); margin: 0 0 0.9rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.45rem; }
.footer-col address { line-height: 1.5; margin-bottom: 0.9rem; }
.footer-hours li { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.95rem; }
.footer-hours li span:last-child { color: var(--on-dark); }
.footer-bottom { padding-block: 1.2rem; font-size: 0.9rem; }
.footer-bottom p { margin: 0; }
.site-footer .link-button { color: var(--on-dark-muted); }
.site-footer .link-button:hover { color: var(--white); }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr 0.8fr 1.1fr 0.9fr; } }

/* --------------------------------------------------------------------------
   Barre mobile « Appeler / Itinéraire »
   -------------------------------------------------------------------------- */
.mobile-bar { display: none; }
@media (max-width: 767.98px) {
  body { padding-bottom: calc(var(--mobile-bar-h) + env(safe-area-inset-bottom, 0px)); }
  .mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; display: grid; grid-template-columns: 1fr 1fr; background: var(--ink); padding: 0 0 env(safe-area-inset-bottom, 0px); box-shadow: 0 -6px 20px rgba(0, 5, 1, 0.18); }
  .mobile-bar a { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; min-height: var(--mobile-bar-h); color: var(--on-dark); text-decoration: none; font-weight: 600; font-size: 1.02rem; }
  .mobile-bar a:first-child { background: var(--brown); color: var(--white); }
  .mobile-bar a:hover { color: var(--white); }
}

/* --------------------------------------------------------------------------
   Pages produits
   -------------------------------------------------------------------------- */
.product-hero { padding-block: clamp(36px, 6vw, 80px) clamp(36px, 6vw, 72px); }
.product-hero-grid { display: grid; gap: clamp(28px, 5vw, 64px); align-items: center; }
.product-hero-media picture, .product-hero-media .ph { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.product-hero-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
@media (min-width: 1024px) {
  .product-hero-grid { grid-template-columns: 1fr 1fr; }
  .product-hero-b .product-hero-media { order: -1; }
  .product-hero-c .product-hero-grid { grid-template-columns: 1.15fr 0.85fr; }
  .product-hero-c .product-hero-media img, .product-hero-c .ph { aspect-ratio: 1 / 1; }
}
@media (max-width: 1023.98px) { .product-hero-media { order: -1; } }
.product-body { background: var(--cream); border-block: 1px solid var(--beige-deep); }
.product-body-grid { display: grid; gap: clamp(28px, 5vw, 72px); align-items: start; }
.product-body .prose p { font-size: 1.12rem; color: var(--ink-soft); }
.tips { background: var(--beige); border-left: 4px solid var(--brown); border-radius: 0 var(--radius) var(--radius) 0; padding: 1.4rem 1.5rem 1.5rem; }
.tips .h3 { margin-bottom: 0.9rem; }
.tips-list { margin: 0 0 1.2rem; padding-left: 1.1rem; display: grid; gap: 0.55rem; color: var(--ink-soft); }
.tips-list li::marker { color: var(--brown); }
.tips-phone { margin: 0; font-weight: 600; font-size: 1.15rem; }
.tips-phone a { color: var(--ink); text-decoration: none; }
.tips-phone a:hover { color: var(--brown-dark); }
.tips-phone small { display: block; font-weight: 400; color: var(--ink-muted); font-size: 0.9rem; margin-top: 0.3rem; }
@media (min-width: 900px) { .product-body-grid { grid-template-columns: 1.3fr 1fr; } }
.other-universes { padding-block: clamp(40px, 6vw, 72px); }
.other-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.2rem; }
.other-list li { border-top: 2px solid var(--ink); padding-top: 0.9rem; }
.other-list a { font-family: var(--font-display); font-weight: 600; font-size: 1.6rem; color: var(--ink); text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; }
.other-list a:hover { color: var(--brown-dark); }
.other-list p { margin: 0.3rem 0 0; color: var(--ink-soft); }
@media (min-width: 700px) { .other-list { grid-template-columns: 1fr 1fr; gap: 2rem; } }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact-hero { padding-block: clamp(36px, 6vw, 80px) 0; }
.contact-section { padding-top: clamp(28px, 4vw, 48px); }
.contact-grid { display: grid; gap: clamp(16px, 2.5vw, 24px); }
.contact-card { background: var(--cream); border: 1px solid var(--beige-deep); border-radius: var(--radius); padding: 1.5rem 1.6rem; }
.contact-card .h3 { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.8rem; }
.contact-card .h3 .ic { color: var(--brown); }
.contact-card p:last-child { margin-bottom: 0; }
.contact-big { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.15; margin-bottom: 0.6rem; }
.contact-big a { color: var(--ink); text-decoration: none; }
.contact-big a:hover { color: var(--brown-dark); }
.contact-card-main { background: var(--brown); color: var(--on-dark); border-color: var(--brown); }
.contact-card-main .h3, .contact-card-main .h3 .ic, .contact-card-main .contact-big a { color: var(--white); }
.contact-card-main .btn-primary { background: var(--cream); color: var(--brown-dark); border-color: var(--cream); }
.contact-card-main .btn-primary:hover { background: var(--white); }
.contact-card .hours th { padding-right: 1rem; }
.contact-card .hours tr + tr { border-top-color: var(--beige-deep); }
.contact-card-fb { background: var(--beige); }
@media (min-width: 700px) { .contact-grid { grid-template-columns: 1fr 1fr; } .contact-card-main { grid-column: 1 / -1; } }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1.3fr 1fr 1fr; grid-template-rows: auto auto; } .contact-card-main { grid-column: 1; grid-row: 1 / span 2; display: flex; flex-direction: column; justify-content: center; } .contact-card-fb { grid-column: 2 / -1; } }
.map-section { padding-top: 0; }
.map-section p { color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   Pages légales, 404, emplacements provisoires
   -------------------------------------------------------------------------- */
.legal-section .h3 { margin-top: 2rem; }
.notfound-links { list-style: none; padding: 0; margin: 0 0 1rem; display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; }
.notfound-links a { font-weight: 600; }
.ph { width: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.3rem; text-align: center; padding: 1rem; color: var(--ink-muted); background: repeating-linear-gradient(135deg, var(--cream) 0 14px, var(--beige) 14px 28px); border: 2px dashed var(--beige-line); border-radius: var(--radius); }
.ph-4-3 { aspect-ratio: 4 / 3; } .ph-16-10 { aspect-ratio: 16 / 10; } .ph-1-1 { aspect-ratio: 1 / 1; }
.ph span { font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; color: var(--ink-soft); }
.ph small { font-size: 0.85rem; max-width: 26ch; }

/* --------------------------------------------------------------------------
   Préférences utilisateur
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .universe:hover .universe-media img { transform: none; }
}
@media print {
  .site-header, .mobile-bar, .embed, .btn, .preview-banner { display: none !important; }
  body { background: #fff; color: #000; }
}

.nowrap { white-space: nowrap; }
