:root {
  --black: #080808;
  --white: #fffaf0;
  --paper: #f5efe0;
  --teal: #3da6a5;
  --teal-dark: #11696a;
  --gold: #f2a900;
  --red: #b9181d;
  --ink-shadow: 3px 3px 0 #000;
  --display-font: "Ranchers", "Rye", Impact, Haettenschweiler, "Arial Black", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--black);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
}

section,
footer {
  position: relative;
}

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

.edge-top-light::before,
.edge-top-dark::before,
.edge-top-teal::before,
.edge-bottom-dark::after {
  content: "";
  position: absolute;
  left: -2vw;
  right: -2vw;
  z-index: 5;
  height: 58px;
  pointer-events: none;
  clip-path: polygon(0 55%, 4% 38%, 8% 50%, 12% 31%, 17% 46%, 22% 28%, 27% 43%, 33% 34%, 38% 48%, 44% 27%, 49% 44%, 55% 34%, 62% 49%, 68% 30%, 73% 43%, 80% 35%, 86% 51%, 92% 33%, 96% 45%, 100% 36%, 100% 100%, 0 100%);
}

.edge-top-light::before,
.edge-top-dark::before,
.edge-top-teal::before {
  top: -28px;
}

.edge-bottom-dark::after {
  bottom: -26px;
  transform: rotate(180deg);
}

.edge-top-light::before {
  background: var(--paper);
}

.edge-top-dark::before,
.edge-bottom-dark::after {
  background: var(--black);
}

.edge-top-teal::before {
  background: var(--teal);
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  gap: 28px;
  padding: 22px clamp(22px, 4vw, 54px);
  color: #fff;
  transition: background .22s ease, padding .22s ease, transform .22s ease;
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: -1;
  height: 35px;
  background: var(--gold);
  opacity: 0;
  transition: opacity .22s ease;
  pointer-events: none;
}

.site-header::before {
  top: 0;
  height: 22px;
  background: var(--teal);
  clip-path: polygon(0 0, 24% 0, 0 100%);
}

.site-header::after {
  bottom: 0;
  clip-path: polygon(100% 0, 100% 100%, 50% 100%);
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, .8);
  padding-block: 26px 30px;
}

.site-header.is-scrolled::before,
.site-header.is-scrolled::after {
  opacity: 1;
}

.logo-link img {
  width: clamp(105px, 10vw, 150px);
  filter: drop-shadow(0 5px 1px rgba(0, 0, 0, .75));
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(18px, 3vw, 46px);
}

.nav-cluster {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
}

.mobile-nav-toggle {
  display: none;
  width: 54px;
  height: 48px;
  padding: 10px;
  background: var(--teal);
  border: 0;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, .55);
  transform: skew(-8deg);
  cursor: pointer;
}

.mobile-nav-toggle span {
  display: block;
  height: 4px;
  margin: 5px 0;
  background: #fff;
  box-shadow: 2px 2px 0 #000;
  transform: skew(8deg);
}

.mobile-nav-toggle[aria-expanded="true"] {
  background: var(--gold);
}

.mobile-nav-toggle[aria-expanded="true"] span {
  background: var(--black);
  box-shadow: none;
}

.site-nav a {
  color: #fff;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: var(--ink-shadow);
  white-space: nowrap;
}

.book-now,
.angle-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 30px;
  color: #fff;
  background: var(--red);
  border: 0;
  font-weight: 950;
  font-style: italic;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: var(--ink-shadow);
  transform: skew(-8deg);
  box-shadow: 7px 7px 0 rgba(0, 0, 0, .55);
}

.book-now {
  justify-self: end;
}

.book-now {
  text-transform: lowercase;
  background: var(--gold);
  color: var(--black);
  text-shadow: none;
}

.angle-button.secondary {
  background: var(--teal);
}

.book-now:hover,
.angle-button:hover {
  filter: brightness(1.08);
}

.kogi-hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .68), rgba(0, 0, 0, .1) 52%, rgba(0, 0, 0, .82)),
    url("optimized/hero-loaded-potato.jpg") center / cover no-repeat;
}

.kogi-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  filter: grayscale(1) contrast(1.18);
  transform: scale(1.03);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 68%, rgba(61, 166, 165, .28), transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, .22), rgba(0, 0, 0, .84));
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 80px));
  margin-inline: auto;
  padding: 70px 0 24px;
  text-align: center;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display-font);
  line-height: .82;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  display: block;
  width: 100%;
  color: var(--gold);
  font-size: clamp(4.6rem, 8.2vw, 9.8rem);
  text-shadow: 5px 5px 0 rgba(0, 0, 0, .72);
  text-align: center;
  white-space: nowrap;
}

.hero-copy h1 {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  font-size: clamp(5.8rem, 9.8vw, 12.4rem);
}

.hero-copy p {
  max-width: 860px;
  margin: 28px auto 30px;
  font-size: clamp(1.12rem, 1.9vw, 1.48rem);
  font-weight: 400;
  line-height: 1.5;
  text-shadow: 2px 2px 0 #000;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.event-ribbon {
  position: relative;
  z-index: 10;
  margin-top: -98px;
  padding: 24px 0;
  overflow: hidden;
  color: #fff;
  background: var(--red);
  transform: rotate(-2deg) scaleX(1.06);
  transform-origin: center;
  border-block: 5px solid var(--red);
  contain: paint;
}

.ribbon-track {
  position: relative;
  display: flex;
  align-items: center;
  width: max-content;
  gap: 0;
  padding: 0;
  font-family: var(--display-font);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.ribbon-track span {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  margin-inline: 18px;
}

.ribbon-track span::after {
  content: "";
  width: 1.05em;
  height: .72em;
  display: inline-block;
  flex: 0 0 auto;
  border: 3px solid #6f3d17;
  border-radius: 54% 46% 50% 44% / 48% 56% 44% 52%;
  background:
    radial-gradient(circle at 28% 35%, #6f3d17 0 7%, transparent 8%),
    radial-gradient(circle at 62% 58%, #6f3d17 0 6%, transparent 7%),
    radial-gradient(circle at 72% 30%, rgba(255, 229, 147, .75) 0 10%, transparent 11%),
    linear-gradient(135deg, #f7c45b 0%, #b97227 58%, #7d4519 100%);
  transform: rotate(-16deg);
  box-shadow:
    inset -4px -3px 0 rgba(82, 42, 14, .32),
    inset 4px 3px 0 rgba(255, 226, 144, .42),
    2px 2px 0 rgba(0, 0, 0, .35);
}

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

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

.schedule-hero {
  min-height: 430px;
  margin-top: -34px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .04)),
    url("optimized/bbq-tater-bowl.jpg") center 45% / cover no-repeat;
  filter: saturate(1.1) contrast(1.05);
}

.schedule-section {
  display: grid;
  grid-template-columns: minmax(270px, .9fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 78px);
  padding: clamp(74px, 10vw, 132px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(rgba(245, 239, 224, .92), rgba(245, 239, 224, .92)),
    url("optimized/butter-potato.jpg") center / cover no-repeat;
}

.schedule-intro {
  position: sticky;
  top: 118px;
  align-self: start;
}

.schedule-intro h2,
.menu-title h2,
.about-section h2,
.site-footer h2 {
  color: var(--gold);
  font-size: clamp(5.5rem, 11vw, 11.5rem);
  text-shadow: 4px 4px 0 #fff, 6px 6px 0 rgba(0, 0, 0, .2);
}

.schedule-intro p,
.menu-title p,
.about-copy p,
.site-footer p {
  max-width: 650px;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  font-weight: 850;
  line-height: 1.48;
}

.schedule-intro strong {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-style: italic;
}

.schedule-intro a,
.schedule-row a {
  font-weight: 950;
  text-transform: uppercase;
}

.schedule-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 10px;
  padding: 13px 26px;
  color: #fff;
  background: var(--teal);
  text-decoration: none;
  text-shadow: var(--ink-shadow);
  transform: skew(-8deg);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, .32);
}

.schedule-list {
  background: rgba(255, 250, 240, .76);
  backdrop-filter: blur(6px);
  padding: clamp(18px, 3vw, 34px);
}

.schedule-widget-panel {
  max-height: min(1080px, calc(100vh + 230px));
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: var(--red) rgba(8, 8, 8, .18);
  scrollbar-width: thin;
}

.schedule-widget-panel::-webkit-scrollbar {
  width: 12px;
}

.schedule-widget-panel::-webkit-scrollbar-track {
  background: rgba(8, 8, 8, .12);
}

.schedule-widget-panel::-webkit-scrollbar-thumb {
  background: var(--red);
  border: 3px solid rgba(255, 250, 240, .88);
}

@media (hover: none) and (pointer: coarse) {
  .schedule-widget-panel {
    max-height: none;
    overflow-y: visible;
    overscroll-behavior: auto;
  }
}

.schedule-list h3 {
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  text-align: center;
}

.orderup-events-widget {
  border-top: 2px solid rgba(8, 8, 8, .55);
}

#orderUpWidget_eventsWrapper {
  color: var(--black);
  font-family: Arial, Helvetica, sans-serif;
}

#orderUpWidget_eventsWrapper a {
  color: var(--black);
  font-weight: 950;
  text-transform: uppercase;
}

#orderUpWidget_eventsWrapper select,
#orderUpWidget_eventsWrapper :is(.form-select, .select-wrapper, [class*="dropdown"], [class*="select"]) {
  display: none !important;
}

#orderUpWidget_eventsWrapper :is(.card, .event, .event-card, .event-row, .eventItem, .event-item, li) {
  border-radius: 0 !important;
  box-shadow: none !important;
}

#orderUpWidget_eventsWrapper :is(.card, .event-card, .event-row, .eventItem, .event-item, li) {
  padding: 22px 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-bottom: 2px solid rgba(8, 8, 8, .55) !important;
}

#orderUpWidget_eventsWrapper :is(h1, h2, h3, h4, .title, .event-title, [class*="title"], .orderup-event-title) {
  color: var(--black) !important;
  font-family: var(--display-font) !important;
  font-size: clamp(1.55rem, 2.3vw, 2.2rem) !important;
  line-height: .94 !important;
  text-transform: uppercase !important;
}

#orderUpWidget_eventsWrapper .orderup-month-title {
  color: var(--black) !important;
  font-family: var(--display-font) !important;
  font-size: clamp(2.8rem, 5vw, 4.6rem) !important;
  line-height: .9 !important;
  text-transform: uppercase !important;
}

#orderUpWidget_eventsWrapper :is(.date, .day, .event-date, [class*="date"], [class*="day"]) {
  color: var(--red) !important;
  font-family: var(--display-font) !important;
  text-transform: uppercase !important;
}

#orderUpWidget_eventsWrapper :is(button, .btn, [class*="button"]) {
  min-height: 44px;
  color: #fff !important;
  background: var(--teal-dark) !important;
  border: 0 !important;
  border-radius: 0 !important;
  font-weight: 950 !important;
  font-style: italic;
  text-transform: uppercase !important;
  transform: skew(-8deg);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, .22) !important;
}

.schedule-row {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 22px 0;
  border-top: 2px solid rgba(8, 8, 8, .55);
}

.schedule-row:last-child {
  border-bottom: 2px solid rgba(8, 8, 8, .55);
}

.day {
  font-family: var(--display-font);
  font-size: 3rem;
  text-transform: uppercase;
}

.schedule-row strong {
  display: block;
  font-size: 1.12rem;
}

.schedule-row time {
  font-weight: 950;
  white-space: nowrap;
}

.menu-section {
  padding: clamp(42px, 5vw, 70px) clamp(18px, 5vw, 72px) clamp(86px, 10vw, 132px);
  color: #fff;
  background: var(--black);
}

.menu-title {
  display: grid;
  grid-template-columns: minmax(250px, .55fr) minmax(520px, 1.45fr);
  gap: clamp(34px, 7vw, 110px);
  align-items: center;
  margin-bottom: 36px;
}

.menu-title p {
  max-width: 980px;
}

.menu-tabs {
  border-top: 3px solid #fff;
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 28px 0 0;
}

.tab-button {
  min-height: 58px;
  padding: 13px 28px;
  color: #fff;
  background: var(--teal-dark);
  border: 0;
  font: inherit;
  font-weight: 950;
  font-style: italic;
  text-transform: uppercase;
  transform: skew(-8deg);
  box-shadow: 6px 6px 0 rgba(255, 255, 255, .18);
  cursor: pointer;
}

.tab-button.is-active {
  color: var(--black);
  background: var(--gold);
}

.menu-panel {
  grid-template-columns: minmax(260px, .7fr) minmax(320px, 1fr);
  margin-top: 0;
  min-height: 520px;
  border-top: 3px solid #fff;
}

.menu-panel.is-active {
  display: grid;
}

.menu-panel[hidden] {
  display: none;
}

.panel-photo {
  min-height: 520px;
  background-position: center;
  background-size: cover;
  filter: grayscale(.9) contrast(1.18);
}

.food-truck-photo {
  background-image: url("optimized/ranch-loaded-bowl.jpg");
}

.restaurant-photo {
  background-image: url("optimized/signature-loaded.jpg");
}

.orderup-widget-shell {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: clamp(28px, 5vw, 64px);
  min-height: 520px;
  color: var(--black);
  text-align: center;
  background: var(--paper);
  cursor: pointer;
}

.orderup-widget-shell > div,
.orderup-map-widget > div,
.download-app-widget > div {
  width: 100%;
}

.orderup-map-widget {
  margin-bottom: 22px;
  height: 310px;
  overflow: hidden;
  border: 3px solid rgba(8, 8, 8, .68);
  background: #fff;
}

.orderup-map-widget #orderUpWidget_mapWrapper,
.orderup-map-widget #orderUpWidget_mapWrapper > div {
  width: 100% !important;
  height: 510px !important;
  min-height: 510px !important;
  transform: translateY(-100px);
}

.orderup-map-widget iframe {
  width: 100% !important;
  height: 510px !important;
  min-height: 510px !important;
}

.orderup-widget-shell strong {
  font-family: var(--display-font);
  font-size: clamp(3.3rem, 7vw, 7rem);
  line-height: .86;
  text-transform: uppercase;
}

.orderup-widget-shell span {
  font-weight: 950;
  text-transform: uppercase;
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--black);
}

.photo-strip img {
  width: 100%;
  height: clamp(250px, 31vw, 440px);
  object-fit: cover;
  border-top: 6px solid var(--black);
  border-right: 6px solid var(--black);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(300px, 1fr);
  gap: clamp(34px, 6vw, 90px);
  padding: clamp(86px, 10vw, 136px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(61, 166, 165, .94), rgba(61, 166, 165, .72)),
    url("optimized/loaded-closeup.jpg") center / cover no-repeat;
}

.about-section h2 {
  color: #fff;
  text-shadow: 5px 5px 0 var(--black);
}

.about-copy {
  padding-top: 18px;
}

.merch-section {
  padding: clamp(74px, 9vw, 118px) clamp(18px, 5vw, 72px);
  color: var(--black);
  background: var(--paper);
}

.merch-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: clamp(36px, 6vw, 70px);
  text-align: center;
}

.merch-title::before,
.merch-title::after {
  content: "";
  height: 3px;
  background: rgba(8, 8, 8, .26);
}

.merch-title h2 {
  color: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.9rem, 4vw, 3.3rem);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.merch-layout {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(300px, 1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  max-width: 1180px;
  margin-inline: auto;
}

.merch-photo img {
  width: min(560px, 100%);
  margin-inline: auto;
}

.merch-copy {
  display: grid;
  justify-items: center;
  text-align: center;
}

.merch-copy p {
  max-width: 640px;
  margin: 0 0 22px;
  font-size: clamp(1.08rem, 1.7vw, 1.38rem);
  line-height: 1.48;
}

.merch-copy strong {
  display: block;
  margin-bottom: 18px;
  color: var(--black);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 950;
}

.app-download-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr);
  gap: clamp(28px, 5vw, 54px);
  align-items: center;
  justify-items: center;
  padding: clamp(74px, 9vw, 118px) clamp(18px, 5vw, 72px);
  color: #fff;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, .96), rgba(8, 8, 8, .88)),
    url("optimized/bbq-tater-bowl.jpg") center / cover no-repeat;
}

.app-download-section h2 {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: var(--display-font);
  font-size: clamp(4.2rem, 8vw, 8rem);
  line-height: .84;
  text-transform: uppercase;
  text-shadow: 4px 4px 0 rgba(255, 255, 255, .16);
}

.app-download-section p {
  max-width: 620px;
  margin: 0;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  font-weight: 700;
  line-height: 1.48;
}

.site-footer {
  display: flex;
  justify-content: center;
  padding: clamp(76px, 9vw, 112px) clamp(18px, 5vw, 72px) clamp(46px, 7vw, 88px);
  color: #fff;
  text-align: center;
  background: var(--black);
}

.download-app-widget {
  display: grid;
  justify-items: center;
  width: 100%;
  min-height: 260px;
}

.download-app-widget > div,
#orderUpWidget_downloadAppWrapper {
  max-width: 1120px;
  margin-inline: auto;
}

#orderUpWidget_downloadAppWrapper > * {
  margin-inline: auto !important;
}

#orderUpWidget_downloadAppWrapper img {
  display: block !important;
  margin-inline: auto !important;
}

#orderUpWidget_downloadAppWrapper :has(> img) {
  display: grid !important;
  justify-items: center !important;
}

#orderUpWidget_downloadAppWrapper :is(a, button, .btn, [class*="button"], [class*="download"]) {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative;
  min-width: min(420px, 86vw);
  min-height: 64px !important;
  padding: 16px 34px !important;
  color: var(--black) !important;
  background: var(--gold) !important;
  border: 0 !important;
  border-radius: 0 !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-weight: 950 !important;
  font-style: italic !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  text-shadow: 2px 2px 0 rgba(255, 255, 255, .5) !important;
  transform: skew(-8deg);
  box-shadow: 8px 8px 0 var(--red), 14px 14px 0 rgba(0, 0, 0, .6) !important;
  overflow: visible;
}

#orderUpWidget_downloadAppWrapper :is(a, button, .btn, [class*="button"], [class*="download"])::before {
  content: "";
  position: absolute;
  inset: 8px auto 8px 12px;
  width: 8px;
  background: var(--teal);
  box-shadow: 16px 0 0 rgba(255, 255, 255, .6);
}

#orderUpWidget_downloadAppWrapper :is(a, button, .btn, [class*="button"], [class*="download"]) > * {
  transform: skew(8deg);
}

#orderUpWidget_downloadAppWrapper :is(a, button, .btn, [class*="button"], [class*="download"]) :is(svg, i, img, [class*="icon"]) {
  display: none !important;
}

#orderUpWidget_downloadAppWrapper :is(a, button, .btn, [class*="button"], [class*="download"]):hover {
  background: var(--teal) !important;
  box-shadow: 8px 8px 0 var(--red), 14px 14px 0 rgba(0, 0, 0, .6) !important;
  filter: none;
}

#cartButtonWrapper {
  opacity: 0 !important;
  pointer-events: none !important;
}

.footer-main {
  display: grid;
  justify-items: center;
  width: min(1100px, 100%);
}

.site-footer h2 {
  color: var(--gold);
  font-size: clamp(4.5rem, 8vw, 8.5rem);
  text-shadow: 4px 4px 0 rgba(255, 255, 255, .16);
}

.site-footer p {
  font-weight: 400;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 3px solid rgba(255, 255, 255, .86);
}

.social-links a {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--black);
  background: var(--gold);
  text-decoration: none;
  transform: skew(-8deg);
  box-shadow: 5px 5px 0 var(--red), 9px 9px 0 rgba(0, 0, 0, .55);
}

.social-links span,
.social-links svg {
  transform: skew(8deg);
}

.social-links span {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.65rem;
  font-weight: 950;
  line-height: 1;
}

.social-links svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
}

.social-links a:hover {
  background: var(--teal);
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}

.modal-is-open {
  overflow: hidden;
}

.site-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100000000;
  background: rgba(0, 0, 0, .74);
  backdrop-filter: blur(6px);
}

.site-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 100000001;
  width: min(940px, calc(100vw - 32px));
  max-height: min(86vh, 820px);
  display: grid;
  grid-template-columns: minmax(220px, .48fr) minmax(300px, 1fr);
  gap: clamp(20px, 4vw, 42px);
  overflow: auto;
  padding: clamp(28px, 4vw, 46px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8, 8, 8, .96), rgba(17, 105, 106, .92)),
    url("optimized/loaded-closeup.jpg") center / cover no-repeat;
  border: 5px solid var(--gold);
  box-shadow: 16px 16px 0 rgba(0, 0, 0, .55);
  transform: translate(-50%, -50%) rotate(-1deg);
}

.site-modal[hidden],
.site-modal-backdrop[hidden] {
  display: none;
}

.site-modal::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: -1;
  border: 3px solid var(--teal);
  pointer-events: none;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  min-height: 42px;
  padding: 8px 14px;
  color: #fff;
  background: var(--red);
  border: 0;
  font: inherit;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
  transform: skew(-8deg);
  box-shadow: 4px 4px 0 #000;
}

.modal-copy {
  align-self: center;
  padding-top: 28px;
}

.modal-copy p {
  margin: 0 0 10px;
  color: var(--gold);
  font-weight: 950;
  text-transform: uppercase;
}

.modal-copy h2 {
  color: var(--gold);
  max-width: 320px;
  font-size: clamp(3rem, 5.2vw, 4.9rem);
  text-shadow: 5px 5px 0 #000;
}

.modal-copy span {
  display: block;
  max-width: 300px;
  margin-top: 18px;
  font-weight: 700;
  line-height: 1.45;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: #fff;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-form span {
  font-size: .82rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  color: var(--black);
  background: var(--paper);
  border: 3px solid #fff;
  border-radius: 0;
  font: inherit;
  font-weight: 700;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 4px solid var(--teal);
  outline-offset: 2px;
}

.contact-form .angle-button {
  width: fit-content;
  cursor: pointer;
}

.form-wide,
.form-alert {
  grid-column: 1 / -1;
}

.form-alert {
  margin: 0;
  padding: 12px 14px;
  border: 3px solid #fff;
  font-weight: 900;
}

.form-alert.success {
  color: var(--black);
  background: var(--gold);
}

.form-alert.error {
  color: #fff;
  background: var(--red);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
}

.form-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  max-width: min(420px, calc(100vw - 48px));
  padding: 16px 54px 16px 18px;
  color: #fff;
  border: 4px solid #fff;
  font-weight: 950;
  box-shadow: 8px 8px 0 #000;
}

.toast-close {
  position: absolute;
  top: -14px;
  right: -14px;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--black);
  border: 3px solid #fff;
  border-radius: 50%;
  font: inherit;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, .35);
}

.toast-close:hover,
.toast-close:focus-visible {
  color: var(--black);
  background: var(--teal);
  outline: none;
}

.form-toast.success {
  color: var(--black);
  background: var(--gold);
}

.form-toast.error {
  background: var(--red);
}

.policy-page {
  color: #fff;
  background: var(--black);
}

.policy-hero {
  min-height: 520px;
  display: grid;
  place-items: end center;
  padding: 150px clamp(18px, 5vw, 72px) 88px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .86), rgba(0, 0, 0, .38), rgba(0, 0, 0, .9)),
    url("optimized/hero-loaded-potato.jpg") center / cover no-repeat;
}

.policy-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  filter: grayscale(1) contrast(1.14);
  transform: scale(1.03);
}

.policy-hero-copy {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  text-align: center;
}

.policy-hero-copy p {
  margin: 0 0 12px;
  color: var(--teal);
  font-weight: 950;
  text-transform: uppercase;
  text-shadow: var(--ink-shadow);
}

.policy-hero-copy h1 {
  color: var(--gold);
  font-size: clamp(4.4rem, 10vw, 11rem);
  text-shadow: 5px 5px 0 rgba(0, 0, 0, .78);
  white-space: normal;
}

.policy-hero-copy span {
  display: block;
  max-width: 820px;
  margin: 20px auto 0;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-weight: 850;
  line-height: 1.4;
  text-shadow: 2px 2px 0 #000;
}

.policy-section {
  padding: clamp(76px, 9vw, 128px) clamp(18px, 5vw, 72px);
  color: var(--black);
  background:
    linear-gradient(rgba(245, 239, 224, .95), rgba(245, 239, 224, .95)),
    url("optimized/butter-potato.jpg") center / cover no-repeat;
}

.policy-card {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 48px);
  background: rgba(255, 250, 240, .92);
  border-top: 6px solid var(--black);
  border-bottom: 6px solid var(--black);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, .18);
}

.policy-card h2 {
  margin: 34px 0 12px;
  color: var(--gold);
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: .88;
  text-shadow: 2px 2px 0 #fff, 4px 4px 0 rgba(0, 0, 0, .16);
}

.policy-card p,
.policy-card li {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.75;
}

.policy-card a {
  color: var(--teal-dark);
  font-weight: 950;
}

.policy-card ul {
  margin: 0 0 8px;
  padding-left: 24px;
}

.policy-meta {
  padding: 18px 22px;
  background: var(--gold);
  border-left: 8px solid var(--teal);
  box-shadow: 7px 7px 0 rgba(0, 0, 0, .18);
}

.policy-meta p {
  margin: 0;
  line-height: 1.55;
}

.policy-return {
  margin-top: 30px;
}

.policy-footer {
  padding-top: clamp(74px, 8vw, 110px);
}

.footer-legal {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
  color: #fff;
  font-size: .95rem;
  font-weight: 950;
  text-transform: uppercase;
  text-shadow: var(--ink-shadow);
}

.footer-legal a {
  color: #fff;
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--gold);
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 120px 1fr;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 14px;
    right: 14px;
    display: grid;
    justify-content: stretch;
    justify-items: stretch;
    gap: 0;
    width: auto;
    padding: 16px;
    background: rgba(0, 0, 0, .94);
    border: 4px solid var(--gold);
    box-shadow: 12px 12px 0 rgba(0, 0, 0, .58);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    display: block;
    width: 100%;
    padding: 15px 12px;
    border-bottom: 2px solid rgba(255, 255, 255, .22);
    font-size: 1.05rem;
    text-align: left;
    justify-self: stretch;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .nav-cluster {
    justify-content: flex-end;
  }

  .book-now {
    justify-self: end;
  }

  .hero-copy {
    width: min(700px, calc(100% - 28px));
    margin-inline: auto;
  }

  .schedule-section,
  .menu-title,
  .menu-panel.is-active,
  .app-download-section,
  .about-section,
  .merch-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .schedule-intro {
    position: relative;
    top: auto;
  }

  .site-footer {
    justify-items: start;
  }

  .contact-form {
    max-width: 760px;
  }

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

@media (min-width: 681px) and (max-width: 1040px) {
  .kogi-hero {
    min-height: 720px;
  }

  .hero-copy {
    align-self: start;
    width: min(860px, calc(100% - 64px));
    padding: 165px 0 82px;
  }

  .hero-copy h1 {
    font-size: clamp(4.9rem, 10.8vw, 8.4rem);
    line-height: .88;
    white-space: normal;
  }

  .hero-copy p {
    max-width: 760px;
    margin-top: 18px;
    margin-bottom: 24px;
    font-size: clamp(1.28rem, 2.6vw, 1.75rem);
    line-height: 1.34;
  }
}

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

  .logo-link img {
    width: 112px;
  }

  .book-now {
    min-height: 48px;
    padding: 12px 18px;
    font-size: .92rem;
  }

  .kogi-hero {
    min-height: 640px;
  }

  .hero-copy {
    align-self: start;
    padding: 118px 22px 58px;
    text-align: center;
    margin-inline: auto;
  }

  .hero-copy h1 {
    display: block;
    width: 100%;
    margin: 0 auto 14px;
    font-size: clamp(3.45rem, 14vw, 5.6rem);
    line-height: .9;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero-copy p {
    max-width: 360px;
    margin-top: 0;
    margin-inline: auto;
    margin-bottom: 16px;
    font-size: clamp(1.2rem, 4.9vw, 1.42rem);
    line-height: 1.26;
  }

  .hero-actions {
    justify-content: center;
  }

  .event-ribbon {
    margin-top: -34px;
  }

  .ribbon-track {
    animation-duration: 20s;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .schedule-hero {
    min-height: 250px;
  }

  .schedule-intro h2,
  .menu-title h2,
  .about-section h2 {
    font-size: clamp(4.6rem, 23vw, 7rem);
  }

  .merch-title {
    grid-template-columns: 1fr;
  }

  .merch-title::before,
  .merch-title::after {
    display: none;
  }

  .schedule-row {
    grid-template-columns: 64px 1fr;
  }

  .schedule-row time {
    grid-column: 2;
  }

  .day {
    font-size: 2.35rem;
  }

  .tab-list {
    display: grid;
  }

  .panel-photo {
    min-height: 260px;
  }

  .orderup-widget-shell {
    min-height: 370px;
  }

  #orderUpWidget_downloadAppWrapper img,
  #orderUpWidget_downloadAppWrapper :has(> img) {
    display: none !important;
  }

  .photo-strip {
    grid-template-columns: 1fr;
  }
}
