:root {
  --green: #6F8F72;
  --green-dark: #58765B;
  --blue: #5E8FAF;
  --warm-bg: #F7F5F2;
  --card: #FFFFFF;
  --ink: #2F3437;
  --muted: #66736F;
  --line: #E6E8EB;
  --cream-weekend: #FBF7EF;
  --shadow: 0 8px 24px rgba(33, 39, 36, .08);
  --shadow-soft: 0 4px 14px rgba(33, 39, 36, .06);
  --radius: 18px;
  --font-body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: Poppins, Inter, sans-serif;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--warm-bg); color: var(--ink); font-family: var(--font-body); }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.material-symbols-rounded { font-family: 'Material Symbols Rounded'; font-weight: normal; font-style: normal; line-height: 1; display: inline-block; white-space: nowrap; direction: ltr; -webkit-font-feature-settings: 'liga'; -webkit-font-smoothing: antialiased; }
.site-nav { position: sticky; top: 0; z-index: 30; display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 12px 24px; background: rgba(247,245,242,.94); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(230,232,235,.85); }
.brand-button { display: flex; align-items: center; gap: 10px; border: 0; background: transparent; color: var(--ink); padding: 0; }
.brand-mark { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 14px; background: var(--green); color: white; font-family: var(--font-heading); font-size: 28px; }
.brand-text { font-family: var(--font-heading); font-size: 21px; font-weight: 800; }
.nav-links { display: flex; gap: 6px; flex-wrap: wrap; }
.nav-link { border: 0; background: transparent; color: var(--muted); padding: 10px 12px; border-radius: 999px; font-weight: 700; }
.nav-link:hover, .nav-link.active { background: rgba(111,143,114,.14); color: var(--green-dark); }
.nav-link.subtle { opacity: .75; }
.hero { position: relative; padding: 2rem 1rem 1.5rem; min-height: auto; display: grid; place-items: center; background: linear-gradient(135deg, rgba(111,143,114,.16), rgba(94,143,175,.14)); overflow: hidden; }
.hero-content { position: relative; z-index: 2; text-align: center; color: var(--ink); padding: 24px 16px; width: 100%; max-width: 1200px; margin: 0 auto; }
.hero-logo { width: min(100%, 1000px); max-width: 100%; height: auto; display: block; margin: 0 auto; object-fit: contain; }
.hero-tagline { margin: 12px auto 0; font-size: clamp(16px, 2.4vw, 22px); font-weight: 600; max-width: 620px; color: var(--ink); }
main { width: min(1280px, calc(100% - 32px)); margin: 24px auto 56px; }
.page { display: none; }
.active-page { display: block; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); padding: 18px; }
.today-panel { display: grid; grid-template-columns: 260px 1fr; gap: 18px; margin-bottom: 16px; }
.eyebrow { margin: 0 0 4px; color: var(--green-dark); text-transform: uppercase; letter-spacing: .08em; font-size: 12px; font-weight: 800; }
h2 { margin: 0; font-family: var(--font-heading); letter-spacing: -.02em; }
.today-events { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px; align-items: stretch; }
.today-events .event-pill { display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: start; width: 100%; border: 1px solid var(--line); background: white; border-radius: 14px; padding: 12px; text-align: left; }
.today-events .event-pill::after { display: none !important; content: none !important; }
.today-events .event-icon { width: 28px; height: 28px; border-radius: 9px; display: grid; place-items: center; font-size: 18px; margin-top: 1px; }
.today-events .event-title { font-size: 14px; line-height: 1.25; }
.today-events .event-time, .today-events .event-place { font-size: 12px; }
.toolbar { display: grid; gap: 16px; margin-bottom: 16px; }
.month-controls { display: flex; justify-content: center; align-items: center; gap: 12px; }
.circle-button { display: grid; place-items: center; border: 1px solid var(--line); background: white; color: var(--green-dark); width: 42px; height: 42px; border-radius: 999px; }
.month-select, .filter-grid select, .search-row input, .narrow-card input, .narrow-card textarea { border: 1px solid var(--line); background: white; border-radius: 12px; padding: 10px 12px; color: var(--ink); }
.month-select { font-weight: 800; font-size: 18px; min-width: 210px; text-align: center; }
.filter-grid { display: grid; grid-template-columns: repeat(5, minmax(135px, 1fr)); gap: 12px; }
label { display: grid; gap: 5px; color: var(--muted); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
select.has-value { border-color: rgba(111,143,114,.75); background: rgba(111,143,114,.08); }
.primary-button, .secondary-button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 999px; font-weight: 800; padding: 11px 16px; }
.primary-button { border: 0; background: var(--green); color: white; }
.secondary-button { border: 1px solid var(--green); background: white; color: var(--green-dark); }
.hidden { display: none !important; }
.calendar-layout { display: grid; grid-template-columns: minmax(0, 1fr) 260px; gap: 20px; }
.calendar-card { overflow: hidden; padding: 0; }
.section-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px; border-bottom: 1px solid var(--line); }
.calendar-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); }
.day-name { padding: 10px 8px; background: rgba(111,143,114,.11); color: var(--green-dark); text-align: center; font-weight: 900; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.day-cell { min-height: 146px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 8px; background: white; }
.day-cell.weekend { background: var(--cream-weekend); }
.day-cell.empty { background: #F0EFEC; }
.date-number { display: inline-grid; place-items: center; min-width: 28px; height: 28px; font-weight: 900; color: var(--muted); margin-bottom: 6px; }
.date-number.today { border-radius: 999px; background: var(--green); color: white; }
.day-events { display: grid; gap: 0; }
.event-pill { border: 0; width: 100%; display: grid; grid-template-columns: 22px 1fr; gap: 5px; text-align: left; background: transparent; color: inherit; padding: 6px 2px; border-radius: 10px; }
.event-pill:hover { background: rgba(111,143,114,.12); transform: translateY(-1px); box-shadow: 0 2px 8px rgba(33,39,36,.08); }
.event-pill:not(:last-child)::after { content: ""; grid-column: 2; width: 78%; height: 1px; background: rgba(47,52,55,.14); margin: 7px 0 0; }
.event-icon { width: 22px; height: 22px; border-radius: 7px; display: grid; place-items: center; font-size: 16px; justify-self: center; align-self: start; margin-top: 2px; }
.event-main { display: block; min-width: 0; }
.event-title { display: block; font-size: 12px; line-height: 1.25; font-weight: 800; }
.event-time { display: block; margin-top: 2px; font-size: 11px; line-height: 1.25; font-weight: 700; color: var(--ink); }
.event-place { display: block; margin-top: 2px; font-size: 11px; line-height: 1.25; color: var(--muted); font-weight: 600; }
.explore-anytime { max-height: 75vh; overflow-y: auto; }
.helper { color: var(--muted); margin-top: 6px; }
.anytime-item { padding: 10px 12px; }
.anytime-item strong { display: block; }
.anytime-item span { display: block; color: var(--muted); font-size: 13px; margin-top: 2px; }
.anytime-button { width: 100%; border: 0; background: transparent; text-align: left; cursor: pointer; }
.anytime-button:hover { background: rgba(111,143,114,.08); border-radius: 12px; }
.page-intro { margin-bottom: 16px; }
.search-row { display: flex; align-items: center; gap: 10px; background: white; border: 1px solid var(--line); border-radius: 999px; padding: 0 14px; margin: 16px 0; }
.search-row input { border: 0; outline: 0; flex: 1; padding: 14px 0; background: transparent; }
.activity-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px; }
.activity-card { border: 1px solid var(--line); border-radius: 16px; padding: 16px; background: white; box-shadow: 0 2px 10px rgba(33,39,36,.04); }
.activity-hours { margin: 8px 0; color: var(--ink); font-weight: 800; }
.activity-card h3 { margin: 0 0 8px; font-family: var(--font-heading); }
.badge-row { display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0; }
.badge { display: inline-flex; align-items: center; gap: 4px; border-radius: 999px; background: rgba(111,143,114,.11); color: var(--green-dark); padding: 5px 8px; font-size: 12px; font-weight: 800; }
.card-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.text-button { border: 0; background: transparent; color: var(--green-dark); font-weight: 900; padding: 0; }
.count-pill { background: rgba(94,143,175,.14); color: #315C78; padding: 6px 10px; border-radius: 999px; font-weight: 800; font-size: 13px; }
.narrow-card { max-width: 680px; margin: 0 auto; display: grid; gap: 14px; }
.modal-backdrop { position: fixed; inset: 0; z-index: 80; background: rgba(28,34,31,.48); display: grid; place-items: center; padding: 20px; animation: fadeIn .16s ease both; }
.modal-card { position: relative; width: min(640px, 100%); max-height: min(86vh, 760px); overflow: auto; background: white; border-radius: 24px; box-shadow: 0 24px 70px rgba(0,0,0,.24); padding: 24px; animation: modalIn .18s ease both; }
.modal-close { position: sticky; top: 0; float: right; display: grid; place-items: center; width: 46px; height: 46px; border: 0; border-radius: 999px; background: rgba(47,52,55,.08); color: var(--ink); margin: -8px -8px 8px 8px; }
.empty-day-note { width: 100%; border: 1px dashed rgba(111,143,114,.35); background: rgba(111,143,114,.06); color: var(--green-dark); border-radius: 12px; padding: 8px 6px; font-size: 11px; font-weight: 800; text-align: center; }
.empty-day-note:hover { background: rgba(111,143,114,.12); }
.modal-title { font-family: var(--font-heading); font-size: 28px; margin: 4px 0 6px; line-height: 1.05; }
.modal-section { border-top: 1px solid var(--line); margin-top: 16px; padding-top: 16px; }
.modal-section h4 { margin: 0 0 8px; font-family: var(--font-heading); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalIn { from { opacity: 0; transform: translateY(10px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
@media (max-width: 900px) { .site-nav { align-items: flex-start; flex-direction: column; padding: 10px 16px; } .nav-links { width: 100%; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 2px; } .nav-link { white-space: nowrap; } main { width: min(100% - 24px, 1280px); margin-top: 14px; } .today-panel { grid-template-columns: 1fr; } .filter-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .calendar-layout { grid-template-columns: 1fr; } .explore-anytime { position: static; max-height: none; } .day-cell { min-height: 118px; padding: 6px; } .event-title { font-size: 11px; } .event-place { font-size: 10.5px; } .section-header { flex-direction: column; align-items: flex-start; } }
@media (max-width: 560px) { .brand-text { font-size: 18px; } .hero p { font-size: 15px; } .filter-grid { grid-template-columns: 1fr; } .calendar-grid { font-size: 12px; } .day-name { padding: 7px 2px; } .day-cell { min-height: 96px; padding: 5px; } .date-number { min-width: 24px; height: 24px; font-size: 12px; } .event-pill { grid-template-columns: 18px 1fr; gap: 4px; padding: 4px 1px; } .event-icon { width: 18px; height: 18px; font-size: 13px; border-radius: 6px; } .event-title { font-size: 10px; } .event-place { font-size: 9.5px; } .today-events { grid-template-columns: 1fr; } .today-events .event-pill { grid-template-columns: 30px 1fr; padding: 10px; } .modal-card { padding: 18px; border-radius: 20px; } }
@media print { .site-nav, .hero, .toolbar, .today-panel, .explore-anytime, .primary-button, .modal-backdrop { display: none !important; } body { background: white; } main { width: 100%; margin: 0; } .calendar-layout { display: block; } .calendar-card { width: 100%; box-shadow: none; border: none; } .calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); } .day-cell { min-height: 160px; page-break-inside: avoid; break-inside: avoid; } .event-title { font-size: 11px; } .event-place, .event-time { font-size: 10px; } .section-header { border-bottom: 1px solid #999; } }

/* Weather card on homepage */
.weather-card {
  margin-top: 14px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(94,143,175,.10);
  border: 1px solid rgba(94,143,175,.18);
}

.weather-main {
  display: flex;
  gap: 10px;
  align-items: center;
}

.weather-main .material-symbols-rounded {
  font-size: 34px;
  color: var(--blue);
}

.weather-main strong {
  display: block;
  font-size: 22px;
  line-height: 1;
  font-family: var(--font-heading);
}

.weather-main span:not(.material-symbols-rounded),
.weather-details {
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
}

.weather-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.weather-card p {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--ink);
  font-weight: 650;
}

/* Map page */
.map-card {
  padding: 0;
  overflow: hidden;
}

.activity-map {
  display: block;
  position: relative;
  height: min(70vh, 650px);
  min-height: 460px;
  width: 100%;
  z-index: 1;
  background: #d8ebe8;
}

.map-popup strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 16px;
  margin-bottom: 4px;
}

.map-popup span {
  display: block;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 8px;
}

.map-popup p {
  margin: 8px 0;
}

.map-popup .primary-button {
  padding: 8px 12px;
  font-size: 13px;
  text-decoration: none;
}

@media (max-width: 560px) {
  .activity-map {
    height: 62vh;
    min-height: 380px;
  }
}


.map-empty {
  padding: 18px;
  display: grid;
  gap: 4px;
  color: var(--muted);
}

.map-empty strong {
  color: var(--ink);
  font-family: var(--font-heading);
}

.activity-map.has-no-map-items {
  min-height: 220px;
}

.leaflet-container {
  font-family: var(--font-body);
}


.map-card .section-header {
  position: relative;
  z-index: 2;
  background: white;
}

.leaflet-container {
  height: 100%;
  width: 100%;
  font-family: var(--font-body);
}

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
  max-width: none !important;
}

@media (max-width: 560px) {
  .activity-map {
    min-height: 380px;
    height: 70vh;
  }
}


/* Leaflet local layout fix.
   This protects the map if the external Leaflet CSS fails to load. */
.leaflet-container {
  overflow: hidden;
  position: relative;
  height: 100%;
  width: 100%;
  outline-style: none;
  background: #ddd;
  font-family: var(--font-body);
}

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
  position: absolute;
  left: 0;
  top: 0;
  max-width: none !important;
  max-height: none !important;
}

.leaflet-container img {
  max-width: none !important;
  max-height: none !important;
}

.leaflet-tile {
  width: 256px;
  height: 256px;
  user-select: none;
  -webkit-user-drag: none;
}

.leaflet-marker-icon,
.leaflet-marker-shadow {
  display: block;
}

.leaflet-tile-pane {
  z-index: 200;
}

.leaflet-overlay-pane {
  z-index: 400;
}

.leaflet-shadow-pane {
  z-index: 500;
}

.leaflet-marker-pane {
  z-index: 600;
}

.leaflet-tooltip-pane {
  z-index: 650;
}

.leaflet-popup-pane {
  z-index: 700;
}

.leaflet-control {
  position: relative;
  z-index: 800;
  pointer-events: auto;
}

.leaflet-top,
.leaflet-bottom {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
}

.leaflet-top {
  top: 0;
}

.leaflet-right {
  right: 0;
}

.leaflet-bottom {
  bottom: 0;
}

.leaflet-left {
  left: 0;
}

.leaflet-control-zoom {
  border: 2px solid rgba(0,0,0,.2);
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  margin: 10px;
}

.leaflet-control-zoom a {
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  text-decoration: none;
  color: #000;
  background: #fff;
  border-bottom: 1px solid #ccc;
  font: bold 18px Arial, Helvetica, sans-serif;
}

.leaflet-control-zoom a:last-child {
  border-bottom: 0;
}

.leaflet-control-attribution {
  background: rgba(255,255,255,.8);
  margin: 0;
  padding: 0 5px;
  font-size: 11px;
}

.leaflet-popup {
  position: absolute;
  text-align: center;
  margin-bottom: 20px;
}

.leaflet-popup-content-wrapper {
  background: #fff;
  color: #333;
  border-radius: 12px;
  box-shadow: 0 3px 14px rgba(0,0,0,.4);
  padding: 1px;
  text-align: left;
}

.leaflet-popup-content {
  margin: 13px 19px;
  line-height: 1.4;
}

.leaflet-popup-tip-container {
  width: 40px;
  height: 20px;
  position: absolute;
  left: 50%;
  margin-left: -20px;
  overflow: hidden;
  pointer-events: none;
}

.leaflet-popup-tip {
  width: 17px;
  height: 17px;
  padding: 1px;
  margin: -10px auto 0;
  transform: rotate(45deg);
  background: white;
  box-shadow: 0 3px 14px rgba(0,0,0,.4);
}


/* Calendar welcome pop-up */
.calendar-welcome-backdrop {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(28,34,31,.48);
  display: none;
  place-items: center;
  padding: 20px;
}

.calendar-welcome-backdrop.is-visible {
  display: grid;
  animation: fadeIn .16s ease both;
}

.calendar-welcome-card {
  position: relative;
  width: min(560px, 100%);
  background: white;
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0,0,0,.24);
  padding: 26px;
  animation: modalIn .18s ease both;
}

.calendar-welcome-card h2 {
  margin-bottom: 10px;
  font-size: clamp(24px, 4vw, 34px);
}

.calendar-welcome-card p {
  line-height: 1.55;
}

.calendar-welcome-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(47,52,55,.08);
  color: var(--ink);
}

.calendar-welcome-phone-tip {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;
  margin: 18px 0;
  padding: 14px;
  border-radius: 18px;
  background: rgba(94,143,175,.10);
  border: 1px solid rgba(94,143,175,.18);
}

.calendar-welcome-phone-tip .material-symbols-rounded {
  color: var(--blue);
  font-size: 32px;
}

.calendar-welcome-phone-tip p {
  margin: 0;
}

.calendar-welcome-footer {
  font-weight: 800;
  color: var(--green-dark);
}

@media (max-width: 560px) {
  .calendar-welcome-card {
    padding: 22px;
    border-radius: 20px;
  }

  .calendar-welcome-phone-tip {
    grid-template-columns: 1fr;
  }
}


/* Sticky calendar filters and reliable week-row calendar layout */
:root {
  --sticky-offset: 0px;
}

#calendarPage .toolbar {
  position: sticky;
  top: var(--sticky-offset);
  z-index: 29;
  padding: 12px;
  gap: 10px;
  box-shadow: var(--shadow);
}

#calendarPage .toolbar .month-controls {
  gap: 8px;
}

#calendarPage .toolbar .circle-button {
  width: 36px;
  height: 36px;
}

#calendarPage .toolbar .month-select,
#calendarPage .toolbar .filter-grid select {
  padding: 7px 10px;
}

#calendarPage .toolbar .month-select {
  font-size: 16px;
  min-width: 190px;
}

#calendarPage .toolbar label {
  gap: 3px;
  font-size: 10px;
}

.calendar-week-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.calendar-week-row.has-today {
  scroll-margin-top: calc(var(--sticky-offset) + 140px);
}

@media (max-width: 900px) {
  #calendarPage .toolbar {
    padding: 10px;
  }

  #calendarPage .toolbar .filter-grid {
    grid-template-columns: repeat(5, minmax(92px, 1fr));
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  #calendarPage .toolbar .filter-grid label {
    min-width: 92px;
  }

  #calendarPage .toolbar .month-select {
    min-width: 170px;
    font-size: 15px;
  }
}

@media (max-width: 560px) {
  #calendarPage .toolbar .filter-grid {
    grid-template-columns: repeat(5, minmax(86px, 1fr));
  }

  #calendarPage .toolbar .filter-grid label {
    min-width: 86px;
  }

  #calendarPage .toolbar .month-controls {
    justify-content: flex-start;
    overflow-x: auto;
  }
}


/* Clearer today highlight */
.day-cell.today-cell {
  background: rgba(111, 143, 114, .16) !important;
  box-shadow: inset 0 0 0 2px rgba(111, 143, 114, .45);
  position: relative;
}

.day-cell.today-cell::before {
  content: "Today";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(111, 143, 114, .18);
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
  vertical-align: middle;
}

.day-cell.today-cell .date-number.today {
  box-shadow: 0 0 0 3px rgba(111, 143, 114, .20);
}

.day-cell.today-cell.weekend {
  background: linear-gradient(
    0deg,
    rgba(111, 143, 114, .16),
    rgba(111, 143, 114, .16)
  ), var(--cream-weekend) !important;
}


/* Plan Your Day page */
.plan-hero p {
  max-width: 760px;
}

.plan-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.plan-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(47,52,55,.04);
  color: var(--muted);
}

.plan-step span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  font-weight: 900;
}

.plan-step.active {
  background: rgba(111,143,114,.14);
  color: var(--green-dark);
}

.plan-step.active span {
  background: var(--green);
  color: white;
  border-color: var(--green);
}

.plan-builder {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: start;
}

.plan-picker {
  display: grid;
  gap: 16px;
}

.plan-list-section {
  display: grid;
  gap: 10px;
}

.plan-list-section h3 {
  margin: 0;
  font-family: var(--font-heading);
}

.plan-choice-list {
  display: grid;
  gap: 10px;
}

.plan-choice-card {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  text-transform: none;
  letter-spacing: normal;
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
}

.plan-choice-card input {
  margin-top: 3px;
  accent-color: var(--green);
}

.plan-choice-card strong,
.plan-choice-card small,
.plan-choice-card em {
  display: block;
}

.plan-choice-card small {
  margin-top: 3px;
  color: var(--muted);
  font-weight: 700;
}

.plan-choice-card em {
  margin-top: 6px;
  color: var(--muted);
  font-style: normal;
  font-weight: 500;
}

.plan-selected-panel {
  position: sticky;
  top: calc(var(--sticky-offset) + 18px);
  display: grid;
  gap: 12px;
}

.plan-selected-list {
  display: grid;
  gap: 8px;
}

.plan-selected-item {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 8px;
  align-items: start;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
}

.plan-selected-item strong,
.plan-selected-item span {
  display: block;
}

.plan-selected-item span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}

.plan-remove {
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 999px;
  background: #F8D7DA;
  color: #9F1D2B;
  font-weight: 900;
  line-height: 1;
}

.plan-output {
  padding: 0;
  overflow: hidden;
}

.plan-output-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.printable-plan {
  padding: 26px;
  background: white;
}

.print-plan-header {
  border-bottom: 2px solid var(--line);
  margin-bottom: 18px;
  padding-bottom: 14px;
}

.print-plan-header h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 34px;
}

.print-plan-header p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 800;
}

.print-plan-list {
  display: grid;
  gap: 16px;
}

.print-plan-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  break-inside: avoid;
}

.print-plan-time {
  font-weight: 900;
  color: var(--green-dark);
}

.print-plan-details h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

.print-plan-details p {
  margin: 6px 0;
  line-height: 1.4;
}

.print-link-row {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  font-weight: 900;
}

@media (max-width: 900px) {
  .plan-builder {
    grid-template-columns: 1fr;
  }

  .plan-selected-panel {
    position: static;
  }

  .plan-steps {
    grid-template-columns: 1fr;
  }

  .print-plan-item {
    grid-template-columns: 1fr;
  }
}

@media print {
  body.printing-plan .site-nav,
  body.printing-plan .hero,
  body.printing-plan .plan-hero,
  body.printing-plan .plan-steps,
  body.printing-plan #planStepDate,
  body.printing-plan #planStepPick,
  body.printing-plan .no-print,
  body.printing-plan #calendarPage,
  body.printing-plan #explorePage,
  body.printing-plan #mapPage,
  body.printing-plan #suggestPage,
  body.printing-plan #adminPage,
  body.printing-plan .modal-backdrop {
    display: none !important;
  }

  body.printing-plan main {
    width: 100%;
    margin: 0;
  }

  body.printing-plan #planPage,
  body.printing-plan #planStepOutput {
    display: block !important;
  }

  body.printing-plan .plan-output {
    box-shadow: none;
    border: 0;
  }

  body.printing-plan .printable-plan {
    padding: 0;
  }

  body.printing-plan .print-plan-item {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  body.printing-plan a {
    color: black;
    text-decoration: none;
  }
}


/* Plan Your Day usability + print improvements */
.plan-selected-panel {
  max-height: calc(100vh - var(--sticky-offset) - 36px);
  overflow: hidden;
}

.plan-selected-list {
  max-height: min(52vh, 480px);
  overflow-y: auto;
  padding-right: 4px;
}

.plan-selected-list::-webkit-scrollbar {
  width: 8px;
}

.plan-selected-list::-webkit-scrollbar-thumb {
  background: rgba(111,143,114,.35);
  border-radius: 999px;
}

.plan-selected-list::-webkit-scrollbar-track {
  background: rgba(47,52,55,.06);
  border-radius: 999px;
}

.plan-selected-panel .primary-button:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.printable-plan {
  padding: 28px;
  background: #fff;
}

.print-plan-cover {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--line);
}

.print-plan-cover h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 46px);
  line-height: 1;
}

.print-plan-date {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 900;
  font-size: 16px;
}

.print-plan-summary-box {
  display: grid;
  place-items: center;
  min-width: 116px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(111,143,114,.12);
  color: var(--green-dark);
  text-align: center;
}

.print-plan-summary-box strong {
  font-family: var(--font-heading);
  font-size: 36px;
  line-height: 1;
}

.print-plan-summary-box span {
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.print-plan-quick-note {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 16px 0;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(94,143,175,.10);
  border: 1px solid rgba(94,143,175,.18);
}

.print-plan-quick-note strong {
  color: #315C78;
}

.print-plan-timeline {
  display: grid;
  gap: 14px;
}

.print-plan-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  break-inside: avoid;
}

.print-plan-number {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--green);
  color: white;
  font-weight: 900;
}

.print-plan-main {
  min-width: 0;
}

.print-plan-item-header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
}

.print-plan-time {
  margin: 0 0 4px;
  color: var(--green-dark);
  font-weight: 900;
}

.print-plan-item h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.1;
}

.print-plan-type {
  flex: 0 0 auto;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(47,52,55,.07);
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.print-plan-description {
  margin: 10px 0 0;
  line-height: 1.45;
}

.print-plan-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 12px;
}

.print-plan-info-grid div {
  padding: 9px 10px;
  border-radius: 12px;
  background: rgba(47,52,55,.035);
}

.print-plan-info-grid strong,
.print-plan-info-grid span {
  display: block;
}

.print-plan-info-grid strong {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.print-plan-info-grid span {
  font-weight: 750;
  line-height: 1.35;
}

.print-plan-note {
  margin-top: 12px;
  padding: 11px 12px;
  border-left: 4px solid var(--green);
  background: rgba(111,143,114,.08);
  border-radius: 0 12px 12px 0;
}

.print-plan-note strong {
  display: block;
  margin-bottom: 3px;
  color: var(--green-dark);
}

.print-plan-note p {
  margin: 0;
  line-height: 1.45;
}

.print-plan-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
  font-weight: 900;
}

.print-plan-links a {
  color: var(--green-dark);
}

.print-plan-footer {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .plan-selected-panel {
    max-height: none;
  }

  .plan-selected-list {
    max-height: 260px;
  }

  .print-plan-cover {
    display: grid;
  }

  .print-plan-summary-box {
    width: fit-content;
  }

  .print-plan-info-grid {
    grid-template-columns: 1fr;
  }
}

@media print {
  body.printing-plan {
    background: white;
    color: #111;
    font-size: 11pt;
  }

  body.printing-plan .printable-plan {
    padding: 0;
  }

  body.printing-plan .print-plan-cover {
    padding-bottom: 10px;
    border-bottom: 2px solid #222;
  }

  body.printing-plan .print-plan-cover h1 {
    font-size: 26pt;
  }

  body.printing-plan .print-plan-date {
    color: #111;
    font-size: 12pt;
  }

  body.printing-plan .print-plan-summary-box {
    border: 1px solid #222;
    background: white;
    color: #111;
    padding: 8px;
    min-width: 86px;
  }

  body.printing-plan .print-plan-summary-box strong {
    font-size: 22pt;
  }

  body.printing-plan .print-plan-quick-note {
    border: 1px solid #999;
    background: white;
    padding: 8px;
    margin: 10px 0;
  }

  body.printing-plan .print-plan-timeline {
    gap: 8px;
  }

  body.printing-plan .print-plan-item {
    grid-template-columns: 28px 1fr;
    gap: 8px;
    padding: 9px 0;
    border: 0;
    border-bottom: 1px solid #999;
    border-radius: 0;
    page-break-inside: avoid;
    break-inside: avoid;
  }

  body.printing-plan .print-plan-number {
    width: 22px;
    height: 22px;
    background: white;
    color: #111;
    border: 1px solid #111;
    font-size: 10pt;
  }

  body.printing-plan .print-plan-item h2 {
    font-size: 15pt;
  }

  body.printing-plan .print-plan-time {
    color: #111;
    font-size: 10.5pt;
  }

  body.printing-plan .print-plan-type {
    border: 1px solid #999;
    background: white;
    color: #111;
    font-size: 8pt;
    padding: 3px 6px;
  }

  body.printing-plan .print-plan-description {
    margin-top: 5px;
  }

  body.printing-plan .print-plan-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    margin-top: 7px;
  }

  body.printing-plan .print-plan-info-grid div {
    background: white;
    border: 1px solid #ddd;
    padding: 5px 6px;
    border-radius: 0;
  }

  body.printing-plan .print-plan-info-grid strong {
    color: #333;
    font-size: 8pt;
  }

  body.printing-plan .print-plan-note {
    margin-top: 7px;
    padding: 6px 8px;
    border-left: 3px solid #111;
    background: white;
    border-radius: 0;
  }

  body.printing-plan .print-plan-links {
    margin-top: 6px;
    gap: 10px;
  }

  body.printing-plan .print-plan-links a::after {
    content: " (" attr(href) ")";
    font-weight: 400;
    font-size: 8pt;
    word-break: break-all;
  }

  body.printing-plan .print-plan-footer {
    margin-top: 10px;
    padding-top: 8px;
    font-size: 9pt;
    color: #111;
  }
}

@page { margin: .45in; }


/* Force Added to Your Day panel to have its own scroll */
.plan-selected-panel {
  position: sticky;
  top: calc(var(--sticky-offset) + 18px);
  max-height: calc(100vh - var(--sticky-offset) - 36px);
  display: flex !important;
  flex-direction: column;
  overflow: hidden !important;
}

.plan-selected-panel > .eyebrow,
.plan-selected-panel > h2,
.plan-selected-panel > .primary-button {
  flex: 0 0 auto;
}

.plan-selected-list {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto !important;
  padding-right: 6px;
  overscroll-behavior: contain;
}

.plan-selected-list::-webkit-scrollbar {
  width: 8px;
}

.plan-selected-list::-webkit-scrollbar-thumb {
  background: rgba(111,143,114,.45);
  border-radius: 999px;
}

.plan-selected-list::-webkit-scrollbar-track {
  background: rgba(47,52,55,.08);
  border-radius: 999px;
}

@media (max-width: 900px) {
  .plan-selected-panel {
    position: static;
    max-height: 420px;
  }

  .plan-selected-list {
    max-height: 260px;
  }
}


/* Temporary Strawberry Festival banner + planner */
.festival-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
  border-color: rgba(197, 63, 75, .28);
  background: linear-gradient(135deg, rgba(255,245,246,.96), rgba(255,250,240,.96));
}

.festival-banner-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 22px;
  background: rgba(197, 63, 75, .14);
  font-size: 36px;
}

.festival-banner h2 {
  color: #9F1D2B;
}

.festival-banner p {
  margin: 6px 0 0;
}

.festival-banner-button {
  background: #C53F4B;
}

.festival-page-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  border-color: rgba(197, 63, 75, .28);
  background: linear-gradient(135deg, rgba(255,245,246,.96), rgba(255,250,240,.96));
}

.festival-page-hero-icon {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  border-radius: 26px;
  background: rgba(197, 63, 75, .14);
  font-size: 46px;
}

.festival-page-hero h2 {
  color: #9F1D2B;
}

.festival-day-picker {
  display: grid;
  gap: 14px;
}

.festival-day-buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.festival-day-button {
  display: grid;
  gap: 4px;
  text-align: left;
  border: 1px solid rgba(197, 63, 75, .25);
  background: white;
  border-radius: 20px;
  padding: 18px;
  color: var(--ink);
}

.festival-day-button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
  background: rgba(197, 63, 75, .06);
}

.festival-day-button span {
  color: #9F1D2B;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 12px;
}

.festival-day-button strong {
  font-family: var(--font-heading);
  font-size: 24px;
}

.festival-builder {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: start;
}

.festival-picker {
  display: grid;
  gap: 16px;
}

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

.festival-chip {
  border: 1px solid rgba(197, 63, 75, .25);
  background: white;
  color: #9F1D2B;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 900;
}

.festival-chip.active,
.festival-chip:hover {
  background: #C53F4B;
  color: white;
}

.festival-help-row {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px;
  border-radius: 16px;
  background: rgba(197, 63, 75, .07);
  color: var(--muted);
}

.festival-help-row .material-symbols-rounded {
  color: #C53F4B;
}

.festival-help-row p {
  margin: 0;
  line-height: 1.45;
}

.festival-selected-panel {
  position: sticky;
  top: calc(var(--sticky-offset) + 18px);
  max-height: calc(100vh - var(--sticky-offset) - 36px);
  display: flex !important;
  flex-direction: column;
  overflow: hidden !important;
  border-color: rgba(197, 63, 75, .22);
}

.festival-selected-panel > .eyebrow,
.festival-selected-panel > h2,
.festival-selected-panel > .primary-button {
  flex: 0 0 auto;
}

.festival-selected-panel .plan-selected-list {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto !important;
  padding-right: 6px;
}

.festival-selected-panel .primary-button {
  background: #C53F4B;
}

.festival-selected-panel .primary-button:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.festival-adult-badge {
  display: inline-flex;
  margin-left: 6px;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(47,52,55,.08);
  color: var(--muted);
  font-size: 10px;
  vertical-align: middle;
}

.festival-print-cover h1 {
  color: #9F1D2B;
}

.festival-summary-box {
  background: rgba(197, 63, 75, .12);
  color: #9F1D2B;
}

.festival-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.festival-stat-row span {
  border-radius: 999px;
  background: rgba(197, 63, 75, .10);
  color: #9F1D2B;
  padding: 7px 10px;
  font-weight: 900;
  font-size: 12px;
}

.festival-quick-note {
  background: rgba(197, 63, 75, .08);
  border-color: rgba(197, 63, 75, .18);
}

.festival-quick-note strong {
  color: #9F1D2B;
}

.festival-print-item .print-plan-number {
  background: #C53F4B;
}

@media (max-width: 900px) {
  .festival-banner,
  .festival-page-hero,
  .festival-builder {
    grid-template-columns: 1fr;
  }

  .festival-banner-button {
    width: 100%;
  }

  .festival-day-buttons {
    grid-template-columns: 1fr;
  }

  .festival-selected-panel {
    position: static;
    max-height: 420px;
  }
}

@media print {
  body.printing-plan #festivalPage {
    display: block !important;
  }

  body.printing-plan #festivalDayPicker,
  body.printing-plan #festivalPlannerBuilder,
  body.printing-plan .festival-page-hero {
    display: none !important;
  }

  body.printing-plan .festival-print-cover h1,
  body.printing-plan .festival-summary-box,
  body.printing-plan .festival-quick-note strong,
  body.printing-plan .festival-stat-row span {
    color: #111;
  }

  body.printing-plan .festival-stat-row span {
    border: 1px solid #999;
    background: white;
  }

  body.printing-plan .festival-print-item .print-plan-number {
    background: white;
  }
}


/* Strawberry Festival banner visibility fix */
.festival-banner {
  display: grid !important;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
  border-color: rgba(197, 63, 75, .28) !important;
  background: linear-gradient(135deg, rgba(255,245,246,.96), rgba(255,250,240,.96)) !important;
}

.festival-banner-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 22px;
  background: rgba(197, 63, 75, .14);
  font-size: 36px;
}

.festival-banner h2 {
  color: #9F1D2B;
}

.festival-banner p {
  margin: 6px 0 0;
}

.festival-banner-button {
  background: #C53F4B !important;
}

@media (max-width: 900px) {
  .festival-banner {
    grid-template-columns: 1fr;
  }

  .festival-banner-button {
    width: 100%;
  }
}


/* Strawberry Festival cute theme + compact printable plan */
#festivalPage {
  padding: 18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 8%, rgba(197, 63, 75, .12), transparent 26%),
    radial-gradient(circle at 90% 18%, rgba(111, 143, 114, .10), transparent 24%),
    linear-gradient(135deg, #fff4f6 0%, #fffaf0 52%, #fff6f7 100%);
}

#festivalPage .card {
  border-color: rgba(197, 63, 75, .20);
}

.festival-page-hero {
  position: relative;
  overflow: hidden;
}

.festival-page-hero::after {
  content: "🍓 🍓 🍓";
  position: absolute;
  right: 22px;
  bottom: 14px;
  opacity: .16;
  font-size: 44px;
  letter-spacing: 10px;
  pointer-events: none;
}

.festival-day-picker {
  background: rgba(255, 255, 255, .88);
}

.festival-day-button {
  position: relative;
  overflow: hidden;
}

.festival-day-button::after {
  content: "🍓";
  position: absolute;
  right: 14px;
  bottom: 10px;
  opacity: .16;
  font-size: 42px;
}

.festival-picker,
.festival-selected-panel,
#festivalPlanOutput {
  background: rgba(255, 255, 255, .92);
}

.festival-choice-card {
  border-color: rgba(197, 63, 75, .18);
}

.festival-choice-card:hover {
  background: rgba(197, 63, 75, .045);
}

/* More compact festival generated plan */
.festival-printable-plan {
  padding: 22px;
}

.festival-printable-plan .print-plan-cover {
  padding-bottom: 10px;
}

.festival-printable-plan .print-plan-cover h1 {
  font-size: clamp(26px, 4vw, 34px);
}

.festival-printable-plan .print-plan-date {
  margin-top: 4px;
}

.festival-printable-plan .festival-stat-row {
  margin: 10px 0;
}

.festival-printable-plan .print-plan-quick-note {
  margin: 8px 0 12px;
  padding: 9px 11px;
}

.festival-compact-timeline {
  display: grid;
  gap: 8px;
}

.festival-compact-item {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  break-inside: avoid;
}

.festival-compact-time {
  font-weight: 900;
  color: #9F1D2B;
  line-height: 1.25;
}

.festival-compact-title-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: baseline;
}

.festival-compact-title-row h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.1;
}

.festival-compact-title-row span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(197, 63, 75, .12);
  color: #9F1D2B;
  font-size: 11px;
  font-weight: 900;
}

.festival-compact-meta,
.festival-compact-address,
.festival-compact-desc,
.festival-compact-note {
  margin: 3px 0 0;
  line-height: 1.3;
}

.festival-compact-meta {
  font-weight: 850;
  color: var(--muted);
  font-size: 13px;
}

.festival-compact-address {
  font-size: 12px;
  color: var(--muted);
}

.festival-compact-desc,
.festival-compact-note {
  font-size: 13px;
}

.festival-compact-note strong {
  color: #9F1D2B;
}

@media (max-width: 560px) {
  #festivalPage {
    padding: 10px;
    border-radius: 18px;
  }

  .festival-compact-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media print {
  body.printing-plan #festivalPage {
    padding: 0 !important;
    background: white !important;
  }

  body.printing-plan .festival-printable-plan {
    padding: 0 !important;
  }

  body.printing-plan .festival-printable-plan .print-plan-cover {
    padding-bottom: 6px;
  }

  body.printing-plan .festival-printable-plan .print-plan-cover h1 {
    font-size: 20pt !important;
  }

  body.printing-plan .festival-printable-plan .print-plan-date {
    font-size: 10pt !important;
  }

  body.printing-plan .festival-printable-plan .print-plan-summary-box {
    min-width: 62px;
    padding: 5px;
  }

  body.printing-plan .festival-printable-plan .print-plan-summary-box strong {
    font-size: 18pt;
  }

  body.printing-plan .festival-stat-row {
    margin: 6px 0;
    gap: 4px;
  }

  body.printing-plan .festival-stat-row span {
    padding: 3px 6px;
    font-size: 8.5pt;
  }

  body.printing-plan .festival-printable-plan .print-plan-quick-note {
    margin: 5px 0 8px;
    padding: 5px 7px;
    font-size: 9pt;
  }

  body.printing-plan .festival-compact-timeline {
    gap: 0;
  }

  body.printing-plan .festival-compact-item {
    grid-template-columns: 82px 1fr;
    gap: 7px;
    padding: 5px 0;
    border-bottom: 1px solid #bbb;
    page-break-inside: avoid;
    break-inside: avoid;
  }

  body.printing-plan .festival-compact-time {
    color: #111;
    font-size: 9.5pt;
  }

  body.printing-plan .festival-compact-title-row h2 {
    font-size: 11.5pt;
  }

  body.printing-plan .festival-compact-title-row span {
    display: none;
  }

  body.printing-plan .festival-compact-meta,
  body.printing-plan .festival-compact-address {
    font-size: 8.5pt;
    color: #111;
    margin-top: 1px;
  }

  body.printing-plan .festival-compact-desc,
  body.printing-plan .festival-compact-note {
    font-size: 8.8pt;
    margin-top: 2px;
  }

  body.printing-plan .festival-compact-note strong {
    color: #111;
  }

  body.printing-plan .print-plan-footer {
    font-size: 8pt;
    margin-top: 6px;
    padding-top: 4px;
  }
}


/* Stronger Strawberry Festival theme */
#festivalPage {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 8% 10%, rgba(197, 63, 75, .22), transparent 24%),
    radial-gradient(circle at 92% 8%, rgba(197, 63, 75, .18), transparent 22%),
    radial-gradient(circle at 22% 88%, rgba(111, 143, 114, .15), transparent 22%),
    linear-gradient(135deg, #ffe8ec 0%, #fff7ee 48%, #ffeef2 100%) !important;
}

#festivalPage::before {
  content: "🍓";
  position: absolute;
  top: 18px;
  right: 26px;
  font-size: 78px;
  opacity: .16;
  transform: rotate(12deg);
  pointer-events: none;
}

#festivalPage::after {
  content: "🍓 🍓 🍓";
  position: absolute;
  left: 18px;
  bottom: 18px;
  font-size: 42px;
  opacity: .12;
  letter-spacing: 12px;
  pointer-events: none;
}

.festival-page-hero,
.festival-day-picker,
.festival-picker,
.festival-selected-panel,
#festivalPlanOutput {
  position: relative;
  z-index: 1;
}

.festival-page-hero {
  border: 2px solid rgba(197, 63, 75, .24) !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,.88), rgba(255,244,246,.92)),
    radial-gradient(circle at 90% 20%, rgba(197, 63, 75, .16), transparent 28%) !important;
  box-shadow: 0 10px 30px rgba(159, 29, 43, .10);
}

.festival-page-hero-icon {
  background: linear-gradient(135deg, #C53F4B, #F07A88) !important;
  color: white;
  box-shadow: 0 10px 22px rgba(197, 63, 75, .24);
}

.festival-page-hero h2 {
  color: #9F1D2B !important;
}

.festival-page-hero::after {
  content: "🍓 🍓";
  opacity: .22 !important;
  color: #C53F4B;
}

.festival-day-picker {
  border: 2px solid rgba(197, 63, 75, .18) !important;
  background: rgba(255, 255, 255, .90) !important;
}

.festival-day-button {
  border: 2px solid rgba(197, 63, 75, .22) !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(255,239,242,.94)) !important;
}

.festival-day-button:hover {
  background: linear-gradient(135deg, rgba(255,239,242,.98), rgba(255,248,235,.96)) !important;
  border-color: rgba(197, 63, 75, .45) !important;
}

.festival-day-button::after {
  opacity: .24 !important;
  font-size: 48px !important;
}

.festival-filter-row {
  padding: 10px;
  border-radius: 18px;
  background: rgba(197, 63, 75, .07);
  border: 1px solid rgba(197, 63, 75, .13);
}

.festival-chip {
  border: 1px solid rgba(197, 63, 75, .32) !important;
  background: white !important;
  color: #9F1D2B !important;
}

.festival-chip.active,
.festival-chip:hover {
  background: linear-gradient(135deg, #C53F4B, #E76573) !important;
  color: white !important;
  box-shadow: 0 4px 12px rgba(197, 63, 75, .18);
}

.festival-picker,
.festival-selected-panel {
  border: 2px solid rgba(197, 63, 75, .16) !important;
  box-shadow: 0 10px 26px rgba(159, 29, 43, .08);
}

.festival-choice-card {
  border-color: rgba(197, 63, 75, .20) !important;
}

.festival-choice-card input {
  accent-color: #C53F4B;
}

.festival-choice-card:has(input:checked) {
  background: rgba(197, 63, 75, .08) !important;
  border-color: rgba(197, 63, 75, .44) !important;
}

.festival-selected-panel h2::after {
  content: " 🍓";
}

.festival-selected-panel .primary-button,
.festival-banner-button {
  background: linear-gradient(135deg, #C53F4B, #E76573) !important;
  box-shadow: 0 8px 18px rgba(197, 63, 75, .20);
}

.festival-banner {
  border: 2px solid rgba(197, 63, 75, .24) !important;
  background:
    linear-gradient(135deg, rgba(255,235,239,.98), rgba(255,250,240,.98)),
    radial-gradient(circle at 94% 12%, rgba(197, 63, 75, .22), transparent 26%) !important;
  box-shadow: 0 10px 26px rgba(159, 29, 43, .10);
}

.festival-banner-icon {
  background: linear-gradient(135deg, #C53F4B, #F07A88) !important;
  color: white;
}

.festival-banner h2::after {
  content: " 🍓";
}

@media (max-width: 560px) {
  #festivalPage {
    padding: 12px;
    border-radius: 20px;
  }

  #festivalPage::before {
    font-size: 56px;
    right: 8px;
    top: 8px;
  }

  #festivalPage::after {
    display: none;
  }
}

@media print {
  #festivalPage::before,
  #festivalPage::after,
  .festival-page-hero::after,
  .festival-banner h2::after,
  .festival-selected-panel h2::after {
    display: none !important;
    content: none !important;
  }
}


/* Prominent Strawberry Festival homepage feature */
.festival-super-banner {
  position: relative;
  overflow: hidden;
  margin-bottom: 18px;
  border-radius: 30px;
  border: 2px solid rgba(197, 63, 75, .26);
  background:
    radial-gradient(circle at 8% 18%, rgba(197, 63, 75, .24), transparent 24%),
    radial-gradient(circle at 92% 20%, rgba(111, 143, 114, .16), transparent 24%),
    linear-gradient(135deg, #ffe5ea 0%, #fff7ed 46%, #ffdce4 100%);
  box-shadow: 0 14px 36px rgba(159, 29, 43, .13);
}

.festival-super-banner::before {
  content: "🍓";
  position: absolute;
  right: 28px;
  top: -18px;
  font-size: 120px;
  opacity: .13;
  transform: rotate(12deg);
  pointer-events: none;
}

.festival-super-banner::after {
  content: "🍓 🍓 🍓";
  position: absolute;
  left: 18px;
  bottom: 12px;
  font-size: 34px;
  opacity: .13;
  letter-spacing: 10px;
  pointer-events: none;
}

.festival-super-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
}

.festival-super-strawberry {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 28px;
  background: linear-gradient(135deg, #C53F4B, #F07A88);
  color: white;
  font-size: 48px;
  box-shadow: 0 12px 26px rgba(197, 63, 75, .25);
}

.festival-super-kicker {
  margin: 0 0 4px;
  color: #9F1D2B;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: 12px;
  font-weight: 900;
}

.festival-super-copy h2 {
  margin: 0;
  color: #9F1D2B;
  font-size: clamp(28px, 4vw, 44px);
}

.festival-super-copy p:last-child {
  margin: 6px 0 0;
  max-width: 720px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.45;
}

.festival-super-button {
  background: linear-gradient(135deg, #C53F4B, #E76573) !important;
  box-shadow: 0 10px 22px rgba(197, 63, 75, .24);
  white-space: nowrap;
  font-size: 16px;
  padding: 14px 20px;
}

@media (max-width: 900px) {
  .festival-super-content {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .festival-super-strawberry {
    width: 70px;
    height: 70px;
    font-size: 40px;
  }

  .festival-super-button {
    width: 100%;
  }
}

@media print {
  .festival-super-banner {
    display: none !important;
  }
}


/* Keep Flexible Ideas visible while scrolling the calendar */
.calendar-layout {
  align-items: start;
}

#calendarPage .explore-anytime {
  position: sticky;
  top: calc(var(--sticky-offset) + 132px);
  max-height: calc(100vh - var(--sticky-offset) - 152px);
  overflow-y: auto;
  z-index: 20;
}

#calendarPage .explore-anytime::-webkit-scrollbar {
  width: 8px;
}

#calendarPage .explore-anytime::-webkit-scrollbar-thumb {
  background: rgba(111,143,114,.35);
  border-radius: 999px;
}

#calendarPage .explore-anytime::-webkit-scrollbar-track {
  background: rgba(47,52,55,.06);
  border-radius: 999px;
}

@media (max-width: 900px) {
  #calendarPage .explore-anytime {
    position: static;
    max-height: none;
  }
}




/* Phase 3 SEO/accessibility helpers */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.seo-faq {
  margin-top: 20px;
}

.seo-faq h2 {
  margin-bottom: 14px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.faq-grid article {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  background: rgba(111,143,114,.045);
}

.faq-grid h3 {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-size: 16px;
}

.faq-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

@media print {
  .seo-faq {
    display: none !important;
  }
}


/* Guides */
.guides-intro {
  background: linear-gradient(135deg, rgba(111,143,114,.10), rgba(94,143,175,.09));
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.guide-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.guide-card-image,
.guide-card-placeholder {
  width: 100%;
  height: 190px;
  display: block;
}

.guide-card-image {
  object-fit: cover;
}

.guide-card-placeholder {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(111,143,114,.22), rgba(94,143,175,.18));
  color: var(--green-dark);
  font-family: var(--font-heading);
  font-size: 88px;
  font-weight: 900;
}

.guide-card-body {
  display: grid;
  gap: 10px;
  padding: 16px;
  flex: 1;
}

.guide-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 21px;
  line-height: 1.15;
}

.guide-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.guide-category {
  justify-self: start;
  border-radius: 999px;
  background: rgba(111,143,114,.12);
  color: var(--green-dark);
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 900;
}

.guide-meta,
.guide-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.guide-detail {
  max-width: 940px;
  margin: 0 auto;
  padding: clamp(18px, 4vw, 42px);
}

.guide-back {
  margin-bottom: 18px;
}

.guide-detail-header h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 62px);
  line-height: .98;
  letter-spacing: -.04em;
}

.guide-excerpt {
  font-size: 19px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 760px;
}

.guide-hero-image,
.guide-figure img {
  width: 100%;
  border-radius: 22px;
  display: block;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.guide-hero-image {
  max-height: 440px;
  margin: 24px 0;
}

.guide-toc {
  margin: 22px 0;
  padding: 16px;
  border: 1px solid rgba(111,143,114,.22);
  border-radius: 18px;
  background: rgba(111,143,114,.07);
}

.guide-toc strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.guide-toc ul {
  margin: 0;
  padding-left: 22px;
}

.guide-toc a {
  color: var(--green-dark);
  font-weight: 800;
}

.guide-section {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.guide-section h2 {
  font-size: clamp(24px, 4vw, 34px);
  margin-bottom: 10px;
}

.guide-section p,
.guide-section li {
  font-size: 17px;
  line-height: 1.65;
}

.guide-section p {
  margin: 0 0 12px;
}

.guide-figure {
  margin: 18px 0 0;
}

.guide-figure figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.guide-related {
  margin-top: 26px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(94,143,175,.08);
  border: 1px solid rgba(94,143,175,.18);
}

.guide-related h2,
.guide-related h3 {
  margin-top: 0;
}

@media (max-width: 700px) {
  .guide-detail { padding: 18px; }
  .guide-card-image, .guide-card-placeholder { height: 150px; }
}


/* Cute no-image guide upgrades */
.guides-intro {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 211, 105, .20), transparent 26%),
    radial-gradient(circle at 88% 22%, rgba(94,143,175,.16), transparent 24%),
    linear-gradient(135deg, rgba(111,143,114,.13), rgba(94,143,175,.10));
}

.guides-intro::after {
  content: "✦ ✿ ✦";
  position: absolute;
  right: 22px;
  bottom: 16px;
  color: rgba(111,143,114,.30);
  font-size: 42px;
  letter-spacing: 8px;
  pointer-events: none;
}

.guide-card {
  position: relative;
  transition: transform .16s ease, box-shadow .16s ease;
}

.guide-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.guide-card-placeholder {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  background:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,.48), transparent 18%),
    radial-gradient(circle at 78% 30%, rgba(255,255,255,.32), transparent 16%),
    linear-gradient(135deg, rgba(111,143,114,.28), rgba(94,143,175,.22));
}

.guide-card-placeholder::before,
.guide-visual-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.85) 0 2px, transparent 2.5px),
    radial-gradient(circle, rgba(255,255,255,.6) 0 1.5px, transparent 2px);
  background-size: 34px 34px, 56px 56px;
  background-position: 0 0, 18px 20px;
}

.guide-card-emoji {
  position: relative;
  z-index: 1;
  font-size: 70px;
  line-height: 1;
  filter: drop-shadow(0 8px 10px rgba(33,39,36,.12));
}

.guide-card-label {
  position: relative;
  z-index: 1;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.guide-theme-playground { background-color: #EAF3EA; }
.guide-theme-rain { background-color: #E8F2FA; }
.guide-theme-strawberry { background-color: #FFE8ED; }
.guide-theme-food { background-color: #FFF3D8; }
.guide-theme-beach { background-color: #E4F3F5; }
.guide-theme-festival { background-color: #FFF0D6; }

.guide-theme-playground .guide-card-emoji,
.guide-theme-playground .guide-visual-emoji { transform: rotate(-4deg); }
.guide-theme-strawberry .guide-card-emoji,
.guide-theme-strawberry .guide-visual-emoji { transform: rotate(6deg); }

.guide-detail {
  position: relative;
  overflow: hidden;
}

.guide-detail::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(111,143,114,.08);
  pointer-events: none;
}

.guide-detail-header {
  position: relative;
  padding: 8px 0 4px;
}

.guide-detail-header .eyebrow {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(111,143,114,.11);
}

.guide-visual-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  margin: 24px 0;
  padding: clamp(22px, 5vw, 38px);
  border-radius: 28px;
  border: 1px solid rgba(111,143,114,.18);
  background:
    radial-gradient(circle at 12% 22%, rgba(255,255,255,.55), transparent 22%),
    linear-gradient(135deg, rgba(111,143,114,.17), rgba(94,143,175,.13));
  box-shadow: var(--shadow-soft);
}

.guide-visual-emoji {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: clamp(82px, 18vw, 140px);
  height: clamp(82px, 18vw, 140px);
  border-radius: 34px;
  background: rgba(255,255,255,.72);
  font-size: clamp(46px, 9vw, 78px);
  box-shadow: 0 14px 30px rgba(33,39,36,.10);
}

.guide-visual-hero div {
  position: relative;
  z-index: 1;
}

.guide-visual-hero p {
  margin: 0 0 6px;
  color: var(--green-dark);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
}

.guide-visual-hero h2 {
  font-size: clamp(30px, 5vw, 50px);
}

.guide-sparkle {
  position: absolute;
  right: 28px;
  top: 22px;
  color: rgba(94,143,175,.45);
  font-size: 30px;
}

.guide-sparkle.two {
  right: 70px;
  top: auto;
  bottom: 26px;
  color: rgba(111,143,114,.38);
  font-size: 22px;
}

.guide-toc {
  background:
    linear-gradient(135deg, rgba(111,143,114,.10), rgba(255,255,255,.9));
  border-left: 7px solid var(--green);
}

.guide-toc strong::before {
  content: "🧭 ";
}

.guide-section {
  position: relative;
}

.guide-section-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.guide-section-heading h2 {
  margin: 0;
}

.guide-section-number {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: rgba(111,143,114,.14);
  color: var(--green-dark);
  font-family: var(--font-heading);
  font-weight: 900;
}

.guide-section ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 16px;
  padding: 0;
  list-style: none;
}

.guide-section li {
  position: relative;
  padding: 10px 12px 10px 38px;
  border-radius: 14px;
  background: rgba(111,143,114,.06);
  border: 1px solid rgba(111,143,114,.12);
}

.guide-section li::before {
  content: "✓";
  position: absolute;
  left: 12px;
  top: 10px;
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 999px;
  background: var(--green);
  color: white;
  font-size: 12px;
  font-weight: 900;
}

.guide-related {
  background:
    radial-gradient(circle at 10% 18%, rgba(255,255,255,.55), transparent 18%),
    linear-gradient(135deg, rgba(94,143,175,.12), rgba(111,143,114,.08));
}

@media (max-width: 700px) {
  .guide-visual-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .guide-visual-emoji {
    margin: 0 auto;
  }
  .guide-section-heading {
    grid-template-columns: 1fr;
  }
  .guide-section-number {
    width: 34px;
    height: 34px;
  }
}


/* Automatic related guide cards */
.guide-related-guides {
  background: linear-gradient(135deg, rgba(111,143,114,.10), rgba(94,143,175,.10));
  border: 1px solid rgba(111,143,114,.20);
}

.related-guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.related-guide-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  align-items: stretch;
  padding: 10px;
  border-radius: 18px;
  background: white;
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  box-shadow: 0 4px 16px rgba(33,39,36,.06);
  transition: transform .16s ease, box-shadow .16s ease;
}

.related-guide-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(33,39,36,.10);
}

.related-guide-card img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 14px;
}

.related-guide-card span {
  display: inline-flex;
  color: var(--green-dark);
  background: rgba(111,143,114,.12);
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 6px;
}

.related-guide-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 16px;
  line-height: 1.15;
}

.related-guide-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.related-adventures-small {
  margin-top: 18px;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

@media (max-width: 560px) {
  .related-guide-card {
    grid-template-columns: 74px 1fr;
  }
  .related-guide-card img {
    width: 74px;
    height: 74px;
  }
}


/* Mobile hamburger navigation */
.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(111,143,114,.28);
  border-radius: 999px;
  background: white;
  color: var(--green-dark);
  box-shadow: 0 2px 10px rgba(33,39,36,.06);
}

.mobile-menu-toggle .material-symbols-rounded {
  font-size: 26px;
}

@media (max-width: 900px) {
  .site-nav {
    display: grid !important;
    grid-template-columns: 1fr auto;
    align-items: center !important;
    gap: 10px;
    padding: 10px 14px;
  }

  .brand-button {
    min-width: 0;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    grid-column: 1 / -1;
    display: none !important;
    width: 100%;
    overflow: visible !important;
    flex-wrap: nowrap !important;
    padding: 8px;
    margin-top: 2px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .nav-link {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    padding: 13px 14px;
    border-radius: 14px;
    white-space: normal !important;
  }

  .nav-link.active {
    background: rgba(111,143,114,.14);
  }
}


/* Inline links inside guide content */
.guide-inline-link {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid rgba(111,143,114,.35);
  transition: color .15s ease, border-color .15s ease, background .15s ease;
}

.guide-inline-link:hover,
.guide-inline-link:focus {
  color: var(--green);
  border-color: var(--green);
  background: rgba(111,143,114,.08);
  border-radius: 6px;
}
