body.page--reservation {
  --reservation-dark: #0A1B12;
  --reservation-deep: #05120B;
  --reservation-cream: #F5ECDE;
  --reservation-muted: #DBDBDB;
  --reservation-accent: #EBB667;
  --reservation-border: rgba(209, 155, 73, .4);
  background: var(--reservation-dark);
  color: var(--reservation-cream);
}

body.page--reservation .header__nav-link[href*="/reservation"],
body.page--reservation .footer__nav-link[href*="/reservation"] {
  color: var(--reservation-accent);
}

body.page--reservation .header__nav-link {
  white-space: nowrap;
}

@media (min-width: 1200px) {
  body.page--reservation .footer > .container,
  body.page--reservation .footer__bottom .container {
    width: min(1440px, calc(100% - 160px));
    max-width: none;
    padding-inline: 0;
  }
}

@media (min-width: 1600px) {
  body.page--reservation .footer > .container,
  body.page--reservation .footer__bottom .container {
    width: min(1440px, calc(100% - 288px));
  }
}

body.page--reservation .reservation-main {
  position: relative;
  overflow: hidden;
  background: var(--reservation-dark);
}

body.page--reservation .reservation-shell {
  position: relative;
  width: min(1440px, calc(100% - 288px));
  height: 100%;
  margin-inline: auto;
}

body.page--reservation .reservation-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--reservation-accent);
  font-family: var(--font-text);
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

body.page--reservation .reservation-kicker i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: .95;
}

body.page--reservation .reservation-kicker--single {
  margin-bottom: 12px;
}

body.page--reservation .reservation-divider {
  width: 276px;
  height: 4px;
  object-fit: contain;
}

/* Hero */
body.page--reservation .reservation-hero {
  position: relative;
  min-height: 1213px;
  overflow: hidden;
  isolation: isolate;
}

body.page--reservation .reservation-hero::before {
  content: '';
  position: absolute;
  inset: -30px 0 auto 0;
  height: 1243px;
  background:
    linear-gradient(270deg, rgba(0, 0, 0, .4) 0%, rgba(0, 0, 0, 0) 52.2%),
    linear-gradient(90deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)),
    url('../../images/reservation.png') center top / cover no-repeat;
  transform: scaleX(-1);
  z-index: -2;
}

body.page--reservation .reservation-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 11, 7, .94) 0%, rgba(3, 11, 7, .68) 30%, rgba(3, 11, 7, .18) 64%, rgba(3, 11, 7, .55) 100%),
    linear-gradient(180deg, rgba(3, 11, 7, 0) 60%, var(--reservation-dark) 100%);
  z-index: -1;
}

body.page--reservation .reservation-hero__shell {
  position: relative;
  min-height: inherit;
}

body.page--reservation .reservation-hero__copy {
  position: absolute;
  top: 262px;
  left: 0;
  width: 688px;
}

body.page--reservation .reservation-hero__title {
  max-width: 688px;
  margin: 12px 0 18px;
  color: var(--reservation-cream);
  font-family: var(--font-title);
  font-size: 74px;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: .74px;
  text-shadow: 0 0 12.35px rgba(0, 0, 0, .6);
}

body.page--reservation .reservation-hero__title mark {
  display: block;
  color: var(--reservation-accent);
  background: transparent;
}

body.page--reservation .reservation-hero__text {
  width: 585px;
  margin-top: 18px;
  color: var(--reservation-muted);
  font-family: var(--font-text);
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
}

/* Booking widget host */
body.page--reservation .restocraft-booking-host {
  position: absolute;
  top: 160px;
  right: 55px;
  width: min(438px, 100%);
  max-width: 100%;
  transform: none;
}

/* Hero preview */
body.page--reservation .reservation-preview {
  position: absolute;
  top: 707px;
  left: 0;
  width: 681px;
}

body.page--reservation .reservation-preview__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
}

body.page--reservation .reservation-preview h2 {
  color: var(--reservation-cream);
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 500;
  line-height: normal;
}

body.page--reservation .reservation-preview__controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

body.page--reservation .reservation-preview__controls button {
  display: flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  color: var(--reservation-cream);
  transition: color .25s ease, transform .25s ease;
}

body.page--reservation .reservation-preview__controls button:hover {
  color: var(--reservation-accent);
  transform: translateY(-1px);
}

body.page--reservation .reservation-preview__list {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  overflow: hidden;
  scroll-behavior: smooth;
}

body.page--reservation .reservation-preview figure {
  flex: 0 0 217px;
  width: 217px;
  height: 173px;
  overflow: hidden;
  border: 1px solid var(--reservation-border);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0);
}

body.page--reservation .reservation-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.98);
  transition: transform .5s ease;
}

body.page--reservation .reservation-preview figure:hover img {
  transform: scale(1.06);
}

/* Beer ritual */
body.page--reservation .reservation-beer {
  position: relative;
  height: 1312px;
  margin-top: 180px;
  overflow: hidden;
  background: var(--reservation-dark);
}

body.page--reservation .reservation-beer::before {
  content: '';
  position: absolute;
  top: 21px;
  right: 0;
  width: 1061px;
  height: 913px;
  background: url('../../images/branch-green.png') top right / 730px 731px no-repeat;
  opacity: .14;
  pointer-events: none;
}

body.page--reservation .reservation-beer__shell {
  position: relative;
}

body.page--reservation .reservation-beer__video-card {
  position: absolute;
  top: 119px;
  left: 12px;
  width: 635px;
  height: 854px;
  overflow: hidden;
  border-radius: 6px;
  background: #07130d;
  box-shadow: 0 4px 6px rgba(0, 0, 0, .06);
}

body.page--reservation .reservation-beer__video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
}

body.page--reservation .reservation-beer__video-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.12));
  pointer-events: none;
}

body.page--reservation .reservation-beer__border {
  position: absolute;
  top: 682px;
  left: 0;
  width: 263px;
  height: 303px;
  object-fit: contain;
}

body.page--reservation .reservation-beer__signature {
  position: absolute;
  top: 1029px;
  left: 220px;
  width: 470px;
  height: 201px;
  object-fit: contain;
}

body.page--reservation .reservation-beer__bartenders {
  position: absolute;
  top: 825px;
  left: 735px;
  width: 479px;
  height: 322px;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, .06);
}

body.page--reservation .reservation-beer__bartenders img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  filter: brightness(.9);
}

body.page--reservation .reservation-beer__content {
  position: absolute;
  top: 119px;
  left: 730px;
  width: 688px;
}

body.page--reservation .reservation-beer__title {
  margin-bottom: 12px;
  color: var(--reservation-cream);
  font-family: var(--font-title);
  font-size: 74px;
  font-weight: 500;
  line-height: .98;
  letter-spacing: .74px;
  text-shadow: 0 0 12.35px rgba(0,0,0,.6);
}

body.page--reservation .reservation-beer__text {
  width: 585px;
  margin-bottom: 38px;
  color: var(--reservation-muted);
  font-family: var(--font-text);
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
}

body.page--reservation .reservation-facts {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 38px;
}

body.page--reservation .reservation-facts li {
  display: flex;
  align-items: center;
  gap: 16px;
}

body.page--reservation .reservation-facts__icon {
  display: flex;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
}

body.page--reservation .reservation-facts__icon img {
  max-width: 36px;
  max-height: 36px;
  object-fit: contain;
}

body.page--reservation .reservation-facts span span,
body.page--reservation .reservation-facts li > span:last-child {
  display: flex;
  flex-direction: column;
}

body.page--reservation .reservation-facts strong {
  color: var(--reservation-cream);
  font-family: var(--font-text);
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
}

body.page--reservation .reservation-facts small {
  color: var(--reservation-muted);
  font-family: var(--font-text);
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
}

/* Next steps */
body.page--reservation .reservation-next {
  position: relative;
  height: 1000px;
  margin-top: 197px;
  overflow: hidden;
  background: var(--reservation-cream);
  color: var(--reservation-dark);
}

body.page--reservation .reservation-next::after {
  content: '';
  position: absolute;
  top: -247px;
  right: 0;
  width: 376px;
  height: 612px;
  background: url('../../images/branch-decor.png') top right / cover no-repeat;
  opacity: .45;
}

body.page--reservation .reservation-next__header {
  position: absolute;
  top: 127px;
  left: 50%;
  width: 688px;
  transform: translateX(-50%);
  text-align: center;
}

body.page--reservation .reservation-next__header h2 {
  color: var(--reservation-dark);
  font-family: var(--font-title);
  font-size: 74px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: .74px;
  white-space: nowrap;
}

body.page--reservation .reservation-next__header p {
  color: var(--reservation-dark);
  font-family: var(--font-text);
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
  white-space: nowrap;
}

body.page--reservation .reservation-next__cards {
  position: absolute;
  top: 295px;
  left: 50%;
  display: flex;
  gap: 24px;
  transform: translateX(-50%);
}

body.page--reservation .reservation-nav-card {
  flex: 0 0 464px;
  width: 464px;
  overflow: hidden;
  border: 1px solid #e2c08e;
  border-radius: 6px;
  background: var(--reservation-cream);
  box-shadow: 0 4px 6px rgba(0,0,0,.06);
}

body.page--reservation .reservation-nav-card a {
  display: flex;
  flex-direction: column;
  min-height: 591px;
}

body.page--reservation .reservation-nav-card figure {
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 6px 6px 0 0;
}

body.page--reservation .reservation-nav-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease, filter .35s ease;
}

body.page--reservation .reservation-nav-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.03);
}

body.page--reservation .reservation-nav-card__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 24px 24px;
  text-align: center;
}

body.page--reservation .reservation-nav-card h3 {
  color: var(--reservation-dark);
  font-family: var(--font-title);
  font-size: 38px;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

body.page--reservation .reservation-nav-card p {
  width: 397px;
  min-height: 66px;
  color: var(--reservation-dark);
  font-family: var(--font-text);
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
}

body.page--reservation .reservation-nav-card span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-bottom: 1px solid var(--reservation-accent);
  color: var(--reservation-dark);
  font-family: var(--font-text);
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
}

body.page--reservation .reservation-nav-card b {
  font-weight: 400;
  transition: transform .25s ease;
}

body.page--reservation .reservation-nav-card:hover b {
  transform: translateX(5px);
}

body.page--reservation .footer {
  margin-top: 176px;
}

/* Responsive */
@media (max-width: 1599px) {
  body.page--reservation .reservation-shell {
    width: min(1280px, calc(100% - 160px));
  }

  body.page--reservation .reservation-hero__copy {
    width: 590px;
  }

  body.page--reservation .reservation-hero__title,
  body.page--reservation .reservation-beer__title,
  body.page--reservation .reservation-next__header h2 {
    font-size: 64px;
  }

  body.page--reservation .reservation-hero__text,
  body.page--reservation .reservation-beer__text,
  body.page--reservation .reservation-next__header p {
    font-size: 20px;
  }

  body.page--reservation .restocraft-booking-host {
    right: 0;
  }

  body.page--reservation .reservation-preview {
    width: 620px;
  }

  body.page--reservation .reservation-preview figure {
    flex-basis: 196px;
    width: 196px;
  }

  body.page--reservation .reservation-beer__video-card {
    width: 540px;
  }

  body.page--reservation .reservation-beer__content {
    left: 610px;
    width: 600px;
  }

  body.page--reservation .reservation-beer__bartenders {
    left: 610px;
  }

  body.page--reservation .reservation-next__cards {
    gap: 18px;
  }

  body.page--reservation .reservation-nav-card {
    flex-basis: 31vw;
    width: 31vw;
  }

  body.page--reservation .reservation-nav-card p {
    width: auto;
    font-size: 20px;
  }
}

@media (max-width: 1199px) {
  body.page--reservation .reservation-shell {
    width: min(960px, calc(100% - 60px));
  }

  body.page--reservation .reservation-hero {
    min-height: 1120px;
  }

  body.page--reservation .reservation-hero__copy {
    top: 180px;
    width: 500px;
  }

  body.page--reservation .reservation-hero__title,
  body.page--reservation .reservation-beer__title,
  body.page--reservation .reservation-next__header h2 {
    font-size: 52px;
  }

  body.page--reservation .reservation-hero__text,
  body.page--reservation .reservation-beer__text {
    width: 480px;
    font-size: 18px;
  }

  body.page--reservation .restocraft-booking-host {
    width: min(390px, 100%);
  }

  body.page--reservation .reservation-preview {
    top: 720px;
    width: 520px;
  }

  body.page--reservation .reservation-preview figure {
    flex-basis: 164px;
    width: 164px;
    height: 135px;
  }

  body.page--reservation .reservation-beer {
    height: auto;
    padding: 90px 0 120px;
  }

  body.page--reservation .reservation-beer__shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  body.page--reservation .reservation-beer__video-card,
  body.page--reservation .reservation-beer__content,
  body.page--reservation .reservation-beer__bartenders,
  body.page--reservation .reservation-beer__signature,
  body.page--reservation .reservation-beer__border {
    position: relative;
    top: auto;
    left: auto;
  }

  body.page--reservation .reservation-beer__video-card {
    width: 100%;
    height: 660px;
  }

  body.page--reservation .reservation-beer__content {
    width: 100%;
    align-self: start;
  }

  body.page--reservation .reservation-beer__text {
    width: 100%;
  }

  body.page--reservation .reservation-beer__bartenders {
    grid-column: 2;
    width: 100%;
    height: 260px;
  }

  body.page--reservation .reservation-beer__signature {
    grid-column: 1;
    width: 320px;
    height: auto;
    margin-inline: auto;
  }

  body.page--reservation .reservation-beer__border {
    display: none;
  }

  body.page--reservation .reservation-next {
    height: auto;
    padding: 90px 0 110px;
  }

  body.page--reservation .reservation-next__header,
  body.page--reservation .reservation-next__cards {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
  }

  body.page--reservation .reservation-next__header {
    width: 100%;
    margin: 0 auto 50px;
  }

  body.page--reservation .reservation-next__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  body.page--reservation .reservation-nav-card {
    width: auto;
    flex-basis: auto;
  }

  body.page--reservation .reservation-nav-card a {
    min-height: 0;
  }

  body.page--reservation .reservation-nav-card figure {
    height: 260px;
  }

  body.page--reservation .reservation-nav-card h3 {
    font-size: 30px;
  }

  body.page--reservation .reservation-nav-card p,
  body.page--reservation .reservation-nav-card span {
    font-size: 16px;
  }
}

@media (max-width: 1023px) {
  body.page--reservation .reservation-hero {
    min-height: auto;
    padding: 150px 0 90px;
  }

  body.page--reservation .reservation-hero::before {
    height: 100%;
  }

  body.page--reservation .reservation-hero__shell {
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 42px;
  }

  body.page--reservation .reservation-hero__copy,
  body.page--reservation .restocraft-booking-host,
  body.page--reservation .reservation-preview {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    transform: none;
  }

  body.page--reservation .restocraft-booking-host {
    max-width: 438px;
    margin-inline: auto;
  }

  body.page--reservation .reservation-preview {
    max-width: 681px;
    margin-inline: auto;
  }

  body.page--reservation .reservation-preview__list {
    overflow-x: auto;
    padding-bottom: 10px;
  }

  body.page--reservation .reservation-beer,
  body.page--reservation .reservation-next,
  body.page--reservation .footer {
    margin-top: 0;
  }

  body.page--reservation .reservation-beer__shell {
    grid-template-columns: 1fr;
  }

  body.page--reservation .reservation-beer__bartenders,
  body.page--reservation .reservation-beer__signature {
    grid-column: auto;
  }

  body.page--reservation .reservation-beer__video-card {
    height: 560px;
  }

  body.page--reservation .reservation-next__cards {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }

  body.page--reservation .reservation-nav-card figure {
    height: 310px;
  }
}

@media (max-width: 767px) {
  body.page--reservation .reservation-shell {
    width: calc(100% - 30px);
  }

  body.page--reservation .reservation-kicker {
    font-size: 12px;
    letter-spacing: .72px;
  }

  body.page--reservation .reservation-hero {
    padding-top: 112px;
  }

  body.page--reservation .reservation-hero__title,
  body.page--reservation .reservation-beer__title,
  body.page--reservation .reservation-next__header h2 {
    font-size: 40px;
    line-height: 1.05;
    white-space: normal;
  }

  body.page--reservation .reservation-hero__text,
  body.page--reservation .reservation-beer__text,
  body.page--reservation .reservation-next__header p {
    width: 100%;
    font-size: 16px;
    white-space: normal;
  }

  body.page--reservation .reservation-divider {
    width: 210px;
  }

  body.page--reservation .reservation-preview h2 {
    font-size: 24px;
  }

  body.page--reservation .reservation-preview__header {
    align-items: flex-end;
  }

  body.page--reservation .reservation-preview figure {
    flex-basis: 74vw;
    width: 74vw;
    height: 190px;
  }

  body.page--reservation .reservation-beer {
    padding: 70px 0 80px;
  }

  body.page--reservation .reservation-beer__video-card {
    height: 470px;
  }

  body.page--reservation .reservation-beer__bartenders {
    height: 230px;
  }

  body.page--reservation .reservation-facts strong {
    font-size: 18px;
  }

  body.page--reservation .reservation-facts small {
    font-size: 14px;
  }

  body.page--reservation .reservation-next {
    padding: 70px 0 80px;
  }

  body.page--reservation .reservation-next__header {
    margin-bottom: 34px;
  }

  body.page--reservation .reservation-nav-card figure {
    height: 260px;
  }

  body.page--reservation .reservation-nav-card h3 {
    font-size: 30px;
  }

  body.page--reservation .reservation-nav-card p {
    min-height: 0;
  }
}

@media (max-width: 459px) {
  body.page--reservation .reservation-hero__title,
  body.page--reservation .reservation-beer__title,
  body.page--reservation .reservation-next__header h2 {
    font-size: 34px;
  }

  body.page--reservation .restocraft-booking-host {
    width: 100%;
  }

  body.page--reservation .reservation-beer__video-card {
    height: 360px;
  }

  body.page--reservation .reservation-nav-card figure {
    height: 220px;
  }
}
