:root {
    --bg: #4a4a4c;
    --bg-soft: #3e3e40;
    --ink: #f3efe7;
    --ink-dim: #a39f97;
    --ink-faint: #5a5853;
    --red: #d63838;
    --red-deep: #b32626;
    --red-glow: rgba(214, 56, 56, 0.18);
    --line: rgba(243, 239, 231, 0.08);
    --line-strong: rgba(243, 239, 231, 0.18);
    --gutter: clamp(20px, 4vw, 56px);
  }

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

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

  body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: 'Hanken Grotesk', system-ui, sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }

  /* Subtle film grain overlay */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 100;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
  }

  ::selection { background: var(--red); color: var(--ink); }

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

  /* ───────── NAV ───────── */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    padding: 18px var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(14px) saturate(120%);
    -webkit-backdrop-filter: blur(14px) saturate(120%);
    background: rgba(74, 74, 76, 0.72);
    border-bottom: 1px solid transparent;
    transition: border-color .4s ease, background .4s ease;
  }
  .nav.scrolled { border-color: var(--line); }
  .nav__brand {
    font-family: 'Archivo Black', sans-serif;
    font-size: 18px;
    letter-spacing: -0.01em;
  }
  .nav__brand span { color: var(--red); }
  .nav__links {
    display: flex;
    gap: 28px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ink-dim);
  }
  .nav__links a { position: relative; transition: color .25s ease; }
  .nav__links a:hover { color: var(--ink); }
  .nav__links a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -6px;
    width: 0; height: 1px;
    background: var(--red);
    transition: width .3s ease;
  }
  .nav__links a:hover::after { width: 100%; }

  @media (max-width: 720px) {
    .nav__links { display: none; }
  }

  /* ───────── HERO ───────── */
  .hero {
    min-height: 100vh;
    padding: 140px var(--gutter) 100px;
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
  }

  .hero__eyebrow {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-style: italic;
    font-size: clamp(18px, 2vw, 24px);
    color: var(--ink);
    margin: 0 0 18px;
    letter-spacing: -0.01em;
  }

  .hero__wordmark {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(76px, 13vw, 184px);
    line-height: 0.86;
    letter-spacing: -0.045em;
    margin: 0;
    color: var(--ink);
  }
  .hero__wordmark .em { color: var(--red); }

  .hero__tagline {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-style: italic;
    font-size: clamp(22px, 2.7vw, 32px);
    color: var(--ink-dim);
    margin: 22px 0 36px;
    letter-spacing: -0.005em;
  }

  .hero__copy {
    font-size: clamp(16px, 1.2vw, 19px);
    line-height: 1.7;
    color: var(--ink);
    max-width: 540px;
    margin: 0 0 44px;
  }

  .hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 32px;
    background: var(--red);
    color: var(--ink);
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 999px;
    transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
    box-shadow: 0 10px 30px -10px var(--red-glow);
  }
  .hero__cta:hover {
    background: var(--red-deep);
    transform: translateY(-2px);
    box-shadow: 0 18px 40px -10px rgba(214, 56, 56, 0.4);
  }
  .hero__cta svg { transition: transform .25s ease; }
  .hero__cta:hover svg { transform: translateX(4px); }

  .hero__visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.15;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero__visual svg,
  .hero__visual img {
    width: 100%;
    height: auto;
    max-width: 460px;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(214, 56, 56, 0.18));
    animation: float 9s ease-in-out infinite;
  }
  @keyframes float {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50%      { transform: translateY(-16px) rotate(1deg); }
  }

  @media (max-width: 880px) {
    .hero {
      grid-template-columns: 1fr;
      padding-top: 120px;
      gap: 24px;
      min-height: auto;
    }
    .hero__visual {
      order: -1;
      max-width: 320px;
      margin: 0 auto;
      aspect-ratio: 1 / 1;
    }
  }

  /* Staggered fade-in */
  .reveal { opacity: 0; transform: translateY(24px); animation: rise .9s ease forwards; }
  .reveal:nth-child(1) { animation-delay: .1s; }
  .reveal:nth-child(2) { animation-delay: .25s; }
  .reveal:nth-child(3) { animation-delay: .4s; }
  .reveal:nth-child(4) { animation-delay: .55s; }
  .reveal:nth-child(5) { animation-delay: .7s; }
  @keyframes rise {
    to { opacity: 1; transform: translateY(0); }
  }

  /* ───────── DIVIDER MARQUEE ───────── */
  .marquee {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bg-soft);
    padding: 22px 0;
    overflow: hidden;
    white-space: nowrap;
  }
  .marquee__track {
    display: inline-flex;
    gap: 56px;
    animation: scroll 38s linear infinite;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(18px, 2vw, 28px);
    color: var(--ink-dim);
  }
  .marquee__track span { display: inline-flex; align-items: center; gap: 56px; }
  .marquee__track span::after {
    content: '✦';
    color: var(--red);
    font-style: normal;
  }
  @keyframes scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* ───────── SECTION HEADER ───────── */
  .section {
    padding: 110px var(--gutter);
    position: relative;
  }

  .section__label {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-dim);
    margin: 0 0 18px;
  }
  .section__label::before {
    content: '';
    width: 40px; height: 1px;
    background: var(--red);
  }

  .section__title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(42px, 7vw, 96px);
    line-height: 0.9;
    letter-spacing: -0.035em;
    margin: 0 0 16px;
  }
  .section__title em {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    color: var(--red);
  }

  .section__intro {
    max-width: 620px;
    font-size: clamp(16px, 1.2vw, 18px);
    color: var(--ink-dim);
    line-height: 1.7;
    margin: 0 0 64px;
  }

  /* ───────── MENU ───────── */
  .menu-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px 48px;
  }
  .category:last-child {
    grid-column: 1 / -1;
  }
  @media (max-width: 880px) {
    .menu-wrap { grid-template-columns: 1fr; gap: 48px; }
  }

  .category {
    border-top: 1px solid var(--line-strong);
    padding-top: 32px;
  }

  .category__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 22px;
    flex-wrap: wrap;
    gap: 12px;
  }

  .category__name {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(26px, 3vw, 38px);
    color: var(--ink);
    margin: 0;
    letter-spacing: -0.01em;
  }

  .category__count {
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ink-faint);
  }

  .item-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .item {
    display: grid;
    grid-template-columns: 44px 36px 1fr;
    align-items: center;
    gap: 14px;
    padding: 18px 14px;
    border-radius: 10px;
    cursor: pointer;
    transition: background .2s ease;
    border-bottom: 1px solid var(--line);
  }
  .item:hover { background: rgba(243, 239, 231, 0.03); }
  .item:last-child { border-bottom: none; }

  .item__check {
    appearance: none;
    -webkit-appearance: none;
    width: 22px; height: 22px;
    border: 1.5px solid var(--line-strong);
    border-radius: 5px;
    background: transparent;
    cursor: pointer;
    position: relative;
    transition: all .2s ease;
    flex-shrink: 0;
    margin: 0;
  }
  .item__check:hover { border-color: var(--ink-dim); }
  .item__check:checked {
    background: var(--red);
    border-color: var(--red);
  }
  .item__check:checked::after {
    content: '';
    position: absolute;
    left: 6px; top: 2px;
    width: 6px; height: 11px;
    border: solid var(--ink);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }

  .item__num {
    font-family: 'Archivo Black', sans-serif;
    font-size: 14px;
    color: var(--red);
    letter-spacing: -0.01em;
  }

  .item__name {
    font-size: clamp(15.5px, 1.15vw, 17px);
    line-height: 1.5;
    color: var(--ink);
    transition: color .2s ease;
  }

  .item.is-checked { background: rgba(214, 56, 56, 0.06); }
  .item.is-checked .item__name {
    color: var(--ink);
    text-decoration: line-through;
    text-decoration-color: var(--red);
    text-decoration-thickness: 1.5px;
  }

  /* ───────── FLOATING SELECTION BADGE ───────── */
  .selection-bar {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translate(-50%, 120%);
    z-index: 40;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px 12px 22px;
    background: var(--ink);
    color: var(--bg);
    border-radius: 999px;
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.6);
    transition: transform .4s cubic-bezier(.6, .2, .15, 1);
    max-width: calc(100vw - 32px);
  }
  .selection-bar.is-visible { transform: translate(-50%, 0); }
  .selection-bar__count {
    font-family: 'Archivo Black', sans-serif;
    font-size: 14px;
  }
  .selection-bar__label {
    font-size: 13px;
    letter-spacing: 0.04em;
  }
  .selection-bar__btn {
    background: var(--red);
    color: var(--ink);
    border: none;
    padding: 10px 20px;
    border-radius: 999px;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .25s ease;
  }
  .selection-bar__btn:hover { background: var(--red-deep); }

  /* ───────── TESTIMONIALS ───────── */
  .testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  @media (max-width: 880px) {
    .testimonials { grid-template-columns: 1fr; }
  }

  .testimonial {
    position: relative;
    background: rgba(243, 239, 231, 0.04);
    border: 1px solid var(--line);
    padding: 44px 32px 32px;
    border-radius: 14px;
    margin: 0;
    transition: transform .35s ease, border-color .35s ease, background .35s ease;
  }
  .testimonial:hover {
    transform: translateY(-4px);
    border-color: var(--line-strong);
    background: rgba(243, 239, 231, 0.06);
  }
  .testimonial::before {
    content: '"';
    position: absolute;
    top: -8px; left: 22px;
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: 110px;
    line-height: 1;
    color: var(--red);
    opacity: 0.55;
  }
  .testimonial__quote {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(17px, 1.35vw, 20px);
    line-height: 1.55;
    color: var(--ink);
    margin: 0 0 26px;
  }
  .testimonial figcaption {
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ink-dim);
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .testimonial figcaption::before {
    content: '';
    width: 28px; height: 1px;
    background: var(--red);
  }

  /* ───────── PROCESS ───────── */
  .process {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  @media (max-width: 880px) {
    .process { grid-template-columns: 1fr; }
  }

  .process__step {
    position: relative;
    padding: 0;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(243, 239, 231, 0.03);
    border: 1px solid var(--line);
    transition: transform .35s ease, border-color .35s ease;
  }
  .process__step:hover {
    transform: translateY(-4px);
    border-color: var(--line-strong);
  }
  .process__media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
  }
  .process__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(74,74,76,0.6) 100%);
  }
  .process__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .8s ease;
  }
  .process__step:hover .process__media img { transform: scale(1.05); }

  .process__content {
    padding: 32px 28px 36px;
    position: relative;
    border-top: 2px solid var(--red);
  }

  .process__num {
    font-family: 'Archivo Black', sans-serif;
    font-size: 13px;
    color: var(--red);
    letter-spacing: 0.06em;
    display: block;
    margin-bottom: 18px;
  }
  .process__title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 0.95;
    margin: 0 0 10px;
    letter-spacing: -0.025em;
  }
  .process__subtitle {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(17px, 1.45vw, 21px);
    color: var(--red);
    margin: 0 0 22px;
  }
  .process__body {
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink-dim);
    margin: 0;
  }

  /* ───────── ATMOSPHERE STRIP ───────── */
  .atmosphere {
    position: relative;
    height: clamp(380px, 58vh, 640px);
    overflow: hidden;
    background: var(--bg-soft);
  }
  .atmosphere img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
    transform: scale(1.02);
    transition: transform 14s ease;
  }
  .atmosphere:hover img { transform: scale(1.08); }
  .atmosphere__overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.05) 35%, rgba(0,0,0,0.05) 65%, rgba(74,74,76,0.6) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 var(--gutter);
  }
  .atmosphere__line {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(30px, 4.8vw, 68px);
    line-height: 1.15;
    color: var(--ink);
    margin: 0;
    max-width: 22ch;
    letter-spacing: -0.01em;
    text-shadow:
      0 2px 8px rgba(0,0,0,0.7),
      0 6px 30px rgba(0,0,0,0.55);
  }
  .atmosphere__line em {
    color: var(--red);
    font-family: 'Archivo Black', sans-serif;
    font-style: normal;
    text-shadow:
      0 2px 8px rgba(0,0,0,0.5),
      0 0 24px rgba(214, 56, 56, 0.4);
  }

  /* ───────── CHEF ───────── */
  .chef {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
  }
  @media (max-width: 880px) {
    .chef { grid-template-columns: 1fr; }
  }

  .chef__media {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 16px;
    overflow: hidden;
  }
  .chef__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }
  .chef__media-sub {
    position: absolute;
    right: -28px;
    bottom: -36px;
    width: 48%;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
    border: 6px solid var(--bg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  }
  .chef__media-sub img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }
  @media (max-width: 540px) {
    .chef__media-sub { right: -12px; bottom: -20px; width: 55%; border-width: 4px; }
  }

  .chef__name {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(40px, 6vw, 80px);
    line-height: 0.9;
    letter-spacing: -0.035em;
    margin: 14px 0 12px;
  }
  .chef__name em {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    color: var(--red);
    display: block;
    font-size: 0.55em;
    margin-top: 8px;
    letter-spacing: -0.01em;
  }
  .chef__bio p {
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.75;
    color: var(--ink);
    margin: 0 0 18px;
  }
  .chef__bio p:last-child { color: var(--ink-dim); }

  /* ───────── GALLERY (featured + thumb strip) ───────── */
  .gallery {
    display: grid;
    gap: 18px;
  }

  .gallery__featured {
    position: relative;
    aspect-ratio: 3 / 2;
    background: var(--bg-soft);
    border-radius: 16px;
    overflow: hidden;
    cursor: zoom-in;
  }
  .gallery__featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity .35s ease, transform .7s ease;
  }
  .gallery__featured.is-changing img {
    opacity: 0;
    transform: scale(1.04);
  }
  .gallery__featured::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.0) 60%, rgba(0,0,0,0.35) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity .35s ease;
  }
  .gallery__featured:hover::after { opacity: 1; }

  .gallery__counter {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--ink);
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.22em;
    font-family: 'Archivo Black', sans-serif;
  }

  .gallery__zoom {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--ink);
    border: 1px solid rgba(255,255,255,0.12);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    opacity: 0;
    transition: opacity .3s ease, background .2s ease, transform .2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .gallery__featured:hover .gallery__zoom { opacity: 1; }
  .gallery__zoom:hover { background: var(--red); transform: scale(1.05); }

  .gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--ink);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s ease, background .2s ease;
  }
  .gallery__featured:hover .gallery__nav { opacity: 1; }
  .gallery__nav:hover { background: var(--red); }
  .gallery__nav--prev { left: 16px; }
  .gallery__nav--next { right: 16px; }

  .gallery__strip {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 4px 2px 12px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--line-strong) transparent;
    -webkit-overflow-scrolling: touch;
  }
  .gallery__strip::-webkit-scrollbar { height: 6px; }
  .gallery__strip::-webkit-scrollbar-track { background: transparent; }
  .gallery__strip::-webkit-scrollbar-thumb {
    background: var(--line-strong);
    border-radius: 3px;
  }
  .gallery__strip::-webkit-scrollbar-thumb:hover { background: var(--ink-faint); }

  .gallery__thumb {
    flex: 0 0 86px;
    width: 86px;
    height: 86px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    padding: 0;
    background: var(--bg-soft);
    transition: border-color .25s ease, transform .25s ease, opacity .25s ease;
    opacity: 0.55;
    position: relative;
  }
  .gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .gallery__thumb:hover {
    opacity: 0.95;
    transform: translateY(-2px);
  }
  .gallery__thumb.is-active {
    border-color: var(--red);
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px -4px rgba(214, 56, 56, 0.35);
  }

  @media (max-width: 600px) {
    .gallery__thumb { flex: 0 0 68px; width: 68px; height: 68px; }
    .gallery__nav { opacity: 1; width: 42px; height: 42px; font-size: 20px; }
    .gallery__zoom { opacity: 1; width: 36px; height: 36px; font-size: 14px; }
    .gallery__featured { aspect-ratio: 4 / 3; }
  }

  /* ───────── DEVIS FALLBACK MODAL ───────── */
  .devis-fallback {
    position: fixed;
    inset: 0;
    z-index: 250;
    background: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    animation: fbFadeIn .3s ease;
  }
  @keyframes fbFadeIn { from { opacity: 0; } to { opacity: 1; } }

  .devis-fallback__inner {
    position: relative;
    background: var(--bg-soft);
    border: 1px solid var(--line-strong);
    border-radius: 16px;
    padding: 36px 32px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    animation: fbZoom .35s ease;
  }
  @keyframes fbZoom {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }

  .devis-fallback__close {
    position: absolute;
    top: 14px; right: 14px;
    background: transparent;
    border: 1px solid var(--line-strong);
    color: var(--ink);
    width: 36px; height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    transition: background .2s ease;
  }
  .devis-fallback__close:hover { background: var(--red); border-color: var(--red); }

  .devis-fallback h3 {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(20px, 2vw, 26px);
    color: var(--ink);
    margin: 0 0 18px;
    padding-right: 40px;
    line-height: 1.3;
  }
  .devis-fallback p { margin: 0 0 12px; color: var(--ink); font-size: 15px; }
  .devis-fallback ol {
    padding-left: 22px;
    margin: 0 0 22px;
    color: var(--ink);
    font-size: 15px;
    line-height: 1.7;
  }
  .devis-fallback ol li { margin-bottom: 8px; }
  .devis-fallback a { color: var(--red); text-decoration: underline; }

  .devis-fallback__preview {
    background: rgba(0,0,0,0.25);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 18px;
    font-family: ui-monospace, 'SF Mono', Menlo, Monaco, monospace;
    font-size: 13px;
    line-height: 1.6;
    color: var(--ink-dim);
    max-height: 240px;
    overflow-y: auto;
    margin-bottom: 22px;
    white-space: pre-wrap;
    word-break: break-word;
  }

  .devis-fallback__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  .devis-fallback__copy,
  .devis-fallback__mail {
    flex: 1;
    min-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 999px;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .25s ease, transform .15s ease, border-color .25s ease;
    text-decoration: none;
    text-align: center;
  }
  .devis-fallback__copy {
    background: var(--red);
    color: var(--ink);
    border: none;
  }
  .devis-fallback__copy:hover {
    background: var(--red-deep);
    transform: translateY(-1px);
  }
  .devis-fallback__mail {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line-strong);
  }
  .devis-fallback__mail:hover {
    border-color: var(--red);
    color: var(--red);
    transform: translateY(-1px);
  }

  /* ───────── LIGHTBOX ───────── */
  .lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(10, 10, 12, 0.94);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity .3s ease;
  }
  .lightbox.is-open { display: flex; opacity: 1; }
  .lightbox__img {
    max-width: 92vw;
    max-height: 86vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.7);
    animation: zoomIn .35s ease;
  }
  @keyframes zoomIn {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }
  .lightbox__btn {
    position: absolute;
    background: rgba(243, 239, 231, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(243, 239, 231, 0.18);
    color: var(--ink);
    width: 56px; height: 56px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: background .2s ease, transform .2s ease;
  }
  .lightbox__btn:hover {
    background: var(--red);
    transform: scale(1.05);
  }
  .lightbox__close { top: 24px; right: 24px; }
  .lightbox__prev  { left: 24px; top: 50%; transform: translateY(-50%); }
  .lightbox__next  { right: 24px; top: 50%; transform: translateY(-50%); }
  .lightbox__prev:hover, .lightbox__next:hover { transform: translateY(-50%) scale(1.05); }
  .lightbox__counter {
    position: absolute;
    bottom: 24px; left: 50%;
    transform: translateX(-50%);
    color: var(--ink-dim);
    font-size: 13px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
  }
  @media (max-width: 600px) {
    .lightbox__btn { width: 44px; height: 44px; font-size: 20px; }
    .lightbox__close { top: 16px; right: 16px; }
    .lightbox__prev  { left: 12px; }
    .lightbox__next  { right: 12px; }
  }

  /* ───────── SELECTIONS (Cochon / Boeuf) ───────── */
  .selections {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
  }
  .selections--reverse {
    grid-template-columns: 0.95fr 1.05fr;
  }
  .selections--reverse .selections__media {
    order: 2;
  }
  @media (max-width: 880px) {
    .selections,
    .selections--reverse {
      grid-template-columns: 1fr;
    }
    .selections--reverse .selections__media {
      order: 0;
    }
  }

  .selections__media {
    position: relative;
    background: #f4ead7;
    padding: clamp(20px, 3vw, 40px);
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    overflow: hidden;
  }
  .selections__media::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    pointer-events: none;
  }
  .selections__media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
  }
  .selections__media-label {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.45);
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 600;
    z-index: 2;
  }

  .selections__heading {
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-dim);
    margin: 0 0 28px;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .selections__heading::before {
    content: '';
    width: 36px; height: 1px;
    background: var(--red);
  }

  .selections__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 2px;
  }
  .selections__item {
    display: grid;
    grid-template-columns: 56px 1fr;
    align-items: baseline;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    transition: padding-left .3s ease, background .3s ease;
    cursor: default;
  }
  .selections__item:last-child { border-bottom: none; }
  .selections__item:hover {
    padding-left: 10px;
    background: linear-gradient(90deg, rgba(214,56,56,0.04), transparent 80%);
  }
  .selections__num {
    font-family: 'Archivo Black', sans-serif;
    font-size: 14px;
    color: var(--red);
    letter-spacing: 0.02em;
  }
  .selections__name {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-style: italic;
    font-size: clamp(20px, 1.8vw, 26px);
    color: var(--ink);
    line-height: 1.25;
    letter-spacing: -0.005em;
  }
  .selections__name em {
    font-style: normal;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 500;
    font-size: 0.7em;
    color: var(--ink-dim);
    margin-left: 6px;
    letter-spacing: 0.02em;
  }

  /* ───────── FORM ───────── */
  .form-section {
    background:
      radial-gradient(ellipse at top right, rgba(214, 56, 56, 0.08), transparent 60%),
      var(--bg-soft);
  }

  .form {
    max-width: 720px;
    display: grid;
    gap: 26px;
  }

  .form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }
  @media (max-width: 640px) {
    .form__row { grid-template-columns: 1fr; }
  }

  .field {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .field label {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-dim);
  }

  .field input,
  .field textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line-strong);
    padding: 12px 0;
    color: var(--ink);
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 16px;
    transition: border-color .25s ease;
    border-radius: 0;
  }
  .field input:focus,
  .field textarea:focus {
    outline: none;
    border-color: var(--red);
  }
  .field textarea {
    resize: vertical;
    min-height: 90px;
  }

  /* Date input — calendar icon */
  .field input[type="date"] {
    color-scheme: dark;
    font-family: 'Hanken Grotesk', sans-serif;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
  }
  .field input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.85);
    opacity: 0.7;
    cursor: pointer;
    transition: opacity .2s ease;
  }
  .field input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
  }
  .field input[type="date"]:not(:focus):invalid,
  .field input[type="date"]:not(:focus):placeholder-shown {
    color: var(--ink-faint);
  }

  /* Meal-type chip group */
  .chip-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding: 8px 0 4px;
  }
  .chip {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px 11px 16px;
    background: rgba(243, 239, 231, 0.04);
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--ink);
    cursor: pointer;
    transition: background .25s ease, border-color .25s ease, transform .15s ease;
    user-select: none;
  }
  .chip:hover {
    background: rgba(243, 239, 231, 0.08);
    border-color: var(--ink-faint);
  }
  .chip__check {
    appearance: none;
    -webkit-appearance: none;
    width: 18px; height: 18px;
    border: 1.5px solid var(--ink-faint);
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    position: relative;
    margin: 0;
    transition: all .2s ease;
    flex-shrink: 0;
  }
  .chip__check:checked {
    background: var(--red);
    border-color: var(--red);
  }
  .chip__check:checked::after {
    content: '';
    position: absolute;
    left: 4px; top: 1px;
    width: 5px; height: 9px;
    border: solid var(--ink);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }
  .chip:has(.chip__check:checked) {
    background: rgba(214, 56, 56, 0.12);
    border-color: var(--red);
  }

  .selected-preview {
    border: 1px dashed var(--line-strong);
    padding: 22px;
    border-radius: 12px;
    background: rgba(243, 239, 231, 0.02);
  }
  .selected-preview__title {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-dim);
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .selected-preview__title span {
    background: var(--red);
    color: var(--ink);
    padding: 2px 9px;
    border-radius: 999px;
    font-family: 'Archivo Black', sans-serif;
    letter-spacing: 0;
    font-size: 11px;
  }
  .selected-preview__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
    font-size: 14px;
    color: var(--ink);
  }
  .selected-preview__list li::before {
    content: '— ';
    color: var(--red);
  }
  .selected-preview.is-empty .selected-preview__list { display: none; }
  .selected-preview__empty { display: none; color: var(--ink-faint); font-style: italic; font-family: 'Fraunces', serif; }
  .selected-preview.is-empty .selected-preview__empty { display: block; }

  .submit {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 20px 36px;
    background: var(--red);
    color: var(--ink);
    border: none;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 999px;
    cursor: pointer;
    transition: transform .25s ease, background .25s ease;
    box-shadow: 0 10px 30px -10px var(--red-glow);
  }
  .submit:hover {
    background: var(--red-deep);
    transform: translateY(-2px);
  }

  /* ───────── FOOTER ───────── */
  .footer {
    border-top: 1px solid var(--line);
    padding: 80px var(--gutter) 40px;
  }
  .footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 60px;
  }
  @media (max-width: 860px) {
    .footer__top { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 480px) {
    .footer__top { grid-template-columns: 1fr; }
  }

  .footer__brand {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 0.92;
    letter-spacing: -0.035em;
  }
  .footer__brand em {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    color: var(--red);
    display: block;
    font-size: 0.55em;
    margin-top: 8px;
    letter-spacing: -0.01em;
  }

  .footer h4 {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-dim);
    margin: 0 0 14px;
    font-weight: 600;
  }
  .footer a, .footer p {
    display: block;
    font-size: 16px;
    color: var(--ink);
    margin: 0 0 6px;
    transition: color .2s ease;
  }
  .footer a:hover { color: var(--red); }

  .footer__bottom {
    border-top: 1px solid var(--line);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--ink-faint);
    letter-spacing: 0.02em;
    flex-wrap: wrap;
    gap: 12px;
  }

  /* ───────── SUCCESS TOAST ───────── */
  .toast {
    position: fixed;
    top: 90px;
    right: 24px;
    z-index: 60;
    background: var(--ink);
    color: var(--bg);
    padding: 16px 22px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 20px 50px -10px rgba(0,0,0,0.5);
    transform: translateX(120%);
    transition: transform .4s ease;
    max-width: 320px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .toast.is-visible { transform: translateX(0); }
  .toast::before {
    content: '✓';
    background: var(--red);
    color: var(--ink);
    width: 24px; height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
  }