    :root {
      --bg: #f7f1ea;
      --surface: #fffaf5;
      --surface-2: #ffffff;
      --ink: #1f1814;
      --muted: #6c5d53;
      --brand: #8a1f1f;
      --brand-2: #b9472f;
      --line: rgba(31, 24, 20, 0.1);
      --shadow: 0 18px 45px rgba(33, 22, 16, 0.12);
      --radius-xl: 32px;
      --radius-lg: 24px;
      --radius-md: 18px;
      --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(185, 71, 47, 0.1), transparent 28%),
        radial-gradient(circle at bottom right, rgba(138, 31, 31, 0.08), transparent 24%),
        var(--bg);
    }

    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }

    .container {
      width: min(calc(100% - 32px), var(--max));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(14px);
      background: rgba(247, 241, 234, 0.82);
      border-bottom: 1px solid rgba(31,24,20,0.06);
    }

    .nav {
      min-height: 74px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      letter-spacing: -0.03em;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      overflow: hidden;
      border: 2px solid rgba(138,31,31,0.15);
      box-shadow: 0 8px 18px rgba(0,0,0,0.08);
    }

    .brand-mark img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 18px;
      color: var(--muted);
      font-weight: 600;
      font-size: 0.96rem;
    }

    .nav-links a:hover,
    .nav-links a:focus-visible {
      color: var(--ink);
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 18px;
      border-radius: 999px;
      background: var(--ink);
      color: #fff;
      font-weight: 700;
      box-shadow: var(--shadow);
    }

    .hero {
      padding: clamp(28px, 6vw, 68px) 0 26px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: clamp(24px, 4vw, 44px);
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      gap: 10px;
      align-items: center;
      min-height: 40px;
      padding: 0 14px;
      border-radius: 999px;
      background: rgba(47, 185, 58, 0.08);
      color: rgba(47, 185, 58);;
      font-weight: 700;
      font-size: 0.92rem;
      border: 1px solid rgba(47, 185, 58, 0.12);
    }

    h1 {
      margin: 18px 0 14px;
      font-size: clamp(2.5rem, 6vw, 5rem);
      line-height: 0.95;
      letter-spacing: -0.05em;
      max-width: 10ch;
    }

    .lead {
      margin: 0;
      max-width: 56ch;
      color: var(--muted);
      font-size: clamp(1rem, 1.8vw, 1.14rem);
      line-height: 1.7;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 24px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 0 22px;
      border-radius: 999px;
      font-weight: 800;
      letter-spacing: -0.02em;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    }

    .btn:hover,
    .btn:focus-visible {
      transform: translateY(-2px);
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--brand), var(--brand-2));
      color: #fff;
      box-shadow: 0 16px 34px rgba(138,31,31,0.22);
    }

    .btn-secondary {
      background: var(--surface-2);
      color: var(--ink);
      border: 1px solid var(--line);
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 22px;
    }

    .chip {
      min-height: 38px;
      padding: 0 14px;
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      background: rgba(255,255,255,0.72);
      border: 1px solid rgba(31,24,20,0.08);
      color: var(--ink);
      font-weight: 600;
      box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    }

    .hero-visual {
      position: relative;
      min-height: 420px;
    }

    .hero-card {
      position: absolute;
      inset: 0;
      border-radius: var(--radius-xl);
      overflow: hidden;
      background: var(--surface-2);
      box-shadow: var(--shadow);
    }

    .hero-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .floating-note {
      position: absolute;
      right: -12px;
      bottom: 18px;
      max-width: 220px;
      padding: 16px 18px;
      border-radius: 22px;
      background: rgba(255,250,245,0.95);
      backdrop-filter: blur(10px);
      box-shadow: var(--shadow);
      border: 1px solid rgba(31,24,20,0.08);
    }

    .floating-note strong {
      display: block;
      margin-bottom: 6px;
      font-size: 1rem;
    }

    .floating-note span {
      color: var(--muted);
      line-height: 1.45;
      font-size: 0.92rem;
    }

    .section {
      padding: clamp(34px, 5vw, 68px) 0;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 24px;
    }

    .section-head h2 {
      margin: 0;
      font-size: clamp(1.8rem, 4vw, 3rem);
      letter-spacing: -0.04em;
    }

    .section-head p {
      margin: 0;
      max-width: 54ch;
      color: var(--muted);
      line-height: 1.65;
    }

    .cards-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .info-card,
    .dish-card,
    .contact-card {
      background: var(--surface-2);
      border: 1px solid rgba(31,24,20,0.08);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .info-card {
      padding: 24px;
    }

    .info-card h3,
    .contact-card h3 {
      margin: 0 0 10px;
      font-size: 1.12rem;
      letter-spacing: -0.02em;
    }

    .info-card p,
    .contact-card p,
    .contact-card li {
      margin: 0;
      color: var(--muted);
      line-height: 1.65;
    }

    .dish-card img {
      aspect-ratio: 1 / 1;
      width: 100%;
      object-fit: cover;
    }

    .dish-body {
      padding: 18px 18px 20px;
    }

    .dish-body h3 {
      margin: 0 0 8px;
      font-size: 1.1rem;
    }

    .dish-body p {
      margin: 0;
      color: var(--muted);
      line-height: 1.6;
    }

    .split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }

    .menu-banner {
      padding: 28px;
      border-radius: var(--radius-xl);
      background: linear-gradient(135deg, #231915, #6c211d 60%, #9b3d28 100%);
      color: #fff;
      box-shadow: var(--shadow);
      overflow: hidden;
      position: relative;
    }

    .menu-banner::after {
      content: "";
      position: absolute;
      width: 240px;
      height: 240px;
      border-radius: 50%;
      background: rgba(255,255,255,0.08);
      right: -70px;
      top: -70px;
    }

    .menu-banner h3 {
      margin: 0 0 10px;
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      letter-spacing: -0.03em;
      position: relative;
      z-index: 1;
    }

    .menu-banner p {
      margin: 0;
      max-width: 42ch;
      color: rgba(255,255,255,0.84);
      line-height: 1.7;
      position: relative;
      z-index: 1;
    }

    .menu-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 18px;
      position: relative;
      z-index: 1;
    }

    .btn-light {
      background: #fff7f1;
      color: #261715;
    }

    .btn-ghost {
      background: transparent;
      color: #fff;
      border: 1px solid rgba(255,255,255,0.24);
    }

    .contact-card {
      padding: 24px;
    }

    .contact-list {
      list-style: none;
      padding: 0;
      margin: 14px 0 0;
      display: grid;
      gap: 12px;
    }

    .contact-list li strong {
      display: block;
      color: var(--ink);
      margin-bottom: 4px;
    }

    .map-box {
      margin-top: 16px;
      border-radius: 18px;
      overflow: hidden;
      min-height: 220px;
      background: #e8ddd2;
      border: 1px solid rgba(31,24,20,0.08);
    }

    .map-box iframe {
      width: 100%;
      height: 220px;
      border: 0;
    }

    .cta-band {
      padding-bottom: 72px;
    }

    .cta-wrap {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 18px;
      align-items: stretch;
      background: var(--surface-2);
      border: 1px solid rgba(31,24,20,0.08);
      border-radius: 30px;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .cta-copy,
    .cta-image {
      min-height: 320px;
    }

    .cta-copy {
      padding: clamp(24px, 4vw, 44px);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .cta-copy h2 {
      margin: 0 0 12px;
      font-size: clamp(2rem, 4vw, 3.2rem);
      line-height: 0.98;
      letter-spacing: -0.05em;
    }

    .cta-copy p {
      margin: 0;
      color: var(--muted);
      line-height: 1.7;
      max-width: 46ch;
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 22px;
    }

    .cta-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .site-footer {
      padding: 0 0 32px;
      color: var(--muted);
      font-size: 0.95rem;
    }

    .site-footer .container {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
      padding-top: 22px;
      border-top: 1px solid rgba(31,24,20,0.08);
    }

    .mobile-menu-btn {
      display: none;
    }

    @media (max-width: 980px) {
      .hero-grid,
      .split,
      .cta-wrap,
      .cards-3 {
        grid-template-columns: 1fr;
      }

      .hero-visual {
        min-height: 360px;
      }

      .floating-note {
        right: 16px;
        bottom: 16px;
      }
    }

    @media (max-width: 760px) {
      .container {
        width: min(calc(100% - 22px), var(--max));
      }

      .nav {
        min-height: 68px;
      }

      .mobile-menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 999px;
        border: 1px solid var(--line);
        background: var(--surface-2);
        font-size: 1.2rem;
      }

      .nav-links {
        position: absolute;
        left: 12px;
        right: 12px;
        top: 74px;
        padding: 14px;
        border-radius: 22px;
        background: rgba(255,250,245,0.97);
        border: 1px solid rgba(31,24,20,0.08);
        box-shadow: var(--shadow);
        display: none;
        flex-direction: column;
        align-items: flex-start;
      }

      .nav-links.open { display: flex; }

      .nav-cta {
        display: none;
      }

      .section-head {
        align-items: flex-start;
        flex-direction: column;
      }

      .hero {
        padding-top: 20px;
      }

      .hero-visual {
        min-height: 310px;
      }

      .cta-copy,
      .cta-image {
        min-height: auto;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after {
        animation: none !important;
        transition: none !important;
      }
    }