:root {
  --blue: #123d5a;
  --blue2: #0a2639;
  --red: #a73535;
  --butter: #f6d36d;
  --cream: #fff8e8;
  --white: #fff;
  --ink: #1e252a;
  --muted: #59636a;
  --line: #dacfb8;
  --sans: "Arial Rounded MT Bold", "Aptos", Arial, sans-serif;
  --body: "Aptos", "Helvetica Neue", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font: 16px/1.65 var(--body);
}
a {
  color: inherit;
}
.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 10px;
  top: 10px;
  background: #fff;
  padding: 10px;
  z-index: 20;
}
.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font: 800 1rem var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
}
.logo-mark {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: var(--butter);
  border: 3px solid var(--blue);
  box-shadow: inset 0 0 0 4px var(--cream);
}
.nav {
  display: flex;
  gap: 25px;
}
.nav a,
.micro {
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
}
.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--blue);
  color: white;
  overflow: hidden;
}
.hero-copy {
  padding: clamp(70px, 8vw, 120px) clamp(24px, 7vw, 105px);
  align-self: center;
}
.eyebrow {
  margin: 0 0 15px;
  color: var(--butter);
  font: 800 0.72rem/1.3 var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.hero h1,
.display,
.page-hero h1 {
  margin: 0;
  font: 800 clamp(3.8rem, 7.6vw, 7.8rem)/0.87 var(--sans);
  letter-spacing: -0.06em;
}
.hero h1 em {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  color: var(--butter);
  text-transform: none;
}
.hero-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 28px 0;
  font-size: 1.12rem;
  color: #dce8ef;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 20px;
  background: var(--butter);
  border: 2px solid var(--blue2);
  color: var(--blue2);
  font-weight: 900;
  text-decoration: none;
}
.button.alt {
  background: transparent;
  border-color: #b4c8d5;
  color: white;
  margin-left: 8px;
}
.plate-stage {
  position: relative;
  display: grid;
  place-items: center;
  background: #e8ede7;
  overflow: hidden;
  min-height: 560px;
}
.plate-stage::before,
.plate-stage::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.plate-stage::before {
  width: min(38vw, 530px);
  height: min(38vw, 530px);
  min-width: 380px;
  min-height: 380px;
  background: white;
  border: 22px solid #c8dbe4;
  box-shadow: 0 0 0 2px var(--blue);
}
.plate-stage::after {
  width: min(28vw, 390px);
  height: min(28vw, 390px);
  min-width: 280px;
  min-height: 280px;
  background: repeating-radial-gradient(
    circle,
    #d9a956 0 22px,
    #e8bd69 23px 42px
  );
  border: 5px solid #ad7b2b;
  box-shadow:
    0 13px 0 #c08a36,
    0 26px 0 #a97328;
}
.plate-label {
  position: relative;
  z-index: 2;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--red);
  color: white;
  padding: 20px;
  transform: rotate(-7deg);
  font: 800 1rem/1.15 var(--sans);
  text-transform: uppercase;
}
.info-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--butter);
  border-block: 2px solid var(--blue);
}
.info-strip div {
  padding: 18px clamp(18px, 4vw, 55px);
  border-right: 1px solid rgba(18, 61, 90, 0.35);
}
.info-strip b {
  display: block;
  color: var(--blue);
  font: 800 0.68rem var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.info-strip span {
  font-size: 0.92rem;
}
.notice {
  padding: 12px clamp(18px, 5vw, 72px);
  background: #fff1d0;
  border-bottom: 1px solid #deb85a;
  color: #5e4812;
  font-size: 0.82rem;
}
.section {
  padding: clamp(70px, 9vw, 120px) clamp(20px, 7vw, 105px);
}
.section-head {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 42px;
}
.display {
  font-size: clamp(3rem, 6vw, 6rem);
  color: var(--blue);
}
.section-head p {
  margin: 0;
  max-width: 550px;
  color: var(--muted);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.menu-card {
  min-height: 360px;
  padding: 30px;
  background: white;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.menu-card:nth-child(2) {
  background: var(--blue);
  color: white;
}
.menu-card .num {
  font: 800 0.7rem var(--sans);
  letter-spacing: 0.12em;
  color: var(--red);
}
.menu-card:nth-child(2) .num {
  color: var(--butter);
}
.menu-card h2 {
  margin: 58px 0 14px;
  font: 800 2rem/1.05 var(--sans);
}
.menu-card p {
  color: var(--muted);
}
.menu-card:nth-child(2) p {
  color: #dce8ef;
}
.menu-card strong {
  margin-top: auto;
  color: var(--red);
}
.menu-card:nth-child(2) strong {
  color: var(--butter);
}
.story {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  background: var(--red);
  color: white;
}
.story-art {
  min-height: 480px;
  background: repeating-linear-gradient(
    45deg,
    #f7d571 0 22px,
    #fff4c8 23px 44px
  );
  display: grid;
  place-items: center;
}
.story-art span {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: var(--blue);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 35px;
  font: 800 1.2rem var(--sans);
  text-transform: uppercase;
  transform: rotate(5deg);
}
.story-copy {
  padding: clamp(60px, 8vw, 110px);
}
.story-copy h2 {
  font: 800 clamp(3rem, 6vw, 6rem)/0.9 var(--sans);
  margin: 0 0 25px;
}
.story-copy p {
  max-width: 610px;
}
.visit {
  background: var(--blue2);
  color: white;
}
.visit-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
}
.visit h2 {
  font: 800 clamp(3rem, 6vw, 6rem)/0.9 var(--sans);
  margin: 0;
}
.details {
  display: grid;
  gap: 1px;
  background: #426176;
  border: 1px solid #426176;
}
.details div {
  padding: 20px;
  background: var(--blue2);
}
.details b {
  display: block;
  color: var(--butter);
  font-size: 0.75rem;
  text-transform: uppercase;
}
.page-hero {
  padding: clamp(70px, 9vw, 125px) clamp(20px, 7vw, 105px);
  background: var(--blue);
  color: white;
}
.page-hero .wrap {
  max-width: 980px;
}
.page-hero h1 {
  font-size: clamp(3.2rem, 6.5vw, 6.8rem);
}
.page-hero p.lead {
  max-width: 730px;
  font-size: 1.15rem;
  color: #dce8ef;
}
.crumb {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b8cbd7;
  margin-bottom: 24px;
}
.crumb a {
  color: white;
}
.article {
  max-width: 1120px;
  margin: auto;
  padding: clamp(55px, 8vw, 95px) clamp(20px, 5vw, 54px);
  display: grid;
  grid-template-columns: minmax(0, 760px) 260px;
  gap: 65px;
}
.article-main h2 {
  margin: 46px 0 12px;
  font: 800 2.15rem/1.05 var(--sans);
  color: var(--blue);
}
.article-main h2:first-child {
  margin-top: 0;
}
.article-main h3 {
  margin: 28px 0 7px;
}
.article-main p {
  margin: 0 0 17px;
}
.article-main ul {
  padding-left: 22px;
}
.article-main li + li {
  margin-top: 8px;
}
.archive-box {
  margin: 26px 0;
  padding: 22px;
  background: #fff2c9;
  border-left: 6px solid var(--red);
}
.menu-list {
  margin: 24px 0;
  background: white;
  border: 1px solid var(--line);
}
.dish {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}
.dish:last-child {
  border: 0;
}
.dish small {
  display: block;
  color: var(--muted);
}
.dish strong {
  color: var(--blue);
}
.side {
  align-self: start;
  position: sticky;
  top: 20px;
}
.side-box {
  padding: 22px;
  background: var(--blue);
  color: white;
}
.side-box h2 {
  margin: 0 0 12px;
  font: 800 1.25rem var(--sans);
}
.side-box a {
  display: block;
  padding: 9px 0;
  border-top: 1px solid #52728a;
  text-decoration: none;
}
.updated {
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.76rem;
}
.legal {
  max-width: 850px;
  margin: auto;
  padding: 70px 22px 100px;
}
.legal h1 {
  font: 800 clamp(3rem, 7vw, 6rem)/0.9 var(--sans);
  color: var(--blue);
}
.legal h2 {
  margin-top: 38px;
  color: var(--blue);
}
footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
  padding: 36px clamp(20px, 5vw, 72px);
  background: var(--blue2);
  color: white;
}
footer p {
  margin: 8px 0 0;
  max-width: 570px;
  color: #b6c7d1;
  font-size: 0.78rem;
}
footer .logo {
  color: white;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
footer nav a {
  text-decoration: none;
  font-size: 0.8rem;
}
a:focus-visible {
  outline: 4px solid var(--red);
  outline-offset: 4px;
}
@media (max-width: 850px) {
  .nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .plate-stage {
    min-height: 480px;
  }
  .section-head,
  .story,
  .visit-grid {
    grid-template-columns: 1fr;
  }
  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }
  .article {
    grid-template-columns: 1fr;
  }
  .side {
    position: static;
  }
}
@media (max-width: 580px) {
  .top {
    padding-inline: 14px;
  }
  .micro {
    font-size: 0.67rem;
  }
  .hero-copy {
    padding: 65px 20px;
  }
  .hero h1 {
    font-size: 3.45rem;
  }
  .plate-stage {
    min-height: 400px;
  }
  .info-strip {
    grid-template-columns: 1fr;
  }
  .info-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(18, 61, 90, 0.25);
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .menu-card {
    min-height: 300px;
  }
  .display {
    font-size: 3.25rem;
  }
  .story-art {
    min-height: 360px;
  }
  .page-hero h1 {
    font-size: 3.3rem;
  }
  .article {
    padding-inline: 18px;
  }
  .article-main h2 {
    font-size: 1.8rem;
  }
  .dish {
    grid-template-columns: 1fr;
  }
  footer {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
