@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:ital,wght@0,400;0,600;0,700;1,400&family=Open+Sans:wght@400;500;600&display=swap');

:root {
  --bg: #ffffff;
  --bg-off: #f8f7f4;
  --bg-muted: #f2f0ec;
  --navy: #1e3a5f;
  --navy-light: #2d5180;
  --accent: #1d4ed8;
  --text: #1a1a1a;
  --muted: #5a5a5a;
  --quiet: #8a8a8a;
  --border: #e0ddd8;
  --border-strong: #c8c4be;
  --score-gold: #b8860b;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Open Sans', sans-serif; background: var(--bg); color: var(--text); line-height: 1.7; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

nav {
  background: var(--navy);
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: 54px; position: sticky; top: 0; z-index: 10;
}
.brand a { font-family: 'Crimson Pro', serif; font-size: 20px; font-weight: 600; color: #fff; text-decoration: none; letter-spacing: 0.3px; }
nav .dl {
  background: transparent; color: #fff; font-size: 12px; font-weight: 600;
  padding: 6px 18px; border: 1px solid rgba(255,255,255,0.35);
  letter-spacing: 0.5px; text-transform: uppercase; text-decoration: none;
}
nav .dl:hover { border-color: #fff; }

.hero {
  background: var(--navy);
  padding: 72px 40px 60px;
  border-bottom: 4px solid var(--score-gold);
}
.hero-inner { max-width: 800px; margin: 0 auto; }
.badge {
  display: inline-block; font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.5);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px;
}
h1 {
  font-family: 'Crimson Pro', serif;
  font-size: clamp(34px, 5.5vw, 60px); font-weight: 700;
  color: #fff; line-height: 1.1; margin-bottom: 18px;
}
h1 em { color: var(--score-gold); font-style: italic; }
.lead { font-size: 16px; color: rgba(255,255,255,0.65); max-width: 560px; line-height: 1.7; }

section { max-width: 800px; margin: 0 auto; padding: 56px 40px; }
h2 {
  font-family: 'Crimson Pro', serif;
  font-size: clamp(22px, 3.5vw, 34px); font-weight: 700; color: var(--navy);
  margin: 48px 0 18px; line-height: 1.2;
}
h2:first-child { margin-top: 0; }
p { color: var(--muted); margin-bottom: 16px; font-size: 15px; line-height: 1.75; }
p a { color: var(--accent); }

.review-card {
  margin: 28px 0;
  border: 1px solid var(--border);
  background: var(--bg);
}
.review-card.top { border-left: 4px solid var(--score-gold); }

.review-header {
  padding: 18px 24px;
  background: var(--bg-off);
  border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 12px;
}
.review-label {
  font-size: 10px; font-weight: 600; color: var(--quiet);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 5px;
}
.review-card.top .review-label { color: var(--score-gold); }
.review-name {
  font-family: 'Crimson Pro', serif;
  font-size: 22px; font-weight: 700; color: var(--navy);
}
.review-score {
  font-family: 'Crimson Pro', serif;
  font-size: 34px; font-weight: 700; color: var(--navy); line-height: 1;
  text-align: right;
}
.review-card.top .review-score { color: var(--score-gold); }
.review-stars { font-size: 11px; color: var(--quiet); text-align: right; margin-top: 3px; }
.review-body { padding: 20px 24px; }
.review-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.tag {
  font-size: 11px; font-weight: 600; color: var(--muted);
  border: 1px solid var(--border-strong); padding: 3px 9px;
  border-radius: 3px; background: var(--bg-muted);
}
.review-card.top .tag { color: var(--navy); border-color: var(--navy); background: var(--bg-off); }
.review-body p { font-size: 14px; color: var(--muted); margin-bottom: 12px; }
.badges { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-top: 14px; }
.badges img { height: 40px; }

.cta-box {
  background: var(--navy);
  padding: 40px;
  margin: 40px 0;
  text-align: center;
}
.cta-box h2 { color: #fff; font-family: 'Crimson Pro', serif; font-size: clamp(22px, 3.5vw, 32px); margin: 0 0 10px; }
.cta-box p { color: rgba(255,255,255,0.55); margin-bottom: 18px; font-size: 14px; }
.cta-box .badges { justify-content: center; }

.related-links { margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--border); }
.related-links p { font-size: 13px; color: var(--quiet); margin-bottom: 6px; }
.related-links a { color: var(--muted); font-size: 13px; }
.related-links a:hover { color: var(--navy); }

footer {
  background: var(--bg-off);
  border-top: 1px solid var(--border);
  padding: 24px 40px; text-align: center;
  color: var(--quiet); font-size: 12px;
}
footer a { color: var(--quiet); text-decoration: none; }
footer a:hover { color: var(--navy); }
footer .sep { margin: 0 10px; }

@media (max-width: 600px) {
  nav, footer { padding-left: 20px; padding-right: 20px; }
  .hero { padding: 52px 20px 44px; }
  section { padding: 40px 20px; }
  .review-header { flex-direction: column; }
  .review-score { text-align: left; }
}

/* Image float integration */
.img-float {
  float: right;
  margin: 0 0 1.5rem 2rem;
  max-width: 250px;
  width: 34%;
}
.img-float img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--border-strong);
  border-radius: 4px;
}
.img-float .img-cap {
  font-size: 11px;
  color: var(--quiet);
  margin-top: 7px;
  line-height: 1.4;
  text-align: center;
}
.flow-block { overflow: hidden; }
@media (max-width: 640px) {
  .img-float {
    float: none;
    width: 100%;
    max-width: 220px;
    margin: 0 auto 1.5rem;
    display: block;
  }
}
