html, body { overscroll-behavior-y: none; }

:root {
  --color-primary: #eb6a56;
  --color-primary-button: #e25041;
  --color-teal: #028090;
  --color-footer: #f0f3bd;
  --color-text: #3e3e3e;
  --content-max: 1100px;
  --page-gutter: 5vw;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: #fff;
  scroll-behavior: smooth;
}

body {
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  flex-direction: column;
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: #fff;
  color: var(--color-text);
  font-family: "Open Sans", Arial, sans-serif;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-bottom: clamp(36px, calc(6.64vw + 15px), 100px);
  background: var(--color-teal);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(90%, var(--content-max));
  margin-inline: auto;
  padding-top: clamp(10px, 2.8vw, 34px);
  text-align: center;
}

.promotion {
  margin: 0 0 clamp(22px, calc(29px - .5vw), 27px);
  font-size: 15px;
  line-height: 24px;
}

.promotion span {
  padding-inline: 3px;
  background: var(--color-primary);
  color: #fff;
}

.hero h1 {
  width: min(100%, 880px);
  margin: 0 auto clamp(10px, calc(23px - .9vw), 20px);
  color: #fff;
  font-family: "Hammersmith One", Arial, sans-serif;
  font-size: clamp(21px, calc(5.7vw - .4px), 57px);
  font-weight: 400;
  line-height: 1;
}

.hero h2 {
  width: min(100%, 825px);
  margin: 0 auto;
  color: #e1e1e1;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(17px, calc(1.73vw + 8.7px), 22px);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
}

.hero-wave {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: -1px;
  left: 0;
  display: block;
  width: 100%;
  height: 60px;
  pointer-events: none;
  fill: #fff;
}

.home-main {
  padding-bottom: clamp(35px, calc(21.5vw - 130px), 90px);
  background: #fff;
}

.home-content {
  position: relative;
  z-index: 2;
  width: min(90vw, calc(46.875vw + 331px), 968px);
  margin: clamp(-72px, calc(328px - 39vw), calc(19.2px + 1.15vw)) auto 0;
  text-align: center;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 968 / 545;
  background: #101010;
  box-shadow: 0 1px 25px -1px #000;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-shadow {
  display: block;
  width: 31.625%;
  height: auto;
  margin: clamp(0px, calc(30px - 3vw), 10px) auto 0;
}

.reserve-button {
  display: inline-grid;
  grid-template-columns: 16px minmax(0, 1fr);
  column-gap: 11px;
  align-items: center;
  width: min(100%, 680px);
  min-height: 75px;
  margin: 0 auto;
  padding-block: clamp(14px, calc(2.68vw + 5.43px), 26px);
  padding-inline: clamp(22px, calc(5vw - 8px), 52px);
  overflow: hidden;
  border-radius: 57px;
  background: var(--color-primary-button);
  box-shadow: -4px 3px 20px -6px #000;
  color: #fff;
  font-family: "Hammersmith One", Arial, sans-serif;
  font-size: clamp(14.5px, calc(.639vw + 12.455px), 19px);
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, transform 160ms ease;
}

.reserve-button:hover,
.reserve-button:focus-visible {
  background: var(--color-primary);
}

.reserve-button:focus-visible,
.scroll-top:focus-visible {
  outline: 3px solid var(--color-teal);
  outline-offset: 3px;
}

.youtube-note a:focus-visible {
  outline: 3px solid var(--color-teal);
  outline-offset: 3px;
}

.cookie-banner a:focus-visible,
.cookie-banner button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

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

.reserve-icon {
  font-family: Arial, sans-serif;
  font-size: clamp(15px, calc(1vw + 11.8px), 18px);
}

.youtube-note {
  margin: clamp(21px, calc(14.9px + 1.96vw), 28px) 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 17px;
  font-style: italic;
  line-height: 1;
  text-align: center;
}

.youtube-note a {
  display: inline;
}

.site-footer {
  margin-top: auto;
  padding: 6px var(--page-gutter);
  background: var(--color-teal);
  color: var(--color-footer);
  text-align: center;
}

.site-footer p {
  width: min(100%, var(--content-max));
  margin: 0 auto;
  font-family: "Hammersmith One", Arial, sans-serif;
  font-size: 15px;
  line-height: 24px;
}

.checkout-shell {
  width: min(90%, var(--content-max));
  min-height: 150px;
  margin-inline: auto;
}

.checkout-shell .tc-v2-embeddable-target,
.checkout-shell iframe {
  max-width: 100%;
}

.embed-fallback {
  padding: 32px;
  text-align: center;
}

.scroll-top {
  position: fixed;
  z-index: 20;
  right: 30px;
  bottom: 24px;
  display: grid;
  width: 60px;
  height: 60px;
  padding: 0 0 7px;
  border: 0;
  border-radius: 50%;
  opacity: 0;
  background: rgba(62, 62, 62, .72);
  color: #fff;
  font-size: 36px;
  line-height: 1;
  place-items: center;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner {
  position: fixed;
  z-index: 999;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 70px;
  padding: 15px;
  background: #000;
  color: #ddd;
  font: 13px/20px Arial, sans-serif;
  text-align: center;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  max-width: 840px;
  margin: 0;
}

.cookie-banner a {
  color: #ddd;
}

.cookie-banner button {
  flex: 0 0 auto;
  width: 95px;
  height: 40px;
  border: 0;
  background: #fff;
  color: var(--color-text);
  font: 13px Arial, sans-serif;
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
  }

  .scroll-top {
    right: 16px;
    bottom: 16px;
    width: 50px;
    height: 50px;
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding-block: 10px;
  }
}

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

  .reserve-button,
  .scroll-top {
    transition: none;
  }
}
