:root {
  --bg: #f4efe4;
  --paper: #fffaf0;
  --ink: #17262b;
  --muted: #647074;
  --line: #e3d8c4;
  --green: #14343d;
  --accent: #d75b39;
  --gold: #f5c86b;
  --blue: #0a6b9b;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.35;
}

button, a.button {
  border: 0;
  border-radius: 8px;
  background: var(--green);
  color: white;
  min-height: 42px;
  padding: 0 14px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

button.secondary, a.secondary {
  background: #e9f2f2;
  color: #17414b;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  background: rgba(20, 52, 61, .96);
  color: white;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .18);
}

.topbar h1 { font-size: 20px; margin: 0; }
.eyebrow, .label { margin: 0 0 4px; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; font-weight: 900; color: var(--gold); }
.iconButton { background: #ffffff22; border: 1px solid #ffffff33; min-height: 36px; }

main { width: min(980px, 100%); margin: 0 auto; padding: 16px; }

.hero {
  min-height: 260px;
  border-radius: 10px;
  padding: 22px;
  background:
    linear-gradient(110deg, rgba(18, 41, 48, .92), rgba(18, 41, 48, .48)),
    url("./assets/sugarlands.jpg") center/cover;
  color: white;
  display: grid;
  gap: 18px;
  align-items: end;
}

.hero h2 { font-size: clamp(27px, 5vw, 42px); margin: 0 0 10px; max-width: 760px; }
.hero p { margin: 0; max-width: 720px; color: #fff1d4; }

.statusPanel {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  padding: 12px;
  border-radius: 8px;
}

.notice {
  margin: 14px 0;
  border-radius: 8px;
  padding: 12px 14px;
  background: #fff0c7;
  border: 1px solid #e6c46b;
}

section { margin: 22px 0; }
.sectionHeader { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 10px; }
.sectionHeader h2, .feedback h2 { margin: 0; font-size: 22px; }
.pill { border-radius: 999px; padding: 5px 9px; background: #eaf4f5; color: #245463; font-size: 12px; font-weight: 900; text-transform: uppercase; white-space: nowrap; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 12px; }
.card, .agendaItem, .feedback {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
}

.card h3, .agendaItem h3 { margin: 0 0 6px; font-size: 17px; }
.meta { color: var(--muted); font-size: 13px; margin-bottom: 8px; }
.price { font-weight: 900; color: #8e321f; }
.review { background: #eef6f4; border-left: 4px solid #3f7d6d; padding: 8px 10px; border-radius: 4px; margin: 9px 0; font-size: 13px; }

.buttonRow { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.agenda { display: grid; gap: 10px; }
.agendaItem { display: grid; grid-template-columns: 82px 1fr; gap: 12px; align-items: start; }
.time { font-weight: 900; color: var(--accent); }

.linkGrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 10px; }
.linkGrid a { background: white; border: 1px solid var(--line); border-radius: 8px; padding: 12px; color: var(--blue); font-weight: 900; text-decoration: none; }

textarea {
  width: 100%;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px;
  font: inherit;
  margin-top: 8px;
}

label { display: block; font-weight: 900; margin-top: 8px; }
.muted { color: var(--muted); font-size: 13px; }

footer {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 18px 16px 28px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
}

@media (max-width: 560px) {
  .agendaItem { grid-template-columns: 1fr; }
  .topbar { align-items: flex-start; }
}
