@charset "utf-8";

/* =========================================================
   HERO
========================================================= */

.hero {
  padding-top: clamp(48px, 7vw, 88px);
  padding-bottom: clamp(56px, 8vw, 96px);
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
}

.hero__grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(18px, 4vw, 44px);
  align-items: center;
}

.hero__copy {
  padding-top: clamp(8px, 1.5vw, 18px);
}

.hero__eyebrow {
  margin: 0 0 14px;
  letter-spacing: .32em;
  font-size: 12px;
  color: rgba(255, 255, 255, .56);
}

.hero__title {
  margin: 0;
  font-size: clamp(62px, 10.5vw, 116px);
  line-height: .88;
  letter-spacing: -.045em;
  font-weight: 800;
  color: rgba(255, 255, 255, .96);
  text-wrap: balance;
}

.hero__lead {
  margin-top: 18px;
  max-width: 34ch;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.9;
  color: rgba(245, 245, 245, .78);
}

/* --- HERO CTA --- */

.hero__cta {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.hero__cta .btn--primary {
  min-width: 148px;
  min-height: 54px;
}

.hero__cta .btn--ghost {
  min-width: 148px;
  min-height: 54px;
  background: rgba(255, 255, 255, .03);
  backdrop-filter: blur(8px);
}

/* --- HERO BADGES --- */

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero__badges .badge {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  letter-spacing: .08em;
}

/* --- HERO MEDIA --- */

.hero__media {
  position: relative;
  max-width: 840px;
  justify-self: end;
  aspect-ratio: 16 / 11;
  transform: translateY(-6px);
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, .55),
    0 0 0 1px rgba(255, 255, 255, .06),
    0 0 0 1px rgba(255, 60, 60, .08) inset;
}

.hero__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .05), transparent 28%),
    radial-gradient(90% 80% at 20% 10%, rgba(255, 60, 60, .08), transparent 50%),
    linear-gradient(90deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .04) 35%, rgba(0, 0, 0, .24));
  pointer-events: none;
}

.hero__media::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -18px;
  height: 36px;
  background: radial-gradient(closest-side, rgba(255, 60, 60, .16), transparent 70%);
  filter: blur(18px);
  pointer-events: none;
}


/* =========================================================
   CTA SECTION
========================================================= */

.section--cta {
  background: linear-gradient(180deg, rgba(177, 18, 38, .10), transparent 55%);
}

.cta__box {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: var(--r-lg);
  padding: 22px 26px;
  box-shadow: var(--shadow-soft);
}

.cta__title {
  margin: 0 0 8px;
  font-size: clamp(26px, 3vw, 40px);
  font-family: inherit;
  font-weight: 800;
}

.cta__text {
  margin: 0 0 18px;
  color: var(--muted);
}

.cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}


/* =========================================================
   MENU TEASER
========================================================= */

#menu {
  position: relative;
}

#menu .section__head {
  margin-bottom: 28px;
}

#menu .section__head--row {
  align-items: end;
}

/* --- MENU LINK --- */

#menu .text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03);
  color: rgba(255, 255, 255, .84);
  text-decoration: none;
  transition:
    transform .2s ease,
    background .2s ease,
    border-color .2s ease,
    color .2s ease,
    box-shadow .2s ease;
}

#menu .text-link::after {
  content: "→";
  font-size: 14px;
  line-height: 1;
  opacity: .72;
  transition: transform .2s ease, opacity .2s ease;
}

#menu .text-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .96);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .26);
}

#menu .text-link:hover::after {
  transform: translateX(3px);
  opacity: 1;
}

/* --- MENU CARD --- */

.menu-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
  transition:
    transform .28s ease,
    border-color .28s ease,
    box-shadow .28s ease,
    background .28s ease;
}

.menu-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, .16);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, .34),
    0 0 0 1px rgba(255, 60, 60, .06) inset;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04));
}

/* --- MENU CARD MEDIA --- */

.menu-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(255, 255, 255, .03);
}

.menu-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .5s ease, filter .35s ease;
}

.menu-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .04), transparent 34%),
    linear-gradient(0deg, rgba(0, 0, 0, .24), transparent 42%);
  pointer-events: none;
}

.menu-card:hover .menu-card__media img {
  transform: scale(1.04);
  filter: brightness(1.03);
}

/* --- MENU CARD BODY --- */

.menu-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 18px 16px;
}

.menu-card__title {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: .01em;
}

.menu-card__text {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.75;
}

/* --- MENU CARD META --- */

.menu-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.menu-card .price {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, .96);
  letter-spacing: .01em;
}

.menu-card .tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  letter-spacing: .08em;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__lead {
    max-width: 60ch;
  }

  #menu .section__head--row {
    align-items: flex-start;
  }

  #menu .text-link {
    margin-top: 4px;
  }

}

@media (max-width: 520px) {

  .menu-card__body {
    padding: 16px 16px 15px;
  }

  .menu-card .price {
    font-size: 20px;
  }

}