/*
 * Sounds of Prayer — visual system.
 * Ported from prototype/style.css.
 */

:root {
  --paper: #f5f3ee;
  --paper-2: #efece4;
  --ink: #2b2b27;
  --ink-soft: rgba(43,43,39,0.6);
  --accent: #6f7d57;
  --accent-deep: #5d6a48;
  --accent-wash: rgba(111,125,87,0.10);
  --muted: #918f86;
  --hairline: rgba(43,43,39,0.10);
  --hairline-2: rgba(43,43,39,0.16);
  --row-bottom: rgba(43,43,39,0.09);

  --display: 'Newsreader', serif;
  --body: 'Hanken Grotesk', sans-serif;
  --serif: 'Newsreader', serif;
  --hand: 'Hanken Grotesk', sans-serif;
  --mono: 'Hanken Grotesk', sans-serif;
}

* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; -webkit-tap-highlight-color: transparent; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: #e7e4da;
  font-size: 16px;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

/* device column */
.app {
  max-width: 440px;
  min-height: 100dvh;
  margin: 0 auto;
  background: var(--paper);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--hairline);
}

button {
  font: inherit; color: inherit; background: none; border: none;
  padding: 0; cursor: pointer;
}
input, textarea { font: inherit; color: inherit; }

/* ─── feed ─── */
.feed { display: flex; flex-direction: column; height: 100dvh; }

.feed__topbar {
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 13px 22px; min-height: 36px;
  background: var(--paper);
  position: sticky; top: 0; z-index: 5;
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.feed__topbar--scrolled {
  border-bottom-color: var(--hairline);
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}
.feed__topbar-mark {
  font-family: var(--display); font-style: italic; font-weight: 500;
  font-size: 19px; color: var(--ink); flex-shrink: 0; white-space: nowrap;
}
.feed__topbar-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* language pill */
.pill {
  display: flex; border: 1.5px solid var(--hairline-2);
  border-radius: 999px; overflow: hidden;
  font-family: var(--body); font-size: 11.5px; font-weight: 600;
  flex-shrink: 0;
}
.pill__btn { padding: 5px 11px; color: var(--muted); transition: background 0.15s, color 0.15s; }
.pill__btn.on { background: var(--accent); color: #fff; }

/* search icon button */
.feed__search-btn {
  width: 36px; height: 36px; border-radius: 999px;
  border: 1.5px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background 0.15s;
}
.feed__search-btn:active { background: var(--ink); }
.feed__search-btn:active svg * { stroke: #fff; }

/* expanded search field */
.feed__search-field {
  flex: 1; display: flex; align-items: center; gap: 9px;
  padding: 6px 14px; border: 1.5px solid var(--ink); border-radius: 999px;
  background: var(--paper);
}
.feed__search-field input {
  flex: 1; min-width: 0; border: none; outline: none; background: transparent;
  font-family: var(--body); font-size: 14px;
}
.feed__search-field input::placeholder { color: var(--muted); }
.feed__search-clear { color: var(--muted); padding: 2px 4px; font-size: 18px; line-height: 1; }

/* hero */
.feed__hero { padding: 8px 22px 6px; }
.feed__kicker {
  font-family: var(--body); font-size: 9.5px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase; color: var(--muted);
  margin-bottom: 6px;
}
.feed__title {
  font-family: var(--display); font-style: italic; font-weight: 500;
  font-size: 33px; line-height: 1; color: var(--ink);
}
.feed__subtitle {
  font-family: var(--body); font-size: 13.5px; color: var(--muted);
  line-height: 1.45; margin-top: 9px;
}
.feed__moreinfo {
  display: inline-flex; align-items: center; gap: 4px;
  margin-left: 8px;
  font-family: var(--body); font-size: 13px; font-weight: 600;
  color: var(--accent-deep); white-space: nowrap; cursor: pointer;
  text-decoration: none;
}
.feed__moreinfo svg { margin-bottom: -1px; }

.feed__list {
  flex: 1; overflow-y: auto; overflow-x: hidden;
  padding: 0 22px 140px;
  -webkit-overflow-scrolling: touch;
}
.feed__date {
  font-family: var(--body);
  font-size: 10px; font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin: 8px 0 6px; padding: 6px 0;
  position: sticky; top: 0; background: var(--paper); z-index: 1;
  text-transform: uppercase;
}
.feed__date:first-child { margin-top: 2px; }
.feed__row {
  display: flex; gap: 12px; padding: 12px 0;
  border-bottom: 1px solid var(--row-bottom);
  align-items: center;
  text-align: left;
  width: 100%;
  transition: opacity 0.15s;
  text-decoration: none;
  color: inherit;
}
.feed__row:active { opacity: 0.5; }
.feed__row--playing {
  background: linear-gradient(90deg, rgba(111,125,87,0.10), transparent 80%);
  margin: 0 -22px; padding: 12px 22px;
  border-bottom-color: transparent;
}

.feed__play {
  width: 36px; height: 36px; border-radius: 999px;
  border: 1.5px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.12s, transform 0.12s;
}
.feed__play--playing { background: var(--accent); border-color: var(--accent); }
.feed__play:active { transform: scale(0.92); }

.feed__row-body { flex: 1; min-width: 0; overflow: hidden; }
.feed__row-meta {
  display: flex; justify-content: space-between; align-items: baseline; gap: 8px;
  font-family: var(--body); font-weight: 600; font-size: 10.5px;
  letter-spacing: 0.8px; text-transform: uppercase; color: var(--muted);
}
.feed__row-meta .dur { color: var(--ink); font-variant-numeric: tabular-nums; }
.feed__row-text {
  font-family: var(--body); font-size: 14px; color: var(--ink);
  margin-top: 3px; line-height: 1.3; display: block;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

.feed__footer {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 6px 8px; margin-top: 30px; padding: 0 8px;
}
.feed__footer a, .feed__footer button {
  font-family: var(--body); font-weight: 500; font-size: 11.5px;
  color: var(--muted); white-space: nowrap; text-decoration: none;
}
.feed__footer .sep { color: var(--hairline-2); }
/* delete button on own prayer rows */
.feed__row-del {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 999px;
  border: 1px solid var(--hairline-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; line-height: 1; color: var(--muted);
  background: none; cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.feed__row-del:hover { border-color: var(--ink); color: var(--ink); }

/* select field reusing rm-input */
.rm-select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23918f86' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center;
  padding-right: 36px;
}

.feed__empty {
  text-align: center; padding: 60px 22px;
  font-family: var(--hand); color: var(--muted); font-size: 15px;
  line-height: 1.5;
}

/* record CTA — fixed bottom right */
.record-cta {
  position: absolute; bottom: 28px; right: 22px;
  display: flex; align-items: center; gap: 12px;
  z-index: 10;
}
.record-cta__label {
  font-family: var(--display); font-style: italic; font-weight: 500;
  font-size: 20px; white-space: nowrap;
  color: var(--ink);
  line-height: 1;
  background: var(--paper);
  padding: 6px 13px;
  border-radius: 999px;
  border: 1px solid var(--hairline);
}
.record-cta__btn {
  width: 64px; height: 64px; border-radius: 999px;
  background: var(--accent);
  border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(111,125,87,0.28);
  transition: transform 0.1s, box-shadow 0.1s;
}
.record-cta__btn:active { transform: translateY(1px); box-shadow: 0 3px 10px rgba(111,125,87,0.22); }

/* ─── record overlay ─── */
.record {
  position: fixed; inset: 0;
  max-width: 440px; margin: 0 auto;
  background: var(--paper);
  display: flex; flex-direction: column;
  z-index: 20;
}
.record__close {
  position: absolute; top: 18px; left: 18px;
  width: 36px; height: 36px; border-radius: 999px;
  border: 1.5px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 16px;
  background: var(--paper);
  z-index: 2;
}

/* prime screen */
.prime {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 28px;
  padding: 40px;
}
.prime__heading {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 36px;
  color: var(--ink); text-align: center; line-height: 1.05;
}
.prime__mic {
  width: 160px; height: 160px; border-radius: 999px;
  background: var(--accent);
  border: 2.5px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(111,125,87,0.28);
  transition: transform 0.12s, box-shadow 0.12s;
  cursor: pointer;
}
.prime__mic:active { transform: translateY(1px); box-shadow: 0 5px 14px rgba(111,125,87,0.24); }
.prime__hint {
  font-family: var(--mono); font-size: 11px;
  color: var(--muted); text-align: center; max-width: 220px;
  line-height: 1.45; letter-spacing: 0.3px;
}
.prime__hint .strong { color: var(--ink); display: block; letter-spacing: 1.5px; margin-bottom: 4px; }

.prime__denied {
  margin-top: 8px;
  padding: 14px 16px;
  border: 1.5px dashed var(--accent);
  border-radius: 12px;
  background: var(--accent-wash);
  max-width: 280px;
  font-family: var(--hand); font-size: 14px; color: var(--ink);
  line-height: 1.4;
}
.prime__denied b {
  color: var(--accent); font-weight: normal; font-family: var(--mono);
  font-size: 10px; letter-spacing: 1.2px; text-transform: uppercase;
  display: block; margin-bottom: 4px;
}

/* recording screen */
.rec {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: space-between;
  padding: 60px 24px 50px;
}
.rec__timer-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.rec__timer {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 22px;
  color: var(--ink); letter-spacing: 1px;
  font-variant-numeric: tabular-nums;
}
.rec__dot {
  width: 10px; height: 10px; border-radius: 999px;
  background: var(--accent);
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.rec__dot--paused {
  background: none;
  width: 10px; height: 10px;
  position: relative;
  animation: none;
}
.rec__dot--paused::before, .rec__dot--paused::after {
  content: ''; position: absolute; top: 0; width: 3px; height: 10px;
  background: var(--muted);
}
.rec__dot--paused::before { left: 0; }
.rec__dot--paused::after { right: 0; }

.rec__max {
  font-family: var(--mono); font-size: 11px;
  color: var(--muted); letter-spacing: 0.4px;
  font-variant-numeric: tabular-nums;
}
.rec__max--warn {
  color: var(--accent);
  font-weight: 500;
}

.rec__waveform {
  width: 100%; height: 80px;
  display: flex; align-items: center; justify-content: flex-start; gap: 2px;
  overflow: hidden; padding: 0 4px;
}
.rec__bar {
  width: 3px; border-radius: 1.5px;
  background: var(--ink);
  flex-shrink: 0;
  transition: height 0.06s ease-out;
}
.rec__bar--paused { background: var(--muted); opacity: 0.5; }

.rec__controls { display: flex; align-items: center; gap: 20px; }
.rec__pause, .rec__resume {
  width: 64px; height: 64px; border-radius: 16px;
  background: var(--paper);
  border: 2px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.1s;
}
.rec__resume { background: var(--accent); border-color: var(--ink); }
.rec__pause:active, .rec__resume:active { transform: scale(0.94); }
.rec__stop {
  width: 88px; height: 88px; border-radius: 22px;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(111,125,87,0.28);
  transition: transform 0.1s, box-shadow 0.1s;
}
.rec__stop:active { transform: translateY(1px); box-shadow: 0 3px 10px rgba(111,125,87,0.22); }

/* review */
.review {
  flex: 1; display: flex; flex-direction: column;
  padding: 60px 22px 28px;
  gap: 16px;
}
.review__player {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--accent-wash);
}
.review__play {
  width: 36px; height: 36px; border-radius: 999px;
  background: var(--accent); border: 1.5px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.review__play--playing { background: var(--ink); border-color: var(--ink); }
.review__scrub {
  flex: 1; height: 6px; background: var(--hairline); border-radius: 999px;
  position: relative; overflow: hidden; cursor: pointer;
}
.review__scrub-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--accent);
  transition: width 0.1s linear;
}
.review__time {
  font-family: var(--mono); font-size: 12px; color: var(--ink);
  min-width: 36px; text-align: right;
  font-variant-numeric: tabular-nums;
}

.review__textarea {
  flex: 1; min-height: 140px;
  border: 1.5px dashed var(--ink); border-radius: 12px;
  padding: 14px;
  background: var(--paper);
  font-family: var(--hand); font-size: 16px; color: var(--ink);
  line-height: 1.4; resize: none;
  outline: none;
}
.review__textarea::placeholder { color: var(--muted); font-style: normal; }
.review__textarea:focus { border-style: solid; }

.review__actions { display: flex; gap: 10px; }
.review__re {
  padding: 14px 22px; border-radius: 999px;
  border: 1.5px solid var(--ink);
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 20px;
  color: var(--ink);
  background: var(--paper);
}
.review__post {
  flex: 1; padding: 14px; border-radius: 999px;
  background: var(--accent); border: 2px solid var(--ink);
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 22px;
  color: #fff;
  box-shadow: 0 6px 16px rgba(111, 125, 87, 0.28);
  transition: transform 0.1s, box-shadow 0.1s;
}
.review__post:active { transform: translate(1px, 2px); box-shadow: 0 1px 0 var(--ink); }
.review__post:disabled { opacity: 0.5; }

/* received */
.received {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 40px; text-align: center; gap: 22px;
}
.received__check {
  width: 88px; height: 88px;
  display: flex; align-items: center; justify-content: center;
}
.received__heading {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 38px;
  color: var(--ink); line-height: 1.05;
}

/* ─── listen (single recording) ─── */
.listen {
  position: fixed; inset: 0;
  max-width: 440px; margin: 0 auto;
  background: var(--paper);
  display: flex; flex-direction: column;
  z-index: 20;
}
.listen__top {
  padding: 18px 22px 0;
  display: flex; justify-content: space-between; align-items: center;
}
.listen__back {
  font-family: var(--mono); font-size: 14px; color: var(--ink);
  padding: 6px 0; text-decoration: none;
  display: flex; align-items: center; gap: 6px;
}
.listen__counter {
  font-family: var(--mono); font-size: 11px; color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.listen__when {
  padding: 26px 24px 0;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 1.2px; color: var(--muted);
  text-transform: uppercase;
}
.listen__scrub-wrap {
  padding: 28px 18px 8px;
  cursor: pointer;
}
.listen__waveform {
  display: flex; align-items: center; height: 90px; gap: 2px;
}
.listen__wbar {
  flex: 1; background: var(--ink); border-radius: 1.5px;
  opacity: 0.35; min-width: 2px; max-width: 4px;
}
.listen__wbar--played { background: var(--accent); opacity: 1; }
.listen__times {
  display: flex; justify-content: space-between; margin-top: 6px;
  font-family: var(--mono); font-size: 12px; color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.listen__controls {
  display: flex; justify-content: center; align-items: center; gap: 36px;
  padding: 12px 0 22px;
}
.listen__skip {
  background: none; border: none; color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  padding: 8px;
}
.listen__play-big {
  width: 80px; height: 80px; border-radius: 999px;
  background: var(--accent); border: 2.5px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(111,125,87,0.28);
  transition: transform 0.1s, box-shadow 0.1s;
}
.listen__play-big:active { transform: translateY(1px); box-shadow: 0 3px 10px rgba(111,125,87,0.22); }
.listen__desc {
  flex: 1; padding: 16px 24px;
  border-top: 1px dashed var(--hairline);
  font-family: var(--hand); font-size: 18px; color: var(--ink);
  line-height: 1.45;
  overflow-y: auto;
}
.listen__bottom {
  padding: 12px 22px 22px;
  display: flex; justify-content: flex-end;
  border-top: 1px solid var(--hairline);
}
.listen__next {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 22px; color: var(--ink);
  padding: 8px 10px; text-decoration: none;
}
.listen__next--disabled { color: var(--muted); pointer-events: none; }

/* ─── static pages ─── */
.page {
  position: fixed; inset: 0; max-width: 440px; margin: 0 auto;
  background: var(--paper); display: flex; flex-direction: column;
  z-index: 25;
}
.page__top {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 20px 14px; border-bottom: 1px solid var(--hairline);
  flex-shrink: 0;
}
.page__back {
  width: 36px; height: 36px; border-radius: 999px; border: 1.5px solid var(--ink);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background 0.15s; text-decoration: none;
}
.page__back:active { background: var(--ink); }
.page__back:active svg * { stroke: #fff; }
.page__title {
  flex: 1; min-width: 0;
  font-family: var(--display); font-style: italic; font-weight: 500;
  font-size: 23px; color: var(--ink);
}
.page__body { flex: 1; overflow-y: auto; padding: 18px 24px 44px; -webkit-overflow-scrolling: touch; }
.page__draft {
  margin: 14px 20px 0; padding: 9px 13px; border-radius: 10px;
  background: rgba(169,116,42,0.12); color: #8a6a23;
  font-family: var(--body); font-size: 11.5px; line-height: 1.4;
}
.page__updated {
  font-family: var(--body); font-size: 11px; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--muted); font-weight: 600;
}
.page__h {
  font-family: var(--display); font-style: italic; font-weight: 500;
  font-size: 19px; color: var(--ink); margin: 22px 0 6px;
}
.page__p { font-family: var(--body); font-size: 13.5px; line-height: 1.55; color: #45443f; margin: 0 0 4px; }
.page__intro { font-family: var(--body); font-size: 14.5px; line-height: 1.55; color: #45443f; margin: 0 0 14px; }

/* more info steps + guidelines */
.mi-step { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--hairline); }
.mi-num {
  width: 32px; height: 32px; border-radius: 999px; background: var(--accent-wash);
  color: var(--accent-deep); font-family: var(--display); font-style: italic;
  font-weight: 600; font-size: 17px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.mi-step-title { font-family: var(--body); font-size: 15px; font-weight: 600; }
.mi-step-body { font-family: var(--body); font-size: 13px; line-height: 1.5; color: #5a584f; margin-top: 3px; }
.mi-guidelines { list-style: none; padding: 0; margin: 14px 0 0; }
.mi-guidelines li {
  position: relative; padding-left: 16px;
  font-family: var(--body); font-size: 13.5px; line-height: 1.5; color: #45443f;
  margin-bottom: 8px;
}
.mi-guidelines li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px; border-radius: 999px; background: var(--accent);
}

/* removal form */
.rm-field { margin-bottom: 16px; }
.rm-label {
  display: block; margin-bottom: 7px; font-family: var(--body);
  font-size: 10.5px; font-weight: 600; letter-spacing: 1.6px;
  text-transform: uppercase; color: var(--muted);
}
.rm-input {
  width: 100%; box-sizing: border-box; border: 1.5px solid var(--hairline-2);
  border-radius: 12px; background: var(--paper); padding: 12px 13px;
  font-family: var(--body); font-size: 13.5px; color: var(--ink); outline: none;
}
.rm-input:focus { border-color: var(--accent); }
textarea.rm-input { min-height: 96px; resize: none; line-height: 1.5; }
.rm-input::placeholder { color: var(--muted); }
.rm-tip {
  font-family: var(--body); font-size: 12.5px; line-height: 1.5; color: #5a584f;
  background: var(--accent-wash); padding: 11px 13px; border-radius: 10px;
  margin-bottom: 16px;
}
.rm-note { font-family: var(--body); font-size: 12.5px; line-height: 1.5; color: #5a584f; margin-bottom: 18px; }
.rm-btn {
  width: 100%; padding: 15px; border-radius: 999px; background: var(--accent);
  border: none; color: #fff; font-family: var(--display); font-style: italic;
  font-weight: 500; font-size: 19px; box-shadow: 0 6px 16px rgba(111,125,87,0.28);
  transition: transform 0.1s;
}
.rm-btn:active { transform: translateY(1px); }
.rm-alt {
  text-align: center; font-family: var(--body); font-size: 12.5px;
  color: var(--muted); margin-top: 16px;
}
.rm-sent {
  font-family: var(--body); font-size: 14.5px; line-height: 1.55;
  color: var(--accent-deep); background: var(--accent-wash);
  padding: 16px 18px; border-radius: 12px;
}

/* toast */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: #fff;
  padding: 10px 18px; border-radius: 999px;
  font-family: var(--hand); font-size: 14px;
  z-index: 100;
  animation: toast-in 0.2s ease-out;
  pointer-events: none;
}
@keyframes toast-in { from { opacity: 0; transform: translate(-50%, 12px); } }

/* ─── gate ─── */
.gate {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 100dvh; padding: 48px 32px; gap: 32px; text-align: center;
}
.gate__brand {
  font-family: var(--display); font-style: italic; font-weight: 500;
  font-size: 26px; color: var(--ink); letter-spacing: -0.02em;
}
.gate__icon {
  width: 72px; height: 72px; color: var(--accent); opacity: 0.7;
}
.gate__icon svg { width: 100%; height: 100%; }
.gate__message {
  font-size: 16px; color: var(--ink-soft); line-height: 1.6;
  max-width: 260px; margin: 0;
}
.gate__schedule {
  font-family: var(--body); font-weight: 500; font-size: 13px;
  color: var(--accent-deep); text-decoration: none;
}
