:root {
    --oat: #EDE4D3;
    --oat-deep: #E3D7C1;
    --espresso: #2E1F14;
    --charcoal: #221B15;
    --copper: #B5622B;
    --copper-deep: #914E22;
    --sage: #6B7A5E;
    --paper-line: rgba(34, 27, 21, 0.14);
  }

  @media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
      --oat: #1B1611;
      --oat-deep: #211A14;
      --espresso: #EDE4D3;
      --charcoal: #EDE4D3;
      --copper: #D97F45;
      --copper-deep: #E9975E;
      --sage: #8A9A7C;
      --paper-line: rgba(237, 228, 211, 0.16);
    }
  }
  :root[data-theme="dark"] {
    --oat: #1B1611;
    --oat-deep: #211A14;
    --espresso: #EDE4D3;
    --charcoal: #EDE4D3;
    --copper: #D97F45;
    --copper-deep: #E9975E;
    --sage: #8A9A7C;
    --paper-line: rgba(237, 228, 211, 0.16);
  }

  * { box-sizing: border-box; }

  body {
    margin: 0;
    background: var(--oat);
    color: var(--charcoal);
    font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 500;
    margin: 0;
    color: var(--espresso);
  }

  a { color: inherit; }

  .wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 28px;
  }

  /* ---- Nav ---- */
  nav {
    padding: 26px 0;
    border-bottom: 1px solid var(--paper-line);
  }
  nav .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  .logo {
    font-family: 'Fraunces', serif;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.01em;
  }
  .nav-links {
    display: flex;
    gap: 28px;
    font-size: 0.92rem;
  }
  .nav-links a { text-decoration: none; }
  .nav-links a:hover { color: var(--copper); }

  /* ---- Hero ---- */
  .hero {
    padding: 72px 0 96px;
  }
  .hero .wrap {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: end;
  }
  .hero h1 {
    font-size: clamp(2.6rem, 5.4vw, 4.4rem);
    line-height: 1.04;
    max-width: 11ch;
  }
  .hero-sub {
    margin-top: 22px;
    max-width: 40ch;
    font-size: 1.05rem;
    color: var(--espresso);
    opacity: 0.85;
  }
  .hero-meta {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-bottom: 6px;
    border-left: 1px solid var(--paper-line);
    padding-left: 24px;
    font-size: 0.9rem;
  }
  .hero-meta .label { color: var(--sage); font-weight: 600; }
  .hero-visual {
    grid-column: 1 / -1;
    margin-top: 40px;
    height: clamp(220px, 32vw, 340px);
    width: 100%;
    border-radius: 2px;
    object-fit: cover;
    display: block;
    border: 1px solid var(--paper-line);
    background: var(--oat-deep);
  }

  /* ---- Section shared ---- */
  section { padding: 88px 0; border-top: 1px solid var(--paper-line); }
  .section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 44px;
    flex-wrap: wrap;
  }
  .section-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
  .section-head p { max-width: 34ch; font-size: 0.95rem; opacity: 0.75; }

  /* ---- Menu ---- */
  .menu-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
  .menu-group h3 {
    font-size: 1.1rem;
    color: var(--sage);
    font-weight: 600;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--paper-line);
  }
  .menu-item {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 0;
    border-bottom: 1px dashed var(--paper-line);
  }
  .menu-item:last-child { border-bottom: none; }
  .menu-item .name { font-weight: 500; }
  .menu-item .desc { font-size: 0.85rem; opacity: 0.65; margin-top: 3px; }
  .menu-item .price {
    font-family: 'Fraunces', serif;
    color: var(--copper-deep);
    white-space: nowrap;
    font-size: 1.02rem;
  }

  /* ---- Story ---- */
  .story .wrap {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: center;
  }
  .story-block {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
    border: 1px solid var(--paper-line);
    border-radius: 2px;
    background: var(--oat-deep);
  }
  .story p { margin-top: 18px; opacity: 0.85; max-width: 52ch; }
  .story p + p { margin-top: 14px; }

  /* ---- Visit ---- */
  .visit .wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }
  .visit-item .label { color: var(--sage); font-weight: 600; font-size: 0.85rem; margin-bottom: 10px; }
  .visit-item .value { font-size: 1.05rem; }
  .visit-item .value + .value { margin-top: 4px; }

  .newsletter {
    margin-top: 56px;
    padding-top: 44px;
    border-top: 1px solid var(--paper-line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }
  .newsletter h3 { font-size: 1.3rem; max-width: 20ch; }
  .newsletter form {
    display: flex;
    gap: 10px;
    flex: 1;
    max-width: 420px;
    min-width: 260px;
  }
  .newsletter input {
    flex: 1;
    padding: 13px 16px;
    border: 1px solid var(--paper-line);
    background: var(--oat-deep);
    color: var(--charcoal);
    border-radius: 2px;
    font-family: inherit;
    font-size: 0.92rem;
  }
  .newsletter input:focus {
    outline: 2px solid var(--copper);
    outline-offset: 1px;
  }
  .newsletter button {
    padding: 13px 22px;
    background: var(--espresso);
    color: var(--oat);
    border: none;
    border-radius: 2px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.15s ease;
  }
  .newsletter button:hover { background: var(--copper-deep); }
  .newsletter button:focus-visible,
  .nav-links a:focus-visible {
    outline: 2px solid var(--copper);
    outline-offset: 2px;
  }
  .form-note { font-size: 0.82rem; opacity: 0.65; margin-top: 8px; }

  footer {
    border-top: 1px solid var(--paper-line);
    padding: 32px 0;
    font-size: 0.85rem;
    opacity: 0.7;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
  }

  @media (max-width: 760px) {
    .hero .wrap { grid-template-columns: 1fr; }
    .hero-meta { border-left: none; padding-left: 0; border-top: 1px solid var(--paper-line); padding-top: 18px; flex-direction: row; flex-wrap: wrap; }
    .menu-cols { grid-template-columns: 1fr; gap: 40px; }
    .story .wrap { grid-template-columns: 1fr; }
    .story-block { order: -1; aspect-ratio: 16/9; width: 100%; }
    .visit .wrap { grid-template-columns: 1fr; gap: 28px; }
  }

  @media (prefers-reduced-motion: reduce) {
    * { transition: none !important; }
  }
