.hero {
  padding: 40px 0 24px;
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.card {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
}

.eyebrow {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}

h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -.6px;
}

.lead {
  margin: 14px 0 0;
  color: #3f444a;
  max-width: 48ch;
}

.cta {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.btn {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 14px;
}

.btn.primary {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

.carousel {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform .4s ease;
}

.slide {
  min-width: 100%;
  position: relative;
  margin: 0;
}

.slide img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.slide-caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(21, 21, 21, .08);
  font-size: 13px;
}

.carousel-controls {
  position: absolute;
  right: 12px;
  top: 12px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.icon-btn {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .55);
  background: rgba(21, 21, 21, .45);
  color: #fff;
  cursor: pointer;
  font-size: 16px;
}

.dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, .55);
  cursor: pointer;
}

.dot.active { background: #fff; }

section { padding: 22px 0; }

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

.section-head h2 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -.2px;
}

.section-head p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

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

.choice {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.choice-image {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
  display: block;
}

.choice h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -.2px;
}

.choice p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.choice .btn {
  margin-top: auto;
  width: fit-content;
}

.product {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  padding: 16px;
}

.product-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.product-image {
  width: 100%;
  height: 132px;
  max-height: 132px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
  display: block;
  margin-bottom: 10px;
}

.product h3 { margin: 0; font-size: 16px; }
.product p { margin: 6px 0 0; color: var(--muted); font-size: 14px; }
.price { margin-top: 12px; font-weight: 700; }

.about {
  padding: 18px;
}

.about p {
  margin: 8px 0 0;
  color: #3f444a;
  max-width: 80ch;
}

footer { margin-top: 28px; }

@media (max-width: 980px) {
  .hero-wrap { grid-template-columns: 1fr; }
  .products { grid-template-columns: repeat(2, 1fr); }
  .chooser { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .products { grid-template-columns: 1fr; }
  .hero-copy, .carousel, .slide img { min-height: 360px; }
  .product-image {
    height: 150px;
    max-height: 150px;
  }
}
