:root {
  --cream: #f8f5ee;
  --paper: #fffdf8;
  --green: #173d34;
  --ink: #243c34;
  --muted: #656c60;
  --copper: #89542e;
  --line: #d9d9cc;
  --serif: Georgia, "Times New Roman", serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 115px;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.75;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 5px;
}
::selection {
  background: #c9d6b7;
}
.wrap {
  max-width: 1280px;
  width: calc(100% - 112px);
  margin-inline: auto;
}
.header {
  height: 112px;
  padding: 12px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  gap: 30px;
  max-width: 1600px;
  margin: auto;
}
.brand {
  flex-shrink: 0;
}
.brand img {
  width: 170px;
  height: 76px;
}
.header nav {
  display: flex;
  align-items: center;
  gap: 29px;
  font-size: 13px;
}
.header nav a {
  padding: 10px 0;
}
.header nav .nav-contact {
  border: 1px solid var(--green);
  padding: 11px 22px;
  margin-left: 10px;
}
.nav-contact span {
  margin-left: 16px;
}
.menu-toggle {
  display: none;
}
.skip {
  position: fixed;
  top: -100px;
  left: 15px;
  background: var(--green);
  color: white;
  padding: 12px;
  z-index: 100;
}
.skip:focus {
  top: 10px;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding-top: 48px;
  padding-bottom: 64px;
  align-items: center;
}
.eyebrow {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  font-weight: 700;
  margin: 0 0 25px;
  color: var(--copper);
}
.pin {
  font-size: 19px;
  vertical-align: -2px;
  margin-right: 7px;
}
.restaurant-name {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 47px;
  margin-bottom: 15px;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-family: var(--serif);
  font-size: clamp(62px, 6.6vw, 94px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -4px;
  margin-bottom: 10px;
}
.period {
  color: var(--copper);
}
.hero-line {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(30px, 3vw, 43px);
  color: var(--copper);
  margin-bottom: 26px;
}
.hero-description {
  max-width: 380px;
  color: var(--muted);
  line-height: 1.9;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 32px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: var(--green);
  color: var(--cream);
  padding: 16px 23px;
  font-size: 12px;
  transition:
    background 160ms,
    transform 160ms;
}
.button:active,
button:active {
  transform: scale(0.97);
}
.button span {
  font-size: 18px;
}
.text-link {
  font-size: 12px;
  border-bottom: 1px solid;
  padding-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
}
.hero-note {
  font-size: 10px;
  color: var(--muted);
  margin: 36px 0 0;
  letter-spacing: 0.2px;
}
.hero-photo {
  margin: 0;
  align-self: center;
  position: relative;
}
.hero-photo > img {
  width: 100%;
  height: auto;
}
.hero-photo figcaption {
  background: var(--green);
  color: var(--cream);
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.hero-photo figcaption > span:first-child {
  font-family: var(--serif);
  font-size: 23px;
  font-style: italic;
}
.hero-photo figcaption > span:last-child {
  font-size: 9px;
  letter-spacing: 0.4px;
}
.hero-photo figcaption span span {
  margin-left: 16px;
  font-size: 18px;
}
.cuisine-band {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6vw;
  background: var(--green);
  color: var(--cream);
  padding: 25px 25px;
  font-family: var(--serif);
  font-size: 22px;
}
.cuisine-band [aria-hidden] {
  color: #b8bf92;
  font-size: 20px;
}
.section {
  padding-top: 108px;
  padding-bottom: 108px;
}
h2 {
  font-family: var(--serif);
  font-size: clamp(35px, 3.7vw, 53px);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -1.7px;
  margin-bottom: 28px;
}
h2 em {
  font-weight: 400;
  color: var(--copper);
}
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 100px;
}
.story-photos .room {
  width: 100%;
  height: auto;
}
.photo-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--copper);
  margin: 15px 0 0;
}
.story-copy > p:not(.eyebrow) {
  color: var(--muted);
  max-width: 430px;
}
.story-copy .text-link {
  margin-top: 16px;
}
.cuisine-section {
  background: #efeee4;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 42px;
}
.section-heading h2 {
  margin-bottom: 0;
}
.section-heading > p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 5px;
}
.cuisine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cuisine-card {
  min-width: 0;
}
.card-image {
  height: 350px;
  background: #e5e5da;
  overflow: hidden;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pizza-art {
  height: 350px;
  background: #e1e4cd;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.pizza-art:before,
.pizza-art:after {
  content: "";
  position: absolute;
  width: 270px;
  height: 270px;
  border: 1px solid #b2b99a;
  border-radius: 50%;
  transform: rotate(-20deg);
}
.pizza-art:after {
  width: 290px;
  height: 240px;
  transform: rotate(30deg);
}
.pizza-word {
  font-size: 79px;
  font-style: italic;
  font-family: var(--serif);
  line-height: 1.4;
  z-index: 1;
}
.pizza-top,
.pizza-bottom {
  font-size: 8px;
  letter-spacing: 1.8px;
  z-index: 1;
}
.card-copy {
  border-top: 1px solid #c7ccbb;
  margin-top: 21px;
  padding-top: 19px;
  position: relative;
}
.number {
  position: absolute;
  right: 0;
  top: 22px;
  font-size: 10px;
  color: var(--copper);
}
h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 25px;
  line-height: 1.3;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.card-copy p {
  font-size: 13px;
  color: var(--muted);
  max-width: 290px;
  margin-bottom: 0;
}
.menu-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.menu-section h2 {
  margin-bottom: 0;
}
.menu-copy > p {
  color: var(--muted);
}
.menu-status {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 20px;
  padding: 24px 0;
  margin: 24px 0 16px;
}
.menu-status > span {
  font-size: 32px;
  color: var(--copper);
}
.menu-status h3 {
  font-size: 22px;
  margin-bottom: 5px;
}
.menu-status p {
  font-size: 13px;
  margin-bottom: 0;
  color: var(--muted);
}
.small {
  font-size: 11px;
  line-height: 1.6;
}
.gallery-section {
  background: #eeece3;
}
.gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 23px;
  align-items: start;
}
.gallery-item {
  display: block;
  min-width: 0;
}
.gallery-item img {
  width: 100%;
  height: auto;
}
.gallery-item > span {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #c9cbbd;
  padding: 13px 0;
  font-size: 12px;
}
.gallery-item b {
  font-size: 19px;
  font-weight: 400;
}
.gallery-item:nth-child(2) {
  padding-top: 58px;
}
.gallery-item:nth-child(3) {
  padding-top: 110px;
}
.contact-section {
  background: var(--green);
  color: var(--cream);
  padding: 87px 0;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 80px;
  align-items: center;
}
.contact-section .eyebrow {
  color: #d1bf92;
}
.contact-section h2 {
  font-size: 57px;
}
.contact-section h2 em {
  color: #d1bf92;
}
.contact-section p {
  color: #e0e5d8;
}
.contact-details {
  padding-left: 46px;
  border-left: 1px solid #587266;
}
.contact-details .contact-name {
  font-family: var(--serif);
  font-size: 29px;
  margin-bottom: 0;
}
.contact-details > p:not(.contact-name) {
  font-size: 12px;
}
.contact-details address {
  font-style: normal;
  font-size: 14px;
}
.contact-pending {
  margin: 24px 0 29px;
  max-width: 310px;
}
.contact-pending p {
  font-size: 12px;
  margin-bottom: 5px;
}
.contact-pending span {
  font-size: 12px;
  line-height: 1.8;
  color: #c0cebf;
}
.footer {
  padding-top: 28px;
  padding-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer p {
  font-size: 10px;
  color: var(--muted);
  margin: 0;
}
.draft {
  font-size: 9px;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 4px 9px;
}
dialog {
  border: 0;
  padding: 55px 24px 20px;
  background: var(--cream);
  max-width: 92vw;
  max-height: 94dvh;
  color: var(--ink);
}
dialog::backdrop {
  background: #0c201bea;
}
dialog figure {
  margin: 0;
}
dialog img {
  max-height: 74dvh;
  max-width: 80vw;
  width: auto;
  margin: auto;
}
dialog figcaption {
  text-align: center;
  font-size: 12px;
  padding-top: 13px;
}
.lightbox-close {
  position: absolute;
  right: 15px;
  top: 10px;
  border: 0;
  background: none;
  padding: 5px 10px;
  font-size: 12px;
}
.lightbox-close span {
  font-size: 22px;
  margin-left: 12px;
}
body.modal-open {
  overflow: hidden;
}
@media (hover: hover) {
  .button:hover {
    background: #2c5544;
  }
  .header nav a:hover,
  .text-link:hover {
    color: var(--copper);
  }
  .gallery-item:hover > span {
    color: var(--copper);
  }
}
@media (min-width: 1500px) {
  .hero {
    gap: 100px;
  }
  .hero-photo {
    max-width: 535px;
    justify-self: end;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .header {
    padding-inline: 32px;
  }
  .header nav {
    gap: 18px;
  }
  .hero {
    gap: 35px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .restaurant-name {
    margin-top: 20px;
    font-size: 10px;
  }
  .hero-note {
    margin-top: 20px;
  }
  .story,
  .menu-section {
    gap: 50px;
  }
  .card-image,
  .pizza-art {
    height: 300px;
  }
  .pizza-word {
    font-size: 65px;
  }
  .contact-inner {
    gap: 40px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 90px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .header {
    height: 86px;
    padding: 8px 20px;
    position: relative;
    z-index: 10;
  }
  .brand img {
    width: 141px;
    height: 63px;
  }
  .menu-toggle {
    display: flex;
    gap: 13px;
    align-items: center;
    border: 1px solid var(--line);
    padding: 9px 14px;
    background: transparent;
    font-size: 12px;
  }
  .header nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 85px;
    background: var(--cream);
    padding: 18px 25px 28px;
    box-shadow: 0 18px 25px #173d3415;
    border-bottom: 1px solid var(--line);
  }
  .header nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
  }
  .header nav a {
    padding: 11px 0;
  }
  .header nav .nav-contact {
    margin: 8px 0 0;
    text-align: center;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .hero .eyebrow {
    margin-bottom: 21px;
  }
  .restaurant-name {
    margin-top: 0;
    letter-spacing: 1.7px;
    font-size: 9px;
  }
  h1 {
    font-size: 70px;
    letter-spacing: -3px;
  }
  .hero-line {
    font-size: 33px;
    margin-bottom: 17px;
  }
  .hero-description {
    font-size: 14px;
    max-width: 410px;
  }
  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 22px;
    margin-top: 25px;
  }
  .button {
    padding: 14px 17px;
    font-size: 11px;
    gap: 12px;
  }
  .text-link {
    font-size: 11px;
    gap: 12px;
  }
  .hero-note {
    margin-top: 23px;
  }
  .hero-photo {
    width: 100%;
    max-width: 530px;
    justify-self: center;
  }
  .cuisine-band {
    flex-wrap: wrap;
    gap: 12px 21px;
    padding: 20px;
    font-size: 18px;
  }
  .cuisine-band > span:last-child,
  .cuisine-band > span:nth-last-child(2) {
    display: none;
  }
  .cuisine-band [aria-hidden] {
    font-size: 12px;
  }
  .section {
    padding-top: 65px;
    padding-bottom: 65px;
  }
  .story {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .story-copy {
    grid-row: 1;
  }
  .eyebrow {
    font-size: 9px;
    margin-bottom: 20px;
  }
  h2 {
    font-size: 39px;
    letter-spacing: -1.1px;
  }
  .story-copy p {
    font-size: 14px;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading > p {
    margin-top: 22px;
  }
  .cuisine-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .cuisine-card {
    display: grid;
    grid-template-columns: 43% 1fr;
    gap: 20px;
    align-items: center;
  }
  .card-image,
  .pizza-art {
    height: 236px;
  }
  .card-copy {
    margin: 0;
    padding-top: 20px;
  }
  .card-copy h3 {
    font-size: 23px;
    padding-right: 8px;
  }
  .number {
    position: static;
    display: block;
    margin-bottom: 9px;
    font-size: 9px;
  }
  .card-copy p {
    font-size: 12px;
    line-height: 1.7;
  }
  .pizza-word {
    font-size: 47px;
  }
  .pizza-top,
  .pizza-bottom {
    font-size: 6px;
    letter-spacing: 1px;
  }
  .pizza-art:before {
    width: 170px;
    height: 180px;
  }
  .pizza-art:after {
    width: 180px;
    height: 160px;
  }
  .menu-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
    gap: 25px 15px;
  }
  .gallery-wide {
    grid-column: 1/-1;
  }
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3) {
    padding-top: 0;
  }
  .gallery-item > span {
    font-size: 10px;
    gap: 5px;
  }
  .contact-section {
    padding: 60px 0;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-section h2 {
    font-size: 43px;
  }
  .contact-details {
    border-left: 0;
    border-top: 1px solid #587266;
    padding: 28px 0 0;
  }
  .footer {
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer img {
    width: 120px;
  }
  .footer p {
    font-size: 9px;
  }
  .draft {
    margin-left: auto;
  }
  dialog {
    padding-inline: 12px;
  }
  dialog img {
    max-width: 84vw;
  }
  dialog figcaption {
    max-width: 80vw;
  }
}
@media (max-width: 360px) {
  h1 {
    font-size: 61px;
  }
  .hero-actions {
    gap: 15px;
  }
  .button {
    padding: 13px;
    font-size: 10px;
  }
  .hero-line {
    font-size: 29px;
  }
  .cuisine-band {
    gap: 10px;
    font-size: 17px;
  }
  .cuisine-card {
    gap: 15px;
  }
  .card-image,
  .pizza-art {
    height: 210px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
/* Shared multi-page layout */
body {
  padding-top: 112px;
}
.header {
  position: fixed;
  inset: 0 0 auto;
  max-width: none;
  background: var(--cream);
  z-index: 40;
  will-change: transform;
  transition:
    transform 240ms cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 200ms ease;
}
.header.is-hidden {
  transform: translateY(-105%);
}
.header.is-scrolled {
  box-shadow: 0 4px 20px #173d340b;
}
.keyboard-input .header:focus-within {
  transform: translateY(0);
}
.header nav a[aria-current="page"] {
  color: var(--copper);
}
.footer nav {
  display: flex;
  gap: 22px;
  font-size: 11px;
}
.footer nav a {
  padding: 8px 0;
}
.breadcrumbs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 11px;
  padding-top: 35px;
  color: var(--muted);
}
.breadcrumbs a {
  border-bottom: 1px solid var(--line);
}
.page-intro {
  padding-top: 55px;
  padding-bottom: 55px;
}
.page-intro h1 {
  font-size: clamp(48px, 5.5vw, 78px);
  line-height: 1.12;
  letter-spacing: -2.5px;
  max-width: 900px;
  margin-bottom: 30px;
}
.page-intro h1 em {
  color: var(--copper);
  font-weight: 400;
}
.lead {
  font-size: 17px;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.9;
  margin-bottom: 0;
}
.page-cta {
  padding-block: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid var(--line);
}
.page-cta h2 {
  margin: 0;
  font-size: 37px;
}
.category-links {
  display: flex;
  gap: 22px;
  padding-block: 35px;
  flex-wrap: wrap;
}
.category-links a {
  flex: 1;
  min-width: 180px;
  font-family: var(--serif);
  font-size: 25px;
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.category-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
  padding-block: 35px 75px;
}
.category-feature > div:first-child {
  max-width: 420px;
  width: 100%;
  justify-self: center;
}
.category-feature img {
  max-height: 600px;
  width: 100%;
  object-fit: contain;
}
.category-feature p {
  color: var(--muted);
}
.category-feature .button {
  margin-top: 20px;
}
.category-feature .pizza-art {
  height: 460px;
}
.reading {
  max-width: 800px;
}
.reading p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.95;
}
.legal-content {
  padding-bottom: 90px;
}
.legal-content h2 {
  font-size: 31px;
  margin-top: 48px;
  margin-bottom: 15px;
}
.legal-content a,
.reading p a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.info-note {
  padding: 25px;
  border: 1px solid var(--line);
  margin-top: 25px;
}
.info-note h3 {
  font-size: 23px;
}
.info-note p {
  font-size: 14px;
  margin-bottom: 0;
}
.menu-icon {
  display: grid;
  gap: 5px;
  width: 18px;
}
.menu-icon i {
  height: 1px;
  background: currentColor;
  display: block;
  transition: transform 220ms cubic-bezier(0.23, 1, 0.32, 1);
}
.menu-toggle[aria-expanded="true"] .menu-icon i:first-child {
  transform: translateY(3px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-icon i:last-child {
  transform: translateY(-3px) rotate(-45deg);
}
@media (max-width: 760px) {
  body {
    padding-top: 86px;
  }
  .header {
    position: fixed;
  }
  .header #navigation {
    display: flex;
    flex-direction: column;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    max-height: calc(100dvh - 86px);
    overflow: auto;
    transition:
      opacity 200ms ease,
      transform 220ms cubic-bezier(0.23, 1, 0.32, 1),
      visibility 0s linear 220ms;
  }
  .header #navigation.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 0s;
  }
  .header nav a {
    min-height: 44px;
  }
  .page-intro {
    padding-block: 35px 40px;
  }
  .page-intro h1 {
    font-size: 49px;
    letter-spacing: -1.8px;
  }
  .lead {
    font-size: 15px;
  }
  .breadcrumbs {
    padding-top: 25px;
    font-size: 10px;
  }
  .category-feature {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-bottom: 45px;
  }
  .category-feature > div:first-child {
    max-width: 340px;
  }
  .category-feature .pizza-art {
    height: 340px;
  }
  .category-links {
    gap: 0;
    padding-block: 20px;
  }
  .category-links a {
    flex-basis: 100%;
    font-size: 24px;
    padding: 15px 0;
  }
  .page-cta {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 45px;
  }
  .page-cta h2 {
    font-size: 32px;
  }
  .footer nav {
    width: 100%;
    justify-content: center;
    gap: 28px;
  }
  .legal-content h2 {
    font-size: 28px;
  }
  .reading p {
    font-size: 15px;
  }
}
.gallery-more .gallery {
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
}
.gallery-more .gallery-item {
  padding-top: 0;
}
.gallery-more h2 {
  margin-bottom: 40px;
}
@media (max-width: 760px) {
  .gallery-more .gallery {
    grid-template-columns: 1fr 1fr;
  }
}
