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

  :root {
    --cream: #F5EDD8;
    --cream-dark: #E8D9B8;
    --ink: #1A1208;
    --ink-soft: #3D2E15;
    --amber: #C87D2A;
    --amber-light: #E09A45;
    --amber-pale: #F2C878;
    --copper: #A0522D;
    --muted: #8B7355;
    --muted-light: #BFA880;
    --divider: rgba(200,125,42,0.3);
    --bg-dark: #120D06;
    --bg-mid: #1E1508;
    --bg-section: #F9F3E6;
    --card-bg: #FFFDF7;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg-dark);
    color: var(--cream);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 3rem;
    background: rgba(18,13,6,0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--divider);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
  }

  .nav-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    opacity: 0.95;
  }

  .nav-right {
    display: flex;
    align-items: center;
    gap: clamp(1.25rem, 3vw, 2.5rem);
    flex-shrink: 0;
  }

  .nav-links {
    display: flex;
    gap: 2.2rem;
    list-style: none;
  }

  .nav-phone {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--amber-light);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
  }

  .nav-phone:hover { color: var(--amber); }

  .nav-links a {
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cream-dark);
    text-decoration: none;
    transition: color 0.2s;
  }

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

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 5rem;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 50% 40%, rgba(200,125,42,0.12) 0%, transparent 70%),
      radial-gradient(ellipse 60% 80% at 20% 80%, rgba(160,82,45,0.08) 0%, transparent 60%),
      linear-gradient(180deg, #120D06 0%, #1a1008 50%, #120D06 100%);
  }

  .hero-texture {
    position: absolute;
    inset: 0;
    background-image:
      repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(200,125,42,0.015) 2px, rgba(200,125,42,0.015) 4px),
      repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(200,125,42,0.015) 2px, rgba(200,125,42,0.015) 4px);
  }

  .hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .hero-eyebrow::before,
  .hero-eyebrow::after {
    content: '';
    width: 3rem;
    height: 1px;
    background: var(--amber);
    opacity: 0.6;
  }

  .hero-title-logo {
    margin: 0;
    line-height: 0;
    position: relative;
    margin-bottom: 0.35rem;
  }

  .hero-title-logo img {
    width: clamp(160px, 42vmin, 320px);
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: contain;
  }

  .hero-sub {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--muted-light);
    margin-top: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
    letter-spacing: 0.02em;
  }

  .hero-ctas {
    display: flex;
    gap: 1rem;
    position: relative;
    flex-wrap: wrap;
    justify-content: center;
  }

  .btn-primary {
    padding: 0.85rem 2.2rem;
    background: var(--amber);
    color: var(--ink);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
  }

  .btn-primary:hover { background: var(--amber-light); transform: translateY(-1px); }

  .btn-ghost {
    padding: 0.85rem 2.2rem;
    background: transparent;
    color: var(--cream);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(245,237,216,0.3);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
  }

  .btn-ghost:hover { border-color: var(--amber); color: var(--amber-light); }

  /* ── THREE PILLARS ── */
  .pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
  }

  .pillar {
    padding: 2.2rem 2.5rem;
    text-align: center;
    border-right: 1px solid var(--divider);
    background: var(--bg-mid);
    transition: background 0.3s;
    text-decoration: none;
    display: block;
  }

  .pillar:last-child { border-right: none; }
  .pillar:hover { background: rgba(200,125,42,0.07); }

  .pillar-icon { display: none; }

  .pillar h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--amber-light);
    margin-bottom: 0.6rem;
    letter-spacing: 0.02em;
  }

  .pillar p {
    font-size: 0.85rem;
    color: var(--muted-light);
    line-height: 1.6;
    letter-spacing: 0.01em;
  }

  /* ── SECTION SHARED ── */
  section { position: relative; }

  .section-label {
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }

  .section-label::after {
    content: '';
    flex: 1;
    max-width: 3rem;
    height: 1px;
    background: var(--amber);
    opacity: 0.5;
  }

  /* ── STORY ── */
  .story {
    padding: 8rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
  }

  .story-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: 1.8rem;
  }

  .story-text h2 em {
    font-style: italic;
    color: var(--amber-light);
  }

  .story-text p {
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    line-height: 1.85;
    color: var(--muted-light);
    margin-bottom: 1.2rem;
  }

  .story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--divider);
  }

  .stat {
    padding: 2rem;
    border-right: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
    text-align: center;
  }

  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-bottom: none; }
  .stat:nth-child(4) { border-right: none; border-bottom: none; }

  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--amber-light);
    line-height: 1;
    margin-bottom: 0.4rem;
  }

  .stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
  }

  /* ── TAPS SECTION ── */
  .taps-section {
    padding: 7rem 3rem;
    background: var(--bg-mid);
    border-top: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
  }

  .taps-inner { max-width: 1100px; margin: 0 auto; }

  .taps-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .taps-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--cream);
  }

  /* Grid uses dark “canvas” so empty tracks on the last row don’t show divider brown */
  .taps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0;
    background: var(--bg-dark);
    border: 1px solid var(--divider);
  }

  .tap-item {
    background: var(--bg-dark);
    padding: 1.4rem 1.5rem;
    border-right: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
    transition: background 0.2s;
  }

  .tap-item:hover { background: rgba(200,125,42,0.06); }

  .tap-num {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--amber);
    opacity: 0.7;
    margin-bottom: 0.4rem;
  }

  .tap-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 0.25rem;
    line-height: 1.2;
  }

  .tap-brewery {
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 0.5rem;
  }

  .tap-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
  }

  .tap-style {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    border: 1px solid var(--divider);
    color: var(--amber);
    letter-spacing: 0.08em;
    display: inline-block;
  }

  .tap-abv {
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    color: var(--muted-light);
  }

  .tap-item--nitro {
    background: linear-gradient(135deg, rgba(200, 125, 42, 0.07) 0%, var(--bg-dark) 55%);
    box-shadow: inset 0 0 0 1px rgba(200, 125, 42, 0.2);
  }

  .tap-item--nitro:hover {
    background: linear-gradient(135deg, rgba(200, 125, 42, 0.12) 0%, rgba(200, 125, 42, 0.04) 100%);
  }

  /* ── FOOD ── */
  .food-section {
    padding: 7rem 3rem 0;
    max-width: 1100px;
    margin: 0 auto;
  }

  .food-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--cream);
    margin-bottom: 1rem;
  }

  .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2px;
    background: var(--divider);
    border: 1px solid var(--divider);
    margin-bottom: 2rem;
  }

  .food-section > .menu-grid:last-of-type {
    margin-bottom: 0.75rem;
  }

  /* Snacks: one panel (title + two columns of items) */
  .menu-grid--snacks {
    grid-template-columns: 1fr;
    margin-bottom: 2px;
  }

  .menu-category--snacks .menu-cat-title {
    margin-bottom: 0;
  }

  .menu-snacks-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 2rem;
    margin-top: 0.5rem;
  }

  .menu-snacks-col {
    padding-top: 0.25rem;
  }

  .menu-snacks-col:first-child {
    border-right: 1px solid var(--divider);
    padding-right: 1.5rem;
  }

  .menu-note {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--divider);
  }

  /* Gallery under menu: keep bottom breathing room; minimal top so it follows the menu closely */
  .food-gallery-block {
    padding: 1rem 0 4rem;
    background: var(--bg-dark);
  }

  .food-gallery-block .photo-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(10px, 2vw, 18px);
    height: clamp(220px, 28vw, 280px);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding: clamp(14px, 2.2vw, 20px) clamp(1.25rem, 5vw, 3.5rem);
    box-sizing: border-box;
    background:
      linear-gradient(
        180deg,
        rgba(200, 125, 42, 0.07) 0%,
        transparent 38%,
        transparent 62%,
        rgba(200, 125, 42, 0.05) 100%
      ),
      var(--bg-dark);
    border: 1px solid var(--divider);
    box-shadow:
      inset 0 1px 0 rgba(245, 237, 216, 0.05),
      inset 0 -1px 0 rgba(0, 0, 0, 0.35);
  }

  .food-gallery-block .photo-gallery .photo-placeholder {
    height: 100%;
    border: 1px solid rgba(200, 125, 42, 0.48);
    box-shadow:
      inset 0 1px 0 rgba(245, 237, 216, 0.12),
      0 0 0 1px rgba(10, 8, 5, 1),
      0 0 0 3px rgba(200, 125, 42, 0.3),
      0 8px 28px rgba(0, 0, 0, 0.42);
  }

  .callout-will {
    border-top: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
    box-shadow: inset 0 1px 0 rgba(200, 125, 42, 0.15);
    background: var(--bg-mid);
  }

  .callout-will__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 0;
    align-items: stretch;
  }

  .callout-will__media {
    position: relative;
    min-height: 300px;
    background: var(--bg-dark);
    border-right: 1px solid var(--divider);
  }

  .callout-will__media img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  .callout-will__text {
    padding: 3.5rem 3rem 3.5rem 3.25rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .callout-will__text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    color: var(--cream);
    line-height: 1.2;
    margin-bottom: 1.25rem;
  }

  .callout-will__text p {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--muted-light);
    margin-bottom: 1rem;
  }

  .callout-will__text p:last-child {
    margin-bottom: 0;
  }

  .callout-will__text .callout-will__lede {
    color: var(--cream-dark);
    font-size: 1.02rem;
  }

  .callout-will__text a {
    color: var(--amber-light);
    text-decoration: none;
    border-bottom: 1px solid rgba(200, 125, 42, 0.4);
    transition: color 0.2s, border-color 0.2s;
  }

  .callout-will__text a:hover {
    color: var(--amber);
    border-color: var(--amber);
  }

  .callout-will__text .section-label {
    margin-bottom: 1rem;
  }

  @media (max-width: 900px) {
    .callout-will__inner {
      grid-template-columns: 1fr;
    }

    .callout-will__media {
      border-right: none;
      border-bottom: 1px solid var(--divider);
      min-height: 240px;
    }

    .callout-will__media img {
      min-height: 260px;
      max-height: 380px;
    }

    .callout-will__text {
      padding: 3rem 1.5rem;
      text-align: center;
      align-items: center;
    }

    .callout-will__text .section-label {
      justify-content: center;
    }

    .callout-will__text .section-label::after {
      display: none;
    }
  }

  .menu-panini-note {
    font-size: 0.75rem;
    color: var(--amber);
    letter-spacing: 0.06em;
    margin-bottom: 0.8rem;
    padding: 0.4rem 0.8rem;
    border: 1px solid var(--divider);
    display: inline-block;
  }

  .menu-category {
    background: var(--bg-mid);
    padding: 2rem 2rem;
  }

  .menu-cat-title {
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--divider);
  }

  .menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(200,125,42,0.1);
  }

  .menu-item:last-child { border-bottom: none; }

  .menu-item-name {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.9rem;
    color: var(--cream-dark);
    line-height: 1.3;
  }

  .menu-item-desc {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 0.1rem;
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
  }

  .menu-item-price {
    font-size: 0.85rem;
    color: var(--amber);
    font-weight: 500;
    white-space: nowrap;
    margin-left: 1rem;
  }

  /* ── BOTTLE HOUSE ── */
  .bottle-section {
    padding: 7rem 3rem;
    background: var(--bg-mid);
    border-top: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
  }

  .bottle-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    align-items: start;
  }

  .bottle-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--cream);
    margin-bottom: 1.5rem;
    line-height: 1.1;
  }

  .bottle-text h2 em { color: var(--amber-light); font-style: italic; }

  .bottle-text p {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--muted-light);
    margin-bottom: 1.2rem;
  }

  .bottle-features {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .bottle-feat {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }

  .bottle-feat-icon {
    width: 2rem;
    height: 2rem;
    border: 1px solid var(--divider);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.1rem;
    color: var(--amber);
  }

  .bottle-feat-text strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 0.2rem;
    letter-spacing: 0.03em;
  }

  .bottle-feat-text span {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.5;
  }

  .bottle-inner--stack {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .bottle-side-photo {
    max-width: 720px;
    margin: 0 auto;
    width: 100%;
  }

  .deli-section-full {
    padding: 8rem 3rem;
    background: var(--bg-dark);
    border-top: 1px solid var(--divider);
  }

  .deli-section-inner {
    max-width: 960px;
    margin: 0 auto;
  }

  .deli-section-full .section-label {
    margin-bottom: 0.75rem;
  }

  .deli-card {
    border: 1px solid var(--divider);
    padding: 2.5rem;
    background: rgba(200,125,42,0.04);
  }

  .deli-card--wide {
    padding: 3.25rem clamp(1.5rem, 4vw, 3.75rem);
  }

  .deli-card--wide .deli-menu-grid {
    gap: 2rem 4rem;
  }

  .deli-card--wide .deli-menu-col {
    min-width: 0;
  }

  .deli-card--wide .deli-section {
    margin-bottom: 0.35rem;
  }

  .deli-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--amber-light);
    margin-bottom: 0.5rem;
  }

  .deli-card .deli-sub {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.8rem;
  }

  .deli-items { list-style: none; margin-bottom: 2rem; }

  .deli-items li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(200,125,42,0.1);
    font-family: 'Libre Baskerville', serif;
    font-size: 0.88rem;
    color: var(--cream-dark);
  }

  .deli-items li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--amber);
    border-radius: 50%;
    flex-shrink: 0;
  }

  .deli-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 1.5rem;
  }

  .deli-menu-col--left {
    padding-right: 1.5rem;
    border-right: 1px solid var(--divider);
  }

  .deli-menu-col--right {
    padding-left: 1.5rem;
  }

  .deli-menu-col { }

  .deli-section {
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--divider);
    margin-bottom: 0.2rem;
  }

  .deli-section:last-child { border-bottom: none; }

  .deli-section-title {
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 0.8rem;
  }

  .deli-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(200,125,42,0.08);
    gap: 0.5rem;
  }

  .deli-row:last-child { border-bottom: none; }

  .deli-row-name {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.82rem;
    color: var(--cream-dark);
    line-height: 1.3;
  }

  .deli-row-desc {
    font-size: 0.72rem;
    color: var(--muted);
    font-style: italic;
    line-height: 1.4;
    margin-top: 0.1rem;
  }

  .deli-row-price {
    font-size: 0.8rem;
    color: var(--amber);
    white-space: nowrap;
    flex-shrink: 0;
  }

  .deli-note {
    font-size: 0.75rem;
    color: var(--muted);
    font-style: italic;
    font-family: 'Libre Baskerville', serif;
    line-height: 1.5;
    margin-bottom: 0.8rem;
  }

  .deli-bread-line {
    font-size: 0.72rem;
    color: var(--muted-light);
    letter-spacing: 0.04em;
    padding: 0.6rem 0;
    border-top: 1px solid var(--divider);
    margin-top: 0.5rem;
  }

  .deli-hours strong { color: var(--cream-dark); }

  .deli-phone {
    display: block;
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--divider);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
  }

  .deli-phone span {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--amber-light);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: none;
    margin-top: 0.3rem;
  }

  /* ── VISIT ── */
  .visit-section {
    padding: 7rem 3rem;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }

  .visit-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--cream);
    margin-bottom: 2rem;
    grid-column: 1 / -1;
  }

  .visit-info { }

  .visit-scroll-target,
  .story-scroll-target {
    scroll-margin-top: 5.5rem;
  }

  /* ── REVIEWS ── */
  .reviews-section {
    background: var(--bg-dark);
    border-top: 1px solid var(--divider);
    scroll-margin-top: 5.5rem;
  }

  .reviews-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 5.5rem 3rem 6rem;
  }

  .reviews-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.85rem, 3.2vw, 2.5rem);
    font-weight: 900;
    color: var(--cream);
    line-height: 1.15;
    margin-bottom: 1rem;
    max-width: 20ch;
  }

  .reviews-intro {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 2.5rem;
    max-width: 42ch;
  }

  .reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--divider);
    border: 1px solid var(--divider);
    margin-bottom: 2.25rem;
  }

  .review-card {
    background: var(--bg-mid);
    padding: 2rem 2.5rem;
    margin: 0;
    border: none;
  }

  .review-card p {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--cream-dark);
    margin: 0 0 1rem;
  }

  .review-card p::before {
    content: '“';
    color: var(--amber);
    opacity: 0.55;
    margin-right: 0.08em;
  }

  .review-card p::after {
    content: '”';
    color: var(--amber);
    opacity: 0.55;
    margin-left: 0.02em;
  }

  .review-card cite {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber);
    font-style: normal;
  }

  .reviews-yelp {
    text-align: center;
    margin: 0;
  }

  .reviews-yelp a {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber-light);
    text-decoration: none;
    border-bottom: 1px solid rgba(200, 125, 42, 0.45);
    padding-bottom: 0.15rem;
    transition: color 0.2s, border-color 0.2s;
  }

  .reviews-yelp a:hover {
    color: var(--amber);
    border-color: var(--amber);
  }

  .visit-block h4 {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 0.8rem;
  }

  .visit-block p {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--cream-dark);
  }

  .visit-block a {
    color: var(--amber-light);
    text-decoration: none;
  }

  .visit-find__text > .visit-block + .visit-block {
    margin-top: 1.5rem;
  }

  .visit-find__text > .visit-block:last-of-type {
    margin-top: 2.75rem;
  }

  .hours-table { width: 100%; border-collapse: collapse; }

  .hours-table td {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.9rem;
    padding: 0.45rem 0;
    color: var(--cream-dark);
    border-bottom: 1px solid rgba(200,125,42,0.1);
  }

  .hours-table td:last-child { text-align: right; color: var(--muted-light); }

  /* Find Us: headline + details share left column so photo aligns with top copy */
  .visit-find__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
  }

  .visit-find__headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--cream);
    margin-top: 0;
    margin-bottom: 2.5rem;
    line-height: 1.1;
  }

  .visit-find__photo {
    min-height: 360px;
    height: auto;
    align-self: start;
    margin: 0;
  }

  .visit-find__photo img {
    min-height: 360px;
    height: 100%;
    max-height: none;
  }

  .map-placeholder {
    border: 1px solid var(--divider);
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200,125,42,0.03);
    position: relative;
    overflow: hidden;
  }

  .map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      repeating-linear-gradient(0deg, transparent, transparent 30px, rgba(200,125,42,0.05) 30px, rgba(200,125,42,0.05) 31px),
      repeating-linear-gradient(90deg, transparent, transparent 30px, rgba(200,125,42,0.05) 30px, rgba(200,125,42,0.05) 31px);
  }

  .map-label {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    position: relative;
    text-align: center;
  }

  .map-label strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--amber-light);
    margin-top: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
  }

  /* ── FOOTER ── */
  footer {
    padding: 3rem;
    border-top: 1px solid var(--divider);
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--amber-light);
  }

  .footer-copy {
    font-size: 0.75rem;
    color: var(--muted);
    letter-spacing: 0.05em;
  }

  .footer-social {
    display: flex;
    gap: 1.2rem;
  }

  .footer-social a {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-social a:hover { color: var(--amber-light); }

  /* ── DIVIDER ORNAMENT ── */
  .ornament {
    text-align: center;
    color: var(--amber);
    opacity: 0.4;
    font-size: 1.2rem;
    letter-spacing: 0.5rem;
    margin: 0.5rem 0;
  }

  /* ── PHOTO ZONES ── */
  .photo-placeholder {
    position: relative;
    overflow: hidden;
    background: var(--bg-mid);
    border: 1px solid var(--divider);
  }

  .photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
  }

  .photo-placeholder:hover img { transform: scale(1.03); }

  .photo-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 0.6rem 1rem;
    background: rgba(18,13,6,0.75);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--amber);
    border-top: 1px solid var(--divider);
    pointer-events: none;
  }

  /* Hero gets a real background photo */
  .hero-photo-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .hero-photo-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.18;
    filter: sepia(0.4) saturate(0.8);
  }

  /* Darkens the center band so type stays readable on busy street photos */
  .hero-scrim {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
      radial-gradient(ellipse 92% 78% at 50% 44%, rgba(10, 8, 5, 0.78) 0%, rgba(10, 8, 5, 0.42) 52%, rgba(10, 8, 5, 0.2) 100%),
      linear-gradient(180deg, rgba(10, 8, 5, 0.28) 0%, transparent 30%, transparent 65%, rgba(10, 8, 5, 0.38) 100%);
  }

  /* Photo grid strip: gutter + framed panels so tiles read as separate photos */
  .photo-strip {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    height: 380px;
    gap: clamp(10px, 2vw, 18px);
    padding: 0 clamp(1rem, 4vw, 3.5rem);
    box-sizing: border-box;
    background:
      linear-gradient(
        180deg,
        rgba(200, 125, 42, 0.07) 0%,
        transparent 38%,
        transparent 62%,
        rgba(200, 125, 42, 0.05) 100%
      ),
      var(--bg-dark);
    border-top: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
    box-shadow:
      inset 0 1px 0 rgba(245, 237, 216, 0.05),
      inset 0 -1px 0 rgba(0, 0, 0, 0.35);
  }

  .photo-strip .photo-placeholder {
    height: 100%;
    border: 1px solid rgba(200, 125, 42, 0.48);
    box-shadow:
      inset 0 1px 0 rgba(245, 237, 216, 0.12),
      0 0 0 1px rgba(10, 8, 5, 1),
      0 0 0 3px rgba(200, 125, 42, 0.3),
      0 8px 28px rgba(0, 0, 0, 0.42);
  }

  /* Two-up closing strip: same mats + frames, centered with side margins */
  .photo-strip--duo {
    grid-template-columns: 1fr 1fr;
    height: clamp(268px, 32vw, 340px);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding: clamp(14px, 2.2vw, 20px) clamp(1.25rem, 5vw, 3.5rem);
    border-top: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
  }

  /* Atmosphere gallery between sections */
  .photo-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    height: 260px;
    gap: 2px;
    background: var(--divider);
  }

  .photo-gallery .photo-placeholder { height: 100%; border: none; }

  /* Story photo panel */
  .story-photo {
    height: 100%;
    min-height: 420px;
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero--home {
    min-height: 100vh;
    padding: 0;
    justify-content: flex-start;
  }

  .hero--home .hero-bg,
  .hero--home .hero-texture,
  .hero--home .hero-photo-bg,
  .hero--home .hero-scrim {
    animation: none;
    opacity: 1;
  }

  .hero--home .hero-eyebrow {
    text-shadow:
      0 0 12px rgba(10, 8, 5, 0.95),
      0 1px 2px rgba(10, 8, 5, 0.9);
  }

  .hero--home .hero-sub {
    color: var(--cream);
    font-weight: 400;
    max-width: 56ch;
    line-height: 1.65;
    text-shadow:
      0 0 14px rgba(10, 8, 5, 0.95),
      0 1px 3px rgba(10, 8, 5, 0.98),
      0 2px 24px rgba(10, 8, 5, 0.85);
  }

  .hero--home .btn-ghost {
    border-color: rgba(245, 237, 216, 0.55);
    background: rgba(10, 8, 5, 0.42);
    text-shadow: 0 1px 2px rgba(10, 8, 5, 0.9);
  }

  .hero--home .btn-ghost:hover {
    background: rgba(10, 8, 5, 0.55);
  }

  .hero-inner {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 7rem 2rem 2.5rem;
    width: 100%;
  }

  .pillars--hero {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: none;
    margin: 0;
    border-top: 1px solid var(--divider);
    border-bottom: none;
    background: rgba(18, 13, 6, 0.72);
    backdrop-filter: blur(10px);
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.55s;
    opacity: 0;
  }

  .pillars--hero .pillar {
    background: transparent;
  }

  .pillars--hero .pillar:hover {
    background: rgba(200, 125, 42, 0.1);
  }

  .hero-inner > * {
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
  }

  .hero-inner .hero-eyebrow { animation-delay: 0.1s; }
  .hero-inner .hero-title-logo { animation-delay: 0.22s; }
  .hero-inner .hero-sub { animation-delay: 0.35s; }
  .hero-inner .hero-ctas { animation-delay: 0.48s; }

  .hero--sub .hero-inner .hero-sub-logo { animation-delay: 0.1s; }
  .hero--sub .hero-inner .hero-headline { animation-delay: 0.22s; }
  .hero--sub .hero-inner .hero-sub { animation-delay: 0.35s; }
  .hero--sub .hero-inner .hero-ctas { animation-delay: 0.48s; }

  .hero--home > *:not(.hero-inner):not(.pillars--hero) {
    animation: none;
  }

  /* ── SUBPAGE HEROES ── */
  .hero--sub {
    min-height: 56vh;
    padding: 0;
    justify-content: center;
  }

  .hero--sub .hero-inner {
    padding: 7rem 2rem 4.5rem;
    flex: none;
  }

  .hero-page-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 1.25rem;
  }

  .hero-sub-logo {
    margin: 0 auto 1.15rem;
    line-height: 0;
    max-width: 100%;
  }

  .hero-sub-logo img {
    width: clamp(96px, 26vmin, 200px);
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: contain;
  }

  .hero--sub .hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 6.5vw, 4.25rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--cream);
    max-width: 16ch;
    margin-bottom: 1rem;
  }

  .hero--sub .hero-headline em {
    font-style: italic;
    color: var(--amber-light);
  }

  .hero--sub .hero-sub {
    margin-top: 0;
    margin-bottom: 0;
    max-width: 36rem;
  }

  .hero--sub .hero-ctas {
    margin-top: 2rem;
  }

  .nav-links a.nav-current {
    color: var(--amber-light);
  }

  @media (max-width: 900px) {
    .pillars--hero,
    .pillars {
      grid-template-columns: 1fr;
    }
    .pillar { border-right: none; border-bottom: 1px solid var(--divider); }
    .pillar:last-child { border-bottom: none; }
    .story { grid-template-columns: 1fr; gap: 3rem; }
    .visit-section { grid-template-columns: 1fr; }
    .visit-find__grid {
      grid-template-columns: 1fr;
    }
    .visit-find__photo {
      order: -1;
      min-height: 240px;
    }
    .visit-find__photo img {
      min-height: 260px;
      max-height: 340px;
    }
    .visit-find__headline {
      margin-bottom: 2rem;
    }
    .reviews-inner {
      padding: 4rem 1.5rem 4.5rem;
    }
    .reviews-grid {
      grid-template-columns: 1fr;
    }
    .menu-snacks-cols {
      grid-template-columns: 1fr;
      gap: 0;
    }
    .menu-snacks-col:first-child {
      border-right: none;
      padding-right: 0;
      padding-bottom: 0.75rem;
      margin-bottom: 0.5rem;
      border-bottom: 1px solid rgba(200, 125, 42, 0.25);
    }
    .bottle-inner { grid-template-columns: 1fr; gap: 3rem; }
    .deli-menu-grid { grid-template-columns: 1fr; }
    .deli-menu-col--left,
    .deli-menu-col--right {
      padding-left: 0;
      padding-right: 0;
      border-right: none;
    }
    .deli-card--wide .deli-menu-grid { gap: 2.5rem 0; }
    nav { padding: 1rem 1.25rem; }
    .nav-right { gap: 1rem 1.5rem; flex-wrap: wrap; justify-content: flex-end; }
    .nav-links { gap: 1rem; flex-wrap: wrap; justify-content: flex-end; }
    .nav-phone { letter-spacing: 0.08em; }
    .photo-strip--duo {
      grid-template-columns: 1fr;
      height: auto;
      gap: clamp(10px, 2vw, 16px);
      padding: clamp(14px, 2.2vw, 20px) clamp(1rem, 4vw, 1.5rem);
    }
    .photo-strip--duo .photo-placeholder {
      min-height: 240px;
      height: 240px;
    }
    .food-gallery-block .photo-gallery {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      height: auto;
      gap: clamp(10px, 2vw, 16px);
      padding: clamp(14px, 2.2vw, 20px) clamp(1rem, 4vw, 1.5rem);
    }
    .food-gallery-block .photo-gallery .photo-placeholder {
      min-height: 200px;
      height: 220px;
    }
  }
