:root {
  --black: #161311;
  --ink: #201b17;
  --cream: #f3eadb;
  --paper: #fffaf1;
  --orange: #e85d24;
  --gold: #eebf62;
  --sage: #68745a;
  --line: rgba(32, 27, 23, .18)
}
* {
  box-sizing: border-box
}
html {
  scroll-behavior: smooth
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55
}
img {
  max-width: 100%
}
a {
  color: inherit
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: white;
  transform: translateY(-150%)
}
.skip-link:focus {
  transform: none
}
.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 64px);
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  transition: background .25s, backdrop-filter .25s
}
.site-header.scrolled {
  background: rgba(22, 19, 17, .93);
  backdrop-filter: blur(16px)
}
.brand {
  justify-self: start;
  display: block
}
.brand img {
  display: block;
  filter: brightness(0) invert(1) drop-shadow(0 3px 10px rgba(0, 0, 0, .7));
  width: 54px;
  height: auto
}
.site-header nav {
  display: flex;
  gap: clamp(18px, 3vw, 38px)
}
.site-header nav a, .reserve-link {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase
}
.reserve-link {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 999px;
  transition: background .18s, color .18s, border-color .18s
}
.reserve-link:hover {
  background: white;
  border-color: white;
  color: var(--black)
}
.link-icon {
  flex: 0 0 auto;
  width: 1.15em;
  height: 1.15em
}
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--black);
  color: white
}
.hero-photo, .hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%
}
.hero-photo {
  object-fit: cover;
  filter: grayscale(1);
  transform: scale(1.03)
}
.hero-shade {
  background: linear-gradient(180deg, rgba(0, 0, 0, .46), rgba(0, 0, 0, .2) 45%, rgba(0, 0, 0, .74))
}
.hero-copy {
  position: relative;
  z-index: 1;
  width: min(82vw, 760px);
  text-align: center
}
.kicker, .eyebrow {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase
}
.hero .kicker {
  color: var(--gold)
}
.hero-logo {
  width: min(100%, 620px);
  height: auto;
  filter: brightness(0) invert(1) drop-shadow(0 8px 28px rgba(0, 0, 0, .9))
}
.tagline {
  display: flex;
  justify-content: center;
  gap: 12px 28px;
  flex-wrap: wrap;
  margin: 18px 0 0;
  font-size: clamp(.95rem, 1.8vw, 1.3rem);
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase
}
.tagline span:nth-child(2) {
  color: var(--gold)
}
.section {
  scroll-margin-top: 96px;
  padding: clamp(80px, 10vw, 150px) clamp(20px, 7vw, 110px)
}
.section-label {
  display: flex;
  gap: 14px;
  color: #766f66;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .15em;
  white-space: nowrap;
  text-transform: uppercase
}
.section-label span:first-child {
  color: var(--orange)
}
.section-label.light {
  color: rgba(255, 255, 255, .6)
}
.section-heading {
  display: grid;
  grid-template-columns: minmax(120px, .35fr) minmax(0, 1.65fr);
  align-items: end;
  gap: clamp(32px, 5vw, 70px);
  margin-bottom: clamp(48px, 6vw, 70px)
}
.section-heading-main {
  max-width: 1000px
}
h1, h2, h3, blockquote {
  font-family: Georgia, "Times New Roman", serif;
  line-height: .98;
  margin: 0
}
h1, h2 {
  font-size: clamp(3rem, 6vw, 7rem);
  letter-spacing: -.055em
}
h1 em {
  color: var(--orange);
  font-style: italic
}
.welcome {
  position: relative;
  background: linear-gradient(135deg, #f3eadb 0%, #faf4e9 100%);
  overflow: hidden
}
.welcome-copy {
  max-width: 1100px;
  padding: 0
}
.welcome-copy h1 {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(3.5rem, 7vw, 7.5rem);
  line-height: .9;
  letter-spacing: -.065em
}
.welcome-copy .eyebrow {
  margin-bottom: 22px
}
.welcome-text {
  display: grid;
  grid-template-columns: minmax(120px, .35fr) minmax(0, .98fr) minmax(260px, .67fr);
  gap: clamp(36px, 7vw, 100px);
  padding-top: 34px;
  border-top: 1px solid var(--line)
}
.welcome-text p {
  margin: 0;
  color: #655d55
}
.welcome-text .large-copy {
  grid-column: 2;
  color: var(--ink);
  font-size: clamp(1.12rem, 1.65vw, 1.36rem);
  line-height: 1.65
}
.welcome-secondary {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px
}
.menu {
  background: var(--black);
  color: white
}
.menu-heading {
  margin-bottom: 60px
}
.menu-list {
  border-top: 1px solid rgba(255, 255, 255, .17)
}
.menu-note {
  margin: -18px 0 28px;
  color: rgba(255, 255, 255, .62);
  font-size: .95rem
}
.menu-card-link {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  margin: -4px 0 32px;
  padding: 13px 17px;
  border: 1px solid rgba(238, 191, 98, .42);
  color: white;
  text-decoration: none;
  transition: background .18s, border-color .18s
}
.menu-card-link:hover {
  background: rgba(238, 191, 98, .1);
  border-color: rgba(238, 191, 98, .7)
}
.menu-card-link span {
  color: var(--gold);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase
}
.menu-card-link strong {
  font-size: 1rem
}
.menu-day {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: start;
  gap: 30px;
  padding: 27px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .17)
}
.menu-day::after {
  content: "";
  position: absolute;
  inset: 5px -18px;
  z-index: 0;
  background: var(--orange);
  opacity: 0;
  transition: opacity .18s
}
.menu-day.today::after {
  opacity: 1
}
.menu-day>* {
  position: relative;
  z-index: 1
}
.date {
  display: flex;
  align-items: baseline;
  gap: 9px
}
.date span {
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase
}
.date strong {
  font: italic 1.5rem Georgia
}
.menu-day h3 {
  font-size: clamp(1.25rem, 2.2vw, 2rem)
}
.menu-day p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, .58)
}
.price {
  display: block;
  margin-top: 5px;
  font-size: 1.05rem
}
.double {
  grid-template-columns: 120px 1fr 1fr
}
.second-dish {
  padding-left: 35px;
  border-left: 1px solid rgba(255, 255, 255, .25)
}
.specials-intro {
  margin-bottom: 55px
}
.special-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px
}
.special-card {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden
}
.special-card.accent {
  background: var(--orange);
  color: white
}
.special-card.dark {
  background: var(--sage);
  color: white
}
.day-number {
  position: absolute;
  right: -10px;
  top: -37px;
  color: rgba(232, 93, 36, .13);
  font: italic 13rem Georgia;
  line-height: 1
}
.accent .day-number, .dark .day-number {
  color: rgba(255, 255, 255, .14)
}
.weekday {
  position: relative;
  margin: 0 0 auto;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase
}
.special-card h3 {
  position: relative;
  margin: 90px 0 20px;
  font-size: 2rem
}
.special-card>strong {
  margin-top: auto;
  font-size: 1.4rem
}
.special-card small {
  margin-top: 12px;
  opacity: .63
}
.special-card ul {
  margin: 0;
  padding: 0;
  list-style: none
}
.special-card li {
  padding: 10px 0;
  border-bottom: 1px solid currentColor
}
.special-card li strong {
  float: right
}
.drink-break {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 760px;
  background: var(--orange);
  color: white
}
.drink-break figure {
  margin: 0;
  overflow: hidden
}
.drink-break img {
  width: 100%;
  height: 100%;
  object-fit: cover
}
.drink-break>div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(45px, 8vw, 120px)
}
.drink-break .eyebrow {
  color: var(--black)
}
blockquote {
  margin: 15px 0 45px;
  font-size: clamp(3rem, 5.5vw, 6.2rem);
  letter-spacing: -.05em
}
.outline-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 19px;
  border: 1px solid white;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .18s, color .18s
}
.outline-button:hover {
  background: white;
  color: var(--orange)
}
.contact {
  background: var(--black);
  color: white
}
.contact-title {
  margin-bottom: 65px
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr .8fr 1.2fr;
  gap: 45px;
  padding: 50px 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
  border-bottom: 1px solid rgba(255, 255, 255, .18)
}
.contact-grid p {
  color: rgba(255, 255, 255, .66)
}
.contact-grid a {
  display: block;
  margin-top: 10px;
  text-underline-offset: 4px
}
.contact-action {
  display: inline-flex!important;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  text-decoration: none;
  transition: background .18s, color .18s, border-color .18s
}
.contact-action:hover {
  background: white;
  border-color: white;
  color: var(--black)
}
.contact-action .link-icon {
  width: 18px;
  height: 18px;
  color: var(--orange)
}
.big-link {
  font: italic clamp(1.8rem, 3vw, 3.3rem) Georgia;
  text-decoration: none
}
.icon-link {
  display: inline-flex!important;
  align-items: center;
  gap: 14px
}
.icon-link .link-icon {
  width: .78em;
  height: .78em;
  color: var(--orange)
}
.hours dl {
  margin: 0
}
.hours dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14)
}
.hours dd {
  margin: 0;
  color: rgba(255, 255, 255, .65)
}
.social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 35px;
  font-weight: 800
}
.social a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  text-decoration: none;
  transition: background .18s, color .18s, border-color .18s
}
.social a:hover {
  background: white;
  border-color: white;
  color: var(--black)
}
.social .link-icon {
  width: 19px;
  height: 19px;
  color: var(--orange)
}
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 28px clamp(20px, 7vw, 110px);
  background: var(--cream)
}
footer img {
  filter: brightness(0)
}
footer p {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase
}
footer nav {
  display: flex;
  gap: 20px;
  font-size: .75rem
}
.legal {
  max-width: 900px;
  margin: auto;
  padding: 130px 25px 80px
}
.legal h1 {
  margin-bottom: 45px
}
.legal h2 {
  margin: 42px 0 16px;
  font-size: 2rem;
  letter-spacing: -.03em
}
.legal a {
  text-underline-offset: 4px
}
@media(max-width:760px) {
  .legal {
    padding: 118px 24px 58px
  }
  .legal h1 {
    margin-bottom: 34px;
    font-size: clamp(2.65rem, 14vw, 3.25rem);
    line-height: 1;
    letter-spacing: -.04em
  }
  .legal h2 {
    margin: 30px 0 10px;
    font-size: clamp(1.32rem, 6.2vw, 1.55rem);
    line-height: 1.16;
    letter-spacing: -.02em
  }
  .legal p {
    margin: 0 0 18px;
    font-size: 1rem;
    line-height: 1.55
  }
  .legal a {
    overflow-wrap: anywhere
  }
}
@media(max-width:360px) {
  .legal {
    padding-left: 20px;
    padding-right: 20px
  }
  .legal h1 {
    font-size: 2.45rem
  }
  .legal h2 {
    font-size: 1.28rem
  }
}
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px
}
@media(max-width:1100px) {
  .section-heading {
    grid-template-columns: 1fr
  }
}
@media(max-width:1000px) {
  .special-grid {
    grid-template-columns: 1fr 1fr
  }
  .special-card {
    min-height: 380px
  }
}
@media(max-width:760px) {
  .section {
    scroll-margin-top: 126px
  }
  .site-header {
    grid-template-columns: 1fr auto
  }
  .site-header nav {
    display: none
  }
  .hero-logo {
    width: 85vw
  }
  .welcome {
    padding-left: 20px;
    padding-right: 20px
  }
  .section-heading {
    gap: 20px;
    margin-bottom: 38px
  }
  .welcome-copy h1 {
    font-size: clamp(3rem, 14vw, 4.8rem);
    line-height: .92;
    letter-spacing: -.06em
  }
  .welcome-text {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 26px
  }
  .welcome-text .large-copy {
    grid-column: auto
  }
  .menu-day, .menu-day.double {
    grid-template-columns: 70px 1fr
  }
  .second-dish {
    grid-column: 2;
    padding: 20px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .25)
  }
  .special-grid {
    grid-template-columns: 1fr
  }
  .special-card {
    min-height: 350px
  }
  .drink-break {
    grid-template-columns: 1fr;
    min-height: 0
  }
  .drink-break figure {
    max-height: 580px
  }
  .contact-grid {
    grid-template-columns: 1fr
  }
  .contact-grid {
    gap: 25px
  }
  footer {
    align-items: flex-start;
    flex-direction: column
  }
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto
  }
  * {
    transition: none!important
  }
}

.menu-message {
  margin: 0;
  padding: 27px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .17);
  color: rgba(255, 255, 255, .58)
}

.site-header nav {
  justify-self: center
}
.site-header nav a, .reserve-link {
  white-space: nowrap
}
@media(max-width:1080px) and (min-width:761px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    column-gap: clamp(18px, 3vw, 28px)
  }
  .site-header nav {
    justify-self: center;
    gap: clamp(14px, 2vw, 22px)
  }
  .site-header nav a {
    font-size: .72rem;
    letter-spacing: .06em
  }
  .reserve-link {
    padding: 9px 13px
  }
}
@media(max-width:760px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    row-gap: 10px;
    padding-top: 12px;
    padding-bottom: 12px
  }
  .site-header nav {
    grid-column: 1/-1;
    justify-self: stretch;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    overflow-x: auto;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, .18);
    scrollbar-width: none
  }
  .site-header nav::-webkit-scrollbar {
    display: none
  }
  .site-header nav a {
    font-size: .68rem;
    letter-spacing: .06em
  }
  .reserve-link {
    padding: 9px 12px
  }
}

@media(max-width:760px) {
  .brand {
    grid-column: 1;
    grid-row: 1
  }
  .reserve-link {
    grid-column: 2;
    grid-row: 1
  }
  .site-header nav {
    grid-row: 2
  }
}

@media(max-width:760px) {
  .brand img {
    width: 42px
  }
}
@media(max-width:360px) {
  .site-header nav {
    gap: 10px
  }
  .site-header nav a {
    font-size: .62rem
  }
}

html, body {
  max-width: 100%;
  overflow-x: hidden
}
.menu-day>* {
  min-width: 0
}
.menu-day h3 {
  overflow-wrap: anywhere
}

.hero-announcement {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 22px;
  padding: 11px 16px;
  border: 1px solid rgba(238, 191, 98, .55);
  background: rgba(22, 19, 17, .5);
  color: white;
  text-decoration: none;
  backdrop-filter: blur(10px)
}
.hero-announcement span {
  color: var(--gold);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase
}
.hero-announcement strong {
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .04em
}
.hero-announcement[hidden] {
  display: none
}

.menu-page {
  min-height: 100svh;
  background:
    linear-gradient(135deg, rgba(22, 19, 17, .94), rgba(48, 36, 29, .9)),
    url("assets/interior.jpg") center/cover fixed;
  color: white
}
.card-viewer {
  padding-top: clamp(130px, 14vw, 190px)
}
.card-heading {
  margin-bottom: 32px
}
.card-heading h1 {
  max-width: 960px;
  font-size: clamp(3rem, 6.4vw, 7rem);
  line-height: .9;
  overflow-wrap: anywhere
}
.card-heading h1 span {
  display: block
}
.section-heading-main h2 span {
  display: block
}
.card-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 22px
}
.card-toolbar p {
  min-width: 74px;
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-weight: 800;
  text-align: center
}
.icon-button, .card-nav {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  background: rgba(22, 19, 17, .6);
  color: white;
  cursor: pointer;
  transition: background .18s, color .18s, opacity .18s
}
.icon-button:hover, .card-nav:hover {
  background: white;
  color: var(--black)
}
.icon-button:disabled, .card-nav:disabled {
  cursor: default;
  opacity: .34
}
.icon-button svg, .card-nav svg {
  width: 22px;
  height: 22px
}
.card-download {
  margin-left: 8px;
  background: rgba(22, 19, 17, .46);
  backdrop-filter: blur(10px)
}
.card-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(74svh, 980px);
  padding: clamp(16px, 3vw, 34px) clamp(58px, 8vw, 92px);
  border: 1px solid rgba(238, 191, 98, .22);
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, .12), transparent 55%),
    rgba(10, 8, 7, .54);
  perspective: 1800px
}
.card-sheet {
  width: min(100%, 520px);
  margin: 0;
  background: #fff;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .42);
  transform-origin: left center
}
.card-sheet.turning {
  animation: pageTurn .26s ease-out
}
.card-sheet img {
  display: block;
  width: 100%;
  height: auto
}
.card-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%)
}
.card-nav-prev {
  left: clamp(12px, 2.3vw, 30px)
}
.card-nav-next {
  right: clamp(12px, 2.3vw, 30px)
}
.card-thumbs {
  display: flex;
  gap: 9px;
  margin-top: 18px;
  padding-bottom: 8px;
  overflow-x: auto
}
.card-thumbs button {
  position: relative;
  flex: 0 0 58px;
  height: 82px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .08);
  color: white;
  cursor: pointer
}
.card-thumbs button.active {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(238, 191, 98, .26)
}
.card-thumbs img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover
}
.card-thumbs span {
  position: absolute;
  right: 4px;
  bottom: 3px;
  min-width: 20px;
  padding: 2px 4px;
  background: rgba(22, 19, 17, .78);
  font-size: .7rem;
  font-weight: 800
}
@keyframes pageTurn {
  from {
    opacity: .72;
    transform: rotateY(-7deg) translateX(-8px)
  }
  to {
    opacity: 1;
    transform: none
  }
}

.sports {
  background:
    radial-gradient(circle at 88% 12%, rgba(53, 82, 139, .46), transparent 34%),
    linear-gradient(135deg, #151923 0%, #22385f 42%, #6f2425 100%);
  color: white
}
.sports-intro {
  margin-bottom: 55px
}
.sports-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px
}
.sports-info, .sports-announcements {
  padding: 34px;
  border: 1px solid rgba(238, 191, 98, .2);
  background: rgba(13, 18, 30, .48)
}
.sports-info h3, .sports-announcements h3 {
  margin-bottom: 24px;
  font-size: clamp(1.9rem, 3vw, 3rem)
}
.sports-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px
}
.sports-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .06);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase
}
.sports-info p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .72)
}
.sports-note {
  font-size: .9rem
}
.sports-event-list {
  display: grid;
  gap: 12px
}
.sports-event {
  padding: 22px;
  border: 1px solid rgba(238, 191, 98, .26);
  background:
    linear-gradient(135deg, rgba(18, 29, 52, .86), rgba(92, 32, 37, .54));
  color: white
}
.sports-event.highlight {
  border-color: rgba(238, 191, 98, .62);
  background:
    radial-gradient(circle at 88% 16%, rgba(238, 191, 98, .18), transparent 32%),
    linear-gradient(135deg, rgba(24, 39, 70, .92), rgba(111, 36, 37, .7));
  box-shadow: inset 0 0 0 1px rgba(238, 191, 98, .14)
}
.sports-event-meta {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase
}
.sports-event.highlight .sports-event-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px
}
.sports-event.highlight .sports-event-meta::after {
  content: "Live-Tipp";
  padding: 4px 7px;
  border: 1px solid rgba(238, 191, 98, .5);
  color: white;
  font-size: .62rem;
  letter-spacing: .07em
}
.sports-event h4 {
  font: italic 1.65rem Georgia;
  margin: 0
}
.sports-event p:last-child {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .68)
}
.sports-empty {
  margin: 0;
  padding: 22px;
  border: 1px dashed rgba(255, 255, 255, .28);
  color: rgba(255, 255, 255, .68)
}
@media(max-width:1000px) {
  .sports-intro {
    grid-template-columns: 1fr
  }
  .sports-grid {
    grid-template-columns: 1fr 1fr
  }
}
@media(max-width:760px) {
  .sports-grid {
    grid-template-columns: 1fr
  }
  .sports-info, .sports-announcements {
    padding: 24px
  }
}

.special-card {
  display: flex;
  flex-direction: column
}
.special-card .weekday {
  margin: 0
}
.special-card h3 {
  min-height: 160px;
  margin: 0 0 20px;
  padding-top: 90px
}
.special-card>p:not(.weekday), .special-card ul {
  margin-top: 0
}
@media(max-width:1240px) {
  .special-grid {
    grid-template-columns: 1fr 1fr
  }
  .special-card {
    min-height: 390px
  }
}
@media(max-width:760px) {
  .special-card {
    min-height: 350px
  }
  .special-card h3 {
    min-height: 124px;
    padding-top: 66px
  }
}

@media(max-width:760px) {
  .site-header nav {
    justify-content: space-between;
    flex-wrap: nowrap;
    overflow-x: visible;
    gap: 6px
  }
  .site-header nav a {
    font-size: .6rem;
    letter-spacing: .04em
  }
  .special-grid {
    grid-template-columns: 1fr
  }
  .special-card {
    min-height: 0;
    padding: 24px
  }
  .special-card h3 {
    min-height: 0;
    margin: 0 0 18px;
    padding-top: 58px
  }
  .special-card>strong {
    margin-top: 20px
  }
  .day-number {
    right: -6px;
    top: -28px;
    font-size: 10rem
  }
}
@media(max-width:360px) {
  .site-header nav {
    gap: 5px
  }
  .site-header nav a {
    font-size: .56rem;
    letter-spacing: .03em
  }
  .special-card {
    padding: 22px
  }
}

@media(max-width:760px) {
  .welcome-copy h1 {
    max-width: 10.8ch;
    margin-bottom: 0;
    font-size: 3rem;
    line-height: 1.04;
    letter-spacing: 0
  }
  .welcome-copy h1 em {
    display: inline-block;
    margin-top: 4px
  }
  .welcome-text {
    padding-top: 22px
  }
}
@media(max-width:390px) {
  .welcome-copy h1 {
    font-size: 2.85rem
  }
}
@media(max-width:360px) {
  .welcome-copy h1 {
    font-size: 2.65rem
  }
}

@media(max-width:760px) {
  .site-header nav {
    justify-content: flex-start;
    overflow-x: auto;
    gap: 14px
  }
  .card-viewer {
    padding-left: 16px;
    padding-right: 16px
  }
  .card-heading h1 {
    font-size: 2.45rem;
    line-height: 1;
    letter-spacing: 0
  }
  .card-toolbar {
    flex-wrap: wrap
  }
  .card-download {
    width: 100%;
    justify-content: center;
    margin-left: 0
  }
  .card-stage {
    min-height: auto;
    padding: 14px 52px
  }
  .card-sheet {
    width: min(100%, 390px)
  }
  .card-nav {
    width: 38px;
    height: 38px
  }
  .card-thumbs button {
    flex-basis: 50px;
    height: 72px
  }
}
