:root {
  color-scheme: light;
  --paper: #f9ecdb;
  --paper-deep: #efe0cc;
  --ink: #171513;
  --muted: #5f5a52;
  --red: #661414;
  --red-dark: #4f1010;
  --green: #1e3f2e;
  --line: #d2c8b6;
  --white: #f9ecdb;
  --radius: 10px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

a:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(30, 63, 46, 0.14);
  background: rgba(249, 236, 219, 0.96);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  width: min(calc(100% - 40px), var(--max));
  height: 80px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  overflow: visible;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

.brand-logo-footer {
  width: 88px;
  height: 88px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.nav-links a:not(.nav-order):hover {
  color: var(--red);
}

.nav-order {
  padding: 10px 17px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
}

.nav-menu {
  padding: 10px 17px;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: var(--green);
}

.nav-menu:hover {
  background: rgba(30, 63, 46, 0.08);
  color: var(--green);
}

.hero {
  display: grid;
  width: min(calc(100% - 40px), var(--max));
  min-height: calc(100dvh - 70px);
  margin: 0 auto;
  padding: clamp(56px, 8vh, 90px) 0;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 700px;
  margin: 0;
  font-family: "Arial Black", "Aptos Display", sans-serif;
  font-size: clamp(50px, 6.7vw, 88px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.94;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color 170ms ease,
    transform 170ms ease;
}

.hero-copy .button {
  margin-top: 33px;
}

.button:hover,
.nav-order:hover {
  transform: translateY(-2px);
}

.button:active,
.nav-order:active {
  transform: translateY(1px);
}

.button-primary {
  background: var(--red);
  color: var(--white);
}

.button-primary:hover {
  background: var(--red-dark);
}

.photo-space {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-deep);
}

.photo-space img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.photo-space-hero {
  min-height: min(68dvh, 670px);
}

.photo-space-hero img,
.photo-space-wide img,
.photo-space-small img {
  position: absolute;
  inset: 0;
}

.photo-space-wide,
.photo-space-small {
  position: relative;
}

.about {
  display: grid;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: clamp(90px, 12vw, 145px) 0 40px;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: end;
  gap: clamp(50px, 9vw, 130px);
}

.about-copy {
  padding-bottom: 12px;
}

h2 {
  margin: 0;
  font-family: "Arial Black", "Aptos Display", sans-serif;
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.about-copy p {
  max-width: 570px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.photo-space-wide {
  min-height: 480px;
}

.photo-space-wide img {
  object-position: center 40%;
}

.photo-row {
  display: grid;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 0 0 40px;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 12px;
}

.photo-space-small {
  min-height: 350px;
}

.owner {
  display: grid;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: clamp(50px, 8vw, 90px) 0 clamp(90px, 12vw, 145px);
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
}

.owner-photo {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-deep);
}

.owner-photo img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.owner-copy {
  padding-bottom: 12px;
}

.owner-copy p {
  max-width: 570px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.owner-signoff {
  margin-top: 28px;
}

.owner-name {
  margin-top: 16px;
  color: var(--ink);
  font-weight: 700;
  font-size: 17px;
}

.contact {
  display: grid;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto 28px;
  padding: clamp(50px, 7vw, 84px);
  border-radius: var(--radius);
  background: var(--green);
  color: var(--white);
  gap: clamp(36px, 5vw, 48px);
}

.contact-top {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: clamp(50px, 8vw, 110px);
}

.map-widget {
  overflow: hidden;
  min-height: 360px;
  border: 1px solid rgba(255, 250, 240, 0.28);
  border-radius: var(--radius);
  background: rgba(23, 36, 22, 0.16);
}

.map-widget iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  height: 360px;
  border: 0;
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact .eyebrow {
  color: var(--white);
  opacity: 0.74;
}

.contact address {
  margin: 28px 0 0;
  font-size: clamp(21px, 2.6vw, 30px);
  font-style: normal;
  line-height: 1.45;
}

.contact-actions {
  display: flex;
  margin-top: 32px;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.button-light {
  background: var(--white);
  color: var(--green);
}

.button-light:hover {
  background: #eae6dc;
}

.button-google {
  background: #4285f4;
  color: #fff;
}

.button-google:hover {
  background: #3367d6;
}

.button-yelp {
  background: #d32323;
  color: #fff;
}

.button-yelp:hover {
  background: #a61c1c;
}

.phone {
  color: var(--white);
  font-weight: 850;
  text-underline-offset: 5px;
}

.hours {
  padding: 28px;
  border: 1px solid rgba(255, 250, 240, 0.28);
  border-radius: var(--radius);
  background: rgba(23, 36, 22, 0.16);
}

.hours h3 {
  margin: 0 0 20px;
  font-size: 19px;
}

.hours dl {
  margin: 0;
}

.hours dl div {
  display: grid;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 250, 240, 0.22);
  grid-template-columns: 1fr auto;
  gap: 18px;
}

.hours dt,
.hours dd {
  margin: 0;
  font-size: 14px;
}

.hours dd {
  text-align: right;
}

.hours p {
  margin: 18px 0 22px;
  font-size: 12px;
  opacity: 0.72;
}

.hours > a {
  font-size: 13px;
  font-weight: 800;
  text-underline-offset: 4px;
}

footer {
  display: grid;
  width: min(calc(100% - 40px), var(--max));
  min-height: 165px;
  margin: 0 auto;
  padding: 42px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  gap: 30px;
}

.footer-meta {
  display: grid;
  gap: 14px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.footer-social a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-underline-offset: 4px;
}

.footer-social a:hover {
  color: var(--ink);
}

footer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

footer p:last-child {
  text-align: right;
}

footer .brand {
  align-self: start;
}

.menu-page {
  padding-bottom: clamp(60px, 8vw, 100px);
}

.menu-intro {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: clamp(56px, 8vh, 90px) 0 clamp(40px, 6vw, 70px);
}

.menu-intro h1 {
  max-width: none;
  width: 100%;
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: 0.96;
}

@media (min-width: 720px) {
  .menu-intro h1 {
    white-space: nowrap;
  }
}

.menu-intro p:last-child {
  max-width: 560px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
}

.menu-block,
.menu-grid,
.menu-footer {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.menu-block {
  padding: clamp(36px, 5vw, 56px) 0;
}

.menu-block-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(36px, 6vw, 80px);
}

.menu-block-reverse .menu-category {
  order: 2;
}

.menu-block-reverse .menu-photo {
  order: 1;
}

.menu-grid {
  display: grid;
  padding: clamp(24px, 4vw, 40px) 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 6vw, 80px);
}

.menu-grid-single {
  grid-template-columns: minmax(0, 1fr);
  max-width: min(calc(100% - 40px), 640px);
}

.menu-category h2 {
  margin: 0 0 8px;
  font-family: "Arial Black", "Aptos Display", sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

.menu-note {
  margin: 0 0 20px;
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-list li {
  display: grid;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 20px;
}

.menu-item-name {
  font-size: 17px;
  font-weight: 650;
}

.menu-item-price {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.menu-photo {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-deep);
}

.menu-photo img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.menu-footer {
  display: grid;
  margin-top: clamp(40px, 6vw, 70px);
  padding: clamp(40px, 5vw, 56px);
  border: 1px solid rgba(30, 63, 46, 0.18);
  border-radius: var(--radius);
  background: var(--green);
  color: var(--white);
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(28px, 4vw, 48px);
}

.menu-footer address {
  margin: 0;
  font-size: clamp(18px, 2.2vw, 24px);
  font-style: normal;
  line-height: 1.5;
}

.menu-footer-delivery {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.menu-delivery-note {
  margin: 12px 0 0;
  font-size: 13px;
  opacity: 0.78;
  text-align: center;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy > *,
  .photo-space-hero {
    animation: enter 620ms both cubic-bezier(0.16, 1, 0.3, 1);
  }

  .hero-copy > :nth-child(2) {
    animation-delay: 60ms;
  }

  .hero-copy > :nth-child(3) {
    animation-delay: 120ms;
  }

  .hero-copy > :nth-child(4) {
    animation-delay: 180ms;
  }

  .photo-space-hero {
    animation-delay: 90ms;
  }

  @keyframes enter {
    from {
      opacity: 0;
      transform: translateY(18px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .photo-space-hero {
    min-height: 520px;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .owner {
    grid-template-columns: 1fr;
  }

  .menu-block-feature,
  .menu-block-reverse .menu-category,
  .menu-block-reverse .menu-photo {
    order: unset;
  }

  .menu-block-feature {
    grid-template-columns: 1fr;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-footer {
    grid-template-columns: 1fr;
  }

  .menu-footer-delivery {
    align-items: center;
    text-align: center;
  }

  .owner-photo {
    min-height: 430px;
  }

  .photo-space-wide {
    min-height: 430px;
  }

  .contact-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .nav,
  .hero,
  .about,
  .photo-row,
  .owner,
  .contact,
  .menu-intro,
  .menu-block,
  .menu-grid,
  .menu-footer,
  footer {
    width: min(calc(100% - 32px), var(--max));
  }

  .nav {
    height: 76px;
  }

  .brand-logo {
    width: 58px;
    height: 58px;
  }

  .nav-links {
    gap: 10px;
  }

  .nav-links > a:not(.nav-order):not(.nav-menu) {
    display: none;
  }

  .nav-menu,
  .nav-order {
    padding: 9px 14px;
    font-size: 13px;
  }

  .hero {
    padding: 58px 0 78px;
  }

  h1 {
    font-size: clamp(49px, 15vw, 68px);
  }

  .photo-space-hero {
    min-height: 400px;
  }

  .about {
    padding-top: 85px;
  }

  .photo-space-wide {
    min-height: 340px;
  }

  .photo-row {
    grid-template-columns: 1fr;
    padding-bottom: 24px;
  }

  .owner-photo {
    min-height: 340px;
  }

  .photo-space-small {
    min-height: 300px;
  }

  .contact {
    padding: 70px 24px;
  }

  .hours dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .hours dd {
    text-align: left;
  }

  .menu-intro h1 {
    white-space: normal;
    font-size: clamp(34px, 9.5vw, 48px);
  }

  .menu-intro {
    padding-top: 48px;
    padding-bottom: 32px;
  }

  .menu-block {
    padding: 28px 0;
  }

  .menu-list li {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 0;
  }

  .menu-item-price {
    white-space: normal;
    font-size: 14px;
  }

  .menu-category h2 {
    font-size: clamp(24px, 7vw, 32px);
  }

  .menu-photo {
    min-height: 320px;
  }

  .menu-footer-delivery .button {
    width: 100%;
  }

  footer {
    grid-template-columns: 1fr;
  }

  footer p:last-child {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .hero-copy .button,
  .contact-actions .button,
  .review-actions .button {
    width: 100%;
  }

  .review-actions {
    flex-direction: column;
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
