@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap");
:root {
  --cream: #f6f2e9;
  --wine: #642d39;
  --ink: #352f2a;
  --muted: #716b62;
  --line: #dcd3c5;
  --sand: #eae1d2;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}
a:focus-visible,
button:focus-visible,
textarea:focus-visible {
  outline: 3px solid #b98a3d;
  outline-offset: 5px;
}
img {
  display: block;
  width: 100%;
  object-fit: cover;
}
figure {
  margin: 0;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
}
em {
  font-weight: 400;
  color: var(--wine);
}
[hidden] {
  display: none !important;
}
.skip {
  position: fixed;
  top: -80px;
  padding: 15px;
  background: white;
  z-index: 100;
}
.skip:focus {
  top: 10px;
}
header {
  height: 106px;
  max-width: 1600px;
  margin: auto;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 10;
}
.brand {
  display: flex;
  gap: 13px;
  align-items: center;
  color: var(--wine);
}
.brand img {
  width: 41px;
  object-fit: contain;
}
.brand > span {
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.25;
  letter-spacing: 1px;
}
.brand small {
  display: block;
  font: 9px var(--sans);
  letter-spacing: 3.5px;
  margin-top: 6px;
  text-align: center;
}
header > nav {
  display: flex;
  gap: 37px;
  font-size: 13px;
}
header nav a {
  position: relative;
}
header nav a:after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--wine);
  transition: width 0.25s;
}
header nav a:hover:after,
header nav a[aria-current]:after {
  width: 100%;
}
.nav-order {
  font-size: 12px;
  border: 1px solid var(--wine);
  padding: 12px 23px;
  color: var(--wine);
  display: flex;
  gap: 32px;
}
.nav-order:hover {
  background: var(--wine);
  color: var(--cream);
}
.mobile-toggle {
  display: none;
}
.eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.6px;
  display: block;
  color: var(--wine);
}
.hero {
  max-width: 1600px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 670px;
  padding: 27px 27px 27px 5%;
  gap: 38px;
}
.hero-copy {
  padding-top: 62px;
  display: flex;
  flex-direction: column;
}
.hero-copy .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow i {
  width: 6px;
  height: 6px;
  background: var(--wine);
  border-radius: 50%;
}
h1 {
  font-size: clamp(58px, 5.8vw, 94px);
  line-height: 1.1;
  letter-spacing: -3.5px;
}
.hero h1 {
  margin: 28px 0 24px;
  white-space: nowrap;
}
.hero h1 em {
  font-size: 1.1em;
}
.hero-copy > p {
  color: var(--muted);
  line-height: 1.9;
  font-size: 15px;
}
.hero-actions {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-top: 36px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 17px 25px;
  background: var(--wine);
  color: var(--cream);
  font-size: 12px;
  border: 1px solid var(--wine);
  transition:
    background 0.2s,
    transform 0.2s;
  min-height: 52px;
}
.button:hover {
  background: #48232b;
  transform: translateY(-2px);
}
.button span {
  font-size: 18px;
  line-height: 1;
}
.text-link {
  font-size: 12px;
  padding: 7px 0;
  border-bottom: 1px solid currentColor;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
}
.text-link:hover {
  color: var(--wine);
}
.hero-bottom {
  margin-top: auto;
  padding: 55px 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 25px;
}
.hero-bottom > span {
  font-size: 8px;
  letter-spacing: 2.5px;
  color: var(--muted);
}
.hero-bottom > a {
  font-size: 22px;
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 39px;
  height: 39px;
  text-align: center;
}
.hero-image {
  position: relative;
  min-height: 616px;
  overflow: hidden;
}
.hero-image > img {
  height: 100%;
  position: absolute;
  object-position: center 55%;
}
.hero-image:after {
  content: "";
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(transparent, #211c14b0);
  pointer-events: none;
}
.roundel {
  position: absolute;
  z-index: 2;
  right: 25px;
  top: 24px;
  width: 127px;
  height: 127px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--wine);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(10deg);
  outline: 1px solid #642d3970;
  outline-offset: -7px;
}
.roundel img {
  width: 29px;
  height: 27px;
  margin-bottom: 5px;
}
.roundel span {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-align: center;
  line-height: 1.4;
}
.roundel small {
  font-size: 6px;
  letter-spacing: 1.3px;
  margin-top: 7px;
}
.image-caption {
  position: absolute;
  z-index: 2;
  bottom: 31px;
  left: 34px;
  color: white;
}
.image-caption span {
  font-size: 8px;
  letter-spacing: 2px;
  display: block;
}
.image-caption strong {
  font: italic 29px var(--serif);
  display: block;
  margin-top: 5px;
}
.ticker {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 35px;
  background: var(--wine);
  color: var(--cream);
  padding: 20px 30px;
  overflow: hidden;
  white-space: nowrap;
  font-size: 20px;
}
.ticker span {
  font-size: 10px;
  letter-spacing: 3px;
}
.welcome {
  text-align: center;
  max-width: 810px;
  margin: auto;
  padding: 100px 24px 74px;
}
h2 {
  font-size: clamp(35px, 3.5vw, 53px);
  line-height: 1.2;
  letter-spacing: -1.4px;
}
.welcome h2 {
  margin: 21px 0 24px;
}
.welcome p {
  max-width: 565px;
  margin: auto;
  color: var(--muted);
  line-height: 1.85;
}
.flourish {
  display: block;
  font-size: 40px;
  color: var(--wine);
  margin-top: 30px;
}
.favorites,
.menu-section {
  max-width: 1440px;
  margin: auto;
  padding: 0 6% 105px;
}
.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 35px;
}
.section-title h2 {
  margin-top: 10px;
}
.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
.dish-photo {
  height: 330px;
  position: relative;
  overflow: hidden;
  background: var(--sand);
}
.dish-photo > img {
  height: 100%;
  transition: transform 0.6s;
}
.dish-card:hover .dish-photo > img {
  transform: scale(1.035);
}
.dish-photo > span {
  position: absolute;
  bottom: 17px;
  left: 17px;
  background: var(--cream);
  padding: 7px 12px;
  font-size: 8px;
  letter-spacing: 1.4px;
}
.dish-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
}
.dish-title h3 {
  font-size: 26px;
}
.dish-title > a {
  font-size: 24px;
}
.dish-card > p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 330px;
  margin-top: 8px;
}
.markus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--sand);
  max-width: 1600px;
  margin: auto;
}
.markus-photo {
  position: relative;
  min-height: 580px;
}
.markus-photo > img {
  height: 100%;
  position: absolute;
  object-position: center;
}
.photo-note {
  position: absolute;
  bottom: 36px;
  left: 10%;
  color: white;
  font: italic 28px var(--serif);
}
.markus-copy {
  padding: 77px 14% 68px 12%;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.markus-copy h2 {
  margin: 23px 0;
}
.markus-copy p {
  font-size: 13px;
  line-height: 1.95;
  color: #625c53;
}
.signature {
  font: italic 31px var(--serif);
  color: var(--wine);
  display: block;
  margin: 26px 0;
}
.visit {
  max-width: 1440px;
  margin: 0 auto;
  padding: 110px 6%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9%;
  align-items: center;
}
.visit h2 {
  font-size: 63px;
  margin: 20px 0;
}
.visit p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.8;
}
.visit figure > img {
  height: 450px;
  object-fit: cover;
}
.visit figcaption {
  font-size: 11px;
  font-style: italic;
  margin-top: 12px;
  color: var(--muted);
}
footer {
  background: #36292c;
  color: var(--cream);
  padding: 55px 6% 20px;
}
footer .brand {
  color: var(--cream);
}
footer .brand img {
  filter: brightness(0) invert(1);
  opacity: 0.8;
}
.footer-top {
  max-width: 1270px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 35px;
  align-items: start;
  padding-bottom: 45px;
}
.footer-top > p {
  font: 30px/1.3 var(--serif);
}
.footer-top .eyebrow {
  color: #c6b6a8;
  font-size: 8px;
  margin-bottom: 16px;
}
.footer-top > div > a {
  display: block;
  font-size: 12px;
  margin-top: 9px;
}
.footer-bottom {
  max-width: 1270px;
  margin: auto;
  border-top: 1px solid #ffffff25;
  padding-top: 23px;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: #c6b6a8;
  letter-spacing: 0.5px;
}
.page-intro {
  text-align: center;
  padding: 76px 24px 66px;
  max-width: 1100px;
  margin: auto;
}
.page-intro h1 {
  font-size: clamp(52px, 5.2vw, 78px);
  margin-top: 22px;
  letter-spacing: -2px;
}
.page-intro p {
  max-width: 500px;
  margin: 25px auto 0;
  color: var(--muted);
  font-size: 14px;
}
.menu-toolbar {
  padding: 0 0 25px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 35px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.filters {
  display: flex;
  gap: 6px;
}
.filters button {
  background: transparent;
  border: 1px solid transparent;
  padding: 10px 17px;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}
.filters button[aria-pressed="true"] {
  border-color: var(--wine);
  color: var(--wine);
}
.menu-note {
  font-size: 10px;
  color: var(--muted);
}
.menu-grid {
  row-gap: 42px;
}
.menu-callout {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 35px 0;
  border-top: 1px solid var(--line);
  margin-top: 55px;
}
.menu-callout > span {
  font: 28px/1.3 var(--serif);
  flex: 1;
}
.menu-callout > p {
  font-size: 12px;
  color: var(--muted);
  flex: 1;
}
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
  max-width: 1320px;
  padding: 10px 6% 40px;
  margin: auto;
  align-items: center;
}
.story-layout figure img {
  height: 600px;
}
.story-layout figcaption {
  font-size: 11px;
  margin-top: 12px;
  color: var(--muted);
}
.story-layout h2 {
  margin: 20px 0 25px;
}
.story-layout p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
  margin-top: 20px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  max-width: 1300px;
  margin: auto;
  padding: 0 6% 100px;
  gap: 8%;
}
.contact-photo {
  position: relative;
  min-height: 620px;
}
.contact-photo img {
  height: 100%;
  position: absolute;
}
.contact-photo > span {
  position: absolute;
  bottom: 25px;
  left: 25px;
  color: white;
  font-size: 9px;
  letter-spacing: 2px;
  text-shadow: 0 1px 4px black;
}
.contact-details {
  padding: 25px 0;
}
.contact-details h2 {
  margin-top: 20px;
}
.contact-details dl {
  margin: 30px 0;
}
.contact-details dt {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--wine);
  margin-top: 24px;
}
.contact-details dd {
  margin: 7px 0;
  font-size: 13px;
  color: var(--muted);
}
.contact-details > .text-link {
  display: flex;
  margin-top: 24px;
}
.order-layout {
  max-width: 1440px;
  margin: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(290px, 1fr);
  gap: 40px;
  padding: 0 6% 100px;
  align-items: start;
}
.preview-note {
  display: flex;
  background: var(--sand);
  padding: 20px;
  gap: 18px;
  margin-bottom: 30px;
}
.preview-note > span {
  font-size: 27px;
  color: var(--wine);
}
.preview-note strong {
  font-size: 12px;
}
.preview-note p {
  font-size: 11px;
  color: var(--muted);
  margin-top: 5px;
}
.preview-note a {
  text-decoration: underline;
}
.order-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 23px;
}
.order-grid .dish-photo {
  height: 250px;
}
.order-grid h3 {
  font-size: 23px;
}
.add {
  position: absolute;
  right: 15px;
  top: 15px;
  background: var(--cream);
  color: var(--wine);
  border: 0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 26px;
}
.add:hover {
  background: var(--wine);
  color: white;
}
.basket {
  position: sticky;
  top: 25px;
  border: 1px solid var(--line);
  padding: 28px;
  background: #f0eadd;
}
.basket h2 {
  font-size: 29px;
  margin: 13px 0 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.basket h2 span {
  font: 12px var(--sans);
  background: var(--wine);
  color: white;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.empty-basket {
  text-align: center;
  padding: 20px 0 35px;
  color: var(--muted);
  font-size: 12px;
}
.empty-basket > span {
  font-size: 36px;
  color: #9f8575;
}
.basket label {
  display: block;
  font-size: 11px;
  margin: 20px 0 8px;
}
.basket textarea {
  width: 100%;
  padding: 12px;
  min-height: 85px;
  resize: vertical;
  background: var(--cream);
  border: 1px solid var(--line);
  font-size: 12px;
  border-radius: 0;
}
.fine {
  font-size: 10px;
  color: var(--muted);
  margin: 15px 0;
}
.center {
  text-align: center;
}
.basket > .button {
  width: 100%;
}
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 16px 0;
  gap: 10px;
  font-size: 11px;
}
.cart-item > div {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cart-item button {
  border: 1px solid var(--line);
  width: 29px;
  height: 29px;
  background: var(--cream);
}
#order-review {
  margin-top: 20px;
  font-size: 12px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
#order-review p {
  margin: 10px 0;
}
#order-review a {
  text-decoration: underline;
}
#toast {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translate(-50%, 30px);
  background: var(--wine);
  color: white;
  padding: 13px 22px;
  z-index: 30;
  opacity: 0;
  transition: 0.25s;
  pointer-events: none;
  font-size: 12px;
  max-width: 90vw;
  width: max-content;
}
#toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
@media (min-width: 1600px) {
  .hero {
    min-height: 740px;
  }
  .hero-copy {
    padding-top: 95px;
  }
  .hero-image {
    min-height: 685px;
  }
}
@media (max-width: 1100px) {
  header {
    height: 90px;
  }
  header > nav {
    gap: 24px;
  }
  .hero {
    gap: 25px;
    min-height: 590px;
  }
  .hero-image {
    min-height: 536px;
  }
  .hero-copy {
    padding-top: 50px;
  }
  .hero h1 {
    font-size: 65px;
  }
  .hero-actions {
    gap: 18px;
    flex-wrap: wrap;
  }
  .hero-actions .text-link {
    font-size: 11px;
  }
  .roundel {
    width: 107px;
    height: 107px;
  }
  .dish-photo {
    height: 270px;
  }
  .markus-copy {
    padding: 60px 9%;
  }
  .markus-photo {
    min-height: 530px;
  }
  .menu-toolbar {
    align-items: start;
    flex-direction: column;
  }
  .order-layout {
    gap: 25px;
  }
  .basket {
    padding: 22px;
  }
  .footer-top .brand > span {
    font-size: 20px;
  }
}
@media (max-width: 760px) {
  header {
    height: 83px;
    padding: 0 22px;
  }
  .brand {
    gap: 10px;
  }
  .brand > span {
    font-size: 20px;
  }
  .brand small {
    font-size: 7px;
    letter-spacing: 2.7px;
  }
  .brand img {
    width: 33px;
  }
  header > nav,
  header > .nav-order {
    display: none;
  }
  .mobile-toggle {
    display: flex;
    border: 0;
    background: transparent;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
  }
  .mobile-toggle span {
    height: 1px;
    width: 24px;
    background: var(--wine);
    transition: 0.2s;
  }
  .mobile-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .mobile-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  #mobile-nav {
    display: flex;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 25px 30px 35px;
    box-shadow: 0 12px 20px #352f2a20;
    gap: 20px;
    flex-direction: column;
    font: 24px var(--serif);
  }
  #mobile-nav a {
    padding: 7px;
  }
  .hero {
    display: flex;
    flex-direction: column;
    padding: 0 20px 20px;
    gap: 30px;
    min-height: 0;
  }
  .hero-copy {
    padding: 39px 5px 0;
  }
  .eyebrow {
    font-size: 8px;
    letter-spacing: 2px;
  }
  .hero h1 {
    font-size: clamp(49px, 12.5vw, 79px);
    letter-spacing: -2px;
    margin: 23px 0 19px;
    line-height: 1.08;
  }
  .hero-copy > p {
    font-size: 13px;
    line-height: 1.8;
  }
  .hero-actions {
    margin-top: 25px;
    gap: 22px;
  }
  .button {
    padding: 14px 20px;
    gap: 24px;
    font-size: 11px;
    min-height: 49px;
  }
  .hero-actions .text-link {
    font-size: 10px;
    gap: 5px;
  }
  .hero-bottom {
    display: none;
  }
  .hero-image {
    min-height: 0;
    height: 430px;
  }
  .hero-image > img {
    object-position: center 62%;
  }
  .roundel {
    right: 18px;
    top: 18px;
    width: 101px;
    height: 101px;
  }
  .roundel img {
    width: 23px;
    height: 22px;
  }
  .roundel span {
    font-size: 8px;
  }
  .roundel small {
    font-size: 5px;
  }
  .image-caption {
    left: 23px;
    bottom: 22px;
  }
  .image-caption strong {
    font-size: 25px;
  }
  .ticker {
    padding: 15px 20px;
    justify-content: flex-start;
    gap: 28px;
  }
  .ticker span {
    font-size: 8px;
    letter-spacing: 2px;
  }
  .welcome {
    padding: 60px 25px 44px;
  }
  .welcome h2 {
    font-size: 32px;
    letter-spacing: -1px;
    margin: 17px 0 21px;
  }
  .welcome p {
    font-size: 12px;
    line-height: 1.9;
  }
  .flourish {
    font-size: 32px;
    margin-top: 23px;
  }
  .favorites,
  .menu-section {
    padding: 0 24px 58px;
  }
  .section-title {
    margin-bottom: 25px;
    gap: 15px;
    align-items: end;
  }
  .section-title h2 {
    font-size: 34px;
  }
  .section-title .text-link {
    font-size: 10px;
    white-space: nowrap;
  }
  .dish-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .dish-photo {
    height: 350px;
  }
  .dish-title {
    margin-top: 13px;
  }
  .dish-title h3 {
    font-size: 25px;
  }
  .dish-card > p {
    max-width: none;
  }
  .markus {
    grid-template-columns: 1fr;
  }
  .markus-photo {
    min-height: 350px;
  }
  .markus-copy {
    padding: 44px 26px 48px;
  }
  .markus-copy h2 {
    font-size: 38px;
    margin: 18px 0;
  }
  .markus-copy p {
    font-size: 12px;
  }
  .signature {
    font-size: 29px;
    margin: 22px 0;
  }
  .photo-note {
    font-size: 25px;
    left: 26px;
    bottom: 24px;
  }
  .visit {
    padding: 56px 25px;
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .visit h2 {
    font-size: 46px;
    margin: 16px 0 20px;
  }
  .visit p {
    font-size: 12px;
  }
  .visit figure > img {
    height: 370px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer-top > div {
    grid-column: 1/-1;
  }
  .footer-top > p {
    font-size: 25px;
  }
  .footer-top .brand > span {
    font-size: 17px;
  }
  .footer-top .brand img {
    width: 26px;
  }
  .footer-top .brand small {
    font-size: 6px;
  }
  footer {
    padding: 38px 25px 20px;
  }
  .footer-bottom {
    gap: 18px;
    flex-wrap: wrap;
    font-size: 8px;
  }
  .footer-bottom > span:last-child {
    display: none;
  }
  .page-intro {
    padding: 45px 24px 40px;
  }
  .page-intro h1 {
    font-size: 46px;
    line-height: 1.13;
    margin-top: 18px;
  }
  .page-intro p {
    font-size: 12px;
    margin-top: 19px;
  }
  .menu-toolbar {
    gap: 15px;
  }
  .filters {
    width: 100%;
    flex-wrap: wrap;
    gap: 4px;
  }
  .filters button {
    padding: 10px 12px;
    font-size: 11px;
  }
  .menu-note {
    font-size: 9px;
  }
  .menu-callout {
    flex-direction: column;
    align-items: start;
    gap: 18px;
    margin-top: 35px;
    padding: 27px 0 0;
  }
  .menu-callout > span {
    font-size: 25px;
  }
  .story-layout {
    grid-template-columns: 1fr;
    padding: 0 25px;
    gap: 40px;
  }
  .story-layout figure img {
    height: 390px;
  }
  .story-layout h2 {
    font-size: 36px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    padding: 0 25px 55px;
    gap: 30px;
  }
  .contact-photo {
    min-height: 400px;
  }
  .contact-details {
    padding: 0;
  }
  .contact-details h2 {
    font-size: 43px;
  }
  .order-layout {
    grid-template-columns: 1fr;
    padding: 0 22px 60px;
    gap: 35px;
  }
  .order-grid {
    grid-template-columns: 1fr 1fr;
    gap: 27px 15px;
  }
  .order-grid .dish-photo {
    height: 200px;
  }
  .order-grid .dish-photo > span {
    left: 8px;
    bottom: 10px;
    font-size: 6px;
    letter-spacing: 0.6px;
    padding: 6px;
  }
  .order-grid h3 {
    font-size: 21px;
    line-height: 1.25;
  }
  .order-grid .dish-card > p {
    font-size: 10px;
  }
  .add {
    width: 35px;
    height: 35px;
    right: 10px;
    top: 10px;
  }
  .basket {
    position: static;
  }
  .preview-note {
    padding: 15px;
    gap: 12px;
  }
  .preview-note p {
    font-size: 10px;
  }
  .basket label {
    font-size: 12px;
  }
  .basket textarea {
    font-size: 16px;
  }
  .fine {
    font-size: 11px;
  }
  .cart-item {
    font-size: 13px;
  }
  .cart-item button {
    width: 38px;
    height: 38px;
  }
}
.dish-art {
  background: #e6ddcc;
  color: var(--wine);
}
.menu-art {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 20px;
  border: 1px solid #642d3928;
  outline: 1px solid #642d3928;
  outline-offset: -14px;
}
.menu-art > img {
  width: 34px;
  height: 30px;
  object-fit: contain;
}
.menu-art > small {
  font-size: 7px;
  letter-spacing: 2px;
  margin: 10px 0 15px;
}
.menu-art > strong {
  font: italic 33px/1.25 var(--serif);
}
.menu-art > i {
  font-size: 29px;
  margin-top: 13px;
}
.order-grid .menu-art > strong {
  font-size: 24px;
}
.order-grid .menu-art > img {
  width: 25px;
  height: 24px;
}
.order-grid .menu-art > small {
  font-size: 6px;
  margin: 7px 0;
}
.order-grid .menu-art > i {
  font-size: 20px;
  margin-top: 7px;
}
@media (max-width: 380px) {
  .page-intro h1 {
    font-size: 37px;
    letter-spacing: -1.5px;
  }
  .order-grid .menu-art > strong {
    font-size: 20px;
  }
  .order-grid .dish-title h3 {
    font-size: 19px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}

#mobile-cart { display: none; }
@media (max-width: 760px) {
  #mobile-cart { display: flex; position: fixed; bottom: 14px; left: 18px; right: 18px; z-index: 25; justify-content: space-between; gap: 16px; align-items: center; background: var(--wine); color: var(--cream); padding: 16px 20px; box-shadow: 0 5px 20px #352f2a30; font-size: 11px; }
  .has-cart { padding-bottom: 72px; }
  .has-cart #toast { bottom: 83px; }
  #basket { scroll-margin-top: 25px; }
}
