﻿*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --black: #0b0b0b;
      --dark: #111111;
      --card: #161616;
      --border: #222222;
      --gold: #c8a96e;
      --gold-dim: #a8893e;
      --white: #f0ece4;
      --grey: #888880;
      --font-serif: 'Cormorant Garamond', Georgia, serif;
      --font-sans: 'Jost', sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--black);
      color: var(--white);
      font-family: var(--font-sans);
      font-weight: 300;
      overflow-x: hidden;
    }

    /* â”€â”€â”€ NAV â”€â”€â”€ */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.5rem 3rem;
      transition: background 0.4s, backdrop-filter 0.4s;
    }
    nav.scrolled {
      background: rgba(11,11,11,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }
    .nav-logo {
      font-family: var(--font-serif);
      font-size: 1.6rem;
      font-weight: 400;
      letter-spacing: 0.08em;
      color: var(--gold);
      text-decoration: none;
    }
    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }
    .nav-links a {
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--white);
      text-decoration: none;
      opacity: 0.7;
      transition: opacity 0.2s, color 0.2s;
    }
    .nav-links a:hover { opacity: 1; color: var(--gold); }
    .nav-phone {
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      color: var(--gold);
      text-decoration: none;
      border: 1px solid var(--gold-dim);
      padding: 0.5rem 1.1rem;
      transition: background 0.2s, color 0.2s;
    }
    .nav-phone:hover { background: var(--gold); color: var(--black); }

    /* â”€â”€â”€ HERO â”€â”€â”€ */
    #hero {
      position: relative;
      height: 100vh;
      min-height: 700px;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('../assets/images/hero-background.jpg');
      background-size: cover;
      background-position: center 30%;
      filter: grayscale(20%) brightness(0.45);
      transform: scale(1.05);
      animation: heroZoom 12s ease-out forwards;
    }
    @keyframes heroZoom {
      from { transform: scale(1.05); }
      to   { transform: scale(1.0); }
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(11,11,11,0.98) 0%,
        rgba(11,11,11,0.5) 50%,
        rgba(11,11,11,0.1) 100%
      );
    }
    .hero-content {
      position: relative;
      z-index: 2;
      padding: 0 3rem 7rem;
      max-width: 900px;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 1s 0.5s ease forwards;
    }
    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }
    .hero-eyebrow {
      font-size: 0.68rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.2rem;
    }
    .hero-title {
      font-family: var(--font-serif);
      font-size: clamp(4.5rem, 10vw, 9rem);
      font-weight: 300;
      line-height: 0.92;
      letter-spacing: -0.02em;
      color: var(--white);
      margin-bottom: 1.8rem;
    }
    .hero-title em {
      font-style: italic;
      color: var(--gold);
    }
    .hero-sub {
      font-size: 0.9rem;
      font-weight: 300;
      letter-spacing: 0.08em;
      color: rgba(240,236,228,0.6);
      max-width: 420px;
      line-height: 1.7;
    }

    /* ─── HERO STATUS ─── */
    .hero-status {
      display: flex;
      width: fit-content;
      align-items: center;
      gap: 0.7rem;
      margin-top: 1.4rem;
      margin-bottom: 0.4rem;
      font-size: 0.68rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(240,236,228,0.45);
    }
    .hero-status-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--gold-dim);
      flex-shrink: 0;
    }
    .hero-status.is-open .hero-status-dot {
      background: #6aab7a;
      box-shadow: 0 0 6px rgba(106,171,122,0.45);
    }

    .hero-closure-notice {
      margin-top: 1.6rem;
      max-width: 540px;
      padding: 1rem 1.15rem;
      border: 1px solid rgba(200,169,110,0.22);
      border-left: 2px solid var(--gold);
      background:
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)),
        rgba(11,11,11,0.5);
      backdrop-filter: blur(8px);
      box-shadow: 0 18px 40px rgba(0,0,0,0.18);
    }
    .hero-closure-notice-label {
      font-size: 0.58rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.45rem;
    }
    .hero-closure-notice-title {
      font-family: var(--font-serif);
      font-size: 1.45rem;
      font-weight: 300;
      color: var(--white);
      line-height: 1.1;
    }
    .hero-closure-notice-dates,
    .hero-closure-notice-message {
      color: rgba(240,236,228,0.78);
      line-height: 1.7;
    }
    .hero-closure-notice-dates {
      margin-top: 0.65rem;
      font-size: 0.84rem;
      letter-spacing: 0.04em;
    }
    .hero-closure-notice-message {
      margin-top: 0.45rem;
      font-size: 0.78rem;
    }
    .hero-scroll {
      position: absolute;
      bottom: 2.5rem;
      right: 3rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      opacity: 0.4;
      animation: fadeUp 1s 1.2s ease forwards, pulse 2s 2s infinite;
    }
    @keyframes pulse { 0%,100%{opacity:0.4} 50%{opacity:0.7} }
    .hero-scroll span {
      font-size: 0.6rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      writing-mode: vertical-rl;
    }
    .hero-scroll-line {
      width: 1px;
      height: 60px;
      background: linear-gradient(to bottom, var(--gold), transparent);
    }

    /* â”€â”€â”€ SECTION COMMON â”€â”€â”€ */
    section { padding: 8rem 3rem; }
    .section-label {
      font-size: 0.65rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 2rem;
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .section-label::before {
      content: '';
      display: block;
      width: 40px;
      height: 1px;
      background: var(--gold-dim);
    }
    .section-title {
      font-family: var(--font-serif);
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 300;
      line-height: 1.1;
      margin-bottom: 2rem;
    }
    .section-title em { font-style: italic; color: var(--gold); }

    /* â”€â”€â”€ DIVIDER â”€â”€â”€ */
    .divider {
      border: none;
      border-top: 1px solid var(--border);
      margin: 0 3rem;
    }

    /* â”€â”€â”€ ABOUT â”€â”€â”€ */
    #about {
      max-width: 1400px;
      margin: 0 auto;
      padding-bottom: 3rem;
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }
    .about-text p {
      font-size: 1.05rem;
      line-height: 1.9;
      color: rgba(240,236,228,0.75);
      margin-bottom: 1.5rem;
    }
    .about-text p strong {
      color: var(--white);
      font-weight: 400;
    }
    .about-quote {
      font-family: var(--font-serif);
      font-size: 1.6rem;
      font-style: italic;
      font-weight: 300;
      color: var(--gold);
      border-left: 2px solid var(--gold-dim);
      padding-left: 1.5rem;
      margin: 2.5rem 0;
      line-height: 1.5;
    }
    .owners-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.2rem;
    }
    .owner-card {
      position: relative;
      overflow: hidden;
      aspect-ratio: 3/4;
    }
    .owner-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      filter: grayscale(10%) brightness(0.85);
      transition: transform 0.6s ease, filter 0.6s ease;
    }
    .owner-card:hover img { transform: scale(1.04); filter: grayscale(0%) brightness(0.95); }
    .owner-card-label {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 2rem 1.2rem 1.2rem;
      background: linear-gradient(to top, rgba(11,11,11,0.9), transparent);
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .owner-card:nth-child(2) { margin-top: 3rem; }

    /* â”€â”€â”€ FOOD GALLERY strip â”€â”€â”€ */
    .food-strip {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 1px;
      background: var(--black);
      overflow: hidden;
      height: clamp(260px, 30vw, 400px);
    }
    .food-strip-item {
      position: relative;
      overflow: hidden;
    }
    .food-strip-item:first-child { }
    .food-strip-item img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease;
      filter: brightness(0.88);
    }
    .food-strip-item:hover img { transform: scale(1.05); filter: brightness(1); }

    /* â”€â”€â”€ MENU â”€â”€â”€ */
    #menu {
      background: var(--dark);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .menu-inner {
      max-width: 1100px;
      margin: 0 auto;
    }
    .menu-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 4rem;
      flex-wrap: wrap;
      gap: 2rem;
    }
    .menu-note {
      font-size: 0.8rem;
      color: var(--grey);
      letter-spacing: 0.05em;
      max-width: 320px;
      line-height: 1.7;
      font-style: italic;
    }
    .menu-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: var(--border);
    }
    .menu-section {
      background: var(--dark);
      padding: 3rem;
    }
    .menu-section-title {
      font-size: 0.65rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 2rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid var(--border);
    }
    .menu-item {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      padding: 0.9rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.04);
      gap: 1rem;
    }
    .menu-item:last-child { border-bottom: none; }
    .menu-item-name {
      font-family: var(--font-serif);
      font-size: 1.1rem;
      font-weight: 400;
      color: var(--white);
    }
    .menu-item-desc {
      font-size: 0.73rem;
      color: var(--grey);
      letter-spacing: 0.03em;
      margin-top: 0.2rem;
    }
    .menu-item-price {
      font-family: var(--font-serif);
      font-size: 1rem;
      color: var(--gold);
      white-space: nowrap;
      flex-shrink: 0;
    }
    .menu-formule {
      grid-column: 1 / -1;
      background: var(--card);
      padding: 3rem;
      border-top: 1px solid var(--border);
    }
    .formule-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
      margin-top: 2rem;
    }
    .formule-card {
      background: var(--dark);
      padding: 2rem;
      text-align: center;
    }
    .formule-card-name {
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--grey);
      margin-bottom: 1rem;
    }
    .formule-card-price {
      font-family: var(--font-serif);
      font-size: 2.5rem;
      font-weight: 300;
      color: var(--gold);
      margin-bottom: 0.5rem;
    }
    .formule-card-desc {
      font-size: 0.78rem;
      color: var(--grey);
      line-height: 1.6;
    }
    .menu-ardoise-note {
      margin-top: 3rem;
      padding: 2rem;
      border: 1px solid var(--border);
      text-align: center;
      font-family: var(--font-serif);
      font-style: italic;
      font-size: 1.1rem;
      color: rgba(240,236,228,0.5);
    }

    /* Formules block */
    .menu-formules-block {
      margin-bottom: 4rem;
      padding: 3rem;
      border: 1px solid var(--border);
      background: rgba(255,255,255,0.02);
    }
    .formules-row {
      display: flex;
      gap: 0;
      align-items: stretch;
    }
    .formule-bloc { flex: 1; padding: 0 2rem; }
    .formule-bloc:first-child { padding-left: 0; }
    .formule-bloc:last-child { padding-right: 0; }
    .formule-separateur { width: 1px; background: var(--border); margin: 0 1rem; }
    .formule-bloc-label {
      font-family: var(--font-serif);
      font-size: 1.4rem;
      font-weight: 300;
      color: var(--gold);
      margin-bottom: 0.3rem;
    }
    .formule-bloc-sub {
      font-size: 0.75rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--grey);
      margin-bottom: 1.8rem;
    }
    .formule-cards { display: flex; gap: 1rem; }
    .formule-card {
      flex: 1;
      border: 1px solid var(--border);
      padding: 1.5rem 1rem;
      text-align: center;
      transition: border-color 0.3s;
    }
    .formule-card:hover { border-color: var(--gold); }
    .formule-card-name {
      font-family: var(--font-serif);
      font-size: 1rem;
      font-weight: 300;
      margin-bottom: 0.6rem;
      color: var(--off-white);
    }
    .formule-card-price {
      font-family: var(--font-serif);
      font-size: 2rem;
      font-weight: 300;
      color: var(--gold);
      margin-bottom: 0.6rem;
    }
    .formule-card-desc {
      font-size: 0.75rem;
      color: var(--grey);
      letter-spacing: 0.03em;
      line-height: 1.6;
    }

    /* P'tit Bouche */
    .menu-ptit {
      padding: 2rem;
      border: 1px solid var(--border);
      text-align: center;
      margin-top: 0.5rem;
    }
    .menu-ptit-age {
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--grey);
      margin-bottom: 0.8rem;
    }
    .menu-ptit-content {
      font-family: var(--font-serif);
      font-size: 1.2rem;
      font-weight: 300;
      margin-bottom: 0.8rem;
      color: var(--off-white);
    }
    .menu-ptit-price {
      font-family: var(--font-serif);
      font-size: 2.2rem;
      font-weight: 300;
      color: var(--gold);
    }

    /* Vins */
    .vins-formats {
      display: flex;
      margin-bottom: 2rem;
      border: 1px solid var(--border);
    }
    .vin-format {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 1.2rem 0.8rem;
      border-right: 1px solid var(--border);
      text-align: center;
    }
    .vin-format:last-child { border-right: none; }
    .vin-format-label {
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--grey);
      margin-bottom: 0.5rem;
    }
    .vin-format-price {
      font-family: var(--font-serif);
      font-size: 1.5rem;
      font-weight: 300;
      color: var(--gold);
    }
    .vins-selection { display: flex; flex-direction: column; gap: 1.5rem; }
    .vin-couleur-label {
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.6rem;
    }
    .vin-liste { list-style: none; padding: 0; margin: 0; }
    .vin-liste li {
      font-size: 0.85rem;
      color: rgba(240,236,228,0.65);
      padding: 0.3rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.04);
      letter-spacing: 0.02em;
    }
    .vin-liste li:last-child { border-bottom: none; }

    @media (max-width: 900px) {
      .formules-row { flex-direction: column; gap: 2rem; }
      .formule-separateur { width: 100%; height: 1px; margin: 0; }
      .formule-bloc { padding: 0; }
    }


    /* â”€â”€â”€ DISTINCTION â”€â”€â”€ */
    .about-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
      margin: 1.5rem 0 2rem;
    }
    .about-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.8rem 1rem;
      border: 1px solid var(--border);
      background: rgba(255,255,255,0.02);
      color: var(--white);
      text-decoration: none;
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    }
    .about-badge:hover {
      border-color: var(--gold);
      color: var(--gold);
      transform: translateY(-1px);
    }
    .about-badge-mark {
      font-family: var(--font-serif);
      font-size: 1.2rem;
      color: var(--gold);
      line-height: 1;
    }

    /* â”€â”€â”€ CHEF â”€â”€â”€ */
    #chef {
      max-width: 1400px;
      margin: 0 auto;
    }
    .chef-grid {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 5rem;
      align-items: start;
    }
    .chef-visual {
      position: relative;
      overflow: hidden;
      aspect-ratio: 4 / 5;
      border: 1px solid var(--border);
      background: var(--card);
    }
    .chef-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(10%) brightness(0.82);
      transition: transform 0.6s ease, filter 0.6s ease;
    }
    .chef-visual:hover img { transform: scale(1.03); filter: grayscale(0%) brightness(0.9); }
    .chef-visual-caption {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 2rem 1.5rem 1.4rem;
      background: linear-gradient(to top, rgba(11,11,11,0.92), transparent);
      color: var(--gold);
      font-size: 0.68rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }
    .chef-copy p {
      font-size: 1.02rem;
      line-height: 1.95;
      color: rgba(240,236,228,0.75);
      margin-bottom: 1.3rem;
    }
    .chef-signature {
      margin-top: 1.8rem;
      padding-top: 1rem;
      border-top: 1px solid var(--border);
      font-family: var(--font-serif);
      font-size: 1.2rem;
      color: var(--gold);
      font-style: italic;
    }

    /* â”€â”€â”€ MENU ADDITIONS â”€â”€â”€ */
    .menu-intro-note {
      margin-top: 1.25rem;
      padding: 1rem 1.1rem;
      border: 1px solid var(--border);
      background: rgba(255,255,255,0.02);
      font-size: 0.76rem;
      color: rgba(240,236,228,0.7);
      line-height: 1.7;
      letter-spacing: 0.03em;
    }
    .menu-intro-note strong { color: var(--gold); font-weight: 400; }
    .menu-vins {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 2rem;
      align-items: start;
    }
    .menu-vins .menu-section-title {
      grid-column: 1 / -1;
      margin-bottom: 0.5rem;
    }
    .vins-left {
      min-width: 0;
    }
    .vins-right {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .vin-du-mois-card,
    .vin-prix-note {
      border: 1px solid var(--border);
      background: rgba(255,255,255,0.02);
      padding: 1.4rem;
    }
    .vin-du-mois-label,
    .vin-prix-note-label {
      font-size: 0.68rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.8rem;
    }
    .vin-du-mois-card p,
    .vin-prix-note p {
      font-size: 0.82rem;
      line-height: 1.8;
      color: rgba(240,236,228,0.72);
    }
    .vin-du-mois-card p strong,
    .vin-prix-note p strong {
      color: var(--white);
      font-weight: 400;
    }
    .vins-formats {
      margin-bottom: 1.2rem;
    }
    .vins-selection {
      gap: 1.1rem;
    }

    @media (max-width: 900px) {
      .chef-grid,
      .menu-vins {
        grid-template-columns: 1fr;
      }
      .about-badges {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    /* â”€â”€â”€ HOURS â”€â”€â”€ */
    #hours {
      max-width: 1400px;
      margin: 0 auto;
      padding-top: 3rem;
    }
    .hours-inner {
      max-width: 860px;
      margin: 0 auto;
    }
    .hours-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: var(--border);
      margin-top: 3rem;
    }
    .hours-day {
      background: var(--dark);
      padding: 1.8rem 2.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .hours-day.wide { grid-column: 1 / -1; }
    .hours-day-name {
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--grey);
    }
    .hours-day-time {
      font-family: var(--font-serif);
      font-size: 1rem;
      color: var(--white);
      text-align: right;
    }
    .hours-day.closed .hours-day-time { color: rgba(240,236,228,0.25); font-style: italic; }
    .hours-day.highlight { background: var(--card); }
    .hours-day.highlight .hours-day-name { color: var(--gold); }
    .hours-info {
      margin-top: 3rem;
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
    }
    .hours-info-item {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      font-size: 0.78rem;
      color: var(--grey);
      letter-spacing: 0.05em;
    }
    .hours-info-item::before {
      content: "";
      width: 0.38rem;
      height: 0.38rem;
      border-radius: 50%;
      background: var(--gold-dim);
      flex: 0 0 auto;
    }

    /* â”€â”€â”€ LOCATION â”€â”€â”€ */
    #location {
      background: var(--dark);
      border-top: 1px solid var(--border);
    }
    .location-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 5rem;
      align-items: start;
    }
    .location-details { padding-top: 1rem; }
    .contact-block {
      margin-bottom: 3rem;
    }
    .contact-label {
      font-size: 0.6rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.8rem;
    }
    .contact-value {
      font-family: var(--font-serif);
      font-size: 1.3rem;
      font-weight: 300;
      color: var(--white);
      line-height: 1.5;
    }
    .contact-value a {
      color: inherit;
      text-decoration: none;
      transition: color 0.2s;
    }
    .contact-value a:hover { color: var(--gold); }
    .payment-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 0.8rem;
    }
    .chip {
      font-size: 0.62rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border: 1px solid var(--border);
      color: var(--grey);
      padding: 0.3rem 0.7rem;
    }
    .map-placeholder {
      width: 100%;
      aspect-ratio: 4/3;
      background: var(--card);
      border: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      text-decoration: none;
      transition: border-color 0.3s;
    }
    .map-placeholder:hover { border-color: var(--gold-dim); }
    .map-placeholder-icon {
      width: 48px;
      height: 48px;
      border: 1px solid var(--gold-dim);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .map-placeholder-icon svg { width: 20px; height: 20px; fill: var(--gold); }
    .map-placeholder-text {
      font-size: 0.68rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--grey);
    }
    .map-placeholder-address {
      font-family: var(--font-serif);
      font-size: 1rem;
      color: rgba(240,236,228,0.6);
      text-align: center;
    }

    /* â”€â”€â”€ FOOTER â”€â”€â”€ */
    footer {
      padding: 3rem;
      border-top: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-logo {
      font-family: var(--font-serif);
      font-size: 1.4rem;
      color: var(--gold);
      font-weight: 300;
    }
    .footer-copy {
      font-size: 0.65rem;
      letter-spacing: 0.1em;
      color: var(--grey);
      text-transform: uppercase;
    }

    /* â”€â”€â”€ SCROLL REVEAL â”€â”€â”€ */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }


    .hero-badges {
      margin-top: 2rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
    }
    .hero-ccf {
      display: inline-flex;
      align-items: center;
      gap: 1rem;
      padding: 0.9rem 1rem;
      border: 1px solid rgba(200,169,110,0.28);
      background: rgba(11,11,11,0.38);
      backdrop-filter: blur(6px);
      text-decoration: none;
      color: var(--white);
      transition: border-color 0.2s, transform 0.2s, background 0.2s;
      max-width: 520px;
    }
    .hero-ccf:hover {
      border-color: rgba(200,169,110,0.65);
      background: rgba(11,11,11,0.55);
      transform: translateY(-1px);
    }
    .hero-ccf img {
      width: 60px;
      height: auto;
      flex: 0 0 auto;
      filter: drop-shadow(0 6px 20px rgba(0,0,0,0.3));
    }
    .hero-ccf-text {
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
    }
    .hero-ccf-kicker {
      font-size: 0.58rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      opacity: 0.95;
    }
    .hero-ccf-label {
      font-size: 0.88rem;
      line-height: 1.5;
      color: rgba(240,236,228,0.85);
    }

    #chef {
      max-width: 1400px;
      margin: 0 auto;
    }
    .chef-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
      gap: 3rem;
      align-items: start;
    }
    .chef-copy p {
      font-size: 1rem;
      line-height: 1.9;
      color: rgba(240,236,228,0.82);
      margin-bottom: 1.3rem;
      max-width: 760px;
    }
    .chef-copy strong { color: var(--white); font-weight: 400; }
    .chef-side-card {
      border: 1px solid var(--border);
      background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
      padding: 2rem;
      position: sticky;
      top: 120px;
    }
    .chef-side-card h3 {
      font-family: var(--font-serif);
      font-size: 2rem;
      font-weight: 300;
      line-height: 1.1;
      margin-bottom: 1rem;
    }
    .chef-side-card p {
      color: rgba(240,236,228,0.72);
      line-height: 1.8;
      font-size: 0.96rem;
      margin-bottom: 1rem;
    }
    .chef-side-card .chef-note {
      padding-top: 1rem;
      border-top: 1px solid var(--border);
      color: var(--gold);
      font-size: 0.78rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }



    .chef-highlight {
      position: relative;
      max-width: 1400px;
      margin: 0 auto;
      padding: 3rem;
      border: 1px solid rgba(200,169,110,0.18);
      background:
        radial-gradient(circle at top right, rgba(200,169,110,0.08), transparent 32%),
        linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
      overflow: hidden;
    }
    .chef-highlight::before {
      content: '';
      position: absolute;
      inset: 0;
      border: 1px solid rgba(200,169,110,0.08);
      pointer-events: none;
      transform: scale(0.985);
    }
    .chef-kicker {
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      margin-bottom: 1rem;
      font-size: 0.68rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .chef-kicker::before {
      content: '';
      width: 34px;
      height: 1px;
      background: var(--gold-dim);
    }
    .chef-title-wrap {
      max-width: 860px;
      margin-bottom: 2rem;
    }
    .chef-lead {
      font-family: var(--font-serif);
      font-size: clamp(1.55rem, 2.8vw, 2.4rem);
      line-height: 1.35;
      color: rgba(240,236,228,0.92);
      margin-bottom: 1.2rem;
    }
    .chef-lead em { color: var(--gold); font-style: italic; }
    .chef-story-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
      gap: 2rem;
      align-items: start;
    }
    .chef-story-card {
      border: 1px solid var(--border);
      background: rgba(255,255,255,0.02);
      padding: 1.5rem;
    }
    .chef-story-card-title {
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.9rem;
    }
    .chef-story-card ul {
      list-style: none;
      display: grid;
      gap: 0.9rem;
    }
    .chef-story-card li {
      color: rgba(240,236,228,0.78);
      line-height: 1.7;
      font-size: 0.95rem;
      padding-bottom: 0.9rem;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .chef-story-card li:last-child { border-bottom: none; padding-bottom: 0; }
    .hours-private-note {
      margin: 2.5rem 0 0;
      padding: 1.4rem 1.5rem;
      border: 1px solid rgba(200,169,110,0.2);
      background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
      color: rgba(240,236,228,0.82);
      line-height: 1.8;
      font-size: 0.98rem;
    }
    .hours-private-note strong {
      color: var(--white);
      font-weight: 400;
    }

    /* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
    @media (max-width: 900px) {
      nav { padding: 1.2rem 1.5rem; }
      .nav-links { display: none; }
      section { padding: 5rem 1.5rem; }
      .divider { margin: 0 1.5rem; }
      .about-grid, .chef-grid, .chef-story-grid, .menu-grid, .hours-grid, .location-inner { grid-template-columns: 1fr; }
      .owners-grid { grid-template-columns: 1fr 1fr; }
      .food-strip { grid-template-columns: 1fr 1fr; height: auto; }
      .food-strip-item { aspect-ratio: 4/3; }
      .food-strip-item:first-child { grid-column: 1/-1; aspect-ratio: 16/9; }
      .formule-cards { grid-template-columns: 1fr; }
      .menu-formule { grid-column: 1; }
      .hero-content { padding: 0 1.5rem 5rem; }
      .hero-closure-notice { max-width: 100%; }
      .hero-badges { flex-direction: column; }
      .hero-ccf { max-width: 100%; align-items: flex-start; }
      .hero-ccf img { width: 52px; }
      .chef-side-card { position: static; }
      .chef-highlight { padding: 2rem 1.25rem; }
      footer { padding: 2rem 1.5rem; }
    }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  padding: 0.85rem 1rem;
  background: var(--gold);
  color: var(--black);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: relative;
  z-index: 110;
}

main {
  display: block;
}

section[id] {
  scroll-margin-top: 7rem;
}

.contact-value address {
  font-style: normal;
}

.footer-phone {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-decoration: none;
}

.footer-phone:hover {
  color: var(--white);
}
