/* Au Bradford — feuille de style unique */

:root {
  --navy: #16202f;
  --navy-2: #1e2b3e;
  --navy-3: #2a3a52;
  --orange: #e8642b;
  --orange-l: #f7913f;
  --cream: #faf7f2;
  --paper: #ffffff;
  --ink: #202733;
  --ink-soft: #5a6474;
  --line: #e2ddd4;
  --radius: 14px;
  --shadow: 0 2px 4px rgba(22,32,47,.05), 0 12px 32px rgba(22,32,47,.08);
  --wrap: 1120px;
  --font: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-title: Georgia, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--orange); }
a:hover { color: #c94d18; }

h1, h2, h3 { font-family: var(--font-title); line-height: 1.2; margin: 0 0 .6em; }
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.1rem); }
h3 { font-size: 1.2rem; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 800px; }

/* ---------- Lien d'evitement ---------- */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--orange); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; color: #fff; }

/* ---------- En-tete ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  border-bottom: 3px solid var(--orange);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 68px; position: relative;
}
.brand {
  display: block;
  font-family: var(--font-title); font-size: 1.35rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: #fff; text-decoration: none; line-height: 1.15;
}
.brand:hover { color: #fff; }
.brand .dot { color: var(--orange); }
.brand small {
  display: block; font-family: var(--font); font-size: .6rem;
  letter-spacing: .18em; color: #9aa8bd; font-weight: 400; text-transform: uppercase;
}

.nav-toggle {
  display: none; background: none; border: 1px solid #3c4b63; border-radius: 8px;
  color: #fff; padding: 8px 12px; font-size: .9rem; cursor: pointer; font-family: var(--font);
}
.nav-toggle:hover { border-color: var(--orange); }

.site-nav ul {
  display: flex; align-items: center; gap: 4px;
  list-style: none; margin: 0; padding: 0;
}
.site-nav a {
  display: block; padding: 9px 13px; border-radius: 8px;
  color: #d7dee9; text-decoration: none; font-size: .93rem; font-weight: 500;
}
.site-nav a:hover { background: var(--navy-3); color: #fff; }
.site-nav a[aria-current="page"] { color: #fff; background: var(--navy-3); }
.site-nav .nav-tel {
  background: var(--orange); color: #fff; font-weight: 600; white-space: nowrap;
}
.site-nav .nav-tel:hover { background: var(--orange-l); color: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--navy) url("../img/IMG_4727.jpg") center/cover no-repeat;
  color: #fff; text-align: center;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,23,35,.72), rgba(15,23,35,.88));
}
.hero .wrap { position: relative; padding-top: 76px; padding-bottom: 76px; }
.hero h1 { color: #fff; margin-bottom: .3em; }
.hero .kicker {
  text-transform: uppercase; letter-spacing: .22em; font-size: .78rem;
  color: var(--orange-l); margin: 0 0 14px; font-weight: 600;
}
.hero .lead { font-size: 1.12rem; color: #dbe3ee; max-width: 660px; margin: 0 auto 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-block; padding: 13px 24px; border-radius: 999px;
  font-weight: 600; font-size: .96rem; text-decoration: none;
  border: 2px solid transparent; cursor: pointer; font-family: var(--font);
  transition: transform .12s ease, background .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-l); color: #fff; }
.btn-ghost { border-color: rgba(255,255,255,.45); color: #fff; }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }
.btn-outline { border-color: var(--orange); color: var(--orange); background: transparent; }
.btn-outline:hover { background: var(--orange); color: #fff; }

/* ---------- Sections ---------- */
.section { padding: 64px 0; }
.section-alt { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-dark { background: var(--navy); color: #d7dee9; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-head { text-align: center; margin-bottom: 40px; }
.section-head p { color: var(--ink-soft); max-width: 640px; margin: 0 auto; }
.section-dark .section-head p { color: #9aa8bd; }
.eyebrow {
  text-transform: uppercase; letter-spacing: .2em; font-size: .74rem;
  color: var(--orange); font-weight: 700; margin: 0 0 8px;
}

/* ---------- Bandeau infos ---------- */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); }
.fact { background: var(--paper); padding: 26px 20px; text-align: center; }
.fact .fact-label {
  text-transform: uppercase; letter-spacing: .14em; font-size: .68rem;
  color: var(--ink-soft); font-weight: 700; margin: 0 0 6px;
}
.fact .fact-value { font-family: var(--font-title); font-size: 1.05rem; margin: 0; color: var(--navy); }
.fact .fact-value a { text-decoration: none; }

/* ---------- Grilles ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow);
}
.card h3 { margin-bottom: .4em; color: var(--navy); }
.card p:last-child { margin-bottom: 0; }
.card .card-icon { font-size: 1.6rem; margin-bottom: 10px; line-height: 1; }

.figure { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

/* ---------- Menu de la semaine ---------- */
.week {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
}
.week-head {
  background: var(--navy); color: #fff; padding: 20px 26px;
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 8px;
}
.week-head h3 { margin: 0; color: #fff; font-size: 1.28rem; }
.week-head .week-date { font-size: .78rem; color: #9aa8bd; letter-spacing: .08em; text-transform: uppercase; }
.week-body { padding: 8px 26px 22px; }

.days { list-style: none; margin: 0; padding: 0; }
.days li {
  display: grid; grid-template-columns: 118px 1fr; gap: 18px;
  padding: 15px 0; border-bottom: 1px dashed var(--line);
}
.days li:last-child { border-bottom: 0; }
.days .day {
  font-weight: 700; color: var(--orange); text-transform: uppercase;
  font-size: .8rem; letter-spacing: .08em; padding-top: 3px;
}
.days .dish { margin: 0; }

.week-note {
  margin: 0; padding: 16px 26px; background: #fdf3ec;
  border-top: 1px solid var(--line); font-size: .92rem; color: var(--ink-soft);
}
.week-note strong { color: var(--navy); }

.archive { display: grid; gap: 20px; }
.archive .week { scroll-margin-top: 90px; }

/* ---------- Carte ---------- */
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 46px; align-items: start; }
.menu-block { margin-bottom: 4px; }
.menu-block + .menu-block { margin-top: 34px; }
.menu-block h3 {
  color: var(--orange); font-size: 1.1rem; text-transform: uppercase;
  letter-spacing: .12em; margin-bottom: 12px; padding-bottom: 8px;
  border-bottom: 2px solid var(--line);
}
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list li {
  display: flex; align-items: baseline; gap: 8px; padding: 7px 0; font-size: .96rem;
}
.menu-list .name { flex: 0 1 auto; }
.menu-list .dots { flex: 1 1 auto; border-bottom: 1px dotted #c9c2b6; transform: translateY(-4px); min-width: 14px; }
.menu-list .price { flex: 0 0 auto; font-weight: 700; color: var(--navy); white-space: nowrap; }
.menu-list .sub { display: block; font-size: .84rem; color: var(--ink-soft); font-weight: 400; }
.menu-list .cols { flex: 0 0 auto; display: flex; gap: 12px; }
.menu-list .cols span { min-width: 54px; text-align: right; font-weight: 700; color: var(--navy); }
.menu-head-cols {
  display: flex; justify-content: flex-end; gap: 12px; font-size: .68rem;
  text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft);
  margin-bottom: 2px; font-weight: 700;
}
.menu-head-cols span { min-width: 54px; text-align: right; }

.menu-kids {
  background: var(--navy); color: #fff; border-radius: var(--radius);
  padding: 24px 26px; text-align: center;
}
.menu-kids h3 { color: #fff; border: 0; margin-bottom: 6px; letter-spacing: .14em; padding: 0; }
.menu-kids p { margin: 0; color: #c8d2e0; }
.menu-kids .price { color: var(--orange-l); font-weight: 700; font-size: 1.15rem; }

.alcohol-note { font-size: .78rem; color: var(--ink-soft); margin-top: 34px; text-align: center; }

/* ---------- Galerie ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery button {
  display: block; border: 0; padding: 0; width: 100%; cursor: zoom-in;
  border-radius: 10px; overflow: hidden; box-shadow: var(--shadow);
  aspect-ratio: 4 / 3; background: var(--navy-2);
}
.gallery img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .35s ease, opacity .2s ease;
}
.gallery button:hover img { transform: scale(1.06); opacity: .92; }

.gallery-note {
  margin: 26px auto 0; max-width: 560px; text-align: center;
  background: #fdf3ec; border: 1px dashed #e6c3ab; border-radius: var(--radius);
  padding: 14px 20px; color: var(--ink-soft); font-size: .93rem;
}

/* ---------- Avis ---------- */
.reviews { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.review-link {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 20px; text-decoration: none; color: var(--navy); font-weight: 600; font-size: .92rem;
}
.review-link:hover { border-color: var(--orange); color: var(--orange); }

/* ---------- Plan ---------- */
.map { border: 0; width: 100%; height: 420px; display: block; }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

/* ---------- Formulaire ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .84rem; font-weight: 600; color: var(--navy); }
.field input, .field textarea, .field select {
  font-family: var(--font); font-size: 1rem; padding: 11px 14px;
  border: 1px solid var(--line); border-radius: 10px; background: var(--paper); color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 2px solid var(--orange); outline-offset: 1px; border-color: var(--orange);
}
.field textarea { min-height: 150px; resize: vertical; }
.form-note { font-size: .85rem; color: var(--ink-soft); }

/* Champ piege anti-robot : hors ecran, jamais atteint au clavier. */
.hp {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}

.captcha {
  background: #fdf3ec; border: 1px solid #e6c3ab; border-radius: var(--radius);
  padding: 16px 18px; gap: 8px;
}
.captcha label { font-size: .92rem; }
.captcha strong { color: var(--orange); font-size: 1.05rem; }
.captcha input { max-width: 130px; }

.form-error {
  margin: 12px 0 0; padding: 11px 15px; border-radius: 10px;
  background: #fdecea; border: 1px solid #f0b4ab; color: #8c2415; font-size: .9rem;
}

.reservation-note {
  background: var(--navy); color: #d7dee9; border-radius: var(--radius);
  padding: 15px 20px; font-size: .93rem; margin: 0 0 16px;
}
.reservation-note strong { color: #fff; }
.reservation-note a { color: var(--orange-l); text-decoration: none; white-space: nowrap; }
.reservation-note a:hover { color: #fff; }

.contact-box {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow);
}
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { padding: 12px 0; border-bottom: 1px solid var(--line); }
.contact-list li:last-child { border-bottom: 0; }
.contact-list .lbl {
  display: block; text-transform: uppercase; letter-spacing: .12em;
  font-size: .68rem; color: var(--ink-soft); font-weight: 700; margin-bottom: 2px;
}
.contact-list .val { font-size: 1.05rem; color: var(--navy); font-weight: 600; }
.contact-list .val a { text-decoration: none; }

/* ---------- Bandeau CTA ---------- */
.cta { background: var(--orange); color: #fff; text-align: center; padding: 52px 0; }
.cta h2 { color: #fff; }
.cta p { color: #ffe9dd; max-width: 640px; margin: 0 auto 24px; }
.cta .btn-ghost { border-color: #fff; }
.cta .btn-white { background: #fff; color: #c94d18; }
.cta .btn-white:hover { background: #fff6f1; color: #c94d18; }

/* ---------- Pied de page ---------- */
.site-footer { background: var(--navy); color: #9aa8bd; padding: 52px 0 26px; font-size: .93rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
.site-footer h3 {
  color: #fff; font-family: var(--font); font-size: .76rem;
  text-transform: uppercase; letter-spacing: .16em; margin-bottom: 14px;
}
.site-footer a { color: #c8d2e0; text-decoration: none; }
.site-footer a:hover { color: var(--orange-l); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { padding: 4px 0; }
.footer-brand {
  font-family: var(--font-title); font-size: 1.3rem; color: #fff;
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px;
}
.footer-bottom {
  margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--navy-3);
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
  font-size: .84rem; color: #74829a;
}

/* ---------- Page interieure ---------- */
.page-head { background: var(--navy); color: #fff; padding: 52px 0 46px; text-align: center; }
.page-head h1 { color: #fff; margin-bottom: .2em; }
.page-head p { color: #9aa8bd; max-width: 660px; margin: 0 auto; }

.prose h2 { color: var(--navy); margin-top: 1.8em; }
.prose h3 { color: var(--navy); margin-top: 1.4em; }
.prose p, .prose li { color: #39424f; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 300; display: none;
  background: rgba(12,18,28,.94); padding: 24px;
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 88vh; border-radius: 8px; }
.lightbox .lb-close {
  position: absolute; top: 14px; right: 20px; background: none; border: 0;
  color: #fff; font-size: 2.4rem; line-height: 1; cursor: pointer; padding: 4px 12px;
}

/* ---------- Bandeau temporaire ---------- */
.notice-bar {
  background: var(--navy-2); color: #c8d2e0; text-align: center;
  padding: 9px 20px; font-size: .85rem;
}
.notice-bar strong { color: var(--orange-l); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; gap: 28px; }
  .cards { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none; position: absolute; left: -20px; right: -20px; top: 100%;
    background: var(--navy-2); border-bottom: 3px solid var(--orange);
    padding: 10px 20px 18px;
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .site-nav a { padding: 12px 14px; }
  .site-nav .nav-tel { text-align: center; margin-top: 8px; }
  .form-grid { grid-template-columns: 1fr; }
  .days li { grid-template-columns: 1fr; gap: 2px; }
  .section { padding: 46px 0; }
  .hero .wrap { padding-top: 56px; padding-bottom: 56px; }
}

@media (max-width: 480px) {
  .facts { grid-template-columns: 1fr; }
  body { font-size: 16px; }
  .week-body, .week-head, .week-note { padding-left: 18px; padding-right: 18px; }
}

/* ---------- Page a partager : les plats de la semaine ---------- */
.page-partage { background: var(--navy); padding: 22px 16px 40px; }

.affiche {
  max-width: 620px; margin: 0 auto;
  background: var(--paper); border-radius: 18px; overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.32);
}

.affiche-tete {
  background: var(--navy); color: #fff; text-align: center;
  padding: 30px 26px 26px; border-bottom: 4px solid var(--orange);
}
.affiche-marque {
  font-family: var(--font-title); font-size: 1.5rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  color: #fff; text-decoration: none; display: inline-block;
}
.affiche-marque:hover { color: #fff; }
.affiche-lieu {
  margin: 4px 0 22px; font-size: .72rem; letter-spacing: .1em;
  text-transform: uppercase; color: #8f9db3;
}
.affiche-kicker {
  margin: 0 0 6px; font-size: .74rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--orange-l);
}
.affiche-tete h1 { margin: 0; color: #fff; font-size: clamp(1.7rem, 6vw, 2.3rem); }

.affiche-jours { list-style: none; margin: 0; padding: 8px 26px; }
.affiche-jours li { padding: 17px 0; border-bottom: 1px dashed var(--line); }
.affiche-jours li:last-child { border-bottom: 0; }
.affiche-jours .day {
  display: block; font-weight: 700; color: var(--orange);
  text-transform: uppercase; font-size: .74rem; letter-spacing: .12em; margin-bottom: 3px;
}
.affiche-jours .dish { margin: 0; font-size: 1.06rem; color: var(--ink); }

.affiche-mot {
  margin: 0; padding: 0 26px 22px;
  font-style: italic; color: var(--ink-soft); font-size: .95rem;
}

.affiche-reservation {
  background: #fdf3ec; border-top: 1px solid var(--line);
  padding: 24px 26px; text-align: center;
}
.affiche-reservation-titre {
  margin: 0 0 14px; font-size: .72rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft);
}
.affiche-tels { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.affiche-tels .btn { font-size: 1.02rem; }
.affiche-service {
  margin: 16px 0 0; font-size: .87rem; color: var(--ink-soft);
}

.partage { padding: 24px 26px; border-top: 1px solid var(--line); text-align: center; }
.partage-titre {
  margin: 0 0 14px; font-size: .72rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft);
}
.partage-liens { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.partage-lien {
  display: inline-block; padding: 9px 17px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--paper);
  color: var(--navy); text-decoration: none;
  font-family: var(--font); font-size: .88rem; font-weight: 600; cursor: pointer;
}
.partage-lien:hover { border-color: var(--orange); color: var(--orange); }
.partage-retour { margin: 12px 0 0; font-size: .85rem; color: var(--orange); font-weight: 600; }

.affiche-pied {
  display: flex; flex-wrap: wrap; gap: 6px 18px; justify-content: center;
  padding: 20px 26px 24px; border-top: 1px solid var(--line); background: var(--cream);
}
.affiche-pied a { font-size: .87rem; color: var(--ink-soft); text-decoration: none; }
.affiche-pied a:hover { color: var(--orange); }

@media (max-width: 480px) {
  .page-partage { padding: 12px 10px 28px; }
  .affiche-jours, .affiche-mot, .affiche-reservation, .partage, .affiche-pied {
    padding-left: 20px; padding-right: 20px;
  }
  .affiche-tels .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

@media print {
  .site-header, .site-footer, .cta, .hero-actions, .nav-toggle, .notice-bar, .lightbox { display: none !important; }
  body { background: #fff; }
  .section { padding: 12px 0; }
  .page-partage { background: #fff; padding: 0; }
  .affiche { box-shadow: none; max-width: 100%; }
  .partage, .affiche-pied { display: none !important; }
}
