:root {
  --black: #030303;
  --red: #c1121f;
  --gold: #d4a017;
  --gold-light: #f2c766;
  --cream: #fff3d8;
  --border-gold: rgba(212, 160, 23, 0.26);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--black);
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--cream);
  background: var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  content: "";
  background:
    radial-gradient(circle at 18% 24%, rgba(193, 18, 31, 0.17), transparent 28rem),
    radial-gradient(circle at 74% 14%, rgba(212, 160, 23, 0.14), transparent 26rem),
    linear-gradient(135deg, #030303 0%, #120d08 54%, #030303 100%);
}

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

a {
  color: inherit;
}

.site-shell {
  min-height: 100svh;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 920px);
  grid-template-rows: auto minmax(0, 1fr);
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 8vh, 5.5rem);
  overflow: hidden;
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1rem, 5vw, 5rem) clamp(3rem, 5vw, 4.25rem);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(90deg, rgba(3, 3, 3, 0.94) 0%, rgba(3, 3, 3, 0.84) 45%, rgba(3, 3, 3, 0.8) 100%),
    url("assets/hero-kebab-house.png");
  background-position: center, center;
  background-size: cover, cover;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 25% 55%, rgba(3, 3, 3, 0.36), transparent 28rem),
    linear-gradient(180deg, rgba(3, 3, 3, 0.04), rgba(3, 3, 3, 0.78));
  pointer-events: none;
}

.hero__backdrop {
  position: absolute;
  inset: clamp(0.7rem, 1.2vw, 1rem);
  z-index: 0;
  border: 1px solid rgba(212, 160, 23, 0.18);
  pointer-events: none;
}

.topbar,
.hero__content {
  position: relative;
  z-index: 1;
}

.topbar {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  text-decoration: none;
}

.brand__logo {
  width: clamp(280px, 30vw, 430px);
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.45));
}

.hero__content {
  display: flex;
  width: min(100%, 920px);
  max-width: 920px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: clamp(1.25rem, 4vh, 3rem);
  text-align: center;
}

.eyebrow {
  width: fit-content;
  margin: 0 auto 1rem;
  padding: 0.45rem 0.75rem 0.45rem 0.85rem;
  border-left: 3px solid var(--red);
  color: var(--gold-light);
  background: rgba(193, 18, 31, 0.1);
  font-size: clamp(0.74rem, 1.25vw, 0.86rem);
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

h1 {
  max-width: 920px;
  margin: 0;
  color: #fff7e8;
  font-size: clamp(3.35rem, 6.4vw, 6.8rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.94;
  text-transform: uppercase;
  text-shadow: 0 2px 0 rgba(193, 18, 31, 0.62), 0 16px 34px rgba(0, 0, 0, 0.5);
}

.title-line {
  display: block;
  white-space: nowrap;
}

.coming-soon-line {
  width: fit-content;
  margin: 1.15rem auto 0;
  color: var(--gold-light);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.opening-info {
  display: flex;
  width: min(100%, 800px);
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: clamp(1.15rem, 3vh, 1.75rem) auto 0;
  padding: 0.72rem 1rem;
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  color: #ffe8ae;
  background: rgba(8, 7, 5, 0.58);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  list-style: none;
}

.opening-info li {
  position: relative;
  padding: 0.28rem 1.05rem;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.opening-info li + li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 1.05rem;
  content: "";
  background: rgba(242, 199, 102, 0.34);
  transform: translateY(-50%);
}

.footer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1rem;
  border-top: 1px solid rgba(212, 160, 23, 0.16);
  color: rgba(255, 243, 216, 0.68);
  background: rgba(5, 4, 3, 0.78);
  text-align: center;
  backdrop-filter: blur(10px);
  font-size: 0.82rem;
}

.footer p {
  margin: 0;
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: minmax(0, 820px);
  }

  h1 {
    font-size: clamp(3rem, 7vw, 5.6rem);
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 100svh;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    align-items: center;
    gap: clamp(1.5rem, 7vh, 4rem);
    padding-bottom: 2.3rem;
  }

  .hero::before {
    background-image:
      linear-gradient(180deg, rgba(3, 3, 3, 0.93) 0%, rgba(3, 3, 3, 0.86) 46%, rgba(3, 3, 3, 0.94) 100%),
      url("assets/hero-kebab-house.png");
    background-position: center, center;
  }

  .hero__content {
    max-width: 720px;
    padding-block: clamp(1rem, 4vw, 2rem) 0;
  }
}

@media (max-width: 620px) {
  .hero {
    padding: 0.85rem 1rem 1.6rem;
  }

  .hero__backdrop {
    inset: 0.55rem;
  }

  .brand__logo {
    width: min(72vw, 270px);
  }

  .eyebrow {
    width: min(100%, 270px);
    margin-bottom: 0.85rem;
    padding-inline: 0.65rem;
    font-size: 0.64rem;
  }

  h1 {
    width: 100%;
    max-width: 360px;
    font-size: 1.95rem;
    line-height: 0.98;
  }

  .title-line {
    white-space: normal;
  }

  .coming-soon-line {
    margin-top: 0.9rem;
    font-size: 0.92rem;
  }

  .opening-info {
    width: min(100%, 420px);
    margin-top: 1.05rem;
    padding: 0.62rem 0.8rem;
  }

  .opening-info li {
    width: 100%;
    padding: 0.42rem 0.35rem;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    overflow-wrap: break-word;
  }

  .opening-info li + li {
    border-top: 1px solid rgba(242, 199, 102, 0.18);
  }

  .opening-info li + li::before {
    display: none;
  }

  .footer {
    font-size: 0.76rem;
  }
}

@media (max-width: 390px) {
  h1 {
    max-width: 330px;
    font-size: 1.72rem;
  }
}

@media (min-width: 901px) and (max-height: 760px) {
  .hero {
    padding-top: 0.8rem;
    padding-bottom: 2.2rem;
  }

  .brand__logo {
    width: clamp(250px, 24vw, 340px);
  }

  h1 {
    font-size: clamp(2.8rem, 8.8vh, 5rem);
  }

  .eyebrow {
    margin-bottom: 0.7rem;
  }

  .coming-soon-line {
    margin-top: 0.8rem;
  }

  .opening-info {
    margin-top: 1rem;
  }

}

@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;
  }
}
