:root {
  --brown:       #8a6a3f;
  --brown-d:     #6b4f2a;
  --brown-l:     #b08a5d;
  --tan:         #d4b384;
  --tan-soft:    #e7d4b8;
  --cream:       #f3ead9;
  --cream-soft:  #faf5ea;
  --paper:       #ffffff;
  --bg:          #fcfaf6;
  --line:        #e3dccc;
  --line-soft:   #efeadd;
  --ink:         #2e2820;
  --ink-2:       #4a423a;
  --muted:       #948c80;
  --danger:      #b4452e;
  --radius-sm:   8px;
  --radius:      12px;
  --shadow-sm:   0 1px 3px rgba(110,80,40,.06);
  --shadow-md:   0 6px 24px rgba(110,80,40,.10);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
}
::selection { background: var(--tan-soft); }
a { color: var(--brown); text-underline-offset: 2px; }

/* ====== APP SHELL ====== */
.app {
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  background: var(--paper);
  box-shadow: 0 0 40px rgba(110,80,40,.06);
  display: flex;
  flex-direction: column;
  position: relative;
}

/* ====== TOP APP BAR ====== */
.appbar {
  position: sticky;
  top: 0;
  z-index: 3;
  background: var(--paper);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-soft);
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
}
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: linear-gradient(160deg, var(--brown-l), var(--brown));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: .02em;
  box-shadow: inset 0 -2px 4px rgba(0,0,0,.12);
  position: relative;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 6px;
}
.brand-mark span { position: relative; z-index: 1; font-family: serif; font-style: italic; }
.brand-text {
  line-height: 1.1;
}
.brand-text .jp {
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .04em;
}
.brand-text .en {
  font-size: .54rem;
  color: var(--brown);
  letter-spacing: .18em;
  margin-top: 2px;
}
.appbar-actions {
  display: flex;
  gap: 8px;
}
.icon-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cream);
  border: none;
  color: var(--brown-d);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s;
}
.icon-btn:hover { background: var(--tan-soft); }
.icon-btn svg { width: 18px; height: 18px; }
.menu-badge {
  position: absolute;
  top: -2px; right: -2px;
  background: var(--brown);
  color: #fff;
  font-size: .55rem;
  font-weight: 700;
  width: 14px; height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ====== PAGE TITLE ====== */
.page-title {
  text-align: center;
  padding: 24px 16px 18px;
  position: relative;
}
.page-title h1 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--brown-d);
  letter-spacing: .08em;
}
.page-title::after {
  content: "";
  display: block;
  margin: 14px auto 0;
  width: calc(100% - 32px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--tan), transparent);
}

/* ====== STEP INDICATOR ====== */
.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 18px 24px 4px;
}
.steps .step {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.steps .dot {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid var(--line);
  background: var(--paper);
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
  flex-shrink: 0;
}
.steps .step.active .dot {
  border-color: var(--brown);
  color: var(--brown);
  box-shadow: 0 0 0 4px rgba(138,106,63,.10);
}
.steps .step.done .dot {
  background: var(--brown);
  border-color: var(--brown);
  color: #fff;
}
.steps .step.done .dot svg { width: 12px; height: 12px; }
.steps .bar {
  width: 26px;
  height: 2px;
  background: var(--line);
  margin: 0 2px;
}
.steps .bar.done { background: var(--brown); }

/* ====== CONTENT ====== */
.content {
  flex: 1;
  padding: 8px 20px 100px;
}
.content.has-tabbar { padding-bottom: 110px; }
.lead {
  text-align: center;
  color: var(--ink-2);
  font-size: .85rem;
  padding: 6px 8px 22px;
  line-height: 1.85;
}
.section-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brown-d);
  text-align: center;
  margin: 12px 0 18px;
  letter-spacing: .04em;
}

/* ====== FORM ====== */
.field { margin-bottom: 18px; }
.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.field label.cap {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--ink-2);
  margin-bottom: 7px;
}
.pill {
  font-size: .58rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
  letter-spacing: .04em;
}
.pill.req { background: var(--brown); color: #fff; }
.pill.opt { background: var(--cream); color: var(--brown-d); }

.control {
  width: 100%;
  font-family: inherit;
  font-size: .92rem;
  background: var(--paper);
  color: var(--ink);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.control::placeholder { color: #c2bbac; }
.control:focus {
  outline: none;
  border-color: var(--brown-l);
  box-shadow: 0 0 0 3px rgba(138,106,63,.12);
}
.control.bad { border-color: var(--danger); background: #fdf6f4; }
select.control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%238a6a3f' d='M5 6 0 0h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.hint {
  font-size: .72rem;
  color: var(--muted);
  margin-top: 5px;
}
.err {
  display: none;
  font-size: .73rem;
  color: var(--danger);
  margin-top: 5px;
  align-items: center;
  gap: 4px;
}
.err.show { display: flex; }
.err::before { content: "！"; font-weight: 700; font-size: .8rem; }

/* ====== DATE / OPTION BUTTONS (pill style like video) ====== */
.opt-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.opt-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  border: 1.5px solid var(--brown-l);
  border-radius: 999px;
  background: var(--paper);
  color: var(--brown-d);
  font-family: inherit;
  font-size: .92rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .18s;
  position: relative;
}
.opt-btn input { position: absolute; opacity: 0; pointer-events: none; }
.opt-btn .day {
  font-weight: 600;
}
.opt-btn .sub {
  font-size: .72rem;
  color: var(--muted);
  font-weight: 400;
}
.opt-btn:hover { background: var(--cream-soft); }
.opt-btn.selected,
.opt-btn:has(input:checked) {
  background: var(--brown);
  border-color: var(--brown);
  color: #fff;
}
.opt-btn:has(input:checked) .sub { color: rgba(255,255,255,.78); }

/* ====== CONSENT (checkbox row) ====== */
.consent-block {
  margin-top: 8px;
}
.consent-block .ttl {
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 6px;
}
.consent-block .desc {
  font-size: .78rem;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 10px;
}
.check-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 0;
  cursor: pointer;
  font-size: .85rem;
  color: var(--ink-2);
}
.check-row input {
  width: 17px; height: 17px;
  accent-color: var(--brown);
  flex-shrink: 0;
}
.check-row a { color: var(--brown); }
.consent-block.bad .check-row { color: var(--danger); }

/* ====== BUTTONS ====== */
.btn {
  font-family: inherit;
  font-size: .94rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  padding: 14px 20px;
  cursor: pointer;
  transition: all .15s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  letter-spacing: .04em;
}
.btn:active { transform: scale(.98); }
.btn.brown {
  background: var(--brown);
  color: #fff;
}
.btn.brown:hover { background: var(--brown-d); }
.btn.brown:disabled {
  background: var(--line);
  color: var(--muted);
  cursor: not-allowed;
}
.btn.cream {
  background: var(--cream);
  color: var(--brown-d);
}
.btn.cream:hover { background: var(--tan-soft); }
.btn.outline {
  background: var(--paper);
  color: var(--brown);
  border: 1.5px solid var(--brown);
}
.btn.outline:hover { background: var(--cream-soft); }
.btn.tan {
  background: var(--tan);
  color: #fff;
}
.btn.tan:hover { background: var(--brown-l); }

.btn-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}

/* ====== INLINE STEP-NAV TEXT BUTTON (like 次へ → in video) ====== */
.text-next {
  display: flex;
  justify-content: center;
  margin: 26px 0 12px;
}
.text-next button {
  background: none;
  border: none;
  color: var(--brown-d);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 24px;
  letter-spacing: .08em;
}
.text-next button:hover { color: var(--brown); }

/* ====== CONFIRM ROWS ====== */
.info-list {
  margin-top: 4px;
}
.info-row {
  padding: 13px 0;
  border-bottom: 1px solid var(--line-soft);
}
.info-row .k {
  font-size: .76rem;
  color: var(--muted);
  margin-bottom: 3px;
}
.info-row .v {
  font-size: .96rem;
  font-weight: 600;
  color: var(--ink);
  word-break: break-all;
}
.info-row .v.muted { color: var(--muted); font-weight: 400; }

/* ====== COMPLETION SCREEN ====== */
.complete-icon {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--tan-soft);
  margin: 18px auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 -3px 10px rgba(0,0,0,.04);
}
.complete-icon svg {
  width: 42px;
  height: 42px;
  color: #fff;
}
.complete-title {
  text-align: center;
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--brown-d);
  margin-bottom: 14px;
  letter-spacing: .04em;
}
.complete-desc {
  text-align: center;
  font-size: .85rem;
  color: var(--ink-2);
  line-height: 1.85;
  padding: 0 8px;
  margin-bottom: 26px;
}

/* ====== EMAIL SENT ====== */
.mailicon {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--cream);
  margin: 16px auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mailicon svg { width: 38px; height: 38px; color: var(--brown); }

.email-shown {
  background: var(--cream-soft);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  text-align: center;
  font-weight: 600;
  color: var(--brown-d);
  font-size: .9rem;
  margin: 0 6px 18px;
  word-break: break-all;
}

/* ====== NOTICE BOXES ====== */
.notice {
  background: var(--cream-soft);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  font-size: .78rem;
  color: var(--ink-2);
  line-height: 1.8;
  margin: 6px 0;
}
.notice strong { color: var(--brown-d); }
.notice.warn {
  background: #fcf5ec;
  border-left: 3px solid var(--tan);
}

/* ====== MESSAGE BOX (flash messages) ====== */
.message-box {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: .82rem;
  line-height: 1.75;
  margin: 0 0 18px;
  border: 1px solid;
}
.message-box.green {
  background: #f1f7ee;
  border-color: #bcdaab;
  color: #3c5c30;
}
.message-box.green::before {
  content: "✓";
  flex-shrink: 0;
  font-weight: 700;
  color: #5b8a4a;
}
.message-box.red {
  background: #fdf1ef;
  border-color: #f0c2b7;
  color: var(--danger);
}
.message-box.red::before {
  content: "！";
  flex-shrink: 0;
  font-weight: 700;
}
/* ====== POLICY / STATIC TEXT CONTENT ====== */
.policy-section { margin-bottom: 26px; }
.policy-section h2 {
  font-size: .92rem;
  font-weight: 600;
  color: var(--brown-d);
  margin-bottom: 9px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--line-soft);
}
.policy-section p {
  font-size: .82rem;
  color: var(--ink-2);
  line-height: 1.9;
}
.policy-section p + p { margin-top: 8px; }
.policy-section ul {
  margin: 10px 0 0 1.15em;
  font-size: .82rem;
  color: var(--ink-2);
  line-height: 1.9;
}
.policy-section ul li { margin-bottom: 4px; }
.policy-updated {
  text-align: right;
  font-size: .72rem;
  color: var(--muted);
  margin-top: 32px;
}
.demo-hint {
  text-align: center;
  font-size: .68rem;
  color: var(--muted);
  margin-top: 14px;
}

/* ====== MYPAGE TILES ====== */
.greet-card {
  background: linear-gradient(135deg, var(--brown), var(--brown-d));
  color: #fff;
  border-radius: var(--radius);
  padding: 18px 18px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
}
.greet-card .av {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 700;
  flex-shrink: 0;
}
.greet-card .gn { font-size: .94rem; font-weight: 600; }
.greet-card .gd { font-size: .72rem; color: rgba(255,255,255,.78); margin-top: 2px; }

.tile-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tile {
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: all .18s;
  font-family: inherit;
  text-align: left;
  width: 100%;
}
.tile:hover {
  border-color: var(--brown-l);
  background: var(--cream-soft);
  transform: translateY(-1px);
}
.tile-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--brown);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tile-icon svg { width: 21px; height: 21px; }
.tile-tx { flex: 1; }
.tile-tx .t {
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.tile-tx .d {
  font-size: .72rem;
  color: var(--muted);
}
.tile-arrow {
  color: var(--brown-l);
  font-size: 1.4rem;
  font-weight: 300;
}

/* ====== TICKET / QR ====== */
.ticket {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-md);
  margin-top: 4px;
}
.ticket-top {
  background: linear-gradient(135deg, var(--brown), var(--brown-d));
  color: #fff;
  text-align: center;
  padding: 16px 14px;
}
.ticket-top .tt {
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .06em;
}
.ticket-top .ts {
  font-size: .66rem;
  color: var(--tan-soft);
  margin-top: 3px;
  letter-spacing: .12em;
}
.ticket-perf {
  position: relative;
  height: 0;
  border-top: 2px dashed var(--line);
}
.ticket-perf::before,
.ticket-perf::after {
  content: "";
  position: absolute;
  top: -10px;
  width: 18px; height: 18px;
  background: var(--bg);
  border-radius: 50%;
}
.ticket-perf::before { left: -10px; }
.ticket-perf::after  { right: -10px; }
.ticket-body {
  padding: 24px 18px 22px;
  text-align: center;
}
.qr-frame {
  width: 200px; height: 200px;
  margin: 0 auto 16px;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.qr-frame img, .qr-frame canvas {
  width: 100%; height: 100%;
  display: block;
  image-rendering: pixelated;
}
.qr-id {
  display: inline-block;
  font-size: .76rem;
  font-weight: 700;
  color: var(--brown-d);
  background: var(--cream);
  padding: 4px 14px;
  border-radius: 999px;
  letter-spacing: .14em;
  margin-bottom: 14px;
}
.qr-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}
.qr-date {
  font-size: .82rem;
  color: var(--muted);
  margin-top: 4px;
}

/* ====== BACK ROW ====== */
.back-link {
  background: none;
  border: none;
  color: var(--muted);
  font-family: inherit;
  font-size: .78rem;
  cursor: pointer;
  padding: 4px 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 6px 0 14px;
}
.back-link:hover { color: var(--brown); }

/* ====== BOTTOM TAB NAV ====== */
.tabbar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  background: var(--paper);
  border-top: 1px solid var(--line-soft);
  display: none;
  z-index: 2;
  box-shadow: 0 -4px 16px rgba(110,80,40,.05);
}
.tabbar.show { display: flex; }
.tab {
  flex: 1;
  background: none;
  border: none;
  padding: 11px 0 13px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  font-family: inherit;
  font-size: .68rem;
  position: relative;
  transition: color .15s;
}
.tab svg { width: 22px; height: 22px; }
.tab.active { color: var(--brown); }
.tab.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30%; right: 30%;
  height: 2px;
  background: var(--brown);
  border-radius: 0 0 2px 2px;
}

/* ====== TOAST ====== */
.toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translate(-50%, 30px);
  background: var(--ink);
  color: #fff;
  font-size: .82rem;
  padding: 11px 22px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .35s cubic-bezier(.34,1.3,.64,1);
  z-index: 9;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }
.toast .ck { color: var(--tan-soft); font-weight: 700; }

/* ====== MENU DRAWER ====== */
.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(40,30,20,.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
  z-index: 5;
}
.menu-backdrop.show { opacity: 1; pointer-events: auto; }
.menu-sheet {
  position: fixed;
  top: 60px;
  right: 16px;
  width: min(280px, calc(100vw - 32px));
  background: var(--paper);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(80,60,30,.25);
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px) scale(.98);
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  z-index: 6;
}
.menu-sheet.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px 6px;
}
.menu-head .ml {
  font-size: .78rem;
  font-weight: 700;
  color: var(--ink-2);
  letter-spacing: .14em;
}
.menu-head .close {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 6px;
}
.menu-list {
  padding: 6px 0 12px;
}
.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
  cursor: pointer;
  transition: background .12s;
  color: var(--ink);
  font-size: .88rem;
  font-weight: 500;
}
.menu-item:hover { background: var(--cream-soft); }
.menu-item .mt .label { display: block; }
.menu-item .mt .sublabel {
  display: block;
  font-size: .64rem;
  color: var(--muted);
  margin-top: 2px;
  font-weight: 400;
}
.menu-item .arrow { color: var(--brown-l); }
.menu-foot {
  background: linear-gradient(135deg, var(--brown), var(--brown-d));
  color: #fff;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.menu-foot svg { width: 18px; height: 18px; }
.menu-foot .label { font-size: .86rem; font-weight: 600; }
.menu-foot .sublabel { font-size: .6rem; color: var(--tan-soft); display: block; margin-top: 1px; }

/* ====== SCREEN MANAGEMENT ====== */
.screen { display: none; }
.screen.active {
  display: block;
  animation: fade .35s ease both;
}
@keyframes fade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ====== EVENT INTRO CARD (top of email screen) ====== */
.event-card {
  background: linear-gradient(135deg, var(--brown), var(--brown-d));
  color: #fff;
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-md);
}
.event-card .et {
  font-size: .58rem;
  letter-spacing: .26em;
  color: var(--tan-soft);
  margin-bottom: 8px;
}
.event-card h2 {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: .03em;
}
.event-card h2 .accent { color: var(--tan-soft); }
.event-card .meta {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.2);
  display: grid;
  gap: 6px;
  font-size: .76rem;
}
.event-card .meta-row {
  display: flex;
  gap: 8px;
}
.event-card .meta-row .k {
  color: var(--tan-soft);
  width: 38px;
  flex-shrink: 0;
}
.event-card .free {
  display: inline-block;
  background: var(--tan);
  color: var(--brown-d);
  font-size: .62rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  letter-spacing: .06em;
  margin-top: 10px;
}

/* ====== RESPONSIVE ====== */
@media (min-width: 600px) {
  body { padding: 0; }
  .app {
    margin: 0 auto;
    min-height: 100vh;
  }
}
@media (max-width: 380px) {
  .steps .bar { width: 18px; }
  .steps .dot { width: 24px; height: 24px; font-size: .68rem; }
  .content { padding: 8px 16px 100px; }
}
@media (prefers-reduced-motion: reduce) {
  .screen.active { animation: none; }
}