:root{
  /* Professional warm palette (more contrast, less washed-out) */
  --bg: #ece7df;          /* warm greige/stone (less yellow) */
  --surface: #ffffff;     /* cards */
  --surface-2: #f4efe8;   /* soft stone tone */
  --text: #1f1a16;        /* soft near-black */
  --muted: rgba(31,26,22,0.74);
  --muted-2: rgba(31,26,22,0.60);

  /* Warm accent */
  --accent: #b5651d;      /* burnt amber / wood tone */
  --accent-2: #8f4e18;    /* deeper burnt amber */
  --accent-soft: rgba(160,120,80,0.14); /* clay/leather warmth */

  --radius: 14px;

  /* Shadow tokens (makes it look “real”, not outlined) */
  --shadow-1: 0 1px 2px rgba(0,0,0,0.05), 0 10px 24px rgba(31,26,22,0.08);
  --shadow-2: 0 4px 10px rgba(0,0,0,0.06), 0 16px 34px rgba(31,26,22,0.12);
}

body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.65;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 16px 72px;
}

/* HERO: section-like (not “outlined box”) */
.hero{
  background: var(--surface-2);
  border: none;
  border-radius: calc(var(--radius) + 8px);
  padding: 20px 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.65);
  text-align: left;
}

.hero h1{
  margin: 0 0 10px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero p{
  margin: 0;
  max-width: 70ch;
  color: var(--muted);
}

.hero .sub{
  margin-top: 10px;
  color: var(--muted-2);
}

/* Warm highlight block: subtle + professional */
.highlight{
  background: var(--accent-soft);
  border-radius: 12px;
  padding: 10px 12px;
  display: inline-block;
  margin: 0 0 10px 0;
  color: rgba(31,26,22,0.88);
}

/* Sections */
.section{ margin-top: 34px; }

.intro{
  margin-top: 6px;
  max-width: 82ch;
  color: var(--muted);
}

/* Product grid */
.grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 12px;
}

/* Cards: float on background, no borders */
.card{
  background: var(--surface);
  border: none;
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow-1);
  transition: transform 160ms ease, box-shadow 160ms ease;
  text-align: left;
}

.card:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}

.card img{
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius) - 4px);
  display: block;
  background: var(--surface-2);
  /* Keeps images consistent without awkward stretching */
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.card h3{
  margin: 12px 0 8px;
  font-size: 1.08rem;
  line-height: 1.25;
  font-weight: 700; /* improves scanability */
}

.verdict{
  margin: 0 0 10px;
  color: var(--muted);
}

.card ul{
  margin: 0 0 12px;
  padding-left: 18px;
  color: rgba(31,26,22,0.68);
}

/* CTA: warm, clear, professional */
.cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  border: none;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(181,101,29,0.22);
  transition: transform 140ms ease, background 140ms ease, box-shadow 140ms ease;
}

.cta:hover{
  background: var(--accent-2);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(181,101,29,0.28);
  text-decoration: none;
}

.cta:focus{
  outline: none;
  box-shadow: 0 0 0 4px var(--accent-soft), 0 12px 28px rgba(181,101,29,0.28);
}

/* FAQ: remove boxed look; keep it clean */
details{
  margin-top: 10px;
  background: transparent;
  border: none;
  padding: 0;
}

summary{
  cursor: pointer;
  font-weight: 700;
}

details p{
  margin: 8px 0 0;
  color: var(--muted);
}

/* Footer */
.footer{ margin-top: 40px; }

.disclaimer{
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 85ch;
}

/* Mobile refinements (tap comfort + spacing) */
@media (max-width: 420px){
  .hero{ padding: 16px 14px; }
  .grid{ gap: 20px; }
  .cta{ width: 100%; } /* better tap target */
}

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .card, .cta{ transition: none; }
  .card:hover, .cta:hover{ transform: none; }
}
