:root {
  --page-bg: #050505;
  --panel-bg: rgba(10, 6, 8, 0.72);
  --text: #f6f2f0;
  --muted: rgba(255, 255, 255, 0.92);
  --border: rgba(255, 255, 255, 0.9);
  --cta-bg: #151515;
  --accent: #b4919b;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Poppins", Arial, sans-serif;
  background: var(--page-bg);
  color: var(--text);
}

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

a {
  color: inherit;
}

.hero-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-decoration: none;
}

.hero-logo img {
  width: clamp(260px, 34vw, 430px);
  height: auto;
  filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.7));
}

.hero {
  min-height: calc(100vh - 160px);
  padding: 26px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.58)),
    url("images/grillback-scaled.jpg") center center / cover no-repeat;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(93, 30, 46, 0.08), transparent 55%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1050px);
  padding: 12px 24px 42px;
}

.headline-frame {
  width: min(100%, 540px);
  margin: 30px auto 28px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  background: rgba(18, 11, 12, 0.08);
  padding: clamp(20px, 4vw, 28px) clamp(16px, 3vw, 34px);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12) inset;
}

.headline-frame h1 {
  margin: 0;
  text-align: center;
  color: #ffffff;
  font-size: clamp(2.2rem, 5vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: 0.02em;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.38);
}

.selling-points {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: min(100%, 760px);
}

.selling-points li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 18px;
  align-items: start;
  margin: 16px 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.65vw, 1.28rem);
  line-height: 1.18;
  font-weight: 500;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
}

.point-icon {
  width: 23px;
  height: 23px;
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.15rem;
  line-height: 1;
  transform: translateY(1px);
}

.cta-band {
  background: linear-gradient(to bottom, rgba(23, 23, 23, 0.98), rgba(14, 14, 14, 0.98));
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  padding: 22px 16px 26px;
}

.cta-inner {
  width: min(100%, 980px);
  margin: 0 auto;
  text-align: center;
}

.cta-inner h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0.03em;
  font-weight: 800;
  text-transform: uppercase;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 144px;
  margin-top: 16px;
  padding: 13px 22px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 4px;
  text-decoration: none;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08) inset;
}

.site-footer {
  padding: 12px 18px 18px;
  text-align: center;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
  background: #0b0b0b;
}

@media (max-width: 760px) {
  .hero-logo img {
    width: min(84vw, 340px);
  }

  .hero {
    align-items: flex-start;
    padding-top: 20px;
  }

  .hero-inner {
    padding: 12px 14px 44px;
  }

  .headline-frame {
    margin-top: 18px;
    padding: 18px 14px;
  }

  .selling-points li {
    grid-template-columns: 28px 1fr;
    gap: 12px;
    margin: 12px 0;
  }

  .point-icon {
    width: 21px;
    height: 21px;
  }

  .cta-band {
    padding-top: 20px;
    padding-bottom: 24px;
  }
}