:root {
  --accent: #f26a21;
  --accent-dark: #d95712;
  --ink: #171717;
  --muted: #6b7280;
  --line: #ece7e1;
  --paper: #ffffff;
  --surface: #fffaf5;
  --soft: #f8f5f1;
  --shadow: 0 18px 48px rgba(42, 28, 17, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(242, 106, 33, 0.12), transparent 32rem),
    linear-gradient(180deg, #fffaf5 0%, #ffffff 34rem);
  font-family: "Aptos", "Segoe UI", sans-serif;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 7vw;
  background: rgba(255, 250, 245, 0.88);
  border-bottom: 1px solid rgba(236, 231, 225, 0.9);
  backdrop-filter: blur(14px);
}

.brand {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.brand::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 9px;
  border-radius: 999px;
  background: var(--accent);
}

.nav {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.hero {
  padding: 46px 7vw 64px;
}

.hero-head {
  max-width: 780px;
  margin-bottom: 28px;
}

.pill,
.tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  font-weight: 800;
}

.pill {
  margin-bottom: 14px;
  padding: 8px 13px;
  color: #9a4314;
  background: #fff0e6;
  font-size: 0.82rem;
}

.pill.subtle {
  color: var(--muted);
  background: #f0ebe5;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(2.35rem, 6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.hero-head p,
.section-head p {
  max-width: 610px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card,
.combo {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 30px rgba(42, 28, 17, 0.05);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.card:hover,
.combo:hover {
  transform: translateY(-3px);
  border-color: rgba(242, 106, 33, 0.32);
  box-shadow: var(--shadow);
}

.featured-card {
  border-color: rgba(242, 106, 33, 0.4);
  background: linear-gradient(180deg, #fff 0%, #fff7f0 100%);
}

.tag {
  margin-bottom: 18px;
  padding: 7px 11px;
  color: #9a4314;
  background: #fff2e8;
  font-size: 0.76rem;
}

.card h2,
.combo h3 {
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.card p,
.combo p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  margin-top: auto;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button.primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 12px 24px rgba(242, 106, 33, 0.2);
}

.button.secondary {
  color: var(--accent-dark);
  background: #fff2e8;
  border-color: #ffd9c2;
}

.button.primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(242, 106, 33, 0.24);
}

.button.secondary:hover {
  transform: translateY(-1px);
  background: #ffe8d8;
}

.button-disabled,
.button-disabled:hover {
  cursor: not-allowed;
  color: #9ca3af;
  background: #eceff3;
  border-color: #eceff3;
  box-shadow: none;
  transform: none;
}

.button:focus-visible,
.nav a:focus-visible,
.brand:focus-visible {
  outline: 3px solid rgba(242, 106, 33, 0.28);
  outline-offset: 3px;
}

.section {
  padding: 58px 7vw 72px;
}

.combo-section {
  background: linear-gradient(180deg, rgba(248, 245, 241, 0.66), #fff);
  border-top: 1px solid var(--line);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  letter-spacing: -0.05em;
}

.combo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.combo {
  min-height: 220px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 7vw;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer strong {
  color: var(--ink);
}

@media (max-width: 1040px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .topbar,
  .hero,
  .section,
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav {
    display: none;
  }

  .hero {
    padding-top: 34px;
  }

  .cards,
  .combo-grid {
    grid-template-columns: 1fr;
  }

  .section-head,
  .footer {
    align-items: start;
    flex-direction: column;
  }
}
