:root {
  --black: #030304;
  --ink: #070708;
  --white: #f6f3ee;
  --muted: #c9c4bc;
  --dim: #8c8580;
  --red: #c30d16;
  --red-hot: #ff202d;
  --red-deep: #56070b;
  --line: rgba(246, 243, 238, 0.18);
  --display: "Arial Narrow", "Roboto Condensed", Impact, Haettenschweiler, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --brush: "Rock Salt", "Brush Script MT", "Segoe Print", cursive;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--black);
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 10%, rgba(195, 13, 22, 0.1), transparent 28rem),
    radial-gradient(circle at 85% 16%, rgba(255, 32, 45, 0.08), transparent 26rem),
    var(--black);
  color: var(--white);
  font-family: var(--body);
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
}

img {
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.poster {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
}

.poster::before,
.poster::after {
  position: fixed;
  z-index: -1;
  width: 22rem;
  height: 22rem;
  border: 1px solid rgba(255, 32, 45, 0.2);
  content: "";
  opacity: 0.08;
  transform: rotate(18deg);
}

.poster::before {
  bottom: -10rem;
  left: -11rem;
}

.poster::after {
  top: -13rem;
  right: -10rem;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  place-items: end center;
  padding: clamp(7rem, 18vh, 15rem) clamp(1.25rem, 4vw, 4rem) clamp(0.45rem, 1.2vh, 0.9rem);
  background: var(--ink);
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 45% 33%;
  filter: saturate(0.45) contrast(1.16) brightness(0.78);
  transform: scale(1.025);
}

.hero__wash,
.hero__grain,
.hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__wash {
  background:
    linear-gradient(180deg, rgba(3, 3, 4, 0.2) 0%, rgba(3, 3, 4, 0.06) 32%, rgba(3, 3, 4, 0.62) 73%, #030304 100%),
    radial-gradient(circle at 49% 20%, rgba(255, 255, 255, 0.16), transparent 17rem),
    radial-gradient(circle at 62% 21%, rgba(255, 32, 45, 0.38), transparent 26rem),
    radial-gradient(circle at 16% 32%, rgba(255, 32, 45, 0.3), transparent 22rem),
    linear-gradient(90deg, rgba(3, 3, 4, 0.7), rgba(3, 3, 4, 0.04) 42%, rgba(3, 3, 4, 0.72));
  mix-blend-mode: multiply;
}

.hero__grain {
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.8) 0 1px, transparent 1px),
    radial-gradient(circle at 78% 12%, rgba(255, 32, 45, 0.72) 0 1px, transparent 1px),
    radial-gradient(circle at 55% 72%, rgba(255, 255, 255, 0.48) 0 1px, transparent 1px);
  background-size: 17px 19px, 29px 31px, 23px 27px;
  mix-blend-mode: screen;
}

.hero__glow {
  opacity: 0.34;
  filter: blur(16px);
}

.hero__glow--left {
  background: radial-gradient(circle at 8% 41%, rgba(255, 32, 45, 0.8), transparent 18rem);
}

.hero__glow--right {
  background: radial-gradient(circle at 92% 37%, rgba(195, 13, 22, 0.78), transparent 20rem);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(58rem, 100%);
  max-width: 100%;
  justify-items: center;
  text-align: center;
  text-transform: uppercase;
  transform: none;
}

.brand-logo {
  display: block;
  width: min(48rem, 94vw);
  max-height: 28vh;
  object-fit: contain;
  filter:
    drop-shadow(0 0 1.2rem rgba(255, 32, 45, 0.24))
    drop-shadow(0 1.1rem 1.8rem rgba(0, 0, 0, 0.74));
}

.strapline {
  margin: 0.2rem 0 0;
  color: var(--red-hot);
  font-family: var(--brush);
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 0 0 1.2rem rgba(255, 32, 45, 0.35), 0 0.5rem 1rem rgba(0, 0, 0, 0.62);
  transform: rotate(-1.5deg);
}

.genre-line {
  margin: 0.75rem 0 0;
  color: var(--white);
  font-family: var(--display);
  font-size: 1.22rem;
  font-weight: 900;
  letter-spacing: clamp(0.17em, 0.9vw, 0.48em);
  line-height: 1.5;
  text-shadow: 0 0.45rem 0.9rem rgba(0, 0, 0, 0.8);
}

.actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  width: min(18rem, 100%);
}

.button {
  display: inline-flex;
  width: 100%;
  min-width: 0;
  min-height: 4rem;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  border: 2px solid transparent;
  padding: 1rem 1.35rem;
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button svg {
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 auto;
}

.button--primary {
  background: linear-gradient(135deg, var(--red-hot), var(--red));
  color: #120305;
  box-shadow: 0 0.85rem 2.1rem rgba(255, 32, 45, 0.22);
}

.button--primary svg {
  fill: currentColor;
}

.button--ghost {
  border-color: rgba(246, 243, 238, 0.82);
  background: rgba(3, 3, 4, 0.35);
  color: var(--white);
}

.button--ghost svg,
.socials svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: linear-gradient(135deg, #ff3944, #e2111e);
  box-shadow: 0 1rem 2.7rem rgba(255, 32, 45, 0.32);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: var(--red-hot);
  background: rgba(195, 13, 22, 0.22);
}

.button:focus-visible,
.booking-link:focus-visible,
.socials a:focus-visible,
.contact__email:focus-visible {
  outline: 3px solid rgba(255, 32, 45, 0.72);
  outline-offset: 4px;
}

.booking-link {
  display: inline-flex;
  width: 100%;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  overflow-wrap: anywhere;
  border: 2px solid rgba(246, 243, 238, 0.82);
  background: rgba(3, 3, 4, 0.35);
  color: var(--white);
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.4;
  padding: 0.9rem 1rem;
  text-transform: uppercase;
  text-shadow: 0 0.45rem 0.9rem rgba(0, 0, 0, 0.8);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.booking-link:hover {
  border-color: var(--red-hot);
  background: rgba(195, 13, 22, 0.22);
  color: var(--red-hot);
  transform: translateY(-2px);
}

.scribble {
  position: absolute;
  z-index: 3;
  margin: 0;
  color: rgba(246, 243, 238, 0.88);
  font-family: var(--brush);
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1.8;
  text-transform: uppercase;
  text-shadow: 0 0.45rem 0.8rem rgba(0, 0, 0, 0.75);
}

.scribble span {
  color: var(--red-hot);
}

.scribble::after {
  display: block;
  width: 3.2rem;
  height: 0.28rem;
  margin-top: 0.38rem;
  background: var(--red-hot);
  content: "";
  transform: rotate(-8deg);
}

.scribble--top-left {
  top: clamp(1.3rem, 4vw, 3rem);
  left: clamp(1.1rem, 4vw, 3.3rem);
  transform: rotate(-10deg);
}

.scribble--top-right {
  top: clamp(1.5rem, 4vw, 3.4rem);
  right: clamp(1rem, 4vw, 3.7rem);
  transform: rotate(-6deg);
}

.scribble--bottom-right {
  right: clamp(1rem, 4vw, 4rem);
  bottom: clamp(1rem, 3vw, 2.4rem);
  transform: rotate(-12deg);
}

@media (min-width: 1200px) {
  .strapline {
    font-size: 1.55rem;
  }

  .scribble {
    font-size: 1.35rem;
  }
}

.edge-word {
  position: absolute;
  z-index: 1;
  bottom: 3rem;
  color: transparent;
  -webkit-text-stroke: 1px rgba(246, 243, 238, 0.08);
  font-family: var(--display);
  font-size: 14rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  opacity: 0.42;
  pointer-events: none;
}

.edge-word--left {
  left: -9rem;
  transform: rotate(90deg);
}

.edge-word--right {
  right: -9rem;
  transform: rotate(-90deg);
}

.coming-soon {
  position: relative;
  display: grid;
  justify-items: center;
  padding: clamp(2.5rem, 7vw, 4.8rem) 1.25rem clamp(2rem, 5vw, 3.2rem);
  background:
    radial-gradient(circle at 50% 0%, rgba(195, 13, 22, 0.14), transparent 26rem),
    #030304;
  text-align: center;
  text-transform: uppercase;
}

.divider {
  width: min(21rem, 72vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red-hot), transparent);
}

.coming-soon h2 {
  margin: 1.7rem 0 0;
  font-family: var(--display);
  font-size: 1.82rem;
  font-weight: 900;
  letter-spacing: clamp(0.22em, 1vw, 0.54em);
  line-height: 1.45;
}

.coming-soon p {
  margin: 0.9rem 0 1.75rem;
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: clamp(0.28em, 1vw, 0.58em);
  line-height: 1.55;
}

.contact {
  display: grid;
  justify-items: center;
  gap: 1.1rem;
  padding: 1rem 1.25rem clamp(2.7rem, 7vw, 5rem);
  background: #030304;
  text-align: center;
  text-transform: uppercase;
}

.socials {
  display: flex;
  justify-content: center;
  gap: clamp(1.35rem, 5vw, 2.3rem);
  margin-bottom: 0.8rem;
}

.socials a {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  color: var(--white);
  transition: color 0.2s ease, transform 0.2s ease;
}

.socials a:hover {
  color: var(--red-hot);
  transform: translateY(-2px);
}

.socials svg {
  width: 1.9rem;
  height: 1.9rem;
}

.contact__label {
  margin: 0;
  color: var(--dim);
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.42em;
}

.contact__email {
  max-width: min(100%, 26rem);
  overflow-wrap: anywhere;
  color: var(--white);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: clamp(0.12em, 0.9vw, 0.36em);
  transition: color 0.2s ease;
}

.contact__email:hover {
  color: var(--red-hot);
}

@media (max-width: 760px) {
  .hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0 1rem 1rem;
  }

  .hero__image {
    position: relative;
    inset: auto;
    width: calc(100% + 2rem);
    max-width: none;
    height: auto;
    margin: 0 -1rem;
    object-fit: contain;
    object-position: center top;
    filter: saturate(0.58) contrast(1.12) brightness(0.86);
    transform: none;
  }

  .hero__wash {
    background:
      linear-gradient(180deg, rgba(3, 3, 4, 0.02) 0%, rgba(3, 3, 4, 0.04) 32%, rgba(3, 3, 4, 0.74) 58%, #030304 100%),
      radial-gradient(circle at 50% 12%, rgba(255, 32, 45, 0.18), transparent 18rem);
    mix-blend-mode: normal;
  }

  .brand-logo {
    width: min(23rem, 94vw);
    max-height: 22vh;
  }

  .genre-line {
    max-width: 17rem;
    margin-top: 0.55rem;
    font-size: 0.74rem;
    letter-spacing: 0.22em;
  }

  .actions {
    width: min(16rem, 100%);
    gap: 0.55rem;
    margin-top: 0.85rem;
  }

  .button {
    width: 100%;
    min-height: 3.15rem;
    padding: 0.82rem 1rem;
    font-size: 0.86rem;
    letter-spacing: 0.1em;
  }

  .button svg {
    width: 1.05rem;
    height: 1.05rem;
  }

  .booking-link {
    min-height: 3rem;
    padding: 0.78rem 0.8rem;
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    line-height: 1.5;
  }

  .scribble {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .strapline {
    margin-top: 0.15rem;
    font-size: 1.45rem;
    line-height: 1.25;
  }

  .hero__content {
    transform: none;
    margin-top: -0.4rem;
  }
  
  .coming-soon h2 {
    max-width: 18rem;
    font-size: 1.05rem;
    letter-spacing: 0.22em;
  }

  .coming-soon p,
  .contact__email {
    font-size: 0.76rem;
    letter-spacing: 0.12em;
  }

  .scribble--top-left {
    top: 1.1rem;
    left: 1rem;
  }

  .scribble--top-right {
    display: none;
  }

  .scribble--bottom-right,
  .edge-word {
    display: none;
  }
}

@media (max-width: 420px) {
  .hero {
    padding: 0 0.85rem 0.85rem;
  }

  .hero__image {
    width: calc(100% + 1.7rem);
    margin: 0 -0.85rem;
  }

  .brand-logo {
    width: min(20rem, 94vw);
  }

  .strapline {
    font-size: 1.25rem;
    margin-top: 0.1rem;
  }

  .genre-line {
    max-width: 15rem;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  .button {
    min-height: 3rem;
    font-size: 0.78rem;
  }

  .booking-link {
    min-height: 2.85rem;
    font-size: 0.6rem;
  }

  .coming-soon h2 {
    max-width: 15rem;
  }

  .contact {
    padding-right: 0.85rem;
    padding-left: 0.85rem;
  }
}

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