:root {
  color-scheme: light;
  --ink: #06144f;
  --muted: #60729a;
  --paper: #f3f8ff;
  --panel: #ffffff;
  --line: #dbe8f7;
  --line-strong: #b6cceb;
  --ally-red: #1267ff;
  --mint: #22c5d6;
  --blue: #061ee8;
  --coral: #ff5a64;
  --yellow: #7657f2;
  --green: #16b9c8;
  --shadow: 0 18px 60px rgba(6, 20, 79, 0.12);
  --soft-shadow: 0 24px 80px rgba(6, 20, 79, 0.1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #ffffff 0, var(--paper) 420px),
    var(--paper);
  color: var(--ink);
}

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(182, 204, 235, 0.68);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 12px clamp(18px, 4vw, 56px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(182, 204, 235, 0.6);
  border-radius: 8px;
  display: block;
  height: 54px;
  object-fit: contain;
  padding: 4px;
  width: 72px;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  gap: clamp(6px, 1vw, 14px);
  font-size: 0.88rem;
}

.nav-links a {
  align-items: center;
  border-radius: 999px;
  color: rgba(6, 20, 79, 0.78);
  display: inline-flex;
  font-weight: 750;
  min-height: 44px;
  padding: 8px 10px;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a[aria-current="page"] {
  background: var(--ink);
  color: var(--paper);
}

.anniversary-banner {
  align-items: center;
  background:
    linear-gradient(90deg, var(--ally-red), var(--mint) 48%, var(--ink));
  color: #ffffff;
  display: grid;
  gap: 6px 18px;
  grid-template-columns: auto 1fr auto;
  padding: 14px clamp(18px, 4vw, 56px);
  position: relative;
  text-decoration: none;
  z-index: 10;
}

.anniversary-banner::after {
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  content: "";
  inset: 0;
  position: absolute;
  transform: translateX(-100%);
  animation: anniversarySheen 5s ease-in-out infinite;
}

.anniversary-banner > * {
  position: relative;
  z-index: 1;
}

.anniversary-kicker {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  padding: 7px 10px;
  text-transform: uppercase;
  white-space: nowrap;
}

.anniversary-banner strong {
  font-size: clamp(1.05rem, 2vw, 1.42rem);
  line-height: 1.05;
}

.anniversary-banner span:last-child {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 850;
  justify-self: end;
  white-space: nowrap;
}

.anniversary-banner.is-hidden {
  display: none;
}

@keyframes anniversarySheen {
  0%,
  62% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.hero {
  display: grid;
  min-height: min(760px, calc(88vh - 72px));
  overflow: hidden;
  position: relative;
}

.compact-hero {
  min-height: min(620px, calc(78vh - 72px));
}

.hero-image {
  --hero-photo: url("https://commons.wikimedia.org/wiki/Special:FilePath/Almere%2C_skyline_met_het_Weerwater_foto5_2014-03-09_16.08.jpg");
  background:
    linear-gradient(90deg, rgba(6, 20, 79, 0.8), rgba(6, 20, 79, 0.42) 45%, rgba(6, 20, 79, 0.12)),
    linear-gradient(0deg, rgba(6, 20, 79, 0.45), transparent 44%),
    var(--hero-photo);
  background-position: center;
  background-size: cover;
  inset: 0;
  position: absolute;
  transition: background-image 700ms ease;
}

.hero-content {
  align-self: end;
  color: #ffffff;
  max-width: 850px;
  padding: min(14vh, 110px) clamp(20px, 6vw, 80px) 9vh;
  position: relative;
}

.eyebrow {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--yellow);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.55rem, 5.8vw, 6rem);
  letter-spacing: 0;
  line-height: 0.94;
  margin-bottom: 20px;
  max-width: 760px;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 3rem);
  letter-spacing: 0;
  line-height: 0.98;
  margin-bottom: 0;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.15;
  margin-bottom: 10px;
}

.hero-lede {
  font-size: clamp(1rem, 1.65vw, 1.24rem);
  line-height: 1.45;
  max-width: 650px;
}

.page-hero {
  background:
    linear-gradient(135deg, rgba(18, 103, 255, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff, var(--paper));
  border-bottom: 1px solid var(--line);
  padding: clamp(38px, 7vw, 86px) clamp(18px, 5vw, 72px) clamp(28px, 5vw, 58px);
}

.page-hero h1 {
  color: var(--ink);
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  margin-bottom: 18px;
}

.page-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  line-height: 1.5;
  max-width: 760px;
}

.hero-actions,
.submit-band {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-action,
.secondary-action {
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  text-decoration: none;
}

.primary-action {
  background: var(--ally-red);
  box-shadow: 0 14px 32px rgba(18, 103, 255, 0.24);
  color: #ffffff;
}

.secondary-action {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #ffffff;
}

.intro-band {
  background: var(--ink);
  color: var(--paper);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.quick-grid,
.preview-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, 1fr);
  padding: clamp(28px, 5vw, 64px) clamp(18px, 5vw, 72px);
}

.practical-grid {
  grid-template-columns: repeat(2, 1fr);
}

.preview-grid {
  grid-template-columns: repeat(3, 1fr);
  padding: 0;
}

.feature-card,
.preview-card {
  background: var(--panel);
  border: 1px solid rgba(182, 204, 235, 0.72);
  border-radius: 8px;
  color: var(--ink);
  display: grid;
  min-height: 168px;
  padding: 18px;
  position: relative;
  text-decoration: none;
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.feature-card::after,
.preview-card::after {
  background: var(--ally-red);
  content: "";
  height: 3px;
  left: 18px;
  position: absolute;
  right: 18px;
  top: 0;
}

.feature-card h2,
.preview-card h3 {
  align-self: end;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.feature-card p,
.preview-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.info-link {
  align-items: center;
  align-self: end;
  background: var(--ink);
  border-radius: 999px;
  color: var(--paper);
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  margin-top: 18px;
  min-height: 44px;
  padding: 11px 14px;
  text-decoration: none;
}

.practical-links {
  align-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.practical-links .info-link {
  font-size: 0.86rem;
  margin: 0;
  min-height: 42px;
}

.red-card {
  border-top: 0;
}

.blue-card {
  border-top: 0;
}

.blue-card::after {
  background: var(--blue);
}

.green-card {
  border-top: 0;
}

.green-card::after {
  background: var(--green);
}

.yellow-card {
  border-top: 0;
}

.yellow-card::after {
  background: var(--yellow);
}

.intro-band div {
  background: rgba(255, 255, 255, 0.05);
  display: grid;
  gap: 6px;
  padding: clamp(24px, 5vw, 48px);
}

.metric {
  color: var(--mint);
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  font-weight: 900;
  line-height: 0.95;
}

.spotlight,
.agenda-section,
.restaurants-section,
.shops-section,
.list-section,
.content-band,
.districts,
.submit-band {
  padding: clamp(34px, 5.5vw, 72px) clamp(18px, 5vw, 72px);
}

.content-band {
  background: #ffffff;
}

.privacy-content {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}

.today-band {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(34px, 5.5vw, 72px) clamp(18px, 5vw, 72px);
}

.today-band .section-heading {
  align-items: end;
  margin-bottom: 24px;
}

.today-band .section-heading > p {
  color: rgba(255, 255, 255, 0.72);
}

.mood-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
}

.mood-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--paper);
  display: grid;
  gap: 12px;
  min-height: 220px;
  padding: 18px;
  position: relative;
  text-decoration: none;
}

.mood-card::before {
  background: rgba(143, 209, 189, 0.18);
  border-radius: 999px;
  content: "";
  height: 64px;
  position: absolute;
  right: 12px;
  top: 12px;
  width: 64px;
  animation: moodPulse 4s ease-in-out infinite;
}

.mood-label {
  color: #ffffff;
  font-size: clamp(1.02rem, 1.08vw, 1.2rem);
  font-weight: 900;
  line-height: 1.05;
  max-width: calc(100% - 72px);
}

.mood-card h3 {
  align-self: end;
  color: #ffffff;
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  line-height: 1.05;
  margin: 0;
}

.mood-visual {
  height: 52px;
  pointer-events: none;
  position: absolute;
  right: 18px;
  top: 18px;
  width: 52px;
  z-index: 1;
}

.mood-visual i {
  display: block;
  position: absolute;
}

.mood-red .mood-visual i {
  background: #ffffff;
  border-radius: 999px;
  bottom: 12px;
  height: 13px;
  width: 13px;
  animation: moodBounce 2.4s ease-in-out infinite;
}

.mood-red .mood-visual i:first-child {
  left: 5px;
}

.mood-red .mood-visual i:nth-child(2) {
  animation-delay: 0.18s;
  height: 17px;
  left: 19px;
  width: 17px;
}

.mood-red .mood-visual i:nth-child(3) {
  animation-delay: 0.36s;
  left: 38px;
}

.mood-blue .mood-visual i:first-child {
  background: #ffffff;
  border-radius: 999px;
  height: 31px;
  left: 9px;
  top: 8px;
  width: 31px;
}

.mood-blue .mood-visual i:nth-child(2) {
  background: var(--ink);
  border-radius: 999px;
  height: 31px;
  left: 20px;
  top: 4px;
  width: 31px;
}

.mood-blue .mood-visual i:nth-child(3) {
  background: var(--yellow);
  clip-path: polygon(50% 0, 62% 36%, 100% 36%, 69% 58%, 80% 100%, 50% 74%, 20% 100%, 31% 58%, 0 36%, 38% 36%);
  height: 12px;
  right: 8px;
  top: 30px;
  width: 12px;
  animation: moodTwinkle 2.8s ease-in-out infinite;
}

.mood-green .mood-visual i:first-child {
  border: 3px solid #ffffff;
  border-radius: 4px 4px 8px 8px;
  bottom: 7px;
  height: 28px;
  left: 10px;
  width: 32px;
}

.mood-green .mood-visual i:nth-child(2) {
  border: 3px solid #ffffff;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  height: 16px;
  left: 19px;
  top: 7px;
  width: 14px;
  animation: moodHandle 2.6s ease-in-out infinite;
}

.mood-green .mood-visual i:nth-child(3) {
  background: var(--yellow);
  border-radius: 999px;
  bottom: 16px;
  height: 6px;
  left: 23px;
  width: 6px;
}

.mood-yellow .mood-visual i {
  background: #ffffff;
  bottom: 9px;
  height: 34px;
  width: 8px;
  animation: moodBars 2.5s ease-in-out infinite;
}

.mood-yellow .mood-visual i:first-child {
  left: 11px;
}

.mood-yellow .mood-visual i:nth-child(2) {
  animation-delay: 0.18s;
  left: 23px;
}

.mood-yellow .mood-visual i:nth-child(3) {
  animation-delay: 0.36s;
  left: 35px;
}

.mood-card:not(.mood-red, .mood-blue, .mood-green, .mood-yellow, .mood-dark) .mood-visual i:first-child {
  border: 3px solid #ffffff;
  border-radius: 0 0 12px 12px;
  bottom: 8px;
  height: 24px;
  left: 10px;
  width: 30px;
}

.mood-card:not(.mood-red, .mood-blue, .mood-green, .mood-yellow, .mood-dark) .mood-visual i:nth-child(2),
.mood-card:not(.mood-red, .mood-blue, .mood-green, .mood-yellow, .mood-dark) .mood-visual i:nth-child(3) {
  background: #ffffff;
  border-radius: 999px;
  height: 18px;
  top: 4px;
  width: 3px;
  animation: moodSteam 2.8s ease-in-out infinite;
}

.mood-card:not(.mood-red, .mood-blue, .mood-green, .mood-yellow, .mood-dark) .mood-visual i:nth-child(2) {
  left: 18px;
}

.mood-card:not(.mood-red, .mood-blue, .mood-green, .mood-yellow, .mood-dark) .mood-visual i:nth-child(3) {
  animation-delay: 0.5s;
  left: 30px;
}

.mood-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.45;
  margin: 0;
}

.mood-red::before {
  background: rgba(18, 103, 255, 0.26);
}

.mood-blue::before {
  background: rgba(0, 114, 188, 0.26);
}

.mood-green::before {
  background: rgba(0, 155, 119, 0.26);
}

.mood-yellow::before {
  background: rgba(242, 194, 91, 0.3);
}

.mood-dark {
  background: #ffffff;
  color: var(--ink);
}

.mood-dark span,
.mood-dark p {
  color: var(--muted);
}

.mood-dark h3 {
  color: var(--ink);
}

.mood-dark::before {
  background: rgba(18, 103, 255, 0.12);
}

.mood-dark .mood-visual i:first-child {
  border: 3px solid var(--ally-red);
  border-left: 0;
  border-radius: 0 999px 999px 0;
  height: 29px;
  left: 8px;
  top: 11px;
  width: 34px;
}

.mood-dark .mood-visual i:nth-child(2),
.mood-dark .mood-visual i:nth-child(3) {
  background: var(--ally-red);
  border-radius: 999px;
  height: 9px;
  width: 9px;
}

.mood-dark .mood-visual i:nth-child(2) {
  left: 5px;
  top: 7px;
  animation: moodRouteStart 3s ease-in-out infinite;
}

.mood-dark .mood-visual i:nth-child(3) {
  bottom: 7px;
  right: 5px;
  animation: moodRouteEnd 3s ease-in-out infinite;
}

@keyframes moodPulse {
  0%,
  100% {
    transform: scale(0.94);
  }

  50% {
    transform: scale(1.04);
  }
}

@keyframes moodBounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes moodTwinkle {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.75) rotate(0deg);
  }

  50% {
    opacity: 1;
    transform: scale(1.1) rotate(18deg);
  }
}

@keyframes moodHandle {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

@keyframes moodBars {
  0%,
  100% {
    transform: scaleY(0.72);
  }

  50% {
    transform: scaleY(1);
  }
}

@keyframes moodSteam {
  0%,
  100% {
    opacity: 0.35;
    transform: translateY(6px);
  }

  50% {
    opacity: 0.9;
    transform: translateY(-4px);
  }
}

@keyframes moodRouteStart {
  0%,
  100% {
    transform: scale(0.8);
  }

  45% {
    transform: scale(1.2);
  }
}

@keyframes moodRouteEnd {
  0%,
  100% {
    transform: scale(1.2);
  }

  45% {
    transform: scale(0.8);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mood-card::before,
  .mood-visual i {
    animation: none;
  }
}

.section-heading {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 22px;
}

.section-heading > p,
.agenda-heading > p {
  color: var(--muted);
  line-height: 1.55;
  max-width: 480px;
}

.spotlight-grid,
.district-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

.spotlight-grid article,
.district-grid article,
.event-card {
  background: var(--panel);
  border: 1px solid rgba(182, 204, 235, 0.72);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.spotlight-grid article {
  min-height: 168px;
  padding: 18px;
}

.tag,
.event-type {
  background: rgba(18, 103, 255, 0.1);
  border-radius: 999px;
  color: var(--ally-red);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 850;
  padding: 7px 10px;
  text-transform: capitalize;
}

.card-topline {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
  margin-bottom: 18px;
}

.week-pill {
  background: #eaf3ff;
  border-radius: 999px;
  color: var(--muted);
  display: inline-flex;
  font-size: 0.74rem;
  font-weight: 850;
  padding: 7px 10px;
  white-space: nowrap;
}

.spotlight-grid p,
.event-card p,
.district-grid span,
.submit-band p {
  color: var(--muted);
  line-height: 1.55;
}

.agenda-section {
  background: #ffffff;
}

.restaurants-section,
.shops-section {
  background: var(--paper);
}

.controls {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 14px;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  background: #eee8dc;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 750;
  min-height: 36px;
  padding: 8px 12px;
}

.chip.active {
  background: var(--ally-red);
  color: var(--paper);
}

.toggle-filter {
  align-items: center;
  background: var(--ink);
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  gap: 10px;
  margin: 0 0 18px;
  min-height: 46px;
  padding: 10px 14px;
  width: fit-content;
}

.toggle-filter input {
  accent-color: var(--mint);
  height: 18px;
  width: 18px;
}

.privacy-notice {
  align-items: center;
  background: rgba(6, 20, 79, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  bottom: 18px;
  box-shadow: 0 22px 80px rgba(6, 20, 79, 0.28);
  color: #ffffff;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr auto;
  left: clamp(14px, 4vw, 56px);
  padding: 16px;
  position: fixed;
  right: clamp(14px, 4vw, 56px);
  z-index: 60;
}

.privacy-notice strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.privacy-notice p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.45;
  margin: 0;
}

.privacy-notice button {
  background: #ffffff;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  min-height: 44px;
  padding: 10px 18px;
}

.search-box {
  align-items: center;
  background: #eaf3ff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 10px;
  min-height: 46px;
  padding: 0 12px;
}

.search-box span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
}

.search-box input {
  background: transparent;
  border: 0;
  color: var(--ink);
  font: inherit;
  min-width: min(38vw, 280px);
  outline: 0;
}

.week-rail {
  display: flex;
  gap: 8px;
  margin: 22px 0 26px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.week-button {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  cursor: pointer;
  flex: 0 0 auto;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  min-height: 42px;
  padding: 8px 12px;
}

.week-button.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.event-grid,
.restaurant-grid,
.shop-grid,
.supermarket-grid,
.thrift-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
}

.list-section .event-grid,
.list-section .restaurant-grid,
.list-section .shop-grid,
.list-section .supermarket-grid,
.list-section .thrift-grid {
  padding-top: 6px;
}

.event-card,
.restaurant-card,
.shop-card,
.thrift-card {
  display: grid;
  min-height: 220px;
  padding: 18px;
}

.restaurant-card {
  min-height: 232px;
}

.restaurant-card,
.shop-card,
.thrift-card {
  background: var(--panel);
  border: 1px solid rgba(182, 204, 235, 0.72);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  min-height: 248px;
}

.restaurant-card {
  padding: 16px;
}

.shop-card {
  min-height: 286px;
}

.supermarket-card {
  min-height: 300px;
}

.supermarket-hours {
  margin-top: 12px;
}

.thrift-card {
  min-height: 360px;
}

.event-card.featured {
  background:
    linear-gradient(135deg, rgba(18, 103, 255, 0.28), transparent 46%),
    var(--ink);
  color: var(--paper);
  grid-column: span 2;
}

.event-card.featured p,
.event-card.featured .event-location,
.event-card.featured .event-date,
.event-card.featured dd,
.event-card.featured dt {
  color: rgba(255, 255, 255, 0.72);
}

.event-card.featured .event-type {
  background: var(--paper);
  color: var(--ally-red);
}

.event-card.featured .week-pill {
  background: rgba(255, 255, 255, 0.14);
  color: var(--paper);
}

.event-date {
  color: var(--coral);
  font-size: 0.85rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.event-location {
  align-self: end;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
  margin-top: 18px;
}

.activity-details {
  border-bottom: 1px solid rgba(182, 204, 235, 0.55);
  border-top: 1px solid rgba(182, 204, 235, 0.55);
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
  padding: 12px 0;
}

.activity-details div {
  display: grid;
  gap: 2px;
}

.activity-details dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.activity-details dd {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 780;
  margin: 0;
}

.restaurant-meta {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
  margin-bottom: 8px;
}

.reserve-link {
  align-items: center;
  align-self: end;
  background: var(--ink);
  border-radius: 8px;
  color: var(--paper);
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  margin-top: 20px;
  min-height: 44px;
  padding: 11px 14px;
  text-decoration: none;
}

.event-actions {
  align-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.route-link,
.ticket-link {
  align-items: center;
  align-self: end;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 900;
  justify-content: center;
  justify-self: start;
  min-height: 44px;
  padding: 9px 13px;
  text-decoration: none;
}

.route-link {
  background: var(--ally-red);
  color: #ffffff;
}

.ticket-link {
  background: var(--ink);
  color: #ffffff;
}

.event-card.featured .route-link {
  background: var(--paper);
  color: var(--ally-red);
}

.event-card.featured .ticket-link {
  background: var(--ally-red);
  color: #ffffff;
}

.compact-filters {
  margin: 0 0 18px;
}

.shop-meta {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
}

.shop-hours-summary {
  background: #eaf3ff;
  border: 1px solid rgba(182, 204, 235, 0.72);
  border-radius: 8px;
  display: grid;
  gap: 6px;
  margin-top: 14px;
  padding: 12px;
}

.hours-label,
.hours-note {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hours-note {
  font-size: 0.76rem;
  line-height: 1.35;
  text-transform: none;
}

.shop-hours-summary > strong {
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.05;
}

.hours-next-days {
  border-top: 1px solid rgba(182, 204, 235, 0.72);
  display: grid;
  gap: 5px;
  list-style: none;
  margin: 6px 0 0;
  padding: 8px 0 0;
}

.hours-next-days li {
  align-items: center;
  display: flex;
  font-size: 0.82rem;
  gap: 8px;
  justify-content: space-between;
}

.hours-next-days span {
  color: var(--muted);
  font-weight: 850;
}

.hours-next-days strong {
  color: var(--ink);
  font-weight: 850;
  text-align: right;
}

.shop-link {
  align-items: center;
  align-self: end;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  margin-top: 16px;
  min-height: 44px;
  padding: 10px 12px;
  text-decoration: none;
}

.districts {
  background: var(--paper);
}

.district-grid article {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 130px;
  padding: 22px;
}

.district-grid strong {
  font-size: 1.15rem;
}

.district-note {
  font-size: 0.9rem;
}

.neighborhood-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}

.neighborhood-list li {
  background: #eaf3ff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  padding: 8px 10px;
}

.submit-band {
  background: var(--green);
  color: #ffffff;
  justify-content: space-between;
}

.contact-hero {
  min-height: calc(100vh - 160px);
}

.submit-band .eyebrow,
.submit-band p {
  color: rgba(255, 255, 255, 0.78);
}

.submit-band div {
  max-width: 660px;
}

.site-footer {
  align-items: center;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  justify-content: space-between;
  padding: 24px clamp(18px, 5vw, 72px);
}

.site-footer a {
  color: var(--paper);
}

@media (max-width: 1040px) {
  .mood-grid,
  .event-grid,
  .restaurant-grid,
  .shop-grid,
  .supermarket-grid,
  .thrift-grid,
  .quick-grid,
  .preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    gap: 14px;
  }

  .anniversary-banner {
    grid-template-columns: 1fr;
    padding: 14px 20px;
  }

  .anniversary-banner span:last-child {
    justify-self: start;
    white-space: normal;
  }

  .nav-links {
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 4px;
    width: 100%;
  }

  .site-header {
    flex-direction: column;
  }

  .hero {
    min-height: 620px;
  }

  .hero-image {
    background:
      linear-gradient(180deg, rgba(6, 20, 79, 0.22), rgba(6, 20, 79, 0.78)),
      var(--hero-photo);
    background-position: center;
    background-size: cover;
  }

  .hero-content {
    padding: 42vh 20px 46px;
  }

  .intro-band,
  .mood-grid,
  .spotlight-grid,
  .district-grid,
    .privacy-content,
    .event-grid,
    .restaurant-grid,
    .supermarket-grid,
    .thrift-grid,
    .quick-grid,
    .preview-grid {
    grid-template-columns: 1fr;
  }

  .shop-grid {
    grid-template-columns: 1fr;
  }

  .event-card.featured {
    grid-column: span 1;
  }

  .section-heading,
  .controls {
    align-items: stretch;
    flex-direction: column;
  }

  .search-box input {
    min-width: 0;
    width: 100%;
  }

  .privacy-notice {
    align-items: stretch;
    grid-template-columns: 1fr;
  }
}
