@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,700&family=Source+Sans+3:wght@400;500;600;700&display=swap');

:root{
  --cream:#FBF7EF;
  --forest:#0B3D2E;
  --forest-2:#0E4E3A;
  --gold:#E8B923;
  --slate:#1F2A24;
  --slate-soft:#5B685F;
  --line:#DCD4C0;
}

*{box-sizing:border-box;margin:0;padding:0;}

body{
  background:var(--cream);
  color:var(--slate);
  font-family:'Source Sans 3',sans-serif;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:32px 16px;
}

.awning{
  position:fixed;
  top:0; left:0; right:0;
  height:14px;
  background:repeating-linear-gradient(
    90deg,
    var(--forest) 0px, var(--forest) 28px,
    var(--gold) 28px, var(--gold) 56px
  );
}

.wrap{
  width:100%;
  max-width:640px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  margin-top:14px;
}

.badge{
  font-size:13px;
  font-weight:600;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--forest);
  border:1.5px solid var(--forest);
  padding:7px 16px;
  border-radius:4px;
  margin-bottom:24px;
}

.eyebrow{
  font-weight:700;
  font-size:14px;
  letter-spacing:0.06em;
  color:var(--gold);
  background:var(--forest);
  padding:4px 12px;
  border-radius:3px;
  margin-bottom:16px;
}

h1{
  font-family:'Fraunces',serif;
  font-weight:700;
  font-size:clamp(26px,4.6vw,40px);
  line-height:1.2;
  color:var(--forest);
  margin-bottom:14px;
}

.subhead{
  font-family:'Fraunces',serif;
  font-style:italic;
  font-weight:500;
  font-size:17px;
  line-height:1.5;
  color:var(--slate-soft);
  max-width:520px;
  margin-bottom:30px;
}

.card{
  width:100%;
  background:#fff;
  border:1px solid var(--line);
  border-radius:10px;
  padding:28px 26px;
  box-shadow:0 12px 34px rgba(11,61,46,0.08);
  margin-bottom:26px;
}

.stars{
  display:flex;
  justify-content:center;
  gap:6px;
  margin-bottom:16px;
}

.stars span{
  font-size:22px;
  color:var(--line);
  transition:color .35s ease;
}

.stars span.on{
  color:var(--gold);
}

.card-title{
  font-family:'Fraunces',serif;
  font-weight:700;
  font-size:16px;
  color:var(--forest);
  margin-bottom:16px;
}

form{
  display:flex;
  flex-direction:column;
  gap:12px;
}

input{
  width:100%;
  background:var(--cream);
  border:1.5px solid var(--line);
  border-radius:6px;
  padding:13px 14px;
  color:var(--slate);
  font-family:'Source Sans 3',sans-serif;
  font-size:15px;
  outline:none;
  transition:border-color .15s ease;
}

input:focus{
  border-color:var(--forest);
}

button{
  margin-top:4px;
  background:var(--forest);
  color:var(--cream);
  border:none;
  border-radius:6px;
  padding:14px 20px;
  font-family:'Source Sans 3',sans-serif;
  font-weight:700;
  font-size:15px;
  cursor:pointer;
  transition:background .15s ease, transform .12s ease;
}

button:hover{
  background:var(--forest-2);
  transform:translateY(-1px);
}

.disclaimer{
  font-size:12.5px;
  color:var(--slate-soft);
  max-width:440px;
}
