@font-face { font-family: "Rubik"; src: url("assets/Rubik-Regular.ttf") format("truetype"); font-weight: 400; }
@font-face { font-family: "Rubik"; src: url("assets/Rubik-Bold.ttf") format("truetype"); font-weight: 700; }

:root {
  --navy: #07395d;
  --teal: #0f9b96;
  --coral: #ef604f;
  --yellow: #f5bd32;
  --cream: #fff9eb;
  --muted: #617789;
  font-family: "Rubik", Arial, sans-serif;
}

* { box-sizing: border-box; }
body { margin: 0; color: var(--navy); background: var(--cream); }

.review-hero {
  padding: 54px 24px 48px;
  background: radial-gradient(circle at 84% 18%, rgba(245,189,50,.48), transparent 22%), radial-gradient(circle at 10% 94%, rgba(15,155,150,.2), transparent 30%), #edf7f4;
  border-bottom: 1px solid #d6e2df;
}

.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.eyebrow { margin: 0 0 8px; color: var(--coral); font-size: .8rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
h1 { margin: 0; font-size: clamp(2.8rem, 7vw, 5.6rem); line-height: 1; }
.lede { max-width: 760px; margin: 20px 0 0; color: #425f72; font-size: 1.2rem; line-height: 1.6; }
.back { display: inline-block; margin-bottom: 30px; color: var(--navy); font-weight: 700; text-decoration: none; }
.back:hover { color: var(--teal); }
.status-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.status-row span { padding: 10px 16px; border-radius: 999px; background: white; border: 1px solid #ccdedb; color: var(--muted); font-size: .92rem; }
.status-row .ready { background: #dff3ef; border-color: #97d2c8; color: #076e68; font-weight: 700; }

main { padding: 48px 0 70px; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 22px; }
.section-head h2 { margin: 0; font-size: 2rem; }
.section-head p { margin: 0; color: var(--muted); }
.page-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 28px; }
.unit-section + .unit-section { margin-top: 64px; padding-top: 58px; border-top: 1px solid #d9e1df; }
.preview-card { overflow: hidden; border-radius: 24px; background: white; border: 1px solid #d7e0de; box-shadow: 0 18px 45px rgba(7,57,93,.1); }
.preview-card a { display: block; background: #e7ecee; }
.preview-card img { display: block; width: 100%; aspect-ratio: 1240/1754; object-fit: cover; object-position: top; }
.preview-card footer { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 18px 20px; }
.preview-card h3 { margin: 0; font-size: 1.2rem; }
.preview-card p { margin: 4px 0 0; color: var(--muted); font-size: .93rem; }
.badge { padding: 7px 12px; border-radius: 999px; background: #dff3ef; color: #07706b; font-size: .82rem; font-weight: 700; }

.complete-note { display: flex; justify-content: space-between; gap: 16px; margin-top: 56px; padding: 24px; border: 2px solid #97d2c8; border-radius: 22px; background: #dff3ef; color: #076e68; }
.complete-note span { color: #357871; }
.site-footer { padding: 26px; text-align: center; color: var(--muted); border-top: 1px solid #d9e1df; }

@media (max-width: 760px) {
  .page-grid { grid-template-columns: 1fr; }
  .section-head { align-items: start; flex-direction: column; }
  .complete-note { flex-direction: column; }
}
