/* =========================================================
   Le Bouchon — Lourmarin
   Warm Provençal palette · intimate · convivial
   ========================================================= */

:root {
  /* Colors — warm Provençal */
  --cream:      #F6EFE2;
  --cream-2:    #EFE5D1;
  --paper:      #FBF6EC;
  --ink:        #2A1D12;        /* espresso */
  --ink-soft:   #4B382A;
  --muted:      #7A6652;
  --terracotta: #B85438;
  --terracotta-2: #9A4329;
  --brass:      #A8813D;
  --olive:      #6F6B3D;
  --stone:      #E4D9C3;
  --line:       #D9CBB0;

  /* Type */
  --f-serif:  "Playfair Display", ui-serif, Georgia, serif;
  --f-script: "Caveat", "Playfair Display", ui-serif, serif;
  --f-sans:   "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Sizing */
  --maxw: 1240px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 14px;
  --radius-lg: 22px;

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* -------- Reset -------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

::selection { background: var(--terracotta); color: #fff; }

/* Texture overlay — very subtle paper grain */
body::before {
  content: "";
  position: fixed; inset: 0;
  background-image:
    radial-gradient(rgba(43,29,18,.035) 1px, transparent 1px);
  background-size: 3px 3px;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}

/* -------- Typography -------- */
h1,h2,h3 {
  font-family: var(--f-serif);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0;
}
h2 {
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 1.1;
}
h3 { font-size: 1.4rem; }

p { margin: 0 0 1rem; }

.eyebrow {
  font-family: var(--f-sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.script { font-family: var(--f-script); font-weight: 600; }

.lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
}

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(184,84,56,.55);
}
.btn--primary:hover { background: var(--terracotta-2); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--lg { padding: 0.95rem 1.7rem; font-size: 1rem; }
.btn__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.25);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(255,255,255,.25); }
  50%     { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), backdrop-filter .3s var(--ease);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav.is-scrolled {
  background: rgba(246, 239, 226, 0.9);
  backdrop-filter: saturate(1.2) blur(14px);
  -webkit-backdrop-filter: saturate(1.2) blur(14px);
  border-bottom: 1px solid rgba(217,203,176,.5);
}
.nav__brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  color: var(--cream);
  transition: color .3s var(--ease);
}
.nav.is-scrolled .nav__brand { color: var(--ink); }
.nav__brand-script {
  font-family: var(--f-script);
  font-size: 1.9rem;
  line-height: 1;
  color: var(--terracotta);
  transform: translateY(2px);
}
.nav__brand-mark {
  font-family: var(--f-serif);
  font-weight: 600;
  letter-spacing: 0.28em;
  font-size: 1.1rem;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: var(--cream);
  transition: color .3s var(--ease);
}
.nav.is-scrolled .nav__links { color: var(--ink); }
.nav__links a {
  font-size: 0.93rem;
  font-weight: 500;
  position: relative;
  padding: 0.25rem 0;
}
.nav__links a::after {
  content:"";
  position: absolute;
  left: 0; bottom: -2px;
  height: 1px; width: 0;
  background: var(--terracotta);
  transition: width .25s var(--ease);
}
.nav__links a:hover::after { width: 100%; }

.nav__cta { flex-shrink: 0; }

.nav__burger {
  display: none;
  background: transparent;
  border: 0;
  padding: .5rem;
  cursor: pointer;
  color: inherit;
}
.nav__burger span {
  display: block;
  width: 26px; height: 2px;
  background: currentColor;
  margin: 5px 0;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem var(--gutter) 1.75rem;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.nav__mobile a { font-size: 1.05rem; padding: 0.5rem 0; }
.nav__mobile .btn { justify-content: center; margin-top: 0.5rem; }

@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: inline-block; color: var(--cream); }
  .nav.is-scrolled .nav__burger { color: var(--ink); }
  .nav__mobile[hidden] { display: none; }
  .nav.is-open .nav__mobile { display: flex; }
  .nav.is-open { background: var(--paper); }
  .nav.is-open .nav__brand,
  .nav.is-open .nav__burger { color: var(--ink); }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  color: var(--cream);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: heroZoom 20s 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(42,29,18,.55) 0%, rgba(42,29,18,.35) 40%, rgba(42,29,18,.85) 100%),
    radial-gradient(60% 60% at 50% 40%, rgba(42,29,18,0) 0%, rgba(42,29,18,.4) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  padding: 7rem var(--gutter) 5rem;
  text-align: center;
}
.hero .eyebrow {
  color: var(--stone);
  animation: fadeUp .9s .2s var(--ease) backwards;
}
.hero__title {
  font-family: var(--f-serif);
  font-size: clamp(3.2rem, 11vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 0.5rem 0 1rem;
  animation: fadeUp 1s .35s var(--ease) backwards;
}
.hero__title-script {
  display: block;
  font-family: var(--f-script);
  font-size: 0.55em;
  font-weight: 500;
  color: var(--terracotta);
  transform: rotate(-4deg) translateX(-18%);
  line-height: 1;
  margin-bottom: -0.3em;
}
.hero__title-mark { display: block; }
.hero__tagline {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--stone);
  max-width: 36ch;
  margin: 0 auto 2rem;
  animation: fadeUp 1s .5s var(--ease) backwards;
}
.hero__cta {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s .65s var(--ease) backwards;
}
.hero__cta .btn--ghost {
  color: var(--cream);
  border-color: rgba(246,239,226,.6);
}
.hero__cta .btn--ghost:hover { background: var(--cream); color: var(--ink); }

.hero__scroll {
  position: absolute;
  bottom: 2.25rem;
  left: calc(50% - 48px);
  width: 96px; height: 110px;
  display: block;
  pointer-events: auto;
  opacity: 0;
  transition: opacity .3s var(--ease);
  animation: fadeUp .8s 1.75s var(--ease) forwards;
  z-index: 3;
}
.hero__scroll:hover { opacity: 1; }
@media (max-width: 820px) {
  .hero__scroll { display: none; }
}
.hero__scroll svg { width: 100%; height: 100%; overflow: visible; display: block; }
.hero__scroll path {
  fill: none;
  stroke: var(--terracotta);
  stroke-width: 3.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: hero-scroll-draw 3.4s 1.95s cubic-bezier(.6,.05,.4,1) infinite;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.35));
}
@keyframes hero-scroll-draw {
  0%   { stroke-dashoffset: 100; }
  45%  { stroke-dashoffset: 0;   }
  62%  { stroke-dashoffset: 0;   }
  100% { stroke-dashoffset: -100;}
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   STRIP (photo ticker)
   ========================================================= */
.strip {
  background: var(--paper);
  padding: 2rem 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.strip__track {
  display: flex;
  gap: 1.25rem;
  animation: marquee 45s linear infinite;
  width: max-content;
  padding-left: 1.25rem;
}
.strip__track figure {
  margin: 0;
  flex: 0 0 auto;
  width: clamp(220px, 28vw, 340px);
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px -18px rgba(42,29,18,.4);
}
.strip__track img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.strip__track figure:hover img { transform: scale(1.04); }

/* Duplicate for loop */
.strip__track::after {
  content: "";
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50%)); }
}
@media (prefers-reduced-motion: reduce) {
  .strip__track { animation: none; }
}

/* =========================================================
   SECTIONS — common
   ========================================================= */
section {
  padding: clamp(4rem, 9vw, 7rem) var(--gutter);
  position: relative;
}
.section-head {
  max-width: 780px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.section-sub {
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 56ch;
  margin: 1rem auto 0;
}

/* =========================================================
   HISTOIRE
   ========================================================= */
.histoire { background: var(--cream); }
.histoire__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.histoire__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(42,29,18,.4);
}
.histoire__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.histoire__media:hover img { transform: scale(1.03); }
.histoire__badge {
  position: absolute;
  bottom: 1.25rem; left: 1.25rem;
  background: var(--paper);
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px -12px rgba(42,29,18,.4);
  display: flex; flex-direction: column; align-items: flex-start;
}
.histoire__badge .script {
  font-size: 1.4rem;
  color: var(--terracotta);
  line-height: 1;
}
.histoire__badge strong {
  font-family: var(--f-serif);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
}
.histoire__text h2 { margin-bottom: 1.25rem; }
.signature {
  color: var(--ink-soft);
  font-style: italic;
}
.signature--names {
  font-family: var(--f-script);
  font-style: normal;
  font-size: 1.75rem;
  color: var(--terracotta);
  margin-top: 0.5rem;
  line-height: 1;
}
@media (max-width: 820px) {
  .histoire__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   MENU
   ========================================================= */
.menu {
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.menu__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem) clamp(2rem, 6vw, 5rem);
}
.menu-group {
  position: relative;
}
.menu-group__title {
  font-family: var(--f-script);
  font-size: clamp(2.1rem, 3.5vw, 2.75rem);
  font-weight: 600;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
  display: inline-block;
  transform: rotate(-2deg);
}
.menu-group__title::after {
  content: "";
  display: block;
  width: 42px; height: 2px;
  background: var(--brass);
  margin-top: 0.4rem;
  transform: rotate(2deg);
}
.menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-item {
  padding: 1.1rem 0;
  border-bottom: 1px dashed rgba(168,129,61,.3);
}
.menu-item:last-child { border-bottom: 0; }
.menu-item__head {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  margin-bottom: 0.25rem;
}
.menu-item__name {
  font-family: var(--f-serif);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.menu-item__dots {
  flex: 1;
  border-bottom: 1.5px dotted rgba(122,102,82,.45);
  transform: translateY(-4px);
  min-width: 20px;
}
.menu-item__price {
  font-family: var(--f-serif);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--terracotta);
  white-space: nowrap;
}
.menu-item__desc {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin: 0;
  max-width: 52ch;
}
.menu__note {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  font-style: italic;
  margin-top: clamp(2rem, 4vw, 3rem);
}
@media (max-width: 820px) {
  .menu__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery { background: var(--cream); }
.gallery__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 1rem;
}
.gallery__item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px -25px rgba(42,29,18,.4);
  background: var(--stone);
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

@media (max-width: 820px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery__item--tall { grid-row: span 2; }
  .gallery__item--wide { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 520px) {
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--wide { grid-column: span 1; }
}

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews {
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.reviews__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 18px 36px -28px rgba(42,29,18,.3);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.review:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 50px -28px rgba(42,29,18,.4);
}
.review::before {
  content: "“";
  position: absolute;
  top: -10px; right: 1.5rem;
  font-family: var(--f-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--terracotta);
  opacity: 0.18;
  font-weight: 700;
}
.review__stars {
  display: flex;
  gap: 0.2rem;
}
.review__stars span {
  width: 16px; height: 16px;
  background: var(--brass);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2l2.95 6.16 6.79.62-5.13 4.7 1.5 6.69L12 17.27l-6.11 2.9 1.5-6.69-5.13-4.7 6.79-.62z'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2l2.95 6.16 6.79.62-5.13 4.7 1.5 6.69L12 17.27l-6.11 2.9 1.5-6.69-5.13-4.7 6.79-.62z'/></svg>") center / contain no-repeat;
}
.review__stars span.is-empty {
  background: var(--brass);
  opacity: 0.25;
}
.review blockquote {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  font-style: italic;
  font-family: var(--f-serif);
}
.review figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-top: 0.75rem;
  border-top: 1px dashed rgba(168,129,61,.3);
  margin-top: auto;
}
.review figcaption strong {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
}
.review figcaption span {
  font-size: 0.82rem;
  color: var(--muted);
}
.reviews__source {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
}
.reviews__source a {
  color: var(--terracotta);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
@media (max-width: 1024px) {
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .reviews__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   RESERVATION
   ========================================================= */
.reserve {
  background:
    radial-gradient(1200px 500px at 80% 0%, rgba(184,84,56,.08) 0%, transparent 60%),
    var(--paper);
  border-top: 1px solid var(--line);
}
.reserve__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.reserve__left h2 { margin: 0 0 1rem; max-width: 16ch; }
.reserve__phone {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--ink);
  color: var(--cream);
  padding: 1rem 1.5rem 1rem 1.25rem;
  border-radius: var(--radius);
  margin: 1.25rem 0 1rem;
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.reserve__phone:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
}
.reserve__phone svg { width: 26px; height: 26px; flex-shrink: 0; }
.reserve__phone small {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.7;
  margin-bottom: 0.2rem;
}
.reserve__phone span {
  font-family: var(--f-serif);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
}
.reserve__ig {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.reserve__ig:hover { color: var(--terracotta); border-color: var(--terracotta); }
.reserve__ig svg { width: 18px; height: 18px; }

.reserve__right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.info-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 20px 40px -30px rgba(42,29,18,.3);
}
.info-card h3 {
  font-family: var(--f-script);
  font-weight: 600;
  color: var(--terracotta);
  font-size: 1.8rem;
  margin-bottom: 0.9rem;
  line-height: 1;
}
.info-card address {
  font-style: normal;
  color: var(--ink-soft);
  line-height: 1.8;
  font-size: 1rem;
}
.info-card__link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--terracotta);
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform .2s var(--ease);
}
.info-card__link:hover { transform: translateX(3px); }

.hours { margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.65rem; }
.hours > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  border-bottom: 1px dashed rgba(168,129,61,.25);
  padding-bottom: 0.55rem;
}
.hours > div:last-child { border-bottom: 0; padding-bottom: 0; }
.hours dt { font-weight: 600; color: var(--ink); font-size: 0.95rem; }
.hours dd { margin: 0; color: var(--ink-soft); font-size: 0.95rem; font-variant-numeric: tabular-nums; }
.hours__closed dd { color: var(--terracotta); font-style: italic; }

@media (max-width: 820px) {
  .reserve__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 3.5rem var(--gutter) 2.5rem;
  text-align: center;
}
.footer__inner { max-width: var(--maxw); margin: 0 auto; }
.footer__brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}
.footer__brand .script {
  font-size: 2.2rem;
  color: var(--terracotta);
  transform: translateY(3px);
  line-height: 1;
}
.footer__brand .mark {
  font-family: var(--f-serif);
  font-weight: 600;
  letter-spacing: 0.3em;
  font-size: 1.3rem;
}
.footer__tag {
  color: rgba(246,239,226,.7);
  margin: 0 0 1.75rem;
}
.footer__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  color: rgba(246,239,226,.9);
}
.footer__links a { transition: color .2s var(--ease); }
.footer__links a:hover { color: var(--terracotta); }
.footer__links span { color: rgba(246,239,226,.35); }
.footer__copy {
  font-size: 0.82rem;
  color: rgba(246,239,226,.4);
  margin: 0;
}

/* =========================================================
   REVEAL ANIMATIONS (JS-gated — only hide when JS is ready)
   ========================================================= */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.js .reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Focus visibility */
:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =========================================================
   ACTUALITÉS — "Le carnet du Bouchon"
   Warm editorial · mood carnet/journal
   ========================================================= */
.news {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) var(--gutter) clamp(3rem, 7vw, 5rem);
  position: relative;
  z-index: 2;
}

.news .section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.news .section-head h2 { font-size: clamp(2rem, 4.2vw, 3rem); }
.news .section-sub {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0.75rem auto 0;
}

.news__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.news-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  box-shadow: 0 1px 0 rgba(42,29,18,.02);
  will-change: transform;
}
.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -28px rgba(42,29,18,.35);
  border-color: rgba(168,129,61,.4);
}

.news-card__media {
  aspect-ratio: 16 / 10;
  background: var(--stone);
  overflow: hidden;
  position: relative;
}
.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.news-card:hover .news-card__media img { transform: scale(1.04); }

.news-card--no-image .news-card__media {
  display: none;
}
.news-card--no-image {
  background: linear-gradient(155deg, var(--paper) 0%, var(--cream-2) 100%);
}

.news-card__body {
  padding: 1.5rem clamp(1.25rem, 2vw, 1.75rem) clamp(1.5rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.news-card__date {
  font-family: var(--f-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.news-card__date::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--brass);
}

.news-card__title {
  font-family: var(--f-serif);
  font-size: 1.45rem;
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.005em;
}

.news-card__body p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0;
  white-space: pre-wrap;
}

.news-card__body p.is-clamped {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card__more {
  align-self: flex-start;
  margin-top: 0.25rem;
  background: none;
  border: 0;
  padding: 0.35rem 0;
  color: var(--terracotta);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.02em;
  position: relative;
  transition: color .2s var(--ease);
}
.news-card__more::after {
  content: "";
  display: block;
  height: 1px;
  background: var(--terracotta);
  width: 100%;
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.news-card__more:hover { color: var(--terracotta-2); }

.news__empty {
  text-align: center;
  color: var(--muted);
  font-family: var(--f-script);
  font-size: 1.6rem;
  padding: 2rem 0;
}

.news__skeleton {
  background: linear-gradient(90deg, var(--cream-2) 0%, var(--paper) 50%, var(--cream-2) 100%);
  background-size: 200% 100%;
  animation: news-shimmer 1.4s ease-in-out infinite;
  border-radius: var(--radius-lg);
  height: 360px;
}
@keyframes news-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@media (max-width: 640px) {
  .news__grid { grid-template-columns: 1fr; }
  .news-card__title { font-size: 1.3rem; }
}

@media (prefers-reduced-motion: reduce) {
  .news-card, .news-card__media img { transition: none; }
  .news-card:hover { transform: none; }
  .news__skeleton { animation: none; }
}
