

:root {
  --red:        #c0392b;
  --red-dark:   #962d22;
  --red-light:  #f9ecea;
  --gold:       #c9952a;
  --gold-light: #fdf3e0;
  --ink:        #1a1008;
  --ink-mid:    #3d2b1a;
  --ink-soft:   #6b5744;
  --cream:      #faf6f0;
  --white:      #ffffff;
  --border:     #e8ddd3;

  --font-display: 'Noto Serif SC', serif;
  --font-serif:   'Lora', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   1.75rem;
  --space-lg:   3rem;
  --space-xl:   5rem;
  --space-2xl:  8rem;

  --radius-sm:  4px;
  --radius-md:  10px;
  --radius-lg:  20px;

  --container:  1200px;
  --header-h:   72px;
}


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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }


.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}


h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
}

h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--ink-mid);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-xs);
}

.body-lead {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--ink-soft);
  font-style: italic;
  line-height: 1.7;
}


.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.btn-primary {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--white); }

.btn-outline-dark {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-dark:hover { background: var(--white); color: var(--ink); }

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.28); }

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.12); }


.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  text-decoration: none;
}
.logo:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

.logo-zh {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}

.logo-en {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  max-width: 130px;
}

.main-nav {
  margin-left: auto;
}
.main-nav ul {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.nav-link:hover,
.nav-link.active {
  color: var(--red);
  border-bottom-color: var(--red);
}
.nav-link:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

.header-cta {
  margin-left: var(--space-sm);
  flex-shrink: 0;
  font-size: 0.8rem;
  padding: 0.55rem 1.2rem;
}

@media (max-width: 680px) {
  .main-nav { display: none; }
  .header-cta { margin-left: auto; }
}


.hero {
  position: relative;
  min-height: clamp(520px, 85vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(18, 8, 2, 0.82) 0%,
    rgba(30, 12, 5, 0.6) 55%,
    rgba(18, 8, 2, 0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 680px;
  padding-block: var(--space-2xl);
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin-bottom: 2rem;
  font-style: italic;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}


.highlights {
  background: var(--white);
  padding-block: var(--space-xl);
  border-bottom: 1px solid var(--border);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
}

.highlight-card {
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.highlight-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201, 149, 42, 0.1);
}

.highlight-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.highlight-card h3 {
  margin-bottom: 0.5rem;
}

.highlight-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
}


.signature {
  padding-block: var(--space-xl);
  background: var(--cream);
}

.signature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

@media (max-width: 860px) {
  .signature-inner {
    grid-template-columns: 1fr;
  }
  .signature-images { order: -1; }
}

.signature-text h2 {
  margin-bottom: 1rem;
}

.signature-text .body-lead {
  margin-bottom: 1.5rem;
}

.dish-list {
  margin-bottom: var(--space-md);
  border-top: 1px solid var(--border);
}

.dish-list li {
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.dish-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}

.dish-note {
  font-size: 0.83rem;
  color: var(--ink-soft);
}

.signature-images {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: clamp(360px, 50vw, 560px);
}

.sig-img {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.sig-img--top { border-radius: var(--radius-md) var(--radius-md) var(--radius-sm) var(--radius-md); }
.sig-img--bottom { border-radius: var(--radius-sm) var(--radius-md) var(--radius-md) var(--radius-md); }


.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(400px, 55vw, 620px);
}

@media (max-width: 760px) {
  .story { grid-template-columns: 1fr; }
  .story-media { height: 300px; }
}

.story-media {
  position: relative;
  overflow: hidden;
}

.story-content {
  background: var(--ink);
  color: var(--white);
  padding: clamp(2.5rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.story-content .section-label {
  color: var(--gold);
}

.story-content h2 {
  color: var(--white);
}

.story-content p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
}


.visit {
  padding-block: var(--space-xl);
  background: var(--white);
}

.visit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

@media (max-width: 760px) {
  .visit-inner { grid-template-columns: 1fr; }
}

.visit-info h2 {
  margin-bottom: var(--space-md);
}

.info-block {
  margin-bottom: 1.5rem;
}

.info-block h3 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
  font-family: var(--font-body);
}

.info-block p {
  color: var(--ink-mid);
  font-size: 0.95rem;
  line-height: 1.7;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.hours-table td {
  padding: 0.4rem 0;
  color: var(--ink-mid);
  vertical-align: top;
}
.hours-table td:first-child {
  width: 55%;
  font-weight: 500;
  color: var(--ink);
}
.hours-table td.closed {
  color: var(--ink-soft);
  font-style: italic;
}

.contact-link {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--red);
  font-family: var(--font-serif);
  transition: color 0.2s;
}
.contact-link:hover { color: var(--red-dark); }
.contact-link:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

.visit-info .btn { margin-top: var(--space-sm); }

.visit-map-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}


.cta-band {
  background: var(--red);
  padding-block: var(--space-lg);
}

.cta-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
}

.cta-band p {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  margin-top: 0.3rem;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.cta-band .btn-primary {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}
.cta-band .btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}


.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding-top: var(--space-lg);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: clamp(1.5rem, 5vw, 3rem);
  padding-bottom: var(--space-lg);
  align-items: start;
}

@media (max-width: 680px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-logo .logo-zh { color: var(--red); }
.footer-logo .logo-en { color: rgba(255,255,255,0.85); }

.footer-tagline {
  font-size: 0.85rem;
  margin-top: 0.6rem;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
  line-height: 1.55;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }
.footer-nav a:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

.footer-contact p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.footer-contact a {
  color: var(--gold);
  transition: color 0.2s;
}
.footer-contact a:hover { color: #e0aa44; }

.footer-base {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding-block: 1.25rem;
}

.footer-base p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}





.menu-hero {
  position: relative;
  min-height: clamp(280px, 40vh, 440px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

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

.menu-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(18, 8, 2, 0.88) 0%,
    rgba(18, 8, 2, 0.5) 55%,
    rgba(18, 8, 2, 0.25) 100%
  );
}

.menu-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding-block: clamp(2.5rem, 6vw, 4rem);
}

.menu-hero-content h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.menu-hero-content .hero-sub {
  margin-bottom: 0;
  max-width: 480px;
}

.menu-nav-strip {
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: var(--header-h);
  z-index: 90;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.menu-nav-strip::-webkit-scrollbar { display: none; }

.menu-category-nav {
  display: flex;
  gap: 0;
  white-space: nowrap;
}

.menu-category-nav a {
  display: block;
  padding: 0.9rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.menu-category-nav a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.menu-category-nav a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -3px;
}

.menu-body {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  padding-block: var(--space-xl);
}

@media (max-width: 900px) {
  .menu-body {
    grid-template-columns: 1fr;
  }
  .menu-sidebar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }
  .sidebar-img-card { display: none; }
}

.menu-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 46px + 1.5rem);
}

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.25rem 1.5rem;
  margin-bottom: 1rem;
}

.sidebar-card:last-child { margin-bottom: 0; }

.sidebar-card .section-label { margin-bottom: 0.75rem; }

.sidebar-body {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.sidebar-phone {
  font-size: 1.05rem;
}

.sidebar-img-card {
  padding: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.sidebar-img-card img {
  border-radius: var(--radius-md);
}

.menu-sections {
  min-width: 0;
}

.menu-section {
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
  border-bottom: 1px solid var(--border);
  scroll-margin-top: calc(var(--header-h) + 46px + 1.5rem);
}

.menu-section:last-of-type {
  border-bottom: none;
}

.menu-section-header {
  display: flex;
  align-items: baseline;
  gap: 0.875rem;
  margin-bottom: 0.5rem;
}

.menu-section-zh {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}

.menu-section-intro {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  max-width: 600px;
  line-height: 1.7;
}

.dumpling-intro-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 6;
  margin-bottom: 1.75rem;
}

.menu-list {
  border-top: 1px solid var(--border);
}

.menu-item {
  display: flex;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
}

.menu-item--featured {
  background: var(--gold-light);
  margin-inline: -1rem;
  padding-inline: 1rem;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid #f0e2c0;
}

.menu-item--featured + .menu-item--featured {
  border-top: 1px solid #f0e2c0;
}

.menu-item-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
  min-width: 0;
}

.menu-item-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

.menu-item-desc {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.menu-item-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,149,42,0.12);
  border: 1px solid rgba(201,149,42,0.3);
  border-radius: 20px;
  padding: 0.15rem 0.65rem;
  margin-top: 0.3rem;
  align-self: flex-start;
}

.menu-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-style: italic;
  margin-top: 1.1rem;
  padding-left: 0.75rem;
  border-left: 3px solid var(--border);
  line-height: 1.6;
}

.menu-note-block {
  background: var(--red-light);
  border: 1px solid #e8c8c4;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  font-size: 0.875rem;
  color: var(--ink-mid);
  line-height: 1.65;
  margin-top: 0.5rem;
}

.menu-note-block a {
  color: var(--red);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(192,57,43,0.35);
}
.menu-note-block a:hover { color: var(--red-dark); }



.about-hero {
  position: relative;
  min-height: clamp(420px, 65vh, 680px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.about-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    110deg,
    rgba(18, 8, 2, 0.85) 0%,
    rgba(30, 12, 5, 0.65) 50%,
    rgba(18, 8, 2, 0.4) 100%
  );
}

.about-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 680px;
  padding-block: var(--space-xl);
}

.about-hero-content h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.about-intro {
  padding-block: var(--space-xl);
  background: var(--white);
}

.about-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

@media (max-width: 860px) {
  .about-intro-inner {
    grid-template-columns: 1fr;
  }
  .about-intro-img {
    order: -1;
  }
}

.about-intro-text h2 {
  margin-bottom: 1rem;
}

.about-intro-text .body-lead {
  margin-bottom: 1.25rem;
}

.about-intro-text p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-intro-text p:last-of-type {
  margin-bottom: 0;
}

.about-intro-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.about-craft {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(380px, 50vw, 580px);
}

@media (max-width: 760px) {
  .about-craft {
    grid-template-columns: 1fr;
  }
  .about-craft-media {
    height: 280px;
  }
}

.about-craft-media {
  position: relative;
  overflow: hidden;
}

.about-craft-content {
  background: var(--ink-mid);
  color: var(--white);
  padding: clamp(2.5rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.about-craft-content .section-label {
  color: var(--gold);
}

.about-craft-content h2 {
  color: var(--white);
}

.about-craft-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.about-values {
  padding-block: var(--space-xl);
  background: var(--cream);
}

.about-values-header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
}

.about-values-header h2 {
  margin-top: 0.5rem;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
}

.about-value-card {
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.about-value-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201, 149, 42, 0.1);
}

.about-value-card .highlight-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.about-value-card h3 {
  margin-bottom: 0.5rem;
}

.about-value-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.about-dishes {
  padding-block: var(--space-xl);
  background: var(--white);
  border-top: 1px solid var(--border);
}

.about-dishes-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

@media (max-width: 860px) {
  .about-dishes-inner {
    grid-template-columns: 1fr;
  }
  .about-dishes-imgs {
    order: -1;
  }
}

.about-dishes-imgs {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: clamp(340px, 48vw, 520px);
}

.about-dishes-text h2 {
  margin-bottom: 1rem;
}

.about-dishes-text .body-lead {
  margin-bottom: 1.5rem;
}



.contact-hero {
  position: relative;
  min-height: clamp(320px, 45vh, 520px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

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

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    110deg,
    rgba(18, 8, 2, 0.78) 0%,
    rgba(30, 12, 5, 0.52) 60%,
    rgba(18, 8, 2, 0.3) 100%
  );
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 680px;
  padding-block: var(--space-xl);
}

.contact-hero-content h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.contact-main {
  padding-block: var(--space-xl);
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-photo-stack {
    order: -1;
  }
}

.contact-details h2 {
  margin-bottom: var(--space-md);
}

.contact-block {
  margin-bottom: 1.75rem;
}

.contact-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 0.35rem;
}

.inline-link {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
  margin-top: 0.5rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.inline-link:hover { color: var(--red-dark); border-bottom-color: var(--red-dark); }
.inline-link:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

.contact-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: var(--space-md);
}

.contact-photo-stack {
  display: grid;
  grid-template-rows: 2fr 1fr;
  gap: 1rem;
  height: clamp(380px, 52vw, 560px);
}

.contact-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.contact-photo--main {
  border-radius: var(--radius-md) var(--radius-md) var(--radius-sm) var(--radius-md);
}

.contact-photo--accent {
  border-radius: var(--radius-sm) var(--radius-md) var(--radius-md) var(--radius-md);
}

.map-section {
  position: relative;
  min-height: clamp(380px, 55vw, 560px);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.map-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.map-section::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(26, 16, 8, 0.0) 40%,
    rgba(26, 16, 8, 0.88) 100%
  );
}

.map-card {
  position: relative;
  z-index: 2;
  margin-left: auto;
  max-width: 420px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  margin-right: clamp(1.25rem, 5vw, 5rem);
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}

.map-card .section-label {
  margin-bottom: 0.5rem;
}

.map-card h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  margin-bottom: 0.875rem;
}

.map-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

@media (max-width: 680px) {
  .map-section {
    flex-direction: column;
    align-items: stretch;
    min-height: unset;
  }
  .map-section::after { display: none; }
  .map-img-wrap {
    position: relative;
    height: 220px;
  }
  .map-card {
    margin: 0;
    border-radius: 0;
    max-width: 100%;
  }
}


/* pn-injected styles (links block, social bar, image fallback, photo credit) */

.pn-links-rail { box-sizing: border-box; width: 100%; max-width: 100%; margin: 0; padding: 1.1rem 1.25rem 1rem; border: 1px solid rgba(0,0,0,.14); border-top: 3px solid currentColor; background: rgba(0,0,0,.015); font-family: inherit; }
.pn-links-rail__head { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; opacity: .8; margin: 0 0 .65rem; padding-bottom: .5rem; border-bottom: 1px solid rgba(0,0,0,.1); }
.pn-links-rail__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.pn-links-rail__list li { line-height: 1.35; }
.pn-links-rail__list a { font-size: .92rem; color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.pn-links-rail__list a:hover { opacity: .75; }
@media (min-width: 1024px) {
  main:has(> .pn-links-rail) {
    max-width: min(1280px, calc(100vw - 3rem));
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    column-gap: 2.5rem;
    align-items: start;
    box-sizing: border-box;
  }
  main > .pn-links-rail {
    grid-column: 2;
    grid-row: 1 / span 999;
    position: sticky;
    top: 1.5rem;
    align-self: start;
  }
  main > .pn-links-hidden { grid-column: 1; grid-row: 1; }
}
@media (max-width: 1023px) {
  main > .pn-links-rail { margin: 1.5rem 0 1rem; }
}
.pn-links-hidden { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.pn-social { display: flex; align-items: center; gap: .65rem; flex-wrap: wrap; }
.pn-social__link { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; color: inherit; opacity: .82; transition: opacity .15s ease, transform .15s ease; text-decoration: none; }
.pn-social__link:hover { opacity: 1; transform: translateY(-1px); }
.pn-social__icon { display: block; width: 22px; height: 22px; }
.pn-social--header { justify-content: flex-end; margin: .35rem 1.25rem; }
.pn-social--footer { justify-content: center; margin: 0 auto .85rem; }
.pn-social--sidebar { justify-content: flex-start; margin: 0 0 1.25rem; }
@media (max-width: 720px) { .pn-social--header { justify-content: center; } }

.pn-links-rail{max-width:none;width:auto;margin:1.5rem auto .25rem;padding:0;border:none;background:none;text-align:center;}
.pn-links-rail__head{border:none;padding:0;margin:0 0 .5rem;font-size:.66rem;letter-spacing:.14em;opacity:.5;}
.pn-links-rail__list{flex-direction:row;justify-content:center;flex-wrap:wrap;gap:.35rem 1.15rem;}

.pn-photo{background-color:#e6e1d6;}

.pn-img-fallback{background:repeating-linear-gradient(135deg,#e6e1d6 0,#e6e1d6 10px,#efe9dd 10px,#efe9dd 20px);display:block;min-height:200px;width:100%;}

.pn-photo-credits{font-size:11px;line-height:1.5;opacity:.55;text-align:center;padding:10px 16px;}.pn-photo-credits a{color:inherit;}
