/* ==========================================================================
   Les Granges — Home mobile (option 1c, « Éditorial, logo en vedette »)
   ========================================================================== */

/* --- Fonts ---------------------------------------------------------------
   Archivo et Caveat sont des fontes variables : un seul fichier par
   unicode-range couvre toute la plage de graisses.                        */

@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 800;
  font-stretch: 100%;
  font-display: swap;
  src: url('../fonts/archivo-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 800;
  font-stretch: 100%;
  font-display: swap;
  src: url('../fonts/archivo-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Archivo Black';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/archivo-black-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Archivo Black';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/archivo-black-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Caveat';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/caveat-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Caveat';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/caveat-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* --- Tokens --------------------------------------------------------------- */

:root {
  --ink:        #17130f;  /* fond */
  --ink-deep:   #0f0c09;  /* fond overlay */
  --cream:      #efe9df;
  --cream-hi:   #f7f1e6;
  --muted:      #a89f8f;
  --gold:       #e3a13f;
  --gold-hi:    #f2b862;
  --gold-soft:  #c9a15e;

  --line:       rgba(255, 255, 255, 0.12);
  --line-soft:  rgba(255, 255, 255, 0.10);
  --surface:    rgba(255, 255, 255, 0.06);

  --gutter: 22px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 12px;
  --pill: 100px;

  --sans:   'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --black:  'Archivo Black', 'Archivo', system-ui, sans-serif;
  --script: 'Caveat', ui-rounded, cursive;
}

/* --- Base ----------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-hi); }

h1, h2, p { margin: 0; }

button { font: inherit; color: inherit; }

:where(a, button):focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: var(--gutter);
  z-index: 100;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
}
.skip-link:focus { top: 12px; color: var(--ink); }

/* La maquette est une home mobile : sur grand écran la colonne reste
   centrée plutôt que de s'étirer.                                          */
.shell {
  max-width: 480px;
  margin-inline: auto;
  padding-bottom: env(safe-area-inset-bottom);
}

/* --- Barre haute ---------------------------------------------------------- */

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(36px + env(safe-area-inset-top)) var(--gutter) 0;
}

.topbar__city {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--cream);
}

/* Barre horizontale et bouton Réserver : masqués tant qu'on est en mobile,
   révélés au point de rupture desktop plus bas. Idem pour les informations
   pratiques de la bande hero, qui n'existent que sur desktop — le mobile
   garde la maquette validée, où elles n'apparaissent qu'en bas de page. */
.mainnav,
.topbar__cta,
.topbar__brand,
.heroband__hours,
.heroband__where { display: none; }

.burger {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
}
.burger:hover { background: rgba(255, 255, 255, 0.14); }

/* Deux traits, comme la maquette. */
.burger__bars,
.burger__bars::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--cream);
}
.burger__bars { position: relative; }
.burger__bars::after { content: ''; position: absolute; top: 6px; left: 0; }

/* --- Bloc marque ---------------------------------------------------------- */

.brand {
  padding: 26px var(--gutter) 0;
  text-align: center;
}

.brand__logo { margin: 0; }

/* Le PNG est un pochoir : on le force en blanc plein. */
.brand__logo img {
  width: 220px;
  height: auto;
  margin-inline: auto;
  filter: brightness(0) invert(1);
}

.brand__tagline {
  margin-top: 16px;
  color: var(--gold-soft);
  font-family: var(--script);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
}

/* --- Hero ----------------------------------------------------------------- */

.hero {
  position: relative;
  margin: 22px var(--gutter) 0;
  height: var(--hero-h, 280px);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* La home reçoit la photo verticale de la terrasse : on lui laisse plus de
   hauteur, ce qui la recadre moins et lui donne son poids d'image d'ouverture.
   Les pages intérieures gardent 280px — leurs photos sont en paysage, les
   allonger ne ferait que les zoomer. */
.hero--home { --hero-h: 430px; }

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 8, 6, 0) 50%, rgba(10, 8, 6, 0.85) 100%);
}

.hero figcaption {
  position: absolute;
  z-index: 1;
  inset: auto 20px 20px;
  color: var(--cream);
  font-size: 13px;
  font-weight: 600;
}

/* --- Appels à l'action ---------------------------------------------------- */

.actions {
  padding: 20px var(--gutter) 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn {
  display: block;
  text-align: center;
  font-weight: 800;
  font-size: 15px;
  border-radius: var(--pill);
}

.btn--primary {
  background: var(--gold);
  color: var(--ink);
  padding: 16px 0;
}
.btn--primary:hover { background: var(--gold-hi); color: var(--ink); }

/* Seconde ligne d'un bouton : l'adresse e-mail sous l'intitulé d'action.
   Plus discrète que le libellé, mais lisible — c'est le repli quand le
   mailto n'ouvre rien. Le break-word évite qu'une adresse longue déborde
   sur les petits écrans. */
.btn__sub {
  display: block;
  margin-top: 4px;
  font-weight: 400;
  font-size: 13px;
  opacity: 0.75;
  word-break: break-word;
}

/* --- Formulaire de candidature -------------------------------------------

   Seul formulaire du site. Les champs reprennent la surface translucide des
   autres blocs plutôt qu'un fond blanc : sur ce fond sombre, un champ clair
   ferait tache et éblouirait. */

.form {
  margin: 20px var(--gutter) 0;
  display: grid;
  gap: 16px;
}

.form__row {
  display: grid;
  gap: 16px;
}

.form__field { margin: 0; }

.form label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--cream);
}

.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form select,
.form textarea {
  width: 100%;
  padding: 13px 14px;
  font: inherit;
  font-size: 15px;
  color: var(--cream-hi);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  /* Sans ça, iOS impose ses propres coins et son fond blanc. */
  -webkit-appearance: none;
  appearance: none;
}

.form textarea { resize: vertical; min-height: 96px; }

/* La flèche du select disparaît avec appearance:none : on la redessine. */
.form select {
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
                    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: right 20px center, right 14px center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

.form option { color: var(--ink); background: var(--cream-hi); }

.form input[type="file"] {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--muted);
  background: var(--surface);
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
}

.form input[type="file"]::file-selector-button {
  margin-right: 12px;
  padding: 8px 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  background: var(--gold-soft);
  border: 0;
  border-radius: var(--pill);
  cursor: pointer;
}

.form :is(input, select, textarea):focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-color: transparent;
}

.form__hint {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
}

.form label .form__hint { display: inline; margin: 0; }

/* Le piège à robots. Sorti du cadre plutôt que masqué : un display:none se
   repère, un champ hors écran se remplit. Retiré du parcours clavier et de
   l'arbre d'accessibilité par les attributs de la page. */
.form__pot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__erreur {
  margin: 18px var(--gutter) 0;
  padding: 13px 16px;
  font-size: 15px;
  font-weight: 700;
  color: var(--cream-hi);
  background: rgba(190, 60, 40, 0.22);
  border: 1px solid rgba(220, 90, 70, 0.5);
  border-radius: var(--radius-sm);
}

.form__repli {
  margin: 14px var(--gutter) 0;
  font-size: 14px;
  color: var(--muted);
}

@media (min-width: 768px) {
  /* Deux colonnes pour les paires prénom/nom et e-mail/téléphone, comme sur
     l'ancien formulaire. En mobile elles restent empilées. */
  .form__row { grid-template-columns: 1fr 1fr; }
}

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--cream-hi);
  font-size: 13px;
  font-weight: 700;
  padding: 13px 0;
}
.btn--ghost:hover {
  color: var(--cream-hi);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.04);
}

.quicklinks {
  display: flex;
  justify-content: center;
  gap: 22px;
  padding-top: 2px;
}
.quicklinks a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}
.quicklinks a:hover { color: var(--cream); }

/* --- Sections ------------------------------------------------------------- */

.block { padding: 26px var(--gutter) 6px; }

.block__title {
  margin-bottom: 12px;
  color: var(--cream);
  font-family: var(--black);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.tiles { display: grid; gap: 10px; }
.tiles--3 { grid-template-columns: repeat(3, 1fr); gap: 8px; }
.tiles--2 { grid-template-columns: repeat(2, 1fr); }

.tile {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 6px;
  text-align: center;
  color: var(--cream-hi);
  font-weight: 700;
  font-size: 13px;
}
.tile:hover {
  color: var(--cream-hi);
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.22);
}

/* --- Carte Canva embarquée ------------------------------------------------ */

/* Le ratio est posé en style inline depuis les dimensions réelles du design :
   la place est réservée avant le chargement de l'iframe, la page ne saute pas. */
.canva {
  margin: 18px var(--gutter) 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.canva iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Cartes illustrées ---------------------------------------------------- */

.card {
  position: relative;
  display: block;
  overflow: hidden;
}

.card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.card:hover img { transform: scale(1.04); }

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 8, 6, 0) 50%, rgba(10, 8, 6, 0.85) 100%);
}

.card__body {
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  display: block;
}

.card__kicker {
  display: block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card__title {
  display: block;
  color: var(--cream-hi);
  font-weight: 700;
}

.card--wide {
  margin: 22px var(--gutter) 0;
  height: 220px;
  border-radius: var(--radius-lg);
}
.card--wide .card__body { padding: 0 18px 16px; }
.card--wide .card__title { margin-top: 2px; font-size: 14px; }

.card--tall {
  height: 130px;
  border-radius: var(--radius-md);
}
.card--tall::after {
  background: linear-gradient(180deg, rgba(10, 8, 6, 0) 45%, rgba(10, 8, 6, 0.88) 100%);
}
.card--tall .card__body { padding: 0 10px 10px; }
.card--tall .card__title { font-size: 13px; }

/* --- Encart contact ------------------------------------------------------- */

.panel {
  margin: 26px var(--gutter) 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
}

.panel__title {
  margin-bottom: 4px;
  color: var(--cream);
  font-family: var(--black);
  font-weight: 400;
  font-size: 16px;
}

.panel__address {
  display: block;
  margin-bottom: 10px;
  color: var(--cream);
  font-size: 13px;
  font-style: normal;
  line-height: 1.55;
}

.panel__text {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
}
.panel__text + .panel__text { margin-top: -8px; }
.panel__text a { color: var(--gold); }
.panel__text a:hover { color: var(--gold-hi); }

/* --- Pages intérieures ---------------------------------------------------- */

.page {
  padding: 34px var(--gutter) 10px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page__title {
  color: var(--cream-hi);
  font-family: var(--black);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
}

.page__lead {
  color: var(--cream);
  font-size: 15px;
  line-height: 1.6;
}

.section { padding: 26px var(--gutter) 0; }

.section__title {
  margin-bottom: 10px;
  color: var(--cream);
  font-family: var(--black);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.25;
}

.prose p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.prose p + p { margin-top: 12px; }
.prose strong { color: var(--cream); font-weight: 700; }

/* Points pratiques : horaires, conditions groupes, règles du clubbing. */
.facts {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.facts li {
  position: relative;
  padding: 11px 0 11px 22px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--cream);
  font-size: 14px;
  line-height: 1.5;
}
.facts li:last-child { border-bottom: 0; }
.facts li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 18px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* Bandeau d'avertissement — règles à ne pas manquer (âge, réservation). */
.notice {
  margin: 16px var(--gutter) 0;
  padding: 14px 16px;
  background: rgba(227, 161, 63, 0.1);
  border: 1px solid rgba(227, 161, 63, 0.35);
  border-radius: var(--radius-md);
  color: var(--cream);
  font-size: 13px;
  line-height: 1.55;
}

.section .btn { margin-top: 16px; }

/* --- Pied de page --------------------------------------------------------- */

.footer {
  padding: 30px var(--gutter) 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer__logo {
  width: auto;
  height: 26px;
  opacity: 0.6;
  filter: brightness(0) invert(1);
}

.footer__phone {
  color: var(--gold);
  font-family: var(--black);
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 0.01em;
}
.footer__phone:hover { color: var(--gold-hi); }

.footer__note {
  margin-top: -4px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.footer__social { display: flex; gap: 18px; }
.footer__social a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}
.footer__social a:hover { color: var(--cream); }

/* --- Menu plein écran ----------------------------------------------------- */

.overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  /* La maquette posait 0.97 : le texte de l'en-tête transparaissait derrière
     le logo du menu et ça se lisait comme un défaut d'affichage. Opaque. */
  background: var(--ink-deep);
  display: flex;
  flex-direction: column;
  padding: calc(36px + env(safe-area-inset-top)) 26px
           calc(26px + env(safe-area-inset-bottom));
  overflow-y: auto;
  overscroll-behavior: contain;
}
.overlay[hidden] { display: none; }

/* Même colonne que la page sur grand écran. */
.overlay > * {
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
}

.overlay__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.overlay__logo {
  width: auto;
  height: 34px;
  filter: brightness(0) invert(1);
}

.overlay__close {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--cream);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}
.overlay__close:hover { background: rgba(255, 255, 255, 0.18); }

.overlay__nav {
  display: flex;
  flex-direction: column;
  margin-top: 44px;
}

.navlink {
  display: block;
  color: var(--cream-hi);
  font-family: var(--black);
  font-weight: 400;
  font-size: 19px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-soft);
}
.navlink:hover { color: var(--gold); }

.navlink--sm    { font-size: 17px; }
.navlink--muted { color: var(--muted); border-bottom: 0; font-size: 16px; }

.navlink--toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
  cursor: pointer;
}

.navlink__chevron {
  color: var(--gold);
  font-size: 14px;
  transition: transform 200ms ease;
}
.navlink--toggle[aria-expanded='true'] .navlink__chevron { transform: rotate(180deg); }

.subnav {
  display: flex;
  flex-direction: column;
  padding-left: 16px;
}
.subnav[hidden] { display: none; }

.subnav a {
  color: var(--gold);
  font-weight: 700;
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.15);
}
.subnav a:last-child { border-bottom: 1px solid var(--line-soft); }

/* Verrou de défilement pendant l'ouverture du menu. */
body.is-locked { overflow: hidden; }

/* ==========================================================================
   Tablette — on élargit, la structure ne change pas encore
   ========================================================================== */

@media (min-width: 768px) {
  :root { --gutter: 32px; }

  .shell { max-width: 720px; }
  .overlay > * { max-width: 720px; }

  .brand { padding-top: 34px; }
  .brand__logo img { width: 260px; }
  .brand__tagline { font-size: 26px; }

  .hero--home { --hero-h: 520px; }
  .hero { --hero-h: 340px; }

  .card--wide { height: 300px; }
  .card--tall { height: 190px; }

  .page__title { font-size: 34px; }
  .block__title,
  .section__title,
  .panel__title { font-size: 19px; }

  /* Un bouton pleine largeur devient disgracieux passé ~500px : on le ramène
     à la largeur de son texte, avec un minimum pour garder de la présence. */
  .btn { width: fit-content; min-width: 280px; padding-inline: 32px; }
  .actions { align-items: center; }
  .page .btn,
  .section .btn { align-self: flex-start; }
}

/* ==========================================================================
   Desktop — navigation horizontale et bande hero en deux colonnes
   ========================================================================== */

@media (min-width: 1024px) {
  :root { --gutter: 40px; }

  .shell { max-width: 1120px; }

  /* --- En-tête ------------------------------------------------------------ */

  .topbar {
    gap: 32px;
    padding-top: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line-soft);
  }

  /* Le burger et le menu plein écran ne servent plus qu'en dessous de 1024px. */
  .burger { display: none; }

  /* Le logo remplace « TILFF – LIÈGE » dans le coin gauche. */
  .topbar__city { display: none; }

  .topbar__brand {
    display: block;
    flex-shrink: 0;
    line-height: 0;
  }
  /* 220px de large, comme le logo de la maquette mobile. Le lockup fait
     277×167, donc ~133px de haut : c'est ce qui fixe la hauteur de la barre. */
  .topbar__brand img {
    width: 220px;
    height: auto;
    filter: brightness(0) invert(1);
    transition: opacity 200ms ease;
  }
  .topbar__brand:hover img { opacity: 0.75; }

  .mainnav { display: block; margin-left: auto; }

  .mainnav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 26px;
  }

  .mainnav__item { position: relative; }

  .mainnav__link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: 0;
    padding: 6px 0;
    cursor: pointer;
    color: var(--cream);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }
  .mainnav__link:hover { color: var(--gold); }

  .mainnav__chevron {
    color: var(--gold);
    font-size: 11px;
    transition: transform 200ms ease;
  }
  .mainnav__toggle[aria-expanded='true'] .mainnav__chevron { transform: rotate(180deg); }

  /* Sous-menu Cartes. */
  .mainnav__sub {
    position: absolute;
    top: calc(100% + 14px);
    left: -18px;
    z-index: 40;
    min-width: 176px;
    list-style: none;
    margin: 0;
    padding: 8px;
    background: var(--ink-deep);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
  }
  .mainnav__sub[hidden] { display: none; }

  .mainnav__sub a {
    display: block;
    padding: 9px 12px;
    border-radius: 8px;
    color: var(--cream);
    font-size: 13px;
    font-weight: 600;
  }
  .mainnav__sub a:hover { background: rgba(255, 255, 255, 0.07); color: var(--gold); }

  .topbar__cta {
    display: inline-block;
    flex-shrink: 0;
    padding: 11px 22px;
    border-radius: var(--pill);
    background: var(--gold);
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
  }
  .topbar__cta:hover { background: var(--gold-hi); color: var(--ink); }

  /* --- Bloc marque -------------------------------------------------------- */

  /* Le logo est passé dans l'en-tête : celui du centre ferait doublon. On le
     retire visuellement SANS le supprimer du DOM — c'est le h1 de la home, et
     son alt est le titre de la page pour Google comme pour les lecteurs
     d'écran. Un display:none le retirerait aussi de l'accessibilité. */
  .brand__logo {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .brand { padding-top: 30px; }
  .brand__tagline { margin-top: 0; font-size: 30px; }

  /* --- Bande hero en deux colonnes ---------------------------------------- */

  .heroband {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 4fr);
    align-items: stretch;
    gap: 28px;
    margin: 40px var(--gutter) 0;
  }

  .heroband .hero {
    margin: 0;
    height: auto;          /* la hauteur vient de la grille, pas de --hero-h */
    min-height: 520px;
  }

  .heroband__aside {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 40px;
  }

  .heroband__hours {
    display: block;
    color: var(--cream);
    font-family: var(--black);
    font-weight: 400;
    font-size: 24px;
    line-height: 1.3;
  }

  .heroband__where {
    display: block;
    margin-top: -6px;
    color: var(--muted);
    font-size: 14px;
    font-style: normal;
    line-height: 1.6;
  }

  .heroband__aside .btn {
    width: 100%;
    min-width: 0;
  }

  .heroband__aside .quicklinks {
    justify-content: flex-start;
    gap: 20px;
    padding-top: 0;
  }

  /* Ailleurs, les paires de boutons (carte + réserver) passent côte à côte.
     La bande hero garde sa colonne, d'où le :not(). */
  .actions:not(.heroband__aside) {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }
  .actions:not(.heroband__aside) .quicklinks { flex-basis: 100%; }

  /* --- Sections ----------------------------------------------------------- */

  .block { padding-top: 56px; }
  .section { padding-top: 48px; }

  .block__title,
  .section__title,
  .panel__title { font-size: 21px; }

  .tiles--3 { gap: 16px; }
  .tiles--2 { gap: 16px; }

  .tile { padding: 26px 12px; font-size: 15px; }

  .card--wide { margin: 40px var(--gutter) 0; height: 420px; }
  .card--wide .card__body { padding: 0 32px 28px; }
  .card--wide .card__kicker { font-size: 12px; }
  .card--wide .card__title { font-size: 22px; }

  .card--tall { height: 300px; }
  .card--tall .card__body { padding: 0 20px 18px; }
  .card--tall .card__title { font-size: 17px; }

  /* Pages intérieures : le texte reste dans une colonne lisible même si la
     page, elle, occupe toute la largeur. */
  .page { padding-top: 56px; }
  .page__title { font-size: 44px; max-width: 20ch; }
  .page__lead,
  .prose,
  .facts { max-width: 68ch; }

  .canva { max-width: 900px; margin-inline: auto; }

  /* --- Encart contact ----------------------------------------------------- */

  .panel {
    margin: 48px var(--gutter) 0;
    padding: 36px 40px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px 40px;
  }
  .panel__title { grid-column: 1; margin-bottom: 8px; }
  .panel__address,
  .panel__text { grid-column: 1; margin-bottom: 0; }
  .panel__address { font-size: 15px; }
  .panel .btn { grid-column: 2; grid-row: 1 / -1; align-self: center; min-width: 220px; }

  /* --- Pied de page ------------------------------------------------------- */

  .footer {
    padding: 64px var(--gutter) 56px;
    margin-top: 24px;
    border-top: 1px solid var(--line-soft);
  }
  .footer__logo { height: 34px; }
}

/* Au-delà, on cesse d'élargir : une ligne de texte trop longue devient
   pénible à lire, et les photos n'ont pas la définition pour suivre. */
@media (min-width: 1360px) {
  .shell { max-width: 1240px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
