:root {
  --blush: #f8e8e4;
  --champagne: #c9a65d;
  --beige: #f5efe6;
  --ink: #221d1b;
  --muted: #6f625d;
  --paper: #fffaf5;
  --line: rgba(34, 29, 27, 0.12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, var(--paper), var(--beige));
  font-family: Georgia, "Times New Roman", serif;
}

a { color: inherit; }

.site-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
}

.hero {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.eyebrow {
  color: var(--champagne);
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 10px 0 14px;
  font-size: clamp(2.4rem, 8vw, 5rem);
  line-height: 0.95;
}

.hero p,
.product-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.product-card {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-decoration: none;
  background: rgba(255, 250, 245, 0.88);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(34, 29, 27, 0.08);
}

.product-card__media,
.product-hero-media {
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 18px;
  background: #fff;
}

.product-card img,
.product-hero-media img {
  width: 100%;
  height: 260px;
  object-fit: contain;
}

.product-card h2 {
  min-height: 78px;
  margin: 0;
  padding: 20px;
  font-size: 1.35rem;
  line-height: 1.25;
}

.image-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 260px;
  color: var(--champagne);
  text-align: center;
  border: 1px dashed rgba(201, 166, 93, 0.65);
  background: var(--blush);
}

.image-placeholder span {
  max-width: 18rem;
  padding: 20px;
}

.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 42px;
  color: var(--muted);
  font: 0.88rem/1.6 Arial, sans-serif;
}

.back-link {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--champagne);
  font: 700 1rem/1.4 Arial, sans-serif;
  text-decoration: none;
}

.product-layout {
  display: grid;
  gap: 30px;
}

.product-hero-media {
  border-radius: 8px;
  border: 1px solid var(--line);
  min-height: 360px;
}

.product-hero-media img { height: min(62vh, 560px); }

.product-copy h1 {
  font-size: clamp(2rem, 7vw, 4.25rem);
}

.author {
  color: var(--ink);
  font-weight: 700;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  width: 100%;
  margin-top: 14px;
  padding: 15px 22px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  font: 700 1rem/1.2 Arial, sans-serif;
  text-align: center;
  text-decoration: none;
}

.trial-note {
  margin-top: 10px;
  font-size: 0.9rem !important;
}

.disclosure {
  margin-top: 22px;
  padding: 18px;
  background: rgba(248, 232, 228, 0.55);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font: 0.95rem/1.6 Arial, sans-serif;
}

dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 14px;
  margin: 14px 0 0;
}

dt { font-weight: 700; }
dd { margin: 0; }

@media (hover: hover) and (pointer: fine) {
  .product-card {
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  }

  .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(44, 32, 28, 0.12);
    border-color: rgba(190, 145, 82, 0.45);
  }

  .product-card img {
    transition: transform 220ms ease;
  }

  .product-card:hover img {
    transform: scale(1.025);
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-card,
  .product-card img {
    transition: none;
  }

  .product-card:hover,
  .product-card:hover img {
    transform: none;
  }
}

@media (min-width: 640px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 900px) {
  .site-shell { padding-top: 72px; }
  .product-layout { grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr); align-items: start; }
  .cta { width: auto; min-width: 320px; }
}