/* "dégustations déconcertantes" — site officiel
   Design sobre, noir/sépia/crème, typo serif élégante. */

:root {
  --bg-cream: #f6f1e7;
  --bg-paper: #faf6ec;
  --bg-dark: #141414;
  --bg-deep: #0c0c0c;
  --ink: #1a1a1a;
  --ink-soft: #3a3a3a;
  --ink-muted: #6a6a6a;
  --ink-inv: #f0e8d8;
  --ink-inv-soft: #c8bfae;
  --wine: #6b1f1f;
  --rule: #d8cfbe;
  --rule-inv: #2a2a2a;
  --max: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg-cream);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "kern", "liga";
}

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); line-height: 1.05; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1.15; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); line-height: 1.25; }

p { margin: 0 0 1.1em; }

a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: var(--ink-muted);
  transition: text-decoration-color 0.2s;
}
a:hover { text-decoration-color: var(--wine); }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* -------- Navigation -------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 241, 231, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.nav-brand strong { font-weight: 600; font-style: normal; }
.nav-links { display: flex; gap: 1.6rem; }
.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--wine); }
.nav-links a.current { color: var(--ink); border-bottom: 1px solid var(--wine); padding-bottom: 2px; }

/* -------- Hero -------- */
.hero {
  background: var(--bg-deep);
  color: var(--ink-inv);
  padding: 4.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero h1, .hero h2 { color: var(--ink-inv); }
.hero .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-text .kicker {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink-inv-soft);
  margin: 0 0 1rem;
}
.hero-text h1 {
  font-style: italic;
  margin: 0 0 1.5rem;
}
.hero-text h1 .quote {
  color: var(--ink-inv-soft);
  font-style: normal;
}
.hero-text .lede {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.45;
  color: var(--ink-inv-soft);
  max-width: 28rem;
}
.hero-image {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  filter: grayscale(1) contrast(1.05);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-cta {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border: 1px solid var(--ink-inv);
  color: var(--ink-inv);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.2s;
}
.btn:hover { background: var(--ink-inv); color: var(--bg-deep); }
.btn-light {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-light:hover { background: var(--ink); color: var(--bg-paper); }

/* -------- Sections génériques -------- */
section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--rule);
}
section:last-child { border-bottom: 0; }
section.dark {
  background: var(--bg-dark);
  color: var(--ink-inv);
  border-color: var(--rule-inv);
}
section.dark h1, section.dark h2, section.dark h3 { color: var(--ink-inv); }
section.dark a { color: var(--ink-inv); text-decoration-color: var(--ink-inv-soft); }

.section-head {
  margin-bottom: 2.5rem;
  max-width: 36rem;
}
.section-head .eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 0.6rem;
}
section.dark .section-head .eyebrow { color: var(--ink-inv-soft); }
.section-head h2 { margin: 0; }
.section-head .rule {
  width: 4rem;
  height: 1px;
  background: var(--ink);
  margin-top: 1rem;
}
section.dark .section-head .rule { background: var(--ink-inv); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.two-col.text-first { grid-template-columns: 1.1fr 0.9fr; }
.two-col img {
  width: 100%;
  height: auto;
  display: block;
}

.prose p {
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-size: 1.22rem;
  line-height: 1.65;
}
.prose .lede {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.5;
  margin-bottom: 1.5em;
}

blockquote {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 1.45rem;
  line-height: 1.55;
  border-left: 2px solid var(--wine);
  padding-left: 1.5rem;
}
section.dark blockquote { border-left-color: var(--ink-inv-soft); }

/* -------- Vidéos -------- */
.videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.video-card {
  background: var(--bg-paper);
  border: 1px solid var(--rule);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s, box-shadow 0.3s;
}
section.dark .video-card {
  background: #1f1f1f;
  border-color: var(--rule-inv);
}
.video-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.video-card .thumb {
  aspect-ratio: 16/9;
  background: var(--bg-dark);
  overflow: hidden;
  position: relative;
}
.video-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-card .thumb::after {
  content: "▶";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2.2rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  opacity: 0.85;
}
.video-card .meta {
  padding: 1.2rem 1.4rem;
}
.video-card .meta .kind {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 0.3rem;
}
section.dark .video-card .meta .kind { color: var(--ink-inv-soft); }
.video-card .meta h3 { margin: 0; font-style: italic; }

/* -------- Galerie millésime -------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.gallery figure { margin: 0; overflow: hidden; }
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) contrast(1.05);
  transition: filter 0.4s;
}
.gallery img:hover { filter: grayscale(0.6) contrast(1.1); }
.gal-big { grid-column: span 7; aspect-ratio: 7/5; }
.gal-tall { grid-column: span 5; aspect-ratio: 5/6; }
.gal-wide { grid-column: span 7; aspect-ratio: 7/3; }
.gal-sq   { grid-column: span 5; aspect-ratio: 5/3; }

/* -------- Trois colonnes (organiser) -------- */
.trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.card {
  background: var(--bg-paper);
  border: 1px solid var(--rule);
  padding: 2rem 1.8rem;
}
.card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 1.55rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
  color: var(--wine);
  margin: 0 0 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--rule);
}
.card ol { padding-left: 1.2rem; margin: 0; }
.card ol li { margin-bottom: 0.8rem; }
.card .legal {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
.card .legal dt {
  display: inline;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.card .legal dd { display: inline; margin: 0; }
.card .legal dd::after { content: "\A"; white-space: pre; }

/* -------- CTA section -------- */
.cta-band {
  text-align: center;
  padding: 6rem 0;
}
.cta-band h2 {
  font-style: italic;
  max-width: 36rem;
  margin: 0 auto 1.5rem;
}
.cta-band p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink-inv-soft);
  margin-bottom: 2.5rem;
}
.cta-band .btn { font-size: 1rem; padding: 1rem 2rem; }

/* -------- Logo courbes -------- */
.signature {
  display: block;
  margin: 0 auto 2rem;
  width: 140px;
  opacity: 0.9;
}
.signature.invert { filter: invert(1); }

/* -------- Footer -------- */
footer {
  background: var(--bg-deep);
  color: var(--ink-inv-soft);
  padding: 3.5rem 0 2rem;
  font-size: 0.92rem;
}
footer a { color: var(--ink-inv); }
footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
footer .legal-mini { font-size: 0.8rem; color: var(--ink-inv-soft); opacity: 0.75; }

/* -------- Responsive -------- */
@media (max-width: 800px) {
  body { font-size: 16px; }
  .hero { padding: 3rem 0 3.5rem; }
  .hero .wrap, .two-col, .videos { grid-template-columns: 1fr; gap: 2rem; }
  .hero-image { aspect-ratio: 4/3; }
  .trio { grid-template-columns: 1fr; }
  section { padding: 3.5rem 0; }
  .gallery { grid-template-columns: repeat(6, 1fr); }
  .gal-big, .gal-wide { grid-column: span 6; aspect-ratio: 6/4; }
  .gal-tall, .gal-sq { grid-column: span 6; aspect-ratio: 6/4; }
  .nav-inner { flex-direction: column; align-items: flex-start; padding: 0.8rem 1.5rem; gap: 0.4rem; }
  .nav-links { gap: 1.2rem; }
}
