/* ---------- Tokens ---------- */
:root {
  /* Three colors only: deep bordeaux, black, white */
  --bordeaux: #2a070a;          /* darker than before */
  --bordeaux-2: #3d0c11;        /* slightly lighter for layering */
  --bordeaux-line: #4a1418;     /* hairlines on dark bordeaux */
  --black: #050202;             /* page background */
  --black-2: #0a0606;           /* near-black surface */
  --white: #faf6f1;             /* warm white for cards */
  --white-2: #f0eae0;           /* second-tier white */
  --ink: #0a0606;               /* text on white */
  --ink-mute: #5a3a3a;          /* muted on white */
  --hair: #e7d9d2;              /* hairline on white */
  --hair-dark: rgba(250, 246, 241, 0.10);

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-pill: 999px;

  --shadow-card: 0 1px 2px rgba(0,0,0,0.20), 0 16px 40px rgba(0,0,0,0.25);

  --ff-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ff-mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--ff-body);
  color: var(--white);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
em { font-style: italic; }

h1, h2, h3 {
  font-family: var(--ff-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
p { text-wrap: pretty; }

#root {
  padding: clamp(8px, 1.6vw, 22px);
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: clamp(8px, 1.6vw, 22px);
  z-index: 30;
  margin-bottom: 16px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 22px;
  background: var(--white);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-card);
  max-width: 1320px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--bordeaux);
}
.brand-mark {
  color: var(--bordeaux);
  font-size: 20px;
}
.brand-mark.big { font-size: 28px; color: var(--white); }
.brand-word { font-weight: 400; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 14px;
  color: var(--bordeaux);
  font-weight: 500;
  opacity: 0.80;
  transition: opacity .15s;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-cta {
  background: var(--bordeaux);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: var(--r-pill);
  font-weight: 500;
  opacity: 1 !important;
}
.nav-cta:hover { background: var(--bordeaux-2); }
.nav-burger {
  display: none;
  background: none;
  border: 0;
  width: 36px;
  height: 36px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.nav-burger span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--bordeaux);
  margin: 0 auto;
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  font-weight: 500;
  font-size: 15px;
  font-family: var(--ff-body);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
  text-align: center;
}
.btn-primary {
  background: var(--white);
  color: var(--bordeaux);
  border-color: var(--white);
}
.btn-primary:hover { background: #fff; }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(250, 246, 241, 0.45);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(250, 246, 241, 0.06); }

/* Buttons sitting on white surfaces */
.btn-card {
  background: var(--bordeaux);
  color: var(--white);
  border-color: var(--bordeaux);
  padding: 12px 22px;
  font-size: 14px;
}
.btn-card:hover { background: var(--bordeaux-2); border-color: var(--bordeaux-2); }
.btn-ghost-dark {
  background: transparent;
  color: var(--bordeaux);
  border-color: var(--hair);
}
.btn-ghost-dark:hover { background: var(--white-2); border-color: var(--bordeaux); }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  background: var(--bordeaux);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: clamp(40px, 6vw, 80px);
  position: relative;
  overflow: hidden;
  max-width: 1320px;
  margin: 0 auto;
}
.hero::before {
  content: '';
  position: absolute;
  width: 580px; height: 580px;
  right: -200px; top: -180px;
  border-radius: 50%;
  border: 1px solid var(--hair-dark);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  position: relative;
}

/* ---------- Hero (centered variant) ---------- */
.hero-center {
  padding: clamp(56px, 8vw, 120px) clamp(28px, 6vw, 80px) clamp(48px, 5vw, 72px);
  text-align: center;
}
.hero-center::after {
  content: '';
  position: absolute;
  width: 720px; height: 720px;
  left: -260px; bottom: -360px;
  border-radius: 50%;
  border: 1px solid var(--hair-dark);
  pointer-events: none;
}
.hero-inner-center {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-inner-center .hero-pill { margin-bottom: 36px; }
.hero-title-center {
  font-size: clamp(36px, 6vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2px, 0.6vw, 8px);
  padding-bottom: 28px;
  position: relative;
  margin-bottom: 28px;
}
.hero-title-center::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 1px;
  background: rgba(250, 246, 241, 0.35);
}
.hero-line1 {
  font-size: 0.4em;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-family: var(--ff-body);
  font-weight: 500;
  color: rgba(250, 246, 241, 0.68);
  display: block;
}
.hero-line2 {
  font-style: italic;
  font-size: 1em;
  letter-spacing: -0.04em;
  display: block;
  line-height: 1;
}
.hero-center .hero-sub {
  margin: 0 auto;
  max-width: 560px;
  text-align: center;
  font-size: clamp(15px, 1.4vw, 18px);
}
.hero-signature {
  margin-top: 28px;
  max-width: 580px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-signature p {
  margin: 0;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
  color: rgba(250, 246, 241, 0.78);
  letter-spacing: -0.005em;
}
.hero-signature p em {
  font-style: italic;
  color: var(--white);
  font-weight: 500;
  border-bottom: 1px solid var(--hair-dark);
}
.hero-center .hero-cta {
  margin-top: 36px;
  justify-content: center;
}
.hero-center .hero-ribbon { justify-content: center; }
.hero-text {}
.hero-pill {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(250, 246, 241, 0.08);
  border: 1px solid var(--hair-dark);
  border-radius: var(--r-pill);
  font-size: 13px;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.hero-title {
  font-size: clamp(40px, 6.6vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}
.hero-title em {
  font-style: italic;
  display: block;
}
.hero-sub {
  margin: 28px 0 0;
  max-width: 460px;
  font-size: 17px;
  color: rgba(250, 246, 241, 0.78);
}
.hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-photo {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--black-2);
  position: relative;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.6);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.12) saturate(1.18) brightness(1.04) sepia(0.04);
}
.hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 45%, transparent 35%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}

.hero-ribbon {
  margin-top: 56px;
  padding: 20px 0 4px;
  border-top: 1px solid var(--hair-dark);
  font-family: var(--ff-display);
  font-size: 18px;
  color: rgba(250, 246, 241, 0.78);
  letter-spacing: -0.01em;
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  font-style: italic;
  position: relative;
}
.hero-ribbon span { color: var(--white); font-style: normal; opacity: 0.5; }

/* ---------- Promise ---------- */
.promise {
  background: var(--bordeaux-2);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: clamp(56px, 9vw, 120px) 24px;
  text-align: center;
  margin: 16px auto 0;
  max-width: 1320px;
  position: relative;
  overflow: hidden;
}
.promise::before {
  content: '⚜';
  position: absolute;
  font-size: 480px;
  color: rgba(250, 246, 241, 0.035);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ff-display);
  pointer-events: none;
}
.promise-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.promise h2 {
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.promise h2 em { color: var(--white); }
.promise p {
  font-size: 17px;
  color: rgba(250, 246, 241, 0.82);
  margin: 0 auto 16px;
  max-width: 520px;
}
.promise p em { color: var(--white); font-weight: 500; }
.promise .btn { margin-top: 24px; }

/* ---------- Eyebrows ---------- */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bordeaux);
  padding: 6px 14px;
  border: 1px solid var(--hair);
  border-radius: var(--r-pill);
  margin-bottom: 22px;
  font-weight: 500;
}
.eyebrow.light {
  color: var(--white);
  border-color: var(--hair-dark);
}

/* ---------- Page heads ---------- */
.page-head {
  background: var(--bordeaux);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: clamp(56px, 8vw, 112px) clamp(24px, 5vw, 80px);
  text-align: center;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: '';
  position: absolute;
  width: 480px; height: 480px;
  right: -160px; bottom: -240px;
  border-radius: 50%;
  border: 1px solid var(--hair-dark);
  pointer-events: none;
}
.page-head h1 {
  font-size: clamp(44px, 7vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}
.page-head h1 em { color: var(--white); }
.page-head p {
  margin: 24px auto 0;
  max-width: 560px;
  color: rgba(250, 246, 241, 0.78);
  font-size: 17px;
}

/* ---------- Menus ---------- */
.menus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1320px;
  margin: 16px auto 0;
}
.menu-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .15s;
  display: flex;
  flex-direction: column;
}
.menu-card:hover { transform: translateY(-2px); }
.menu-card.is-open { transform: none; }

.menu-card-body {
  padding: clamp(32px, 4vw, 48px) clamp(28px, 3.5vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
}
.menu-badge {
  background: var(--bordeaux);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--r-pill);
  font-family: var(--ff-display);
  font-size: 18px;
  letter-spacing: -0.01em;
}
.menu-card h2 {
  font-size: clamp(28px, 2.6vw, 36px);
  color: var(--bordeaux);
  line-height: 1.1;
  margin-top: 4px;
}
.menu-sub {
  font-size: 13px;
  color: var(--ink-mute);
  margin: 0;
  font-style: italic;
  letter-spacing: 0.01em;
}
.menu-card-body .btn-card {
  margin-top: 12px;
  align-self: stretch;
}

.menu-detail {
  background: var(--bordeaux);
  color: var(--white);
  padding: clamp(28px, 4vw, 40px);
  border-top: 1px solid var(--hair-dark);
}
.menu-detail-head { margin-bottom: 18px; }
.menu-detail-head .eyebrow {
  color: var(--white);
  border-color: var(--hair-dark);
  margin-bottom: 14px;
}
.menu-detail-head h3 {
  font-size: 26px;
  color: var(--white);
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.menu-detail-price {
  font-family: var(--ff-display);
  font-size: 16px;
  color: rgba(250, 246, 241, 0.6);
  font-style: italic;
}
.menu-detail-placeholder {
  padding: 28px;
  border: 1px dashed var(--hair-dark);
  border-radius: var(--r-md);
  text-align: center;
  background: rgba(0,0,0,0.18);
}
.menu-detail-placeholder p {
  margin: 0;
  font-style: italic;
  color: rgba(250, 246, 241, 0.65);
  font-family: var(--ff-display);
  font-size: 17px;
}

.menus-foot {
  max-width: 1320px;
  margin: 16px auto 0;
  padding: 24px 32px;
  text-align: center;
  font-size: 13px;
  color: rgba(250, 246, 241, 0.55);
  font-style: italic;
}

/* ---------- Reservation ---------- */
.reserve-page { }
.reserve-wrap {
  max-width: 720px;
  margin: 16px auto 0;
  padding: 0 0;
}
.reserve-form {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 48px);
  color: var(--ink);
}
.field {
  display: flex;
  flex-direction: column;
}
.reserve-form > .field + .field,
.reserve-form > .field-row + .field,
.reserve-form > .field-row + .field-row,
.reserve-form > .field + .field-row { margin-top: 18px; }
.field-row {
  display: grid;
  gap: 14px;
}
.field-row.two { grid-template-columns: 1fr 1fr; }
.field-row.three { grid-template-columns: 1.1fr 1.4fr 1fr; }
.field label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bordeaux);
  margin-bottom: 8px;
  font-weight: 500;
}
.field label .opt {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--ink-mute);
  font-size: 12px;
}
.field input,
.field select,
.field textarea {
  font-family: var(--ff-body);
  font-size: 15px;
  padding: 14px 16px;
  background: var(--white-2);
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  color: var(--ink);
  transition: border .15s, box-shadow .15s, background .15s;
  width: 100%;
  height: 50px;
}
.field textarea { height: auto; min-height: 90px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--bordeaux);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(42, 7, 10, 0.10);
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: #9b1a1a; }
.err { color: #9b1a1a; font-size: 12px; margin-top: 6px; }

.stepper {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--white-2);
  height: 50px;
}
.stepper button {
  background: transparent;
  border: 0;
  font-size: 18px;
  cursor: pointer;
  color: var(--bordeaux);
  font-weight: 600;
}
.stepper button:hover { background: var(--hair); }
.stepper input {
  border: 0 !important;
  border-radius: 0 !important;
  text-align: center;
  background: transparent !important;
  box-shadow: none !important;
  height: 100% !important;
  -moz-appearance: textfield;
  font-weight: 500;
}
.stepper input::-webkit-outer-spin-button,
.stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.form-actions {
  margin-top: 28px;
}

/* Confirmation */
.confirm {
  max-width: 1320px;
  margin: 0 auto;
}
.confirm-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: clamp(56px, 8vw, 96px) clamp(24px, 5vw, 80px);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  color: var(--ink);
}
.confirm-tick {
  width: 72px; height: 72px;
  background: var(--bordeaux);
  color: var(--white);
  font-size: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.confirm-card h1 {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--bordeaux);
  line-height: 1.05;
}
.confirm-line {
  margin-top: 16px !important;
  font-family: var(--ff-display);
  font-size: 22px;
  color: var(--bordeaux);
}
.confirm-card p {
  color: var(--ink-mute);
  font-size: 16px;
  margin-top: 14px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.confirm-id {
  font-family: var(--ff-mono);
  font-size: 12px !important;
  color: var(--ink-mute) !important;
}
.confirm-id code { font-family: inherit; }
.confirm-actions {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.confirm-actions .btn-primary {
  background: var(--bordeaux);
  color: var(--white);
  border-color: var(--bordeaux);
}
.confirm-actions .btn-primary:hover { background: var(--bordeaux-2); }

.dev-note {
  max-width: 720px;
  margin: 16px auto 0;
  background: var(--bordeaux-2);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: 20px 28px;
}
.dev-note summary {
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 246, 241, 0.75);
  font-weight: 500;
}
.dev-note-body { margin-top: 16px; font-size: 14px; color: rgba(250, 246, 241, 0.78); }
.dev-note-body code { background: rgba(0,0,0,0.4); padding: 1px 6px; border-radius: 4px; font-family: var(--ff-mono); font-size: 12px; }
.dev-note-body pre {
  background: var(--black-2);
  color: var(--white);
  padding: 16px;
  border-radius: var(--r-md);
  overflow-x: auto;
  font-family: var(--ff-mono);
  font-size: 12px;
  line-height: 1.55;
}
.dev-note-body ol { padding-left: 20px; margin: 8px 0 16px; }
.dev-note-body ol li { margin-bottom: 6px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1320px;
  margin: 16px auto 0;
}
.contact-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 48px);
  color: var(--ink);
  transition: transform .15s;
}
a.contact-card:hover { transform: translateY(-3px); }
.contact-card .eyebrow { margin-bottom: 18px; }
.contact-card strong {
  display: block;
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 32px);
  color: var(--bordeaux);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.contact-card p {
  margin: 16px 0 0;
  font-size: 14px;
  color: var(--ink-mute);
}
.contact-cta {
  background: var(--bordeaux);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: clamp(56px, 8vw, 96px) 24px;
  margin: 16px auto 0;
  text-align: center;
  max-width: 1320px;
}
.contact-cta h2 {
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 28px;
  line-height: 1.05;
}

/* ---------- Footer ---------- */
.footer {
  margin: 16px auto 0;
  background: var(--black-2);
  color: rgba(250, 246, 241, 0.72);
  border-radius: var(--r-lg);
  padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 80px) 24px;
  max-width: 1320px;
  border: 1px solid var(--hair-dark);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand h3 {
  font-size: 26px;
  color: var(--white);
  margin: 8px 0 12px;
}
.footer-brand p {
  font-size: 14px;
  margin: 0;
  max-width: 30ch;
}
.footer-h {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a, .footer a {
  font-size: 14px;
  color: rgba(250, 246, 241, 0.72);
  transition: color .15s;
}
.footer a:hover { color: var(--white); }
.footer p { font-size: 14px; margin: 0 0 8px; }
.footer-base {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--hair-dark);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 246, 241, 0.45);
}

/* ---------- Tweaks panel ---------- */
.tweaks-panel {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 340px;
  background: var(--bordeaux);
  color: var(--white);
  border-radius: var(--r-md);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  z-index: 100;
  font-size: 13px;
  border: 1px solid var(--hair-dark);
}
.tweaks-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--hair-dark);
}
.tweaks-head button {
  background: none;
  border: 0;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
}
.tweaks-body { padding: 18px; }
.tweaks-body label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 246, 241, 0.78);
  margin-bottom: 8px;
}
.tweaks-body input[type="url"] {
  width: 100%;
  padding: 10px 12px;
  background: var(--black-2);
  border: 1px solid var(--hair-dark);
  color: var(--white);
  border-radius: var(--r-sm);
  font-family: var(--ff-mono);
  font-size: 12px;
}
.tweaks-help {
  margin: 8px 0 0;
  font-size: 11px;
  color: rgba(250, 246, 241, 0.6);
}

/* ---------- Mobile ---------- */
@media (max-width: 980px) {
  .menus-grid { grid-template-columns: repeat(2, 1fr); }
  .menus-grid.extras { grid-template-columns: repeat(2, 1fr); max-width: none; }
}

@media (max-width: 880px) {
  .nav-burger { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 8px; right: 8px;
    background: var(--white);
    border-radius: var(--r-md);
    flex-direction: column;
    padding: 16px;
    margin-top: 8px;
    gap: 14px;
    box-shadow: var(--shadow-card);
    display: none;
    align-items: stretch;
  }
  .nav-links a { padding: 6px 4px; }
  .nav-links.open { display: flex; }
  .nav-cta { width: 100%; text-align: center; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-photo { aspect-ratio: 4/5; order: 2; }
  .hero-ribbon { font-size: 14px; gap: 14px; padding: 16px 0 4px; }

  .menus-grid { grid-template-columns: 1fr; }

  .field-row.two, .field-row.three { grid-template-columns: 1fr; gap: 18px; }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-base { flex-direction: column; gap: 8px; text-align: center; }

  .tweaks-panel { left: 12px; right: 12px; bottom: 12px; width: auto; }

  h1, h2 { letter-spacing: -0.025em; }
}

@media (max-width: 520px) {
  .hero { padding: 36px 22px; border-radius: 14px; }
  .promise, .page-head, .menus-foot, .reserve-form, .dev-note, .contact-cta, .footer {
    border-radius: 14px;
  }
  .nav-inner { padding: 10px 14px; }
  .brand-word { display: none; }
  .brand-mark { font-size: 26px; }
  .footer-inner { grid-template-columns: 1fr; }
  .reserve-form { padding: 24px 20px; }
  .hero-pill { margin-bottom: 20px; }
}


/* =====================================================================
   New components: menus head, overlay, lang switcher/banner, pickers
   ===================================================================== */

/* Menus head + top CTA */
.menus-head h1 {
  font-size: clamp(40px, 6vw, 76px);
}
.menus-head p {
  max-width: 540px;
}
.menus-head-cta {
  margin-top: clamp(28px, 4vw, 40px);
  display: flex;
  justify-content: center;
}
.menus-head-btn {
  background: var(--white);
  color: var(--bordeaux);
  border-color: var(--white);
  padding: 18px 40px;
  font-size: 17px;
  font-weight: 500;
  box-shadow: 0 20px 40px -16px rgba(0,0,0,0.45);
}
.menus-head-btn:hover { background: #fff; transform: translateY(-1px); }
.menus-head-btn svg { transition: transform .15s; }
.menus-head-btn:hover svg { transform: translateX(2px); }
@media (max-width: 520px) {
  .menus-head-btn { width: 100%; padding: 16px 24px; }
}

/* Bandeau rouge réduit sur mobile pour la page Menus */
@media (max-width: 720px) {
  .menus-head {
    padding: 32px 22px 28px;
    border-radius: 14px;
  }
  .menus-head h1 {
    font-size: clamp(24px, 6.5vw, 32px);
    line-height: 1.15;
    letter-spacing: -0.015em;
  }
  .menus-head p {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.5;
  }
}

/* Extras row: 2 cards centered below the 3 featured */
.menus-grid.extras {
  grid-template-columns: repeat(2, 1fr);
  max-width: calc((1320px - 16px) * 2 / 3);
  margin-left: auto;
  margin-right: auto;
}

/* Menu overlay (full-page modal inside the page) */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 2vw, 32px);
  animation: overlay-fade .25s ease-out;
}
@keyframes overlay-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.menu-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 2, 2, 0.78);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.menu-overlay-panel {
  position: relative;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--r-lg);
  width: 100%;
  max-width: 980px;
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 72px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  animation: overlay-rise .3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
@keyframes overlay-rise {
  from { transform: translateY(20px) scale(0.98); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.menu-overlay-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bordeaux);
  color: var(--white);
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, transform .15s;
}
.menu-overlay-close:hover {
  background: var(--bordeaux-2);
  transform: rotate(90deg);
}
.menu-overlay-head {
  padding-right: 56px;
  margin-bottom: 32px;
}
.menu-overlay-badge {
  display: inline-block;
  background: var(--bordeaux);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--r-pill);
  font-family: var(--ff-display);
  font-size: 18px;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.menu-overlay-head h2 {
  font-size: clamp(36px, 5vw, 60px);
  color: var(--bordeaux);
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.menu-overlay-sub {
  margin: 12px 0 0;
  font-size: 15px;
  color: var(--ink-mute);
  font-style: italic;
  font-family: var(--ff-display);
}
.menu-overlay-body { min-height: 240px; }
.menu-overlay-placeholder {
  padding: 64px 24px;
  border: 1px dashed var(--hair);
  border-radius: var(--r-md);
  text-align: center;
  background: var(--white-2);
  color: var(--ink-mute);
}
.menu-overlay-placeholder svg {
  color: var(--bordeaux);
  margin-bottom: 16px;
}
.menu-overlay-placeholder p {
  margin: 0;
  font-style: italic;
  font-family: var(--ff-display);
  font-size: 17px;
  color: var(--ink-mute);
}

/* Menu overlay: reserve CTA at bottom */
.menu-overlay-reserve {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--hair);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.menu-overlay-reserve p {
  margin: 0;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 16px;
  color: var(--bordeaux);
  letter-spacing: -0.005em;
}
.menu-overlay-reserve .btn-primary {
  background: var(--bordeaux);
  color: var(--white);
  border-color: var(--bordeaux);
  padding: 16px 36px;
  font-size: 16px;
  box-shadow: 0 16px 32px -16px rgba(0,0,0,0.35);
}
.menu-overlay-reserve .btn-primary:hover { background: var(--bordeaux-2); border-color: var(--bordeaux-2); }
.menu-overlay-reserve .btn-primary svg { transition: transform .15s; }
.menu-overlay-reserve .btn-primary:hover svg { transform: translateX(2px); }

/* ---------- Language switcher ---------- */
.lang-switcher {
  position: relative;
  margin-left: 4px;
}
.lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  background: transparent;
  border: 1px solid var(--hair);
  color: var(--bordeaux);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--ff-body);
  letter-spacing: 0.04em;
  transition: background .15s;
}
.lang-trigger:hover { background: var(--white-2); }
.lang-trigger svg { opacity: 0.7; }
.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  list-style: none;
  padding: 6px;
  margin: 0;
  min-width: 200px;
  z-index: 50;
  border: 1px solid var(--hair);
}
.lang-menu li { margin: 0; }
.lang-menu button {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  background: transparent;
  border: 0;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}
.lang-menu button:hover { background: var(--white-2); }
.lang-menu button.is-current { background: var(--bordeaux); color: var(--white); }
.lang-menu button.is-current:hover { background: var(--bordeaux-2); }
.lang-code {
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 600;
  opacity: 0.7;
  min-width: 24px;
}
.lang-menu button.is-current .lang-code { opacity: 1; }

/* ---------- Language banner ---------- */
.lang-banner {
  background: var(--bordeaux);
  color: var(--white);
  border-radius: var(--r-md);
  padding: 10px 18px;
  margin: 0 auto 12px;
  max-width: 1320px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
}
.lang-banner-close {
  background: rgba(250, 246, 241, 0.15);
  border: 0;
  color: var(--white);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
}
.lang-banner-close:hover { background: rgba(250, 246, 241, 0.25); }

/* ---------- Date picker ---------- */
.datepicker, .timepicker {
  position: relative;
}
.datepicker-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 50px;
  padding: 0 16px;
  background: var(--white-2);
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  color: var(--ink);
  cursor: pointer;
  font-family: var(--ff-body);
  font-size: 15px;
  text-align: left;
  transition: border .15s, background .15s, box-shadow .15s;
}
.datepicker-trigger:hover { background: #fff; }
.datepicker.is-open .datepicker-trigger,
.timepicker.is-open .datepicker-trigger {
  border-color: var(--bordeaux);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(42, 7, 10, 0.10);
}
.datepicker.has-error .datepicker-trigger { border-color: #9b1a1a; }

.dp-icon { color: var(--bordeaux); flex-shrink: 0; }
.dp-value { flex: 1; font-weight: 500; }
.dp-value.placeholder { color: var(--ink-mute); font-weight: 400; }
.dp-caret { color: var(--bordeaux); flex-shrink: 0; opacity: 0.6; }

.datepicker-pop {
  position: absolute;
  z-index: 50;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  border: 1px solid var(--hair);
  padding: 14px;
  width: 320px;
  max-width: calc(100vw - 24px);
}
.datepicker-pop.above {
  top: auto;
  bottom: calc(100% + 8px);
}
.dp-chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 12px;
}
.dp-chips button {
  background: var(--white-2);
  border: 1px solid var(--hair);
  color: var(--bordeaux);
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 4px;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
}
.dp-chips button:hover {
  background: var(--bordeaux);
  border-color: var(--bordeaux);
  color: var(--white);
}
.dp-month-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  padding: 4px;
}
.dp-month-nav strong {
  font-family: var(--ff-display);
  font-weight: 400;
  color: var(--bordeaux);
  font-size: 16px;
  letter-spacing: -0.01em;
}
.dp-month-nav button {
  width: 32px;
  height: 32px;
  background: transparent;
  border: 0;
  border-radius: 50%;
  color: var(--bordeaux);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.dp-month-nav button:hover { background: var(--white-2); }
.dp-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 4px;
}
.dp-weekdays span {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  padding: 4px 0;
  text-transform: uppercase;
  font-weight: 500;
}
.dp-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.dp-cell {
  aspect-ratio: 1;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background .12s, color .12s;
}
.dp-cell:hover:not(:disabled) { background: var(--white-2); }
.dp-cell.outside { color: var(--hair); }
.dp-cell.past { color: var(--hair); cursor: not-allowed; }
.dp-cell.today { box-shadow: inset 0 0 0 1px var(--bordeaux); }
.dp-cell.selected,
.dp-cell.selected:hover {
  background: var(--bordeaux);
  color: var(--white);
}

/* ---------- Time picker ---------- */
.timepicker-pop {
  position: absolute;
  z-index: 50;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  border: 1px solid var(--hair);
  padding: 14px;
  min-width: 280px;
}
.tp-section + .tp-section { margin-top: 14px; }
.tp-h {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bordeaux);
  font-weight: 500;
  margin-bottom: 8px;
}
.tp-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
}
.tp-grid button {
  background: var(--white-2);
  border: 1px solid var(--hair);
  color: var(--bordeaux);
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 0;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background .12s, border-color .12s, color .12s;
}
.tp-grid button:hover {
  background: var(--bordeaux);
  border-color: var(--bordeaux);
  color: var(--white);
}
.tp-grid button.is-sel {
  background: var(--bordeaux);
  border-color: var(--bordeaux);
  color: var(--white);
}
/* Créneau indisponible (à moins de 30 min de l'ouverture) : grisé, non cliquable */
.tp-grid button.is-disabled,
.tp-grid button:disabled {
  background: var(--white-2);
  border-color: var(--hair);
  color: rgba(42, 7, 10, 0.28);
  cursor: not-allowed;
  text-decoration: line-through;
  opacity: 0.65;
}
.tp-grid button.is-disabled:hover,
.tp-grid button:disabled:hover {
  background: var(--white-2);
  border-color: var(--hair);
  color: rgba(42, 7, 10, 0.28);
}
.tp-section.is-late .tp-h { opacity: 0.55; }

/* Reserve grid tweak for 3 col layout with pickers (desktop only — mobile collapses to 1 col, see @media 880px) */
@media (min-width: 881px) {
  .field-row.three {
    grid-template-columns: minmax(120px, 0.9fr) minmax(200px, 1.7fr) minmax(160px, 1.1fr);
    align-items: start;
  }
}

/* Mobile additions */
@media (max-width: 880px) {
  .lang-switcher { margin-left: 0; align-self: stretch; }
  .lang-trigger { width: 100%; justify-content: center; }
  .lang-menu { right: auto; left: 0; width: 100%; }

  .menu-overlay-panel { padding: 64px 22px 32px; border-radius: 14px; }
  .menu-overlay-close { top: 12px; right: 12px; }

  .menus-grid.extras { max-width: none; grid-template-columns: 1fr; }
  .datepicker-pop { left: auto; right: 0; }
  .field-row.three .datepicker-pop { left: 0; right: auto; }

  .timepicker-pop {
    min-width: 0;
    left: 0;
    right: 0;
    max-width: calc(100vw - 32px);
    padding: 12px;
  }
  .tp-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
  }
  .tp-grid button {
    padding: 12px 0;
    font-size: 13px;
    min-height: 42px;
  }
}


/* =====================================================================
   Updates: story band, menu doc layout, reserve meta list, single-card row
   ===================================================================== */

/* Story band (home) */
.story-band {
  background: var(--bordeaux-2);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: clamp(48px, 7vw, 96px) clamp(24px, 5vw, 80px);
  margin: 16px auto 0;
  max-width: 1320px;
}
.story-band-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.story-band-text .eyebrow,
.story-band-left .eyebrow {
  color: var(--white);
  border-color: var(--hair-dark);
}
.story-band-text h2 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.story-band-text h2 em { color: var(--white); }
.story-band-text p {
  font-size: 17px;
  color: rgba(250, 246, 241, 0.80);
  max-width: 48ch;
  margin: 0;
}
.story-band-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.story-band-stats li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(0,0,0,0.22);
  border: 1px solid var(--hair-dark);
  border-radius: var(--r-md);
}
.story-band-stats li span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 246, 241, 0.65);
  font-weight: 500;
}
.story-band-stats li strong {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(24px, 2.5vw, 34px);
  color: var(--white);
  letter-spacing: -0.02em;
}

@media (max-width: 880px) {
  .story-band-inner { grid-template-columns: 1fr; }
  .story-band-stats li { padding: 16px 18px; }
}

/* Story band: with-photo variant — text/stats column + photo */
.story-band-inner.has-photo {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  gap: clamp(28px, 4vw, 56px);
}
.story-band-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.story-band-left h2 { margin-bottom: 0; }
.story-band-left .story-band-stats { margin-top: 8px; }
.story-band-photo {
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--black-2);
  aspect-ratio: 4/5;
  position: relative;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.6);
}
.story-band-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.06) saturate(1.08) brightness(1.02);
}
.story-band-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(5,2,2,0.35));
  pointer-events: none;
}
@media (max-width: 880px) {
  .story-band-inner.has-photo { grid-template-columns: 1fr; }
  .story-band-photo { aspect-ratio: 4/3; order: -1; }
}

/* Single-card row (À la carte alone) */
.menus-grid.extras.single {
  grid-template-columns: minmax(0, calc((100% - 32px) / 3));
  justify-content: center;
  max-width: 1320px;
}
@media (max-width: 980px) {
  .menus-grid.extras.single { grid-template-columns: minmax(0, 50%); }
}
@media (max-width: 880px) {
  .menus-grid.extras.single { grid-template-columns: 1fr; }
}

/* ---------- Menu doc rendering (inside overlay) ---------- */
.menu-doc {
  padding-top: 8px;
}
.menu-doc-section + .menu-doc-section { margin-top: 36px; }
.menu-doc-section h3 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--bordeaux);
  letter-spacing: -0.01em;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--hair);
  margin-bottom: 18px;
}
.menu-doc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.menu-doc-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.4;
}
.menu-doc-name {
  flex: 0 1 auto;
  font-family: var(--ff-display);
  font-size: 17px;
  color: var(--bordeaux);
  letter-spacing: -0.005em;
}
.menu-doc-detail {
  font-family: var(--ff-body);
  font-size: 13px;
  font-style: italic;
  color: var(--ink-mute);
  letter-spacing: 0;
}
.menu-doc-supp {
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 500;
  color: #9b1a1a;
  background: rgba(155, 26, 26, 0.08);
  padding: 2px 8px;
  border-radius: var(--r-pill);
  margin-left: 6px;
}
.menu-doc-dots {
  flex: 1;
  border-bottom: 1px dotted var(--hair);
  transform: translateY(-3px);
  min-width: 24px;
}
.menu-doc-price {
  font-family: var(--ff-mono);
  font-size: 13px;
  color: var(--bordeaux);
  font-weight: 500;
  white-space: nowrap;
}
.menu-doc-notes {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--hair);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.menu-doc-notes p {
  margin: 0;
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.5;
}
.menu-doc-notes p strong {
  color: var(--bordeaux);
  font-weight: 600;
}

@media (max-width: 600px) {
  /* Alignement carte: grille 2 colonnes (nom + prix), gère bien les détails et suppléments */
  .menu-doc-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 14px;
    row-gap: 2px;
    align-items: baseline;
  }
  .menu-doc-name {
    grid-column: 1;
    min-width: 0;
  }
  .menu-doc-dots { display: none; }
  .menu-doc-price {
    grid-column: 2;
    align-self: baseline;
    text-align: right;
    flex-shrink: 0;
  }
}

/* ---------- Reserve meta list (SMS + cancel) ---------- */
.reserve-meta-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.reserve-meta-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white-2);
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  color: var(--ink-mute);
  font-size: 13px;
  line-height: 1.45;
}
.reserve-meta-list svg {
  color: var(--bordeaux);
  flex-shrink: 0;
  margin-top: 1px;
}

/* Confirmation extra notes */
.confirm-notes {
  margin-top: 28px;
  padding: 20px;
  background: var(--white-2);
  border-radius: var(--r-md);
  border: 1px solid var(--hair);
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.confirm-notes p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 !important;
  max-width: none !important;
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.45;
}
.confirm-notes p svg {
  color: var(--bordeaux);
  flex-shrink: 0;
  margin-top: 2px;
}

/* =====================================================================
   Salle band — full-bleed editorial photo on home
   ===================================================================== */
.salle-band {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 16px;
  max-width: 1320px;
  margin: 16px auto 0;
}
.salle-photo {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--black-2);
  aspect-ratio: 3/4;
  max-height: 560px;
  align-self: center;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.6);
  position: relative;
}
.salle-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.salle-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(5,2,2,0.45));
  pointer-events: none;
}
.salle-text {
  background: var(--bordeaux);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: clamp(40px, 5vw, 72px) clamp(28px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}
.salle-text::before {
  content: '';
  position: absolute;
  width: 360px; height: 360px;
  left: -160px; bottom: -160px;
  border-radius: 50%;
  border: 1px solid var(--hair-dark);
  pointer-events: none;
}
.salle-text h2,
.salle-text p,
.salle-text .salle-points { align-self: stretch; width: 100%; }
.salle-text h2 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.salle-text h2 em { color: var(--white); }
.salle-text p {
  font-size: 16px;
  color: rgba(250, 246, 241, 0.80);
  margin: 0 0 24px;
  max-width: 46ch;
}
.salle-points {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.salle-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(250, 246, 241, 0.85);
  font-family: var(--ff-display);
  font-style: italic;
  letter-spacing: -0.005em;
}
.salle-points svg { color: var(--white); opacity: 0.75; flex-shrink: 0; }

@media (max-width: 880px) {
  .salle-band { grid-template-columns: 1fr; }
  .salle-photo { aspect-ratio: 4/3; max-height: 440px; }
}

/* =====================================================================
   Menus → Reservation CTA band
   ===================================================================== */
.menus-reserve-cta {
  max-width: 1320px;
  margin: 16px auto 0;
  background: var(--bordeaux);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: clamp(40px, 5vw, 64px) clamp(28px, 5vw, 80px);
  position: relative;
  overflow: hidden;
}
.menus-reserve-cta::before {
  content: '';
  position: absolute;
  width: 480px; height: 480px;
  right: -200px; top: -200px;
  border-radius: 50%;
  border: 1px solid var(--hair-dark);
  pointer-events: none;
}
.menus-reserve-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  flex-wrap: wrap;
}
.menus-reserve-cta-text { flex: 1 1 320px; min-width: 0; }
.menus-reserve-cta-text .eyebrow { margin-bottom: 16px; }
.menus-reserve-cta-text h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.menus-reserve-cta-text p {
  font-size: 15px;
  color: rgba(250, 246, 241, 0.78);
  margin: 0;
  max-width: 42ch;
}
.menus-reserve-cta-btn {
  flex-shrink: 0;
  padding: 18px 36px;
  font-size: 16px;
}
.menus-reserve-cta-btn svg { transition: transform .15s; }
.menus-reserve-cta-btn:hover svg { transform: translateX(2px); }

@media (max-width: 720px) {
  .menus-reserve-cta-btn { width: 100%; }
}

/* =====================================================================
   Reservation closure banners
   ===================================================================== */
.reserve-banner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--r-md);
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.45;
}
.reserve-banner svg { flex-shrink: 0; margin-top: 1px; }
.reserve-banner.alert {
  background: rgba(155, 26, 26, 0.16);
  border: 1px solid rgba(155, 26, 26, 0.5);
  color: var(--white);
}
.reserve-banner.alert svg { color: #ffb4b4; }
.reserve-banner.notice {
  background: rgba(250, 246, 241, 0.07);
  border: 1px solid var(--hair-dark);
  color: rgba(250, 246, 241, 0.92);
}
.reserve-banner.notice svg { color: rgba(250, 246, 241, 0.7); }

/* =====================================================================
   Closure states on calendar
   ===================================================================== */
.dp-cell.closed {
  position: relative;
  color: var(--hair);
  cursor: not-allowed;
  background: var(--white-2);
  text-decoration: line-through;
}
.dp-cell.closed::after {
  content: '';
  position: absolute;
  inset: auto 6px 4px;
  height: 2px;
  background: #9b1a1a;
  opacity: 0.55;
  border-radius: 2px;
  display: none;
}
.dp-cell.partial {
  box-shadow: inset 0 0 0 1px rgba(155, 26, 26, 0.35);
  background: rgba(155, 26, 26, 0.06);
}
.dp-cell.partial.selected { box-shadow: none; }

/* TimePicker — closed section appearance */
.tp-section.is-closed {
  opacity: 0.7;
  padding: 8px;
  background: var(--white-2);
  border-radius: var(--r-md);
}
.tp-h {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.tp-closed-tag {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: #9b1a1a;
  color: var(--white);
  padding: 3px 8px;
  border-radius: var(--r-pill);
  font-weight: 600;
}
.tp-closed-msg {
  margin: 4px 0 0;
  font-size: 12px;
  font-style: italic;
  color: var(--ink-mute);
  padding: 8px 4px;
}

/* Two-button chips row on calendar */
.dp-chips.two { grid-template-columns: repeat(2, 1fr); }
.dp-chips button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  text-decoration: line-through;
}
.dp-chips button:disabled:hover {
  background: var(--white-2);
  border-color: var(--hair);
  color: var(--bordeaux);
}

/* =====================================================================
   Reservation: smaller header, prominent form, beefy submit
   ===================================================================== */
.reserve-head { padding: clamp(36px, 5vw, 64px) clamp(24px, 5vw, 80px); }
.reserve-head h1 {
  font-size: clamp(32px, 4.5vw, 56px);
}
.reserve-head p {
  margin-top: 16px;
  font-size: 15px;
}
.reserve-wrap { margin-top: 12px; }
.reserve-form {
  box-shadow: 0 24px 60px -28px rgba(0,0,0,0.55), 0 0 0 1px rgba(250,246,241,0.06);
}
.reserve-form .btn-primary {
  background: var(--bordeaux);
  color: var(--white);
  border-color: var(--bordeaux);
  padding: 18px 32px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 18px 36px -16px rgba(42, 7, 10, 0.55);
  transition: background .15s, transform .12s, box-shadow .15s;
}
.reserve-form .btn-primary:hover:not(:disabled) {
  background: var(--bordeaux-2);
  border-color: var(--bordeaux-2);
  transform: translateY(-1px);
  box-shadow: 0 22px 40px -18px rgba(42, 7, 10, 0.65);
}
.reserve-form .btn-primary:disabled {
  background: var(--bordeaux);
  border-color: var(--bordeaux);
  opacity: 0.7;
}
@media (max-width: 520px) {
  .reserve-head { padding: 28px 20px; }
  .reserve-head h1 { font-size: clamp(28px, 7vw, 36px); }
  .reserve-head p { font-size: 14px; }
  .reserve-wrap { margin-top: 8px; }
  .reserve-form { padding: 22px 18px; }
  .reserve-form .btn-primary { padding: 16px 24px; font-size: 16px; }
}

/* =====================================================================
   Footer admin link
   ===================================================================== */
.footer-admin-link {
  color: rgba(250, 246, 241, 0.45) !important;
  font-size: 12px !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-left: 1px solid var(--hair-dark);
  padding-left: 16px;
  transition: color .15s;
}
.footer-admin-link:hover { color: var(--white) !important; }
@media (max-width: 880px) {
  .footer-admin-link { border-left: 0; padding-left: 0; padding-top: 8px; border-top: 1px solid var(--hair-dark); width: 100%; text-align: center; }
}

/* =====================================================================
   Admin page
   ===================================================================== */
.admin-head h1 em { color: var(--white); }
@media (max-width: 520px) {
  .admin-head h1 { font-size: clamp(28px, 7vw, 38px); letter-spacing: -0.025em; }
  .admin-head p { font-size: 14px; }
}
.admin-wrap {
  max-width: 1100px;
  margin: 16px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.admin-card {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3.5vw, 40px);
}
.admin-form-card { grid-column: 1; }
.admin-list-card { grid-column: 2; }
.admin-list-card:nth-of-type(3) { grid-column: 1 / -1; }
.admin-card h3 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  color: var(--bordeaux);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.admin-help {
  font-size: 13px;
  color: var(--ink-mute);
  margin: 0 0 20px;
  font-style: italic;
  font-family: var(--ff-display);
}
.admin-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.admin-svc-radio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.admin-svc-radio button {
  background: var(--white-2);
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  padding: 14px 12px;
  cursor: pointer;
  text-align: left;
  font-family: var(--ff-body);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color .15s, background .15s;
}
.admin-svc-radio button:hover { border-color: var(--bordeaux); }
.admin-svc-radio button.is-sel {
  background: var(--bordeaux);
  color: var(--white);
  border-color: var(--bordeaux);
}
.admin-svc-radio button strong {
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.admin-svc-radio button span {
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}
.admin-svc-radio button.is-sel span { color: rgba(250, 246, 241, 0.78); }

.admin-existing {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 12px 14px;
  background: rgba(202, 138, 4, 0.10);
  border: 1px solid rgba(202, 138, 4, 0.35);
  color: #6b4500;
  font-size: 13px;
  border-radius: var(--r-sm);
}
.admin-existing svg { color: #b07700; flex-shrink: 0; }
.admin-add-btn {
  background: var(--bordeaux);
  color: var(--white);
  border-color: var(--bordeaux);
}
.admin-add-btn:hover { background: var(--bordeaux-2); border-color: var(--bordeaux-2); }

/* 14-day grid */
.admin-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.admin-week-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 4px 12px;
  background: var(--white-2);
  border: 1px solid var(--hair);
  border-radius: var(--r-sm);
  text-align: center;
  font-size: 11px;
  color: var(--ink-mute);
  transition: background .15s, border-color .15s, color .15s;
}
.admin-week-cell .aw-wd {
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.7;
}
.admin-week-cell .aw-num {
  font-family: var(--ff-display);
  font-size: 22px;
  color: var(--bordeaux);
  letter-spacing: -0.02em;
  line-height: 1;
}
.admin-week-cell .aw-st {
  font-size: 10px;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.admin-week-cell.is-today {
  box-shadow: inset 0 0 0 2px var(--bordeaux);
}
.admin-week-cell.is-midi {
  background: rgba(202, 138, 4, 0.12);
  border-color: rgba(202, 138, 4, 0.35);
  color: #6b4500;
}
.admin-week-cell.is-midi .aw-num { color: #6b4500; }
.admin-week-cell.is-soir {
  background: rgba(60, 90, 130, 0.10);
  border-color: rgba(60, 90, 130, 0.35);
  color: #2a4060;
}
.admin-week-cell.is-soir .aw-num { color: #2a4060; }
.admin-week-cell.is-all {
  background: rgba(155, 26, 26, 0.10);
  border-color: rgba(155, 26, 26, 0.40);
  color: #6b1414;
}
.admin-week-cell.is-all .aw-num {
  color: #6b1414;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}

@media (max-width: 720px) {
  .admin-week { grid-template-columns: repeat(7, 1fr); gap: 3px; }
  .admin-week-cell { padding: 8px 2px 10px; }
  .admin-week-cell .aw-num { font-size: 18px; }
  .admin-week-cell .aw-st { display: none; }
}

/* Closures list */
.admin-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.admin-list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  background: var(--white-2);
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
}
.admin-list-row.is-past { opacity: 0.55; }
.admin-list-row > div {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.admin-list-row strong {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 16px;
  color: var(--bordeaux);
  letter-spacing: -0.005em;
}
.admin-tag {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-weight: 600;
}
.admin-tag.tag-all { background: rgba(155, 26, 26, 0.12); color: #9b1a1a; }
.admin-tag.tag-midi { background: rgba(202, 138, 4, 0.16); color: #8a5b00; }
.admin-tag.tag-soir { background: rgba(60, 90, 130, 0.14); color: #2a4060; }
.admin-remove {
  background: transparent;
  border: 1px solid var(--hair);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--ink-mute);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s, border-color .15s;
  flex-shrink: 0;
}
.admin-remove:hover {
  background: #9b1a1a;
  border-color: #9b1a1a;
  color: var(--white);
}
.admin-empty {
  margin: 0;
  padding: 24px 16px;
  text-align: center;
  font-style: italic;
  color: var(--ink-mute);
  background: var(--white-2);
  border: 1px dashed var(--hair);
  border-radius: var(--r-md);
}
.admin-foot {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 12px;
  color: rgba(250, 246, 241, 0.55);
  font-style: italic;
  margin: 8px 0 0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 880px) {
  .admin-wrap { grid-template-columns: 1fr; }
  .admin-form-card, .admin-list-card,
  .admin-list-card:nth-of-type(3) { grid-column: 1; }
  .admin-svc-radio { grid-template-columns: 1fr; }
}

/* =====================================================================
   Admin — schedule editor
   ===================================================================== */
.admin-section-head {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  color: var(--white);
  padding: 4px 4px 0;
  margin-bottom: -4px;
}
.admin-section-num {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--white);
  opacity: 0.35;
  padding-top: 4px;
  min-width: 44px;
}
.admin-section-head h2 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 0 0 6px;
  color: var(--white);
}
.admin-section-head p {
  margin: 0;
  font-size: 13px;
  color: rgba(250, 246, 241, 0.65);
  max-width: 640px;
  line-height: 1.5;
}

.admin-sched-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.admin-sched-wrap .admin-card { grid-column: unset; }

.sched-svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}
.sched-svc-card {
  background: var(--white-2);
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sched-svc-card.sched-ov:not(.is-on) {
  background: transparent;
  border-style: dashed;
  opacity: 0.85;
}
.sched-svc-card > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--hair);
  margin-bottom: 2px;
}
.sched-svc-card.sched-ov:not(.is-on) > header { border-bottom-color: transparent; }
.sched-svc-card > header strong {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--bordeaux);
}
.sched-count {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.sched-row {
  display: grid;
  grid-template-columns: 1fr 130px;
  align-items: center;
  gap: 12px;
}
.sched-row label {
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
}
.sched-row-last label {
  color: var(--bordeaux);
  font-weight: 600;
}
.sched-row input[type="time"],
.sched-row select {
  font-family: var(--ff-mono);
  font-size: 14px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: var(--r-sm);
  color: var(--ink);
  font-weight: 500;
  -webkit-appearance: none;
  appearance: none;
}
.sched-row input[type="time"]:focus,
.sched-row select:focus {
  outline: none;
  border-color: var(--bordeaux);
  box-shadow: 0 0 0 3px rgba(42, 7, 10, 0.10);
}
.sched-row select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232a070a' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
}

.sched-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding-top: 10px;
  border-top: 1px solid var(--hair);
  margin-top: 4px;
}
.sched-preview span {
  font-family: var(--ff-mono);
  font-size: 11px;
  padding: 4px 7px;
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: 4px;
  color: var(--ink-mute);
  letter-spacing: 0.01em;
}
.sched-preview .more {
  background: var(--bordeaux);
  color: var(--white);
  border-color: var(--bordeaux);
}

.sched-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}
.sched-switch input { position: absolute; opacity: 0; pointer-events: none; }
.sched-switch .sw-track {
  width: 34px;
  height: 20px;
  border-radius: 999px;
  background: var(--hair);
  position: relative;
  transition: background .15s;
  flex-shrink: 0;
}
.sched-switch .sw-thumb {
  position: absolute;
  top: 2px; left: 2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--white);
  transition: transform .15s;
}
.sched-switch input:checked + .sw-track { background: var(--bordeaux); }
.sched-switch input:checked + .sw-track .sw-thumb { transform: translateX(14px); }
.sched-switch em {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  text-transform: uppercase;
  font-weight: 500;
}
.sched-svc-card.sched-ov.is-on .sched-switch em { color: var(--bordeaux); }

.sched-inherit-note {
  margin: 0;
  padding: 14px 16px;
  background: rgba(255,255,255,0.55);
  border: 1px dashed var(--hair);
  border-radius: var(--r-sm);
  color: var(--ink-mute);
  font-size: 13px;
  font-style: italic;
  text-align: center;
}

.sched-list-detail {
  display: block;
  width: 100%;
  margin-top: 4px;
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.01em;
}

.admin-sched-override .field { margin-top: 6px; }
.admin-sched-override .admin-add-btn { margin-top: 18px; }

@media (max-width: 720px) {
  .sched-svc-grid { grid-template-columns: 1fr; }
  .admin-section-head { gap: 12px; }
  .admin-section-num { font-size: 24px; min-width: 36px; }
  .sched-row { grid-template-columns: 1fr 120px; }
}

/* =====================================================================
   Admin — Reservations board & Clients board
   ===================================================================== */
.admin-resa-wrap, .admin-clients-wrap { grid-template-columns: 1fr; }
.admin-resa-card, .admin-clients-card { grid-column: 1 / -1; }

.resa-nav {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}
.resa-nav-arrow {
  width: 44px;
  height: 50px;
  border: 1px solid var(--hair);
  background: var(--white-2);
  color: var(--bordeaux);
  border-radius: var(--r-md);
  font-size: 22px;
  cursor: pointer;
  transition: background .15s, border-color .15s;
}
.resa-nav-arrow:hover { background: #fff; border-color: var(--bordeaux); }

.resa-quick {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.resa-chip {
  border: 1px solid var(--hair);
  background: var(--white-2);
  color: var(--bordeaux);
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .12s, border-color .12s, color .12s;
}
.resa-chip:hover { background: #fff; border-color: var(--bordeaux); }
.resa-chip.is-on { background: var(--bordeaux); border-color: var(--bordeaux); color: var(--white); }

.resa-svc-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  background: var(--white-2);
  border: 1px solid var(--hair);
  padding: 4px;
  border-radius: var(--r-md);
  margin-bottom: 14px;
}
.resa-tab {
  border: 0;
  background: transparent;
  color: var(--bordeaux);
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 0;
  border-radius: 8px;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.resa-tab:hover { background: rgba(42,7,10,0.05); }
.resa-tab.is-on { background: var(--bordeaux); color: var(--white); }

.resa-stats {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--ink-mute);
  font-size: 14px;
  margin-bottom: 14px;
  font-family: var(--ff-body);
}
.resa-stats strong { color: var(--ink); font-weight: 600; }

.resa-list, .client-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }

.resa-row, .client-row {
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  background: #fff;
  overflow: hidden;
  transition: border-color .15s;
}
.resa-row.is-open, .client-row.is-open { border-color: var(--bordeaux); }

.resa-row-head {
  display: grid;
  grid-template-columns: 64px 1fr auto 24px;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 14px 16px;
  cursor: pointer;
  font-family: var(--ff-body);
}
.resa-row-head:hover { background: var(--white-2); }
.resa-time {
  font-family: var(--ff-mono);
  font-size: 16px;
  font-weight: 500;
  color: var(--bordeaux);
}
.resa-who { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.resa-name { font-size: 15px; color: var(--ink); font-weight: 500; }
.resa-badge {
  display: inline-block;
  align-self: flex-start;
  background: rgba(42,7,10,0.08);
  color: var(--bordeaux);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 2px 8px;
  border-radius: 999px;
}
.resa-size { color: var(--ink-mute); font-size: 13px; white-space: nowrap; }
.resa-caret { color: var(--bordeaux); font-size: 20px; line-height: 1; }

.resa-detail {
  padding: 4px 16px 16px;
  border-top: 1px dashed var(--hair);
}
.resa-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 16px;
  margin: 14px 0;
}
.resa-detail-grid > div { min-width: 0; }
.resa-detail-grid .resa-detail-full { grid-column: 1 / -1; }
.resa-detail-grid dt {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bordeaux);
  font-weight: 500;
  margin-bottom: 4px;
}
.resa-detail-grid dd { margin: 0; font-size: 14px; color: var(--ink); word-wrap: break-word; }
.resa-detail-grid dd a { color: var(--bordeaux); text-decoration: underline; }

.resa-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.resa-actions .btn {
  flex: 1;
  min-height: 44px;
  font-size: 14px;
  padding: 0 18px;
  border-radius: var(--r-md);
  font-family: var(--ff-body);
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background .15s, border-color .15s, color .15s;
}
.btn-ghost {
  border: 1px solid var(--hair);
  background: #fff;
  color: var(--bordeaux);
}
.resa-actions .btn-ghost:hover { background: var(--white-2); border-color: var(--bordeaux); }
.btn-danger-soft {
  border: 1px solid rgba(155, 26, 26, 0.3);
  background: #fff;
  color: #9b1a1a;
}
.btn-danger-soft:hover { background: rgba(155, 26, 26, 0.06); border-color: #9b1a1a; }

/* Clients board */
.admin-clients-card .field { margin-bottom: 16px; }
.admin-clients-card .field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bordeaux);
  font-weight: 500;
  margin-bottom: 6px;
}
.admin-clients-card .field input {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  background: var(--white-2);
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--ink);
}
.admin-clients-card .field input:focus {
  outline: none;
  border-color: var(--bordeaux);
  background: #fff;
}

.client-row-head {
  display: grid;
  grid-template-columns: 1fr auto 48px 24px;
  align-items: center;
  gap: 12px;
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 14px 16px;
  cursor: pointer;
  font-family: var(--ff-body);
}
.client-row-head:hover { background: var(--white-2); }
.client-name { font-size: 15px; color: var(--ink); font-weight: 500; }
.client-phone { font-family: var(--ff-mono); font-size: 13px; color: var(--ink-mute); }
.client-count {
  background: var(--bordeaux);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  min-width: 32px;
  padding: 4px 10px;
  text-align: center;
}
.client-detail { padding: 4px 16px 18px; border-top: 1px dashed var(--hair); }
.client-history-h {
  font-family: var(--ff-display);
  font-weight: 400;
  color: var(--bordeaux);
  font-size: 16px;
  margin: 6px 0 10px;
}
.client-history { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.client-history li {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 10px;
  font-size: 13px;
  color: var(--ink);
  background: var(--white-2);
  border-radius: 8px;
  padding: 10px 12px;
  align-items: baseline;
}
.client-history .ch-date { font-family: var(--ff-mono); color: var(--bordeaux); font-weight: 500; }
.client-history .ch-size { color: var(--ink-mute); font-size: 12px; }
.client-history .ch-note { color: var(--ink-mute); font-style: italic; font-size: 12px; }

.client-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--hair);
}
.client-actions .btn {
  flex: 1;
  min-height: 44px;
  font-size: 14px;
  padding: 0 18px;
  border-radius: var(--r-md);
  font-family: var(--ff-body);
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background .15s, border-color .15s, color .15s;
}

@media (max-width: 720px) {
  .resa-row-head {
    grid-template-columns: 56px 1fr 24px;
    row-gap: 4px;
    padding: 12px 14px;
  }
  .resa-size { grid-column: 2; justify-self: start; font-size: 12px; }
  .resa-caret { grid-column: 3; grid-row: 1; }
  .resa-detail-grid { grid-template-columns: 1fr; }
  .client-row-head { grid-template-columns: 1fr 48px 24px; row-gap: 4px; padding: 12px 14px; }
  .client-phone { grid-column: 1; grid-row: 2; }
  .client-count { grid-column: 2; grid-row: 1; }
  .client-history li { grid-template-columns: 1fr; gap: 2px; }
}

/* =====================================================================
   Admin PWA — Tab system + Reservations board redesign
   ===================================================================== */
.admin-pwa { padding: 0 16px 80px; max-width: 720px; margin: 0 auto; }

.admin-tabs {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  background: var(--black);
  padding: 14px 0;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.admin-tab {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 56px;
  background: transparent;
  color: rgba(250, 246, 241, 0.6);
  border: 1px solid transparent;
  border-radius: var(--r-md);
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: color .15s, background .15s, border-color .15s;
}
.admin-tab:hover { color: var(--white); background: rgba(255,255,255,0.04); }
.admin-tab.is-on {
  color: var(--white);
  background: var(--bordeaux);
  border-color: var(--bordeaux);
}
.admin-tab svg { flex-shrink: 0; }

/* Day navigator */
.resa-board { display: flex; flex-direction: column; gap: 20px; }
.day-nav {
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  gap: 10px;
  align-items: center;
}
.day-arrow {
  width: 52px;
  height: 60px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--white);
  border-radius: var(--r-md);
  font-size: 26px;
  cursor: pointer;
  transition: background .15s, border-color .15s;
}
.day-arrow:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.25); }
.day-label { display: flex; flex-direction: column; gap: 4px; align-items: stretch; }
.day-eyebrow {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 246, 241, 0.55);
  font-weight: 500;
}
.day-label .datepicker { width: 100%; }
.day-label .datepicker-trigger {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
  color: var(--white);
  height: 52px;
  font-weight: 500;
}
.day-label .datepicker-trigger:hover { background: rgba(255,255,255,0.1); }
.day-label .dp-icon, .day-label .dp-caret { color: rgba(250, 246, 241, 0.85); }

.day-quick { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.day-quick .resa-chip {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.12);
  color: var(--white);
}
.day-quick .resa-chip:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.25); }
.day-quick .resa-chip.is-on { background: var(--bordeaux); border-color: var(--bordeaux); color: var(--white); }

/* Service blocks (Midi / Soir) */
.svc-block { display: flex; flex-direction: column; gap: 8px; }
.svc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 4px;
  border: 0;
  background: transparent;
  text-align: left;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: opacity .15s;
}
.svc-head:hover { opacity: 0.8; }
.svc-title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 28px;
  color: var(--white);
  letter-spacing: -0.01em;
  margin: 0;
}
.svc-head-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.svc-stats { font-size: 13px; color: rgba(250, 246, 241, 0.65); font-family: var(--ff-body); }
.svc-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 246, 241, 0.55);
  transition: transform .2s;
}
.svc-block.is-collapsed .svc-chevron { transform: rotate(-90deg); }
.svc-block.is-collapsed .svc-head { border-bottom-color: rgba(255,255,255,0.06); }
.svc-empty {
  margin: 0;
  padding: 18px;
  font-size: 14px;
  color: rgba(250, 246, 241, 0.45);
  font-style: italic;
  font-family: var(--ff-display);
  text-align: center;
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: var(--r-md);
}

/* Reservation row — new layout */
.admin-pwa .resa-row {
  background: var(--white);
  border: 1px solid transparent;
  border-radius: var(--r-md);
  transition: border-color .15s, transform .1s;
}
.admin-pwa .resa-row.is-absent { background: var(--white-2); opacity: 0.78; }
.admin-pwa .resa-row.is-open { border-color: var(--bordeaux); }

.admin-pwa .resa-row-main {
  display: grid;
  grid-template-columns: 60px 1fr 24px;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  min-width: 0;
  transition: background .15s;
}
.admin-pwa .resa-row-main:hover { background: rgba(42,7,10,0.04); }
.admin-pwa .resa-time {
  font-family: var(--ff-mono);
  font-size: 21px;
  font-weight: 500;
  color: var(--bordeaux);
  line-height: 1;
}
.resa-info { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.admin-pwa .resa-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}
.resa-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: var(--ink-mute);
  flex-wrap: wrap;
}
.resa-pers { font-weight: 500; }
.resa-meta .resa-badge {
  background: rgba(42,7,10,0.08);
  color: var(--bordeaux);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 2px 8px;
  border-radius: 999px;
}
.resa-note {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #e8830c;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 3px 9px;
  border-radius: 999px;
  box-shadow: 0 1px 4px rgba(232, 131, 12, 0.35);
}
.resa-note svg { opacity: 1; }
.resa-chevron {
  color: rgba(42,7,10,0.45);
  font-size: 22px;
  font-weight: 300;
  text-align: center;
  line-height: 1;
}

/* Two-button presence bar (under the resa info, full-width on mobile) */
.presence-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 0 12px 10px;
  border-top: 1px dashed rgba(42,7,10,0.1);
  padding-top: 10px;
  margin-top: 0;
}
.presence-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1.5px solid rgba(42,7,10,0.15);
  background: rgba(42,7,10,0.04);
  color: rgba(42,7,10,0.55);
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s, transform .08s;
}
.presence-btn svg { opacity: 0.6; transition: opacity .15s; }
.presence-btn:hover { background: rgba(42,7,10,0.08); color: rgba(42,7,10,0.8); }
.presence-btn:active { transform: scale(0.98); }

.presence-btn.presence-absent.is-on {
  background: #c83333;
  color: #fff;
  border-color: #c83333;
}
.presence-btn.presence-absent.is-on:hover { background: #b62828; border-color: #b62828; }
.presence-btn.presence-absent.is-on svg { opacity: 1; }

.presence-btn.presence-present.is-on {
  background: #1d8a4f;
  color: #fff;
  border-color: #1d8a4f;
}
.presence-btn.presence-present.is-on:hover { background: #17743f; border-color: #17743f; }
.presence-btn.presence-present.is-on svg { opacity: 1; }

/* Row state tints (subtle bg hint when marked) */
.admin-pwa .resa-row-absent { background: #fcf6f6; }
.admin-pwa .resa-row-absent .resa-time { color: #9b1a1a; }
.admin-pwa .resa-row-absent .resa-name { color: #6e1818; text-decoration: line-through; text-decoration-color: rgba(155, 26, 26, 0.35); }

.admin-pwa .resa-row-present { background: #f5fbf7; }
.admin-pwa .resa-row-present .resa-time { color: #1d8a4f; }

.admin-pwa .resa-detail {
  padding: 6px 18px 18px;
  border-top: 1px dashed rgba(42,7,10,0.15);
}

/* Settings tab — replace section headers */
.admin-block-title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(24px, 4vw, 34px);
  color: var(--white);
  letter-spacing: -0.015em;
  margin: 24px 0 4px;
}
.admin-block-intro {
  font-size: 14px;
  color: rgba(250, 246, 241, 0.65);
  margin: 0 0 16px;
  font-style: italic;
  font-family: var(--ff-display);
}
.admin-pwa .admin-wrap { grid-template-columns: 1fr; max-width: none; margin-top: 0; }
.admin-pwa .admin-card { padding: clamp(16px, 3vw, 28px); }

/* Clients tab inside PWA */
.admin-pwa .admin-clients-wrap { margin-top: 0; }

/* Desktop defaults — same design as mobile, légèrement scaled up */
.admin-tabs { gap: 8px; padding: 16px 0; }
.admin-tab { font-size: 13px; height: 62px; padding: 0 10px; gap: 5px; }
.admin-tab svg { width: 20px; height: 20px; }

.day-nav { grid-template-columns: 60px 1fr 60px; gap: 14px; }
.day-arrow { width: 60px; height: 68px; font-size: 30px; }

.svc-title { font-size: 28px; }
.svc-stats { font-size: 13px; }

.admin-pwa .resa-row-main {
  grid-template-columns: 70px 1fr 24px;
  gap: 14px;
  padding: 12px 16px;
}
.admin-pwa .resa-time { font-size: 23px; }
.admin-pwa .resa-name { font-size: 16px; }
.resa-meta { font-size: 13px; gap: 10px; }

.presence-bar { padding: 10px 14px 12px; gap: 8px; }
.presence-btn { min-height: 38px; font-size: 13px; padding: 0 14px; gap: 8px; }
.presence-btn svg { width: 14px; height: 14px; }

/* Mobile-specific tweaks (smaller scale, same layout) */
@media (max-width: 640px) {
  .admin-pwa { padding: 0 12px 60px; }
  .admin-tabs { gap: 4px; padding: 12px 0; }
  .admin-tab { font-size: 10.5px; height: 52px; padding: 0 4px; gap: 4px; }
  .admin-tab svg { width: 17px; height: 17px; }

  .day-nav { grid-template-columns: 44px 1fr 44px; gap: 10px; }
  .day-arrow { width: 44px; height: 54px; font-size: 22px; }

  .svc-title { font-size: 22px; }
  .svc-stats { font-size: 12px; }

  .admin-pwa .resa-row-main {
    grid-template-columns: 60px 1fr 22px;
    gap: 12px;
    padding: 14px 14px;
  }
  .admin-pwa .resa-time { font-size: 22px; }
  .admin-pwa .resa-name { font-size: 16px; }
  .resa-meta { font-size: 12px; gap: 6px; }

  .presence-bar { padding: 10px 12px 12px; gap: 6px; }
  .presence-btn { min-height: 42px; font-size: 13px; padding: 0 10px; gap: 6px; }
  .presence-btn svg { width: 14px; height: 14px; }
}

/* =====================================================================
   Admin password gate
   ===================================================================== */
.admin-gate {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--black);
}
.admin-gate-card {
  width: 100%;
  max-width: 380px;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--r-lg);
  padding: 36px 28px 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  text-align: center;
}
.admin-gate-mark {
  font-size: 36px;
  color: var(--bordeaux);
  margin-bottom: 8px;
  line-height: 1;
}
.admin-gate-card h1 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 32px;
  color: var(--bordeaux);
  letter-spacing: -0.015em;
  margin: 0 0 8px;
}
.admin-gate-card p {
  font-size: 14px;
  color: var(--ink-mute);
  margin: 0 0 22px;
  font-family: var(--ff-display);
  font-style: italic;
  line-height: 1.5;
}
.admin-gate-card input {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  background: var(--white-2);
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  font-family: var(--ff-body);
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 12px;
  text-align: center;
  letter-spacing: 0.04em;
}
.admin-gate-card input:focus {
  outline: none;
  border-color: var(--bordeaux);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(42, 7, 10, 0.10);
}
.admin-gate-err {
  font-size: 13px;
  color: #9b1a1a;
  margin: 0 0 10px;
  font-style: normal;
  font-family: var(--ff-body);
}
.admin-gate-card button {
  width: 100%;
  height: 52px;
  background: var(--bordeaux);
  color: var(--white);
  border: 0;
  border-radius: var(--r-md);
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background .15s, transform .08s;
}
.admin-gate-card button:hover:not(:disabled) { background: var(--bordeaux-2, #1a0508); }
.admin-gate-card button:active { transform: scale(0.99); }
.admin-gate-card button:disabled { opacity: 0.5; cursor: not-allowed; }

/* =====================================================================
   Page Avis (/#/avis) — dédiée à la gestion des avis Google
   ===================================================================== */
.reviews-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 16px 80px;
  min-height: 100vh;
}

.reviews-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 22px;
}
.reviews-head-inner { flex: 1; min-width: 0; }
.reviews-head h1 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(28px, 5vw, 38px);
  color: var(--white);
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}
.reviews-head p {
  font-size: 14px;
  color: rgba(250, 246, 241, 0.65);
  margin: 0;
  font-style: italic;
  font-family: var(--ff-display);
}
.reviews-refresh {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
  color: var(--white);
  border-radius: var(--r-md);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, border-color .15s;
}
.reviews-refresh:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.3); }

.reviews-state {
  text-align: center;
  padding: 60px 20px;
  color: rgba(250, 246, 241, 0.7);
}
.reviews-empty {
  font-family: var(--ff-display);
  font-size: 20px;
  margin: 0 0 8px;
  color: var(--white);
}
.reviews-empty-sub {
  font-size: 14px;
  color: rgba(250, 246, 241, 0.55);
  margin: 0;
}

/* Setup card */
.reviews-setup {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--r-lg);
  padding: clamp(20px, 4vw, 32px);
  margin-top: 12px;
}
.reviews-setup h2 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 24px;
  color: var(--bordeaux);
  margin: 0 0 10px;
}
.reviews-setup-intro {
  font-size: 14px;
  color: var(--ink-mute);
  margin: 0 0 22px;
}
.reviews-setup-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  counter-reset: step;
}
.reviews-setup-steps li {
  counter-increment: step;
  background: var(--white-2);
  border-radius: var(--r-md);
  padding: 16px 16px 16px 54px;
  margin-bottom: 12px;
  position: relative;
}
.reviews-setup-steps li::before {
  content: counter(step);
  position: absolute;
  top: 16px;
  left: 16px;
  width: 28px;
  height: 28px;
  background: var(--bordeaux);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-family: var(--ff-mono);
  font-size: 13px;
}
.reviews-setup-steps strong {
  font-size: 15px;
  color: var(--ink);
}
.setup-time {
  display: inline-block;
  margin-left: 10px;
  font-size: 11px;
  color: var(--ink-mute);
  background: rgba(42,7,10,0.08);
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 500;
}
.reviews-setup-steps p {
  font-size: 13px;
  color: var(--ink-mute);
  margin: 6px 0 0;
  line-height: 1.5;
}
.reviews-setup-steps a {
  color: var(--bordeaux);
  font-weight: 500;
  text-decoration: underline;
}
.reviews-setup-steps code {
  background: rgba(42,7,10,0.08);
  padding: 1px 6px;
  border-radius: 4px;
  font-family: var(--ff-mono);
  font-size: 12px;
}
.reviews-setup-cta {
  font-size: 13px;
  color: var(--ink-mute);
  font-style: italic;
  margin: 0;
}
.reviews-error-details {
  margin-top: 14px;
  font-size: 12px;
  color: var(--ink-mute);
}
.reviews-error-details summary { cursor: pointer; }
.reviews-error-details code {
  display: block;
  margin-top: 6px;
  padding: 8px 10px;
  background: rgba(0,0,0,0.04);
  border-radius: 6px;
  font-size: 11px;
  word-break: break-word;
}

/* Reviews list */
.reviews-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-card {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--r-lg);
  padding: 20px 22px;
  transition: opacity .2s;
}
.review-card.is-done { opacity: 0.6; }

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}
.review-stars {
  color: #d4a017;
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 1;
}
.review-who {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.review-who strong {
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
}
.review-when {
  font-size: 12px;
  color: var(--ink-mute);
  font-style: italic;
}

.review-text {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.55;
  margin: 0 0 18px;
  padding: 14px 16px;
  background: var(--white-2);
  border-left: 3px solid var(--bordeaux);
  border-radius: 6px;
}
.review-text em { color: var(--ink-mute); font-style: italic; }

.review-reply { margin-bottom: 16px; }
.review-reply-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}
.review-reply-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bordeaux);
  font-weight: 500;
}
.review-regenerate {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--hair);
  background: #fff;
  color: var(--bordeaux);
  border-radius: 999px;
  padding: 6px 12px;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
}
.review-regenerate:hover:not(:disabled) {
  background: var(--bordeaux);
  border-color: var(--bordeaux);
  color: var(--white);
}
.review-regenerate:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.review-regenerate svg { flex-shrink: 0; }
.review-reply textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--white-2);
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--ink);
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
}
.review-reply textarea:focus {
  outline: none;
  border-color: var(--bordeaux);
  background: #fff;
}
.review-reply-count {
  margin: 4px 0 0;
  font-size: 11px;
  color: var(--ink-mute);
  text-align: right;
}

.review-err {
  font-size: 13px;
  color: #9b1a1a;
  margin: 0 0 10px;
}
.review-done {
  font-size: 14px;
  color: #15613a;
  font-weight: 600;
  margin: 0 0 10px;
}

.review-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.review-actions .btn {
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--r-md);
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: 0;
  transition: background .15s, border-color .15s, color .15s, transform .08s;
}
.review-actions .btn-ghost {
  border: 1px solid var(--hair);
  background: #fff;
  color: var(--bordeaux);
}
.review-actions .btn-ghost:hover { background: var(--white-2); border-color: var(--bordeaux); }
.review-actions .btn-primary {
  background: var(--bordeaux);
  color: var(--white);
}
.review-actions .btn-primary:hover:not(:disabled) { background: #1a0508; }
.review-actions .btn-primary:active { transform: scale(0.98); }
.review-actions .btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }

@media (max-width: 640px) {
  .reviews-page { padding: 0 12px 60px; }
  .reviews-head { padding: 20px 0 18px; margin-bottom: 16px; }
  .review-card { padding: 16px 16px; }
  .review-header { flex-direction: column; align-items: flex-start; gap: 6px; }
  .review-who { align-items: flex-start; }
  .review-actions { flex-direction: column; }
  .review-actions .btn { width: 100%; }
}

/* Mode manuel (paste + IA) */
.manual-review-mode {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--r-lg);
  padding: clamp(20px, 4vw, 28px);
}
.manual-banner {
  background: var(--white-2);
  border-left: 3px solid var(--bordeaux);
  padding: 14px 16px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.5;
  margin-bottom: 20px;
}
.manual-banner strong { color: var(--bordeaux); }

.manual-form { display: flex; flex-direction: column; gap: 18px; }
.manual-form .field { display: flex; flex-direction: column; gap: 6px; }
.manual-form .field label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bordeaux);
  font-weight: 500;
}
.manual-form .field input,
.manual-form .field textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--white-2);
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--ink);
  resize: vertical;
}
.manual-form .field input:focus,
.manual-form .field textarea:focus {
  outline: none;
  border-color: var(--bordeaux);
  background: #fff;
}

.rating-picker {
  display: flex;
  align-items: center;
  gap: 4px;
}
.rating-star {
  border: 0;
  background: transparent;
  color: rgba(42,7,10,0.2);
  font-size: 32px;
  line-height: 1;
  padding: 4px 6px;
  cursor: pointer;
  transition: color .15s, transform .08s;
}
.rating-star:hover { transform: scale(1.1); }
.rating-star.is-on { color: #d4a017; }
.rating-value {
  margin-left: 10px;
  font-size: 14px;
  color: var(--ink-mute);
  font-family: var(--ff-mono);
}

.manual-generate-btn {
  margin-top: 6px;
  background: var(--bordeaux);
  color: var(--white);
  border: 0;
  border-radius: var(--r-md);
  padding: 14px 24px;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s, transform .08s;
}
.manual-generate-btn:hover:not(:disabled) { background: #1a0508; }
.manual-generate-btn:active { transform: scale(0.99); }
.manual-generate-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.manual-reply-block {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px dashed var(--hair);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Bloc traduction française : différencié visuellement du bloc officiel */
.review-reply-fr {
  background: rgba(42, 7, 10, 0.03);
  border: 1px dashed rgba(42, 7, 10, 0.18);
  border-radius: var(--r-md);
  padding: 14px 16px;
}
.review-reply-fr .review-reply-label {
  color: var(--ink-mute);
}
.review-help-hint {
  margin: 8px 0 0;
  font-size: 12px;
  font-style: italic;
  color: var(--ink-mute);
  line-height: 1.5;
}
.manual-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 12px;
}
.manual-actions .btn {
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--r-md);
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: 0;
  transition: background .15s, border-color .15s, color .15s;
}
.manual-actions .btn-ghost {
  border: 1px solid var(--hair);
  background: #fff;
  color: var(--bordeaux);
}
.manual-actions .btn-ghost:hover { background: var(--white-2); border-color: var(--bordeaux); }
.manual-actions .btn-primary {
  background: var(--bordeaux);
  color: var(--white);
}
.manual-actions .btn-primary:hover:not(:disabled) { background: #1a0508; }
.manual-actions .btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }

.manual-copy-hint {
  margin-top: 12px;
  font-size: 13px;
  color: #15613a;
  text-align: center;
  font-style: italic;
}

@media (max-width: 640px) {
  .manual-actions { flex-direction: column; }
  .manual-actions .btn { width: 100%; }
  .rating-star { font-size: 28px; padding: 2px 4px; }
}

/* =====================================================================
   Admin — Statistiques (récap mensuel)
   ===================================================================== */
.admin-stats-wrap { grid-template-columns: 1fr; gap: 16px; }

.stats-metric-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px;
  border-radius: var(--r-md);
}
.stats-metric {
  border: 0;
  background: transparent;
  color: rgba(250, 246, 241, 0.6);
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 0;
  border-radius: 8px;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.stats-metric:hover { color: var(--white); }
.stats-metric.is-on { background: var(--bordeaux); color: var(--white); }

/* Cartes résumé */
.stats-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.stat-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}
.stat-card-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.stat-card-value {
  font-family: var(--ff-mono);
  font-size: 30px;
  font-weight: 600;
  color: var(--bordeaux);
  line-height: 1;
}
.stat-card-sub { font-size: 12px; color: var(--ink-mute); min-height: 16px; }

.stat-evo {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 12px;
  font-weight: 600;
}
.stat-evo.is-up { color: #1d8a4f; }
.stat-evo.is-down { color: #c83333; }
.stat-evo-na { color: var(--ink-mute); }

/* Graphique en barres */
.stats-chart-card, .stats-table-card { background: var(--white); }
.stats-chart-title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 20px;
  color: var(--bordeaux);
  margin: 0 0 16px;
}
.stats-chart { display: flex; flex-direction: column; gap: 8px; }
.stats-bar-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 10px;
}
.stats-bar-label {
  font-size: 11px;
  font-family: var(--ff-mono);
  color: var(--ink-mute);
  text-align: right;
}
.stats-bar-track {
  background: var(--white-2);
  border-radius: 6px;
  height: 26px;
  overflow: hidden;
}
.stats-bar-fill {
  height: 100%;
  min-width: 26px;
  background: linear-gradient(90deg, var(--bordeaux), #6a1420);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8px;
  transition: width .4s ease;
}
.stats-bar-value {
  color: #fff;
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 600;
}

/* Détail liste mensuelle */
.stats-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.stats-list-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 12px 4px;
  border-bottom: 1px solid var(--hair);
}
.stats-list-row:last-child { border-bottom: 0; }
.stats-list-month { font-size: 14px; font-weight: 500; color: var(--ink); }
.stats-list-nums { display: flex; flex-direction: column; gap: 2px; text-align: right; }
.stats-list-main { font-family: var(--ff-mono); font-size: 14px; font-weight: 600; color: var(--bordeaux); }
.stats-list-detail { font-size: 11px; color: var(--ink-mute); }
.stats-list-evo { min-width: 56px; text-align: right; }

@media (max-width: 640px) {
  .stat-card-value { font-size: 24px; }
  .stat-card-label { font-size: 10px; }
  .stats-cards { gap: 6px; }
  .stat-card { padding: 12px 8px; }
}
