:root {
  --ink: #0a0a0a;
  --muted: #b3b3b3;
  --border: #d8d8d8;
  --gap: clamp(1rem, 6vw, 56px);
}

* { box-sizing: border-box; }

::selection { background: #000; }

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: "Geist", system-ui, sans-serif;
}

.page {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--gap) clamp(20px, 4vw, 34px);
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: clamp(24px, 4.5vw, 30px);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.header .handle {
  color: var(--muted);
  font-weight: 400;
}

.basket {
  height: clamp(28px, 5vw, 36px);
  width: auto;
  flex-shrink: 0;
}

.tagline {
  margin: 0;
  font-size: clamp(22px, 4.2vw, 30px);
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.tagline .icon {
  display: inline-block;
  width: auto;
  vertical-align: -0.12em;
}

.tagline .icon--bottle { height: 1.08em; margin: 0 0.2em; }
.tagline .icon--can { height: 0.86em; margin: 0 0.22em; transform: rotate(-40deg); vertical-align: -0.08em; }
.tagline .icon--bag { height: 0.94em; margin: 0 0.16em; }
.tagline .icon--round { height: 0.72em; margin: 0 0.14em; vertical-align: -0.06em; }

.cards {
  columns: 2;
  column-gap: 22px;
}

.card {
  break-inside: avoid;
  margin-bottom: 22px;
  width: 100%;
  padding: 22px 20px 18px;
  background: whitesmoke;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px dashed var(--border);
  pointer-events: none;
}

.card--dark {
  background: #000;
  color: #fff;
}

.card--dark::before { display: none; }

.card h2,
.card .head {
  margin: 0;
  font-size: clamp(20px, 3.5vw, 25px);
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.card .cutout {
  display: block;
  width: 100%;
  max-height: clamp(200px, 38vw, 300px);
  height: auto;
  margin: 28px auto 0;
  object-fit: contain;
}

.card .foot {
  margin-top: auto;
  padding-top: 18px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.card--dark .head .dim { color: rgba(255, 255, 255, 0.5); font-weight: 400; }

.card--dark .sub {
  margin: 10px 0 0;
  font-size: clamp(14px, 2.5vw, 16px);
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.35;
}

@media (max-width: 640px) {
  .cards { columns: 1; }
}
