/* ==========================================================================
   Vignerons Paris v2.0 — theme.css
   Univers Esprit de France · FSE · RGAA AA/AAA
   ========================================================================== */

/* ── Variables ──────────────────────────────────────────────────────────── */
:root {
  --ivoire:       #F2EDE4;
  --ivoire-mid:   #EDE6DB;
  --ivoire-dark:  #E0D8CC;
  --blanc:        #FFFFFF;
  --gris-perle:   #F8F6F2;
  --gris-section: #EFEBE3;
  --ink:          #1A1714;
  --ink-mid:      #3D3830;
  --ink-soft:     #6B6458;
  --ink-faint:    #9A9088;
  --or:           #8C7240;
  --or-light:     #B09060;
  --or-pale:      #D4BC90;
  --bordeaux:     #3D0E18;
  --bordeaux-mid: #5C1825;
  --anthracite:   #2A2520;

  --rule:         rgba(26,23,20,0.12);
  --rule-or:      rgba(140,114,64,0.3);
  --rule-white:   rgba(255,255,255,0.1);

  --ff-sc:      'Cormorant SC', Georgia, serif;
  --ff-display: 'Cormorant', Georgia, serif;
  --ff-ui:      'Jost', system-ui, sans-serif;

  --transition: 0.22s ease;
  --pad-h: 52px;
}

/* ── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--ivoire);
  color: var(--ink);
  font-family: var(--ff-ui);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  margin: 0;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--or); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--bordeaux); }

/* RGAA — Focus visible sur tous les éléments interactifs */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--or);
  outline-offset: 2px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Topbar ──────────────────────────────────────────────────────────────── */
.vp-topbar {
  background: var(--anthracite);
  padding: 9px var(--pad-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vp-topbar__left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.vp-topbar__item {
  font-family: var(--ff-ui);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}
.vp-topbar__item a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.vp-topbar__item a:hover { color: rgba(255,255,255,0.85); }
.vp-topbar__sep {
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.18);
}
.vp-topbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.vp-lang {
  font-family: var(--ff-sc);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: color var(--transition);
  background: none;
  border: none;
  padding: 0;
}
.vp-lang:hover,
.vp-lang[aria-current="true"] { color: var(--or-pale); }
.vp-lang-sep { color: rgba(255,255,255,0.2); font-size: 10px; }

/* WPML natif dans la topbar */
.vp-topbar .wpml-ls-native {
  font-family: var(--ff-sc) !important;
  font-size: 11px !important;
  letter-spacing: 0.12em !important;
  color: rgba(255,255,255,0.45) !important;
}
.vp-topbar .wpml-ls-current-language a {
  color: var(--or-pale) !important;
}

/* ── Navigation ──────────────────────────────────────────────────────────── */
.site-header,
.wp-block-template-part[data-slug="header"] {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--blanc);
  border-bottom: 1px solid var(--rule);
}
.vp-nav {
  padding: 0 var(--pad-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.vp-nav__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.vp-nav__logo-name {
  font-family: var(--ff-sc);
  font-size: 17px;
  letter-spacing: 0.22em;
  color: var(--ink);
  font-weight: 500;
  line-height: 1;
}
.vp-nav__logo-rule {
  width: 28px;
  height: 1px;
  background: var(--or);
}
.vp-nav__logo-tagline {
  font-family: var(--ff-sc);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--or);
  font-weight: 300;
}
.vp-nav__links {
  display: flex;
  align-items: stretch;
  list-style: none;
  height: 72px;
  margin: 0;
  padding: 0;
}
.vp-nav__links li {
  border-right: 1px solid var(--rule);
}
.vp-nav__links li:first-child {
  border-left: 1px solid var(--rule);
}
.vp-nav__links li a {
  font-family: var(--ff-ui);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mid);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 22px;
  height: 100%;
  transition: color var(--transition);
}
.vp-nav__links li a:hover { color: var(--or); }
.vp-nav__dot {
  width: 3px;
  height: 3px;
  background: var(--or-pale);
  border-radius: 50%;
  flex-shrink: 0;
}
.vp-nav__cta {
  font-family: var(--ff-sc);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0 28px;
  height: 72px;
  background: var(--or);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
  margin-left: auto;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.vp-nav__cta:hover { background: var(--or-light); color: #fff; }

/* Gutenberg nav overrides */
.wp-block-navigation__container {
  gap: 0 !important;
}
.wp-block-navigation-item__content {
  font-family: var(--ff-ui) !important;
  font-size: 11px !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: var(--ink-mid) !important;
  padding: 0 !important;
}

/* ── Boutons globaux ────────────────────────────────────────────────────── */
.vp-btn,
.wp-block-button__link {
  font-family: var(--ff-sc) !important;
  font-size: 11px !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  border-radius: 0 !important;
  padding: 13px 28px !important;
  transition: background var(--transition), color var(--transition), border-color var(--transition) !important;
}
.vp-btn-or,
.wp-block-button.is-style-fill .wp-block-button__link {
  background: var(--or) !important;
  color: #fff !important;
  border: 1px solid var(--or) !important;
}
.vp-btn-or:hover,
.wp-block-button.is-style-fill .wp-block-button__link:hover {
  background: var(--or-light) !important;
  border-color: var(--or-light) !important;
  color: #fff !important;
}
.vp-btn-outline,
.wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent !important;
  color: var(--or) !important;
  border: 1px solid var(--or) !important;
}
.vp-btn-outline:hover,
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: var(--or) !important;
  color: #fff !important;
}
.vp-btn-ghost {
  background: transparent !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.45) !important;
}
.vp-btn-ghost:hover {
  border-color: var(--or-pale) !important;
  color: var(--or-pale) !important;
}

/* ── Section eyebrow ────────────────────────────────────────────────────── */
.vp-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.vp-eyebrow--center { justify-content: center; }
.vp-eyebrow__line {
  width: 32px;
  height: 1px;
  background: var(--rule-or);
}
.vp-eyebrow__text {
  font-family: var(--ff-sc);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--or);
  font-weight: 300;
  text-transform: uppercase;
}

/* ── Ornement losange ────────────────────────────────────────────────────── */
.vp-ornament {
  display: flex;
  align-items: center;
  gap: 14px;
}
.vp-ornament__line { flex: 1; height: 1px; background: var(--rule-or); }
.vp-ornament__diamond {
  width: 6px;
  height: 6px;
  background: var(--or);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.vp-ornament__text {
  font-family: var(--ff-display);
  font-size: 13px;
  font-style: italic;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* ── HERO ───────────────────────────────────────────────────────────────── */
.vp-hero {
  position: relative;
  height: 580px;
  background: var(--anthracite);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vp-hero__bg {
  position: absolute;
  inset: 0;
  background: rgba(26,23,20,0.5);
  z-index: 1;
}
.vp-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.vp-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 80px;
  max-width: 820px;
}
.vp-hero__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 24px;
}
.vp-hero__eyebrow-line { width: 36px; height: 1px; background: var(--or-pale); }
.vp-hero__eyebrow-text {
  font-family: var(--ff-sc);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--or-pale);
  font-weight: 300;
}
.vp-hero__h1 {
  font-family: var(--ff-sc);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.12em;
  line-height: 1.22;
  margin: 0 0 16px;
}
.vp-hero__sub {
  font-family: var(--ff-display);
  font-size: clamp(15px, 1.6vw, 18px);
  font-style: italic;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin: 0 0 36px;
  font-weight: 300;
}
.vp-hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.vp-hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 2;
}
.vp-hero__scroll-text {
  font-family: var(--ff-sc);
  font-size: 9px;
  letter-spacing: 0.24em;
  color: rgba(255,255,255,0.4);
}
.vp-hero__scroll-line {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.25);
}

/* ── Barre réservation rapide ────────────────────────────────────────────── */
.vp-booking-bar {
  background: var(--blanc);
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: stretch;
  height: 64px;
}
.vp-booking-bar__label {
  font-family: var(--ff-sc);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--or);
  padding: 0 24px;
  border-right: 1px solid var(--rule);
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}
.vp-booking-bar__fields {
  display: flex;
  flex: 1;
  align-items: stretch;
}
.vp-booking-bar__field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  border-right: 1px solid var(--rule);
  flex: 1;
  min-width: 0;
  cursor: pointer;
  transition: background var(--transition);
}
.vp-booking-bar__field:hover { background: var(--gris-perle); }
.vp-booking-bar__field-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.4;
  color: var(--ink);
}
.vp-booking-bar__field-lbl {
  display: block;
  font-family: var(--ff-ui);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 2px;
}
.vp-booking-bar__field-val {
  font-family: var(--ff-ui);
  font-size: 12px;
  color: var(--ink-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vp-booking-bar__btn {
  font-family: var(--ff-sc);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--or);
  color: #fff;
  border: none;
  padding: 0 28px;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
  flex-shrink: 0;
  height: 100%;
}
.vp-booking-bar__btn:hover { background: var(--or-light); }

/* ── Section baseline ────────────────────────────────────────────────────── */
.vp-baseline {
  background: var(--gris-perle);
  padding: 60px var(--pad-h);
  text-align: center;
  border-bottom: 1px solid var(--rule);
}
.vp-baseline__h2 {
  font-family: var(--ff-sc);
  font-size: clamp(12px, 1.5vw, 15px);
  letter-spacing: 0.2em;
  color: var(--ink);
  font-weight: 300;
  line-height: 1.8;
  margin: 0 0 20px;
}
.vp-baseline__text {
  font-family: var(--ff-display);
  font-size: 15px;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto 28px;
  font-weight: 300;
}

/* ── Grille formules ─────────────────────────────────────────────────────── */
.vp-tastings {
  background: var(--ivoire);
  padding: 72px var(--pad-h);
  border-bottom: 1px solid var(--rule);
}
.vp-tastings__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 32px;
}
.vp-tastings__header-right {
  font-family: var(--ff-display);
  font-size: 15px;
  font-style: italic;
  color: var(--ink-soft);
  max-width: 360px;
  line-height: 1.7;
  font-weight: 300;
}
.vp-section__h2 {
  font-family: var(--ff-sc);
  font-size: clamp(20px, 2.6vw, 30px);
  letter-spacing: 0.12em;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.25;
  margin: 0;
}
.vp-section__h2 em {
  font-family: var(--ff-display);
  font-style: italic;
  letter-spacing: 0.04em;
}
.vp-tastings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--rule);
}
.vp-tcard {
  background: var(--blanc);
  padding: 36px 32px;
  transition: background var(--transition);
  cursor: default;
}
.vp-tcard:hover { background: var(--gris-perle); }
.vp-tcard__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}
.vp-tcard__num {
  font-family: var(--ff-display);
  font-size: 12px;
  font-style: italic;
  color: var(--ink-faint);
  letter-spacing: 0.1em;
}
.vp-tcard__price {
  font-family: var(--ff-sc);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--or);
  text-align: right;
}
.vp-tcard__title {
  font-family: var(--ff-sc);
  font-size: 16px;
  letter-spacing: 0.12em;
  color: var(--ink);
  margin: 0 0 12px;
  font-weight: 400;
  line-height: 1.3;
}
.vp-tcard__desc {
  font-family: var(--ff-display);
  font-size: 14px;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0 0 22px;
  font-weight: 300;
}
.vp-tcard__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.vp-tcard__guests {
  font-family: var(--ff-ui);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.vp-tcard__link {
  font-family: var(--ff-sc);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--or);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition), color var(--transition);
}
.vp-tcard__link:hover { gap: 10px; color: var(--bordeaux); }

/* Cards prestige (anthracite) */
.vp-tcard--prestige { background: var(--anthracite) !important; }
.vp-tcard--prestige:hover { background: #352F2A !important; }
.vp-tcard--prestige .vp-tcard__num   { color: rgba(255,255,255,0.22); }
.vp-tcard--prestige .vp-tcard__price { color: var(--or-pale); }
.vp-tcard--prestige .vp-tcard__title { color: #fff; }
.vp-tcard--prestige .vp-tcard__desc  { color: rgba(255,255,255,0.52); }
.vp-tcard--prestige .vp-tcard__footer{ border-color: rgba(255,255,255,0.1); }
.vp-tcard--prestige .vp-tcard__guests{ color: rgba(255,255,255,0.3); }
.vp-tcard--prestige .vp-tcard__link  { color: var(--or-pale); }

/* ── Section Bespoke ─────────────────────────────────────────────────────── */
.vp-bespoke {
  background: var(--gris-section);
  padding: 72px var(--pad-h);
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 60px;
  align-items: center;
}
.vp-bespoke__divider {
  background: var(--rule-or);
  align-self: stretch;
  width: 1px;
}
.vp-bespoke__h2 {
  font-family: var(--ff-sc);
  font-size: clamp(18px, 2.2vw, 26px);
  letter-spacing: 0.12em;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 16px;
}
.vp-bespoke__h2 em {
  font-family: var(--ff-display);
  font-style: italic;
  letter-spacing: 0.04em;
}
.vp-bespoke__desc {
  font-family: var(--ff-display);
  font-size: 15px;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.75;
  font-weight: 300;
  margin: 0 0 28px;
}
.vp-bespoke__items { display: flex; flex-direction: column; gap: 0; }
.vp-bespoke__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
}
.vp-bespoke__item:first-child { padding-top: 0; }
.vp-bespoke__item:last-child  { border-bottom: none; padding-bottom: 0; }
.vp-bespoke__item-num {
  font-family: var(--ff-display);
  font-size: 22px;
  font-style: italic;
  color: var(--or-pale);
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
  min-width: 28px;
}
.vp-bespoke__item-title {
  font-family: var(--ff-sc);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ink);
  margin-bottom: 4px;
  text-transform: uppercase;
}
.vp-bespoke__item-desc {
  font-family: var(--ff-display);
  font-size: 13px;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.65;
  font-weight: 300;
}

/* ── Section Réservation Xola ────────────────────────────────────────────── */
.vp-reservation {
  background: var(--blanc);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 360px 1fr;
}
.vp-reservation__left {
  padding: 64px 48px;
  border-right: 1px solid var(--rule);
  background: var(--ivoire);
}
.vp-reservation__right {
  padding: 48px;
}
.vp-reservation__h2 {
  font-family: var(--ff-sc);
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: 0.1em;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 14px;
}
.vp-reservation__h2 em {
  font-family: var(--ff-display);
  font-style: italic;
  letter-spacing: 0.04em;
}
.vp-reservation__desc {
  font-family: var(--ff-display);
  font-size: 14px;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0 0 36px;
  font-weight: 300;
}
.vp-reservation__infos { display: flex; flex-direction: column; }
.vp-reservation__info {
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
}
.vp-reservation__info-lbl {
  font-family: var(--ff-ui);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 4px;
}
.vp-reservation__info-val {
  font-family: var(--ff-ui);
  font-size: 12px;
  color: var(--ink-mid);
}

/* Xola iframe shell */
.xola-shell {
  border: 1px solid var(--rule-or);
  background: var(--gris-perle);
  height: 100%;
}
.xola-shell__header {
  padding: 13px 18px;
  border-bottom: 1px solid var(--rule);
  background: var(--blanc);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.xola-shell__label {
  font-family: var(--ff-sc);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.xola-shell__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--or);
  animation: xola-pulse 2.5s ease-in-out infinite;
}
@keyframes xola-pulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1;   }
}
.xola-shell iframe {
  width: 100%;
  min-height: 520px;
  border: none;
  display: block;
  background: #fff;
}

/* ── Section Contact ─────────────────────────────────────────────────────── */
.vp-contact {
  background: var(--ivoire);
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.vp-contact__left {
  padding: 64px var(--pad-h);
  border-right: 1px solid var(--rule);
}
.vp-contact__right {
  padding: 64px var(--pad-h);
  background: var(--gris-perle);
}
.vp-contact__h2 {
  font-family: var(--ff-sc);
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: 0.1em;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 14px;
}
.vp-contact__h2 em {
  font-family: var(--ff-display);
  font-style: italic;
  letter-spacing: 0.04em;
}
.vp-contact__sub {
  font-family: var(--ff-display);
  font-size: 14px;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0 0 36px;
  font-weight: 300;
}
.vp-contact__infos { display: flex; flex-direction: column; }
.vp-ci {
  padding: 13px 0;
  border-bottom: 1px solid var(--rule);
}
.vp-ci__lbl {
  font-family: var(--ff-ui);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 4px;
}
.vp-ci__val {
  font-family: var(--ff-ui);
  font-size: 12px;
  color: var(--ink-mid);
}
.vp-ci__val a { color: var(--ink-mid); text-decoration: none; }
.vp-ci__val a:hover { color: var(--or); }

/* ── Fluent Forms — styles sur-mesure ────────────────────────────────────── */
.fluentform .ff-el-input--label label,
.ff-el-input--label label {
  font-family: var(--ff-ui) !important;
  font-size: 9px !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: var(--ink-soft) !important;
  font-weight: 400 !important;
  margin-bottom: 6px !important;
}
.fluentform .ff-el-form-control,
.ff-el-form-control {
  background: var(--blanc) !important;
  border: 1px solid rgba(26,23,20,0.2) !important;
  color: var(--ink) !important;
  font-family: var(--ff-ui) !important;
  font-size: 13px !important;
  padding: 11px 13px !important;
  border-radius: 0 !important;
  transition: border-color var(--transition) !important;
  box-shadow: none !important;
}
.fluentform .ff-el-form-control:focus,
.ff-el-form-control:focus {
  border-color: var(--or) !important;
  outline: 2px solid var(--or) !important;
  outline-offset: 1px !important;
  box-shadow: none !important;
}
.fluentform .ff-el-form-control::placeholder { color: var(--ink-faint) !important; }
.fluentform .ff-btn-submit,
.ff-btn-submit {
  font-family: var(--ff-sc) !important;
  font-size: 10px !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  background: var(--or) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 14px 28px !important;
  width: 100% !important;
  transition: background var(--transition) !important;
  cursor: pointer !important;
}
.fluentform .ff-btn-submit:hover { background: var(--or-light) !important; }
.fluentform .ff-btn-submit:focus {
  outline: 3px solid var(--or) !important;
  outline-offset: 2px !important;
}
.ff-message-success { color: var(--or) !important; font-family: var(--ff-display) !important; font-style: italic !important; }
.ff-message-error   { color: var(--bordeaux) !important; }

/* ── Newsletter ──────────────────────────────────────────────────────────── */
.vp-newsletter {
  background: var(--or);
  padding: 30px var(--pad-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.vp-newsletter__text {
  font-family: var(--ff-sc);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #fff;
  font-weight: 300;
  white-space: nowrap;
}
.vp-newsletter__form {
  display: flex;
  gap: 0;
  flex: 1;
  max-width: 420px;
}
.vp-newsletter__input {
  flex: 1;
  border: none;
  background: rgba(255,255,255,0.22);
  color: #fff;
  font-family: var(--ff-ui);
  font-size: 13px;
  padding: 11px 16px;
  outline: none;
}
.vp-newsletter__input::placeholder { color: rgba(255,255,255,0.55); }
.vp-newsletter__input:focus {
  background: rgba(255,255,255,0.3);
  outline: 2px solid rgba(255,255,255,0.6);
  outline-offset: 1px;
}
.vp-newsletter__btn {
  background: #fff;
  color: var(--or);
  font-family: var(--ff-sc);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 11px 20px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
}
.vp-newsletter__btn:hover { background: var(--ivoire); }
.vp-newsletter__btn:focus { outline: 3px solid rgba(255,255,255,0.7); outline-offset: 2px; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.vp-footer {
  background: var(--anthracite);
}
.vp-footer__top {
  padding: 56px var(--pad-h) 44px;
  display: grid;
  grid-template-columns: 220px repeat(3, 1fr);
  gap: 48px;
  border-bottom: 1px solid var(--rule-white);
}
.vp-footer__brand-name {
  font-family: var(--ff-sc);
  font-size: 15px;
  letter-spacing: 0.22em;
  color: #fff;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 4px;
}
.vp-footer__brand-sub {
  font-family: var(--ff-sc);
  font-size: 9px;
  letter-spacing: 0.28em;
  color: var(--or-pale);
  font-weight: 300;
  margin-bottom: 14px;
}
.vp-footer__brand-rule {
  width: 32px;
  height: 1px;
  background: var(--or);
  margin-bottom: 16px;
}
.vp-footer__brand-desc {
  font-family: var(--ff-display);
  font-size: 13px;
  font-style: italic;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
  font-weight: 300;
}
.vp-footer__col-title {
  font-family: var(--ff-sc);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--or-pale);
  font-weight: 400;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule-white);
}
.vp-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 0;
  padding: 0;
}
.vp-footer__links li a {
  font-family: var(--ff-ui);
  font-size: 12px;
  color: rgba(255,255,255,0.42);
  text-decoration: none;
  transition: color var(--transition);
  letter-spacing: 0.04em;
}
.vp-footer__links li a:hover { color: rgba(255,255,255,0.8); }
.vp-footer__bottom {
  padding: 18px var(--pad-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.vp-footer__copy {
  font-family: var(--ff-ui);
  font-size: 11px;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.06em;
}
.vp-footer__legal {
  display: flex;
  gap: 20px;
}
.vp-footer__legal a {
  font-family: var(--ff-ui);
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  text-decoration: none;
  transition: color var(--transition);
}
.vp-footer__legal a:hover { color: rgba(255,255,255,0.65); }

/* ── Animations scroll ───────────────────────────────────────────────────── */
.vp-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.vp-reveal.is-visible {
  opacity: 1;
  transform: none;
}
.vp-reveal--delay-1 { transition-delay: 0.1s; }
.vp-reveal--delay-2 { transition-delay: 0.2s; }
.vp-reveal--delay-3 { transition-delay: 0.3s; }

/* ── Header scrollé ──────────────────────────────────────────────────────── */
.site-header.is-scrolled,
.wp-block-template-part[data-slug="header"].is-scrolled {
  box-shadow: 0 1px 12px rgba(26,23,20,0.08);
}

/* ── Gutenberg core overrides ────────────────────────────────────────────── */
.wp-block-cover { min-height: 580px !important; }
.wp-block-separator {
  border-color: var(--rule-or) !important;
  border-width: 1px !important;
  opacity: 1 !important;
}
.wp-block-image figcaption {
  font-family: var(--ff-display);
  font-size: 12px;
  font-style: italic;
  color: var(--ink-faint);
  text-align: center;
  margin-top: 8px;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  :root { --pad-h: 32px; }
  .vp-nav__logo { position: static; transform: none; }
  .vp-nav { justify-content: space-between; }
  .vp-reservation { grid-template-columns: 1fr; }
  .vp-reservation__left { border-right: none; border-bottom: 1px solid var(--rule); }
  .vp-tastings__header { flex-direction: column; align-items: flex-start; }
  .vp-footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  .vp-tastings-grid  { grid-template-columns: 1fr; }
  .vp-bespoke        { grid-template-columns: 1fr; }
  .vp-bespoke__divider { display: none; }
  .vp-contact        { grid-template-columns: 1fr; }
  .vp-contact__left  { border-right: none; border-bottom: 1px solid var(--rule); }
  .vp-booking-bar    { display: none; }
}
@media (max-width: 768px) {
  :root { --pad-h: 20px; }
  .vp-topbar         { display: none; }
  .vp-nav__links     { display: none; }
  .vp-nav            { height: 60px; }
  .vp-hero           { height: 480px; }
  .vp-hero__content  { padding: 0 24px; }
  .vp-tastings,
  .vp-bespoke,
  .vp-reservation__left,
  .vp-reservation__right,
  .vp-contact__left,
  .vp-contact__right { padding: 48px 20px; }
  .vp-newsletter     { flex-direction: column; align-items: flex-start; }
  .vp-newsletter__form { max-width: 100%; width: 100%; }
  .vp-footer__top    { grid-template-columns: 1fr; gap: 28px; }
  .vp-footer__bottom { flex-direction: column; align-items: flex-start; }
  .vp-footer__legal  { flex-wrap: wrap; gap: 12px; }
}
