/* Fonts: DM Sans + Merriweather */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Merriweather:wght@700;900&display=swap');

:root {
  --brand: #c45628;
  --brand-dark: #933916;
  --brand-soft: #f2d8cb;
  --accent: #405f53;
  --sand: #f6f1e8;
  --bg: #f7f4ee;
  --card: #ffffff;
  --text: #1d1c1a;
  --muted: #676e73;
  --border: #ddd6c7;
  --shadow: 0 14px 40px rgba(28, 24, 18, 0.08);
  --radius: 14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(196, 86, 40, 0.08), transparent 28%),
    linear-gradient(180deg, #fbf8f2 0%, #f4efe6 100%);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Merriweather', serif; line-height: 1.2; }
h1 { font-size: clamp(2rem, 4.6vw, 3.9rem); font-weight: 900; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; margin-bottom: .6em; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin-bottom: 1rem; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }

.site-nav {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(29, 28, 26, 0.08);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.logo {
  font-family: 'Merriweather', serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: .01em;
}
.logo span { color: var(--brand); }
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 10px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
}
.nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--text);
  font-weight: 600;
  font-size: .95rem;
}
.nav-links a:hover,
.nav-links a.active { color: var(--brand); }

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 88px 0 78px;
  background:
    linear-gradient(135deg, rgba(20, 20, 18, 0.86), rgba(38, 28, 20, 0.74)),
    url('https://images.unsplash.com/photo-1686715692509-8cb69d40d081?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero::after {
  content: '';
  position: absolute;
  inset: auto -10% -35% auto;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(196, 86, 40, 0.34), transparent 64%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .8fr);
  gap: 30px;
  align-items: end;
}
.hero-copy p {
  color: rgba(255,255,255,0.82);
  font-size: 1.08rem;
  max-width: 720px;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.hero-panel {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 22px;
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.18);
}
.hero-panel h3 {
  font-family: 'DM Sans', system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  margin-bottom: 10px;
  color: #f3d7c8;
}
.hero-panel ul {
  list-style: none;
  display: grid;
  gap: 10px;
  color: rgba(255,255,255,0.86);
  font-size: .96rem;
}

.cta-btn {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .96rem;
  border: 2px solid var(--brand);
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
}
.cta-btn:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
  transform: translateY(-1px);
}
.cta-btn.secondary {
  background: transparent;
  color: var(--brand);
  border-color: rgba(196, 86, 40, 0.34);
}
.cta-btn.secondary:hover {
  background: var(--brand);
  color: #fff;
}
.hero .cta-btn.secondary {
  color: #fff;
  border-color: rgba(255,255,255,0.24);
}
.hero .cta-btn.secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.32);
}

.section { padding: 54px 0; }
.section-alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.56), rgba(255,255,255,0.2));
  border-top: 1px solid rgba(29, 28, 26, 0.06);
  border-bottom: 1px solid rgba(29, 28, 26, 0.06);
}
.section-intro {
  max-width: 760px;
  margin-bottom: 28px;
}
.section-intro p,
.prose p,
.review-summary p,
.about-content p { color: var(--muted); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.card {
  background: linear-gradient(180deg, #fff, #fbfaf7);
  border: 1px solid rgba(64, 95, 83, 0.12);
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.card p { color: var(--muted); font-size: .95rem; }
.card-link {
  display: inline-block;
  margin-top: 14px;
  font-weight: 700;
}
.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: -30px;
  position: relative;
  z-index: 2;
}
.metric {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(29, 28, 26, 0.06);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.metric strong {
  display: block;
  font-size: 1.6rem;
  font-family: 'Merriweather', serif;
  color: var(--text);
}
.metric span {
  display: block;
  color: var(--muted);
  font-size: .86rem;
  margin-top: 4px;
}

.review-section { padding: 54px 0; }
.review-summary {
  max-width: 760px;
  margin-bottom: 28px;
}
.product-card {
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(29, 28, 26, 0.08);
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 26px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
  box-shadow: var(--shadow);
}
.product-card.top-pick {
  border: 2px solid rgba(196, 86, 40, 0.72);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(242,216,203,0.26));
  position: relative;
}
.product-card.top-pick::before {
  content: 'Top Pick';
  position: absolute;
  top: -13px;
  left: 22px;
  background: var(--brand);
  color: #fff;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.product-media {
  display: flex;
  align-items: stretch;
}
.product-card img,
.product-art {
  width: 100%;
  min-height: 220px;
  border-radius: 14px;
}
.product-card img {
  object-fit: cover;
  background: #efe8dd;
}
.product-art {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(64,95,83,0.12), rgba(196,86,40,0.14)),
    linear-gradient(180deg, #fff, #f7f0e6);
  border: 1px solid rgba(64,95,83,0.08);
}
.product-art span {
  display: block;
  font-family: 'Merriweather', serif;
  font-size: 1.2rem;
  color: var(--text);
}
.product-art small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: .86rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.brand-tag {
  display: inline-block;
  background: #eee7dd;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}
.rating {
  color: var(--brand);
  font-weight: 700;
  margin-bottom: 10px;
}
.product-card ul { padding-left: 18px; margin: 10px 0 6px; }
.product-card li { margin-bottom: 5px; font-size: .95rem; }
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.prose {
  max-width: 840px;
}
.review-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 28px;
  align-items: start;
}
.review-main {
  min-width: 0;
}
.page-sidebar {
  position: sticky;
  top: 92px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(29, 28, 26, 0.08);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.page-sidebar h3 {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
  margin-bottom: 12px;
}
.page-sidebar ul {
  list-style: none;
  display: grid;
  gap: 10px;
}
.page-sidebar a {
  color: var(--text);
  font-weight: 600;
  font-size: .94rem;
}
.page-sidebar a:hover {
  color: var(--brand);
}
.note-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.note-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(29, 28, 26, 0.07);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
}
.note-card h3 { margin-bottom: 8px; }
.note-card p { color: var(--muted); font-size: .94rem; margin-bottom: 0; }

.about-content {
  padding: 54px 0;
  max-width: 820px;
}

.site-footer {
  background: #171614;
  color: #a6a29b;
  padding: 42px 0 30px;
  font-size: .85rem;
  text-align: center;
  margin-top: 18px;
}
.site-footer a { color: #ddd6cb; }
.site-footer a:hover { color: #fff; }
.network-links { margin-bottom: 20px; line-height: 2; }
.network-links span { margin: 0 6px; }
.footer-disclosure {
  max-width: 760px;
  margin: 16px auto 0;
  font-size: .78rem;
  color: #8d877f;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .hero-grid,
  .note-grid,
  .metric-strip,
  .review-layout { grid-template-columns: 1fr; }
  .metric-strip { margin-top: 28px; }
  .product-card { grid-template-columns: 1fr; }
  .page-sidebar {
    position: static;
    order: -1;
  }
}

@media (max-width: 760px) {
  .site-nav .container { flex-wrap: wrap; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 10px;
  }
  .nav-links.open { display: flex; }
  .hero { padding: 68px 0 56px; }
  .hero-actions,
  .product-actions { flex-direction: column; align-items: stretch; }
  .cta-btn,
  .product-actions .cta-btn { text-align: center; }
}
