:root {
  --bg: #fffaf1;
  --ink: #151a17;
  --muted: #58635e;
  --line: rgba(21, 26, 23, 0.14);
  --paper: #ffffff;
  --forest: #145c43;
  --teal: #178f8f;
  --clay: #c75f2a;
  --gold: #f4b83f;
  --blue: #2c6f99;
  --shadow: 0 18px 45px rgba(21, 26, 23, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 8%, rgba(244, 184, 63, 0.22), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(23, 143, 143, 0.16), transparent 30%),
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.58;
}

a {
  color: inherit;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.92);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  color: var(--forest);
  text-decoration: none;
  font-weight: 900;
}

.nav-links {
  display: flex;
  gap: 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.card a:hover {
  color: var(--clay);
}

.hero,
.band {
  max-width: 1180px;
  margin: 0 auto;
  padding: 58px 24px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 38px;
  align-items: center;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: 0.98;
  max-width: 820px;
}

.hero p {
  margin: 20px 0 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 1.12rem;
}

.deal-panel {
  min-height: 390px;
  color: white;
  border-radius: 8px;
  padding: 26px;
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(20, 92, 67, 0.12), rgba(20, 92, 67, 0.9)),
    url("https://images.unsplash.com/photo-1504851149312-7a075b496cc7?auto=format&fit=crop&w=900&q=80");
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.deal-panel h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.08;
}

.deal-panel p {
  color: rgba(255, 255, 255, 0.86);
}

.mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.mini-list span {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.82rem;
  font-weight: 850;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 7px;
  background: var(--clay);
  color: white;
  text-decoration: none;
  font-weight: 850;
  box-shadow: 0 12px 26px rgba(199, 95, 42, 0.22);
}

.button.secondary {
  background: transparent;
  color: var(--forest);
  border: 1px solid var(--forest);
  box-shadow: none;
}

.disclosure {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 24px;
  color: #314039;
  background: #eff7e7;
  border-block: 1px solid var(--line);
  font-size: 0.95rem;
}

.section-head {
  margin-bottom: 22px;
}

.section-head h2 {
  margin: 0;
  font-size: 2.1rem;
  line-height: 1.12;
}

.section-head p {
  color: var(--muted);
  max-width: 760px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card,
.product {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(21, 26, 23, 0.08);
}

.card {
  padding: 22px;
  overflow: hidden;
}

.card::before {
  content: "";
  display: block;
  height: 7px;
  margin: -22px -22px 18px;
  background: linear-gradient(90deg, var(--clay), var(--gold), var(--teal));
}

.card a {
  text-decoration: none;
}

.card h3,
.product h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.28;
}

.card p,
.product p,
.meta {
  color: var(--muted);
}

.deal-panel .meta {
  color: #ffe9ba;
}

.meta {
  margin: 0 0 10px;
  font-size: 0.9rem;
  font-weight: 850;
}

.product {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
}

.product-visual {
  min-height: 130px;
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(20, 92, 67, 0.12), rgba(44, 111, 153, 0.22)),
    #eef8f2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  font-weight: 900;
  text-align: center;
  padding: 14px;
}

.product:nth-of-type(4n + 1) .product-visual {
  background: #fff0d1;
  color: #7a420f;
}

.product:nth-of-type(4n + 3) .product-visual {
  background: #e8f7ff;
  color: var(--blue);
}

.review {
  max-width: 900px;
  margin: 0 auto;
  padding: 52px 24px 76px;
}

.review h1 {
  margin: 0 0 12px;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  line-height: 1;
}

.review h2 {
  margin-top: 38px;
  line-height: 1.2;
}

.review table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border: 1px solid var(--line);
}

.review th,
.review td {
  padding: 13px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.review th {
  color: var(--forest);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 24px;
  text-align: center;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.55);
}

@media (max-width: 860px) {
  .hero,
  .product {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 38px;
  }

  .deal-panel {
    min-height: 320px;
  }

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

  .nav {
    align-items: flex-start;
    flex-direction: column;
  }
}
