:root {
  --ink: #21140f;
  --cream: #f5ead6;
  --paper: #fff6e7;
  --wine: #7c1320;
  --wine-dark: #470b12;
  --olive: #343817;
  --olive-soft: #4b5025;
  --gold: #c69a4d;
  --gold-soft: #e0bd78;
  --line: rgba(137, 94, 40, 0.36);
  --shadow: 0 18px 44px rgba(37, 22, 13, 0.28);
  --radius: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at top, rgba(126, 31, 38, 0.18), transparent 32rem),
    linear-gradient(180deg, #190e0a, #f1e5cf 22rem, #f7eddb 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.page-shell {
  width: min(100%, 900px);
  margin: 0 auto;
  background: var(--paper);
  box-shadow: 0 0 70px rgba(0, 0, 0, 0.24);
}

.poster {
  position: relative;
  min-height: 720px;
  padding: 38px 36px 46px;
  color: #fff8ed;
  overflow: hidden;
  border-radius: 0 0 0 0;
  background:
    linear-gradient(90deg, rgba(13, 9, 7, 0.96) 0%, rgba(13, 9, 7, 0.82) 43%, rgba(13, 9, 7, 0.38) 72%, rgba(13, 9, 7, 0.22) 100%),
    linear-gradient(180deg, rgba(13, 9, 7, 0.06) 0%, rgba(13, 9, 7, 0.14) 55%, rgba(13, 9, 7, 0.88) 100%),
    url("assets/cafe.jpg?v=4"),
    radial-gradient(circle at 74% 48%, rgba(205, 154, 80, 0.62), transparent 16rem),
    linear-gradient(135deg, #140b08, #521119 52%, #12100b);
  background-position: center;
  background-size: cover;
}

.poster::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 22px 22px;
  mix-blend-mode: soft-light;
}

.poster > * {
  position: relative;
  z-index: 1;
}

.poster-top {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: flex-start;
}

.brand {
  display: flex;
  gap: 18px;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(224, 189, 120, 0.34), 0 12px 26px rgba(0, 0, 0, 0.34);
}

.brand-text {
  display: grid;
  gap: 8px;
}

.brand-text strong {
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-text small {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-soft);
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(14px, 2.7vw, 20px);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.brand-text small::before,
.brand-text small::after {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--gold);
}

.reserve-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  min-height: 66px;
  padding: 0 26px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  color: #fff2df;
  background: linear-gradient(135deg, rgba(124, 19, 32, 0.9), rgba(71, 11, 18, 0.88));
  box-shadow: 0 0 0 1px rgba(124, 19, 32, 0.5), 0 12px 28px rgba(0, 0, 0, 0.28);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  text-decoration: none;
}

.poster-copy {
  max-width: 520px;
  margin-top: 98px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(58px, 10vw, 82px);
  line-height: 0.95;
  font-weight: 600;
}

.poster-copy p {
  position: relative;
  max-width: 360px;
  margin: 42px 0 0;
  padding-top: 22px;
  color: rgba(255, 248, 237, 0.82);
  font-size: clamp(22px, 4.8vw, 32px);
  line-height: 1.35;
}

.poster-copy p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  max-width: 90%;
  height: 1px;
  background: var(--gold);
}

.poster-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 42px;
}

.button,
.map-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  border-radius: 5px;
  padding: 0 28px;
  border: 1px solid transparent;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.button span,
.map-button span,
.card-arrow {
  font-family: Inter, sans-serif;
  font-size: 30px;
  line-height: 1;
}

.button.wine {
  color: #fff3e4;
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--wine), var(--wine-dark));
}

.button.olive {
  color: var(--gold-soft);
  border-color: rgba(224, 189, 120, 0.78);
  background: linear-gradient(135deg, var(--olive-soft), var(--olive));
}

.button.gold {
  width: min(100%, 340px);
  color: #351c0c;
  border-color: rgba(255, 240, 196, 0.5);
  background: linear-gradient(135deg, #f0c778, #bd8a3e);
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(93, 55, 19, 0.18);
  border-bottom: 1px solid rgba(93, 55, 19, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 251, 241, 0.92), rgba(242, 229, 205, 0.92)),
    var(--cream);
}

.quick-strip a {
  display: grid;
  gap: 8px;
  justify-items: center;
  align-content: center;
  min-height: 118px;
  padding: 18px 10px;
  color: #5d4530;
  text-align: center;
  text-decoration: none;
}

.quick-strip a + a {
  border-left: 1px solid rgba(174, 130, 66, 0.45);
}

.quick-strip span {
  color: #b28747;
  font-size: 38px;
  line-height: 1;
}

.quick-strip strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(17px, 3.8vw, 24px);
  font-weight: 600;
  line-height: 1.05;
}

.club-card {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 30px;
  align-items: center;
  margin: 28px 30px;
  padding: 32px 40px;
  border: 1px solid rgba(222, 181, 104, 0.72);
  border-radius: var(--radius);
  color: #fff5e6;
  background:
    linear-gradient(135deg, rgba(42, 45, 17, 0.96), rgba(31, 31, 12, 0.94)),
    url("assets/club-cafe.jpg"),
    var(--olive);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.cup-mark {
  display: grid;
  justify-items: center;
  color: var(--gold-soft);
}

.steam {
  color: rgba(224, 189, 120, 0.74);
  font-size: 42px;
  letter-spacing: 0.15em;
  transform: rotate(-12deg);
}

.cup {
  display: grid;
  place-items: center;
  width: 150px;
  height: 110px;
  border: 3px solid var(--gold);
  border-radius: 16px 16px 56px 56px;
  box-shadow: inset 0 0 0 1px rgba(255, 240, 196, 0.18);
}

.cup img {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  object-fit: cover;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold-soft);
  font-family: Cinzel, Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.club-card h2 {
  max-width: 470px;
  font-size: clamp(38px, 7vw, 62px);
  line-height: 0.98;
  font-weight: 600;
}

.club-card h2 em {
  display: block;
  color: var(--gold-soft);
  font-style: italic;
  font-weight: 600;
}

.club-card p:not(.eyebrow) {
  margin: 22px 0 28px;
  color: rgba(255, 250, 235, 0.88);
  font-size: clamp(18px, 4vw, 26px);
}

.menu-preview {
  padding: 4px 30px 26px;
}

.section-kicker {
  margin-bottom: 20px;
  color: var(--wine-dark);
  text-align: center;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.menu-card {
  overflow: hidden;
  border: 1px solid rgba(174, 130, 66, 0.34);
  border-radius: 8px;
  color: #4a261f;
  background: rgba(255, 250, 241, 0.92);
  box-shadow: 0 10px 24px rgba(60, 34, 19, 0.14);
  text-align: center;
  text-decoration: none;
}

.menu-photo {
  display: block;
  aspect-ratio: 1 / 0.72;
  background-position: center;
  background-size: cover;
}

.starter {
  background-image: url("assets/club-cafe.jpg?v=3"), linear-gradient(135deg, #6d141f, #e1c38c);
  background-position: 50% 50%;
}

.plates {
  background-image: url("assets/plato-2.jpg?v=3"), linear-gradient(135deg, #231915, #c99f5c);
  background-position: 50% 50%;
}

.coffee {
  background-image: url("assets/menu-cafe.png?v=1"), linear-gradient(135deg, #1f1812, #ddbd78);
  background-position: 68% 58%;
}

.menu-card strong {
  display: block;
  margin: 18px 12px 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(23px, 4vw, 32px);
  line-height: 1;
}

.menu-card small {
  display: block;
  min-height: 50px;
  margin: 0 16px;
  color: #6b5144;
  font-size: clamp(14px, 2.8vw, 19px);
  line-height: 1.28;
}

.card-arrow {
  display: block;
  margin: 10px 0 16px;
  color: var(--gold);
}

.full-menu-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(100%, 360px);
  min-height: 52px;
  margin: 18px auto 0;
  border: 1px solid var(--gold);
  border-radius: 6px;
  color: var(--wine-dark);
  background: rgba(255, 250, 241, 0.82);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
}

.seo-local {
  margin: 0 36px 28px;
  padding: 26px 30px;
  border-top: 1px solid rgba(174, 130, 66, 0.32);
  border-bottom: 1px solid rgba(174, 130, 66, 0.32);
  color: #3d2a1d;
  background: rgba(255, 250, 241, 0.62);
}

.seo-local h2 {
  max-width: 680px;
  margin: 0 auto 14px;
  color: var(--wine-dark);
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.02;
  text-align: center;
}

.seo-local p:not(.section-kicker) {
  max-width: 690px;
  margin: 0 auto;
  color: #675142;
  font-size: 16px;
  line-height: 1.65;
  text-align: center;
}

.seo-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.seo-links a {
  padding: 10px 13px;
  border: 1px solid rgba(174, 130, 66, 0.42);
  border-radius: 999px;
  color: var(--wine-dark);
  background: rgba(255, 246, 231, 0.74);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.location-band {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  margin: 0 36px 28px;
  padding: 26px;
  border-radius: 9px;
  color: #fff2df;
  background:
    linear-gradient(135deg, rgba(124, 19, 32, 0.97), rgba(71, 11, 18, 0.97)),
    url("assets/local.jpg?v=3"),
    var(--wine-dark);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.pin {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-soft);
  font-size: 40px;
}

.location-band strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(26px, 5vw, 36px);
  line-height: 1.08;
}

.map-button {
  min-width: 172px;
  border-color: var(--gold);
  color: #fff2df;
  background: rgba(71, 11, 18, 0.55);
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 0 36px 28px;
  color: rgba(91, 54, 21, 0.72);
  font-family: Cinzel, Georgia, serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer span {
  height: 1px;
  background: rgba(174, 130, 66, 0.46);
}

.menu-page {
  background:
    radial-gradient(circle at top, rgba(198, 154, 77, 0.2), transparent 30rem),
    linear-gradient(180deg, #170d09, #efe1c7 18rem, #f7eddb 100%);
}

.info-page {
  background:
    radial-gradient(circle at top, rgba(124, 19, 32, 0.2), transparent 32rem),
    linear-gradient(180deg, #170d09, #efe1c7 18rem, #f7eddb 100%);
}

.menu-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 88px 1fr 88px;
  align-items: center;
  gap: 12px;
  width: min(100%, 900px);
  margin: 0 auto;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(174, 130, 66, 0.3);
  background: rgba(255, 246, 231, 0.92);
  backdrop-filter: blur(16px);
}

.menu-header div {
  display: grid;
  justify-items: center;
  line-height: 1.1;
}

.menu-header strong {
  font-family: Cinzel, Georgia, serif;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-header span {
  margin-top: 3px;
  color: #8c6732;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 15px;
}

.back-link,
.small-reserve {
  color: var(--wine-dark);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.small-reserve {
  justify-self: end;
  padding: 9px 12px;
  border: 1px solid var(--gold);
  border-radius: 5px;
}

.menu-book {
  width: min(100%, 900px);
  margin: 0 auto;
  padding: 22px 14px 40px;
}

.info-sheet {
  width: min(100%, 900px);
  margin: 0 auto;
  padding: 22px 14px 42px;
}

.answer-hero,
.answer-grid article,
.faq-list {
  border: 1px solid rgba(174, 130, 66, 0.5);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 252, 244, 0.95), rgba(246, 235, 216, 0.97)),
    var(--paper);
  box-shadow: 0 14px 38px rgba(56, 35, 18, 0.16);
}

.answer-hero {
  display: grid;
  justify-items: center;
  padding: 34px 28px;
  text-align: center;
}

.answer-hero img {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px var(--gold), 0 10px 24px rgba(0, 0, 0, 0.16);
}

.answer-hero h1 {
  max-width: 720px;
  color: #2a2118;
  font-size: clamp(44px, 10vw, 76px);
  line-height: 0.95;
}

.answer-hero p:not(.section-kicker) {
  max-width: 680px;
  margin: 18px auto 0;
  color: #675142;
  font-size: 17px;
  line-height: 1.65;
}

.answer-actions {
  justify-content: center;
}

.answer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.answer-grid article {
  padding: 22px;
}

.answer-grid h2,
.faq-list h2 {
  color: var(--wine-dark);
  font-size: 28px;
}

.answer-grid p {
  margin: 10px 0 0;
  color: #675142;
  line-height: 1.55;
}

.faq-list {
  margin-top: 16px;
  padding: 26px;
}

.faq-list h2 {
  margin-bottom: 18px;
  text-align: center;
}

.faq-list details {
  border-top: 1px solid rgba(174, 130, 66, 0.28);
  padding: 14px 0;
}

.faq-list details:last-child {
  border-bottom: 1px solid rgba(174, 130, 66, 0.28);
}

.faq-list summary {
  cursor: pointer;
  color: #2b241d;
  font-weight: 800;
}

.faq-list p {
  margin: 10px 0 0;
  color: #675142;
  line-height: 1.55;
}

.menu-cover,
.menu-sheet {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(174, 130, 66, 0.5);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 252, 244, 0.94), rgba(246, 235, 216, 0.96)),
    var(--paper);
  box-shadow: 0 14px 38px rgba(56, 35, 18, 0.16);
}

.menu-cover::before,
.menu-sheet::before,
.menu-cover::after,
.menu-sheet::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  border-color: rgba(174, 130, 66, 0.52);
  pointer-events: none;
}

.menu-cover::before,
.menu-sheet::before {
  top: 14px;
  left: 14px;
  border-top: 2px solid;
  border-left: 2px solid;
  border-radius: 9px 0 0 0;
}

.menu-cover::after,
.menu-sheet::after {
  right: 14px;
  bottom: 14px;
  border-right: 2px solid;
  border-bottom: 2px solid;
  border-radius: 0 0 9px 0;
}

.menu-cover {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 36px 24px 26px;
  text-align: center;
}

.seal,
.sheet-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-soft);
  background: #15120e;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  box-shadow: inset 0 0 0 4px rgba(198, 154, 77, 0.16);
}

.seal img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
}

.menu-cover p {
  margin: 8px 0 0;
  color: #9b7136;
  font-family: Cinzel, Georgia, serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.menu-cover h1 {
  color: #2a2118;
  font-size: clamp(48px, 12vw, 88px);
  line-height: 0.9;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.menu-tabs a {
  padding: 9px 12px;
  border: 1px solid rgba(174, 130, 66, 0.42);
  border-radius: 999px;
  color: #5b3b24;
  background: rgba(255, 250, 241, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.menu-sheet {
  margin-top: 18px;
  padding: 28px 28px 34px;
}

.sheet-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  font-size: 24px;
}

.menu-sheet h2 {
  color: #a4773b;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(25px, 7vw, 42px);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-align: center;
  text-transform: uppercase;
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 16px 0 18px;
  color: #9b7136;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
}

.ornament::before,
.ornament::after {
  content: "";
  width: 52px;
  height: 1px;
  background: rgba(174, 130, 66, 0.45);
}

.menu-sheet h3 {
  margin: 24px 0 8px;
  color: #9a3f35;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 23px;
}

.sheet-note {
  margin: 8px 0 12px;
  color: #7a5e43;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 16px;
  font-style: italic;
  text-align: center;
}

.menu-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.menu-sheet article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(174, 130, 66, 0.24);
}

.menu-sheet article span {
  color: #2b241d;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  line-height: 1.18;
}

.menu-sheet article small {
  display: block;
  margin-top: 4px;
  color: #5f5146;
  font-family: Inter, sans-serif;
  font-size: 13px;
  line-height: 1.35;
}

.menu-sheet article b {
  color: #3b2718;
  font-size: 15px;
  line-height: 1.4;
  white-space: nowrap;
}

@media (min-width: 901px) {
  .page-shell {
    margin-block: 24px;
    border-radius: 30px;
    overflow: hidden;
  }
}

@media (max-width: 720px) {
  .poster {
    min-height: 560px;
    padding: 24px 24px 32px;
  }

  .brand {
    gap: 12px;
  }

  .brand-logo {
    width: 82px;
    height: 82px;
  }

  .brand-text strong {
    font-size: 28px;
  }

  .brand-text small {
    font-size: 12px;
  }

  .brand-text small::before,
  .brand-text small::after {
    width: 26px;
  }

  .reserve-top {
    min-width: 104px;
    min-height: 48px;
    padding: 0 16px;
    font-size: 20px;
  }

  .poster-copy {
    max-width: 360px;
    margin-top: 62px;
  }

  h1 {
    font-size: 54px;
  }

  .poster-copy p {
    max-width: 290px;
    margin-top: 26px;
    font-size: 22px;
  }

  .poster-actions {
    gap: 12px;
    margin-top: 30px;
    flex-wrap: nowrap;
  }

  .button {
    flex: 1 1 0;
    min-height: 48px;
    padding: 0 14px;
    font-size: 20px;
  }

  .quick-strip a {
    min-height: 96px;
    padding: 14px 8px;
  }

  .quick-strip span {
    font-size: 30px;
  }

  .quick-strip strong {
    font-size: 15px;
  }

  .club-card {
    grid-template-columns: 120px 1fr;
    gap: 18px;
    margin: 18px 16px;
    padding: 22px;
  }

  .steam {
    font-size: 30px;
  }

  .cup {
    width: 94px;
    height: 72px;
    border-width: 2px;
    border-radius: 12px 12px 36px 36px;
  }

  .cup img {
    width: 48px;
    height: 48px;
  }

  .eyebrow,
  .section-kicker {
    font-size: 12px;
  }

  .club-card h2 {
    font-size: 36px;
  }

  .club-card p:not(.eyebrow) {
    margin: 16px 0 20px;
    font-size: 18px;
  }

  .button.gold {
    min-height: 48px;
    font-size: 20px;
  }

  .menu-preview {
    padding: 10px 16px 22px;
  }

  .menu-grid {
    gap: 10px;
  }

  .menu-card strong {
    margin-top: 12px;
    font-size: 23px;
  }

  .menu-card small {
    min-height: 56px;
    margin-inline: 10px;
    font-size: 13px;
  }

  .card-arrow {
    margin-bottom: 10px;
  }

  .location-band {
    grid-template-columns: auto 1fr;
    margin: 0 16px 24px;
    padding: 18px;
  }

  .pin {
    width: 52px;
    height: 52px;
    font-size: 30px;
  }

  .location-band strong {
    font-size: 24px;
  }

  .map-button {
    grid-column: 1 / -1;
    min-height: 48px;
    min-width: 0;
    font-size: 20px;
  }

  .seo-local {
    margin: 0 16px 22px;
    padding: 22px 18px;
  }

  .seo-local p:not(.section-kicker) {
    font-size: 14px;
    line-height: 1.55;
  }

  .menu-header {
    grid-template-columns: 72px 1fr 74px;
    padding: 10px 12px;
  }

  .menu-header strong {
    font-size: 12px;
  }

  .back-link,
  .small-reserve {
    font-size: 12px;
  }

  .small-reserve {
    padding: 8px 9px;
  }

  .menu-book {
    padding: 14px 10px 30px;
  }

  .info-sheet {
    padding: 14px 10px 30px;
  }

  .answer-hero {
    padding: 28px 18px;
  }

  .answer-grid {
    grid-template-columns: 1fr;
  }

  .faq-list {
    padding: 22px 18px;
  }

  .menu-cover {
    padding: 28px 16px 20px;
  }

  .seal {
    width: 58px;
    height: 58px;
    font-size: 22px;
  }

  .menu-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    width: 100%;
    padding-bottom: 4px;
    flex-wrap: nowrap;
  }

  .menu-tabs a {
    flex: 0 0 auto;
  }

  .menu-sheet {
    padding: 24px 18px 28px;
  }

  .menu-columns {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .menu-sheet article {
    gap: 10px;
  }

  .menu-sheet article span {
    font-size: 18px;
  }

  .menu-sheet article small {
    font-size: 12px;
  }
}

@media (max-width: 430px) {
  body {
    background: var(--paper);
  }

  .page-shell {
    min-height: 100vh;
    box-shadow: none;
  }

  .poster {
    min-height: 530px;
    padding: 20px 18px 28px;
  }

  .brand-logo {
    width: 62px;
    height: 62px;
  }

  .brand-text strong {
    font-size: 18px;
    letter-spacing: 0.16em;
  }

  .brand-text small {
    gap: 8px;
    font-size: 10px;
    letter-spacing: 0.2em;
  }

  .brand-text small::before,
  .brand-text small::after {
    width: 18px;
  }

  .reserve-top {
    min-width: 86px;
    min-height: 42px;
    padding: 0 12px;
    font-size: 17px;
  }

  .poster-copy {
    margin-top: 60px;
  }

  h1 {
    max-width: 310px;
    font-size: 45px;
  }

  .poster-copy p {
    max-width: 245px;
    margin-top: 24px;
    padding-top: 18px;
    font-size: 18px;
  }

  .poster-actions {
    margin-top: 26px;
  }

  .button {
    min-height: 44px;
    padding: 0 11px;
    font-size: 16px;
  }

  .button span,
  .map-button span,
  .card-arrow {
    font-size: 24px;
  }

  .quick-strip a {
    min-height: 82px;
    padding: 12px 6px;
  }

  .quick-strip span {
    font-size: 25px;
  }

  .quick-strip strong {
    font-size: 13px;
  }

  .club-card {
    grid-template-columns: 84px 1fr;
    margin: 14px 14px;
    padding: 18px;
  }

  .cup {
    width: 66px;
    height: 52px;
  }

  .cup img {
    width: 34px;
    height: 34px;
  }

  .club-card h2 {
    font-size: 29px;
  }

  .club-card p:not(.eyebrow) {
    font-size: 15px;
  }

  .button.gold {
    width: 100%;
    min-height: 42px;
    font-size: 17px;
  }

  .menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .menu-photo {
    aspect-ratio: 1 / 0.76;
  }

  .menu-card strong {
    font-size: 18px;
  }

  .menu-card small {
    min-height: 50px;
    font-size: 11px;
  }

  .location-band {
    margin-inline: 14px;
  }

  .seo-local {
    margin-inline: 14px;
  }

  .full-menu-link {
    min-height: 44px;
    font-size: 18px;
  }

  .menu-cover h1 {
    font-size: 48px;
  }

  .menu-sheet h2 {
    font-size: 24px;
    letter-spacing: 0.18em;
  }

  .sheet-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .menu-sheet h3 {
    font-size: 21px;
  }

  .menu-sheet article {
    grid-template-columns: minmax(0, 1fr) 62px;
  }

  .menu-sheet article span {
    font-size: 17px;
  }

  .menu-sheet article b {
    font-size: 13px;
    text-align: right;
  }
}
