:root{
  --bg:#fff7f3;
  --panel:#fff;
  --rose:#d65a72;
  --rose-deep:#b9445b;
  --deep:#321716;
  --muted:#76534f;
  --line:#efd2cc;
  --gold:#d8a85f;
  --shadow:0 20px 60px rgba(112,45,55,.12);
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:Arial,sans-serif;
  background:linear-gradient(180deg,#fff7f3,#fffaf7 40%,#fff7f3);
  color:var(--deep);
  line-height:1.6;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.review-shell{
  width:min(1120px,92%);
  margin:0 auto;
  padding:22px 0 48px;
  display:grid;
  gap:16px;
}
.review-hero{
  display:grid;
  gap:16px;
  align-items:center;
  background:linear-gradient(135deg,rgba(255,255,255,.94),rgba(255,243,240,.96));
  border:1px solid var(--line);
  border-radius:28px;
  padding:22px;
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
}
.review-hero::after{
  content:"";
  position:absolute;inset:auto -60px -60px auto;
  width:220px;height:220px;border-radius:50%;
  background:radial-gradient(circle,rgba(216,168,95,.18),transparent 65%);
  pointer-events:none;
}
.brand{display:inline-flex;flex-direction:column;line-height:1}
.brand-script{
  font-family:Georgia,serif;
  font-size:42px;
  font-style:italic;
  color:var(--rose);
  animation:floaty 4.5s ease-in-out infinite;
}
.brand-sub{font-size:11px;letter-spacing:6px;font-weight:900;margin-top:6px}
.review-hero-copy h1,.panel-head h1,.panel-head h2{
  font-family:Georgia,serif;
  margin:0;
  line-height:1.05;
}
.review-hero-copy h1{font-size:clamp(36px,6vw,64px);margin:8px 0 12px}
.eyebrow{
  text-transform:uppercase;
  letter-spacing:4px;
  color:var(--rose-deep);
  font-size:12px;
  font-weight:900;
}
.review-hero-copy p,.panel-head p,.help,.meta{color:var(--muted);margin:0}
.hero-actions,.actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:16px;
}
.panel{
  background:rgba(255,255,255,.94);
  border:1px solid var(--line);
  border-radius:24px;
  padding:20px;
  box-shadow:0 14px 36px rgba(112,45,55,.08);
}
.login-grid{
  display:grid;
  gap:14px;
  margin-top:14px;
}
.email-form{
  display:grid;
  gap:10px;
}
label{font-weight:800;font-size:14px;color:var(--deep)}
input[type=email],textarea{
  width:100%;
  border:1px solid #e3d2d0;
  border-radius:16px;
  padding:14px 16px;
  font:inherit;
  background:#fffdfc;
  color:var(--deep);
}
textarea{resize:vertical;min-height:140px}
.btn{
  appearance:none;
  border:0;
  border-radius:999px;
  padding:14px 18px;
  font-weight:900;
  font-size:15px;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}
.btn.primary{
  background:linear-gradient(135deg,var(--rose),var(--rose-deep));
  color:#fff;
  box-shadow:0 14px 28px rgba(214,90,114,.24);
}
.btn.secondary{
  background:#fff;
  color:var(--rose-deep);
  border:1px solid var(--line);
}
.btn.fb{
  background:#1877f2;
  color:#fff;
}
.status{
  min-height:20px;
  font-size:14px;
  color:var(--muted);
}
.criteria-grid{
  display:grid;
  gap:12px;
  margin:16px 0;
}
.criterion{
  border:1px solid var(--line);
  border-radius:18px;
  padding:14px;
  background:#fffdfc;
}
.criterion-head{
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:center;
  margin-bottom:10px;
}
.criterion-title{font-weight:900}
.stars{
  display:flex;
  gap:6px;
  flex-wrap:wrap;
}
.star-btn{
  border:1px solid #e4d4d0;
  background:#fff;
  border-radius:999px;
  min-width:42px;
  min-height:42px;
  color:#d7c5c0;
  font-size:18px;
}
.star-btn.is-on{background:#fff2d9;color:#f0b400;border-color:#f0d38d}
.check{
  display:flex;
  gap:10px;
  align-items:flex-start;
  margin:10px 0 0;
  font-weight:700;
  color:var(--deep);
}
.check input{width:18px;height:18px;margin-top:4px}
.meta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:4px;
}
.review-copy{
  margin-top:18px;
  border-top:1px solid var(--line);
  padding-top:18px;
}
.review-copy h2{font-family:Georgia,serif;margin:0 0 10px}
.thank-you .panel-head h1{font-size:40px}
.thank-you p{white-space:pre-wrap}
@keyframes floaty{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-4px)}
}
@media (min-width: 768px){
  .review-hero{grid-template-columns: .95fr 1.05fr;padding:28px}
  .login-grid{grid-template-columns: 240px 1fr;align-items:start}
  .criteria-grid{grid-template-columns:1fr 1fr}
}
@media (prefers-reduced-motion: reduce){
  .brand-script{animation:none}
}
