:root {
  --red: #b11f2a;
  --red-dark: #861520;
  --cream: #fff2de;
  --cream-soft: #fff9ef;
  --espresso: #2b1714;
  --yellow: #f0b72f;
  --blue: #287aa8;
  --mint: #ddefd8;
  --ink-muted: #684943;
  --line: rgba(43, 23, 20, 0.18);
  --shadow: 0 18px 46px rgba(43, 23, 20, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--espresso);
  background: var(--cream-soft);
  font-family: "Avenir Next", "Segoe UI", system-ui, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 10;
  width: 1px;
  height: 1px;
  overflow: hidden;
  padding: 0.75rem 1rem;
  background: var(--espresso);
  color: #fff;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.skip-link:focus {
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  clip-path: none;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 5vw;
  background: var(--cream-soft);
  border-bottom: 1px solid var(--line);
}

.brand-lockup {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.7rem;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  color: #fff;
  background: var(--red);
  border: 3px solid var(--yellow);
}

.site-nav {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.85rem;
  text-decoration: none;
  font-weight: 700;
  color: var(--espresso);
}

.site-nav a:hover {
  color: var(--red);
}

main > section {
  scroll-margin-top: 1rem;
}

.hero {
  min-height: calc(100vh - 77px);
  display: grid;
  grid-template-columns: minmax(19rem, 0.9fr) minmax(25rem, 1.1fr);
  gap: 3rem;
  align-items: center;
  padding: 3rem 5vw 2.6rem;
  background:
    linear-gradient(90deg, var(--cream-soft) 0 49%, rgba(221, 239, 216, 0.72) 49% 100%);
}

.hero-copy {
  max-width: 34rem;
}

.eyebrow {
  margin: 0 0 0.7rem;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--red);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 1rem;
  font-size: 3.6rem;
}

h1 span {
  display: block;
}

.hero-text {
  max-width: 29rem;
  margin-bottom: 1.4rem;
  font-size: 1.18rem;
  color: var(--ink-muted);
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1rem;
  border: 2px solid var(--espresso);
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  background: var(--espresso);
  color: #fff;
}

.button.primary:hover {
  background: var(--red-dark);
}

.button.secondary {
  background: #fff;
  color: var(--espresso);
}

.button.secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.hero-photo {
  margin: 0;
  justify-self: end;
  width: min(100%, 46rem);
  border: 10px solid #fff;
  box-shadow: var(--shadow);
  background: #fff;
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 46% 55%;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--red);
  color: #fff;
  border-top: 6px solid var(--yellow);
}

.proof-band div {
  min-height: 5.8rem;
  padding: 1rem 1.2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.proof-band span,
.proof-band strong {
  display: block;
}

.proof-band span {
  color: #ffe8b7;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.proof-band strong {
  margin-top: 0.25rem;
  font-size: 1rem;
}

.menu-section,
.photos-section,
.season-section,
.visit-section {
  padding: 4.25rem 5vw;
}

.menu-section {
  background: var(--cream);
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 1.8rem;
}

.section-heading.compact {
  max-width: 52rem;
}

.section-heading h2,
.season-copy h2,
.visit-panel h2 {
  margin-bottom: 0.8rem;
  font-size: 2.35rem;
}

.section-heading p:not(.eyebrow) {
  color: var(--ink-muted);
  font-size: 1.04rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.menu-grid article {
  min-height: 13rem;
  padding: 1.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 6px solid var(--yellow);
}

.menu-number {
  display: inline-block;
  margin-bottom: 1.1rem;
  color: var(--blue);
  font-weight: 900;
}

.menu-grid h3 {
  margin-bottom: 0.55rem;
  font-size: 1.05rem;
  line-height: 1.2;
}

.menu-grid p,
.season-list p {
  color: var(--ink-muted);
}

.photos-section {
  background: #fff;
}

.photo-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-areas:
    "lead lead games counter"
    "lounge order patio mural";
  grid-template-rows: repeat(2, clamp(11rem, 16vw, 14rem));
  gap: 0.85rem;
}

.photo-tile {
  position: relative;
  margin: 0;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  overflow: hidden;
}

.photo-tile.lead {
  grid-area: lead;
}

.photo-tile:nth-child(2) {
  grid-area: games;
}

.photo-tile:nth-child(3) {
  grid-area: counter;
}

.photo-tile:nth-child(4) {
  grid-area: lounge;
}

.photo-tile:nth-child(5) {
  grid-area: order;
}

.photo-tile:nth-child(6) {
  grid-area: patio;
}

.photo-tile:nth-child(7) {
  grid-area: mural;
}

.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-tile.lead img {
  object-position: 48% 54%;
}

.photo-tile:nth-child(2) img {
  object-position: 57% 52%;
}

.photo-tile:nth-child(3) img {
  object-position: 55% 50%;
}

.photo-tile:nth-child(4) img {
  object-position: 48% 56%;
}

.photo-tile:nth-child(5) img {
  object-position: 56% 50%;
}

.photo-tile.square img {
  object-position: 55% 55%;
}

.photo-tile:nth-child(7) img {
  object-position: 62% 50%;
}

.photo-tile figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 3.25rem;
  display: flex;
  align-items: center;
  padding: 0.72rem 0.85rem;
  color: #fff;
  background: rgba(43, 23, 20, 0.88);
  font-weight: 800;
  font-size: 0.92rem;
  line-height: 1.25;
}

.season-section {
  display: grid;
  grid-template-columns: minmax(18rem, 0.85fr) minmax(20rem, 1.15fr);
  gap: 2rem;
  background: var(--mint);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.season-copy {
  max-width: 34rem;
}

.season-list {
  display: grid;
  gap: 0.75rem;
}

.season-list p {
  margin: 0;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.72);
  border-left: 6px solid var(--blue);
}

.season-list strong {
  color: var(--espresso);
}

.visit-section {
  background: var(--cream-soft);
}

.visit-panel {
  display: grid;
  grid-template-columns: minmax(18rem, 1fr) auto;
  gap: 2rem;
  align-items: end;
  padding: 2rem;
  background: var(--espresso);
  color: #fff;
}

.visit-panel .eyebrow {
  color: var(--yellow);
}

.visit-panel h2 {
  max-width: 36rem;
  color: #fff;
}

.visit-panel .button.primary {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--espresso);
}

.visit-panel .button.primary:hover {
  background: #fff;
  border-color: #fff;
  color: var(--espresso);
}

address {
  font-style: normal;
  font-weight: 800;
  color: #ffe8b7;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 5vw;
  background: var(--red);
  color: #fff;
  font-weight: 800;
}

.site-footer p {
  margin: 0;
}

.js-enabled .section-reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.js-enabled .section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    min-height: auto;
  }

  h1 {
    font-size: 3rem;
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-board {
    grid-template-rows: repeat(2, clamp(10rem, 18vw, 12rem));
  }
}

@media (max-width: 740px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 0.85rem 1rem;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
  }

  .site-nav a {
    padding: 0.55rem 0.65rem;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 2rem 1rem 1.5rem;
    background: linear-gradient(180deg, var(--cream-soft) 0 61%, var(--mint) 61% 100%);
  }

  h1 {
    font-size: 2.3rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-photo {
    width: 100%;
    border-width: 6px;
  }

  .hero-photo img {
    aspect-ratio: 4 / 5;
    object-position: 45% 50%;
  }

  .proof-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-band div {
    min-height: 5.3rem;
  }

  .menu-section,
  .photos-section,
  .season-section,
  .visit-section {
    padding: 3rem 1rem;
  }

  .section-heading h2,
  .season-copy h2,
  .visit-panel h2 {
    font-size: 1.85rem;
  }

  .menu-grid,
  .season-section,
  .visit-panel {
    grid-template-columns: 1fr;
  }

  .menu-grid article {
    min-height: auto;
  }

  .photo-board {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: none;
    grid-template-rows: none;
    gap: 0.75rem;
  }

  .photo-board .photo-tile {
    grid-area: auto;
  }

  .photo-tile img,
  .photo-tile.lead img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .photo-tile figcaption {
    position: static;
    min-height: 3.4rem;
    color: var(--espresso);
    background: var(--cream-soft);
  }

  .visit-panel {
    padding: 1.25rem;
  }

  .visit-actions {
    width: 100%;
    flex-direction: column;
  }

  .visit-actions .button,
  .hero-actions .button {
    flex: 1 1 9rem;
  }

  .visit-actions .button {
    flex-basis: auto;
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 360px) {
  .brand-lockup {
    font-size: 0.98rem;
  }

  .site-nav a {
    font-size: 0.92rem;
  }

  h1 {
    font-size: 2rem;
  }

  .section-heading h2,
  .season-copy h2,
  .visit-panel h2 {
    font-size: 1.55rem;
  }

  .proof-band {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js-enabled .section-reveal {
    opacity: 1;
    transform: none;
  }
}
