/* Picture carousel for karen 🌸 */

:root {
  /* Default palette: Blush */
  --bg: #fbf4ef;
  --bg-2: #f5e6e0;
  --paper: #ffffff;
  --ink: #3a2a2e;
  --ink-soft: #6f5a5e;
  --rose: #e8b4b8;
  --rose-deep: #9d4c5b;
  --gold: #c9a37a;
  --shadow: 0 18px 50px -20px rgba(157,76,91,.35);
  --shadow-soft: 0 10px 30px -16px rgba(58,42,46,.25);
  --radius: 18px;
  --serif: "DM Serif Display", "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

[data-aesthetic="sakura"] {
  --bg: #fef6f6;
  --bg-2: #fde6ec;
  --paper: #ffffff;
  --ink: #4a2a3a;
  --ink-soft: #8a6776;
  --rose: #f4b6c2;
  --rose-deep: #c75a78;
  --gold: #e3b7a0;
}

[data-aesthetic="twilight"] {
  --bg: #f3eef7;
  --bg-2: #e6dcef;
  --paper: #fdfaff;
  --ink: #2e2541;
  --ink-soft: #6a5a7a;
  --rose: #c9b6e0;
  --rose-deep: #6d4a8f;
  --gold: #b4a3cb;
}

[data-aesthetic="cream"] {
  --bg: #f7f0e3;
  --bg-2: #efe1c8;
  --paper: #fcf7ec;
  --ink: #3a2b1a;
  --ink-soft: #7a614a;
  --rose: #d9a89a;
  --rose-deep: #a05a3f;
  --gold: #b8895a;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); font-family: var(--sans); }
body {
  background:
    radial-gradient(1200px 800px at 10% -10%, var(--bg-2) 0%, transparent 60%),
    radial-gradient(900px 700px at 110% 110%, var(--bg-2) 0%, transparent 55%),
    var(--bg);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.serif { font-family: var(--serif); font-weight: 400; }
.mono { font-family: var(--mono); }

/* ---------- LOGIN ---------- */
.login-stage {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.login-card {
  width: min(440px, 100%);
  background: var(--paper);
  border-radius: 28px;
  padding: 44px 36px 32px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
  border: 1px solid rgba(157,76,91,.08);
}
.login-stamp {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  background: var(--rose-deep);
  color: var(--paper);
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
}
.login-heart {
  font-family: var(--serif);
  font-size: 56px;
  color: var(--rose-deep);
  text-align: center;
  line-height: 1;
  margin: 6px 0 14px;
}
.login-title {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.15;
  text-align: center;
  margin: 0 0 8px;
  color: var(--ink);
}
.login-q {
  text-align: center;
  color: var(--ink-soft);
  font-size: 15px;
  margin: 0 0 22px;
  font-style: italic;
}
.login-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1.5px solid color-mix(in oklab, var(--rose) 60%, transparent);
  background: var(--bg);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  text-align: center;
}
.login-input:focus {
  border-color: var(--rose-deep);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--rose) 30%, transparent);
}
.login-input.shake { animation: shake .4s; }
@keyframes shake {
  10%,90% { transform: translateX(-2px); }
  20%,80% { transform: translateX(4px); }
  30%,50%,70% { transform: translateX(-7px); }
  40%,60% { transform: translateX(7px); }
}
.login-btn {
  margin-top: 14px;
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 0;
  background: var(--rose-deep);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .15s, background .2s;
}
.login-btn:hover { transform: translateY(-1px); background: color-mix(in oklab, var(--rose-deep) 90%, black); }
.login-hint {
  text-align: center;
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 18px;
  font-style: italic;
}
.login-hint b { color: var(--rose-deep); cursor: pointer; }

/* floating petals */
.petal {
  position: absolute;
  width: 14px; height: 14px;
  background: var(--rose);
  border-radius: 100% 0 100% 0;
  opacity: .55;
  pointer-events: none;
  animation: drift linear infinite;
}
@keyframes drift {
  0% { transform: translateY(-10vh) rotate(0deg); opacity: 0; }
  10% { opacity: .6; }
  90% { opacity: .6; }
  100% { transform: translateY(110vh) rotate(540deg); opacity: 0; }
}

/* ---------- APP SHELL ---------- */
.app {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 28px 80px;
}
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  gap: 24px;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.brand-mark {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--rose-deep);
  line-height: 1;
}
.brand-name {
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: .01em;
}
.brand-sub {
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-family: var(--mono);
}

.counter {
  display: flex;
  gap: 18px;
  background: var(--paper);
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(157,76,91,.08);
}
.counter-num {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--rose-deep);
  line-height: 1;
}
.counter-lbl {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-family: var(--mono);
  margin-top: 4px;
}
.counter-cell { text-align: center; min-width: 50px; }
.counter-cell + .counter-cell { border-left: 1px solid color-mix(in oklab, var(--rose) 30%, transparent); padding-left: 18px; }

/* view switcher */
.viewer-tabs {
  display: inline-flex;
  background: var(--paper);
  border-radius: 999px;
  padding: 4px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(157,76,91,.08);
  gap: 2px;
}
.viewer-tab {
  border: 0;
  background: transparent;
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .2s;
}
.viewer-tab.on {
  background: var(--rose-deep);
  color: var(--paper);
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  margin: 36px 0 6px;
  letter-spacing: -.01em;
}
.hero-sub {
  font-size: 14px;
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 32px;
}

/* ---------- TIMELINE: VERTICAL ALTERNATING ---------- */
.tl-vert {
  position: relative;
  padding: 12px 0;
}
.tl-vert::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(to bottom,
    color-mix(in oklab, var(--rose) 60%, transparent) 0 6px,
    transparent 6px 12px);
  transform: translateX(-50%);
}
.tl-vert-row {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: start;
  margin-bottom: 48px;
  gap: 16px;
}
.tl-vert-node {
  grid-column: 2;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--paper);
  border: 3px solid var(--rose-deep);
  margin: 30px auto 0;
  position: relative;
  z-index: 2;
}
.tl-vert-node::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--rose-deep);
}
.tl-card-wrap { grid-column: 1; }
.tl-card-wrap.right { grid-column: 3; }

/* ---------- DATE CARD ---------- */
.date-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(157,76,91,.06);
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.date-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.date-img {
  aspect-ratio: 4/3;
  background: var(--rose);
  position: relative;
  overflow: hidden;
}
.date-img image-slot { width: 100%; height: 100%; display: block; }
.date-body { padding: 18px 20px 20px; }
.date-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}
.date-date {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.date-area {
  font-size: 11px;
  color: var(--rose-deep);
  font-family: var(--mono);
  letter-spacing: .08em;
}
.date-title {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.15;
  margin: 4px 0 8px;
}
.date-spots {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 12px;
  font-style: italic;
}
.date-memory {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
}
.date-song {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed color-mix(in oklab, var(--rose) 50%, transparent);
  font-size: 12px;
  color: var(--ink-soft);
}
.date-song-icon {
  color: var(--rose-deep);
  font-size: 14px;
}
.date-song b { color: var(--ink); font-weight: 500; }

/* ---------- TIMELINE: FILM STRIP ---------- */
.tl-strip-wrap {
  margin: 0 -28px;
  padding: 12px 28px 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.tl-strip {
  display: flex;
  gap: 22px;
  padding-bottom: 12px;
}
.tl-strip .date-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
}

/* ---------- TIMELINE: SCRAPBOOK ---------- */
.tl-scrap {
  position: relative;
  min-height: 1400px;
  background:
    radial-gradient(circle at 20% 30%, rgba(157,76,91,.04) 0 2px, transparent 2px),
    radial-gradient(circle at 80% 70%, rgba(157,76,91,.04) 0 2px, transparent 2px);
  background-size: 80px 80px, 100px 100px;
}
.polaroid {
  position: absolute;
  width: 230px;
  background: var(--paper);
  padding: 12px 12px 36px;
  box-shadow: 0 18px 40px -16px rgba(58,42,46,.35);
  cursor: pointer;
  transition: transform .25s;
}
.polaroid:hover { transform: scale(1.04) rotate(0deg) !important; z-index: 10; }
.polaroid-img {
  aspect-ratio: 1/1;
  background: var(--rose);
  overflow: hidden;
}
.polaroid-img image-slot { width: 100%; height: 100%; display: block; }
.polaroid-cap {
  margin-top: 10px;
  font-family: "Caveat", "Comic Sans MS", cursive;
  font-size: 18px;
  text-align: center;
  color: var(--ink);
  line-height: 1.15;
}
.polaroid-cap .d { font-family: var(--mono); font-size: 10px; color: var(--ink-soft); display: block; letter-spacing: .12em; margin-bottom: 2px;}
.tape {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 60px;
  height: 18px;
  background: color-mix(in oklab, var(--gold) 60%, white);
  opacity: .8;
}

/* ---------- TIMELINE: CALENDAR ---------- */
.tl-cal { display: flex; flex-direction: column; gap: 36px; }
.tl-cal-month {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(157,76,91,.06);
}
.tl-cal-h {
  font-family: var(--serif);
  font-size: 28px;
  margin: 0 0 4px;
  color: var(--rose-deep);
}
.tl-cal-sub {
  font-size: 11px;
  color: var(--ink-soft);
  font-family: var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.tl-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.tl-cal-dow {
  font-size: 10px;
  color: var(--ink-soft);
  font-family: var(--mono);
  letter-spacing: .1em;
  text-align: center;
  padding-bottom: 4px;
  text-transform: uppercase;
}
.tl-cal-day {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-size: 13px;
  color: var(--ink-soft);
  position: relative;
  cursor: default;
}
.tl-cal-day.empty { color: transparent; }
.tl-cal-day.has {
  background: color-mix(in oklab, var(--rose) 30%, transparent);
  color: var(--ink);
  font-weight: 600;
  cursor: pointer;
  transition: transform .15s;
}
.tl-cal-day.has:hover { transform: scale(1.1); background: var(--rose); }
.tl-cal-day.has::after {
  content: "♥";
  position: absolute;
  top: 2px;
  right: 4px;
  font-size: 8px;
  color: var(--rose-deep);
}

/* ---------- MAP VIEW ---------- */
.map-wrap {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(157,76,91,.06);
  overflow: hidden;
}
.map-svg {
  width: 100%;
  height: 560px;
  background:
    radial-gradient(circle at 30% 40%, color-mix(in oklab, var(--rose) 15%, transparent) 0%, transparent 50%),
    color-mix(in oklab, var(--bg-2) 60%, white);
  border-radius: 12px;
}
.map-leaflet {
  width: 100%;
  height: 560px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--rose) 25%, transparent);
}
/* Custom pin */
.kk-pin { background: transparent !important; border: 0 !important; }
.kk-pin-wrap {
  position: relative;
  width: 32px;
  height: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform .15s;
}
.kk-pin-wrap:hover { transform: translateY(-3px) scale(1.05); }
.kk-pin-num {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--ink);
  background: var(--paper);
  padding: 2px 6px;
  border-radius: 999px;
  box-shadow: 0 4px 10px -4px rgba(0,0,0,.3);
  margin-bottom: 2px;
  letter-spacing: .04em;
}
.kk-pin-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--rose-deep);
  border: 3px solid var(--paper);
  box-shadow: 0 4px 12px -3px rgba(157,76,91,.6);
  position: relative;
}
.kk-pin-dot::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--paper);
  filter: drop-shadow(0 2px 2px rgba(0,0,0,.15));
}
.kk-pin-label {
  position: absolute;
  top: 100%;
  margin-top: 4px;
  font-family: var(--mono);
  font-size: 9px;
  color: var(--ink-soft);
  white-space: nowrap;
  background: rgba(255,255,255,.85);
  padding: 1px 5px;
  border-radius: 4px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
/* Tone Leaflet UI to our palette */
.leaflet-control-zoom a {
  background-color: var(--paper) !important;
  color: var(--ink) !important;
  border-color: color-mix(in oklab, var(--rose) 30%, transparent) !important;
}
.leaflet-container { background: var(--bg-2) !important; font-family: var(--sans); }
.map-pin {
  cursor: pointer;
  transition: transform .2s;
  transform-origin: center bottom;
}
.map-pin:hover { transform: scale(1.3); }
.map-legend {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ---------- ADMIN PANEL ---------- */
.admin-fab {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 0;
  background: var(--rose-deep);
  color: var(--paper);
  font-size: 28px;
  cursor: pointer;
  box-shadow: var(--shadow);
  z-index: 100;
  transition: transform .2s;
  font-family: var(--serif);
  line-height: 1;
}
.admin-fab:hover { transform: scale(1.1) rotate(90deg); }
.admin-modal {
  position: fixed;
  inset: 0;
  background: rgba(58,42,46,.5);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  z-index: 1600;
  padding: 24px;
}
.admin-card {
  background: var(--paper);
  border-radius: 22px;
  padding: 32px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow);
}
.admin-h {
  font-family: var(--serif);
  font-size: 30px;
  margin: 0 0 4px;
}
.admin-sub {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 24px;
  font-style: italic;
}
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-family: var(--mono);
}
.field input, .field textarea {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1.5px solid color-mix(in oklab, var(--rose) 40%, transparent);
  background: var(--bg);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  outline: none;
}
.field input:focus, .field textarea:focus { border-color: var(--rose-deep); }
.field textarea { min-height: 70px; resize: vertical; font-family: var(--serif); font-size: 15px; }
.admin-row { display: flex; gap: 12px; }
.admin-row .field { flex: 1; }
.admin-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 18px; }
.btn {
  padding: 10px 20px;
  border-radius: 999px;
  border: 0;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  cursor: pointer;
}
.btn-primary { background: var(--rose-deep); color: var(--paper); }
.btn-ghost { background: transparent; color: var(--ink-soft); }
.bot-note {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  background: color-mix(in oklab, var(--rose) 18%, transparent);
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.bot-note b { color: var(--rose-deep); font-family: var(--mono); }

/* ---------- DETAIL OVERLAY ---------- */
.detail {
  position: fixed;
  inset: 0;
  background: rgba(58,42,46,.65);
  backdrop-filter: blur(12px);
  display: grid;
  place-items: center;
  z-index: 1500;
  padding: 24px;
  animation: fade-in .25s;
}
@keyframes fade-in { from { opacity: 0; } }
.detail-card {
  background: var(--paper);
  border-radius: 24px;
  max-width: 760px;
  width: 100%;
  max-height: 92vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  box-shadow: var(--shadow);
}
.detail-gallery {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  min-height: 0;
}
.detail-img {
  flex: 1 1 auto;
  background: var(--rose);
  min-height: 380px;
}
.detail-img image-slot { width: 100%; height: 100%; display: block; }
.detail-thumbs {
  display: flex;
  gap: 6px;
  padding: 8px;
  background: var(--paper);
  border-top: 1px solid color-mix(in oklab, var(--rose) 25%, transparent);
}
.detail-thumb {
  flex: 1 1 0;
  aspect-ratio: 1;
  border: 0;
  padding: 0;
  background: var(--rose);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: inset 0 0 0 2px transparent;
  transition: box-shadow .15s, transform .15s;
}
.detail-thumb:hover { transform: scale(1.04); }
.detail-thumb.on { box-shadow: inset 0 0 0 2px var(--rose-deep); }
.detail-thumb image-slot {
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: auto;
}
.detail-body { padding: 36px 32px; overflow-y: auto; }
.detail-hint {
  margin-top: 18px;
  font-size: 11px;
  color: var(--ink-soft);
  font-family: var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  padding-top: 12px;
  border-top: 1px dashed color-mix(in oklab, var(--rose) 35%, transparent);
}
.detail-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--paper);
  border: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  box-shadow: var(--shadow-soft);
  z-index: 5;
}
@media (max-width: 760px) {
  .detail-card { grid-template-columns: 1fr; max-height: 96vh; }
  .detail-img { min-height: 240px; }
  .detail-body { padding: 24px 22px; }
}

/* ---------- SLIDESHOW ON OPEN ---------- */
.slideshow {
  position: fixed;
  inset: 0;
  background: rgba(58,42,46,.92);
  display: grid;
  place-items: center;
  z-index: 1700;
  animation: fade-in .35s;
}
.slide-card {
  background: var(--paper);
  border-radius: 24px;
  max-width: 520px;
  width: 92%;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.5);
  text-align: center;
}
.slide-img { aspect-ratio: 1/1; background: var(--rose); }
.slide-img image-slot { width: 100%; height: 100%; display: block; }
.slide-body { padding: 28px 32px 24px; }
.slide-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 6px;
}
.slide-h { font-family: var(--serif); font-size: 28px; margin: 0 0 6px; }
.slide-memory { color: var(--ink-soft); font-style: italic; font-size: 14px; margin-bottom: 18px; }
.slide-dismiss {
  background: var(--rose-deep);
  color: var(--paper);
  border: 0;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 600;
}

/* ---------- PHOTO (image or placeholder) ---------- */
.photo-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.photo-empty {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 12px;
  color: color-mix(in oklab, var(--ink-soft) 70%, transparent);
  font-family: var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 12px;
}

/* layout helpers */
.row-between { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;}
.section-h { font-family: var(--serif); font-size: 22px; margin: 0; }
