/* Oakhurst & Bass Lake — light, warm, national-park palette */

:root {
  --bg: #f7f6f2;
  --card: #ffffff;
  --ink: #1f2620;
  --ink-2: #4a534b;
  --muted: #8b8f86;
  --line: #e8e5dd;
  --line-2: #f0eee8;

  --forest: #2f4a3a;
  --sage: #6d8b6e;
  --sage-soft: #eef3ec;
  --rust: #b4622f;
  --amber-bg: #fdf7e3;
  --amber-line: #ecd9a0;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 1px 2px rgba(31,38,32,.04), 0 6px 18px rgba(31,38,32,.05);
  --shadow-lift: 0 2px 6px rgba(47,74,58,.08), 0 14px 32px rgba(47,74,58,.12);

  --header-h: 118px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

/* class-level display rules below must never beat the hidden attribute */
[hidden] { display: none !important; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Inter, Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior-y: none;
}

body.no-scroll { overflow: hidden; }

button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }

/* ---------- Header ---------- */
.app-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: calc(var(--safe-top) + 14px) 18px 10px;
  background: rgba(247,246,242,.86);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--line);
}
.header-top { display: flex; align-items: flex-start; gap: 12px; }
.header-titles { flex: 1; min-width: 0; }
.app-header h1 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -.02em;
  font-weight: 700;
  color: var(--forest);
}
.header-sub {
  margin: 3px 0 0;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .01em;
}
.icon-btn {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  margin: -4px -6px 0 0;
  display: grid; place-items: center;
  border-radius: 50%;
}
.icon-btn:active { background: var(--line-2); }
.icon-btn svg {
  width: 23px; height: 23px;
  fill: none; stroke: var(--sage); stroke-width: 1.7; stroke-linecap: round;
}
.icon-btn svg .dot { fill: var(--sage); stroke: none; }

/* segmented control */
.seg {
  position: relative;
  display: flex;
  margin-top: 12px;
  padding: 3px;
  background: #eceae3;
  border-radius: 11px;
}
.seg-btn {
  position: relative;
  z-index: 2;
  flex: 1;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  border-radius: 9px;
  transition: color .2s;
}
.seg-btn.is-active { color: var(--forest); }
.seg-thumb {
  position: absolute;
  z-index: 1;
  top: 3px; left: 3px;
  width: calc(50% - 3px);
  height: calc(100% - 6px);
  background: var(--card);
  border-radius: 9px;
  box-shadow: 0 1px 3px rgba(31,38,32,.12);
  transition: transform .26s cubic-bezier(.32,.72,0,1);
}
.seg-thumb.right { transform: translateX(100%); }

/* ---------- Views ---------- */
.view { display: none; }
.view.is-active { display: block; }

.timeline { padding: 6px 0 0; }

/* sticky day header */
.day-head {
  position: sticky;
  top: var(--header-h);
  z-index: 20;
  margin: 22px 14px 0;
  padding: 11px 16px;
  background: var(--forest);
  color: #fff;
  border-radius: 13px;
  box-shadow: 0 4px 14px rgba(47,74,58,.18);
  display: flex;
  align-items: baseline;
  gap: 9px;
  scroll-margin-top: calc(var(--header-h) + 8px);
}
.day-head .dh-day {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.day-head .dh-dot { opacity: .45; font-size: 12px; }
.day-head .dh-label {
  font-size: 13.5px;
  font-weight: 600;
  color: #cfe0cd;
  letter-spacing: .01em;
}
.day-head .dh-badge {
  margin-left: auto;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  color: #fff;
}

/* day card */
.day-card {
  margin: 10px 14px 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* event row */
.ev {
  position: relative;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 15px;
  border-top: 1px solid var(--line-2);
  scroll-margin-top: calc(var(--header-h) + 62px);
  transition: opacity .35s ease, background .2s;
}
.ev:first-child { border-top: 0; }

.ev-time {
  flex: 0 0 60px;
  padding-top: 1px;
  font-size: 13.5px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--rust);
  letter-spacing: -.01em;
}
.ev-time.is-blank { color: var(--muted); font-weight: 600; }

.ev-icon {
  flex: 0 0 auto;
  width: 26px;
  font-size: 17px;
  line-height: 1.25;
  text-align: center;
  transition: filter .3s;
}
/* colour drains out of an event once it's behind us */
.ev.is-done .ev-icon { filter: grayscale(1); }
.ev-body { flex: 1; min-width: 0; }
.ev-title {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.01em;
}
.ev-title .strong { font-weight: 700; }
.ev-note {
  margin-top: 1px;
  font-size: 14px;
  color: var(--ink-2);
}
.ev-addr {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 7px;
  padding: 6px 11px 6px 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--sage);
  background: var(--sage-soft);
  border-radius: 999px;
  max-width: 100%;
}
.ev-addr svg { width: 13px; height: 13px; flex: 0 0 auto; fill: currentColor; }
.ev-addr span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ev-addr:active { background: #e3ebe0; }

.ev-check {
  flex: 0 0 auto;
  width: 21px; height: 21px;
  margin-top: 1px;
  border-radius: 50%;
  border: 1.6px solid var(--line);
  display: grid;
  place-items: center;
  transition: all .3s cubic-bezier(.32,.72,0,1);
}
.ev-check svg { width: 12px; height: 12px; stroke: #fff; stroke-width: 2.6; fill: none; stroke-linecap: round; stroke-linejoin: round; opacity: 0; transform: scale(.5); transition: all .3s cubic-bezier(.32,.72,0,1); }

/* done */
.ev.is-done { opacity: .44; }
.ev.is-done .ev-title,
.ev.is-done .ev-note { text-decoration: line-through; text-decoration-color: rgba(31,38,32,.3); }
.ev.is-done .ev-check { background: var(--sage); border-color: var(--sage); }
.ev.is-done .ev-check svg { opacity: 1; transform: scale(1); }

/* next up */
.ev.is-next {
  background: linear-gradient(180deg, #fbfdfa 0%, #f4f8f2 100%);
  box-shadow: inset 3px 0 0 var(--sage);
}
.ev.is-next .ev-title { color: var(--forest); font-weight: 700; }
.ev.is-next .ev-time { color: var(--forest); }
.ev-next-pill {
  display: inline-block;
  margin-bottom: 5px;
  padding: 2.5px 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--sage);
  border-radius: 999px;
  animation: pop .35s cubic-bezier(.32,.72,0,1);
}
@keyframes pop { from { transform: scale(.86); opacity: 0 } to { transform: scale(1); opacity: 1 } }

/* now line */
.now-line {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 15px;
  padding: 3px 0;
  position: relative;
}
.now-line::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rust);
  box-shadow: 0 0 0 3.5px rgba(180,98,47,.16);
  flex: 0 0 auto;
}
.now-line::after {
  content: "";
  flex: 1;
  height: 1.5px;
  background: linear-gradient(90deg, var(--rust), rgba(180,98,47,.12));
  border-radius: 2px;
}
.now-label {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--rust);
  font-variant-numeric: tabular-nums;
}

/* footer */
.foot {
  margin: 28px 20px calc(38px + var(--safe-bottom));
  text-align: center;
}
.foot p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  font-style: italic;
}

/* ---------- Calendar ---------- */
.cal-wrap { padding: 20px 14px calc(40px + var(--safe-bottom)); }
.cal-month {
  margin: 4px 4px 14px;
  font-size: 17px;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: -.01em;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.cal-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 9px 2px 10px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  min-height: 92px;
  justify-content: flex-start;
  transition: transform .15s;
}
.cal-emoji { font-size: 15px; line-height: 1; margin-top: 1px; }
.cal-dow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--muted);
  text-transform: uppercase;
}
.cal-num {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.cal-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--sage);
  text-align: center;
  line-height: 1.15;
  padding: 0 2px;
}
.cal-cell.is-off { background: transparent; border-color: transparent; opacity: .35; }
.cal-cell.is-off .cal-num { font-weight: 600; color: var(--muted); }
.cal-cell.is-trip { border-color: #d9e2d6; box-shadow: var(--shadow); }
.cal-cell.is-today {
  background: var(--forest);
  border-color: var(--forest);
}
.cal-cell.is-today .cal-dow { color: #a9c3a6; }
.cal-cell.is-today .cal-num { color: #fff; }
.cal-cell.is-today .cal-tag { color: #cfe0cd; }
.cal-cell.is-trip:active { transform: scale(.96); }
.cal-hint {
  margin: 14px 4px 22px;
  font-size: 12.5px;
  color: var(--muted);
  text-align: center;
}

.cal-agenda { margin-top: 4px; }
.ag-day { margin-bottom: 18px; }
.ag-head {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 4px 8px;
}
.ag-head b { font-size: 13px; letter-spacing: .07em; text-transform: uppercase; color: var(--forest); }
.ag-head span { font-size: 12.5px; color: var(--muted); }
.ag-list {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.ag-row {
  display: flex;
  gap: 10px;
  padding: 9px 13px;
  font-size: 13.5px;
  border-top: 1px solid var(--line-2);
}
.ag-row:first-child { border-top: 0; }
.ag-row b { flex: 0 0 54px; color: var(--rust); font-variant-numeric: tabular-nums; font-size: 12.5px; padding-top: 1px; }
.ag-row .ag-ic { flex: 0 0 20px; text-align: center; }
.ag-row.is-done .ag-ic { filter: grayscale(1); }
.ag-row.is-done { opacity: .45; text-decoration: line-through; }

/* ---------- Address sheet ---------- */
.sheet-scrim, .modal-scrim {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(24,30,25,.34);
  backdrop-filter: blur(2px);
  animation: fade .2s ease;
}
@keyframes fade { from { opacity: 0 } to { opacity: 1 } }

.sheet {
  position: fixed;
  z-index: 61;
  left: 8px; right: 8px;
  bottom: calc(8px + var(--safe-bottom));
  background: var(--card);
  border-radius: 22px;
  box-shadow: var(--shadow-lift);
  padding: 10px 10px calc(10px);
  animation: slideUp .3s cubic-bezier(.32,.72,0,1);
  max-width: 520px;
  margin: 0 auto;
}
@keyframes slideUp { from { transform: translateY(110%) } to { transform: translateY(0) } }
.sheet-grab {
  width: 36px; height: 4px;
  margin: 2px auto 10px;
  border-radius: 3px;
  background: var(--line);
}
.sheet-head { padding: 2px 12px 12px; text-align: center; border-bottom: 1px solid var(--line-2); }
.sheet-title { margin: 0; font-size: 15px; font-weight: 700; color: var(--forest); }
.sheet-addr { margin: 3px 0 0; font-size: 13px; color: var(--ink-2); }
.sheet-actions { display: flex; flex-direction: column; gap: 2px; padding-top: 6px; }
.sheet-btn {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  padding: 15px 14px;
  font-size: 15.5px;
  font-weight: 500;
  border-radius: 13px;
  text-align: left;
}
.sheet-btn span { font-size: 17px; }
.sheet-btn:active { background: var(--line-2); }
.sheet-btn.is-cancel {
  justify-content: center;
  margin-top: 4px;
  font-weight: 700;
  color: var(--ink-2);
  background: #f4f2ec;
}

/* ---------- Info full sheet ---------- */
.fullsheet {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  animation: slideUp .32s cubic-bezier(.32,.72,0,1);
}
.fullsheet-bar {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(var(--safe-top) + 14px) 18px 12px;
  border-bottom: 1px solid var(--line);
  background: rgba(247,246,242,.9);
  backdrop-filter: blur(14px);
}
.fullsheet-bar h2 { margin: 0; font-size: 18px; font-weight: 700; color: var(--forest); }
.close-btn { font-size: 15.5px; font-weight: 600; color: var(--sage); padding: 4px 2px; }
.fullsheet-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 16px 14px calc(46px + var(--safe-bottom));
}

.note-card {
  display: flex;
  gap: 11px;
  padding: 13px 14px;
  margin-bottom: 8px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}
.note-card .nc-icon { font-size: 18px; line-height: 1.2; }
.note-card b { display: block; font-size: 14px; color: var(--ink); margin-bottom: 1px; }
.note-card p { margin: 0; font-size: 13.5px; color: var(--ink-2); line-height: 1.45; }

.callout {
  display: flex;
  gap: 11px;
  padding: 14px 15px;
  margin-bottom: 16px;
  background: var(--amber-bg);
  border: 1px solid var(--amber-line);
  border-radius: var(--radius-sm);
}
.callout b { color: #8a6512; }
.callout p { margin: 0; font-size: 13.5px; line-height: 1.5; color: #6b5518; }

details.acc {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  margin-bottom: 8px;
  overflow: hidden;
}
details.acc > summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 15px;
  font-size: 15px;
  font-weight: 700;
  color: var(--forest);
  cursor: pointer;
}
details.acc > summary::-webkit-details-marker { display: none; }
details.acc > summary .chev {
  margin-left: auto;
  width: 8px; height: 8px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform .22s;
}
details.acc[open] > summary .chev { transform: rotate(-135deg); }
.acc-body { padding: 0 15px 14px; }

.kv {
  display: flex;
  gap: 12px;
  padding: 9px 0;
  border-top: 1px solid var(--line-2);
  font-size: 14px;
}
.kv:first-child { border-top: 0; padding-top: 2px; }
.kv .k { flex: 1; color: var(--ink); }
.kv .v { flex: 0 0 auto; font-weight: 700; color: var(--forest); font-variant-numeric: tabular-nums; }
.kv a { color: var(--sage); font-weight: 700; text-decoration: none; }

.addr-row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 11px 0;
  border-top: 1px solid var(--line-2);
  text-align: left;
}
.addr-row:first-child { border-top: 0; }
.addr-row .ar-body { flex: 1; min-width: 0; }
.addr-row b { display: block; font-size: 14px; }
.addr-row small { font-size: 12.5px; color: var(--muted); }
.addr-row .ar-go {
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 700;
  color: var(--sage);
  background: var(--sage-soft);
  padding: 6px 11px;
  border-radius: 999px;
}

.chk {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  width: 100%;
  padding: 10px 0;
  border-top: 1px solid var(--line-2);
  text-align: left;
  font-size: 14px;
}
.chk:first-child { border-top: 0; }
.chk .box {
  flex: 0 0 auto;
  width: 19px; height: 19px;
  margin-top: 1px;
  border: 1.6px solid var(--line);
  border-radius: 6px;
  display: grid; place-items: center;
}
.chk .box svg { width: 11px; height: 11px; stroke: #fff; stroke-width: 2.8; fill: none; stroke-linecap: round; stroke-linejoin: round; opacity: 0; }
.chk.on .box { background: var(--sage); border-color: var(--sage); }
.chk.on .box svg { opacity: 1; }
.chk.on .lbl { text-decoration: line-through; color: var(--muted); }
.dot-item { padding: 7px 0; font-size: 14px; border-top: 1px solid var(--line-2); }
.dot-item:first-child { border-top: 0; }

.notif-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 15px;
  margin-bottom: 8px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}
.notif-row .nr-body { flex: 1; }
.notif-row b { display: block; font-size: 14.5px; color: var(--forest); }
.notif-row small { font-size: 12.5px; color: var(--muted); line-height: 1.4; display: block; margin-top: 2px; }
.pill-btn {
  flex: 0 0 auto;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: var(--sage);
  border-radius: 999px;
}
.pill-btn.is-off { background: #eceae3; color: var(--ink-2); }

.info-h {
  margin: 20px 6px 9px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.info-h:first-child { margin-top: 4px; }
.squirt-note {
  margin: 10px 4px 0;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--rust);
  line-height: 1.45;
}

/* ---------- Notification modal ---------- */
.modal-scrim { display: grid; place-items: center; padding: 24px; }
.modal {
  width: 100%;
  max-width: 360px;
  background: var(--card);
  border-radius: 22px;
  padding: 26px 22px 20px;
  text-align: center;
  box-shadow: var(--shadow-lift);
  animation: pop .3s cubic-bezier(.32,.72,0,1);
}
.modal-emoji { font-size: 34px; line-height: 1; }
.modal h2 { margin: 12px 0 8px; font-size: 19px; font-weight: 700; color: var(--forest); letter-spacing: -.01em; }
.modal p { margin: 0; font-size: 14px; line-height: 1.5; color: var(--ink-2); }
.modal-actions { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.btn-primary {
  padding: 14px;
  font-size: 15.5px;
  font-weight: 700;
  color: #fff;
  background: var(--forest);
  border-radius: 13px;
}
.btn-primary:active { background: #263c2f; }
.btn-ghost { padding: 12px; font-size: 15px; font-weight: 600; color: var(--muted); }

/* ---------- Jump to now ---------- */
.jump-btn {
  position: fixed;
  z-index: 50;
  left: 50%;
  bottom: calc(22px + var(--safe-bottom));
  transform: translateX(-50%) translateY(72px);
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 19px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--forest);
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(31,38,32,.28);
  transition: transform .3s cubic-bezier(.32,.72,0,1), opacity .3s;
  opacity: 0;
  pointer-events: none;
}
.jump-btn.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.jump-btn:active { transform: translateX(-50%) translateY(0) scale(.95); }
.jb-arrow { font-size: 15px; line-height: 1; }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  z-index: 90;
  left: 50%;
  bottom: calc(28px + var(--safe-bottom));
  transform: translateX(-50%) translateY(8px);
  padding: 11px 18px;
  background: rgba(31,38,32,.93);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  opacity: 0;
  transition: opacity .22s, transform .22s;
  pointer-events: none;
  max-width: 88vw;
  text-align: center;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

@media (min-width: 640px) {
  .timeline, .cal-wrap, .fullsheet-body, .foot { max-width: 620px; margin-left: auto; margin-right: auto; }
  .app-header > * { max-width: 620px; margin-left: auto; margin-right: auto; }
  .app-header .seg { max-width: 620px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001s !important; transition-duration: .001s !important; }
}


/* ---------- Dark mode ---------- */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #161a16;
    --card: #1f2620;
    --ink: #edf0e8;
    --ink-2: #b9c1b3;
    --muted: #838b7f;
    --line: #2d342c;
    --line-2: #272e27;

    --forest: #cfe0cd;      /* headings flip to pale sage on dark */
    --sage: #8fae8f;
    --sage-soft: #26302666; /* translucent */
    --rust: #d99a6c;
    --amber-bg: #2c2718;
    --amber-line: #4d4225;

    --shadow: 0 1px 2px rgba(0,0,0,.25), 0 6px 18px rgba(0,0,0,.28);
    --shadow-lift: 0 2px 6px rgba(0,0,0,.35), 0 16px 36px rgba(0,0,0,.5);
  }

  .app-header {
    background: rgba(22,26,22,.82);
    border-bottom-color: #232923;
  }
  .seg { background: #242b24; }
  .seg-thumb { background: #333d33; box-shadow: 0 1px 3px rgba(0,0,0,.4); }
  .seg-btn.is-active { color: #edf0e8; }

  .day-head {
    background: #24382c;
    box-shadow: 0 4px 14px rgba(0,0,0,.35);
  }

  .ev.is-next { background: linear-gradient(180deg, #222b23 0%, #1f291f 100%); }
  .ev.is-next .ev-title, .ev.is-next .ev-time { color: #d9e8d6; }
  .ev-addr { background: #263026; }
  .ev-addr:active { background: #2d382d; }
  .ev.is-done .ev-title,
  .ev.is-done .ev-note { text-decoration-color: rgba(237,240,232,.35); }

  .cal-cell.is-today { background: #33503f; border-color: #33503f; }
  .cal-cell.is-today .cal-num { color: #fff; }

  .callout b { color: #e8c56b; }
  .callout p { color: #d6bd80; }

  .sheet-btn.is-cancel { background: #262d26; }
  .pill-btn.is-off { background: #2a322a; color: var(--ink-2); }
  .btn-primary { background: #3c5a48; }
  .btn-primary:active { background: #33503f; }
  .jump-btn { background: #3c5a48; box-shadow: 0 6px 20px rgba(0,0,0,.45); }

  .toast { background: rgba(237,240,232,.95); color: #1b211c; }
  .sheet-scrim, .modal-scrim { background: rgba(0,0,0,.5); }
  .fullsheet-bar { background: rgba(22,26,22,.9); }
}
