* {
  box-sizing: border-box;
}

:root {
  --espresso: #21150f;
  --coffee: #4b2e22;
  --caramel: #c5874a;
  --cream: #fff6e8;
  --ink: #221713;
  --muted: #7c685d;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
    url('https://images.unsplash.com/photo-1554118811-1e0d58224f24?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center;
  color: var(--ink);
}

.page {
  width: min(1200px, calc(100% - 40px));
  margin: auto;
  padding: 40px 0;
}

.menu-shell {
  overflow: hidden;
  border-radius: 32px;
  background: rgba(255,246,232,.92);
  backdrop-filter: blur(12px);
  animation: fadeIn 1s ease;
}

header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.hero-copy {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.brand-kicker {
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--caramel);
  font-weight: bold;
  font-size: 12px;
}

h1 {
  font-size: clamp(58px, 8vw, 110px);
  line-height: .9;
  margin: 20px 0;
  color: var(--espresso);
}

.intro {
  max-width: 500px;
  line-height: 1.8;
  color: var(--muted);
}

.hero-card {
  display: flex;
  gap: 14px;
}

.mini-stat {
  background: white;
  padding: 18px;
  border-radius: 18px;
  flex: 1;
}

.mini-stat strong {
  display: block;
  font-size: 28px;
}

.hero-image {
  position: relative;
  background:
    linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.55)),
    url('https://images.unsplash.com/photo-1501339847302-ac426a4a7cbb?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
}

.badge {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  color: white;
  background: rgba(0,0,0,.6);
  font-weight: bold;
}

main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 30px;
}

.panel {
  background: white;
  border-radius: 24px;
  padding: 28px;
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,.1);
  margin-bottom: 20px;
}

.section-title h2 {
  margin: 0;
}

.item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px dashed rgba(0,0,0,.15);
  transition: .3s ease;
}

.item:hover {
  transform: translateX(6px);
}

.price {
  color: var(--caramel);
  font-weight: bold;
  font-size: 22px;
}

.feature {
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 300px;
  background:
    linear-gradient(rgba(0,0,0,.1), rgba(0,0,0,.75)),
    url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
}

footer {
  background: var(--espresso);
  color: white;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta {
  background: var(--caramel);
  color: white;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 999px;
  transition: .3s ease;
}

.cta:hover {
  transform: translateY(-3px);
}

.theme-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  border: none;
  border-radius: 999px;
  padding: 14px 20px;
  background: black;
  color: white;
  cursor: pointer;
}

body.dark {
  filter: hue-rotate(180deg) invert(.92);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 900px) {
  header,
  main {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 36px;
  }

  footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
