:root {
  --green-950: #081a14;
  --green-900: #0b251b;
  --green-800: #103326;
  --green-700: #174735;
  --ink: #102019;
  --text: #f2f3ec;
  --muted: #b9c1bb;
  --accent: #c6ccc8;
  --accent-dark: #102019;
  --line: rgba(242, 243, 236, .18);
  --page-gutter: clamp(1.25rem, 5vw, 5rem);
  --section-space: clamp(4.25rem, 6.5vw, 7rem);
  --body: "Avenir Next", Avenir, "Segoe UI", system-ui, sans-serif;
  --display: "Avenir Next Condensed", "Segoe UI", system-ui, sans-serif;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--green-950);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--green-950);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: .75rem;
  left: .75rem;
  padding: .75rem 1rem;
  color: var(--accent-dark);
  background: var(--accent);
  transform: translateY(-180%);
  transition: transform .2s var(--ease);
}

.skip-link:focus { transform: none; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 78px;
  padding: 0 var(--page-gutter);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(242, 243, 236, .24);
  color: var(--text);
}

.brand {
  width: 142px;
  flex: 0 0 auto;
}

.brand img {
  max-height: 68px;
  object-fit: contain;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 2.4vw, 2.75rem);
}

.desktop-nav a {
  position: relative;
  padding: .4rem 0;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after { transform: scaleX(1); }

.header-cta {
  min-height: 46px;
  margin-left: clamp(1.5rem, 3vw, 3.25rem);
  padding: 0 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: 2px;
  color: #102019;
  background: linear-gradient(180deg, #f3f5f4 0%, #c8cdca 44%, #929995 52%, #c9cecb 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .92),
    inset 0 -1px 0 rgba(22, 32, 27, .32),
    0 6px 18px rgba(4, 20, 14, .24);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .46);
  text-transform: uppercase;
  transition: filter .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}

.header-cta:hover,
.header-cta:focus-visible {
  color: #102019;
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(22, 32, 27, .28),
    0 9px 22px rgba(4, 20, 14, .3);
}

.header-cta:active { transform: translateY(0) scale(.99); }

.menu-toggle,
.mobile-nav { display: none; }

.hero {
  position: relative;
  min-height: 720px;
  height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--green-950);
}

.hero-media {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  filter: saturate(.85) contrast(1.06);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 20, 14, .92) 0%, rgba(4, 20, 14, .68) 48%, rgba(4, 20, 14, .18) 82%),
    linear-gradient(0deg, rgba(4, 20, 14, .88) 0%, rgba(4, 20, 14, .08) 64%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(920px, 78vw);
  padding: 0 var(--page-gutter) clamp(4.2rem, 8vh, 6.7rem);
}

.hero-kicker,
.section-label {
  margin: 0 0 1.25rem;
  color: var(--accent);
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero h1,
.section-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(4rem, 7.1vw, 7.4rem);
  line-height: .88;
  letter-spacing: .012em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 580px;
  margin: 1.55rem 0 0;
  color: rgba(242, 243, 236, .82);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.58;
}

.hero-actions,
.party-actions {
  margin-top: 1.8rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}

.button {
  min-height: 52px;
  padding: 0 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}

.button-primary {
  color: var(--accent-dark);
  background: var(--accent);
  border-color: var(--accent);
}

.button-primary:hover,
.button-primary:focus-visible {
  color: var(--text);
  background: var(--green-700);
  border-color: var(--green-700);
}

.button-ghost {
  color: var(--text);
  border-color: rgba(242, 243, 236, .52);
  background: rgba(8, 26, 20, .16);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  color: var(--accent-dark);
  background: var(--text);
  border-color: var(--text);
}

.button:active { transform: translateY(1px); }

.quick-info {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  color: var(--text);
  background: var(--green-800);
}

.quick-info > * {
  min-height: 88px;
  padding: 1rem clamp(1.25rem, 3vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}

.quick-info > *:last-child { border-right: 0; }

.quick-info span,
.visit-grid span {
  display: block;
  margin-bottom: .45rem;
  color: var(--accent);
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.quick-info strong {
  font-size: clamp(.87rem, 1vw, 1rem);
  font-weight: 600;
  line-height: 1.35;
}

.quick-info a { transition: background .25s var(--ease); }
.quick-info a:hover,
.quick-info a:focus-visible { background: var(--green-700); }

.section { padding: var(--section-space) var(--page-gutter); }

.section-title {
  font-size: clamp(2.85rem, 4.8vw, 5.5rem);
  line-height: .94;
  text-transform: uppercase;
}

.section-copy {
  max-width: 570px;
  margin: 1.45rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.15vw, 1.14rem);
  line-height: 1.65;
}

.text-action {
  display: inline-block;
  margin-top: 2rem;
  padding-bottom: .35rem;
  border-bottom: 2px solid var(--accent);
  color: var(--text);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .25s var(--ease), transform .25s var(--ease);
}

.text-action:hover,
.text-action:focus-visible {
  color: var(--accent);
  transform: translateX(3px);
}

.wings {
  min-height: 660px;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  align-items: stretch;
  gap: 0;
  border-bottom: 1px solid var(--line);
  background: var(--green-900);
}

.wings-photo {
  min-height: 660px;
  margin: 0;
  overflow: hidden;
}

.wings-photo img,
.story-photo img,
.party-photo img,
.food-feature img,
.food-item img {
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease), filter .7s var(--ease);
}

.wings-photo img { object-position: 50% center; }
.wings-photo:hover img,
.story-photo:hover img,
.party-photo:hover img,
.food-feature:hover img,
.food-item:hover img { transform: scale(1.025); }

.wings-copy {
  align-self: center;
  padding: clamp(3.75rem, 6vw, 6rem) var(--page-gutter);
}

.wing-sizes {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
}

.wing-sizes strong {
  display: block;
  color: var(--accent);
  font-family: var(--display);
  font-size: clamp(2.5rem, 4vw, 4.25rem);
  line-height: 1;
}

.wing-sizes span {
  display: block;
  max-width: 92px;
  margin-top: .35rem;
  color: var(--muted);
  font-size: .65rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

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

.section-heading {
  max-width: none;
  margin-bottom: clamp(2.75rem, 4vw, 4rem);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .55fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}

.section-heading-copy {
  max-width: 430px;
  justify-self: end;
}

.section-heading-copy .section-copy { margin-top: 0; }
.section-heading .button { margin-top: 1.9rem; }

.food-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(330px, .6fr);
  gap: 1.25rem;
}

.food-feature,
.food-item {
  margin: 0;
  overflow: hidden;
  background: var(--green-800);
}

.food-feature {
  min-height: 620px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.food-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1.25rem;
}

.food-item {
  min-height: 300px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr) auto;
}

.food-feature img,
.food-item img { min-height: 0; }

.food-caption {
  padding: 1.25rem 1.4rem 1.35rem;
  border-top: 1px solid var(--line);
}

.food-caption h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.15rem, 1.7vw, 1.65rem);
  font-weight: 700;
}

.food-caption p {
  margin: .35rem 0 0;
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.5;
}

.story {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, .85fr);
  background: var(--green-800);
}

.story-photo {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(180px, .75fr);
  gap: 1px;
  overflow: hidden;
  background: var(--line);
}

.story-photo img {
  min-width: 0;
  object-position: center;
}

.story-photo img:last-child { object-position: 52% center; }

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--line);
}

.year-mark {
  margin: 0 0 1.5rem;
  color: var(--accent);
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.parties {
  min-height: 620px;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(360px, .8fr) minmax(0, 1.2fr);
  gap: 0;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  background: var(--green-900);
}

.party-copy {
  align-self: center;
  padding: clamp(3.75rem, 6vw, 6rem) var(--page-gutter);
}

.party-photo {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, .85fr);
  gap: 1px;
  overflow: hidden;
  background: var(--line);
}

.party-photo img {
  min-width: 0;
  object-position: center;
}

.party-photo img:last-child { object-position: 48% center; }

.booking-line {
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: .78rem;
}

.visit {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--green-950);
}

.visit-media {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.visit-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(4, 20, 14, .98) 0%, rgba(4, 20, 14, .76) 48%, rgba(4, 20, 14, .12) 100%),
    linear-gradient(90deg, rgba(4, 20, 14, .4), transparent 65%);
}

.visit-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.visit .section-title { max-width: 800px; }

.visit-grid {
  margin-top: clamp(2.25rem, 4vw, 3.5rem);
  padding-top: 1.5rem;
  display: grid;
  grid-template-columns: .9fr 1.3fr .7fr;
  gap: clamp(2rem, 5vw, 5rem);
  border-top: 1px solid rgba(242, 243, 236, .36);
}

.visit-grid p,
.visit-grid a {
  margin: 0;
  color: rgba(242, 243, 236, .86);
  font-size: .86rem;
  line-height: 1.7;
}

.visit-grid a { transition: color .25s var(--ease); }
.visit-grid a:hover,
.visit-grid a:focus-visible { color: var(--accent); }

footer {
  padding: 2rem var(--page-gutter);
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--green-950);
}

.footer-brand { width: 130px; }

footer p {
  margin: 0;
  font-size: .75rem;
}

footer nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--text);
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

footer nav a:hover,
footer nav a:focus-visible { color: var(--accent); }

.concept-note {
  grid-column: 1 / -1;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  text-align: right;
  opacity: .65;
}

.reveal,
.reveal-media {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .68s var(--ease), transform .68s var(--ease);
}

.reveal-media { transform: translateY(16px); }

.reveal.is-visible,
.reveal-media.is-visible {
  opacity: 1;
  transform: none;
}

.hero .reveal:nth-child(2) { transition-delay: .08s; }
.hero .reveal:nth-child(3) { transition-delay: .16s; }
.hero .reveal:nth-child(4) { transition-delay: .24s; }

@media (max-width: 1050px) {
  .desktop-nav { display: none; }

  .header-cta { margin-left: auto; }

  .menu-toggle {
    position: relative;
    z-index: 2;
    width: 46px;
    height: 46px;
    margin-left: .75rem;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 1px solid rgba(242, 243, 236, .48);
    border-radius: 2px;
    color: var(--text);
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    background: currentColor;
    transition: transform .36s var(--ease);
  }

  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

  .mobile-nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    padding: 8rem var(--page-gutter) 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.1rem;
    color: var(--text);
    background: var(--green-950);
  }

  .mobile-nav[hidden] { display: none; }

  .mobile-nav a {
    width: max-content;
    max-width: 100%;
    font-family: var(--display);
    font-size: clamp(2.4rem, 7vw, 4rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.035em;
    text-transform: uppercase;
  }

  .mobile-nav .mobile-call {
    margin-top: 1.2rem;
    padding-bottom: .35rem;
    border-bottom: 2px solid var(--accent);
    color: var(--accent);
    font-family: var(--body);
    font-size: .8rem;
    letter-spacing: .08em;
  }

  .wings,
  .story,
  .parties { grid-template-columns: 1fr; }

  .wings { min-height: 0; gap: 0; }
  .wings-photo { min-height: 520px; }
  .wings-copy { max-width: 650px; }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section-heading-copy {
    max-width: 570px;
    justify-self: start;
  }

  .food-grid { grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr); }

  .story-photo { min-height: 560px; }
  .story-copy { min-height: 0; border-left: 0; border-top: 1px solid var(--line); }

  .parties { min-height: 0; gap: 0; }
  .party-copy { max-width: 690px; }
  .party-photo { min-height: 500px; }
}

@media (max-width: 720px) {
  :root {
    --page-gutter: 1.1rem;
    --section-space: 3.75rem;
  }

  .site-header {
    height: 72px;
    padding-right: .8rem;
  }

  .brand { width: 118px; }
  .brand img { max-height: 58px; }
  .header-cta { display: none; }
  .menu-toggle { margin-left: auto; }
  .mobile-nav { padding-top: 7rem; }

  .hero {
    min-height: 720px;
    height: 100svh;
  }

  .hero-media { object-position: 62% center; }

  .hero-scrim {
    background:
      linear-gradient(0deg, rgba(4, 20, 14, .96) 0%, rgba(4, 20, 14, .54) 66%, rgba(4, 20, 14, .24) 100%),
      linear-gradient(90deg, rgba(4, 20, 14, .72), rgba(4, 20, 14, .14));
  }

  .hero-content {
    width: 100%;
    padding-bottom: 3rem;
  }

  .hero h1 {
    max-width: 590px;
    font-size: clamp(3rem, 13.5vw, 4.4rem);
    line-height: .9;
    letter-spacing: .006em;
  }

  .hero-copy {
    max-width: 95%;
    margin-top: 1.25rem;
    font-size: .96rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button { width: 100%; }

  .quick-info {
    grid-template-columns: 1fr 1fr;
  }

  .quick-info > * {
    min-height: 90px;
    padding: .85rem 1rem;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .quick-info > *:nth-child(2n) { border-right: 0; }
  .quick-info > *:nth-last-child(-n + 2) { border-bottom: 0; }

  .section-title {
    font-size: clamp(2.75rem, 13.2vw, 4.25rem);
    line-height: .95;
  }

  .wings { min-height: 0; gap: 0; }
  .wings-photo { min-height: 330px; }
  .wings-copy { padding: 3.75rem var(--page-gutter); }

  .wing-sizes { gap: .4rem; }
  .wing-sizes strong { font-size: 2.55rem; }
  .wing-sizes span { font-size: .57rem; }

  .food-grid { grid-template-columns: 1fr; }
  .food-feature { min-height: 430px; }
  .food-stack { gap: 1.25rem; }
  .food-item { min-height: 320px; }

  .story-photo {
    min-height: 390px;
    grid-template-columns: minmax(0, 1fr) minmax(105px, .6fr);
  }
  .story-copy { min-height: 0; }

  .parties { gap: 0; }
  .party-copy { padding: 3.75rem var(--page-gutter); }
  .party-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .party-actions .button { width: 100%; }
  .party-photo {
    min-height: 340px;
    grid-template-columns: minmax(0, 1fr) minmax(110px, .7fr);
  }

  .visit {
    min-height: 760px;
  }

  .visit-media { object-position: 55% center; }

  .visit-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  footer {
    grid-template-columns: 1fr;
    text-align: left;
  }

  footer nav { flex-wrap: wrap; }
  .concept-note { text-align: left; }
}

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

  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal,
  .reveal-media {
    opacity: 1;
    transform: none;
  }
}
