:root {
  --ff: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --bg: #f8f8f6;
  --surface: #efefed;
  --card: #ffffff;
  --card2: #f4f4f2;
  --rule: rgba(0,0,0,.09);
  --text: #111110;
  --mid: #6b6b6b;
  --dim: #ababab;
  --red: #ce1126;
  --gold: #9a7b2e;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bot: env(safe-area-inset-bottom, 0px);
  --nav-h: 60px;
  color-scheme: light;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; overflow: hidden; background: var(--bg); }
body {
  font-family: var(--ff);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overscroll-behavior: none;
}
button { font: inherit; cursor: pointer; }

#app {
  width: 100%;
  max-width: 834px;
  height: 100%;
  height: 100dvh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background: var(--bg);
  box-shadow: 0 0 40px rgba(0,0,0,.08);
}

.hdr {
  min-height: 58px;
  padding: calc(var(--safe-top) + 8px) 14px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  background: var(--card);
  border-bottom: 1px solid var(--rule);
  position: relative;
  z-index: 10;
}
.hdr::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
}
.hdr-left { display: flex; align-items: center; gap: 10px; min-width: 0; }
.hdr-portrait {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex: 0 0 auto;
}
.hdr-portrait-fallback {
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--red);
  border-color: var(--red);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .04em;
}
.hdr-divider { width: 1px; height: 28px; background: var(--rule); flex: 0 0 auto; }
.hdr-traf { height: 38px; width: auto; display: block; flex: 0 0 auto; }
.hdr-name-block { min-width: 0; }
.hdr-name {
  font-size: 14px;
  font-weight: 650;
  line-height: 1.18;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hdr-role { margin-top: 1px; color: var(--dim); font-size: 10px; letter-spacing: .02em; }
.hdr-right { text-align: right; flex: 0 0 auto; }
.hdr-day-lbl { color: var(--dim); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
.hdr-day-val { color: var(--gold); font-size: 15px; font-weight: 750; }

.screen {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  display: none;
  padding-bottom: calc(var(--nav-h) + var(--safe-bot) + 18px);
  background: var(--bg);
}
.screen.active { display: block; }

.bnav {
  position: fixed;
  left: 50%;
  bottom: max(8px, var(--safe-bot));
  transform: translateX(-50%);
  width: calc(100% - 24px);
  max-width: 810px;
  height: var(--nav-h);
  padding: 7px 8px;
  display: flex;
  z-index: 40;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px;
  background: rgba(20,18,16,.34);
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
  backdrop-filter: blur(30px) saturate(1.35);
  -webkit-backdrop-filter: blur(30px) saturate(1.35);
}
.ni {
  flex: 1;
  border: 0;
  border-radius: 17px;
  background: transparent;
  color: rgba(255,255,255,.68);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  -webkit-tap-highlight-color: transparent;
}
.ni .material-symbols-outlined { font-size: 21px; line-height: 1; }
.ni small { font-size: 8.5px; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
.ni.active { background: rgba(255,255,255,.14); color: #fff; }

.admin-banner {
  margin: 10px 12px 0;
  padding: 12px;
  border: 1px solid rgba(206,17,38,.24);
  border-radius: 16px;
  background: #fff4f4;
  display: grid;
  grid-template-columns: 28px minmax(0,1fr);
  gap: 10px;
  align-items: start;
  flex: 0 0 auto;
}
.admin-banner[hidden] { display: none; }
.admin-banner .material-symbols-outlined { color: var(--red); }
.admin-banner strong { display: block; font-size: 13px; }
.admin-banner p { margin-top: 3px; color: var(--mid); font-size: 12px; line-height: 1.4; }

.network-status {
  margin: 10px 12px 0;
  padding: 11px 12px;
  border: 1px solid rgba(154,123,46,.28);
  border-radius: 16px;
  background: #fff8e4;
  color: #31270c;
  display: grid;
  grid-template-columns: 24px minmax(0,1fr) auto;
  gap: 10px;
  align-items: center;
}
.network-status.is-hidden { display: none; }
.network-status .material-symbols-outlined { color: var(--gold); font-size: 22px; }
.network-status strong { display: block; font-size: 12px; line-height: 1.2; }
.network-status small { display: block; margin-top: 2px; color: #6f5d25; font-size: 11px; line-height: 1.35; }
.network-status button {
  min-height: 32px;
  padding: 0 11px;
  border: 0;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  font-size: 11px;
  font-weight: 850;
}
.network-status[data-mode="offline"] {
  border-color: rgba(206,17,38,.24);
  background: #fff0f0;
  color: #3b0710;
}
.network-status[data-mode="offline"] .material-symbols-outlined,
.network-status[data-mode="offline"] small { color: var(--red); }

.today-hero,
.editorial-hero,
.contact-hero {
  position: relative;
  min-height: 270px;
  padding: 92px 18px 24px;
  color: #fff;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.08), rgba(0,0,0,.2) 36%, rgba(0,0,0,.78)),
    var(--red);
  background-size: cover;
  background-position: center;
}
.today-kicker,
.editorial-kicker {
  margin-bottom: 8px;
  color: rgba(255,255,255,.74);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.today-hero h1,
.editorial-hero h1,
.contact-hero h1 {
  max-width: 600px;
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(34px, 8vw, 62px);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: .98;
}
.editorial-hero h1 em { font-style: italic; font-weight: 500; }
.today-hero p,
.editorial-hero p,
.contact-hero p {
  max-width: 540px;
  margin-top: 9px;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  line-height: 1.5;
}
.today-meta {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.today-meta span {
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.next-up {
  margin: 12px;
  padding: 16px;
  border-radius: 20px;
  background: linear-gradient(135deg, #df1029, #8b0c18);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 14px;
  align-items: center;
  box-shadow: 0 16px 34px rgba(206,17,38,.2);
}
.next-up:has(.next-up-head.is-late) {
  animation: nextUpLatePulse 1s steps(2, end) infinite;
}
@keyframes nextUpLatePulse {
  0%, 100% { filter: saturate(1); }
  50% { filter: saturate(1.45) brightness(1.08); }
}
.next-up small {
  display: block;
  color: rgba(255,255,255,.7);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.next-up strong { display: block; margin-top: 4px; font-size: 22px; line-height: 1.05; }
.next-up span { display: block; margin-top: 5px; color: rgba(255,255,255,.78); font-size: 13px; line-height: 1.35; }
.next-up b { font-size: 29px; font-variant-numeric: tabular-nums; }
.next-up-copy {
  min-width: 0;
}
.next-up-late-actions,
.next-up-following {
  margin-top: 14px;
}
.next-up-late-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.next-up-late-btn {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.14);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
}
.next-up-late-btn .material-symbols-outlined {
  font-size: 17px;
}
.next-up-following {
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.next-up-following small {
  color: rgba(255,255,255,.7);
}
.next-up-following strong {
  margin-top: 4px;
}
.next-up-following span {
  color: rgba(255,255,255,.8);
}
.next-up-location {
  margin-top: 16px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  background: rgba(255,255,255,.12);
  display: grid;
  grid-template-columns: 40px minmax(0,1fr) auto;
  gap: 10px;
  align-items: center;
}
.next-up-location-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.18);
}
.next-up-location-icon .material-symbols-outlined {
  font-size: 23px;
  color: #fff;
}
.next-up-location strong {
  font-size: 15px;
  overflow-wrap: anywhere;
}
.next-up-location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}
.next-up-location-actions button {
  min-height: 34px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--red);
  padding: 0 12px;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.sec-label {
  margin: 18px 14px 8px;
  color: var(--dim);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.timeline,
#itineraryList,
#experiencesList,
#contactsList,
#hotelContacts { padding: 0 12px; }
.timeline-row,
.brief-card,
.tomorrow-card,
.day-card,
.experience-card,
.contact-card,
.tool-card {
  border: 1px solid var(--rule);
  border-radius: 20px;
  background: var(--card);
  box-shadow: 0 12px 30px rgba(15,23,42,.06);
}
.timeline-row {
  margin-bottom: 9px;
  padding: 12px;
  display: grid;
  grid-template-columns: 58px minmax(0,1fr);
  gap: 11px;
}
.timeline-row time { color: var(--red); font-size: 13px; font-weight: 900; font-variant-numeric: tabular-nums; }
.timeline-row strong { display: block; font-size: 14px; line-height: 1.25; }
.timeline-row small { display: block; margin-top: 3px; color: var(--mid); font-size: 12px; line-height: 1.35; }

.brief-card,
.today-notes-card,
.tomorrow-card {
  margin: 12px;
  padding: 15px;
}
.today-notes-card[hidden] { display: none; }
.brief-hdr {
  margin-bottom: 8px;
  color: var(--red);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.brief-row {
  padding: 9px 0;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 9px minmax(0,1fr);
  gap: 9px;
  align-items: start;
}
.brief-row:first-of-type { border-top: 0; }
.brief-row span { width: 7px; height: 7px; margin-top: 7px; border-radius: 50%; background: var(--gold); }
.brief-row strong { font-size: 14px; line-height: 1.35; }
.today-notes-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(154,123,46,.18);
  background: linear-gradient(100deg, #fff, #fbfaf7);
}
.today-notes-edit {
  position: absolute;
  top: 18px;
  right: 18px;
  border: 0;
  background: transparent;
  color: #8c96a3;
}
.today-notes-edit .material-symbols-outlined { font-size: 18px; }
.today-note-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.today-note {
  width: min(230px, 100%);
  min-height: 142px;
  padding: 18px 18px 18px 20px;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(15,23,42,.05);
}
.today-note h3 {
  color: var(--text);
  font-size: 17px;
  line-height: 1.2;
}
.today-note p {
  margin-top: 12px;
  color: #5e6674;
  font-size: 16px;
  line-height: 1.55;
}
.today-note-red {
  border-color: rgba(206,17,38,.22);
  background: linear-gradient(100deg, rgba(206,17,38,.08), #fff);
  box-shadow: inset 4px 0 0 var(--red), 0 10px 26px rgba(15,23,42,.05);
}
.today-note-yellow {
  border-color: rgba(154,123,46,.28);
  background: linear-gradient(100deg, rgba(154,123,46,.12), #fff);
  box-shadow: inset 4px 0 0 var(--gold), 0 10px 26px rgba(15,23,42,.05);
}
.today-note-blue {
  border-color: rgba(49,95,141,.22);
  background: linear-gradient(100deg, rgba(49,95,141,.1), #fff);
  box-shadow: inset 4px 0 0 #315f8d, 0 10px 26px rgba(15,23,42,.05);
}
.today-note-empty {
  width: 100%;
  padding: 18px;
  border: 1px dashed var(--rule);
  border-radius: 14px;
  color: var(--mid);
  font-size: 13px;
}
.tomorrow-card small,
.tomorrow-card span { display: block; color: var(--mid); font-size: 12px; }
.tomorrow-card strong { display: block; margin: 4px 0; font-size: 16px; }

.itinerary-hero {
  margin: 12px;
  min-height: 265px;
  border: 1px solid rgba(9,25,45,.22);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(9,25,45,.88), rgba(9,25,45,.52) 46%, rgba(9,25,45,.28)),
    linear-gradient(135deg, #17324d, #4a5963);
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 42px rgba(15,23,42,.12);
}
.itinerary-hero-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 26px;
}
.itinerary-kicker {
  margin-bottom: 8px;
  color: #ffd66e;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.itinerary-hero h1 {
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(40px, 8vw, 60px);
  font-weight: 700;
  line-height: .94;
}
.itinerary-hero h1 em {
  color: #ffd66e;
  font-style: italic;
  font-weight: 500;
}
.itinerary-hero p {
  max-width: 440px;
  margin-top: 12px;
  color: rgba(255,255,255,.84);
  font-size: 15px;
  line-height: 1.45;
}

.itinerary-day {
  margin: 0 12px 12px;
  border: 1px solid var(--rule);
  border-radius: 18px;
  background: var(--card);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15,23,42,.06);
}
.itinerary-day[open] {
  border-color: rgba(206,17,38,.2);
  box-shadow: 0 18px 42px rgba(206,17,38,.08);
}
.itinerary-summary {
  min-height: 104px;
  display: grid;
  grid-template-columns: 86px minmax(0,1fr) 54px;
  align-items: stretch;
  list-style: none;
  cursor: pointer;
}
.itinerary-summary::-webkit-details-marker { display: none; }
.itinerary-date {
  padding: 18px 10px;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background: linear-gradient(90deg, rgba(206,17,38,.07), rgba(255,255,255,0));
  box-shadow: inset 4px 0 0 var(--red);
}
.itinerary-date b {
  color: var(--red);
  font-family: "Noto Serif", Georgia, serif;
  font-size: 31px;
  line-height: .9;
  font-variant-numeric: tabular-nums;
}
.itinerary-date span {
  margin-top: 8px;
  color: #586173;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .09em;
  line-height: 1.1;
  text-transform: uppercase;
}
.itinerary-main {
  min-width: 0;
  padding: 18px 16px 16px;
}
.itinerary-main h2 {
  color: #071d3a;
  font-family: var(--ff);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: 0;
}
.itinerary-main p {
  margin-top: 7px;
  color: #596171;
  font-size: 14px;
  line-height: 1.45;
}
.itinerary-chips {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.itinerary-chip {
  max-width: 100%;
  padding: 7px 11px;
  border: 1px solid #cbd4df;
  border-radius: 999px;
  background: #edf2f7;
  color: #123559;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.itinerary-chip.optional {
  border-color: #e3c983;
  background: #fbf4e5;
  color: #79510b;
}
.itinerary-toggle {
  border-left: 1px solid var(--rule);
  display: grid;
  place-items: center;
  color: #566172;
  font-size: 22px;
}
.itinerary-day[open] .itinerary-toggle {
  background: var(--red);
  color: #fff;
  transform: rotate(180deg);
}
.itinerary-panel {
  border-top: 1px solid var(--rule);
  background: linear-gradient(90deg, rgba(206,17,38,.04), rgba(9,25,45,.03));
}
.itinerary-rhythm {
  padding: 18px 16px 20px;
}
.rhythm-group {
  display: grid;
  grid-template-columns: 86px minmax(0,1fr);
  gap: 14px;
  position: relative;
}
.rhythm-group + .rhythm-group { margin-top: 16px; }
.rhythm-group::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 46px;
  bottom: -24px;
  width: 2px;
  background: linear-gradient(to bottom, #f2b864, #8da0b5);
}
.rhythm-group:last-child::before { display: none; }
.rhythm-label {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 8px;
  color: #687180;
  text-align: center;
}
.rhythm-label .material-symbols-outlined {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(242,184,100,.42);
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #fff8ea;
  color: #c57d12;
  font-size: 22px;
}
.rhythm-label b {
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.rhythm-cards {
  display: grid;
  gap: 10px;
}
.rhythm-card {
  min-height: 78px;
  padding: 15px 16px;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 14px;
  background: #fff;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 10px;
  align-items: start;
  position: relative;
}
.rhythm-card.optional {
  border-color: rgba(154,123,46,.28);
  background: linear-gradient(90deg, #fff, #fff9ec);
  box-shadow: inset 3px 0 0 #8a6410;
}
.rhythm-card h3 {
  color: #071d3a;
  font-family: var(--ff);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.28;
}
.rhythm-card p {
  margin-top: 8px;
  color: #5e6674;
  font-size: 15px;
  line-height: 1.55;
}
.rhythm-card span,
.rhythm-card em {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: #edf2f7;
  color: #123559;
  font-size: 10px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0;
}
.rhythm-card.optional span,
.rhythm-card.optional em {
  background: #fbf0d6;
  color: #79510b;
}
.rhythm-card em {
  grid-column: 2;
  margin-top: -4px;
}
.itinerary-edit-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: #8c96a3;
  display: grid;
  place-items: center;
}
.itinerary-edit-btn .material-symbols-outlined { font-size: 16px; }
.itinerary-heading-edit {
  width: 40px;
  height: 40px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  color: #5f6875;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.itinerary-heading-edit .material-symbols-outlined { font-size: 19px; }
.itinerary-add-btn {
  width: calc(100% - 134px);
  min-height: 38px;
  margin: 0 16px 18px 118px;
  border: 1px dashed rgba(0,0,0,.18);
  background: rgba(255,255,255,.72);
  color: #66707c;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.experience-card { margin-bottom: 12px; overflow: hidden; }
.experience-media {
  height: 160px;
  background: var(--surface) center / cover;
}
.experience-body { padding: 15px; }
.day-kicker {
  color: var(--red);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.experience-body h2 {
  margin-top: 5px;
  font-family: "Noto Serif", Georgia, serif;
  font-size: 25px;
  line-height: 1.08;
  letter-spacing: -.03em;
}
.experience-body p { margin-top: 8px; color: var(--mid); font-size: 13px; line-height: 1.5; }
.hotel-strip {
  margin-top: 13px;
  padding: 10px;
  border-radius: 14px;
  background: var(--card2);
  display: grid;
  grid-template-columns: 28px minmax(0,1fr);
  gap: 9px;
  align-items: start;
}
.hotel-strip .material-symbols-outlined { color: var(--gold); font-size: 22px; }
.hotel-strip strong,
.hotel-strip small { display: block; }
.hotel-strip strong { font-size: 13px; }
.hotel-strip small { color: var(--mid); font-size: 12px; line-height: 1.35; }

.editorial-hero { overflow: hidden; background: #111; }
.editorial-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .82;
}
.editorial-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.08), rgba(0,0,0,.2) 36%, rgba(0,0,0,.78));
}
.editorial-hero > div { position: relative; z-index: 1; }
.experience-foot {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
}
.experience-foot span,
.experience-foot b {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--card2);
  color: var(--gold);
  font-size: 11px;
  font-weight: 850;
}

.experience-admin-add {
  margin: 18px 0 24px;
  padding: 14px;
  border: 1px solid var(--rule);
  background: var(--card);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}
.experience-admin-add button {
  min-height: 44px;
  border: 0;
  background: var(--red);
  color: #fff;
  padding: 0 16px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.experience-admin-add span {
  color: #66707c;
  font-size: 13px;
  line-height: 1.4;
}
.experience-region { margin: 26px 0 34px; }
.experience-region-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}
.experience-region-day {
  width: max-content;
  max-width: 100%;
  padding-top: 12px;
  border-top: 3px solid var(--red);
  color: var(--gold);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.experience-region h2 {
  margin-top: 8px;
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(32px, 7vw, 48px);
  line-height: 1.04;
  letter-spacing: -.04em;
}
.experience-region h2 em { color: #5e6874; font-weight: 500; }
.experience-sasha-note {
  margin: 18px 0 14px;
  padding: 22px;
  border-top: 3px solid var(--gold);
  background: linear-gradient(105deg, #f1f6fb, #fff);
}
.experience-sasha-note div {
  color: var(--gold);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.experience-sasha-note p {
  margin-top: 14px;
  color: #667485;
  font-size: 18px;
  line-height: 1.65;
  font-style: italic;
}
.experience-card.editorial {
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(0,0,0,.08);
}
.experience-card.editorial.is-hidden-admin {
  opacity: .58;
  outline: 2px dashed rgba(206,17,38,.35);
}
.experience-media.editorial {
  width: 100%;
  border: 0;
  text-align: left;
  cursor: pointer;
  height: clamp(250px, 44vw, 390px);
  position: relative;
  background: linear-gradient(145deg, #d8d8d5, #777);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
}
.experience-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.experience-media.is-portrait {
  height: clamp(420px, 66vw, 640px);
  background: #222;
}
.experience-media.is-portrait .experience-photo {
  object-fit: contain;
}
.experience-card.has-portrait-image {
  grid-row: span 2;
}
.experience-media-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.08), rgba(0,0,0,.06) 42%, rgba(0,0,0,.78));
}
.experience-card-badges,
.experience-admin-tools,
.experience-media.editorial h3,
.experience-media.editorial strong {
  position: relative;
  z-index: 1;
}
.experience-card-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.experience-card-badges span,
.experience-card-badges b,
.experience-admin-tools button {
  min-height: 24px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(20,18,16,.72);
  color: #fff;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.experience-card-badges b { background: rgba(206,17,38,.9); }
.experience-admin-tools {
  position: absolute;
  top: 48px;
  left: 14px;
  display: flex;
  gap: 8px;
}
.experience-admin-tools button { border: 1px solid rgba(255,255,255,.3); }
.experience-media.editorial h3 {
  max-width: min(560px, 72%);
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(28px, 7vw, 48px);
  line-height: 1;
  letter-spacing: -.04em;
  text-shadow: 0 2px 14px rgba(0,0,0,.34);
}
.experience-media.editorial strong {
  position: absolute;
  right: 18px;
  bottom: 20px;
  min-width: 74px;
  padding: 11px 15px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(20,18,16,.82);
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 950;
}
.experience-collapse-cue {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,.88);
  text-shadow: 0 2px 10px rgba(0,0,0,.4);
}
.experience-body.editorial {
  display: none;
  padding: 22px;
}
.experience-card.is-expanded .experience-body.editorial {
  display: block;
}
.experience-body.editorial p {
  color: #252525;
  font-size: 17px;
  line-height: 1.65;
}
.experience-body.editorial blockquote {
  margin-top: 16px;
  padding: 13px 14px;
  border-left: 3px solid var(--gold);
  background: #f8f3e8;
  color: #604a10;
  font-size: 14px;
  line-height: 1.5;
}
.experience-includes {
  margin-top: 14px;
  color: #66707c;
  font-size: 13px;
  line-height: 1.5;
}
.experience-photo-edit {
  padding: 14px;
  border: 1px solid var(--rule);
  background: var(--surface);
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}
.experience-photo-edit img {
  width: 112px;
  height: 92px;
  object-fit: cover;
  background: #ddd;
}
.experience-photo-edit strong,
.experience-photo-edit small { display: block; }
.experience-photo-edit small {
  margin: 6px 0 8px;
  color: #66707c;
  font-size: 12px;
}
.experience-photo-upload {
  margin-top: 8px;
  min-height: 38px;
  border: 1px solid var(--rule);
  background: #fff;
  display: grid;
  place-items: center;
  color: var(--text);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
}
.experience-photo-upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.experience-hide-row {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #66707c;
  font-size: 13px;
}
.experience-hide-row input {
  width: 22px;
  min-height: 22px;
}
.experience-restore {
  min-height: 44px;
  border: 0;
  background: #f4eee2;
  color: var(--gold);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.ed-header {
  padding: 28px 18px 12px;
}
.ed-kicker {
  color: var(--red);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.ed-header h1 {
  margin-top: 7px;
  font-family: "Noto Serif", Georgia, serif;
  font-size: 39px;
  line-height: .98;
  letter-spacing: -.04em;
}
.ed-rule { width: 46px; height: 3px; margin-top: 14px; background: var(--gold); }
.tools-grid {
  padding: 0 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.tool-card {
  min-height: 116px;
  padding: 14px 50px 14px 0;
  border: 0;
  border-bottom: 1px solid var(--rule);
  background: transparent;
  text-align: left;
  color: var(--text);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  grid-template-rows: auto;
  column-gap: 18px;
  align-content: center;
  align-items: center;
}
.tool-card > i {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  font-style: normal;
  font-size: 28px;
}
.tool-card::before { display: none; }
.tool-card > * { position: relative; z-index: 1; }
.tool-app-icon {
  --icon-a: #8b99a8;
  --icon-b: #425062;
  width: 76px;
  height: 76px;
  border-radius: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 18%, rgba(255,255,255,.55), transparent 23px),
    linear-gradient(160deg, var(--icon-a), var(--icon-b));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.32),
    inset 0 -12px 20px rgba(0,0,0,.16),
    0 12px 24px rgba(0,0,0,.16);
}
.tool-app-icon::before,
.tool-app-icon::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.tool-app-icon::before {
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.35), transparent 38%, rgba(0,0,0,.1) 100%);
  mix-blend-mode: screen;
}
.tool-app-icon::after {
  left: 9px;
  right: 9px;
  bottom: 10px;
  height: 1px;
  background: rgba(255,255,255,.28);
  box-shadow: 0 -30px rgba(255,255,255,.10), 0 -15px rgba(255,255,255,.14);
}
.tool-app-glyph-bg,
.tool-app-badge {
  position: absolute;
  pointer-events: none;
}
.tool-app-glyph-bg {
  inset: 11px;
  border-radius: 16px;
  opacity: .82;
}
.tool-app-badge {
  right: 9px;
  bottom: 9px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 1px 4px rgba(0,0,0,.18);
  opacity: .92;
}
.tool-app-icon .material-symbols-outlined {
  font-size: 36px;
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 8px rgba(0,0,0,.18);
}
.tool-card[data-tone="sky"] .tool-app-icon { --icon-a:#8ee2ff; --icon-b:#1579ee; }
.tool-card[data-tone="green"] .tool-app-icon { --icon-a:#7be48a; --icon-b:#168c3d; }
.tool-card[data-tone="blue"] .tool-app-icon { --icon-a:#7abaff; --icon-b:#3150d3; }
.tool-card[data-tone="red"] .tool-app-icon { --icon-a:#ff8178; --icon-b:#c90922; }
.tool-card[data-tone="purple"] .tool-app-icon { --icon-a:#cf9aff; --icon-b:#6840d5; }
.tool-card[data-tone="indigo"] .tool-app-icon { --icon-a:#93a6ff; --icon-b:#3847cf; }
.tool-card[data-tone="slate"] .tool-app-icon { --icon-a:#a7b3c0; --icon-b:#3f4c5e; }
.tool-card[data-tool-id="weather"] .tool-app-icon {
  background:
    radial-gradient(circle at 32% 34%, #fff7a8 0 10px, transparent 11px),
    radial-gradient(circle at 72% 70%, rgba(255,255,255,.9) 0 13px, transparent 14px),
    linear-gradient(160deg, #8fe4ff, #1678ee);
}
.tool-card[data-tool-id="weather"] .tool-app-glyph-bg {
  border: 2px solid rgba(255,255,255,.65);
  border-left-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(22deg) scale(.92);
}
.tool-card[data-tool-id="weather"] .tool-app-badge { background: #fff06a; }
.tool-card[data-tool-id="rates"] .tool-app-icon {
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,.13) 0 2px, transparent 2px 12px),
    linear-gradient(160deg, #70e188, #13833a);
}
.tool-card[data-tool-id="rates"] .tool-app-glyph-bg {
  border: 2px solid rgba(255,255,255,.34);
  transform: rotate(-7deg);
}
.tool-card[data-tool-id="rates"] .tool-app-badge { background: #d9ffe1; }
.tool-card[data-tool-id="map"] .tool-app-icon {
  background:
    linear-gradient(90deg, transparent 31%, rgba(255,255,255,.2) 31% 34%, transparent 34% 64%, rgba(255,255,255,.18) 64% 67%, transparent 67%),
    linear-gradient(160deg, #86c7ff, #3054d8);
}
.tool-card[data-tool-id="map"] .tool-app-glyph-bg {
  border: 2px solid rgba(255,255,255,.28);
  border-radius: 12px;
  transform: perspective(80px) rotateY(-18deg);
}
.tool-card[data-tool-id="map"] .tool-app-badge { background: #e8f3ff; }
.tool-card[data-tool-id="essentials"] .tool-app-icon {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 18px, rgba(255,255,255,.18) 19px 20px, transparent 21px),
    linear-gradient(160deg, #ff8a82, #cf1026);
}
.tool-card[data-tool-id="essentials"] .tool-app-glyph-bg {
  border: 2px dashed rgba(255,255,255,.4);
}
.tool-card[data-tool-id="essentials"] .tool-app-badge { background: #fff; }
.tool-card[data-tool-id="translate"] .tool-app-icon {
  background:
    linear-gradient(135deg, rgba(255,255,255,.24) 0 34%, transparent 34%),
    linear-gradient(160deg, #d59dff, #6540d2);
}
.tool-card[data-tool-id="translate"] .tool-app-glyph-bg {
  background: rgba(255,255,255,.16);
  transform: translate(-8px,-4px) rotate(-9deg);
}
.tool-card[data-tool-id="translate"] .tool-app-badge { background: #f5eaff; }
.tool-card[data-tool-id="faq"] .tool-app-icon {
  background:
    radial-gradient(circle at 25% 75%, rgba(255,255,255,.16), transparent 20px),
    linear-gradient(160deg, #a8b4c1, #3e4b5c);
}
.tool-card[data-tool-id="faq"] .tool-app-glyph-bg {
  border: 2px solid rgba(255,255,255,.28);
  border-radius: 9px;
}
.tool-card[data-tool-id="faq"] .tool-app-badge { background: #eef3f8; }
.tool-card[data-tool-id="movies"] .tool-app-icon {
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.2) 0 4px, transparent 4px 12px),
    linear-gradient(160deg, #98a9ff, #3745ce);
}
.tool-card[data-tool-id="movies"] .tool-app-glyph-bg {
  border-radius: 999px;
  background: rgba(255,255,255,.17);
}
.tool-card[data-tool-id="movies"] .tool-app-badge { background: #eef0ff; }
.tool-card-copy,
.tool-card strong,
.tool-card small { display: block; }
.tool-card strong { font-size: 26px; line-height: 1.12; }
.tool-card small { margin-top: 6px; color: #66707c; font-size: 17px; line-height: 1.35; }

.tool-panel {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: none;
  flex-direction: column;
  width: min(100%, 834px);
  margin: 0 auto;
  background: var(--bg);
}
.tool-panel.open { display: flex; }
.tool-panel-head {
  min-height: 58px;
  padding: calc(var(--safe-top) + 10px) 16px 10px;
  border-bottom: 1px solid var(--rule);
  background: #fff;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 92px;
  align-items: center;
}
.tool-panel-head button {
  border: 0;
  background: transparent;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 800;
}
.tool-panel-head button span { font-size: 17px; }
.tool-panel-head strong { text-align: center; font-size: 16px; }
.tool-panel-body {
  flex: 1;
  overflow-y: auto;
  padding-bottom: calc(24px + var(--safe-bot));
}
.tool-loading,
.tool-error,
.tool-empty {
  margin: 20px;
  padding: 24px;
  border: 1px dashed var(--rule);
  border-radius: 8px;
  color: var(--mid);
  text-align: center;
  font-size: 13px;
}
.tool-error button {
  display: block;
  margin: 14px auto 0;
  padding: 10px 16px;
  border: 0;
  background: var(--red);
  color: #fff;
  font-weight: 800;
}
.tool-intro {
  margin: 20px;
  padding: 24px;
  border-top: 3px solid var(--gold);
  background: linear-gradient(110deg, #fff6f6, #fff);
}
.tool-intro > small {
  color: var(--gold);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.tool-intro h2 {
  margin-top: 8px;
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(38px, 7vw, 58px);
  line-height: .98;
}
.tool-intro p {
  margin-top: 8px;
  color: #66707c;
  font-size: 14px;
  line-height: 1.55;
}
.weather-tool-grid {
  margin: 0 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.weather-city-card {
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,0) 32%),
    #355f79;
  overflow: hidden;
  color: #fff;
  box-shadow:
    0 24px 50px rgba(8,16,24,.24),
    inset 0 1px 0 rgba(255,255,255,.22);
}
.weather-city-card h3 {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,.14);
  font-size: 28px;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0,0,0,.28);
}
.weather-days {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.weather-days > div {
  position: relative;
  min-height: 178px;
  padding: 20px 22px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 7px 12px;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 8%, rgba(255,255,255,.22), transparent 26%),
    linear-gradient(145deg, #7096ad, #315f79);
}
.weather-days > div::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.08);
  pointer-events: none;
}
.weather-day-card > *:not(.weather-art) {
  position: relative;
  z-index: 1;
}
.weather-days > div + div { border-left: 1px solid rgba(255,255,255,.12); }
.weather-days small {
  grid-column: 1 / -1;
  color: rgba(255,255,255,.76);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.weather-days .material-symbols-outlined { color: #fff; font-size: 38px; filter: drop-shadow(0 5px 10px rgba(0,0,0,.22)); }
.weather-days strong { font-size: 52px; color: #fff; line-height: .95; text-shadow: 0 4px 18px rgba(0,0,0,.24); }
.weather-days em,
.weather-days b,
.weather-days i {
  grid-column: 1 / -1;
  color: rgba(255,255,255,.82);
  font-size: 12px;
  font-style: normal;
}
.weather-days b { color: #fff; font-weight: 900; }
.weather-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .95;
}
.weather-art::before,
.weather-art::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.weather-sunny {
  background:
    radial-gradient(circle at 76% 24%, rgba(255,255,255,.96) 0 18px, rgba(255,216,74,.96) 19px 46px, rgba(255,179,25,.36) 47px 76px, transparent 77px),
    linear-gradient(145deg, #43b7ff, #0d6ed3 54%, #0a2b61);
}
.weather-sunny .weather-art::before {
  width: 132px;
  height: 132px;
  right: -28px;
  top: -34px;
  border-radius: 50%;
  background: repeating-conic-gradient(from 8deg, rgba(255,231,95,.55) 0 7deg, transparent 7deg 17deg);
  filter: blur(.2px);
}
.weather-cloud {
  background:
    radial-gradient(circle at 74% 30%, rgba(255,220,90,.9) 0 27px, transparent 29px),
    radial-gradient(circle at 80% 54%, rgba(255,255,255,.9) 0 31px, transparent 32px),
    radial-gradient(circle at 65% 58%, rgba(255,255,255,.82) 0 26px, transparent 27px),
    linear-gradient(145deg, #6fb7ff, #376eaa 54%, #102b4b);
}
.weather-fog {
  background: linear-gradient(145deg, #9fb0bd, #5d707f 54%, #233342);
}
.weather-fog .weather-art::before {
  left: -20%;
  right: -20%;
  top: 28%;
  height: 70px;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,.34) 0 7px, transparent 7px 18px);
  transform: rotate(-4deg);
}
.weather-rain {
  background:
    radial-gradient(circle at 75% 28%, rgba(255,255,255,.58) 0 34px, transparent 35px),
    linear-gradient(145deg, #49687f, #163049 56%, #081624);
}
.weather-rain .weather-art::before {
  inset: -20px;
  background: repeating-linear-gradient(112deg, transparent 0 12px, rgba(130,202,255,.55) 12px 15px, transparent 15px 28px);
}
.weather-storm {
  background:
    radial-gradient(circle at 72% 28%, rgba(255,255,255,.46) 0 36px, transparent 37px),
    linear-gradient(145deg, #3b3f60, #101629 58%, #070912);
}
.weather-storm .weather-art::before {
  width: 42px;
  height: 86px;
  right: 46px;
  top: 50px;
  background: #ffd84f;
  clip-path: polygon(44% 0, 100% 0, 62% 42%, 100% 42%, 20% 100%, 45% 54%, 10% 54%);
  filter: drop-shadow(0 0 18px rgba(255,216,79,.7));
}
.weather-snow {
  background:
    radial-gradient(circle at 76% 22%, rgba(255,255,255,.72) 0 44px, transparent 45px),
    linear-gradient(145deg, #8ab8db, #547b9b 54%, #18314a);
}
.weather-snow .weather-art::before {
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.9) 0 2px, transparent 3px),
    radial-gradient(circle, rgba(255,255,255,.65) 0 1.5px, transparent 2px);
  background-size: 34px 34px, 52px 52px;
  background-position: 0 0, 14px 20px;
}
.weather-city-error {
  background: linear-gradient(145deg, #3c1519, #14090c);
}
.weather-error-card {
  min-height: 178px;
  padding: 24px;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 8px;
}
.weather-error-card .material-symbols-outlined {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 31px;
}
.weather-error-card strong { color: #fff; font-size: 18px; }
.weather-error-card small { color: rgba(255,255,255,.72); font-size: 12px; }
.nearby-grid {
  margin: 0 20px 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
}
.nearby-category {
  min-height: 138px;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
  gap: 9px;
  color: var(--text);
}
.nearby-category .material-symbols-outlined {
  width: 76px;
  height: 76px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 74% 74%, #fff 0 10px, transparent 11px),
    linear-gradient(145deg, color-mix(in srgb, var(--nearby) 70%, white), var(--nearby));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 38px;
  box-shadow: 0 18px 28px color-mix(in srgb, var(--nearby) 28%, transparent);
}
.nearby-category strong {
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.nearby-state {
  margin: 0 20px 18px;
  padding: 22px;
  border: 1px solid var(--rule);
  background: var(--card);
  color: #66707c;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
}
.nearby-results-title {
  margin: 8px 20px 4px;
  padding-top: 12px;
  border-top: 3px solid var(--gold);
  color: var(--gold);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.nearby-result {
  margin: 0 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 14px;
}
.nearby-result-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--nearby) 14%, white);
  color: var(--nearby);
  display: grid;
  place-items: center;
}
.nearby-place {
  color: var(--text);
  font-size: 17px;
  font-weight: 850;
}
.nearby-result p {
  margin-top: 3px;
  color: #66707c;
  font-size: 13px;
}
.nearby-result b,
.nearby-result em {
  display: block;
  margin-top: 5px;
  color: var(--red);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}
.nearby-result em.is-open { color: #218a52; }
.nearby-actions {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.nearby-actions a {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--rule);
  background: #f4f2ed;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.nearby-map-wrap {
  margin: 14px 20px 24px;
  border: 1px solid var(--rule);
  overflow: hidden;
}
#nearbyMap {
  width: 100%;
  height: 220px;
}
.rates-card {
  margin: 0 20px 24px;
}
.rate-input {
  min-height: 64px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: linear-gradient(110deg, #fff, #fbf6ee);
  padding: 0 22px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}
.rate-input span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.rate-input input {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: right;
  font-size: 26px;
  font-weight: 950;
  outline: 0;
}
.rate-row {
  margin-top: 14px;
  padding: 17px 18px;
  border: 1px solid var(--rule);
  border-radius: 18px;
  background: linear-gradient(110deg, #fff, #fbf6ee);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}
.rate-flag { font-size: 22px; }
.rate-row strong,
.rate-row small,
.rate-row em { display: block; }
.rate-row small {
  margin-top: 2px;
  color: #66707c;
  font-size: 12px;
}
.rate-row b {
  color: var(--text);
  text-align: right;
  font-size: 22px;
}
.rate-row b small {
  display: inline;
  margin-left: 4px;
  font-size: 11px;
}
.rate-row b em {
  margin-top: 5px;
  color: var(--gold);
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
}
.rate-updated {
  margin-top: 12px;
  color: #8c96a3;
  text-align: center;
  font-size: 11px;
}
.map-day-tabs {
  margin-top: 16px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.map-day-tabs button {
  flex: 0 0 auto;
  max-width: min(58vw, 280px);
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: #fff;
  color: #596171;
  font-size: 11px;
  font-weight: 850;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.map-day-tabs button.active { border-color: var(--red); background: var(--red); color: #fff; }
.map-location-btn {
  min-height: 42px;
  margin-top: 12px;
  padding: 0 14px;
  border: 1px solid #315f8d;
  border-radius: 999px;
  background: #fff;
  color: #315f8d;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 850;
}
.map-location-btn span { font-size: 18px; }
.generated-map-wrap {
  height: min(70vh, 620px);
  margin: 0 20px;
  border: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
  background: #e5ece7;
}
.generated-map-wrap.is-fullscreen {
  position: fixed;
  inset: 0;
  z-index: 300;
  width: 100%;
  height: 100dvh;
  margin: 0;
  border: 0;
}
#generatedTourMap { width: 100%; height: 100%; }
.generated-map-context {
  position: absolute;
  z-index: 500;
  top: 16px;
  left: 16px;
  max-width: calc(100% - 86px);
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(25,25,25,.9);
  color: #fff;
}
.generated-map-context b,
.generated-map-context span { display: block; }
.generated-map-context small {
  display: block;
  margin-bottom: 5px;
  color: #f0cb62;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.generated-map-context b { font-size: 14px; }
.generated-map-context span { margin-top: 4px; color: rgba(255,255,255,.72); font-size: 10px; }
.map-fullscreen-btn {
  position: absolute;
  z-index: 501;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 8px;
  background: rgba(25,25,25,.9);
  color: #fff;
}
.map-route-status {
  margin: 10px 20px 24px;
  color: #66707c;
  font-size: 12px;
  line-height: 1.45;
}
.simple-tool-list,
.checklist-tool,
.phrase-tool,
.faq-tool {
  margin: 0 20px;
  display: grid;
  gap: 10px;
}
.simple-tool-row,
.checklist-tool label,
.phrase-tool button,
.faq-tool details {
  min-height: 72px;
  padding: 14px 16px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: #fff;
}
.simple-tool-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}
.simple-tool-row > span { color: var(--gold); }
.simple-tool-row strong,
.simple-tool-row small { display: block; }
.simple-tool-row small { margin-top: 3px; color: var(--mid); font-size: 11px; }
.simple-tool-row a { color: var(--red); }
.checklist-tool label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
}
.checklist-tool input { width: 24px; height: 24px; accent-color: var(--red); }
.phrase-tool button {
  display: grid;
  grid-template-columns: 1fr 1fr 28px;
  align-items: center;
  gap: 12px;
  text-align: left;
}
.phrase-tool span { color: var(--mid); }
.phrase-tool strong { font-size: 16px; }
.phrase-tool i { color: var(--red); font-style: normal; }
.translate-intro {
  background:
    radial-gradient(circle at 100% 0%, rgba(104,64,213,.14), transparent 34%),
    radial-gradient(circle at 0% 18%, rgba(37,120,93,.10), transparent 26%),
    #fff;
}
.translator-card {
  margin: 0 20px 16px;
  padding: 22px;
  border: 1px solid rgba(104,64,213,.22);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(104,64,213,.12), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.98));
  box-shadow: 0 24px 56px rgba(38,24,86,.16);
}
.trans-lang-row {
  display: grid;
  grid-template-columns: minmax(0,1fr) 46px minmax(0,1fr);
  gap: 8px;
  align-items: center;
}
.trans-lang-pill,
.trans-swap-btn,
.trans-voice,
.trans-btn-main,
.trans-speak {
  border: 0;
  font: inherit;
}
.trans-lang-pill {
  min-height: 42px;
  border-radius: 999px;
  background: #f3f0ff;
  color: #4d31a5;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.trans-swap-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(145deg, #f20d2a, #a9071d);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 28px rgba(206,17,38,.28), inset 0 1px 0 rgba(255,255,255,.28);
}
.trans-swap-btn .material-symbols-outlined,
.trans-voice .material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-size: 28px;
  font-variation-settings: "FILL" 0, "wght" 600, "GRAD" 0, "opsz" 24;
}
.trans-input-row {
  margin-top: 12px;
  display: grid;
  grid-template-columns: minmax(0,1fr) 48px;
  gap: 9px;
}
.trans-ta {
  width: 100%;
  resize: vertical;
  min-height: 112px;
  border: 1px solid var(--rule);
  border-radius: 18px;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: 16px;
  line-height: 1.45;
  padding: 13px 14px;
  outline: none;
}
.trans-ta:focus {
  border-color: rgba(104,64,213,.4);
  box-shadow: 0 0 0 3px rgba(104,64,213,.12);
}
.trans-voice {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(145deg, #f1fbf8, #dff3ec);
  color: #25785d;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 24px rgba(37,120,93,.12), inset 0 1px 0 rgba(255,255,255,.8);
}
.trans-voice.on {
  background: rgba(206,17,38,.1);
  color: var(--red);
  animation: mic-pulse .8s infinite alternate;
}
@keyframes mic-pulse { from { opacity: 1; } to { opacity: .45; } }
.trans-btn-main {
  width: 100%;
  min-height: 48px;
  margin-top: 12px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.trans-btn-main:disabled { opacity: .65; cursor: wait; }
.trans-result {
  margin-top: 14px;
  padding: 15px 16px;
  border: 1px solid rgba(154,123,46,.22);
  border-radius: 8px;
  background: #fff;
}
.trans-result[hidden] { display: none; }
.trans-result-lbl {
  color: var(--gold);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.trans-result-text {
  margin-top: 6px;
  font-family: "Noto Serif", Georgia, serif;
  font-size: 20px;
  line-height: 1.45;
  font-style: italic;
}
.trans-speak {
  margin-top: 10px;
  background: transparent;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.trans-speak .material-symbols-outlined { font-size: 17px; }
.phrase-tool.rich {
  gap: 0;
}
.phrase-cat {
  margin: 14px 0 8px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.phrase-item {
  min-height: 84px;
  margin-bottom: 12px;
  padding: 16px 18px;
  border: 1px solid var(--rule);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(154,123,46,.10), transparent 34%),
    #fff;
  display: grid;
  grid-template-columns: minmax(0,1fr);
  gap: 4px;
  text-align: left;
  box-shadow: 0 16px 34px rgba(8,16,24,.07);
}
.phrase-item .phrase-en {
  color: var(--text);
  font-size: 14px;
  font-weight: 850;
}
.phrase-item .phrase-it {
  color: var(--gold);
  font-family: "Noto Serif", Georgia, serif;
  font-size: 17px;
  font-style: italic;
}
.phrase-pr {
  color: #8a929e;
  font-size: 12px;
  font-style: normal;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.movie-hero {
  margin: 0 20px 16px;
  padding: 22px;
  border: 1px solid rgba(154,123,46,.2);
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(154,123,46,.16), transparent 34%),
    radial-gradient(circle at 0 20%, rgba(206,17,38,.08), transparent 28%),
    #fff;
  box-shadow: 0 18px 40px rgba(8,16,24,.06);
}
.movie-hero-kicker,
.movie-location,
.movie-sasha-kicker {
  color: var(--red);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.movie-hero-copy {
  margin-top: 8px;
  color: #66707c;
  font-size: 14px;
  line-height: 1.65;
}
.movies-tool {
  margin: 0 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 22px;
}
.movie-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(247,244,238,.98));
  box-shadow:
    0 24px 58px rgba(8,16,24,.16),
    inset 0 1px 0 rgba(255,255,255,.85);
}
.movie-top {
  display: flex;
  min-height: 180px;
}
.movie-poster {
  position: relative;
  width: 140px;
  flex: 0 0 140px;
  overflow: hidden;
  background: var(--movie-color);
}
.movie-poster img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  display: block;
}
.movie-poster-fallback {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  text-align: center;
}
.movie-poster.is-fallback .movie-poster-fallback { display: flex; }
.movie-poster-fallback span {
  color: rgba(255,255,255,.62);
  font-size: 9px;
  font-weight: 900;
}
.movie-poster-fallback strong {
  margin-top: 6px;
  color: #fff;
  font-size: 12px;
  line-height: 1.25;
}
.movie-info {
  min-width: 0;
  padding: 22px 20px;
}
.movie-title {
  margin-top: 5px;
  color: var(--text);
  font-size: 20px;
  font-weight: 950;
  line-height: 1.1;
}
.movie-meta {
  margin-top: 5px;
  color: #8a929e;
  font-size: 12px;
}
.movie-rating {
  width: max-content;
  margin-top: 10px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(245,197,24,.16);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.movie-rating span,
.movie-link span { color: #f5c518; font-size: 14px; }
.movie-rating strong { font-size: 13px; }
.movie-rating em { color: #8a929e; font-size: 10px; font-style: normal; }
.movie-sasha {
  margin: 0 18px 16px;
  padding: 16px 18px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255,255,255,.72), transparent 42%),
    linear-gradient(135deg, rgba(154,123,46,.18), rgba(206,17,38,.09));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75);
}
.movie-sasha-copy {
  margin-top: 5px;
  color: #5f6875;
  font-family: "Noto Serif", Georgia, serif;
  font-size: 14px;
  font-style: italic;
  line-height: 1.6;
}
.movie-desc {
  padding: 0 15px 14px;
}
.movie-desc p {
  color: #66707c;
  font-size: 13px;
  line-height: 1.58;
}
.movie-desc div {
  margin-top: 6px;
  color: #8a929e;
  font-size: 11px;
}
.movie-link {
  min-height: 44px;
  margin: 0 18px 18px;
  border-radius: 999px;
  background: linear-gradient(145deg, #fff, #ece9e1);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(8,16,24,.07), inset 0 1px 0 rgba(255,255,255,.9);
}
.faq-tool.rich {
  gap: 0;
}
.faq-section {
  margin-top: 14px;
  padding: 0 0 8px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.faq-item {
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: #fff;
  margin-bottom: 9px;
  overflow: hidden;
}
.faq-q {
  list-style: none;
  min-height: 62px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--text);
  font-size: 16px;
  font-weight: 850;
  cursor: pointer;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-chevron {
  color: #9aa0a8;
  font-family: "Material Symbols Outlined";
  font-size: 20px;
  font-weight: normal;
  transition: transform .2s;
}
.faq-item[open] .faq-chevron { transform: rotate(90deg); }
.faq-a {
  margin: 0;
  padding: 0 16px 16px;
  color: #66707c;
  font-size: 14px;
  line-height: 1.6;
}

.contact-hero {
  min-height: 0;
  padding: 0;
  background: linear-gradient(120deg, #fbfaf7, #fff 42%, #fff6f6);
}
#contactsList,
#hotelContacts {
  padding: 0 14px;
}
.contacts-profile {
  padding: 32px 0 18px;
  text-align: center;
}
.contacts-avatar {
  width: 92px;
  height: 92px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  object-fit: cover;
  color: #fff;
  background: linear-gradient(135deg, var(--red), #8b0c18);
  box-shadow: 0 22px 52px rgba(15,23,42,.14);
}
.contacts-avatar-fallback {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: .06em;
}
.contacts-profile h1 {
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: 0;
}
.contacts-profile p,
.contacts-profile span {
  display: block;
  margin-top: 8px;
  color: #5d6573;
  font-size: 14px;
  line-height: 1.35;
}
.contact-action-grid,
.quick-help-grid,
.hotel-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.contact-action-card,
.quick-help-card,
.contact-detail-list,
.hotel-contact-card,
.emergency-list {
  border: 1px solid var(--rule);
  border-radius: 20px;
  background: var(--card);
  box-shadow: 0 14px 34px rgba(15,23,42,.06);
}
.contact-action-card,
.quick-help-card {
  min-height: 124px;
  padding: 18px;
  color: var(--text);
  text-align: center;
  text-decoration: none;
}
.contact-action-card > .material-symbols-outlined,
.quick-help-card > .material-symbols-outlined {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 27px;
  background: var(--red);
}
.contact-action-whatsapp > .material-symbols-outlined { background: #31c95b; }
.contact-action-instagram > .material-symbols-outlined { background: linear-gradient(135deg, #feda75, #d62976 45%, #4f5bd5); }
.contact-action-facebook > .material-symbols-outlined { background: #1877f2; }
.contact-action-card strong,
.contact-action-card small,
.quick-help-card strong,
.quick-help-card small {
  display: block;
}
.contact-action-card strong,
.quick-help-card strong {
  font-size: 16px;
  line-height: 1.2;
}
.contact-action-card small,
.quick-help-card small {
  margin-top: 8px;
  color: #5d6573;
  font-size: 12px;
  line-height: 1.35;
}
.contact-section-title {
  margin: 30px 0 12px;
  color: #755003;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.contact-section-title::after {
  content: "";
  display: block;
  width: 58px;
  height: 2px;
  margin-top: 12px;
  background: linear-gradient(90deg, var(--red), #d8be74);
}
.quick-help-card {
  min-height: 126px;
  text-align: left;
}
.quick-help-card > .material-symbols-outlined {
  margin: 0 0 16px;
  border-radius: 14px;
  color: #0877ff;
  background: #eaf3ff;
}
.contact-notice {
  margin-top: 14px;
  padding: 16px;
  border: 1px solid #ffd2d2;
  border-radius: 18px;
  color: #5d6573;
  background: #fff3f3;
  font-size: 14px;
  line-height: 1.45;
}
.contact-detail-list,
.emergency-list {
  overflow: hidden;
}
.contact-detail-row,
.emergency-row {
  color: var(--text);
  text-decoration: none;
}
.contact-detail-row {
  min-height: 92px;
  padding: 18px 18px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}
.contact-detail-row:first-child,
.emergency-row:first-child {
  border-top: 0;
}
.contact-dot {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 900;
}
.contact-dot .material-symbols-outlined { font-size: 19px; }
.contact-dot-whatsapp { color: #22c553; background: #e5f9e9; }
.contact-dot-phone,
.contact-dot-link { color: var(--red); background: #fde7ea; }
.contact-dot-email { color: #bd6b00; background: #fff2df; }
.contact-detail-row small,
.contact-detail-row strong,
.contact-detail-row em {
  display: block;
}
.contact-detail-row small {
  color: #5d6573;
  font-size: 13px;
}
.contact-detail-row strong {
  margin-top: 4px;
  font-size: 17px;
  line-height: 1.25;
}
.contact-detail-row em {
  margin-top: 6px;
  color: #5d6573;
  font-size: 13px;
  font-style: normal;
  line-height: 1.35;
}
.contact-detail-row b {
  color: var(--red);
  font-size: 13px;
}
.hotel-contact-card {
  overflow: hidden;
}
.hotel-card-head {
  padding: 18px 16px 8px;
  display: grid;
  grid-template-columns: 52px minmax(0,1fr);
  gap: 12px;
}
.hotel-card-head > .material-symbols-outlined {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #8a650b;
  background: #f0ece3;
}
.hotel-card-head small {
  color: #755003;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hotel-card-head strong {
  display: block;
  margin-top: 6px;
  font-size: 19px;
  line-height: 1.12;
}
.hotel-pills {
  padding: 0 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hotel-pills span {
  padding: 6px 9px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #755003;
  background: #f7f1e5;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.hotel-pills .material-symbols-outlined {
  width: auto;
  height: auto;
  font-size: 15px;
  font-style: normal;
}
.hotel-contact-card p,
.hotel-address-link {
  min-height: 44px;
  padding: 12px 16px 16px;
  color: #5d6573;
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
  display: block;
}
.hotel-address-link:hover {
  color: var(--red);
}
.hotel-card-actions {
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.hotel-card-actions a {
  min-height: 48px;
  color: var(--red);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.hotel-card-actions a + a {
  border-left: 1px solid var(--rule);
}
.hotel-card-actions .material-symbols-outlined {
  font-size: 18px;
}
.is-disabled {
  opacity: .45;
  pointer-events: none;
}
.emergency-row {
  min-height: 54px;
  padding: 14px 16px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}
.emergency-row span {
  color: #5d6573;
  font-size: 14px;
}
.emergency-row b {
  color: var(--red);
  font-size: 16px;
}

.empty {
  margin: 0 12px 12px;
  padding: 18px;
  border: 1px dashed var(--rule);
  border-radius: 18px;
  color: var(--mid);
  background: var(--card);
  font-size: 13px;
  line-height: 1.45;
}

.empty.inline { margin: 0; box-shadow: none; }

/* Croatia-style Today screen */
.adm-planner-strip {
  padding: 12px 12px 10px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  background: var(--surface);
}
.adm-planner-strip[hidden],
.adm-day-banner[hidden] { display: none; }
.adm-day-btn {
  min-width: 50px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #fff;
  color: #5d636b;
  font-weight: 850;
  position: relative;
}
.adm-day-btn::after {
  content: "";
  position: absolute;
  right: 9px;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.adm-day-btn span { display: block; font-size: 16px; line-height: 1; }
.adm-day-btn small {
  display: block;
  margin-top: 4px;
  color: var(--gold);
  font-size: 7px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.adm-day-btn.active { background: var(--red); color: #fff; }
.adm-day-btn.today:not(.active) { background: #eee8d8; color: var(--gold); }
.adm-day-banner {
  padding: 12px 16px;
  border-top: 1px solid rgba(206,17,38,.12);
  border-bottom: 2px solid rgba(206,17,38,.22);
  background: #f9e8e8;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
}

#screen-today {
  background:
    linear-gradient(90deg, rgba(206,17,38,.05), transparent 7%, transparent 93%, rgba(206,17,38,.05)),
    var(--bg);
}
#screen-today .today-hero {
  min-height: 282px;
  margin: 12px;
  padding: 116px 18px 24px;
  border-radius: 22px;
  overflow: hidden;
  background-color: #4b0c14;
  border-top: 2px solid #26313b;
  box-shadow: none;
}
#screen-today .today-hero.has-image {
  background-size: cover;
  background-position: center;
}
#screen-today .today-kicker {
  font-size: 11px;
  color: rgba(255,255,255,.82);
  letter-spacing: .2em;
}
#screen-today .today-hero h1 {
  font-size: clamp(38px, 8vw, 56px);
  line-height: .95;
  letter-spacing: 0;
  text-shadow: 0 1px 15px rgba(0,0,0,.28);
}
#screen-today .today-hero p {
  max-width: 560px;
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255,255,255,.88);
}
#screen-today .today-meta span {
  padding: 9px 13px;
  border: 0;
  background: rgba(255,255,255,.72);
  color: #0b2340;
  backdrop-filter: blur(12px);
}
.hero-admin-btn {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 2;
  border: 0;
  border-radius: 18px;
  padding: 10px 13px;
  background: rgba(0,0,0,.58);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

#screen-today .next-up {
  margin: 12px;
  padding: 20px 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 78% 50%, rgba(255,255,255,.18), transparent 28%),
    linear-gradient(100deg, #ed0b2b 0%, #c70724 54%, #9c3a3d 100%);
  box-shadow: none;
}
.next-up-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
}
.next-up-main { min-width: 0; }
.next-up-lbl {
  margin-bottom: 7px;
  color: rgba(255,255,255,.78);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.next-up-what {
  color: #fff;
  font-size: clamp(34px, 5.8vw, 54px);
  font-weight: 950;
  line-height: 1.04;
  max-width: 820px;
}
.next-up-time {
  margin-top: 8px;
  color: rgba(255,255,255,.82);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.32;
}
.next-up-countdown-wrap {
  flex: 0 0 auto;
  min-width: 116px;
  text-align: right;
}
.next-up-countdown {
  color: #fff;
  font-size: clamp(22px, 4.6vw, 36px);
  font-weight: 950;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.next-up-countdown.is-late {
  letter-spacing: .08em;
  animation: nextUpTextBlink .72s steps(2, end) infinite;
}
@keyframes nextUpTextBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: .35; }
}
.next-up-countdown-lbl {
  margin-top: 9px;
  color: rgba(255,255,255,.85);
  font-size: 8px;
  font-weight: 950;
  letter-spacing: .28em;
  text-transform: uppercase;
}

#screen-today .sec-label {
  margin: 22px 16px 12px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .22em;
  position: relative;
}
#screen-today .sec-label::after {
  content: "";
  display: block;
  width: 52px;
  height: 2px;
  margin-top: 12px;
  background: linear-gradient(90deg, var(--red), #d8b56a);
}
.tl {
  position: relative;
  padding: 4px 12px 28px;
}
.tl-item {
  position: relative;
  display: grid;
  grid-template-columns: 58px 42px minmax(0,1fr) 28px;
  gap: 8px;
  align-items: start;
  padding: 9px 0 24px;
}
.tl-item::before {
  content: "";
  position: absolute;
  left: 87px;
  top: 45px;
  bottom: -4px;
  width: 1px;
  background: linear-gradient(var(--activity-line, rgba(154,123,46,.24)), rgba(154,123,46,.14));
}
.tl-item:last-of-type::before { display: none; }
.tl-time {
  color: var(--gold);
  font-size: 16px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
  text-align: right;
}
.tl-dot {
  width: 36px;
  height: 36px;
  margin-top: -4px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--card);
  color: var(--gold);
  display: grid;
  place-items: center;
  z-index: 1;
  box-shadow: 0 8px 22px rgba(154,123,46,.14);
}
.tl-dot .material-symbols-outlined {
  font-size: 21px;
  font-variation-settings: "FILL" 1, "wght" 500;
}
.tl-dot.inc { background: var(--gold); color: #fff; }
.tl-dot.opt { background: var(--card); border-color: #6f7782; color: #6f7782; }
.tl-dot.tl-activity {
  --activity-a: #8793a1;
  --activity-b: #465363;
  --activity-line: var(--activity-a);
  position: relative;
  width: 40px;
  height: 40px;
  margin-top: -6px;
  border: 1px solid rgba(255,255,255,.54);
  color: #fff;
  background:
    radial-gradient(circle at 28% 18%, rgba(255,255,255,.43), transparent 13px),
    linear-gradient(150deg, var(--activity-a), var(--activity-b));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.32),
    0 7px 16px color-mix(in srgb, var(--activity-b) 25%, transparent);
}
.tl-dot.tl-activity .material-symbols-outlined {
  font-size: 23px;
  line-height: 1;
  font-variation-settings: "FILL" 0, "wght" 550, "GRAD" 0, "opsz" 24;
}
.tl-dot.tl-activity-red    { --activity-a:#ed344b; --activity-b:#aa0a20; }
.tl-dot.tl-activity-navy   { --activity-a:#397fa5; --activity-b:#0a4969; }
.tl-dot.tl-activity-blue   { --activity-a:#397ab6; --activity-b:#073d72; }
.tl-dot.tl-activity-indigo { --activity-a:#607dbb; --activity-b:#294b87; }
.tl-dot.tl-activity-green  { --activity-a:#8aaa48; --activity-b:#4f7420; }
.tl-dot.tl-activity-gold   { --activity-a:#deb83c; --activity-b:#9c7100; }
.tl-dot.tl-activity-teal   { --activity-a:#40aaa9; --activity-b:#08706f; }
.tl-dot.tl-activity-purple { --activity-a:#8a70b7; --activity-b:#50367f; }
.tl-dot.tl-activity-slate  { --activity-a:#8a96a4; --activity-b:#465363; }
.tl-item.tl-past .tl-dot.tl-activity {
  --activity-a: #a7aeb8;
  --activity-b: #7d8794;
  --activity-line: #a7aeb8;
  border-color: rgba(255,255,255,.28);
  background:
    radial-gradient(circle at 28% 18%, rgba(255,255,255,.12), transparent 13px),
    linear-gradient(150deg, var(--activity-a), var(--activity-b));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 4px 10px rgba(0,0,0,.08);
  filter: saturate(.08) brightness(.98);
}
.tl-item.tl-past .tl-dot.tl-activity .material-symbols-outlined {
  color: rgba(255,255,255,.72);
}
.tl-item.tl-now .tl-dot.tl-activity {
  border-color: rgba(255,255,255,.68);
  background:
    radial-gradient(circle at 28% 18%, rgba(255,255,255,.5), transparent 13px),
    linear-gradient(150deg, var(--activity-a), var(--activity-b));
  box-shadow:
    0 0 0 4px color-mix(in srgb, var(--activity-a) 16%, transparent),
    0 8px 18px color-mix(in srgb, var(--activity-b) 28%, transparent);
}
.tl-copy { min-width: 0; }
.tl-title-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
}
.tl-what {
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.16;
}
.tl-note {
  margin-top: 6px;
  color: #5f6875;
  font-size: 15px;
  line-height: 1.35;
}
.tl-chip {
  padding: 4px 7px;
  border-radius: 4px;
  background: #ece8dc;
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.tl-chip.opt {
  background: #eceef0;
  color: #6f7782;
}
.tl-location,
.tl-location-menu summary {
  margin-top: 12px;
  width: fit-content;
  min-height: 34px;
  padding: 0 13px 0 8px;
  border: 1px solid #eadfbe;
  background: #fbf8ef;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.tl-location-menu {
  margin-top: 12px;
  max-width: 780px;
}
.tl-location-menu summary {
  list-style: none;
  cursor: pointer;
}
.tl-location-menu summary::-webkit-details-marker { display: none; }
.tl-location-menu summary b,
.tl-location-menu summary i {
  font-size: 10px;
  font-style: normal;
}
.tl-location-menu[open] summary i {
  transform: rotate(180deg);
}
.tl-location .material-symbols-outlined,
.tl-location-menu summary > .material-symbols-outlined {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #fff;
  font-size: 16px;
}
.tl-location-panel {
  margin-top: 10px;
  padding: 16px;
  border: 1px solid #eadfbe;
  border-radius: 18px;
  background: linear-gradient(110deg, #fff, #fbf8ef);
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
}
.tl-location-icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: var(--gold);
  color: #fff;
  display: grid;
  place-items: center;
}
.tl-location-copy small {
  color: var(--gold);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.tl-location-copy strong {
  display: block;
  margin-top: 4px;
  font-size: 16px;
}
.tl-location-copy p {
  margin-top: 5px;
  color: #66707c;
  font-size: 13px;
  line-height: 1.45;
}
.tl-location-actions {
  margin-top: 11px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tl-location-actions a,
.tl-location-actions button {
  min-height: 36px;
  border: 1px solid var(--rule);
  background: #fff;
  color: var(--text);
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.tl-location-actions .primary {
  border-color: #b08a19;
  background: var(--gold);
  color: #fff;
}
.tl-past { opacity: .48; }
.tl-now .tl-what { color: #111; }
.adm-edit-btn {
  border: 0;
  background: transparent;
  color: #98a0aa;
  align-self: start;
}
.adm-edit-btn .material-symbols-outlined { font-size: 18px; }
.adm-add-btn {
  width: calc(100% - 24px);
  min-height: 34px;
  margin: 0 12px 16px;
  border: 1px dashed rgba(0,0,0,.16);
  background: rgba(255,255,255,.64);
  color: #66707c;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.seatplan-card,
.day-resources-card {
  margin: 12px;
  border: 1px solid var(--rule);
  border-radius: 20px;
  background: var(--card);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15,23,42,.05);
}
.seatplan-card {
  border-top: 4px solid var(--red);
  background:
    repeating-linear-gradient(90deg, rgba(151,112,23,.08) 0 1px, transparent 1px 23px),
    linear-gradient(100deg, #fff, #fffaf1);
}
.day-resources-card {
  border-top: 3px solid var(--gold);
  background: linear-gradient(100deg, #fff, #fbfaf6);
}
.seatplan-top,
.day-resources-head {
  padding: 18px 18px 12px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.seatplan-top {
  align-items: center;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) minmax(150px, 250px);
  gap: 18px;
  padding: 28px;
}
.seatplan-icon {
  width: 76px;
  height: 76px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--red), #8b0c18);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 34px rgba(206,17,38,.16);
}
.seatplan-icon .material-symbols-outlined {
  font-size: 38px;
}
.seatplan-copy { min-width: 0; }
.seatplan-kicker,
.day-resources-kicker {
  color: var(--red);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.day-resources-kicker { color: var(--gold); }
.seatplan-title,
.day-resources-title {
  margin-top: 8px;
  font-family: "Noto Serif", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.05;
}
.seatplan-body {
  margin-top: 9px;
  color: #5f6875;
  font-size: 14px;
  line-height: 1.4;
}
.seatplan-meta {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.seatplan-pill {
  padding: 10px 12px;
  border: 1px solid var(--rule);
  background: var(--surface);
  color: #66707c;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.seatplan-pill span {
  margin-left: 9px;
  color: var(--text);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
}
.seatplan-actions {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  border-left: 1px dashed rgba(154,123,46,.28);
}
.seatplan-btn,
.seatplan-btn-ghost {
  min-height: 42px;
  border: 0;
  padding: 0 14px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.seatplan-btn { background: var(--red); color: #fff; }
.seatplan-btn.disabled {
  opacity: .58;
  background: #ef6b76;
}
.seatplan-btn-ghost {
  border: 1px solid var(--rule);
  background: rgba(255,255,255,.76);
  color: var(--text);
}
.seatplan-upload-label {
  display: grid;
  place-items: center;
  cursor: pointer;
}
.seatplan-upload-label input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.seatplan-note {
  padding: 0 28px 22px 130px;
  color: #5f6875;
  font-size: 13px;
  line-height: 1.4;
}
.seatplan-preview {
  display: none;
}
.day-resources-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.day-resources-actions button {
  min-height: 36px;
  border: 1px solid var(--rule);
  border-radius: 11px;
  background: #fff;
  padding: 0 11px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.day-resources-list {
  padding: 0 18px 18px;
  display: grid;
  gap: 14px;
}
.day-resource-wrap {
  position: relative;
}
.day-resource-card {
  min-height: 220px;
  border: 1px solid rgba(206,17,38,.34);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  color: var(--text);
  text-decoration: none;
  display: grid;
  grid-template-columns: minmax(200px, .92fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
}
.day-resource-media {
  min-height: 220px;
  background: var(--surface) center / cover;
  position: relative;
}
.day-resource-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.05), rgba(0,0,0,.38));
}
.day-resource-icon {
  min-height: 220px;
  display: grid;
  place-items: center;
  background: var(--surface);
  color: var(--gold);
  font-size: 44px;
}
.day-resource-copy {
  min-width: 0;
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.day-resource-copy em {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
  letter-spacing: .22em;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
}
.day-resource-copy strong,
.day-resource-copy small { display: block; }
.day-resource-copy strong {
  color: var(--red);
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(30px, 6vw, 48px);
  line-height: .98;
}
.day-resource-copy small {
  margin-top: 22px;
  color: var(--mid);
  font-size: 20px;
  line-height: 1.45;
  overflow: hidden;
  text-overflow: ellipsis;
}
.day-resource-open {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.day-resource-open .material-symbols-outlined {
  font-size: 18px;
}
.day-resource-delete {
  position: absolute;
  right: -10px;
  top: 14px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--red);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(15,23,42,.12);
}

.adm-sheet,
.adm-pin-picker,
.itinerary-sheet,
.experience-sheet,
.today-notes-sheet {
  position: fixed;
  inset: 0;
  z-index: 260;
  display: none;
}
.adm-sheet.open,
.adm-pin-picker.open,
.itinerary-sheet.open,
.experience-sheet.open,
.today-notes-sheet.open { display: flex; }
.adm-sheet { align-items: flex-end; justify-content: center; }
.itinerary-sheet { align-items: flex-end; justify-content: center; }
.experience-sheet { align-items: flex-end; justify-content: center; }
.today-notes-sheet { align-items: flex-end; justify-content: center; }
.adm-sheet-bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.58);
}
.adm-sheet-inner {
  position: relative;
  width: min(760px, 100%);
  max-height: calc(100dvh - 46px);
  overflow-y: auto;
  padding: 20px 16px calc(20px + var(--safe-bot));
  border-radius: 22px 22px 0 0;
  background: var(--card);
  display: grid;
  gap: 10px;
}
.itinerary-sheet-inner,
.experience-sheet-inner,
.today-notes-sheet-inner {
  position: relative;
  width: min(760px, 100%);
  max-height: calc(100dvh - 46px);
  overflow-y: auto;
  padding: 20px 16px calc(20px + var(--safe-bot));
  border-radius: 22px 22px 0 0;
  background: var(--card);
  display: grid;
  gap: 10px;
}
.adm-sheet-kicker,
.adm-location-kicker {
  color: var(--red);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.adm-sheet-inner input,
.itinerary-sheet-inner input,
.itinerary-sheet-inner textarea,
.itinerary-sheet-inner select,
.experience-sheet-inner input,
.experience-sheet-inner textarea,
.experience-sheet-inner select,
.today-notes-sheet-inner input,
.today-notes-sheet-inner textarea,
.today-notes-sheet-inner select {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-bottom: 2px solid var(--gold);
  background: var(--surface);
  padding: 0 12px;
  color: var(--text);
  font-size: 16px;
  outline: none;
}
.itinerary-sheet-inner textarea,
.experience-sheet-inner textarea,
.today-notes-sheet-inner textarea {
  min-height: 128px;
  padding: 13px 12px;
  resize: vertical;
  font-family: var(--ff);
  line-height: 1.4;
}
.itinerary-edit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
}
.itinerary-edit-grid label span {
  display: block;
  margin-bottom: 5px;
  color: #66707c;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.itinerary-day-edit-fields,
.itinerary-section-edit-fields {
  display: grid;
  gap: 10px;
}
.itinerary-day-edit-fields[hidden],
.itinerary-section-edit-fields[hidden],
.itinerary-order-actions[hidden],
#itineraryDeleteButton[hidden],
#itineraryRestoreButton[hidden] { display: none; }
.itinerary-day-edit-fields > label > span,
.itinerary-section-edit-fields > label > span {
  display: block;
  margin-bottom: 5px;
  color: #66707c;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.itinerary-order-actions,
.itinerary-admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.itinerary-order-actions button,
.itinerary-admin-actions button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--rule);
  background: #fff;
  color: #596171;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.itinerary-order-actions .material-symbols-outlined,
.itinerary-admin-actions .material-symbols-outlined { font-size: 17px; }
.itinerary-admin-actions {
  padding: 0 18px 20px;
}
.itinerary-admin-actions button { flex: 1 1 190px; }
.today-note-edit-row {
  margin-bottom: 14px;
  padding: 14px;
  border: 1px solid var(--rule);
  border-radius: 16px;
  background: var(--card2);
  display: grid;
  gap: 10px;
}
.today-note-edit-row strong {
  font-size: 13px;
  font-weight: 850;
}
.today-note-edit-row button {
  min-height: 38px;
  border: 1px solid var(--rule);
  border-radius: 10px;
  background: #fff;
  color: var(--red);
  font-weight: 800;
}
.adm-type-row,
.adm-bottom-row,
.adm-location-actions,
.adm-pin-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 8px;
}
.adm-type-btn,
.adm-location-actions button,
.adm-bottom-row button,
.adm-pin-actions button {
  min-height: 44px;
  border: 1px solid var(--rule);
  border-radius: 11px;
  background: var(--surface);
  color: #66707c;
  font-weight: 800;
}
.adm-type-btn.active {
  background: #e3f2eb;
  color: #17824d;
}
.adm-location-box {
  margin-top: 10px;
  padding: 14px;
  border: 1px solid var(--rule);
  border-radius: 16px;
  background: linear-gradient(100deg, #fff, #f5f0e3);
  display: grid;
  gap: 10px;
}
.adm-location-box p {
  color: #66707c;
  font-size: 13px;
  line-height: 1.4;
}
.adm-primary,
.adm-save,
.adm-pin-actions .primary {
  background: var(--red) !important;
  color: #fff !important;
  border-color: var(--red) !important;
}
.adm-save {
  min-height: 48px;
  border: 0;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.adm-danger {
  background: #fff0f1 !important;
  color: var(--red) !important;
}
.adm-pin-picker {
  align-items: flex-end;
  justify-content: center;
  background: rgba(0,0,0,.74);
}
.adm-pin-card {
  width: min(834px, 100%);
  max-height: min(88vh, calc(100dvh - var(--safe-top) - 16px));
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  background: var(--card);
  display: flex;
  flex-direction: column;
}
.adm-pin-head {
  padding: 14px 16px;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.adm-pin-title { font-size: 17px; font-weight: 850; }
.adm-pin-sub { margin-top: 4px; color: #66707c; font-size: 13px; }
.adm-pin-head button {
  min-height: 38px;
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: #fff;
  padding: 0 13px;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.adm-pin-search {
  padding: 10px 14px;
  border-bottom: 1px solid var(--rule);
  background: var(--surface);
  display: grid;
  grid-template-columns: minmax(0,1fr) 104px;
  gap: 8px;
}
.adm-pin-search input {
  min-height: 44px;
  border: 0;
  border-bottom: 2px solid var(--gold);
  background: #fff;
  padding: 0 12px;
  font-size: 15px;
  outline: none;
}
.adm-pin-search button {
  border: 0;
  border-radius: 11px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.adm-pin-status {
  min-height: 24px;
  padding: 0 14px 8px;
  background: var(--surface);
  color: #66707c;
  font-size: 12px;
}
#admPinMap {
  position: relative;
  height: min(58vh, 460px);
  background:
    linear-gradient(90deg, rgba(255,255,255,.35) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.35) 1px, transparent 1px),
    radial-gradient(circle at 50% 48%, rgba(122,174,202,.52), transparent 22%),
    radial-gradient(circle at 72% 24%, rgba(155,198,132,.42), transparent 25%),
    #e7dfcf;
  background-size: 74px 74px, 74px 74px, auto, auto, auto;
  cursor: crosshair;
}
#admPinMap.leaflet-container {
  background: #dde3e7;
  cursor: grab;
}
#admPinMap.leaflet-container::before,
#admPinMap.leaflet-container::after { display: none; }
#admPinMap::before,
#admPinMap::after {
  content: "";
  position: absolute;
  background: rgba(205,177,124,.8);
  transform: rotate(-25deg);
}
#admPinMap::before { left: -30px; right: -30px; top: 48%; height: 18px; }
#admPinMap::after { left: 40%; top: -40px; bottom: -40px; width: 14px; }
.adm-pin-marker {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 22px;
  height: 22px;
  border-radius: 50% 50% 50% 0;
  background: var(--red);
  transform: translate(-50%, -100%) rotate(-45deg);
  box-shadow: 0 8px 22px rgba(0,0,0,.24);
}
.adm-pin-marker::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: #fff;
}
.adm-pin-actions {
  padding: 12px 14px calc(12px + var(--safe-bot));
  border-top: 1px solid var(--rule);
}

@media (max-width: 430px) {
  .hdr { padding: calc(var(--safe-top) + 6px) 12px 8px; }
  .hdr-left { gap: 8px; }
  .hdr-portrait { width: 38px; height: 38px; }
  .hdr-divider:last-of-type,
  .hdr-name-block { display: none; }
  .hdr-traf { height: 30px; }
  .today-hero,
  .editorial-hero { min-height: 250px; padding-top: 86px; }
  .itinerary-hero {
    min-height: 265px;
    border-radius: 26px;
  }
  .itinerary-hero h1 { font-size: 44px; }
  .itinerary-hero p { font-size: 14px; }
  .itinerary-summary { grid-template-columns: 86px minmax(0,1fr) 54px; }
  .itinerary-main { padding: 18px 14px 16px; }
  .itinerary-main h2 { font-size: 19px; }
  .itinerary-chip {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    line-height: 1.15;
  }
  .itinerary-rhythm { padding: 18px 10px 20px; }
  .rhythm-group {
    grid-template-columns: 74px minmax(0,1fr);
    gap: 10px;
  }
  .rhythm-group::before { left: 19px; }
  .rhythm-card {
    grid-template-columns: minmax(0,1fr);
    gap: 10px;
  }
  .rhythm-card span,
  .rhythm-card em {
    grid-column: 1;
    grid-row: auto;
  }
  .rhythm-card em { margin-top: -2px; }
  .itinerary-add-btn {
    width: calc(100% - 20px);
    margin: 0 10px 18px;
  }
  .itinerary-edit-grid { grid-template-columns: 1fr; }
  #contactsList,
  #hotelContacts { padding: 0 10px; }
  .contacts-profile { padding-top: 24px; }
  .contacts-avatar {
    width: 84px;
    height: 84px;
    border-radius: 24px;
  }
  .contacts-profile h1 { font-size: 25px; }
  .contact-action-grid,
  .quick-help-grid,
  .hotel-contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-action-card { min-height: 108px; }
  .quick-help-card { min-height: 112px; }
  .contact-detail-row {
    min-height: 86px;
    padding: 16px 14px;
    grid-template-columns: 44px minmax(0,1fr) auto;
    gap: 10px;
  }
  .contact-detail-row strong {
    font-size: 16px;
    overflow-wrap: anywhere;
  }
  .contact-detail-row b { font-size: 12px; }
  .hotel-card-head {
    padding: 16px 14px 8px;
    grid-template-columns: 46px minmax(0,1fr);
  }
  .hotel-pills,
  .hotel-contact-card p {
    padding-left: 14px;
    padding-right: 14px;
  }
  .tools-grid { grid-template-columns: 1fr; padding: 0 14px; }
  .tool-card { min-height: 104px; padding: 12px 42px 12px 0; grid-template-columns: 64px minmax(0, 1fr); column-gap: 13px; }
  .tool-app-icon { width: 64px; height: 64px; border-radius: 18px; }
  .tool-app-icon .material-symbols-outlined { font-size: 31px; }
  .tool-card strong { font-size: 23px; }
  .tool-card small { font-size: 15px; }
  .experience-region-grid { grid-template-columns: 1fr; }
  .experience-card.has-portrait-image { grid-row: auto; }
  .experience-media.is-portrait { height: min(78vh, 620px); }
  .tool-intro,
  .generated-map-wrap,
  .map-route-status,
  .weather-tool-grid,
  .movies-tool,
  .simple-tool-list,
  .checklist-tool,
  .phrase-tool,
  .faq-tool { margin-left: 12px; margin-right: 12px; }
  .weather-tool-grid,
  .movies-tool { grid-template-columns: 1fr; }
  .weather-city-card h3 { font-size: 21px; }
  .weather-days { grid-template-columns: 1fr; }
  .weather-days > div + div {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.13);
  }
  .movie-top { min-height: 160px; }
  .next-up-head { align-items: flex-start; flex-direction: column; }
  .next-up-countdown-wrap { text-align: left; }
  .tl-item { grid-template-columns: 50px 38px minmax(0,1fr) 24px; }
  .tl-item::before { left: 79px; }
  .tl-dot { width: 32px; height: 32px; }
  .tl-dot .material-symbols-outlined { font-size: 19px; }
  .tl-what { font-size: 16px; }
  .seatplan-top {
    grid-template-columns: 1fr;
    padding: 22px 18px;
  }
  .seatplan-actions {
    padding-left: 0;
    border-left: 0;
  }
  .seatplan-note {
    padding: 0 18px 18px;
  }
  .day-resource-card { grid-template-columns: 1fr; }
  .day-resource-media,
  .day-resource-icon { min-height: 190px; }
  .day-resource-copy { padding: 22px; }
  .day-resource-copy strong { font-size: 34px; }
  .day-resource-copy small { font-size: 16px; }
  .day-resources-head { display: grid; }
}
