@font-face {
  font-family: "Chakra Petch";
  src: url("Branding/FONT/ChakraPetch-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Chakra Petch";
  src: url("Branding/FONT/ChakraPetch-Bold.ttf") format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: "Pinyon Script";
  src: url("Branding/FONT/PinyonScript-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Sebastien Slab";
  src: url("Branding/FONT/Sebastien-Slab-Round.ttf") format("truetype");
}

:root {
  --yellow: #ffdc67;
  --hot: #ffc83d;
  --cream: #f1eadf;
  --green: #00583a;
  --black: #050503;
  --ink: #15130d;
  --steel: #c6c2b7;
  --space: clamp(22px, 5vw, 84px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: "Chakra Petch", Arial, sans-serif;
}

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

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  background: none;
  border: 0;
  cursor: pointer;
}

.site-header {
  align-items: center;
  color: var(--cream);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  left: 0;
  padding: 18px clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
  z-index: 20;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 220, 103, 0.96);
  border-bottom: 1px solid rgba(5, 5, 3, 0.12);
  color: var(--black);
}

.brand-mark {
  grid-column: 2;
  justify-self: center;
}

.brand-mark img {
  filter: invert(1);
  height: 38px;
  transition: filter 180ms ease;
  width: auto;
}

.site-header.is-scrolled .brand-mark img,
.site-header.is-open .brand-mark img {
  filter: none;
}

.menu-toggle,
.reserve-link {
  align-items: center;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 10px;
  text-transform: uppercase;
}

.menu-toggle span:not(.menu-label) {
  background: currentColor;
  display: block;
  height: 2px;
  width: 18px;
}

.reserve-link {
  justify-self: end;
}

.site-menu {
  background: var(--yellow);
  color: var(--black);
  display: grid;
  font-family: "Sebastien Slab", "Chakra Petch", serif;
  font-size: clamp(32px, 6vw, 82px);
  gap: 10px;
  left: 0;
  line-height: 0.94;
  padding: 104px var(--space) 42px;
  position: fixed;
  right: 0;
  text-transform: uppercase;
  top: 0;
  transform: translateY(-110%);
  transition: transform 320ms ease;
  z-index: -1;
}

.site-header.is-open .site-menu {
  transform: translateY(0);
}

.site-menu a {
  border-bottom: 2px solid rgba(5, 5, 3, 0.2);
  padding: 8px 0 14px;
}

.hero {
  min-height: 100svh;
  overflow: hidden;
  position: relative;
}

.hero-bg,
.hero-shade {
  inset: 0;
  position: absolute;
}

.hero-bg {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  width: 100%;
}

.hero-shade {
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 220, 103, 0.16), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.18) 62%, rgba(0, 0, 0, 0.58)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent 34%);
}

.hero-content {
  color: var(--cream);
  left: var(--space);
  max-width: 920px;
  position: absolute;
  top: 50%;
  transform: translateY(-42%);
  z-index: 1;
}

.hero-content.reveal {
  transform: translateY(calc(-42% + 28px));
}

.hero-content.reveal.is-visible {
  transform: translateY(-42%);
}

.script-line,
.hero-subtitle,
.signature {
  font-family: "Pinyon Script", Georgia, serif;
  line-height: 0.78;
}

.script-line {
  color: var(--yellow);
  font-size: clamp(52px, 8vw, 130px);
  margin: 0 0 -8px;
}

.hero h1 {
  font-size: clamp(72px, 12vw, 182px);
  letter-spacing: 0;
  line-height: 0.78;
  margin: 0;
  text-transform: uppercase;
}

.hero-subtitle {
  color: var(--yellow);
  font-size: clamp(42px, 7vw, 104px);
  margin: 0 0 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  align-items: center;
  border: 2px solid currentColor;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  justify-content: center;
  min-height: 50px;
  overflow: hidden;
  padding: 0 24px;
  position: relative;
  text-transform: uppercase;
}

.button::after {
  background: rgba(255, 255, 255, 0.22);
  content: "";
  height: 160%;
  left: -40%;
  position: absolute;
  top: -30%;
  transform: translateX(-120%) rotate(18deg);
  transition: transform 260ms ease;
  width: 34%;
}

.button:hover::after {
  transform: translateX(440%) rotate(18deg);
}

.button-yellow {
  background: var(--yellow);
  color: var(--black);
}

.button-ghost {
  color: var(--cream);
}

.button-dark {
  background: var(--black);
  color: var(--yellow);
}

.hero-card {
  background: var(--yellow);
  bottom: 34px;
  color: var(--black);
  max-width: 330px;
  padding: 22px;
  position: absolute;
  right: var(--space);
  z-index: 1;
}

.hero-card p {
  line-height: 1.36;
  margin: 0;
}

.hero-card-kicker {
  font-family: "Sebastien Slab", "Chakra Petch", serif;
  font-size: 24px;
  margin-bottom: 12px !important;
  text-transform: uppercase;
}

.quick-links {
  background: var(--yellow);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.quick-links a {
  align-items: center;
  border-bottom: 2px solid var(--black);
  border-right: 2px solid var(--black);
  display: flex;
  font-weight: 700;
  justify-content: center;
  min-height: 72px;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.quick-links a:hover {
  background: var(--black);
  color: var(--yellow);
}

.intro,
.story,
.events,
.gallery {
  padding: clamp(76px, 11vw, 152px) var(--space);
}

.intro {
  background: var(--yellow);
  display: grid;
  gap: clamp(34px, 6vw, 86px);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
}

.intro-copy {
  align-self: center;
}

.eyebrow {
  font-family: "Sebastien Slab", "Chakra Petch", serif;
  font-size: clamp(22px, 3vw, 42px);
  line-height: 0.92;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.intro h2,
.story h2,
.section-heading h2,
.events h2 {
  font-size: clamp(42px, 6.4vw, 94px);
  line-height: 0.88;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.intro p:not(.eyebrow),
.story p:not(.eyebrow):not(.signature),
.events p:not(.eyebrow) {
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.55;
  margin: 0;
  max-width: 650px;
}

.intro-stack {
  min-height: 620px;
  position: relative;
}

.photo-card {
  border: 2px solid var(--black);
  box-shadow: 16px 16px 0 var(--black);
  margin: 0;
  overflow: hidden;
  position: absolute;
}

.photo-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
  width: 100%;
}

.photo-card:hover img {
  transform: scale(1.045);
}

.photo-card-large {
  height: 74%;
  left: 0;
  top: 0;
  width: 72%;
}

.photo-card-small {
  bottom: 0;
  height: 48%;
  right: 0;
  width: 48%;
}

.ticker {
  background: var(--black);
  color: var(--yellow);
  overflow: hidden;
  padding: 18px 0;
}

.ticker-track {
  animation: marquee 28s linear infinite;
  display: flex;
  gap: 34px;
  width: max-content;
}

.ticker span {
  font-family: "Sebastien Slab", "Chakra Petch", serif;
  font-size: clamp(28px, 4.5vw, 64px);
  text-transform: uppercase;
  white-space: nowrap;
}

.story {
  background: var(--cream);
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1fr);
}

.story-image {
  overflow: hidden;
}

.story-image img {
  aspect-ratio: 4 / 5;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.story-panel {
  align-self: center;
  border-bottom: 2px solid var(--black);
  border-top: 2px solid var(--black);
  padding: clamp(28px, 5vw, 68px) 0;
}

.signature {
  color: var(--green);
  font-size: clamp(40px, 6vw, 86px);
  margin: 38px 0 0;
}

.menu-section {
  background: var(--green);
  color: var(--cream);
  padding: clamp(76px, 11vw, 152px) 0;
}

.section-heading {
  padding: 0 var(--space) 38px;
}

.menu-rail {
  display: grid;
  gap: 18px;
  grid-auto-columns: minmax(300px, 31vw);
  grid-auto-flow: column;
  overflow-x: auto;
  padding: 0 var(--space) 10px;
  scroll-snap-type: x proximity;
}

.menu-card {
  background: var(--cream);
  color: var(--black);
  min-height: 560px;
  overflow: hidden;
  scroll-snap-align: start;
}

.menu-card img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.menu-card div {
  padding: 24px;
}

.menu-card span {
  color: var(--green);
  display: block;
  font-family: "Sebastien Slab", "Chakra Petch", serif;
  font-size: 34px;
  margin-bottom: 46px;
}

.menu-card h3 {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 0.92;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.menu-card p {
  line-height: 1.4;
  margin: 0;
}

.feature-band {
  min-height: 62vw;
  overflow: hidden;
  position: relative;
}

.feature-band img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.feature-band::after {
  background: linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.72));
  content: "";
  inset: 0;
  position: absolute;
}

.feature-copy {
  bottom: var(--space);
  color: var(--cream);
  left: var(--space);
  max-width: 1120px;
  position: absolute;
  z-index: 1;
}

.feature-copy p {
  font-family: "Sebastien Slab", "Chakra Petch", serif;
  font-size: clamp(36px, 6vw, 94px);
  line-height: 0.9;
  margin: 0;
  text-transform: uppercase;
}

.events {
  background: var(--yellow);
  display: grid;
  gap: clamp(28px, 6vw, 80px);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
}

.events-copy {
  align-self: center;
}

.events-copy p:not(.eyebrow) {
  margin-bottom: 28px;
}

.events-photo {
  align-self: stretch;
  border: 2px solid var(--black);
  min-height: 520px;
  overflow: hidden;
}

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

.gallery {
  background: var(--black);
  color: var(--yellow);
}

.gallery-heading {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 34px;
}

.gallery h2 {
  font-size: clamp(42px, 7vw, 108px);
  line-height: 0.86;
  margin: 0;
  text-transform: uppercase;
}

.gallery-heading p {
  color: var(--cream);
  font-weight: 700;
  margin: 0 0 8px;
}

.gallery-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(6, 1fr);
}

.gallery-grid img {
  aspect-ratio: 1 / 1;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.gallery-grid img:nth-child(1),
.gallery-grid img:nth-child(6) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid img:not(:nth-child(1)):not(:nth-child(6)) {
  grid-column: span 2;
}

.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 220, 103, 0.22);
  color: var(--cream);
  display: grid;
  gap: 28px;
  grid-template-columns: 1.2fr 1fr 1.4fr;
  padding: 52px var(--space) 24px;
}

.site-footer img {
  width: 94px;
}

.site-footer h2 {
  color: var(--yellow);
  font-size: 14px;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  font-size: 14px;
  margin-bottom: 9px;
}

.copyright {
  color: rgba(241, 234, 223, 0.55);
  font-size: 11px;
  grid-column: 1 / -1;
  margin: 28px 0 0;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 580ms ease, transform 580ms ease;
}

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

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 920px) {
  .hero-content {
    bottom: 150px;
    max-width: calc(100% - var(--space) * 2);
    top: auto;
    transform: none;
  }

  .hero-content.reveal,
  .hero-content.reveal.is-visible {
    transform: none;
  }

  .hero-card {
    left: var(--space);
    max-width: calc(100% - var(--space) * 2);
    right: auto;
  }

  .intro,
  .story,
  .events {
    grid-template-columns: 1fr;
  }

  .intro-stack {
    min-height: 520px;
  }

  .menu-rail {
    grid-auto-columns: minmax(300px, 76vw);
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand-mark img {
    height: 30px;
  }

  .reserve-link {
    font-size: 12px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    bottom: 190px;
  }

  .hero h1 {
    font-size: clamp(62px, 21vw, 98px);
  }

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

  .button {
    width: 100%;
  }

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

  .intro-stack {
    min-height: 420px;
  }

  .photo-card-large {
    width: 82%;
  }

  .photo-card-small {
    width: 58%;
  }

  .feature-band {
    min-height: 96vw;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid img,
  .gallery-grid img:nth-child(1),
  .gallery-grid img:nth-child(6),
  .gallery-grid img:not(:nth-child(1)):not(:nth-child(6)) {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
