
    :root {
      color-scheme: light dark;
      --bg: #f7f1ea;
      --surface: #fffaf5;
      --surface-2: #f3e8dc;
      --ink: #2d2119;
      --muted: #756457;
      --accent: #8c5a37;
      --accent-2: #c98d5a;
      --accent-3: #e8c39b;
      --line: rgba(45, 33, 25, 0.1);
      --shadow: 0 18px 40px rgba(35, 22, 14, 0.12);
      --shadow-soft: 0 14px 30px rgba(35, 22, 14, 0.08);
      --radius: 22px;
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--ink);
      background:
        radial-gradient(circle at top left, rgba(232, 195, 155, 0.18), transparent 32%),
        linear-gradient(180deg, #fbf6f0 0%, #f7f1ea 52%, #f2e8dc 100%);
      line-height: 1.5;
    }

    a { color: inherit; text-decoration: none; }

    img {
      display: block;
      width: 100%;
      height: auto;
      object-fit: cover;
    }

    .container {
      width: min(calc(100% - 32px), var(--max));
      margin: 0 auto;
    }

    .shell {
      position: relative;
      overflow: clip;
    }

    .shell::before,
    .shell::after {
      content: "";
      position: absolute;
      border-radius: 999px;
      pointer-events: none;
      z-index: 0;
      filter: blur(10px);
      opacity: 0.65;
    }

    .shell::before {
      width: 320px;
      height: 320px;
      top: 480px;
      right: -140px;
      background: radial-gradient(circle, rgba(201, 141, 90, 0.2), rgba(201, 141, 90, 0));
    }

    .shell::after {
      width: 260px;
      height: 260px;
      left: -100px;
      bottom: 220px;
      background: radial-gradient(circle, rgba(140, 90, 55, 0.15), rgba(140, 90, 55, 0));
    }

    main,
    footer,
    header {
      position: relative;
      z-index: 1;
    }

    .lang-fr, .lang-en { display: none; }
    body[data-lang="fr"] .lang-fr { display: inline; }
    body[data-lang="fr"] .lang-fr.block { display: block; }
    body[data-lang="fr"] .lang-fr.flex { display: flex; }
    body[data-lang="fr"] .lang-fr.grid { display: grid; }
    body[data-lang="en"] .lang-en { display: inline; }
    body[data-lang="en"] .lang-en.block { display: block; }
    body[data-lang="en"] .lang-en.flex { display: flex; }
    body[data-lang="en"] .lang-en.grid { display: grid; }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid rgba(255,255,255,0.2);
      background: rgba(255,255,255,0.12);
      color: #fff;
      padding: 10px 16px;
      border-radius: 999px;
      backdrop-filter: blur(8px);
      font-size: 14px;
      letter-spacing: 0.02em;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(255, 253, 250, 0.97);
      border-bottom: 1px solid rgba(45, 33, 25, 0.1);
      box-shadow: 0 2px 16px rgba(35, 22, 14, 0.06);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      min-height: 76px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .brand-icon {
      flex: 0 0 auto;
    }

    .brand-mark {
      width: 48px;
      height: 48px;
      object-fit: contain;
      border-radius: 50%;
      box-shadow: 0 4px 12px rgba(35, 22, 14, 0.1);
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .brand-text strong {
      font-size: 1.1rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      line-height: 1;
      color: var(--ink);
    }

    .brand-text span {
      color: var(--muted);
      font-size: 0.78rem;
      line-height: 1.3;
    }

    .nav-links {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
      align-items: center;
    }

    .nav-links a {
      color: var(--muted);
      font-size: 0.95rem;
    }

    .nav-links a:hover { color: var(--ink); }

    .lang-toggle {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 4px;
      border-radius: 999px;
      border: 1px solid rgba(45, 33, 25, 0.12);
      background: rgba(255, 255, 255, 0.65);
    }

    .mobile-lang-toggle {
      display: none;
    }

    .theme-toggle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 8px 12px;
      border: 1px solid rgba(45, 33, 25, 0.12);
      border-radius: 999px;
      background: rgba(255,255,255,0.68);
      color: var(--ink);
      font: inherit;
      font-size: 0.82rem;
      font-weight: 750;
      cursor: pointer;
    }

    .mobile-theme-toggle {
      display: none;
    }

    .theme-action {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      white-space: nowrap;
    }

    html[data-theme="light"] .theme-action-light,
    html[data-theme="dark"] .theme-action-dark {
      display: none;
    }

    html[data-auto-dark="true"] .theme-toggle {
      display: none !important;
    }

    .theme-icon {
      font-size: 1rem;
      line-height: 1;
    }

    .lang-btn {
      border: 0;
      background: transparent;
      color: var(--muted);
      font-size: 0.82rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 8px 10px;
      border-radius: 999px;
      cursor: pointer;
    }

    body[data-lang="fr"] .lang-btn[data-set-lang="fr"],
    body[data-lang="en"] .lang-btn[data-set-lang="en"] {
      background: var(--ink);
      color: #fff;
    }

    .cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: var(--ink);
      color: #fff;
      padding: 14px 20px;
      border-radius: 999px;
      font-weight: 600;
      box-shadow: var(--shadow);
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
    }

    .cta:hover {
      transform: translateY(-1px);
      box-shadow: 0 22px 42px rgba(35, 22, 14, 0.16);
    }

    .cta.light {
      background: rgba(255,255,255,0.15);
      border: 1px solid rgba(255,255,255,0.22);
      box-shadow: none;
    }

    .hero {
      position: relative;
      color: #fff;
      min-height: 88svh;
      display: flex;
      align-items: end;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(21, 12, 8, 0.78) 0%, rgba(21, 12, 8, 0.38) 45%, rgba(21, 12, 8, 0.22) 100%),
        linear-gradient(180deg, rgba(21, 12, 8, 0.06) 0%, rgba(21, 12, 8, 0.36) 100%);
      z-index: 1;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

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

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 120px 0 72px;
      max-width: 760px;
    }

    .hero-copy {
      max-width: 700px;
    }

    .hero h1 {
      font-size: clamp(2.8rem, 7vw, 5.4rem);
      line-height: 0.96;
      margin: 18px 0 18px;
      letter-spacing: -0.04em;
    }

    .hero p {
      font-size: clamp(1.05rem, 2.5vw, 1.24rem);
      color: rgba(255,255,255,0.88);
      max-width: 640px;
      margin: 0 0 28px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      margin-top: 40px;
    }

    .hero-stat {
      background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.1));
      border: 1px solid rgba(255,255,255,0.16);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 18px;
      box-shadow: 0 18px 30px rgba(19, 12, 9, 0.14);
    }

    .hero-note {
      margin-top: 18px;
      color: rgba(255,255,255,0.72);
      font-size: 0.95rem;
      letter-spacing: 0.01em;
    }

    .hero-stat strong {
      display: block;
      font-size: 1rem;
      margin-bottom: 4px;
    }

    .hero-stat span {
      color: rgba(255,255,255,0.8);
      font-size: 0.94rem;
    }

    section { padding: 88px 0; }

    .section-head {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      align-items: end;
      margin-bottom: 28px;
      flex-wrap: wrap;
    }

    .eyebrow {
      display: inline-block;
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-size: 0.8rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    h2 {
      margin: 0;
      font-size: clamp(2rem, 4vw, 3.3rem);
      line-height: 1.04;
      letter-spacing: -0.03em;
    }

    .section-copy {
      max-width: 560px;
      color: var(--muted);
      font-size: 1rem;
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
    }

    .editorial-banner {
      margin-top: 26px;
      background: linear-gradient(135deg, rgba(140, 90, 55, 0.12), rgba(201, 141, 90, 0.08));
      border: 1px solid rgba(140, 90, 55, 0.12);
      border-radius: 24px;
      padding: 24px 26px;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 18px;
      align-items: center;
    }

    .editorial-banner strong {
      display: block;
      font-size: 1.2rem;
      margin-bottom: 8px;
    }

    .editorial-banner p {
      margin: 0;
      color: var(--muted);
    }

    .editorial-kicker {
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-size: 0.76rem;
      font-weight: 800;
      margin-bottom: 8px;
    }

    .quick-links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: flex-end;
    }

    .quick-links a {
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,0.76);
      border: 1px solid rgba(45, 33, 25, 0.08);
      font-size: 0.92rem;
      color: var(--ink);
      font-weight: 600;
    }

    .card {
      background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,250,245,0.96));
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 28px;
      box-shadow: var(--shadow-soft);
    }

    .card h3 {
      margin-top: 0;
      margin-bottom: 10px;
      font-size: 1.25rem;
    }

    .card p {
      margin: 0;
      color: var(--muted);
    }

    .feature-icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      margin-bottom: 18px;
      background: rgba(140, 90, 55, 0.1);
      color: var(--accent);
      font-weight: 800;
    }

    .menu-wrap {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 26px;
      align-items: start;
    }

    .menu-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .menu-card {
      background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,250,245,0.96));
      border: 1px solid rgba(45, 33, 25, 0.08);
      border-radius: var(--radius);
      padding: 22px;
      box-shadow: var(--shadow-soft);
      transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
    }

    .menu-card:hover,
    .menu-card.active {
      transform: translateY(-2px);
      box-shadow: var(--shadow);
      border-color: rgba(140, 90, 55, 0.24);
    }

    .menu-card h3 {
      margin: 0 0 6px;
      font-size: 1.18rem;
    }

    .menu-card small {
      display: block;
      color: var(--muted);
      margin-bottom: 16px;
    }

    .menu-card button {
      all: unset;
      display: block;
      cursor: pointer;
      width: 100%;
    }

    .menu-card-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 14px;
    }

    .menu-meta {
      color: var(--accent);
      font-size: 0.84rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .menu-preview {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .menu-preview span {
      display: inline-flex;
      padding: 7px 10px;
      border-radius: 999px;
      background: rgba(140, 90, 55, 0.08);
      color: var(--ink);
      font-size: 0.84rem;
      font-weight: 600;
    }

    .menu-panel {
      display: none;
      margin-top: 14px;
      padding-top: 14px;
      border-top: 1px dashed rgba(45, 33, 25, 0.14);
    }

    .menu-panel.open {
      display: block;
    }

    .menu-panel ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 10px;
    }

    .menu-panel li {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      align-items: baseline;
      border-bottom: 1px dashed rgba(45, 33, 25, 0.1);
      padding-bottom: 9px;
    }

    .menu-panel li:last-child { border-bottom: none; padding-bottom: 0; }

    .item-name { font-weight: 600; }
    .item-price { color: var(--accent); font-weight: 700; white-space: nowrap; }
    .item-note { color: var(--muted); font-size: 0.9rem; margin-top: 3px; }

    .item-detail-link {
      color: inherit;
      text-decoration: underline;
      text-decoration-color: rgba(140, 90, 55, 0.35);
      text-underline-offset: 3px;
    }

    .item-detail-link:hover { text-decoration-color: var(--accent); }

    .local-copy {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 20px;
      margin-top: 18px;
    }

    .local-copy p { margin: 0; }

    .sushi-card {
      grid-column: 1 / -1;
      background:
        linear-gradient(135deg, rgba(140, 90, 55, 0.06), transparent 44%),
        linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,250,245,0.98));
    }

    .sushi-intro {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 12px;
      padding: 12px 14px;
      border-radius: 14px;
      background: rgba(140, 90, 55, 0.07);
      color: var(--muted);
      font-size: 0.9rem;
    }

    .sushi-intro strong {
      color: var(--ink);
      font-size: 0.94rem;
    }

    .sushi-groups {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }

    .sushi-group {
      overflow: hidden;
      border: 1px solid rgba(45, 33, 25, 0.1);
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.72);
    }

    .sushi-group summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 13px 15px;
      color: var(--ink);
      font-weight: 700;
      cursor: pointer;
      list-style: none;
    }

    .sushi-group summary::-webkit-details-marker { display: none; }

    .sushi-group summary::after {
      content: "+";
      flex: 0 0 auto;
      color: var(--accent);
      font-size: 1.15rem;
      line-height: 1;
    }

    .sushi-group[open] summary {
      border-bottom: 1px dashed rgba(45, 33, 25, 0.12);
    }

    .sushi-group[open] summary::after { content: "−"; }

    .sushi-group-count {
      display: block;
      margin-top: 2px;
      color: var(--muted);
      font-size: 0.76rem;
      font-weight: 600;
    }

    .sushi-group ul {
      padding: 13px 15px 15px;
    }

    .sushi-group .item-name { font-size: 0.94rem; }

    .sushi-group .sushi-variant {
      padding-left: 12px;
      color: var(--muted);
    }

    .sushi-group .item-price {
      font-size: 0.92rem;
      font-variant-numeric: tabular-nums;
    }

    .highlight-box {
      position: sticky;
      top: 98px;
      background: linear-gradient(180deg, #2f231c 0%, #1f1611 100%);
      color: #fff;
      border-radius: 28px;
      padding: 28px;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .highlight-box::after {
      content: "";
      position: absolute;
      inset: auto -60px -80px auto;
      width: 180px;
      height: 180px;
      background: radial-gradient(circle, rgba(201,141,90,0.55), rgba(201,141,90,0));
      pointer-events: none;
    }

    .highlight-box h3 {
      margin: 0 0 14px;
      font-size: 1.4rem;
    }

    .highlight-box p,
    .highlight-box li {
      color: rgba(255,255,255,0.82);
    }

    .highlight-box ul {
      margin: 0 0 22px;
      padding-left: 18px;
      display: grid;
      gap: 10px;
    }

    .chef-section {
      position: relative;
      overflow: hidden;
      color: #fff;
      background:
        radial-gradient(circle at 82% 18%, rgba(201, 141, 90, 0.24), transparent 30%),
        linear-gradient(135deg, #211510 0%, #34231a 56%, #1d130f 100%);
    }

    .chef-section::before {
      content: "";
      position: absolute;
      width: 360px;
      height: 360px;
      left: -170px;
      bottom: -210px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(232, 195, 155, 0.16), transparent 68%);
      pointer-events: none;
    }

    .chef-layout {
      position: relative;
      display: grid;
      grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
      gap: clamp(34px, 6vw, 76px);
      align-items: center;
    }

    .chef-portrait {
      position: relative;
      aspect-ratio: 2 / 3;
      margin: 0;
      overflow: hidden;
      border-radius: 30px;
      background: #d8d0c7;
      border: 1px solid rgba(255,255,255,0.16);
      box-shadow: 0 28px 60px rgba(10, 6, 4, 0.34);
    }

    .chef-portrait img {
      position: absolute;
      width: 220%;
      max-width: none;
      height: auto;
      left: -120%;
      top: -26%;
    }

    .chef-portrait::after {
      content: "";
      position: absolute;
      inset: 48% 0 0;
      background: linear-gradient(180deg, transparent, rgba(20, 12, 8, 0.76));
      pointer-events: none;
    }

    .chef-caption {
      position: absolute;
      z-index: 1;
      inset: auto 24px 22px;
      color: rgba(255,255,255,0.82);
      font-size: 0.78rem;
      letter-spacing: 0.09em;
      text-transform: uppercase;
    }

    .chef-caption strong {
      display: block;
      margin-bottom: 2px;
      color: #fff;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(1.7rem, 3vw, 2.35rem);
      font-style: italic;
      font-weight: 500;
      letter-spacing: 0;
      text-transform: none;
    }

    .chef-story .eyebrow {
      color: var(--accent-3);
    }

    .chef-story h2 {
      max-width: 720px;
      margin-bottom: 22px;
    }

    .chef-lead {
      margin: 0 0 18px;
      max-width: 670px;
      color: #fff;
      font-size: clamp(1.15rem, 2vw, 1.42rem);
      font-weight: 650;
      line-height: 1.45;
    }

    .chef-story > p:not(.chef-lead) {
      max-width: 680px;
      margin: 0 0 16px;
      color: rgba(255,255,255,0.76);
    }

    .chef-quote {
      max-width: 680px;
      margin: 24px 0;
      padding: 2px 0 2px 20px;
      border-left: 3px solid var(--accent-2);
      color: rgba(255,255,255,0.9);
      font-family: Georgia, "Times New Roman", serif;
      font-size: 1.08rem;
      font-style: italic;
      line-height: 1.65;
    }

    .chef-story-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: 4px;
      padding: 12px 17px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.2);
      background: rgba(255,255,255,0.1);
      color: #fff;
      font-size: 0.92rem;
      font-weight: 650;
      backdrop-filter: blur(8px);
    }

    .chef-story-link:hover {
      background: rgba(255,255,255,0.17);
    }

    .gallery {
      display: grid;
      grid-template-columns: 1.25fr 1fr 1fr;
      gap: 18px;
      align-items: stretch;
    }

    .gallery.tight {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .feature-strip {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
      margin-top: 28px;
    }

    .feature-pill {
      background: rgba(255,255,255,0.78);
      border: 1px solid rgba(45, 33, 25, 0.08);
      border-radius: 18px;
      padding: 16px 18px;
      box-shadow: var(--shadow-soft);
    }

    .feature-pill strong {
      display: block;
      margin-bottom: 4px;
      font-size: 0.98rem;
    }

    .feature-pill span {
      color: var(--muted);
      font-size: 0.92rem;
    }

    .gallery figure {
      margin: 0;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: var(--shadow);
      min-height: 280px;
      position: relative;
    }

    .gallery figure img {
      height: 100%;
    }

    .gallery figure:first-child {
      grid-row: span 2;
      min-height: 580px;
    }

    .gallery.tight figure:first-child {
      grid-row: span 1;
      min-height: 280px;
    }

    .gallery figcaption {
      position: absolute;
      inset: auto 16px 16px 16px;
      background: rgba(24, 16, 11, 0.55);
      color: #fff;
      backdrop-filter: blur(6px);
      border-radius: 16px;
      padding: 12px 14px;
      font-size: 0.92rem;
    }

    .split {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 26px;
      align-items: stretch;
    }

    .info-card {
      background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,250,245,0.96));
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 30px;
      box-shadow: var(--shadow-soft);
    }

    .info-card p { color: var(--muted); }

    .info-list {
      display: grid;
      gap: 14px;
      margin-top: 22px;
    }

    .info-item {
      display: flex;
      gap: 14px;
      align-items: start;
      color: var(--muted);
    }

    .info-item strong {
      color: var(--ink);
      display: block;
      margin-bottom: 2px;
    }

    .info-item a {
      color: var(--accent);
      font-weight: 600;
      text-decoration: underline;
      text-underline-offset: 2px;
      font-size: 0.95rem;
    }

    .info-item a:hover {
      color: var(--ink);
    }

    .maps-link {
      display: inline-flex;
      margin-top: 6px;
    }

    .maps-link a {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: #2563eb;
      font-weight: 600;
      text-decoration: underline;
      text-underline-offset: 2px;
      font-size: 0.95rem;
    }

    .maps-link a:hover {
      color: #1d4ed8;
    }

    .maps-link svg {
      flex: 0 0 auto;
    }

    .contact-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 24px;
    }

    .contact-actions a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 16px;
      border-radius: 999px;
      background: var(--ink);
      color: #fff;
      font-weight: 600;
      font-size: 0.95rem;
      box-shadow: var(--shadow);
    }

    .contact-actions a.secondary {
      background: rgba(255,255,255,0.78);
      color: var(--ink);
      border: 1px solid rgba(45, 33, 25, 0.08);
      box-shadow: none;
    }

    .contact-actions a.instagram-link {
      gap: 8px;
      border-color: rgba(140, 90, 55, 0.24);
    }

    .instagram-link svg {
      width: 18px;
      height: 18px;
      flex: 0 0 auto;
    }

    .footer-details {
      display: grid;
      justify-items: end;
      gap: 6px;
    }

    .footer-instagram {
      color: var(--accent);
      font-weight: 700;
      text-decoration: underline;
      text-decoration-thickness: 1px;
      text-underline-offset: 3px;
    }

    .dot {
      width: 12px;
      height: 12px;
      border-radius: 999px;
      margin-top: 7px;
      background: linear-gradient(180deg, var(--accent-2), var(--accent));
      flex: 0 0 auto;
    }

    footer {
      padding: 34px 0 52px;
      color: var(--muted);
    }

    .footer-card {
      background: rgba(255,255,255,0.7);
      border: 1px solid rgba(45, 33, 25, 0.08);
      border-radius: 22px;
      padding: 22px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      box-shadow: var(--shadow-soft);
    }

    :root[data-theme="light"] {
      color-scheme: light;
    }

    :root[data-theme="dark"] {
      color-scheme: dark;
    }

    html[data-theme="dark"] body {
      color: #fffaf5;
      background:
        radial-gradient(circle at top left, rgba(201, 141, 90, 0.2), transparent 34%),
        linear-gradient(180deg, #3b2b22 0%, #30231c 52%, #281c17 100%);
    }

    html[data-theme="dark"] header {
      background: rgba(47, 35, 29, 0.98);
      border-bottom-color: rgba(255,255,255,0.12);
      box-shadow: 0 2px 18px rgba(10, 6, 4, 0.22);
    }

    html[data-theme="dark"] .brand-text strong,
    html[data-theme="dark"] .nav-links a {
      color: #fffaf5;
    }

    html[data-theme="dark"] .brand-text span,
    html[data-theme="dark"] .lang-btn {
      color: #e1d2c6;
    }

    html[data-theme="dark"] .lang-toggle,
    html[data-theme="dark"] .theme-toggle {
      border-color: rgba(255,255,255,0.18);
      background: rgba(255,255,255,0.09);
      color: #fffaf5;
    }

    html[data-theme="dark"] body[data-lang="fr"] .lang-btn[data-set-lang="fr"],
    html[data-theme="dark"] body[data-lang="en"] .lang-btn[data-set-lang="en"] {
      background: #fffaf5;
      color: #2d2119;
    }

    html[data-theme="dark"] header .cta {
      background: #fffaf5;
      color: #2d2119;
      box-shadow: 0 14px 30px rgba(10, 6, 4, 0.24);
    }

    html[data-theme="dark"] .section-copy,
    html[data-theme="dark"] .editorial-banner p {
      color: #e1d2c6;
    }

    html[data-theme="dark"] .eyebrow,
    html[data-theme="dark"] .editorial-kicker {
      color: #f0bb8b;
    }

    html[data-theme="dark"] .editorial-banner {
      background: linear-gradient(135deg, rgba(201,141,90,0.2), rgba(255,255,255,0.08));
      border-color: rgba(255,255,255,0.14);
    }

    html[data-theme="dark"] .card,
    html[data-theme="dark"] .menu-card,
    html[data-theme="dark"] .info-card,
    html[data-theme="dark"] .feature-pill,
    html[data-theme="dark"] .footer-card,
    html[data-theme="dark"] .quick-links a {
      color: var(--ink);
      background: linear-gradient(180deg, #fffdf9, #f7eee5);
      border-color: rgba(45,33,25,0.12);
      box-shadow: 0 18px 38px rgba(10, 6, 4, 0.2);
    }

    html[data-theme="dark"] footer {
      color: #dfd0c4;
    }

    html[data-theme="dark"] .footer-card {
      color: var(--muted);
    }

    html[data-theme="dark"] .footer-card strong {
      color: var(--ink) !important;
    }

    @media (prefers-color-scheme: dark) {
      :root:not([data-theme="light"]) {
        color-scheme: dark;
      }
    }

    @media (max-width: 1100px) {
      .nav-links .theme-toggle {
        width: 42px;
        padding: 0;
      }

      .nav-links .theme-label {
        display: none;
      }
    }

    @media (max-width: 980px) {
      .hero-stats,
      .grid-3,
      .menu-grid,
      .split,
      .chef-layout,
      .gallery,
      .menu-wrap,
      .editorial-banner,
      .feature-strip {
        grid-template-columns: 1fr;
      }

      .gallery figure:first-child {
        min-height: 360px;
      }

      .highlight-box {
        position: static;
      }

      .chef-portrait {
        width: min(100%, 520px);
        justify-self: center;
      }
    }

    @media (max-width: 720px) {
      .container {
        width: min(calc(100% - 24px), var(--max));
      }

      header {
        position: sticky;
      }

      .nav {
        min-height: 68px;
        padding: 12px 0;
        gap: 8px;
        align-items: flex-start;
      }

      .brand {
        max-width: 62%;
        gap: 10px;
        align-items: center;
      }

      .brand-mark {
        width: 40px;
        height: 40px;
        border-radius: 50%;
      }

      .brand-text strong {
        font-size: 0.9rem;
        letter-spacing: 0.06em;
      }

      .brand span {
        font-size: 0.74rem;
        line-height: 1.25;
      }

      .nav-links { display: none; }

      .mobile-lang-toggle {
        display: inline-flex;
        flex: 0 0 auto;
        margin-left: auto;
      }

      .mobile-theme-toggle {
        display: inline-flex;
        flex: 0 0 42px;
        width: 42px;
        height: 42px;
        min-height: 42px;
        padding: 0;
      }

      .mobile-theme-toggle .theme-label {
        display: none;
      }

      .nav > .cta {
        display: none;
      }

      .cta {
        padding: 13px 18px;
        font-size: 0.94rem;
      }

      .hero {
        min-height: auto;
      }

      .hero::before {
        background:
          linear-gradient(180deg, rgba(21, 12, 8, 0.7) 0%, rgba(21, 12, 8, 0.38) 42%, rgba(21, 12, 8, 0.72) 100%),
          linear-gradient(180deg, rgba(21, 12, 8, 0.08) 0%, rgba(21, 12, 8, 0.4) 100%);
      }

      .hero-content {
        padding: 88px 0 36px;
      }

      .pill {
        font-size: 0.78rem;
        padding: 9px 12px;
      }

      .hero h1 {
        font-size: clamp(2.2rem, 11vw, 3.2rem);
        line-height: 1.02;
        margin: 16px 0 14px;
      }

      .hero p {
        font-size: 0.98rem;
        margin-bottom: 22px;
      }

      .hero-actions {
        flex-direction: column;
      }

      .hero-actions a {
        width: 100%;
      }

      .hero-stats {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 28px;
      }

      .hero-stat {
        padding: 16px;
      }

      section {
        padding: 56px 0;
      }

      .chef-layout {
        gap: 28px;
      }

      .chef-portrait {
        border-radius: 24px;
      }

      .chef-caption {
        inset: auto 20px 18px;
      }

      .chef-story h2 {
        margin-bottom: 18px;
      }

      .chef-quote {
        margin: 20px 0;
        padding-left: 16px;
      }

      .chef-story-link {
        width: 100%;
      }

      .section-head {
        margin-bottom: 22px;
      }

      h2 {
        line-height: 1.08;
      }

      .section-copy {
        font-size: 0.96rem;
      }

      .sushi-groups {
        grid-template-columns: 1fr;
      }

      .sushi-intro {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
      }

      .local-copy { grid-template-columns: 1fr; }

      .editorial-banner {
        padding: 20px;
        border-radius: 20px;
      }

      .quick-links {
        justify-content: flex-start;
      }

      .quick-links a {
        width: 100%;
        justify-content: center;
        text-align: center;
      }

      .card,
      .menu-card,
      .info-card,
      .highlight-box {
        padding: 20px;
        border-radius: 20px;
      }

      .menu-card li {
        gap: 10px;
      }

      .item-name,
      .item-price {
        font-size: 0.97rem;
      }

      .gallery {
        gap: 14px;
      }

      .gallery figure,
      .gallery figure:first-child {
        min-height: 240px;
      }

      .gallery figcaption {
        inset: auto 12px 12px 12px;
        padding: 10px 12px;
        font-size: 0.86rem;
      }

      .feature-strip {
        gap: 12px;
      }

      .feature-pill {
        padding: 15px 16px;
      }

      .info-item {
        gap: 12px;
      }

      .contact-actions {
        flex-direction: column;
      }

      .contact-actions a {
        width: 100%;
      }

      .footer-card {
        padding: 18px;
      }

      .footer-details {
        justify-items: start;
      }
    }

    @media (max-width: 420px) {
      .brand {
        max-width: 50%;
      }

      .hero-content {
        padding-top: 82px;
      }

      .hero h1 {
        font-size: 2rem;
      }

      .pill {
        width: 100%;
        justify-content: center;
        text-align: center;
      }
    }

    .seo-page-intro { padding: 118px 0 38px; }
    .seo-page-title {
      max-width: 850px;
      margin: 12px 0 16px;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(2.65rem, 6vw, 5rem);
      line-height: 1.03;
      letter-spacing: -0.045em;
    }
    .seo-page-lead { max-width: 760px; color: var(--muted); font-size: 1.08rem; }
    .seo-page-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
    .seo-page-actions .cta.light { border: 1px solid var(--line); }
    .seo-menu-preview .card { display: flex; flex-direction: column; align-items: flex-start; }
    .seo-menu-preview .card .cta { margin-top: auto; }
    .seo-menu-preview .card p { flex: 1; }
    @media (max-width: 720px) {
      .seo-page-intro { padding-top: 94px; }
      .seo-page-title { font-size: 2.45rem; }
      .seo-page-actions { flex-direction: column; }
      .seo-page-actions .cta { width: 100%; }
    }
  
.specialty-links{display:flex;flex-wrap:wrap;justify-content:center;gap:12px 24px;padding:20px;font-weight:700}.specialty-links a{text-decoration:underline;text-underline-offset:4px}.seo-breadcrumb{padding:100px 24px 0;max-width:1200px;margin:auto;font-size:.9rem}.seo-breadcrumb+.seo-page-intro{padding-top:30px}.dish-options{list-style:none;padding:0;max-width:850px}.dish-options li{display:flex;justify-content:space-between;gap:20px;border-bottom:1px solid var(--line);padding:18px 0}.dish-options h3,.dish-options p{margin:0}.dish-options p{color:var(--muted)}[data-menu-card]{scroll-margin-top:120px}
.specialty-links a,.seo-breadcrumb a,nav a.language-link{display:inline-block!important;min-height:44px;padding:8px 0}.specialty-links a:focus-visible,.seo-breadcrumb a:focus-visible{outline:2px solid currentColor;outline-offset:4px}