:root {
  color-scheme: light;
  --ink: #12375c;
  --ink-deep: #08233c;
  --gold: #bd8525;
  --gold-soft: #f3d58b;
  --olive: #52682e;
  --leaf: #789a42;
  --clay: #a44d24;
  --paper: #fff8ea;
  --paper-warm: #f7ecd6;
  --line: rgba(18, 55, 92, 0.16);
  --shadow: rgba(8, 35, 60, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  background: #d9ccb5;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink-deep);
  color-scheme: light;
  background-color: var(--paper-warm);
  background:
    radial-gradient(circle at top left, rgba(189, 133, 37, 0.24), transparent 34rem),
    linear-gradient(135deg, #d7c5a5, #eee2cf);
  font-family: Avenir Next, Montserrat, Trebuchet MS, Arial, sans-serif;
}

.home-body {
  min-height: 100vh;
  color: var(--ink-deep);
  background:
    radial-gradient(circle at top right, rgba(120, 154, 66, 0.14), transparent 28rem),
    radial-gradient(circle at bottom left, rgba(18, 55, 92, 0.08), transparent 24rem),
    linear-gradient(115deg, rgba(255, 248, 234, 0.96), rgba(247, 236, 214, 0.94)),
    repeating-linear-gradient(0deg, rgba(18, 55, 92, 0.035), rgba(18, 55, 92, 0.035) 1px, transparent 1px, transparent 7px);
}

.home-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 32px 18px;
}

.home-hero {
  width: min(100%, 680px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.home-logo {
  width: min(340px, 78vw);
  height: auto;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.42));
}

.home-kicker {
  margin-top: 22px;
  color: var(--olive);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-title {
  margin-top: 10px;
  color: var(--ink);
  font-family: Georgia, Times New Roman, serif;
  font-size: clamp(56px, 13vw, 96px);
  line-height: 0.9;
}

.home-nav {
  width: min(100%, 440px);
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.home-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 16px 22px;
  border: 1px solid rgba(18, 55, 92, 0.18);
  border-radius: 8px;
  color: var(--paper);
  background: var(--ink);
  box-shadow: 0 16px 36px rgba(8, 35, 60, 0.14);
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.home-link:hover {
  transform: translateY(-2px);
  border-color: rgba(189, 133, 37, 0.45);
  background: var(--ink-deep);
}

.home-link.disabled {
  color: rgba(8, 35, 60, 0.56);
  cursor: default;
  background: rgba(255, 252, 244, 0.62);
}

.home-link.disabled:hover {
  transform: none;
  border-color: rgba(18, 55, 92, 0.18);
}

.home-address {
  width: min(100%, 440px);
  margin-top: 28px;
  color: #34506b;
  font-weight: 800;
}

.home-address p {
  font-size: 15px;
}

.home-map {
  display: block;
  width: 100%;
  height: 280px;
  margin-top: 12px;
  border: 1px solid rgba(18, 55, 92, 0.16);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(8, 35, 60, 0.12);
}

.home-address a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--gold);
  font-size: 17px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.home-address a:hover {
  color: var(--ink);
}

.site-credit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: rgba(8, 35, 60, 0.66);
  font-size: 8.5pt;
  font-weight: 800;
  text-transform: none;
}

.site-credit a {
  color: var(--gold);
  font-weight: 900;
  text-decoration: none;
}

.site-credit a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-credit {
  margin-top: 48px;
}

.floating-menu-link {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  max-height: calc(100svh - 32px);
  padding: 16px 10px;
  border: 1px solid rgba(255, 248, 234, 0.5);
  border-right: 0;
  border-radius: 8px 0 0 8px;
  color: var(--paper);
  background: var(--ink);
  box-shadow: 0 16px 34px rgba(8, 35, 60, 0.26);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
}

.floating-menu-link:hover {
  background: var(--ink-deep);
}

.menu-page {
  width: min(100%, 210mm);
  min-height: 100vh;
  margin: 0 auto;
  padding: 9mm 11mm 7mm;
  position: relative;
  overflow: visible;
  background:
    linear-gradient(115deg, rgba(255, 248, 234, 0.96), rgba(247, 236, 214, 0.94)),
    repeating-linear-gradient(0deg, rgba(18, 55, 92, 0.035), rgba(18, 55, 92, 0.035) 1px, transparent 1px, transparent 7px);
  box-shadow: 0 24px 70px var(--shadow);
}

.hero,
.menu-grid,
.footer-note {
  position: relative;
  z-index: 1;
}

.hero {
  padding-bottom: 5mm;
  border-bottom: 1px solid var(--line);
}

.brand-lockup {
  display: grid;
  grid-template-columns: 44mm 1fr;
  gap: 8mm;
  align-items: center;
}

.logo {
  width: 44mm;
  height: 44mm;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(8, 35, 60, 0.18));
}

.kicker {
  margin: 0 0 1.5mm;
  color: var(--olive);
  font-size: 8.5pt;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  color: var(--ink);
  font-family: Georgia, Times New Roman, serif;
  font-size: 39pt;
  line-height: 0.88;
  font-weight: 700;
}

.intro {
  max-width: 122mm;
  margin-top: 2.5mm;
  color: #34506b;
  font-size: 10.2pt;
  line-height: 1.32;
}

.section-subtitle {
  margin-top: 2mm;
  color: var(--gold);
  font-size: 13pt;
  font-weight: 900;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3.5mm;
  padding-top: 5mm;
}

.dish {
  display: grid;
  grid-template-columns: 42% 1fr;
  min-height: 34mm;
  overflow: hidden;
  border: 1px solid rgba(18, 55, 92, 0.13);
  border-radius: 8px;
  background: rgba(255, 252, 244, 0.78);
  box-shadow: 0 10px 24px rgba(8, 35, 60, 0.08);
}

.dish.featured {
  grid-column: 1 / -1;
  grid-template-columns: 40% 1fr;
  min-height: 43mm;
  border-color: rgba(189, 133, 37, 0.32);
  background: linear-gradient(135deg, rgba(255, 252, 244, 0.92), rgba(243, 213, 139, 0.18));
}

.dish.wide {
  grid-column: 1 / -1;
  grid-template-columns: 40% 1fr;
}

.dish-media {
  min-height: 100%;
  background: var(--ink);
}

.dish-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 34mm;
  object-fit: cover;
}

.featured .dish-media img {
  min-height: 43mm;
}

.dish-media.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(18, 55, 92, 0.2);
}

.dish-media.duo img {
  min-height: 34mm;
}

.dish-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 4mm;
  min-width: 0;
}

.dish-tag {
  margin-bottom: 1.5mm;
  color: var(--clay);
  font-size: 7.5pt;
  font-weight: 900;
  text-transform: uppercase;
}

h2 {
  color: var(--ink-deep);
  font-family: Georgia, Times New Roman, serif;
  font-size: 13.5pt;
  line-height: 1.05;
  font-weight: 700;
}

.featured h2 {
  font-size: 21pt;
}

.dish-content p:not(.dish-tag) {
  margin-top: 1.8mm;
  color: #405568;
  font-size: 8.8pt;
  line-height: 1.25;
}

.featured .dish-content p:not(.dish-tag) {
  max-width: 92mm;
  font-size: 10.5pt;
}

.price {
  margin-top: auto;
  padding-top: 2.8mm;
  color: var(--gold);
  font-size: 15pt;
  line-height: 1;
  font-weight: 900;
}

.featured .price {
  font-size: 23pt;
}

.price.muted {
  color: var(--olive);
  font-size: 13pt;
}

.footer-note {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8mm;
  margin-top: 5mm;
  padding-top: 3mm;
  border-top: 1px solid var(--line);
  color: rgba(8, 35, 60, 0.72);
  font-size: 8.5pt;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-note .site-credit {
  flex-basis: 100%;
  margin-top: 18px;
}

@media screen and (max-width: 760px) {
  .home-page {
    min-height: 100svh;
    padding: 28px 18px;
  }

  .home-logo {
    width: min(280px, 82vw);
  }

  .home-kicker {
    font-size: 12px;
  }

  .home-title {
    font-size: clamp(52px, 18vw, 76px);
  }

  .home-nav {
    width: 100%;
    margin-top: 30px;
  }

  .home-link {
    min-height: 56px;
    font-size: 16px;
  }

  .home-address {
    margin-top: 24px;
  }

  .home-credit {
    margin-top: 40px;
  }

  .home-map {
    height: 240px;
  }

  .floating-menu-link {
    right: 0;
    top: 50%;
    bottom: auto;
    left: auto;
    width: auto;
    min-height: 48px;
    padding: 14px 9px;
    font-size: 11px;
    transform: translateY(-50%);
  }

  body {
    background: var(--paper-warm);
  }

  .menu-page {
    width: 100%;
    height: auto;
    min-height: 0;
    overflow: visible;
    padding: 22px 18px 28px;
    box-shadow: none;
  }

  .brand-lockup,
  .menu-grid,
  .dish,
  .dish.featured,
  .dish.wide {
    grid-template-columns: 1fr;
  }

  .brand-lockup {
    justify-items: center;
    gap: 14px;
    text-align: center;
  }

  .logo {
    width: min(230px, 74vw);
    height: min(230px, 74vw);
    margin-inline: auto;
  }

  h1 {
    font-size: 52px;
  }

  .intro {
    max-width: 28rem;
  }

  .section-subtitle {
    font-size: 19px;
  }

  .menu-grid {
    gap: 16px;
    padding-top: 22px;
  }

  .dish,
  .dish.featured,
  .dish.wide {
    min-height: 0;
  }

  .dish-media img,
  .featured .dish-media img {
    height: clamp(220px, 62vw, 320px);
    min-height: 0;
  }

  .dish-media.duo {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }

  .dish-media.duo img {
    height: clamp(190px, 54vw, 280px);
    min-height: 0;
  }

  .dish-content {
    padding: 20px;
  }

  .featured h2 {
    font-size: 32px;
  }

  h2 {
    font-size: 25px;
  }

  .dish-content p:not(.dish-tag),
  .featured .dish-content p:not(.dish-tag) {
    font-size: 16px;
  }

  .price,
  .featured .price {
    padding-top: 18px;
    font-size: 30px;
  }

  .footer-note {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }

  .footer-note .site-credit {
    margin-top: 16px;
  }
}

@page {
  size: A4;
  margin: 0;
}

@media print {
  html,
  body {
    width: 210mm;
    min-height: 297mm;
    background: var(--paper);
  }

  .menu-page {
    width: 210mm;
    height: 297mm;
    margin: 0;
    box-shadow: none;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
}
