/* ==========================================================================
   Taste & Toast — Design system
   ========================================================================== */

:root{
  --gold: #C9A961;
  --gold-light: #E4D3A5;
  --gold-dim: rgba(201,169,97,0.35);
  --wine: #7E1522;
  --wine-bright: #D81324;
  --anthracite: #1A1A1A;
  --anthracite-soft: #24221E;
  --ivory: #FAF7F1;
  --ivory-dim: #F1EBDE;
  --ink: #1A1A1A;
  --line: rgba(26,26,26,0.11);
  --line-light: rgba(246,242,233,0.16);

  --font-display: 'Bodoni Moda', Didot, 'Times New Roman', serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1180px;
  --container-narrow: 780px;
  --header-h: 88px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

:root{ --site-max: 1600px; }

body{
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1,h2,h3{
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.01em;
  margin: 0 0 0.5em;
  color: var(--anthracite);
}

h1{ font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 1.08; font-weight: 500; }
h2{ font-size: clamp(1.9rem, 4vw, 2.9rem); line-height: 1.15; }

p{ margin: 0 0 1em; }

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

.container{ max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.container.narrow{ max-width: var(--container-narrow); }

.section{ padding: 120px 0; position: relative; }
@media (max-width: 720px){ .section{ padding: 32px 0; } }

.kicker{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--wine);
  margin: 0 0 1em;
}
.kicker.center{ text-align: center; }
.kicker.gold{ color: var(--gold); }
.kicker.light{ color: var(--gold-light); }

.lead{
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.55;
  color: #322f2a;
  max-width: 560px;
  letter-spacing: 0.002em;
}
.lead.light{ color: rgba(246,242,233,0.82); }
.lead.center{ margin-left:auto; margin-right:auto; text-align:center; }

.body-text{
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.98rem;
  line-height: 1.75;
  max-width: 560px;
  color: #5c584f;
}
.body-text.light{ color: rgba(246,242,233,0.62); }

@media (max-width: 640px){
  h2{ font-size: clamp(1.6rem, 7vw, 2.2rem); line-height: 1.18; }
  .lead{ font-size: 1.02rem; line-height: 1.5; }
  .body-text{ font-size: 0.92rem; line-height: 1.62; }
  p{ margin-bottom: 0.85em; }

  /* "Lire plus" — on mobile, long body-text paragraphs collapse to 3 lines
     behind a toggle, to cut down on scroll length. Desktop always shows
     the full paragraph (see the min-width rule below). */
  .expandable .body-text{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    margin-bottom: 0.5em;
  }
  .expandable.is-expanded .body-text{
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    overflow: visible;
  }
  .read-more-toggle{
    display: inline-block;
    background: none;
    border: none;
    padding: 0;
    margin: 0 0 1.2em;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.9rem;
    color: var(--wine);
    border-bottom: 1px solid rgba(126,21,34,0.3);
    cursor: pointer;
  }
  .read-more-toggle.light{ color: var(--gold-light); border-bottom-color: rgba(228,211,165,0.35); }
  .read-more-toggle .rm-label-less{ display: none; }
  .read-more-toggle[aria-expanded="true"] .rm-label-more{ display: none; }
  .read-more-toggle[aria-expanded="true"] .rm-label-less{ display: inline; }
}
@media (min-width: 641px){
  .read-more-toggle{ display: none !important; }
}

h2.light{ color: var(--ivory); }
h2.center{ text-align: center; }

.points-list{
  list-style: none;
  margin: 1.8em 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
  max-width: 640px;
}
.points-list li{
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #5c584f;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}
.points-list.light li{ color: var(--ivory-dim); border-top-color: rgba(246,242,233,0.18); }
@media (max-width: 560px){ .points-list{ grid-template-columns: 1fr; margin-top: 1.2em; gap: 10px; } .points-list li{ padding-top: 8px; } }

/* ---------- Buttons (form submits — a real boxed action) ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  background: var(--ink);
  border: 1px solid var(--ink);
  color: var(--ivory);
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}
.btn:hover{ opacity: 0.82; }

.btn-primary{ background: var(--ink); border-color: var(--ink); }

/* Le Cercle: gold-toned button */
.cercle .btn{ background: var(--gold); border-color: var(--gold); color: #2a2011; font-weight: 400; }
.cercle .btn:hover{ opacity: 0.85; }

/* ---------- Text links (navigational CTAs — no box, no uniform look) ---------- */
.link-arrow{
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 2.2em;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--wine);
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  transition: gap 0.3s var(--ease), opacity 0.3s ease;
}
.link-arrow:hover{ gap: 14px; opacity: 0.75; }
.link-arrow::after{ content: "→"; font-style: normal; font-size: 0.85em; }
.link-arrow.light{ color: var(--gold-light); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(246,242,233,0.0);
  backdrop-filter: blur(0px);
  transition: background-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease, height 0.3s ease;
}
.site-header.scrolled{
  background: rgba(246,242,233,0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
  height: 72px;
}
.header-inner{
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--ink);
  flex-shrink: 0;
  line-height: 1;
}
.site-header:not(.scrolled) .brand{ color: var(--ivory); }
.brand-mark{
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.brand-mark-line{ text-transform: uppercase; }
.brand-mark-amp{
  font-style: italic;
  font-weight: 500;
  color: var(--wine);
  font-size: 1.05em;
}
.brand-sub{
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}

.main-nav ul{
  list-style: none;
  display: flex;
  gap: 26px;
  margin: 0;
  padding: 0;
}
.nav-link{
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 400;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}
.site-header:not(.scrolled) .nav-link{ color: var(--ivory); }
.nav-link::after{
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--wine);
  transition: width 0.35s var(--ease);
}
.site-header:not(.scrolled) .nav-link::after{ background: var(--gold); }
.nav-link:hover::after, .nav-link.active::after{ width: 100%; }
.nav-link.active{ color: var(--wine); }
.site-header:not(.scrolled) .nav-link.active{ color: var(--gold-light); }

.header-actions{ display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.lang-switch{ display: flex; align-items: center; gap: 4px; }
.lang-btn{
  background: none;
  border: none;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(26,26,26,0.42);
  padding: 4px 7px;
  cursor: pointer;
  transition: color 0.25s ease;
}
.site-header:not(.scrolled) .lang-btn{ color: rgba(246,242,233,0.5); }
.lang-btn.active{ color: var(--wine); }
.lang-btn + .lang-btn{ border-left: 1px solid var(--line); }
.site-header:not(.scrolled) .lang-btn + .lang-btn{ border-left-color: var(--line-light); }

.menu-toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px; height: 30px;
  background: none; border: none; cursor: pointer;
  padding: 0;
}
.menu-toggle span{
  display: block; width: 100%; height: 1px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}
.site-header:not(.scrolled) .menu-toggle span{ background: var(--ivory); }

@media (max-width: 900px){
  .main-nav{
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: var(--ivory);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  }
  .main-nav.open{ max-height: 70vh; overflow-y:auto; }
  .main-nav ul{ flex-direction: column; gap: 0; padding: 8px 28px 20px; }
  .main-nav li{ border-bottom: 1px solid var(--line); }
  .main-nav a{ display: block; padding: 16px 0; color: var(--ink) !important; }
  .menu-toggle{ display: flex; }
  .menu-toggle.open span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2){ opacity: 0; }
  .menu-toggle.open span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }
}

@media (max-width: 430px){
  .header-inner{ padding: 0 16px; gap: 10px; }
  .brand-mark{ font-size: 1.15rem; letter-spacing: 0.04em; }
  .brand-sub{ font-size: 0.48rem; letter-spacing: 0.12em; }
  .header-actions{ gap: 10px; }
  .lang-switch{ gap: 2px; }
  .lang-btn{ font-size: 0.78rem; padding: 4px 4px; }
  .menu-toggle{ width: 24px; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  display: flex;
  min-height: 100svh;
  background: var(--anthracite);
}
.hero-content{
  width: 46%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 24px) 6vw 40px;
  color: var(--ivory);
}
.hero-signature{
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.7em;
  font-weight: 600;
}
.hero h1{ color: var(--ivory); margin-bottom: 0.7em; max-width: 460px; line-height: 1.18; }
.hero-subtitle{
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(246,242,233,0.68);
  max-width: 400px;
  margin: 0 0 2.8em;
}
.hero-photo{
  flex: 1;
  position: relative;
  overflow: hidden;
}
/* <picture> is inline by default; force it to behave like the <img> it wraps
   so the object-fit/cover sizing below still fills its container. */
.hero-photo picture, .savoir-faire-photo picture, .sejours-photo picture, .cercle-photo picture{
  display: block;
  width: 100%;
  height: 100%;
}
.hero-photo img{
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 62% center;
  display: block;
  will-change: transform;
}
@media (max-width: 900px){
  .hero{ flex-direction: column; min-height: auto; }
  .hero-content{ width: 100%; order: 2; padding: 36px 24px 40px; }
  .hero-photo{ order: 1; height: 38vh; flex: none; }
  .hero h1, .hero-subtitle{ max-width: none; }
  .hero-signature{ margin-bottom: 1em; }
  .hero-subtitle{ margin-bottom: 1.8em; }
}

/* ==========================================================================
   Wine video — real footage of wine pouring, hero-to-services transition
   ========================================================================== */
.wine-video-section{
  background: var(--anthracite);
}
.wine-video-frame{
  position: relative;
  height: 20vh;
  min-height: 150px;
  max-height: 220px;
  overflow: hidden;
  background: var(--anthracite);
}
.wine-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
}
.wine-video-overlay{
  position: absolute;
  inset: 0;
  background: rgba(10,9,8,0.1);
}
@media (max-width: 640px){
  .wine-video-frame{ height: 16vh; min-height: 120px; }
}

/* ==========================================================================
   Services overview
   ========================================================================== */
.services-overview{ padding: 56px 0 70px; background: var(--ivory); }
@media (max-width: 720px){ .services-overview{ padding: 28px 0 34px; } }
.services-grid{
  counter-reset: svc;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service-card{
  counter-increment: svc;
  position: relative;
  padding: 40px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background-color 0.4s ease;
}
.service-card::before{
  content: "0" counter(svc);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--wine);
  opacity: 0.7;
}
.service-card:hover{ background: rgba(126,21,34,0.035); }
.service-card-title{
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--anthracite);
  font-weight: 600;
  position: relative;
  display: inline-block;
  width: fit-content;
}
.service-card-title::after{
  content: "";
  position: absolute; left: 0; bottom: -3px;
  width: 0; height: 1px;
  background: var(--wine);
  transition: width 0.4s var(--ease);
}
.service-card:hover .service-card-title::after{ width: 100%; }
.service-card-desc{ font-family: var(--font-display); font-size: 0.98rem; color: #5c584f; line-height: 1.5; }
@media (max-width: 900px){ .services-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px){
  .service-card{ padding: 14px 14px 16px; gap: 4px; }
  .service-card::before{ display: none; }
  .service-card-title{ font-size: 1rem; line-height: 1.25; overflow-wrap: break-word; }
  .service-card-desc{ font-size: 0.82rem; line-height: 1.4; }
}

/* ==========================================================================
   Savoir-faire / Destinations / Au-delà (light sections)
   ========================================================================== */
.savoir-faire{
  background: var(--ivory);
  padding-top: 90px;
  border-top: 1px solid var(--line);
}
@media (max-width: 720px){ .savoir-faire{ padding-top: 36px; } }
.destinations{ background: var(--ivory-dim); }
.au-dela{ background: var(--ivory); }
@media (max-width: 640px){ .au-dela .kicker{ font-size: 1.35rem; font-weight: 600; margin-bottom: 0.45em; } }

.savoir-faire-grid{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 72px;
  align-items: center;
}
.savoir-faire-text h2,
.sejours-text h2{
  font-size: clamp(2.3rem, 2.6vw + 1.3rem, 3.6rem);
}
.savoir-faire-photo{
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.savoir-faire-photo img{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px){
  .savoir-faire-grid{ grid-template-columns: 1fr; gap: 40px; }
  .savoir-faire-photo{ order: -1; aspect-ratio: 16/9; }
}
@media (max-width: 640px){
  .savoir-faire-grid{ gap: 28px; }
  .savoir-faire-photo{ aspect-ratio: 3/2; }
}

.destinations-grid{
  margin-top: 2.4em;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
}
.destination-card{
  flex: 1 1 16%;
  padding: 26px 22px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid var(--line);
  transition: opacity 0.3s ease;
}
.destination-card:last-child{ border-right: none; }
.destination-card:hover{ opacity: 0.6; }
.destination-card--worldwide .destination-name{ color: var(--wine); }
.destination-name{ font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; }
.destination-desc{ font-family: var(--font-body); font-size: 0.76rem; letter-spacing: 0.02em; color: #706c62; }
@media (max-width: 900px){
  .destination-card{ flex: 1 1 46%; }
  .destination-card:nth-child(2n){ border-right: none; }
}
@media (max-width: 560px){
  .destinations-grid{ margin-top: 1.6em; }
  .destination-card{ padding: 16px 14px 16px 0; }
  .destination-name{ font-size: 1.1rem; }
  .destination-desc{ font-size: 0.72rem; }
}

.audela-grid{
  margin-top: 2.6em;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.audela-title{
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.55em;
  position: relative;
  padding-top: 20px;
}
.audela-title::before{
  content: "";
  position: absolute; top: 0; left: 0;
  width: 32px; height: 1px;
  background: var(--wine);
}
.audela-desc{ font-family: var(--font-display); font-size: 1.02rem; color: #4a4740; margin: 0; }
@media (max-width: 780px){ .audela-grid{ grid-template-columns: 1fr; gap: 34px; } }
@media (max-width: 640px){ .audela-grid{ margin-top: 1.8em; gap: 22px; } }

/* ==========================================================================
   Séjours œnologiques (immersive)
   ========================================================================== */
.sejours{
  background: var(--anthracite);
  padding: 0;
}
.sejours-grid{
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: stretch;
  min-height: 640px;
}
.sejours-photo{ overflow: hidden; }
.sejours-photo img{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  min-height: 320px;
}
.sejours-text{
  padding: 90px 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sejours .kicker.light{ text-align: left; }
@media (max-width: 900px){
  .sejours-grid{ grid-template-columns: 1fr; min-height: 0; }
  .sejours-photo{ aspect-ratio: 16/9; }
  .sejours-photo img{ min-height: 0; }
  .sejours-text{ padding: 44px 28px 56px; }
}
@media (max-width: 640px){
  .sejours-photo{ aspect-ratio: 3/2; }
  .sejours-text{ padding: 26px 22px 34px; }
  .sejours .kicker.light{ font-size: 1.35rem; font-weight: 600; margin-bottom: 0.45em; }
}

/* ==========================================================================
   Le Cercle
   ========================================================================== */
.cercle{
  background: #0f0e0c;
  padding: 0 0 140px;
}
.cercle-photo{ width: 100%; height: 48vh; overflow: hidden; }
.cercle-photo img{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92);
}
.cercle .container{ padding-top: 90px; }
@media (max-width: 700px){
  .cercle{ padding-bottom: 56px; }
  .cercle-photo{ height: auto; aspect-ratio: 16/9; }
  .cercle .container{ padding-top: 34px; }
}
@media (max-width: 640px){
  .cercle-photo{ aspect-ratio: 3/2; }
}

.cercle-subtitle{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold-light);
  max-width: 560px;
  margin: 0 auto 1.4em;
}

.cercle-points{
  list-style: none;
  margin: 3em auto 0;
  padding: 0;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.cercle-points li{
  border-top: 1px solid rgba(201,169,97,0.25);
  padding-top: 20px;
}
.cercle-point-title{
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 0.5em;
}
.cercle-point-desc{ font-size: 0.92rem; color: rgba(246,242,233,0.68); line-height: 1.6; }
@media (max-width: 780px){ .cercle-points{ grid-template-columns: 1fr; gap: 26px; } }
@media (max-width: 600px){ .cercle-points{ margin-top: 1.8em; gap: 18px; } .cercle-points li{ padding-top: 14px; } .cercle-point-title{ margin-bottom: 0.3em; } }

.cercle-form-wrap{
  max-width: 560px;
  margin: 4.5em auto 0;
  padding: 44px 40px;
  background: rgba(246,242,233,0.03);
  border: 1px solid rgba(201,169,97,0.2);
}
.cercle-form-title{
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ivory);
  margin-bottom: 0.3em;
  text-align: center;
}
.cercle-form-lead{
  font-size: 0.92rem;
  color: rgba(246,242,233,0.6);
  text-align: center;
  margin-bottom: 2em;
}
@media (max-width: 600px){
  .cercle-form-wrap{ padding: 22px 18px; margin-top: 1.5em; }
  .cercle-form-lead{ margin-bottom: 1.1em; }
}

/* ==========================================================================
   Forms
   ========================================================================== */
.form{ display: flex; flex-direction: column; gap: 30px; }
@media (max-width: 640px){ .form{ gap: 20px; } }
/* Honeypot anti-spam field: hidden from real visitors, still "visible" to
   simple bots that fill every input, without display:none (some bots skip
   display:none/visibility:hidden fields on purpose). */
.hp-field{
  position: absolute;
  left: -5000px;
  width: 1px; height: 1px;
  overflow: hidden;
  opacity: 0;
}
.form-row{ display: flex; flex-direction: column; gap: 9px; }
.form-row label{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--wine);
}
.form--dark .form-row label{ color: var(--gold-light); }

.form-row input,
.form-row select{
  font-family: var(--font-body);
  font-size: 1.05rem;
  padding: 8px 2px 11px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  transition: border-color 0.3s ease;
}
.form-row textarea{
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.6;
  padding: 12px 14px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  transition: border-color 0.3s ease;
  resize: vertical;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus{
  outline: none;
  border-color: var(--wine);
}
.form--dark .form-row input,
.form--dark .form-row select{
  background: transparent;
  border-bottom-color: rgba(201,169,97,0.3);
  color: var(--ivory);
}
.form--dark .form-row textarea{
  background: transparent;
  border-color: rgba(201,169,97,0.3);
  color: var(--ivory);
}
.form--dark .form-row input:focus,
.form--dark .form-row select:focus,
.form--dark .form-row textarea:focus{
  border-color: var(--gold);
}
.form-row select{ cursor: pointer; }
.form .btn{ margin-top: 10px; align-self: flex-start; }
.form-status{
  font-size: 0.85rem;
  min-height: 1.2em;
  color: var(--wine);
}
.form--dark .form-status{ color: var(--gold); }

/* Submitted state: fields disappear, the confirmation takes their place */
.form--submitted .form-row,
.form--submitted .btn{
  display: none;
}
.form--submitted .form-status{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--wine);
  padding: 20px 0;
}
.form--dark.form--submitted .form-status{ color: var(--gold-light); }

.contact{ background: var(--ivory-dim); }
.contact-grid{
  margin-top: 3.2em;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: start;
}
.contact-direct{
  padding-top: 2px;
}
.contact-direct-title{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--anthracite);
  margin-bottom: 0.3em;
}
.contact-direct-lead{ font-size: 0.95rem; color: #6b6659; margin-bottom: 2.2em; max-width: 320px; }
.contact-direct-list{ list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 26px; }
@media (max-width: 640px){ .contact-direct-list{ gap: 16px; } .contact-direct-lead{ margin-bottom: 1.4em; } }
.contact-direct-list li{ display: flex; flex-direction: column; gap: 4px; border-top: 1px solid var(--line); padding-top: 16px; }
.contact-direct-label{ font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--wine); }
.contact-direct-list a{ font-family: var(--font-display); font-size: 1.2rem; color: var(--anthracite); }
.contact-direct-list a:hover{ color: var(--wine); }
@media (max-width: 860px){ .contact-grid{ grid-template-columns: 1fr; gap: 40px; } }

/* ==========================================================================
   Floating WhatsApp
   ========================================================================== */
.whatsapp-float{
  position: fixed;
  right: max(24px, calc((100vw - var(--site-max)) / 2 + 24px));
  bottom: 24px;
  z-index: 90;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--anthracite);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0,0,0,0.28);
  transition: transform 0.3s var(--ease), background-color 0.3s ease;
}
.whatsapp-float svg{ width: 24px; height: 24px; }
.whatsapp-float:hover{ background: #000; transform: translateY(-3px); }
@media (max-width: 640px){
  .whatsapp-float{ right: 16px; bottom: 16px; width: 46px; height: 46px; }
  .whatsapp-float svg{ width: 21px; height: 21px; }
}

/* ==========================================================================
   Demande rapide — floating trigger (appears after a short scroll, stacked
   above the WhatsApp bubble) + guided 3-step modal. Reuses the same
   EmailJS/Sheet pipeline as the other forms via handleForm().
   ========================================================================== */
.quick-request-fab{
  position: fixed;
  right: max(24px, calc((100vw - var(--site-max)) / 2 + 24px));
  bottom: 92px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  background: var(--ivory);
  color: var(--wine);
  border: 1px solid rgba(126,21,34,0.3);
  border-radius: 999px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), background-color 0.3s ease, border-color 0.3s ease;
}
.quick-request-fab.is-visible{ opacity: 1; transform: translateY(0); pointer-events: auto; }
.quick-request-fab:hover{ background: var(--wine); border-color: var(--wine); color: var(--ivory); }
@media (max-width: 640px){
  .quick-request-fab{ right: 16px; bottom: 72px; padding: 11px 18px; font-size: 0.85rem; }
}

.quick-modal{
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.quick-modal.is-open{ display: flex; }
.quick-modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(20,18,16,0.4);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.quick-modal.is-visible .quick-modal-backdrop{ opacity: 1; }
.quick-modal-panel{
  position: relative;
  background: var(--ivory);
  width: 100%;
  max-width: 480px;
  max-height: 88vh;
  overflow-y: auto;
  padding: 44px 40px 36px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.16);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.quick-modal.is-visible .quick-modal-panel{ opacity: 1; transform: translateY(0); }
.quick-modal-close{
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
  font-size: 1.6rem; line-height: 1;
  color: var(--ink);
  transition: color 0.25s ease;
}
.quick-modal-close:hover{ color: var(--wine); }

.quick-progress{ display: flex; gap: 6px; margin-bottom: 30px; }
.quick-progress-dot{ flex: 1; height: 2px; background: var(--line); transition: background-color 0.3s ease; }
.quick-progress-dot.is-active, .quick-progress-dot.is-done{ background: var(--wine); }

.quick-step{ display: none; }
.quick-step.is-active{ display: block; animation: quickStepIn 0.4s var(--ease); }
@keyframes quickStepIn{ from{ opacity: 0; transform: translateX(10px); } to{ opacity: 1; transform: translateX(0); } }

.quick-step-title{
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--anthracite);
  margin: 0 0 1.1em;
}

.quick-choices{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 20px;
  border-top: 1px solid var(--line);
}
.quick-choice{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--anthracite);
  text-align: left;
  background: none;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 16px 4px;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.quick-choice:hover{ color: var(--wine); }
.quick-choice.is-selected{ color: var(--wine); border-color: var(--wine); font-weight: 600; }

.quick-step .form-row{ margin-bottom: 22px; }
.quick-step-actions{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}
.quick-back{
  font-family: var(--font-display);
  font-style: italic;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--anthracite);
  font-size: 0.92rem;
  border-bottom: 1px solid transparent;
  padding: 0;
}
.quick-back:hover{ border-bottom-color: currentColor; }
.quick-step .btn{ margin-top: 0; }

#quick-form > .form-status{ margin-top: 4px; }

/* Submitted state inside the modal: hide every step + progress + back link,
   the confirmation message (already styled via .form--submitted .form-status
   in the shared form rules) takes their place. */
.quick-modal-panel:has(#quick-form.form--submitted) .quick-progress{ display: none; }
#quick-form.form--submitted .quick-step,
#quick-form.form--submitted .quick-back{ display: none; }

body.quick-modal-open{ overflow: hidden; }

@media (max-width: 480px){
  .quick-modal{ padding: 0; align-items: flex-end; }
  .quick-modal-panel{ max-width: none; max-height: 92vh; padding: 36px 24px 30px; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
main, .site-footer{
  max-width: var(--site-max);
  margin: 0 auto;
}
.site-footer{ background: var(--anthracite); color: rgba(246,242,233,0.55); padding: 48px 0; }
.footer-inner{ text-align: center; }
.footer-brand{ font-family: var(--font-display); font-size: 1.3rem; color: var(--ivory); font-weight: 600; }
.footer-tagline{ font-size: 0.85rem; margin: 10px 0 18px; color: rgba(246,242,233,0.45); }
.footer-copy{ font-size: 0.78rem; margin: 0; }
.footer-legal{ font-size: 0.78rem; margin: 10px 0 0; }
.footer-legal a{ color: rgba(246,242,233,0.55); text-decoration: underline; text-underline-offset: 3px; }
.footer-legal a:hover{ color: var(--gold-light); }
.footer-legal span{ margin: 0 0.6em; opacity: 0.5; }

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */
.reveal{
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in-view{ opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Accueil de marque — brief brand moment on first visit of the session,
   before the hero reveals. Removed entirely (not just hidden) once played,
   or immediately for repeat visits / reduced-motion users.
   ========================================================================== */
body.intro-lock{ overflow: hidden; }
.site-intro{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--anthracite);
  opacity: 1;
  transition: opacity 0.7s var(--ease);
}
.site-intro.is-hiding{ opacity: 0; pointer-events: none; }
.site-intro-inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.site-intro-mark{
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw + 1.1rem, 2.6rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.site-intro.is-visible .site-intro-mark{ opacity: 1; transform: translateY(0); }
.site-intro-mark span{
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  color: var(--wine);
  margin: 0 0.14em;
}
.site-intro-sub{
  margin-top: 0.7em;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0;
  transition: opacity 0.7s var(--ease) 0.12s;
}
.site-intro.is-visible .site-intro-sub{ opacity: 1; }
