@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 500 620;
  font-display: swap;
  src: url("../fonts/fraunces-roman.woff2") format("woff2");
}

@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/fraunces-italic-500.woff2") format("woff2");
}

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/outfit-latin.woff2") format("woff2");
}

:root {
  --paper: #f3efe6;
  --card: #fbf7f1;
  --ink: #1c1916;
  --muted: #5c564c;
  --line: #ddd4c6;
  --wine: #7c2f2a;
  --footer: #1c1916;
  --footer-text: #f4efe6;
  --footer-soft: #ddd4c6;
  --serif: "Fraunces", "Iowan Old Style", Palatino, "Palatino Linotype", "Liberation Serif", Georgia, serif;
  --sans: "Outfit", "Liberation Sans", "Segoe UI", Helvetica, Arial, sans-serif;
  --wrap: min(1120px, calc(100% - 2.5rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.6;
}

main {
  flex: 1 0 auto;
  scroll-margin-top: 9rem;
}

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

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

:focus-visible {
  outline: 2px solid var(--wine);
  outline-offset: 3px;
}

::selection {
  background: #ead7cf;
  color: var(--ink);
}

.skip {
  position: absolute;
  left: 0.75rem;
  top: -4rem;
  z-index: 30;
  background: var(--ink);
  color: var(--paper);
  padding: 0.55rem 0.8rem;
  text-decoration: none;
}

.skip:focus {
  top: 0.75rem;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
.dish h3,
.offer h2 {
  text-wrap: balance;
}

.display {
  font-family: var(--serif);
  font-weight: 500;
  font-optical-sizing: auto;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 1.15rem;
}

.display::after {
  content: "";
  display: block;
  width: 3.25rem;
  height: 2px;
  margin-top: 1.05rem;
  background: var(--wine);
}

.display span,
.menu-section h2 span,
.offer h2 span {
  display: block;
  margin-top: 0.28rem;
  font-style: italic;
  font-weight: 500;
  font-size: 0.58em;
  letter-spacing: 0;
  line-height: 1.25;
  color: var(--muted);
}

.display.compact {
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.display.compact span {
  font-size: 0.78em;
  color: var(--ink);
}

.eyebrow {
  margin: 0 0 0.55rem;
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--paper);
  border-top: 4px solid var(--wine);
  border-bottom: 1px solid var(--line);
}

.header-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding: 0.8rem 0 0.55rem;
}

.brand {
  display: block;
  line-height: 0;
}

.brand img {
  height: 52px;
  width: auto;
}

.header-tools {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
}

.header-phone {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.header-phone:hover {
  color: var(--wine);
}

.langs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem 0.95rem;
}

.langs a {
  color: var(--muted);
  font-size: 0.95rem;
  text-decoration: none;
  padding-bottom: 0.08rem;
}

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

.langs a[aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
  box-shadow: inset 0 -1px 0 var(--wine);
}

.mainnav {
  display: flex;
  gap: 0.35rem 1.3rem;
  overflow-x: auto;
  padding: 0.15rem 0 0.8rem;
  scrollbar-width: thin;
}

.mainnav a {
  flex: 0 0 auto;
  white-space: nowrap;
  text-decoration: none;
  padding: 0.35rem 0;
}

.mainnav a:hover {
  color: var(--wine);
}

.mainnav a[aria-current="page"] {
  color: var(--wine);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.28em;
}

.intro {
  display: grid;
  gap: 2rem;
  padding: 2.2rem 0 2.6rem;
}

.prose p {
  margin: 0 0 1rem;
  max-width: 62ch;
  font-size: 1.125rem;
  line-height: 1.65;
}

.hours,
.footer-hours {
  margin: 0.4rem 0 0;
}

.hours div,
.footer-hours div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.35rem 1.25rem;
  align-items: baseline;
  padding: 0.48rem 0;
  border-top: 1px solid var(--line);
}

.hours div:last-child,
.footer-hours div:last-child {
  border-bottom: 1px solid var(--line);
}

.hours dt,
.footer-hours dt {
  margin: 0;
  font-weight: 600;
}

.hours dd,
.footer-hours dd {
  margin: 0;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.hours dd.closed {
  color: var(--muted);
  font-weight: 500;
}

.photo {
  order: -1;
  margin: 0;
  max-width: 440px;
  padding: 0.7rem;
  background: var(--card);
  box-shadow: 0 18px 46px rgba(28, 25, 22, 0.1);
}

.photo img {
  width: 100%;
}

.page-head {
  padding: 2.5rem 0 0.25rem;
}

.menu {
  padding-bottom: 2.75rem;
}

.menu-section {
  margin-top: 2.3rem;
}

.menu-section h2 {
  margin: 0;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--ink);
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.menu-section h2 span {
  font-size: 0.72em;
}

.dishes,
.courses {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu > .dishes {
  border-top: 1px solid var(--line);
}

.dish {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 1.25rem;
  align-items: start;
  padding: 0.95rem 0.15rem;
  border-bottom: 1px solid var(--line);
}

.dish h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.32rem;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.num {
  color: var(--wine);
  font-weight: 620;
  font-variant-numeric: tabular-nums;
  margin-right: 0.3rem;
}

.dish p,
.courses li span {
  margin: 0.12rem 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.02rem;
  line-height: 1.35;
  color: var(--muted);
}

.price {
  margin: 0.15rem 0 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.note {
  margin: 1.6rem 0 0.4rem;
  padding: 1rem 1.1rem;
  background: #e9e1d3;
  border-left: 3px solid var(--wine);
}

.note p {
  margin: 0.2rem 0;
}

.note p:first-child {
  font-weight: 600;
}

.note p + p {
  font-family: var(--serif);
  font-style: italic;
  color: var(--muted);
}

.offers {
  display: grid;
  gap: 1.15rem;
  margin-top: 1.7rem;
}

.offer {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 1.3rem 1.25rem 0.45rem;
}

.offer-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.35rem 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.offer-head .price {
  margin-left: auto;
}

.offer h2 span {
  font-size: 0.86em;
}

.offer h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.55rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.courses li {
  padding: 0.78rem 0;
}

.courses li + li {
  border-top: 1px solid var(--line);
}

.courses li strong {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.12rem;
  line-height: 1.3;
}

.menu-section.plain {
  border-top: 1px solid var(--ink);
  padding-top: 0.15rem;
}

.booking {
  max-width: 40rem;
  padding: 3rem 0 4rem;
}

.booking-lead {
  max-width: 34ch;
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.5;
}

.booking-lead .phone,
.site-footer .phone {
  display: inline-block;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  text-decoration: none;
}

.booking-lead .phone {
  display: block;
  margin-top: 0.85rem;
  color: var(--wine);
  font-size: clamp(2.7rem, 8vw, 4.2rem);
}

.site-footer {
  background: var(--footer);
  color: var(--footer-text);
  margin-top: 1rem;
}

.site-footer :focus-visible {
  outline-color: var(--footer-text);
}

.footer-grid {
  display: grid;
  gap: 2.2rem;
  padding: 2.6rem 0 2.2rem;
}

.site-footer h2 {
  margin: 0 0 0.9rem;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.45rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.site-footer h2.address {
  margin: 0 0 0.85rem;
  font-size: clamp(1.75rem, 3vw, 2.1rem);
  line-height: 1.15;
}

.site-footer .footer-hours {
  margin: 0;
}

.site-footer .footer-hours div {
  border-top-color: rgba(244, 239, 230, 0.16);
}

.site-footer .footer-hours div:last-child {
  border-bottom-color: rgba(244, 239, 230, 0.16);
}

.site-footer dt {
  font-weight: 500;
  color: var(--footer-soft);
}

.site-footer dd.closed {
  color: #b7ad9f;
}

.address {
  margin: 0 0 0.85rem;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 3vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.address a {
  text-decoration: none;
}

.address a:hover {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.where {
  margin: 0.55rem 0 0;
  max-width: 38ch;
  color: var(--footer-soft);
}

.reserve-line {
  margin: 0;
  max-width: 32ch;
  color: var(--footer-soft);
}

.site-footer .phone {
  margin-top: 0.85rem;
  font-size: clamp(2rem, 4vw, 2.5rem);
}

.site-footer .phone:hover {
  color: #f0c9c4;
}

.footer-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.4rem 1.5rem;
  border-top: 1px solid rgba(244, 239, 230, 0.16);
  padding: 0.9rem 0 1.15rem;
  color: #b7ad9f;
  font-size: 0.92rem;
}

.footer-base p {
  margin: 0;
}

@media (min-width: 720px) {
  .dish {
    column-gap: 1.75rem;
  }

  .dish .price {
    padding-top: 0.2rem;
  }
}

@media (min-width: 860px) {
  :root {
    --wrap: min(1120px, calc(100% - 4rem));
  }

  .mainnav {
    flex-wrap: wrap;
    overflow: visible;
  }

  .intro {
    grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.72fr);
    gap: 3.5rem;
    align-items: start;
    padding: 3.4rem 0 3rem;
  }

  .photo {
    order: 0;
    margin-top: 0.45rem;
    margin-left: auto;
  }

  .offers {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .footer-grid {
    grid-template-columns: 1.15fr 1fr 0.9fr;
    gap: 2.5rem;
    padding: 3rem 0 2.5rem;
  }

  .page-head {
    padding-top: 3.1rem;
  }
}

@media (max-width: 640px) {
  :root {
    --wrap: min(1120px, calc(100% - 1.6rem));
  }

  .brand img {
    height: 42px;
  }

  .header-bar {
    align-items: flex-start;
    padding-top: 0.7rem;
  }

  .hours div,
  .footer-hours div {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

@media print {
  .site-header {
    position: static;
  }

  .skip,
  .langs,
  .header-phone,
  .mainnav {
    display: none;
  }

  body,
  .site-footer,
  .site-footer a,
  .site-footer h2,
  .site-footer p,
  .site-footer dt,
  .site-footer dd {
    background: #fff !important;
    color: #111 !important;
  }

  .photo {
    box-shadow: none;
  }

  .dish,
  .offer,
  .hours div {
    break-inside: avoid;
  }
}
