.home-hero {
  position: relative;
  min-height: 326px;
  overflow: hidden;
  color: white;
  background: var(--forest);
}

.home-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
}

.home-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 31, 26, 0.04) 18%, rgba(14, 31, 26, 0.82) 100%);
}

.home-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 326px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 92px 28px 28px;
}

.home-hero__content p {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
  font-size: 13px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #72c782;
  box-shadow: 0 0 0 4px rgba(114, 199, 130, 0.14);
}

.home-hero h1 {
  margin-bottom: 22px;
  font: 700 35px/1.24 var(--font-editorial);
  letter-spacing: -0.03em;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 18px 16px 13px;
}

.quick-entry {
  display: grid;
  gap: 7px;
  place-items: center;
  border: 0;
  color: var(--forest);
  background: transparent;
}

.quick-entry span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 18px;
  background: var(--forest-soft);
  font: 28px/1 var(--font-editorial);
}

.quick-entry strong {
  font-size: 12px;
  font-weight: 500;
}

.home-section {
  padding: 8px 18px 0;
}

.home-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 18px;
}

.home-pair button {
  display: flex;
  min-height: 148px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 18px;
  border: 0;
  border-radius: var(--radius-md);
  text-align: left;
}

.home-pair small {
  margin-bottom: 20px;
  font-size: 11px;
}

.home-pair strong {
  margin-bottom: 6px;
  font-size: 19px;
}

.home-pair span {
  margin-top: auto;
  font-size: 12px;
  line-height: 1.5;
  opacity: 0.78;
}

.paper-card {
  color: var(--forest);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.forest-card {
  color: white;
  background: var(--forest);
}

.calendar-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  padding: 0 18px 18px;
}

.calendar-toolbar label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 11px;
}

.calendar-toolbar select {
  min-height: 38px;
  padding: 0 28px 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--forest);
  background: var(--paper);
  font-size: 12px;
}

.date-rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px;
  padding: 0 18px 18px;
}

.date-rail button {
  display: grid;
  gap: 2px;
  place-items: center;
  border: 0;
  border-radius: 18px;
  color: var(--muted);
  background: rgba(255, 253, 248, 0.58);
}

.date-rail button.active {
  color: white;
  background: var(--forest);
}

.date-rail small {
  font-size: 10px;
}

.date-rail strong {
  font-size: 17px;
}

.activity-list {
  display: grid;
  gap: 14px;
  padding: 0 18px 20px;
}

.activity-card.compact {
  grid-template-columns: 36% 1fr;
}

.activity-card.compact img {
  min-height: 168px;
}

.filter-empty {
  padding: 44px 22px;
  color: var(--muted);
  text-align: center;
}

.activity-detail {
  background: var(--paper);
}

.detail-cover {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.detail-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.detail-cover > span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--forest);
  background: var(--gold);
  font-size: 11px;
  font-weight: 700;
}

.detail-sheet {
  position: relative;
  z-index: 1;
  margin-top: -18px;
  padding: 26px 22px 34px;
  border-radius: 24px 24px 0 0;
  background: var(--paper);
}

.detail-date {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
}

.detail-sheet > h1 {
  margin-bottom: 10px;
  color: var(--forest);
  font: 700 30px/1.25 var(--font-editorial);
}

.detail-lead {
  color: var(--muted);
  font-size: 14px;
}

.detail-facts {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 18px 0;
  border-block: 1px solid var(--line);
}

.detail-facts div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
}

.detail-facts dt {
  display: flex;
  gap: 7px;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
}

.detail-facts .icon {
  width: 17px;
  height: 17px;
}

.detail-facts dd {
  margin: 0;
  font-size: 13px;
}

.detail-section {
  padding: 12px 0;
}

.detail-section h2 {
  color: var(--forest);
  font-size: 17px;
}

.detail-section p,
.detail-section li {
  color: var(--muted);
  font-size: 13px;
}

.sticky-action,
.form-submit {
  width: 100%;
  margin-top: 18px;
}

.registration-summary {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 15px;
  margin: 0 18px 18px;
  padding: 12px;
  border-radius: var(--radius-md);
  background: var(--paper);
}

.registration-summary img {
  width: 100px;
  height: 84px;
  border-radius: 13px;
  object-fit: cover;
}

.registration-summary h2 {
  margin-bottom: 7px;
  color: var(--forest);
  font-size: 16px;
}

.registration-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.form-card {
  display: grid;
  gap: 18px;
  margin: 0 18px;
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.form-field {
  display: grid;
  gap: 7px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 700;
}

.form-field input {
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fbf8f1;
  font-size: 14px;
  font-weight: 400;
}

.check-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 12px;
}

.check-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--forest);
}

.checkin-intro {
  text-align: center;
}

.checkin-intro h1 {
  margin: 10px 0 4px;
  font: 700 42px/1 var(--font-sans);
  letter-spacing: 0.18em;
}

.checkin-intro > span {
  color: var(--muted);
  font-size: 11px;
}

.checkin-panel {
  display: grid;
  gap: 20px;
  margin: 10px 18px;
}

.checkin-mark {
  display: grid;
  min-height: 180px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  color: var(--forest);
  background: var(--paper);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.checkin-mark .icon {
  width: 72px;
  height: 72px;
  stroke-width: 1.4;
}

.checkin-panel > button {
  width: 100%;
}

.screen-footnote {
  padding: 0 30px 28px;
  text-align: center;
}

.menu-hero {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  color: white;
}

.menu-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.menu-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(18, 43, 36, 0.88));
  content: "";
}

.menu-hero > div {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 22px;
  left: 22px;
}

.menu-hero p {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 6px;
  font-size: 12px;
}

.menu-hero h1 {
  margin: 0;
  font: 700 31px/1.2 var(--font-editorial);
}

.menu-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 24px 22px 12px;
}

.menu-heading p {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 11px;
}

.menu-heading h2 {
  margin: 0;
  color: var(--forest);
  font: 700 24px var(--font-editorial);
}

.menu-heading > span {
  color: var(--muted);
  font-size: 10px;
}

.menu-list {
  display: grid;
  gap: 1px;
  margin: 0 18px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--line);
}

.menu-item {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  background: var(--paper);
}

.menu-item small {
  color: var(--muted);
  font-size: 10px;
}

.menu-item h2 {
  margin: 2px 0;
  color: var(--forest);
  font-size: 17px;
}

.menu-item p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.menu-item > strong {
  color: var(--brick);
  white-space: nowrap;
  font-size: 17px;
}

.menu-list > .demo-note {
  margin: 0;
  padding: 10px 16px;
  background: var(--paper);
  text-align: right;
}

.venue-panel {
  margin: 18px;
  padding: 19px;
  border-radius: var(--radius-md);
  background: var(--paper);
}

.venue-panel > div:first-child {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.venue-panel p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.venue-panel > button {
  width: 100%;
  margin-top: 16px;
}

.location-detail {
  margin-top: 14px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
}

.rights-intro {
  padding-bottom: 10px;
}

.rights-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin: 0 18px 18px;
  padding: 4px;
  border-radius: 999px;
  background: var(--forest-soft);
}

.rights-tabs button {
  min-height: 36px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font-size: 11px;
}

.rights-tabs button.active {
  color: white;
  background: var(--forest);
}

.rights-list {
  display: grid;
  gap: 14px;
  padding: 0 18px;
}

.right-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.right-card.available {
  border-color: transparent;
  box-shadow: var(--shadow-soft);
}

.right-card.used,
.right-card.expired {
  opacity: 0.66;
}

.right-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.right-card header span {
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--forest);
  background: var(--gold-soft);
  font-size: 10px;
  font-weight: 700;
}

.right-card header small {
  color: var(--muted);
  font-size: 10px;
}

.right-card h2 {
  margin: 18px 0 5px;
  color: var(--forest);
  font-size: 18px;
}

.right-card > strong {
  display: block;
  color: var(--brick);
  font-size: 22px;
}

.right-card p {
  color: var(--muted);
  font-size: 11px;
}

.right-card button {
  width: 100%;
  margin-top: 8px;
}

.rights-note {
  margin: 18px;
  padding: 18px;
  border-radius: var(--radius-md);
  color: var(--forest);
  background: var(--gold-soft);
}

.rights-note p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.charity-hero {
  padding: 34px 22px 26px;
  color: white;
  background: var(--forest);
}

.charity-hero > p {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.charity-hero > h1 {
  margin-bottom: 28px;
  font: 700 30px/1.28 var(--font-editorial);
}

.charity-hero > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.charity-hero span {
  display: grid;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
}

.charity-hero span strong {
  color: white;
  font-size: 23px;
}

.record-section {
  padding: 24px 22px 10px;
}

.record-section > header,
.community-columns > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.record-section h2,
.community-columns h2 {
  margin: 0;
  color: var(--forest);
  font-size: 19px;
}

.record-section > header span,
.community-columns > header button {
  border: 0;
  color: var(--muted);
  background: transparent;
  font-size: 11px;
}

.record-timeline {
  position: relative;
  display: grid;
  gap: 0;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.record-timeline::before {
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 82px;
  width: 1px;
  background: var(--line-strong);
  content: "";
}

.record-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 20px;
  align-items: start;
  padding: 13px 0;
}

.record-timeline li::before {
  position: absolute;
  top: 19px;
  left: 78px;
  width: 7px;
  height: 7px;
  border: 2px solid var(--cream);
  border-radius: 50%;
  background: var(--forest);
  content: "";
}

.record-timeline time,
.record-timeline small,
.record-timeline p {
  color: var(--muted);
  font-size: 10px;
}

.record-timeline h3 {
  margin: 2px 0 0;
  color: var(--forest);
  font-size: 14px;
}

.record-timeline p {
  margin: 2px 0 0;
}

.record-timeline > li > strong {
  color: var(--brick);
  font-size: 12px;
}

.record-timeline .new-record {
  margin-bottom: 6px;
  padding-inline: 10px;
  border-radius: var(--radius-sm);
  background: var(--gold-soft);
}

.record-timeline .new-record::before {
  left: 88px;
  background: var(--brick);
}

.annual-review,
.privacy-strip {
  margin: 12px 18px;
  padding: 20px;
  border-radius: var(--radius-md);
}

.annual-review {
  color: var(--forest);
  background: var(--paper);
}

.annual-review p,
.privacy-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.annual-review h2 {
  margin: 6px 0 16px;
  font-size: 18px;
}

.annual-review > button {
  width: 100%;
}

.annual-preview {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.privacy-strip {
  color: var(--forest);
  background: var(--gold-soft);
}

.community-heading {
  padding: 32px 22px 18px;
}

.community-heading p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
}

.community-heading h1 {
  margin: 0;
  color: var(--forest);
  font: 700 30px var(--font-editorial);
}

.lead-story {
  margin: 0 18px;
  overflow: hidden;
  border-radius: var(--radius-md);
  color: white;
  background: var(--forest);
}

.lead-story img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.lead-story > div {
  padding: 20px;
}

.lead-story small,
.secondary-story small {
  color: var(--gold);
  font-size: 10px;
}

.lead-story h2 {
  margin: 5px 0 8px;
  font: 700 20px/1.35 var(--font-editorial);
}

.lead-story p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.lead-story .text-action {
  color: var(--gold);
}

.community-columns {
  padding: 26px 18px 10px;
}

.community-columns > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.community-columns article {
  padding: 17px;
  border-radius: var(--radius-md);
  background: var(--paper);
}

.community-columns small {
  color: var(--brick);
  font-size: 10px;
}

.community-columns h3 {
  margin: 8px 0 4px;
  color: var(--forest);
  font-size: 16px;
}

.community-columns p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.secondary-story {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 12px;
  margin: 10px 18px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--paper);
}

.secondary-story h2 {
  margin: 6px 0;
  color: var(--forest);
  font-size: 17px;
}

.secondary-story p {
  color: var(--muted);
  font-size: 11px;
}

.secondary-story img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.public-feedback {
  margin: 18px;
  padding: 22px;
  border-radius: var(--radius-md);
  color: var(--forest);
  background: var(--gold-soft);
}

.public-feedback p,
.next-visit p {
  margin-bottom: 4px;
  color: var(--brick);
  font-size: 10px;
}

.public-feedback h2,
.next-visit h2 {
  margin-bottom: 7px;
  font-size: 18px;
}

.public-feedback span {
  color: var(--muted);
  font-size: 11px;
}

.next-visit {
  margin: 18px;
  padding: 22px;
  border-radius: var(--radius-md);
  color: white;
  background: var(--forest);
}

.next-visit .primary {
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.profile-hero {
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 30px 22px 18px;
}

.profile-hero > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--forest);
  font: 700 24px var(--font-editorial);
}

.profile-hero p {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 11px;
}

.profile-hero h1 {
  margin: 0;
  color: var(--forest);
  font: 700 25px var(--font-editorial);
}

.profile-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 18px 16px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--paper);
}

.profile-summary button {
  display: grid;
  gap: 2px;
  place-items: center;
  padding: 14px 8px;
  border: 0;
  background: transparent;
}

.profile-summary strong {
  color: var(--forest);
  font-size: 21px;
}

.profile-summary span {
  color: var(--muted);
  font-size: 11px;
}

.settings-list {
  display: grid;
  margin: 0 18px 16px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--paper);
}

.settings-list button {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 0 17px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
}

.settings-list button:last-child {
  border-bottom: 0;
}

.settings-list span {
  color: var(--forest);
  font-size: 13px;
}

.settings-list small {
  color: var(--muted);
  font-size: 10px;
}

.profile-panel {
  margin: -6px 18px 16px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  color: var(--forest);
  background: var(--gold-soft);
}

.profile-panel p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.feedback-card,
.demo-console {
  margin: 0 18px 16px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--paper);
}

.feedback-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.feedback-card p,
.demo-console > small,
.demo-console > p {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 10px;
}

.feedback-card h2 {
  margin: 0;
  color: var(--forest);
  font-size: 15px;
}

.demo-console {
  color: white;
  background: var(--forest);
}

.demo-console > .demo-role-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 13px;
}

.demo-console button {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: white;
  background: transparent;
  font-size: 11px;
}

.demo-console .reset-demo {
  width: 100%;
  margin-top: 8px;
  color: var(--forest);
  background: var(--gold);
  font-weight: 700;
}

.demo-state-grid {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.demo-state-grid article {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 13px;
}

.demo-state-grid span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
}

.demo-state-grid strong {
  color: white;
  font-size: 11px;
}

.demo-state-grid article > div {
  display: flex;
  gap: 4px;
}

.demo-state-grid button {
  min-height: 30px;
  padding: 0 8px;
  border-color: rgba(255, 255, 255, 0.18);
  font-size: 9px;
}

.demo-state-grid button.active {
  color: var(--forest);
  background: var(--gold);
}

.demo-network-note {
  margin: 10px 0 0 !important;
  padding: 10px 12px;
  border-radius: 10px;
  color: white !important;
  background: rgba(177, 72, 56, 0.34);
}
