:root {
  --ink: #f7f3ea;
  --dark: #171610;
  --brown: #272219;
  --yellow: #ffc21a;
  --yellow-light: #ffda4d;
  --tropical-coral: #ff7048;
  --tropical-aqua: #2dd4bf;
  --tropical-hibiscus: #ff5c9a;
  --tropical-ocean: #58a9ff;
  --paper: #ede7db;
  --muted: #aaa394;
  --muted-dark: #6e685d;
  --line: rgba(255, 255, 255, 0.13);
  --radius: 24px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}
* {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--dark);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 16px;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
}
button {
  cursor: pointer;
  touch-action: manipulation;
}
svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.site-header {
  position: fixed;
  z-index: 50;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1100px, calc(100% - 28px));
  height: 62px;
  padding: 0 12px 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(47, 45, 40, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.26);
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.025em;
}
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(150deg, var(--yellow-light), var(--yellow));
  color: #18150f;
  display: grid;
  place-items: center;
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.5),
    0 5px 15px rgba(255, 194, 26, 0.25);
}
.brand-mark svg {
  width: 20px;
  height: 20px;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
}
.site-header nav > a {
  padding: 10px 13px;
  color: #c6c0b5;
  font-size: 0.83rem;
  font-weight: 650;
  border-radius: 999px;
}
.site-header nav > a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.favorite-nav {
  height: 39px;
  min-width: 45px;
  border: 0;
  background: transparent;
  color: #d2ccc1;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-weight: 700;
}
.favorite-nav:hover {
  background: rgba(255, 255, 255, 0.08);
}
.favorite-nav svg {
  width: 18px;
}
.primary-button {
  border: 0;
  border-radius: 999px;
  padding: 12px 19px;
  background: linear-gradient(160deg, var(--yellow-light), var(--yellow));
  color: #17130b;
  font-weight: 800;
  font-size: 0.82rem;
  box-shadow: 0 8px 22px rgba(255, 194, 26, 0.18);
  white-space: nowrap;
}
.primary-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}
.hero-map {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  height: max(720px, 100svh);
  min-height: 720px;
  background: var(--dark);
}
.hero-panel,
.map-panel {
  position: relative;
  min-width: 0;
  overflow: hidden;
}
.hero-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(19, 15, 10, 0.32),
      rgba(19, 15, 10, 0.16) 30%,
      rgba(19, 15, 10, 0.88) 91%
    ),
    linear-gradient(90deg, rgba(19, 15, 10, 0.12), rgba(19, 15, 10, 0.45));
}
.hero-copy {
  position: absolute;
  z-index: 2;
  left: clamp(28px, 5vw, 78px);
  right: 32px;
  bottom: clamp(70px, 10vh, 116px);
  max-width: 610px;
}
.eyebrow {
  display: block;
  color: var(--yellow);
  font-size: 0.72rem;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: 0.105em;
  text-transform: uppercase;
}
.eyebrow.light {
  display: inline-flex;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 8px 14px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
}
.hero-copy h1 {
  font-size: clamp(3.1rem, 5.6vw, 5.65rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin: 22px 0 18px;
  max-width: 680px;
}
.hero-copy p {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  max-width: 540px;
  margin: 0;
}
.hero-button {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 23px;
}
.map-panel {
  background: #b8b0a0;
}
.map-panel #map {
  position: absolute;
  inset: 0;
}
.map-toolbar {
  position: absolute;
  z-index: 5;
  left: 22px;
  right: 22px;
  top: 94px;
  background: rgba(31, 29, 24, 0.88);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 14px;
  box-shadow: var(--shadow);
}
.live-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #eee9df;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.map-toolbar-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.map-toolbar-heading .live-label { margin-bottom: 0; }
.map-town-filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #eee9df;
  font-size: 0.68rem;
  font-weight: 800;
}
.map-town-filter select {
  min-width: 135px;
  max-width: 190px;
  height: 36px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 9px;
  background: #302a21;
  color: #fff;
  font: inherit;
}
@media (max-width: 480px) {
  .map-toolbar-heading { flex-wrap: wrap; }
  .map-town-filter { width: 100%; justify-content: space-between; }
  .map-town-filter select { flex: 1; max-width: none; }
}
.live-label span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(255, 194, 26, 0.16);
}
.search-row {
  display: flex;
  gap: 8px;
}
.header-search-row {
  width: clamp(190px, 22vw, 255px);
  margin-left: 7px;
}
.header-search-row .search-box,
.header-search-row .near-button {
  height: 40px;
  border-radius: 999px;
}
.header-search-row .near-button {
  width: 40px;
  flex: 0 0 40px;
  padding: 0;
  justify-content: center;
  font-size: 0;
}
.search-box {
  height: 46px;
  flex: 1;
  min-width: 0;
  background: #fff;
  color: #1c1913;
  border-radius: 14px;
  display: flex;
  align-items: center;
  padding: 0 13px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.search-box svg {
  width: 19px;
  margin-right: 9px;
  color: #80796b;
}
.search-box input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 0.85rem;
}
.near-button {
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #403b31;
  color: #fff;
  border-radius: 14px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 750;
}
.near-button svg {
  width: 18px;
}
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 11px;
}
.food-filter-cue { display: none; }
.filter-row::-webkit-scrollbar {
  display: none;
}
.chip {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  color: #d7d1c6;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}
.chip.active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #1a160d;
}
.map-marker {
  position: relative;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #2d2921;
  color: #fff;
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.35);
  display: grid;
  place-items: center;
  cursor: pointer;
  overflow: visible;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.map-marker:hover,
.map-marker:focus-visible {
  z-index: 2;
  transform: scale(1.1);
  box-shadow: 0 9px 24px rgba(0, 0, 0, 0.42);
}
.map-marker > img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}
.map-marker-badge {
  position: absolute;
  right: -7px;
  bottom: -4px;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #f28a22;
  color: #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.28);
}
.map-marker-badge svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.map-marker.later .map-marker-badge {
  background: #77736c;
}
.map-marker.later {
  border-color: #e0ded9;
  background: #77736c;
}
.map-marker.later > img {
  filter: grayscale(1);
  opacity: 0.66;
}
.map-marker.park {
  width: 54px;
  height: 54px;
  border-radius: 16px 16px 16px 5px;
  border-color: #fff;
  background: #2d2921;
  color: #17130b;
}
.map-marker.park > img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 13px 13px 13px 3px;
  object-fit: cover;
}
.map-marker-park-badge {
  position: absolute;
  right: -7px;
  bottom: -6px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 9px 9px 9px 3px;
  background: var(--yellow);
  color: #17130b;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
  font-size: 0.7rem;
  font-weight: 900;
}
.mapboxgl-ctrl-top-right {
  top: 178px;
  right: 13px;
}
.mapboxgl-ctrl-group {
  border-radius: 14px !important;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2) !important;
}
.mapboxgl-popup-content {
  font-family: "Plus Jakarta Sans", sans-serif;
  border-radius: 15px !important;
  padding: 0 !important;
  overflow: hidden;
  color: #242017;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22) !important;
}
.map-popup {
  display: grid;
  gap: 4px;
  padding: 13px 15px;
}
.map-popup b {
  font-size: 0.88rem;
}
.map-popup span {
  font-size: 0.7rem;
  color: #6c655a;
}
.map-summary {
  display: grid;
  grid-template-columns: 82px minmax(135px, 1fr);
  width: 255px;
  min-height: 104px;
  background: #fffdf8;
}
.map-summary > img {
  width: 100%;
  height: 100%;
  min-height: 104px;
  object-fit: cover;
}
.map-summary-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 12px 25px 11px 12px;
}
.map-summary-status {
  color: #9a6500;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.map-summary b {
  font-size: 0.95rem;
  line-height: 1.15;
}
.map-summary small {
  color: #6c655a;
  font-size: 0.66rem;
  line-height: 1.35;
}
.map-summary a {
  margin-top: auto;
  color: #8b582c;
  font-size: 0.7rem;
  font-weight: 850;
}
.truck-sheet {
  position: absolute;
  z-index: 6;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 13px;
  background: rgba(31, 29, 24, 0.9);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.sheet-handle {
  display: none;
}
.sheet-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 0 2px 10px;
}
.sheet-heading > div {
  display: flex;
  gap: 8px;
  align-items: baseline;
}
.sheet-heading span {
  color: var(--yellow);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.sheet-heading strong {
  font-size: 0.84rem;
}
.sheet-heading button {
  border: 0;
  background: none;
  color: var(--yellow);
  font-size: 0.7rem;
  font-weight: 800;
}
.sheet-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.sheet-actions #truckRailPrev,
.sheet-actions #truckRailNext {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 1rem;
  line-height: 1;
}
.sheet-actions #truckRailPrev:hover,
.sheet-actions #truckRailNext:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}
.truck-rail {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.truck-rail::-webkit-scrollbar {
  display: none;
}
.truck-card {
  flex: 0 0 min(270px, 68%);
  display: grid;
  grid-template-columns: 86px 1fr;
  min-height: 104px;
  overflow: hidden;
  background: #f9f6ef;
  color: #201c15;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 17px;
  scroll-snap-align: start;
  transition: 0.18s;
}
.truck-card:hover,
.truck-card.selected {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}
.truck-photo {
  position: relative;
  min-height: 104px;
}
.truck-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.status {
  position: absolute;
  left: 7px;
  top: 7px;
  padding: 5px 7px;
  border-radius: 999px;
  background: var(--yellow);
  color: #1b170f;
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.status.later {
  background: #fff;
}
.truck-info {
  min-width: 0;
  padding: 10px 10px 9px;
}
.truck-top {
  display: flex;
  justify-content: space-between;
  gap: 5px;
}
.truck-tools {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: none;
}
.truck-service-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid #d9d0c1;
  border-radius: 50%;
  color: #8b582c;
  background: #fff;
}
.truck-service-icon svg {
  width: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.truck-info h3 {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.heart {
  border: 0;
  background: none;
  color: #9b9283;
  font-size: 1.2rem;
  line-height: 0.8;
  padding: 0;
}
.heart.saved {
  color: #c37738;
}
.truck-meta {
  margin: 5px 0;
  color: #776f62;
  font-size: 0.65rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.truck-time {
  font-size: 0.62rem;
  font-weight: 750;
  color: #4e493f;
}
.truck-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding-top: 7px;
  border-top: 1px solid #e3ddd2;
}
.truck-actions a,
.truck-actions button {
  border: 0;
  background: none;
  padding: 0;
  color: #8b582c;
  font-size: 0.6rem;
  font-weight: 850;
}
.tier-free {
  margin-left: auto;
  border: 1px solid #ddd5c9;
  border-radius: 999px;
  padding: 2px 5px;
  color: #7c7467;
  font-size: 0.5rem;
  font-weight: 800;
}
.sponsor-ribbon {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 42px;
  padding: 27px max(24px, calc((100vw - 1120px) / 2));
  background: #221f18;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sponsor-ribbon > div {
  display: flex;
  align-items: center;
  gap: 17px;
}
.sponsor-logo-frame {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 12px;
  background: #fffdf8;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}
.sponsor-logo {
  display: block;
  width: 185px;
  height: auto;
}
.sponsor-ribbon p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}
.sponsor-ribbon > a {
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 800;
}
.calendar-section,
.discovery {
  padding: 82px max(24px, calc((100vw - 1120px) / 2));
}
.calendar-section .section-heading .eyebrow {
  color: #68430d;
}
.calendar-section {
  background: #f2ede4;
  color: #272218;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 32px;
}
.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin: 8px 0 0;
}
.section-heading > p {
  max-width: 420px;
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.88rem;
  line-height: 1.65;
}
.calendar-shell {
  overflow: hidden;
  border: 1px solid #d4cbbc;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 34px rgba(76, 58, 31, 0.09);
}
.calendar-date-block {
  padding: 18px;
  background: #eee8dc;
  border-bottom: 1px solid #d8cfc0;
}
.calendar-kicker {
  display: block;
  margin: 0 0 10px 3px;
  color: #6d6458;
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.dates {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}
.date {
  min-width: 0;
  min-height: 78px;
  border: 1px solid #d4cbbc;
  background: #fff;
  color: #29241b;
  border-radius: 14px;
  padding: 10px 8px;
  display: grid;
  place-items: center;
  gap: 1px;
  transition: 0.18s;
}
.date:hover {
  transform: translateY(-2px);
  border-color: #aa9d8a;
}
.date span {
  font-size: 0.65rem;
  font-weight: 850;
  text-transform: uppercase;
  color: #756e62;
}
.date b {
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: -0.05em;
}
.date small {
  color: #81796c;
  font-size: 0.57rem;
  font-weight: 700;
}
.date.active {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
  box-shadow: 0 10px 20px rgba(40, 34, 25, 0.18);
}
.date.active span,
.date.active small {
  color: var(--yellow);
}
.calendar-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border-bottom: 1px solid #e0d8cc;
}
.calendar-filters {
  display: grid;
  grid-template-columns: repeat(4, minmax(112px, 1fr));
  gap: 9px;
  flex: 1;
  max-width: 760px;
}
.calendar-filters label {
  display: grid;
  gap: 5px;
}
.calendar-filters label > span {
  padding-left: 2px;
  color: #746b5f;
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.calendar-filters select {
  width: 100%;
  height: 40px;
  padding: 0 31px 0 10px;
  border: 1px solid #d4cbbc;
  border-radius: 10px;
  background: #fff;
  color: #302a20;
  font-size: 0.7rem;
  font-weight: 700;
}
.calendar-views {
  display: flex;
  overflow: hidden;
  border: 1px solid #d4cbbc;
  border-radius: 12px;
  background: #fff;
}
.calendar-views button {
  min-height: 40px;
  padding: 0 13px;
  border: 0;
  border-right: 1px solid #e1d9cc;
  background: transparent;
  color: #655e53;
  font-size: 0.66rem;
  font-weight: 800;
}
.calendar-views button:last-child {
  border-right: 0;
}
.calendar-views button.active {
  background: var(--yellow);
  color: #272218;
}
.calendar-summary {
  min-height: 46px;
  padding: 0 19px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid #e6ded2;
  font-size: 0.68rem;
}
.calendar-summary-actions > span {
  color: #81796c;
}
.calendar-summary-actions,
.directory-meta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.manual-refresh {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #d9cdbb;
  border-radius: 999px;
  background: #fffaf1;
  color: #65491f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font: inherit;
  font-size: 0.7rem;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
}
.manual-refresh > span {
  color: currentColor;
  font-size: 1rem;
  line-height: 1;
}
.manual-refresh:hover {
  border-color: #b99b69;
  background: #fff3d5;
}
.manual-refresh:focus-visible {
  outline: 3px solid rgba(255, 190, 23, 0.42);
  outline-offset: 2px;
}
.calendar-content {
  min-height: 290px;
  padding: 18px;
}
.calendar-map-view {
  display: grid;
  gap: 10px;
}
.calendar-map-status {
  display: inline-flex;
  justify-self: start;
  padding: 4px;
  border: 1px solid #d8d0c5;
  border-radius: 999px;
  background: #f3eee5;
}
.calendar-map-status button {
  min-height: 34px;
  padding: 0 15px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #625a4f;
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
}
.calendar-map-status button.active {
  background: #201d17;
  color: var(--yellow);
}
.calendar-inline-map {
  width: 100%;
  height: 410px;
  overflow: hidden;
  border: 1px solid #d8d0c5;
  border-radius: 15px;
  background: #dbe8d5;
}
.calendar-inline-map #map {
  position: relative;
  inset: auto;
  width: 100%;
  height: 100%;
}
.calendar-inline-map .mapboxgl-canvas {
  outline: 0;
}
.calendar-inline-map .map-popup a {
  display: inline-block;
  margin-top: 7px;
  color: #8b582c;
  font-size: 0.68rem;
  font-weight: 850;
}
.timeline-scroll {
  overflow-x: auto;
  scrollbar-width: thin;
}
.timeline-board {
  min-width: 900px;
}
.timeline-hours,
.timeline-row {
  display: grid;
  grid-template-columns: 190px minmax(690px, 1fr);
}
.timeline-hours {
  grid-template-columns: 190px repeat(8, minmax(86px, 1fr));
  padding-bottom: 8px;
  color: #71695e;
  font-size: 0.6rem;
  text-align: center;
}
.timeline-row {
  align-items: center;
  min-height: 62px;
  border-top: 1px solid #e7dfd4;
}
.timeline-truck {
  min-width: 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 8px 10px 8px 0;
  border: 0;
  background: none;
  color: #2c271f;
  text-align: left;
}
.timeline-truck img {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  object-fit: cover;
}
.timeline-truck span {
  min-width: 0;
  display: grid;
}
.timeline-truck b,
.timeline-truck small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.timeline-truck b {
  font-size: 0.72rem;
}
.timeline-truck small {
  color: #7b7368;
  font-size: 0.59rem;
}
.timeline-track {
  position: relative;
  height: 42px;
  border: 1px solid #e1d9cd;
  border-radius: 12px;
  background: repeating-linear-gradient(90deg, #f5f2ed 0, #f5f2ed calc(12.5% - 1px), #e5ddd1 calc(12.5% - 1px), #e5ddd1 12.5%);
}
.timeline-slot {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: var(--slot-left);
  width: var(--slot-width);
  min-width: 84px;
  padding: 0 10px;
  overflow: hidden;
  border: 1px solid #d89d18;
  border-radius: 9px;
  background: var(--yellow);
  color: #29241b;
  text-align: left;
  white-space: nowrap;
}
.timeline-slot b,
.timeline-slot span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}
.timeline-slot b {
  font-size: 0.61rem;
}
.timeline-slot span {
  font-size: 0.54rem;
}
.calendar-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.calendar-list article {
  min-width: 0;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  padding: 10px;
  border: 1px solid #ddd4c7;
  border-radius: 14px;
  background: #fff;
}
.calendar-list img {
  width: 58px;
  height: 58px;
  border-radius: 11px;
  object-fit: cover;
}
.calendar-list article > div {
  min-width: 0;
}
.calendar-list span {
  color: #7c7468;
  font-size: 0.58rem;
}
.calendar-list h3 {
  margin: 2px 0 0;
}
.calendar-list h3 {
  font-size: 0.82rem;
}
.calendar-list strong {
  font-size: 0.68rem;
  text-align: right;
  white-space: nowrap;
}
.calendar-list article > a {
  grid-column: 3;
  padding: 6px 9px;
  border-radius: 8px;
  background: #eee8df;
  color: #30291e;
  font-size: 0.58rem;
  font-weight: 800;
  text-align: center;
}
.calendar-pagination {
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid #e2d9cc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.calendar-pagination > span {
  color: #766e62;
  font-size: 0.67rem;
  font-weight: 700;
}
.calendar-pagination > div {
  display: flex;
  align-items: center;
  gap: 5px;
}
.calendar-pagination button {
  min-width: 31px;
  min-height: 31px;
  padding: 0 10px;
  border: 1px solid #d8cfc1;
  border-radius: 9px;
  background: #fff;
  color: #332d23;
  font-size: 0.63rem;
  font-weight: 800;
}
.calendar-pagination button.active {
  border-color: var(--yellow);
  background: var(--yellow);
  color: #211c13;
}
.calendar-pagination button:disabled {
  cursor: default;
  opacity: 0.4;
}
.month-scroll {
  overflow-x: auto;
  scrollbar-width: thin;
}
.month-board {
  min-width: 910px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #d8d0c5;
  border-radius: 14px;
  background: #fff;
}
.month-day {
  min-height: 248px;
  border-right: 1px solid #ddd6cb;
}
.month-day:nth-child(7) {
  border-right: 0;
}
.month-day > header {
  padding: 10px 7px;
  border-bottom: 1px solid #ddd6cb;
  background: #f3f1ed;
  color: #4c463d;
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
}
.month-day.current > header {
  background: var(--dark);
  color: var(--yellow);
}
.month-day > div {
  display: grid;
  align-content: start;
  gap: 5px;
  padding: 6px;
}
.month-day button {
  min-width: 0;
  min-height: 58px;
  padding: 7px;
  overflow: hidden;
  border: 1px solid #e3b932;
  border-radius: 7px;
  background: #fff9dc;
  color: #29241b;
  text-align: left;
}
.month-day button b,
.month-day button span,
.month-day button small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.month-day button b {
  font-size: 0.61rem;
}
.month-day button span {
  margin-top: 3px;
  color: #6f675b;
  font-size: 0.54rem;
}
.month-day button small {
  margin-top: 2px;
  color: #9a7223;
  font-size: 0.5rem;
  font-weight: 750;
}
.month-day > div > p {
  margin: 10px 4px;
  color: #a0998e;
  font-size: 0.57rem;
  text-align: center;
}
.month-note {
  grid-column: 1 / -1;
  margin: 0;
  padding: 10px 12px;
  border-top: 1px solid #ddd6cb;
  color: #888075;
  font-size: 0.6rem;
  font-style: italic;
}
.calendar-empty {
  min-height: 250px;
  display: grid;
  place-content: center;
  justify-items: center;
  color: #70685d;
  text-align: center;
}
.calendar-empty span {
  color: #b18222;
  font-size: 2rem;
}
.calendar-empty p {
  margin: 5px 0 0;
  font-size: 0.72rem;
}
.directory-section {
  padding: 82px max(24px, calc((100vw - 1120px) / 2));
  background: #e8e1d4;
  color: #272218;
}
.directory-heading {
  margin-bottom: 26px;
}
.directory-heading .eyebrow {
  color: #68430d;
}
.directory-filters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  padding: 12px;
  border: 1px solid #d0c7b8;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.55);
}
.directory-filters label {
  min-width: 0;
  display: grid;
  gap: 6px;
}
.directory-filters label > span {
  padding-left: 3px;
  color: #756d60;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.directory-filters select {
  width: 100%;
  min-width: 0;
  height: 44px;
  padding: 0 34px 0 12px;
  border: 1px solid #d3cabc;
  border-radius: 12px;
  background: #fff;
  color: #29241b;
  font-size: 0.76rem;
  font-weight: 700;
}
.directory-meta {
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.directory-meta strong {
  font-size: 0.8rem;
}
.directory-meta #clearDirectoryFilters {
  border: 0;
  background: none;
  color: #785629;
  font-size: 0.72rem;
  font-weight: 800;
}
.directory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
}
.directory-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #d4cbbc;
  border-radius: 16px;
  background: #f8f4ec;
  box-shadow: 0 8px 20px rgba(77, 59, 32, 0.07);
}
.directory-image {
  position: relative;
  width: 100%;
  height: 168px;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: #cfc6b7;
}
.directory-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.directory-card:hover .directory-image img {
  transform: scale(1.025);
}
.directory-card-body {
  position: relative;
  padding: 12px;
}
.directory-area {
  display: block;
  padding-right: 72px;
  color: #8e6735;
  font-size: 0.56rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.directory-card h3 {
  margin: 3px 0 0;
  padding-right: 72px;
  overflow: hidden;
  font-size: 1rem;
  letter-spacing: -0.035em;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.directory-card-body > p {
  margin: 3px 0 0;
  color: #6c6559;
  font-size: 0.65rem;
  line-height: 1.35;
}
.directory-icons {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.directory-icons .heart,
.catering-icon {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border: 1px solid #d7cdbc;
  border-radius: 50%;
  background: #fffdf9;
  box-shadow: 0 3px 8px rgba(31, 25, 17, 0.08);
}
.catering-icon {
  border-color: rgba(45, 212, 191, 0.52);
  background: rgba(45, 212, 191, 0.1);
  color: var(--tropical-aqua);
}
.catering-icon svg {
  width: 17px;
}
.directory-park-tag {
  width: fit-content;
  max-width: 100%;
  min-height: 25px;
  margin-top: 9px;
  padding: 3px 8px 3px 4px;
  border: 1px solid #d9c9a5;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 6px;
  overflow: hidden;
  background: #fff9e8;
  color: #5e4824;
  font-size: 0.6rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.directory-park-tag span {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  display: grid;
  place-items: center;
  border-radius: 6px 6px 6px 2px;
  background: var(--yellow);
  color: #1c170e;
  font-size: 0.56rem;
  font-weight: 900;
}
.directory-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 10px;
}
.directory-actions button {
  min-height: 32px;
  border: 1px solid #d5ccbd;
  border-radius: 9px;
  background: transparent;
  color: #302a20;
  font-size: 0.59rem;
  font-weight: 800;
}
.directory-actions button:first-child {
  border-color: var(--yellow);
  background: var(--yellow);
}
.directory-empty {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px dashed #bcb19f;
  border-radius: 18px;
  color: #6c6559;
  text-align: center;
}
.discovery {
  background: var(--dark);
}
.parks-count {
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.parks-heading > a {
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 800;
}
.park-filters {
  width: 100%;
  margin: -4px 0 18px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}
.park-filters label {
  width: min(330px, 100%);
  display: grid;
  gap: 6px;
}
.park-filters label > span {
  padding-left: 3px;
  color: #c8c0b4;
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.park-filters select {
  width: 100%;
  height: 44px;
  padding: 0 36px 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: #2d2922;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 750;
}
.park-filters .manual-refresh {
  min-height: 44px;
  border-color: rgba(255, 190, 23, 0.5);
  background: rgba(255, 190, 23, 0.08);
  color: var(--yellow);
}
.park-filters .manual-refresh:hover {
  border-color: var(--yellow);
  background: rgba(255, 190, 23, 0.16);
}
.parks-empty {
  grid-column: 1 / -1;
  padding: 34px;
  border: 1px dashed rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  color: #c8c0b4;
  text-align: center;
}
.park-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.park-card {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  padding: 27px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}
.park-card.is-clickable {
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}
.park-card.is-clickable:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}
.park-card.is-clickable:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}
.park-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(19, 15, 9, 0.12),
    rgba(19, 15, 9, 0.88)
  );
}
.park-card > * {
  position: relative;
}
.park-one {
  background-image: url("https://images.myguide-cdn.com/cdn-cgi/image/width=1200,format=auto,quality=85/puertorico/companies/robs-delicious-food-truck/large/robs-delicious-food-truck-152974.jpg");
}
.park-two {
  background-image: url("https://images.myguide-cdn.com/cdn-cgi/image/width=1200,format=auto,quality=85/puertorico/companies/cosechas-criollo-moderno-food-truck/large/cosechas-criollo-moderno-food-truck-153230.jpg");
}
.location-pill {
  display: inline-block;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
}
.park-card h3 {
  font-size: clamp(2rem, 3.3vw, 3.4rem);
  letter-spacing: -0.045em;
  margin: 14px 0 7px;
}
.park-card p {
  margin: 0;
  color: #d0c9bd;
  font-size: 0.78rem;
}
.park-actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.park-actions button,
.park-actions a {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(22, 19, 14, 0.58);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}
.park-actions button {
  border-color: var(--yellow);
  background: var(--yellow);
  color: #1c170e;
}
.catering-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 58px max(24px, calc((100vw - 1120px) / 2));
  background: #30291e;
  border-top: 1px solid var(--line);
}
.catering-band > div {
  max-width: 700px;
}
.catering-band h2 {
  margin: 9px 0 10px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
}
.catering-band p {
  max-width: 610px;
  margin: 0;
  color: #c3bbaf;
  font-size: 0.84rem;
  line-height: 1.65;
}
.catering-clarifier {
  display: block;
  width: fit-content;
  margin-top: 18px;
  padding: 9px 12px;
  border: 1px solid rgba(45, 212, 191, 0.4);
  border-radius: 999px;
  background: rgba(45, 212, 191, 0.08);
  color: var(--tropical-aqua);
  font-size: 0.72rem;
}
.catering-band > a {
  flex: none;
}
.truck-event-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 44px;
  padding: 58px max(24px, calc((100vw - 1120px) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background:
    radial-gradient(circle at 82% 50%, rgba(255, 112, 72, 0.17), transparent 34%),
    #211d18;
}
.truck-event-choice {
  position: absolute;
  top: 0;
  left: 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 5px solid #30291e;
  border-radius: 50%;
  background: var(--tropical-coral);
  color: #21150f;
  font-size: 0.72rem;
  font-weight: 900;
}
.truck-event-copy {
  max-width: 730px;
}
.truck-event-copy .eyebrow {
  color: var(--tropical-coral);
}
.truck-event-copy h2 {
  margin: 9px 0 10px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
}
.truck-event-copy p {
  max-width: 660px;
  margin: 0;
  color: #c3bbaf;
  font-size: 0.84rem;
  line-height: 1.65;
}
.truck-event-copy strong {
  display: block;
  width: fit-content;
  margin-top: 18px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 112, 72, 0.45);
  border-radius: 999px;
  background: rgba(255, 112, 72, 0.09);
  color: var(--tropical-coral);
  font-size: 0.72rem;
}
.truck-event-button {
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  background: var(--tropical-coral);
  color: #21150f;
  font-size: 0.76rem;
  font-weight: 850;
  white-space: nowrap;
}
.truck-event-button:hover {
  background: #ff8766;
  transform: translateY(-1px);
}

/* Drop-off catering marketplace */
.catering-marketplace-page {
  background: #171610;
}
.catering-site-header {
  position: absolute;
}
.catering-marketplace {
  padding-top: 104px;
}
.catering-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(34px, 6vw, 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  background:
    radial-gradient(circle at 5% 15%, rgba(45, 212, 191, 0.19), transparent 34%),
    linear-gradient(135deg, #29251d, #1e1c17);
  box-shadow: var(--shadow);
}
.catering-kicker {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--tropical-aqua);
  color: #13231f;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.catering-hero h1 {
  max-width: 760px;
  margin: 18px 0;
  font-size: clamp(2.8rem, 6.5vw, 6.1rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}
.catering-hero-copy > p {
  max-width: 670px;
  margin: 0;
  color: #d3ccc0;
  font-size: clamp(0.98rem, 1.5vw, 1.18rem);
  line-height: 1.7;
}
.catering-not-truck {
  max-width: 670px;
  margin: 22px 0;
  padding: 14px 16px;
  border-left: 4px solid var(--tropical-coral);
  border-radius: 0 12px 12px 0;
  background: rgba(255, 112, 72, 0.09);
  color: #f6ddd5;
  font-size: 0.84rem;
  line-height: 1.55;
}
.catering-format-card {
  padding: 26px;
  border: 1px solid rgba(45, 212, 191, 0.3);
  border-radius: 24px;
  background: rgba(15, 20, 17, 0.72);
}
.catering-format-card > span {
  color: var(--tropical-aqua);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.catering-format-card ol {
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 20px;
  list-style: none;
}
.catering-format-card li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}
.catering-format-card li > b {
  width: 30px;
  height: 30px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--tropical-aqua);
  color: #13231f;
  font-size: 0.72rem;
}
.catering-format-card li strong,
.catering-format-card li small {
  display: block;
}
.catering-format-card li strong {
  font-size: 0.84rem;
}
.catering-format-card li small {
  margin-top: 4px;
  color: #aaa294;
  font-size: 0.68rem;
  line-height: 1.5;
}
.catering-market {
  width: min(1120px, calc(100% - 32px));
  margin: 76px auto 90px;
}
.catering-market-heading .eyebrow {
  color: var(--tropical-aqua);
}
.catering-location-search {
  margin: 28px 0 18px;
  padding: 20px;
  border: 1px solid rgba(45, 212, 191, 0.28);
  border-radius: 20px;
  background: #25221c;
}
.catering-location-search > label {
  display: block;
  margin-bottom: 10px;
  color: #eee8dd;
  font-size: 0.76rem;
  font-weight: 800;
}
.catering-location-search > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 8px;
}
.catering-location-search input,
.catering-location-search button,
.catering-filters select,
.catering-filters button {
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
}
.catering-location-search input {
  padding: 0 14px;
  background: #fff;
  color: #262118;
}
.catering-location-search button {
  padding: 0 16px;
  background: var(--tropical-aqua);
  color: #13231f;
  font-weight: 800;
}
.catering-location-search .near-button {
  background: transparent;
  color: var(--tropical-aqua);
}
.catering-location-search > small {
  display: block;
  margin-top: 10px;
  color: #a9a193;
  font-size: 0.68rem;
}
.catering-filters {
  display: flex;
  align-items: end;
  gap: 10px;
}
.catering-filters label {
  display: grid;
  gap: 6px;
  min-width: 210px;
}
.catering-filters label span {
  color: #aaa294;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}
.catering-filters select,
.catering-filters button {
  padding: 0 12px;
  background: #27231c;
  color: #f2ecdf;
}
.catering-results-meta {
  margin: 28px 0 14px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #aaa294;
  font-size: 0.74rem;
}
.catering-results-meta strong {
  color: #f4eee3;
}
.catering-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.catering-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: #28241d;
}
.catering-card > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.catering-card-body {
  padding: 17px;
}
.catering-card-body > span {
  color: var(--tropical-aqua);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}
.catering-card h3 {
  margin: 7px 0 5px;
  font-size: 1.18rem;
}
.catering-card p,
.catering-card small {
  color: #aaa294;
}
.catering-card p {
  margin: 0;
  font-size: 0.74rem;
}
.catering-card small {
  display: block;
  min-height: 38px;
  margin: 10px 0 15px;
  font-size: 0.62rem;
  line-height: 1.5;
}
.catering-card a {
  min-height: 42px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 11px;
  background: var(--tropical-aqua);
  color: #13231f;
  font-size: 0.72rem;
  font-weight: 850;
}
.catering-empty {
  grid-column: 1 / -1;
  padding: 30px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  color: #aaa294;
  text-align: center;
}

@media (max-width: 850px) {
  .catering-hero {
    grid-template-columns: 1fr;
  }
  .catering-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .truck-event-band {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 50px 18px 46px;
  }
  .truck-event-copy h2 {
    font-size: 2.35rem;
  }
  .truck-event-copy strong {
    border-radius: 14px;
    line-height: 1.45;
  }
  .truck-event-button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
  .catering-marketplace {
    padding-top: 88px;
  }
  .catering-hero {
    width: calc(100% - 20px);
    padding: 26px 20px;
    gap: 26px;
    border-radius: 22px;
  }
  .catering-hero h1 {
    font-size: clamp(2.65rem, 14vw, 4.4rem);
  }
  .catering-market {
    width: calc(100% - 20px);
    margin-top: 52px;
  }
  .catering-location-search > div {
    grid-template-columns: 1fr 1fr;
  }
  .catering-location-search input {
    grid-column: 1 / -1;
  }
  .catering-filters {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .catering-filters label {
    min-width: 0;
  }
  .catering-filters button {
    grid-column: 1 / -1;
  }
  .catering-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }
  .catering-card-body {
    padding: 12px;
  }
  .catering-card h3 {
    font-size: 0.9rem;
  }
  .catering-card small {
    min-height: 46px;
    font-size: 0.55rem;
  }
  .catering-card a {
    padding: 0 10px;
    font-size: 0.62rem;
  }
}
.detail-dialog {
  width: min(720px, calc(100% - 28px));
  max-height: min(820px, calc(100dvh - 32px));
  padding: 0;
  overflow: auto;
}
.detail-dialog .dialog-close {
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 2px solid #fff;
  background: rgba(24, 21, 16, 0.92);
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 1.95rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 1px 2px #000;
}
.detail-hero {
  width: 100%;
  height: 290px;
  display: block;
  object-fit: cover;
}
.detail-content {
  padding: 25px;
}
.detail-content h2 {
  margin: 7px 0 11px;
  font-size: clamp(2rem, 5vw, 3.2rem);
}
.detail-content > p {
  margin: 0;
  color: #c8c0b4;
  font-size: 0.82rem;
  line-height: 1.65;
}
.detail-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.detail-title .heart {
  flex: none;
  color: #fff;
  font-size: 1.8rem;
}
.detail-title .heart.saved {
  color: var(--yellow);
}
.detail-tools {
  flex: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.detail-service-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--yellow);
}
.detail-service-icon.service-catering {
  border-color: rgba(45, 212, 191, 0.65);
  background: rgba(45, 212, 191, 0.13);
  color: var(--tropical-aqua);
}
.detail-service-icon svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}
.detail-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 22px 0;
}
.detail-facts div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.04);
}
.detail-facts dt {
  color: var(--yellow);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.detail-facts dd {
  margin: 5px 0 0;
  color: #eee8dd;
  font-size: 0.7rem;
  line-height: 1.45;
  text-transform: capitalize;
}
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.detail-actions > a:not(.primary-button),
.detail-actions > button:not(.primary-button) {
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}
.detail-actions .premium-detail-button {
  background: rgba(255, 255, 255, 0.025);
}
.detail-actions .detail-action-directions {
  border-color: rgba(88, 169, 255, 0.58);
  background: rgba(88, 169, 255, 0.1);
  color: var(--tropical-ocean);
}
.detail-actions .detail-action-catering {
  border-color: rgba(45, 212, 191, 0.64);
  background: rgba(45, 212, 191, 0.11);
  color: var(--tropical-aqua);
}
.detail-actions .detail-action-calendar {
  border-color: rgba(255, 112, 72, 0.62);
  background: rgba(255, 112, 72, 0.11);
  color: var(--tropical-coral);
}
.detail-actions .detail-action-menu {
  border-color: rgba(255, 92, 154, 0.64);
  background: rgba(255, 92, 154, 0.11);
  color: var(--tropical-hibiscus);
}
.detail-actions .premium-detail-button[aria-expanded="true"] {
  color: #201c16;
}
.detail-actions .detail-action-calendar[aria-expanded="true"] {
  border-color: var(--tropical-coral);
  background: var(--tropical-coral);
}
.detail-actions .detail-action-menu[aria-expanded="true"] {
  border-color: var(--tropical-hibiscus);
  background: var(--tropical-hibiscus);
}
.premium-detail-panel {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}
.premium-detail-panel[data-active-view="calendar"] {
  border-color: rgba(255, 112, 72, 0.46);
  background: rgba(255, 112, 72, 0.05);
}
.premium-detail-panel[data-active-view="menu"] {
  border-color: rgba(255, 92, 154, 0.42);
  background: rgba(255, 92, 154, 0.04);
}
.premium-detail-panel[hidden] {
  display: none;
}
.premium-calendar > header,
.premium-menu > header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}
.premium-calendar > header span,
.premium-menu > header span {
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.premium-calendar > header span {
  color: var(--tropical-coral);
}
.premium-menu > header span {
  color: var(--tropical-hibiscus);
}
.premium-calendar > header strong,
.premium-menu > header strong {
  color: #eee8dd;
  font-size: 0.75rem;
  text-transform: capitalize;
}
.premium-calendar-scroll {
  overflow-x: auto;
  padding-bottom: 4px;
}
.premium-calendar-grid {
  min-width: 545px;
}
.premium-weekdays,
.premium-calendar-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 5px;
}
.premium-weekdays {
  margin-bottom: 5px;
  color: #9e9689;
  font-size: 0.56rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}
.premium-calendar-day {
  min-height: 58px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9px;
  color: #9e9689;
}
.premium-calendar-day b {
  display: block;
  font-size: 0.68rem;
}
.premium-calendar-day small {
  display: block;
  margin-top: 7px;
  font-size: 0.5rem;
  line-height: 1.3;
}
.premium-calendar-day.has-stop {
  border-color: #d95432;
  background: var(--tropical-coral);
  color: #221c12;
}
.premium-calendar-day.is-empty {
  border-color: transparent;
}
.premium-calendar > p {
  margin: 10px 0 0;
  color: #9e9689;
  font-size: 0.62rem;
}
.premium-menu-items {
  display: grid;
  gap: 7px;
}
.premium-menu-items article {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.13);
}
.premium-menu-items b,
.premium-menu-items article > strong {
  color: #f5efe5;
  font-size: 0.72rem;
}
.premium-menu-items article > strong {
  color: var(--tropical-hibiscus);
}
.premium-menu-items p {
  margin: 4px 0 0;
  color: #aaa194;
  font-size: 0.61rem;
  line-height: 1.4;
}
.premium-menu-file {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.16);
}
.premium-menu-file > a,
.premium-menu-file figcaption {
  display: flex;
  justify-content: center;
  padding: 12px;
}
.premium-menu-file a {
  color: var(--tropical-hibiscus);
  font-size: 0.72rem;
  font-weight: 850;
  text-decoration: none;
}
.premium-menu-image img {
  display: block;
  width: 100%;
  max-height: 680px;
  object-fit: contain;
  background: #fff;
}
.premium-menu-pdf object {
  display: block;
  width: 100%;
  min-height: 620px;
  border: 0;
  background: #fff;
}
@media (max-width: 640px) {
  .premium-menu-pdf object {
    min-height: 480px;
  }
}
.park-tenants {
  display: grid;
  gap: 8px;
  margin: 22px 0;
}
.park-tenants > strong {
  color: var(--yellow);
  font-size: 0.66rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.park-tenants > button {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  text-align: left;
}
.park-tenants img {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  object-fit: cover;
}
.park-tenants span {
  display: grid;
  gap: 4px;
}
.park-tenants small,
.park-tenants > p {
  color: #aaa294;
  font-size: 0.68rem;
}
.owner-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  padding: 76px max(24px, calc((100vw - 1120px) / 2));
  background: #30291e;
  border-top: 1px solid var(--line);
}
.owner-copy h2 {
  font-size: clamp(2.8rem, 5.6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin: 13px 0 0;
}
.owner-info {
  max-width: 450px;
}
.owner-info p {
  color: #c7c0b5;
  line-height: 1.7;
  margin: 0 0 24px;
}
.owner-info .primary-button {
  padding: 14px 20px;
}
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 30px max(24px, calc((100vw - 1120px) / 2));
  background: #13120e;
  border-top: 1px solid var(--line);
}
footer > div {
  display: grid;
  gap: 6px;
}
footer strong {
  font-size: 0.95rem;
}
footer span {
  color: #777166;
  font-size: 0.72rem;
}
footer button {
  border: 0;
  background: none;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 800;
}
dialog {
  width: min(500px, calc(100% - 28px));
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 34px;
  background: #29251e;
  color: #f7f2e9;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}
dialog::backdrop {
  background: rgba(12, 10, 7, 0.82);
  backdrop-filter: blur(4px);
}
.dialog-close {
  position: absolute;
  right: 13px;
  top: 10px;
  width: 35px;
  height: 35px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.3rem;
}
.dialog-close:hover {
  background: rgba(255, 255, 255, 0.15);
}
dialog h2 {
  font-size: 2.25rem;
  line-height: 1.06;
  letter-spacing: -0.045em;
  margin: 12px 0;
}
dialog > p {
  color: #bdb6aa;
  line-height: 1.6;
  font-size: 0.86rem;
}
.favorite-list {
  display: grid;
  gap: 7px;
  margin: 18px 0;
}
.favorite-item {
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 11px;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
}
.alert-settings {
  display: grid;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px;
  margin: 14px 0;
}
.alert-settings label {
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.alert-settings select {
  border: 1px solid #524b40;
  border-radius: 9px;
  background: #1d1a15;
  color: #fff;
  padding: 7px;
}
.location-button {
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #3b362e;
  color: #fff;
  padding: 10px;
  font-size: 0.7rem;
  font-weight: 800;
}
.alert-settings > span {
  font-size: 0.64rem;
  color: #9f988d;
}
.dialog-action {
  width: 100%;
  margin-top: 4px;
}
.dialog-action + small,
dialog > small {
  display: block;
  margin-top: 11px;
  color: #938c80;
  font-size: 0.62rem;
  text-align: center;
  line-height: 1.5;
}
.owner-status-grid {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}
.owner-status-grid button {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #353027;
  color: #fff;
  padding: 14px;
  text-align: left;
  display: grid;
  gap: 4px;
}
.owner-status-grid button:hover {
  border-color: var(--yellow);
  background: #3b3529;
}
.owner-status-grid b {
  font-size: 0.85rem;
}
.owner-status-grid span {
  font-size: 0.68rem;
  color: #aca499;
}
.owner-result {
  margin-top: 14px;
  border-radius: 13px;
  background: var(--yellow);
  color: #241c0c;
  padding: 12px;
  font-size: 0.72rem;
  font-weight: 800;
}
.user-location {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #2d87ca;
  border: 4px solid #fff;
  box-shadow: 0 0 0 8px rgba(45, 135, 202, 0.2);
}
.truck-sheet.expanded {
  top: 222px;
  bottom: 18px;
  overflow: auto;
}
.truck-sheet.expanded .truck-rail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: visible;
}
.truck-sheet.expanded .truck-card {
  width: auto;
  max-width: none;
}
#map[data-map-error="token"]:after {
  content: "Configura el token público de Mapbox para cargar el mapa.";
  position: absolute;
  z-index: 8;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #29251e;
  color: #fff;
  border-radius: 16px;
  padding: 16px;
  max-width: 290px;
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}
@media (max-width: 1040px) {
  .hero-map {
    grid-template-columns: 0.78fr 1.22fr;
  }
  .site-header {
    width: calc(100% - 24px);
  }
  .site-header nav > a {
    display: none;
  }
  .header-search-row {
    width: min(250px, 42vw);
  }
  .hero-copy {
    left: 30px;
    right: 25px;
  }
  .hero-copy h1 {
    font-size: 3.4rem;
  }
  .sponsor-ribbon,
  .calendar-section,
  .directory-section,
  .discovery,
  .catering-band,
  .owner-band,
  footer {
    padding-left: 28px;
    padding-right: 28px;
  }
  .truck-card {
    flex-basis: min(280px, 78%);
  }
  .directory-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .calendar-toolbar {
    align-items: stretch;
    flex-direction: column;
  }
  .calendar-filters {
    max-width: none;
  }
  .calendar-views {
    align-self: flex-end;
  }
}
@media (max-width: 760px) {
  .site-header {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    height: 64px;
    padding: max(7px, env(safe-area-inset-top)) 10px 7px;
    background: #2f2d28;
    border-width: 0 0 1px;
    border-radius: 0;
    box-shadow: none;
  }
  .brand {
    font-size: 0.88rem;
  }
  .brand-mark {
    width: 32px;
    height: 32px;
  }
  .favorite-nav {
    display: none;
  }
  .site-header nav {
    flex: 1;
    justify-content: flex-end;
  }
  .header-search-row {
    width: min(48vw, 205px);
    margin-left: 6px;
    gap: 5px;
  }
  .header-search-row .search-box {
    height: 40px;
    padding: 0 10px;
  }
  .header-search-row .search-box svg {
    width: 17px;
    margin-right: 6px;
  }
  .header-search-row .search-box input {
    font-size: 0.72rem;
  }
  .header-search-row .near-button {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }
  .site-header .primary-button {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 0.67rem;
  }
  .hero-map {
    display: block;
    height: auto;
    min-height: 0;
  }
  .hero-panel {
    height: auto;
    aspect-ratio: 900 / 650;
  }
  .hero-panel img {
    object-fit: cover;
    object-position: center;
  }
  .hero-copy {
    left: 20px;
    right: 20px;
    bottom: 26px;
  }
  .hero-copy h1 {
    max-width: 390px;
    font-size: clamp(2.55rem, 12vw, 3.35rem);
    margin: 12px 0 9px;
  }
  .hero-copy p {
    font-size: 0.9rem;
    line-height: 1.55;
  }
  .hero-button {
    display: none;
  }
  .eyebrow.light {
    font-size: 0.58rem;
    padding: 6px 10px;
  }
  .map-panel {
    height: clamp(430px, 60dvh, 520px);
    min-height: 430px;
    padding-top: 82px;
  }
  .map-panel #map {
    top: 82px;
  }
  .map-toolbar {
    top: 0;
    left: 0;
    right: 0;
    min-height: 82px;
    padding: 10px 12px;
    border-width: 0 0 1px;
    border-radius: 0;
    box-shadow: none;
  }
  .live-label {
    font-size: 0.61rem;
    margin-bottom: 8px;
  }
  .map-toolbar .filter-row {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(2, max-content);
    grid-auto-columns: max-content;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
    margin-top: 7px;
    padding-bottom: 5px;
  }
  .food-filter-cue {
    display: block;
    margin-top: 2px;
    color: #d7d1c6;
    font-size: 0.62rem;
    text-align: right;
  }
  .map-panel #map { top: 140px; }
  .mapboxgl-ctrl-top-right {
    top: 10px;
    right: 4px;
  }
  .truck-sheet {
    display: none;
  }
  .sheet-handle {
    display: block;
    width: 43px;
    height: 4px;
    border-radius: 99px;
    background: #777064;
    margin: 0 auto 8px;
  }
  .sheet-heading {
    padding: 0 5px 8px;
  }
  .sheet-heading > div {
    display: grid;
    gap: 2px;
  }
  .truck-card {
    flex: 0 0 min(265px, 78vw);
    grid-template-columns: 82px 1fr;
  }
  .truck-actions a,
  .truck-actions button {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
  }
  .chip {
    min-height: 38px;
  }
  .truck-sheet.expanded {
    top: 150px;
    bottom: 0;
    border-radius: 20px 20px 0 0;
  }
  .truck-sheet.expanded .truck-rail {
    grid-template-columns: 1fr;
  }
  .sponsor-ribbon {
    grid-template-columns: 1fr auto;
    gap: 13px;
    padding: 22px 18px;
  }
  .sponsor-ribbon > div {
    display: grid;
    gap: 8px;
  }
  .sponsor-logo-frame {
    width: fit-content;
    padding: 7px 10px;
  }
  .sponsor-logo {
    width: 158px;
  }
  .sponsor-ribbon p {
    grid-column: 1/3;
    font-size: 0.75rem;
  }
  .sponsor-ribbon > a {
    font-size: 0.7rem;
  }
  .calendar-section,
  .directory-section,
  .discovery {
    padding: 58px 16px;
  }
  .section-heading {
    display: block;
    margin-bottom: 24px;
  }
  .section-heading > p {
    margin-top: 14px;
    font-size: 0.8rem;
  }
  .section-heading h2 {
    font-size: 2.35rem;
  }
  .dates {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-padding-inline: 16px;
  }
  .date {
    flex: 0 0 76px;
    min-height: 72px;
    border-radius: 13px;
  }
  .date b {
    font-size: 1.2rem;
  }
  .calendar-date-block {
    padding: 14px 12px;
  }
  .calendar-toolbar {
    gap: 12px;
    padding: 13px 12px;
  }
  .calendar-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .calendar-filters label > span {
    font-size: 0.7rem;
    letter-spacing: 0.06em;
  }
  .calendar-filters select {
    height: 46px;
    padding: 0 30px 0 10px;
    font-size: 0.78rem;
  }
  .calendar-views {
    width: 100%;
  }
  .calendar-views button {
    flex: 1;
    min-height: 48px;
    padding: 0 8px;
    font-size: 0.76rem;
  }
  .calendar-summary {
    min-height: 43px;
    padding: 0 12px;
  }
  .calendar-summary-actions > span {
    display: none;
  }
  .calendar-content {
    min-height: 260px;
    padding: 12px;
  }
  .calendar-inline-map {
    height: 340px;
    border-radius: 12px;
  }
  .calendar-map-status {
    width: 100%;
  }
  .calendar-map-status button {
    flex: 1;
  }
  .timeline-board {
    min-width: 810px;
  }
  .timeline-hours,
  .timeline-row {
    grid-template-columns: 156px minmax(640px, 1fr);
  }
  .timeline-hours {
    grid-template-columns: 156px repeat(8, minmax(80px, 1fr));
  }
  .calendar-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .calendar-list article {
    grid-template-columns: 48px minmax(0, 1fr);
    align-content: start;
    gap: 7px;
    padding: 8px;
  }
  .calendar-list img {
    width: 48px;
    height: 48px;
    border-radius: 9px;
  }
  .calendar-list span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .calendar-list strong,
  .calendar-list article > a {
    grid-column: 1 / -1;
  }
  .calendar-list strong {
    text-align: left;
  }
  .calendar-list article > a {
    min-height: 34px;
    display: grid;
    place-items: center;
  }
  .month-board {
    min-width: 840px;
  }
  .month-day {
    min-height: 225px;
  }
  .directory-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 9px;
  }
  .directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }
  .calendar-pagination {
    align-items: flex-start;
    flex-direction: column;
  }
  .calendar-pagination > div {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 3px;
  }
  .calendar-pagination button {
    flex: 0 0 auto;
  }
  .directory-image {
    height: 136px;
  }
  .directory-card-body {
    padding: 10px;
  }
  .directory-card h3 {
    font-size: 0.92rem;
  }
  .directory-filters label > span {
    font-size: 0.7rem;
  }
  .directory-filters select {
    min-height: 46px;
    font-size: 0.8rem;
  }
  .park-grid {
    grid-template-columns: 1fr;
  }
  .park-card {
    min-height: 250px;
    padding: 20px;
  }
  .park-actions {
    flex-wrap: wrap;
  }
  .catering-band {
    display: grid;
    gap: 24px;
    padding: 48px 18px;
  }
  .catering-band h2 {
    font-size: 2.35rem;
  }
  .catering-band > a {
    width: 100%;
    text-align: center;
  }
  .owner-band {
    display: block;
    padding: 58px 20px;
  }
  .owner-copy h2 {
    font-size: 3.4rem;
  }
  .owner-info {
    margin-top: 26px;
  }
  .owner-info p {
    font-size: 0.88rem;
  }
  .owner-info .primary-button {
    width: 100%;
  }
  footer {
    padding: 25px 18px calc(25px + env(safe-area-inset-bottom));
    align-items: flex-start;
    flex-direction: column;
  }
  .park-card h3 {
    font-size: 2.3rem;
  }
  dialog {
    padding: 28px 20px;
    max-height: calc(
      100dvh - env(safe-area-inset-top) - env(safe-area-inset-bottom) - 24px
    );
    overflow-y: auto;
  }
  .detail-dialog {
    width: calc(100% - 12px);
    max-height: calc(100dvh - 12px);
  }
  .detail-hero {
    height: 230px;
  }
  .detail-content {
    padding: 20px 16px calc(22px + env(safe-area-inset-bottom));
  }
  .detail-facts {
    grid-template-columns: 1fr;
  }
  .detail-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .detail-actions > * {
    text-align: center;
  }
  .premium-detail-panel {
    margin-top: 14px;
    padding: 14px;
  }
}
@media (max-width: 410px) {
  .site-header .primary-button {
    padding: 9px 11px;
  }
  .favorite-nav {
    display: none !important;
  }
  .brand {
    gap: 8px;
    font-size: 0.8rem;
  }
  .brand-mark {
    width: 32px;
    height: 32px;
  }
  .hero-panel {
    height: auto;
  }
  .hero-copy h1 {
    font-size: 2.5rem;
  }
  .chip {
    font-size: 0.66rem;
    padding: 7px 10px;
  }
  .directory-filters {
    grid-template-columns: 1fr;
  }
  .directory-image {
    height: 112px;
  }
  .directory-card-body {
    padding: 9px;
  }
  .directory-actions button {
    min-height: 30px;
  }
  .calendar-filters {
    grid-template-columns: 1fr 1fr;
  }
  .sheet-heading strong {
    font-size: 0.76rem;
  }
  .truck-card {
    flex-basis: 84vw;
  }
  .sponsor-ribbon strong {
    font-size: 1rem;
  }
}
@media (max-width: 760px) and (orientation: landscape) and (max-height: 500px) {
  .hero-panel {
    height: 280px;
  }
  .hero-copy {
    bottom: 20px;
  }
  .hero-copy h1 {
    font-size: 2.35rem;
  }
  .hero-copy p {
    max-width: 540px;
  }
  .map-panel {
    height: max(390px, 100dvh);
    min-height: 390px;
  }
}

/* Owner plans and self-signup */
.owners-page {
  background: #efe9dd;
  color: #191711;
}
.owners-site-header {
  color: var(--ink);
}
.owners-site-header nav > a.primary-button {
  color: #171610;
}
.owners-main {
  padding-top: 0;
}
.owners-hero {
  min-height: 690px;
  padding: 150px max(7vw, 28px) 90px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 70px;
  align-items: center;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 194, 26, 0.32), transparent 28%),
    linear-gradient(135deg, #171610 0%, #29251c 58%, #1c1a15 100%);
}
.owners-hero-copy h1 {
  margin: 20px 0;
  max-width: 780px;
  font-size: clamp(4rem, 8vw, 7.5rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
}
.owners-hero-copy > p {
  max-width: 650px;
  margin: 0;
  color: #c9c2b6;
  font-size: 1.08rem;
  line-height: 1.75;
}
.owners-hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 32px;
}
.owners-hero-actions > a:not(.primary-button) {
  padding: 13px 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
}
.owners-route-card {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 28px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}
.owners-route-card > span,
.plan-card-top > span {
  color: var(--yellow);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.owners-route-card ol {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}
.owners-route-card li {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  min-height: 66px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.owners-route-card li b {
  color: var(--yellow);
  font-size: .72rem;
}
.owners-route-card li strong {
  font-size: .9rem;
}
.owners-plans,
.signup-section {
  padding: 100px max(7vw, 28px);
}
.owners-heading h2,
.signup-intro h2 {
  color: #191711;
}
.owners-heading > p {
  color: #6f675c;
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1280px;
  margin: 0 auto;
}
.plan-card {
  position: relative;
  min-height: 570px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid #d5ccbd;
  border-radius: 28px;
  background: #f9f5ed;
  box-shadow: 0 20px 55px rgba(54,45,30,.08);
}
.plan-card.featured {
  color: #f8f4ec;
  background: #1d1b16;
  border-color: #1d1b16;
  transform: translateY(-12px);
}
.plan-badge {
  position: absolute;
  top: -13px;
  right: 22px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--yellow);
  color: #18150f;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
}
.plan-card h3 {
  margin: 12px 0 18px;
  font-size: 2rem;
  letter-spacing: -.045em;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin: 0 0 25px;
}
.plan-price b {
  font-size: 3.6rem;
  letter-spacing: -.07em;
}
.plan-price small,
.plan-card > p {
  color: #756d61;
}
.plan-card.featured .plan-price small,
.plan-card.featured > p {
  color: #bbb4a8;
}
.plan-card > p {
  min-height: 58px;
  line-height: 1.55;
}
.plan-card ul {
  list-style: none;
  margin: 20px 0 28px;
  padding: 0;
  display: grid;
  gap: 14px;
}
.plan-card li {
  position: relative;
  padding-left: 25px;
  font-size: .9rem;
  line-height: 1.45;
}
.plan-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #a46f00;
  font-weight: 900;
}
.plan-card.featured li::before {
  color: var(--yellow);
}
.plan-card > button {
  min-height: 52px;
  margin-top: auto;
  border: 1px solid #2c2922;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font-weight: 800;
}
.plan-card.featured > button {
  border-color: var(--yellow);
  background: var(--yellow);
  color: #18150f;
}
.commerce-note {
  max-width: 1280px;
  margin: 28px auto 0;
  padding: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  border-radius: 24px;
  background: #dcd4c5;
}
.commerce-note h3 {
  margin: 8px 0;
  font-size: 1.45rem;
}
.commerce-note p {
  max-width: 800px;
  margin: 0;
  color: #665f54;
  line-height: 1.6;
}
.commerce-note > strong {
  max-width: 250px;
  padding: 15px 18px;
  border-radius: 16px;
  background: #f9f5ed;
  font-size: .82rem;
  line-height: 1.45;
}
.owners-process {
  padding: 90px max(7vw, 28px);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  background: var(--yellow);
}
.owners-process h2 {
  margin: 12px 0 0;
  font-size: clamp(2.9rem, 5vw, 5.5rem);
  line-height: .95;
  letter-spacing: -.065em;
}
.owners-process ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
.owners-process li {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(23,22,16,.23);
}
.owners-process li > b {
  font-size: .75rem;
}
.owners-process li span {
  display: grid;
  gap: 5px;
  color: #62521c;
  line-height: 1.5;
}
.owners-process li strong {
  color: #171610;
  font-size: 1.05rem;
}
.signup-section {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 60px;
  align-items: start;
}
.signup-intro {
  position: sticky;
  top: 110px;
}
.signup-intro h2 {
  margin: 14px 0;
  font-size: clamp(2.7rem, 4vw, 4.5rem);
  line-height: .95;
  letter-spacing: -.06em;
}
.signup-intro p {
  color: #6e665a;
  line-height: 1.65;
}
.signup-wizard {
  min-height: 620px;
  padding: 30px;
  border: 1px solid #d7cebf;
  border-radius: 28px;
  background: #faf7f0;
  box-shadow: 0 24px 60px rgba(54,45,30,.09);
}
.wizard-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-bottom: 34px;
}
.wizard-progress span {
  padding: 11px 8px;
  border-radius: 10px;
  background: #ebe4d7;
  color: #80776a;
  font-size: .7rem;
  font-weight: 750;
  text-align: center;
}
.wizard-progress span.active {
  background: #211f19;
  color: #fff;
}
.wizard-step {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
}
.wizard-step.active {
  display: block;
}
.wizard-step legend {
  padding: 0;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -.04em;
}
.wizard-step > p {
  color: #746c61;
}
.plan-choice-grid {
  display: grid;
  gap: 10px;
  margin: 25px 0;
}
.plan-choice-grid label,
.operating-choice label {
  cursor: pointer;
}
.plan-choice-grid label {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid #d6cdbf;
  border-radius: 16px;
}
.plan-choice-grid label:has(input:checked) {
  border-color: #171610;
  background: #fff8dc;
}
.plan-choice-grid input,
.operating-choice input,
.checkbox-field input {
  accent-color: #171610;
}
.plan-choice-grid span {
  display: grid;
  gap: 3px;
}
.plan-choice-grid small {
  color: #776f63;
}
.operating-choice {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  padding: 18px;
  border-radius: 16px;
  background: #ede6da;
}
.operating-choice > span {
  width: 100%;
  font-weight: 750;
}
.signup-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
  margin-top: 25px;
}
.signup-fields label:not(.checkbox-field) {
  display: grid;
  gap: 7px;
}
.signup-fields label > span {
  font-size: .78rem;
  font-weight: 750;
}
.signup-fields label > span small {
  color: #867e72;
  font-weight: 500;
}
.signup-fields .wide {
  grid-column: 1 / -1;
}
.signup-fields input:not([type="checkbox"]),
.signup-fields textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #cfc5b7;
  border-radius: 12px;
  background: #fff;
  color: #171610;
  outline: none;
}
.signup-fields textarea {
  resize: vertical;
}
.signup-fields input:focus,
.signup-fields textarea:focus {
  border-color: #a87a00;
  box-shadow: 0 0 0 3px rgba(255,194,26,.22);
}
.checkbox-field {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  padding: 14px;
  border-radius: 13px;
  background: #eee7dc;
}
.checkbox-field input {
  width: 19px;
  height: 19px;
}
.signup-honeypot {
  position: absolute !important;
  left: -9999px !important;
}
.wizard-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 28px;
}
.wizard-actions button {
  min-height: 48px;
  padding: 11px 20px;
  border: 1px solid #bbb1a2;
  border-radius: 999px;
  background: transparent;
}
.wizard-actions .primary-button {
  border-color: var(--yellow);
  background: var(--yellow);
}
.form-message {
  min-height: 22px;
  color: #a23420;
  font-size: .82rem;
  font-weight: 700;
}
.signup-review {
  margin-top: 20px;
  padding: 18px;
  display: grid;
  gap: 6px;
  border: 1px solid #d7cebf;
  border-radius: 16px;
  background: #fff;
}
.signup-review > span {
  color: #7a7165;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
}
.signup-review > small,
.signup-review > p {
  color: #756d61;
}
.signup-review > p {
  margin: 8px 0 0;
  font-size: .78rem;
}
.signup-success {
  min-height: 520px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 14px;
  text-align: center;
}
.signup-success > span {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  font-size: 1.8rem;
  font-weight: 900;
}
.signup-success h3 {
  margin: 0;
  font-size: 2rem;
}
.signup-success p {
  max-width: 540px;
  margin: 0 0 12px;
  color: #71695e;
  line-height: 1.6;
}
.owners-page footer {
  color: var(--ink);
}

@media (max-width: 900px) {
  .owners-hero {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .owners-route-card {
    max-width: 620px;
  }
  .plan-grid {
    grid-template-columns: 1fr;
  }
  .plan-card {
    min-height: auto;
  }
  .plan-card.featured {
    transform: none;
  }
  .owners-process,
  .signup-section {
    grid-template-columns: 1fr;
  }
  .signup-intro {
    position: static;
  }
}

@media (max-width: 600px) {
  .owners-site-header nav > a:not(.primary-button) {
    display: none;
  }
  .owners-site-header nav > a.primary-button {
    padding: 9px 12px;
    font-size: .68rem;
  }
  .owners-hero {
    min-height: 0;
    padding: 118px 18px 55px;
  }
  .owners-hero-copy h1 {
    font-size: clamp(3.4rem, 17vw, 4.9rem);
  }
  .owners-hero-copy > p {
    font-size: .9rem;
  }
  .owners-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .owners-hero-actions > a {
    text-align: center;
  }
  .owners-route-card {
    padding: 21px;
  }
  .owners-plans,
  .signup-section {
    padding: 58px 14px;
  }
  .plan-card {
    padding: 22px;
    border-radius: 22px;
  }
  .plan-card h3 {
    font-size: 1.7rem;
  }
  .plan-price b {
    font-size: 3.1rem;
  }
  .commerce-note {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
  }
  .commerce-note > strong {
    max-width: none;
  }
  .owners-process {
    padding: 58px 18px;
    gap: 38px;
  }
  .signup-section {
    gap: 24px;
  }
  .signup-wizard {
    min-height: 0;
    padding: 18px 14px;
    border-radius: 20px;
  }
  .wizard-progress span {
    padding: 10px 5px;
    font-size: .59rem;
  }
  .wizard-step legend {
    font-size: 1.6rem;
  }
  .signup-fields {
    grid-template-columns: 1fr;
  }
  .signup-fields .wide {
    grid-column: auto;
  }
  .operating-choice {
    display: grid;
  }
  .wizard-actions {
    justify-content: stretch;
  }
  .wizard-actions button {
    flex: 1;
  }
}

/* Separate the cuisine, dish and specialty selectors without squeezing mobile. */
.calendar-filters { grid-template-columns:repeat(5,minmax(110px,1fr)); max-width:920px; }
.directory-filters { grid-template-columns:repeat(4,minmax(0,1fr)); }
@media(max-width:850px) { .calendar-filters, .directory-filters { grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media(max-width:440px) { .calendar-filters, .directory-filters { grid-template-columns:1fr; } }
