/* ============================================================
   The Chippy · Brixham — brand stylesheet
   Navy #1A4D8F · Navy dark #0F3666 · Yellow #F5C518
   ============================================================ */

:root {
  --navy: #1A4D8F;
  --navy-dark: #0F3666;
  --navy-ink: #0A2649;
  --yellow: #F5C518;
  --yellow-warm: #E6B400;
  --cream: #FFF8E7;
  --paper: #FAF7F0;
  --white: #FFFFFF;
  --text: #1A1A1A;
  --text-soft: #4A4A4A;
  --text-muted: #6E6E6E;
  --border: rgba(15, 54, 102, 0.12);

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --shadow-sm: 0 1px 3px rgba(15, 54, 102, 0.08), 0 1px 2px rgba(15, 54, 102, 0.06);
  --shadow-md: 0 4px 12px rgba(15, 54, 102, 0.10), 0 2px 4px rgba(15, 54, 102, 0.06);
  --shadow-lg: 0 12px 32px rgba(15, 54, 102, 0.15), 0 4px 8px rgba(15, 54, 102, 0.08);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --container: 1200px;
  --container-narrow: 920px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--navy); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--yellow-warm); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; letter-spacing: -0.01em; color: var(--navy-ink); }
h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); font-weight: 900; }
h2 { font-size: clamp(1.7rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1rem;
}
.eyebrow.yellow {
  color: var(--yellow-warm);
}

.lede { font-size: 1.075rem; color: var(--text-soft); max-width: 60ch; margin-bottom: 0; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 231, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s ease, border-color .3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--navy-ink);
}
.brand img { border-radius: 50%; box-shadow: var(--shadow-sm); }
.brand-name { letter-spacing: -0.01em; }

.nav {
  display: flex;
  gap: 28px;
}
.nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy-ink);
  padding: 6px 0;
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 3px;
  background: var(--yellow);
  transition: right .25s ease;
  border-radius: 2px;
}
.nav a:hover {
  color: var(--navy);
}
.nav a:hover::after { right: 0; }

.menu-btn {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.menu-btn span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--navy-ink);
  border-radius: 2px;
  transition: transform .2s ease;
}

@media (max-width: 760px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--cream);
    padding: 18px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
    gap: 14px;
  }
  .nav.nav-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav a { font-size: 1.05rem; padding: 6px 0; }
  .menu-btn { display: flex; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--yellow);
  color: var(--navy-ink);
  border-color: var(--yellow);
  box-shadow: 0 4px 14px rgba(245, 197, 24, 0.35);
}
.btn-primary:hover { background: var(--yellow-warm); border-color: var(--yellow-warm); transform: translateY(-1px); color: var(--navy-ink); box-shadow: 0 6px 18px rgba(230, 180, 0, 0.45); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); color: var(--white); transform: translateY(-1px); }
.btn-wide { width: 100%; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 38, 73, 0.88) 0%, rgba(10, 38, 73, 0.72) 45%, rgba(10, 38, 73, 0.45) 75%, rgba(10, 38, 73, 0.45) 100%),
    linear-gradient(180deg, rgba(10, 38, 73, 0.30) 0%, rgba(10, 38, 73, 0.55) 70%, rgba(10, 38, 73, 0.78) 100%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 100px 24px 80px;
}
.hero .eyebrow {
  color: var(--yellow);
}
.hero h1 {
  color: var(--white);
  font-weight: 900;
  letter-spacing: -0.02em;
  max-width: 16ch;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 18px rgba(10, 38, 73, 0.55), 0 1px 3px rgba(10, 38, 73, 0.6);
}
.hero-sub {
  text-shadow: 0 1px 8px rgba(10, 38, 73, 0.55);
}
.hero-sub.lede-hero {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.96);
  max-width: 52ch;
  margin-bottom: 2rem;
  line-height: 1.55;
}
.hero p.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.96);
  max-width: 52ch;
  margin-bottom: 2rem;
  line-height: 1.55;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-hours {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--yellow);
  letter-spacing: 0.04em;
}

/* ===== PILLS ===== */
.pills {
  background: var(--navy-ink);
  padding: 22px 0;
}
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  border: 1px solid rgba(245, 197, 24, 0.25);
}
.pill span { font-size: 1.1rem; }

/* ===== SECTION SCAFFOLD ===== */
.section {
  padding: clamp(64px, 9vw, 120px) 0;
}
.section-head {
  text-align: center;
  margin-bottom: 56px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.section-head .lede {
  margin: 0 auto;
}
.section-head.light h2 { color: var(--white); }
.section-head.light .lede { color: rgba(255,255,255,0.85); }

/* ===== MENU ===== */
.section-menu {
  background: var(--paper);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.menu-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.menu-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.menu-card h3 {
  padding: 18px 18px 6px;
  font-size: 1.2rem;
}
.menu-card p {
  padding: 0 18px 22px;
  color: var(--text-soft);
  font-size: 0.93rem;
  line-height: 1.5;
}

.menu-bottom {
  margin-top: 40px;
}
.menu-bottom-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.menu-bottom-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 260px;
}
.menu-bottom-card > div {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.menu-bottom-card h3 {
  color: var(--yellow);
  font-size: 1.55rem;
  margin-bottom: 12px;
}
.menu-bottom-card p {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  line-height: 1.6;
}
@media (max-width: 760px) {
  .menu-bottom-card { grid-template-columns: 1fr; }
  .menu-bottom-card > div { padding: 28px 24px; }
}

.menu-also {
  margin-top: 40px;
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ===== STORY ===== */
.section-story {
  background: var(--cream);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.story-text h2 { margin-bottom: 1.25rem; }
.story-text p { color: var(--text-soft); font-size: 1.025rem; line-height: 1.7; }
.story-text strong { color: var(--navy-ink); font-weight: 700; }
.story-tag {
  margin-top: 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  color: var(--yellow-warm);
  font-size: 1.2rem;
}
.story-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  gap: 16px;
}
.story-img-main {
  grid-column: 1 / 3;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.story-img-side {
  grid-column: 1 / 3;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
}
@media (max-width: 880px) {
  .story-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* Inclusive sub-block */
.inclusive-block {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.inclusive-text h3 {
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  margin-bottom: 14px;
  color: var(--navy-ink);
}
.inclusive-text p { color: var(--text-soft); }
.inclusive-img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
}
@media (max-width: 880px) {
  .inclusive-block { grid-template-columns: 1fr; padding: 24px; gap: 28px; }
}

/* ===== VISIT ===== */
.section-visit {
  background: var(--paper);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.visit-info { display: flex; flex-direction: column; gap: 32px; }
.info-block h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.info-block p { color: var(--text); line-height: 1.6; font-size: 1.025rem; }
.hours { list-style: none; }
.hours li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.95rem;
}
.hours-note { font-size: 0.85rem; color: var(--text-muted); font-style: italic; margin-top: 10px; }
.visit-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  background: var(--border);
  border: 1px solid var(--border);
}
.visit-map iframe {
  width: 100%; height: 100%; border: 0; display: block;
}
@media (max-width: 880px) {
  .visit-grid { grid-template-columns: 1fr; gap: 32px; }
  .visit-map { aspect-ratio: 1/1; }
}

/* ===== PARTNERS ===== */
.section-partners {
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.partners-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.partners-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 38, 73, 0.78) 0%, rgba(10, 38, 73, 0.92) 100%);
  z-index: 2;
}
.section-partners .container {
  position: relative;
  z-index: 3;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 12px;
}
.partner-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(245, 197, 24, 0.35);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: transform .2s ease, background .2s ease;
}
.partner-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.12);
}
.partner-card h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-body);
  font-weight: 700;
}
.partner-offer {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--yellow);
  margin-bottom: 14px;
  line-height: 1.1;
}
.partner-card p { color: rgba(255,255,255,0.86); font-size: 0.95rem; line-height: 1.5; }
.partners-cta {
  text-align: center;
  margin-top: 40px;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}
.partners-cta a { color: var(--yellow); text-decoration: underline; }
.partners-cta a:hover { color: var(--white); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy-ink);
  color: rgba(255,255,255,0.85);
  padding: 56px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 36px;
  align-items: start;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand img { border-radius: 50%; }
.footer-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--white);
  line-height: 1.1;
}
.footer-tag {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  font-size: 0.95rem;
}
.footer-links a:hover { color: var(--yellow); }
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-social a { color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.footer-social a:hover { color: var(--yellow); }
.hashtag {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--yellow);
  font-size: 1.05rem;
}
.thanks {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
/* ===== Veterans Section ===== */
.section-veterans {
  background:
    radial-gradient(circle at 15% 20%, rgba(245,197,24,0.10), transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(245,197,24,0.08), transparent 55%),
    linear-gradient(180deg, var(--navy-ink) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 72px 20px;
  position: relative;
}
.veterans-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.veterans-eyebrow {
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.veterans-card h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  line-height: 1.2;
  margin: 0 0 18px;
  color: #fff;
}
.veterans-lede {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  margin: 0 auto 28px;
  max-width: 620px;
}
.veterans-tribute {
  display: block;
  border: 1.5px solid rgba(245,197,24,0.55);
  border-radius: 14px;
  padding: 28px 32px;
  background: rgba(245,197,24,0.05);
  margin: 8px auto 22px;
  max-width: 680px;
  text-align: center;
}
.veterans-tribute-label {
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.veterans-tribute-pair {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin: 0 0 16px;
}
.veterans-tribute-person {
  flex: 1 1 0;
  min-width: 0;
  max-width: 280px;
}
.veterans-tribute-divider {
  color: var(--yellow);
  font-size: 1.2rem;
  opacity: 0.7;
  flex: 0 0 auto;
}
.veterans-tribute-name {
  font-family: 'Dancing Script', 'Brush Script MT', cursive;
  font-size: clamp(1.55rem, 3.2vw, 1.95rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
  letter-spacing: 0.01em;
  line-height: 1.15;
}
.veterans-tribute-role {
  font-size: 0.95rem;
  color: var(--yellow);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0 0 6px;
}
.veterans-tribute-rel {
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.82);
  font-style: italic;
  margin: 0;
}
.veterans-tribute-closing {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(245,197,24,0.25);
}
@media (max-width: 560px) {
  .veterans-tribute-pair {
    flex-direction: column;
    gap: 16px;
  }
  .veterans-tribute-divider {
    transform: rotate(0deg);
  }
  .veterans-tribute-person {
    max-width: 100%;
  }
}
.veterans-foot {
  font-style: italic;
  color: rgba(255,255,255,0.78);
  font-size: 0.98rem;
  margin: 6px auto 0;
  max-width: 600px;
  line-height: 1.55;
}
@media (max-width: 600px) {
  .section-veterans { padding: 56px 18px; }
  .veterans-tribute { padding: 24px 20px; }
}

.memorial {
  margin: 28px auto 8px;
  padding: 0 16px;
  text-align: center;
  font-family: 'Dancing Script', 'Brush Script MT', cursive;
  font-weight: 600;
  font-size: 1.45rem;
  line-height: 1.45;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.005em;
  max-width: 640px;
  display: block;
}
.memorial::before {
  content: "❦";
  display: block;
  color: var(--yellow);
  font-family: serif;
  font-size: 1.1rem;
  margin-bottom: 6px;
  letter-spacing: 0;
}
@media (max-width: 600px) {
  .memorial {
    font-size: 1.2rem;
    margin-top: 24px;
  }
}
.copyright {
  margin-top: 14px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr; gap: 28px; text-align: left; }
}

/* ===== A11Y & UTILITY ===== */
:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

/* ===== Full priced menu ===== */
.full-menu {
  margin: 48px auto 24px;
  max-width: 1180px;
}
.full-menu-intro {
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 700;
  margin: 0 0 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(26,77,143,0.18);
}
.menu-columns {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px 36px;
}
.menu-col {
  background: #fff;
  border: 1px solid rgba(26,77,143,0.10);
  border-radius: 12px;
  padding: 22px 22px 20px;
  box-shadow: 0 1px 2px rgba(15,54,102,0.04);
}
.menu-col-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--yellow);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.005em;
}
.menu-col-note {
  font-size: 0.82rem;
  color: rgba(15,54,102,0.7);
  font-style: italic;
  margin: -6px 0 12px;
}
.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 7px 0;
  border-bottom: 1px dashed rgba(26,77,143,0.10);
  font-size: 0.96rem;
  line-height: 1.4;
  color: var(--navy-ink);
}
.menu-list li:last-child { border-bottom: none; }
.menu-list li > span:first-child {
  flex: 1 1 auto;
}
.menu-list li > span:last-child {
  flex: 0 0 auto;
  font-weight: 700;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}
.menu-list-compact li {
  padding: 5px 0;
  font-size: 0.92rem;
}
.menu-li-block {
  flex-direction: column !important;
  align-items: stretch !important;
  padding: 10px 0 !important;
}
.menu-li-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
}
.menu-li-head span:first-child {
  font-weight: 600;
}
.menu-li-head span:last-child {
  font-weight: 700;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}
.menu-li-block small {
  display: block;
  margin-top: 4px;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(15,54,102,0.72);
}
.v-tag {
  display: inline-block;
  background: #2D8B3E;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  vertical-align: middle;
  margin-left: 4px;
}
.v-tag.vg {
  background: #1A6F2A;
}
.menu-disclaimer {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(15,54,102,0.7);
  margin: 28px auto 0;
  max-width: 720px;
  line-height: 1.55;
}

@media (max-width: 700px) {
  .menu-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .menu-col {
    padding: 20px 18px;
  }
}
