:root {
  /* fresh summer-in-Florida palette: palm green, ocean teal, mango, coral, sand */
  --cream: #fbfaf1;
  --ink: #22332b;
  --soft: #5f7268;
  --green: #2f9e6e;
  --green-dark: #157a5b;
  --teal: #2aa7a0;
  --tomato: #ee6c4d;
  --gold: #f4a83a;
  --card: #ffffff;
  --line: #dfe9dc;
  --radius: 14px;
}

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

body {
  font-family: Georgia, 'Times New Roman', serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 680px; margin: 0 auto; padding: 0 20px; }

header.site {
  background: linear-gradient(135deg, #157a5b, #2aa7a0);
  color: #f5fbf4;
  text-align: center;
  padding: 34px 20px 30px;
}
header.site a { color: inherit; text-decoration: none; }
.brand-mark { font-size: 2rem; line-height: 1; margin-bottom: 8px; }
h1.brand {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.tagline {
  font-style: italic;
  color: #d3f2df;
  font-size: 0.98rem;
  margin-top: 6px;
}

main { padding: 30px 0 10px; }

section { margin-bottom: 38px; }

h2 {
  font-size: 1.35rem;
  color: var(--green-dark);
  margin-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
  padding-bottom: 3px;
}

p { margin-bottom: 14px; }
.muted { color: var(--soft); font-size: 0.92rem; }

.photo-frame {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  margin: 0 0 26px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(45, 42, 36, 0.06);
}
.photo-frame img, .photo-frame svg { width: 100%; border-radius: 10px; display: block; }
.photo-frame figcaption { font-style: italic; color: var(--soft); font-size: 0.9rem; padding-top: 8px; }

.mission {
  background: var(--card);
  border-left: 4px solid var(--tomato);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 20px;
  font-style: italic;
  font-size: 1.05rem;
  box-shadow: 0 2px 10px rgba(45, 42, 36, 0.06);
}

.dish-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(45, 42, 36, 0.06);
}
.dish-card h3 { font-size: 1.15rem; color: var(--green-dark); }
.dish-card .when { color: var(--tomato); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.dish-card .avg { margin: 8px 0 4px; font-size: 1.05rem; }
.dish-card .stars-display { color: var(--gold); letter-spacing: 2px; }
.dish-card a.btn { margin-top: 10px; }

a.btn, button.btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 1rem;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
}
a.btn:hover, button.btn:hover { background: var(--green-dark); }
button.btn:disabled { background: #a8a396; cursor: default; }

.ingredients {
  background: #eef6ec;
  border-radius: var(--radius);
  padding: 16px 20px 16px 38px;
  margin-bottom: 14px;
}
.ingredients li { margin-bottom: 4px; }

/* rating form */
.rate-box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 2px 10px rgba(45, 42, 36, 0.06);
}
.star-row { display: flex; gap: 6px; margin: 10px 0 18px; }
.star-row button {
  background: none;
  border: none;
  font-size: 2.3rem;
  line-height: 1;
  cursor: pointer;
  color: #cde0d0;
  padding: 4px;
}
.star-row button.lit { color: var(--gold); }
label { display: block; font-size: 0.92rem; color: var(--soft); margin-bottom: 4px; }
input[type="text"], textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  margin-bottom: 14px;
}
textarea { min-height: 90px; resize: vertical; }

.consent { margin-bottom: 16px; }
.consent .radio {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: var(--ink);
  font-size: 0.95rem;
  margin-bottom: 6px;
  cursor: pointer;
}
.consent input { margin-top: 5px; }

.recipe-box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 2px 10px rgba(45, 42, 36, 0.06);
}
.recipe-box ol { padding-left: 22px; }
.recipe-box ol li { margin-bottom: 8px; }

.thanks {
  background: #e8f6ee;
  border: 1px solid #bfe3cc;
  border-radius: var(--radius);
  padding: 18px 20px;
  color: var(--green-dark);
  font-size: 1.05rem;
}

.review {
  border-top: 1px solid var(--line);
  padding: 12px 0;
}
.review .who { font-size: 0.88rem; color: var(--soft); }
.review .stars-display { color: var(--gold); letter-spacing: 2px; }

footer.site {
  text-align: center;
  color: var(--soft);
  font-size: 0.88rem;
  padding: 26px 20px 40px;
  border-top: 1px solid var(--line);
  margin-top: 20px;
}
footer.site .verse { font-style: italic; margin-bottom: 6px; }
