/* 洄流 Reflow — 公開站敘事
   Surface → Enter → Descend → Return。洄流圓章溢浪是唯一主視覺，動效只負責交代呼吸與深度。 */

.public-page {
  --shell: #F4F0E7;
  --shell-soft: #E7E0CD;
  --ink-water: #17394C;
  --ink-deep: #0A1C27;
  --water: #1E4D66;
  --water-mid: #1A465F;
  --current: #7FA9C0;
  --current-readable: #9BBCCE;
  --deep-muted: rgba(244, 240, 231, .68);
  --focus-ring: #4A768E;
  --foam: #F4F0E7;
  --surface-ink: #173646;
  --surface-ink-strong: #102A36;
  --surface-ink-raised: #1A3B4B;
  --surface-ink-raised-strong: #12303D;
  --surface-ink-line: rgba(143, 178, 194, .34);
  --surface-label: #B8D0DA;
  --coral-cta: #A9543F;
  --coral-cta-press: #7C3E31;
  --coral-highlight: #E6A38C;
  --white-8: rgba(255, 255, 255, .08);
  --white-14: rgba(255, 255, 255, .14);
  --white-48: rgba(255, 255, 255, .48);
  --white-76: rgba(255, 255, 255, .76);
  --ease-story: cubic-bezier(.77, 0, .175, 1);

  background: var(--shell);
  color: var(--ink-water);
  overflow-x: clip;
}
html:has(.public-page) { overflow-x: clip; scroll-behavior: smooth; }
.public-page main { max-width: none; padding: 0; }

/* ---------- Navigation ---------- */

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: calc(14px + env(safe-area-inset-top)) clamp(18px, 4vw, 52px) 14px;
  color: var(--ink-water);
  border-bottom: 1px solid transparent;
  transition: background-color 220ms var(--ease-out), color 180ms var(--ease-out), border-color 180ms var(--ease-out);
}
.site-nav.scrolled {
  color: var(--foam);
  background: rgba(10, 28, 39, .88);
  border-bottom-color: var(--white-14);
  backdrop-filter: blur(16px);
}
.site-nav.menu-open {
  color: var(--foam);
  background: rgba(10, 28, 39, .98);
  border-bottom-color: var(--white-14);
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-right: auto;
  color: inherit;
  text-decoration: none;
}
.nav-wordmark {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--logo-zh);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: .06em;
}
.nav-wordmark small {
  font-family: var(--script);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .16em;
  opacity: .62;
}
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a {
  color: inherit;
  font-size: 13px;
  text-decoration: none;
  opacity: .68;
  transition: opacity 140ms var(--ease-out);
}
.nav-links a:hover { opacity: 1; }
.nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--foam);
  background: var(--ink-water);
  border-radius: 999px;
  padding: 9px 17px;
  line-height: 1.2;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 120ms var(--ease-out), background-color 120ms var(--ease-out);
}
.nav-cta:hover { background: var(--ink-deep); }
.site-nav.scrolled .nav-cta,
.site-nav.menu-open .nav-cta {
  color: var(--ink-water);
  background: var(--foam);
}
.site-nav.scrolled .nav-cta:hover,
.site-nav.menu-open .nav-cta:hover { background: var(--shell-soft); }
.nav-cta:active { transform: scale(.97); }
.nav-menu-btn,
.mobile-nav-panel { display: none; }
.public-nav-open { overflow: hidden; }

/* 健康聲明與參加資料是受信任任務，不沿用行銷站的探索導覽。 */
.trusted-task-nav {
  position: sticky;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 72px;
  padding: calc(12px + env(safe-area-inset-top)) clamp(18px, 4vw, 52px) 12px;
  color: var(--ink-water);
  background: color-mix(in srgb, var(--shell) 94%, white);
  border-bottom: 1px solid rgba(23, 57, 76, .16);
}
.trusted-task-name {
  border-left: 1px solid rgba(23, 57, 76, .2);
  padding-left: 18px;
  color: rgba(23, 57, 76, .72);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}
.trusted-task-nav .nav-brand { margin-right: 0; }
.trusted-task-help {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(23, 57, 76, .28);
  border-radius: 999px;
  padding: 8px 15px;
  color: var(--ink-water);
  font-size: 13px;
  font-weight: 700;
  margin-left: auto;
  text-decoration: none;
  transition: background-color 120ms var(--ease-out), border-color 120ms var(--ease-out), transform 120ms var(--ease-out);
}
.trusted-task-help:hover { border-color: var(--water); background: rgba(30, 77, 102, .07); }
.trusted-task-help:active { transform: scale(.97); }
.trusted-task-page .page-hero {
  min-height: max(38svh, 330px);
  padding-top: clamp(54px, 8vw, 88px);
}
.trusted-task-page .page-deep { padding-top: clamp(48px, 7vw, 76px); }
.trusted-task-page .page-section { width: min(760px, 100%); margin-inline: auto; }
.trusted-task-assurance {
  max-width: 680px;
  margin-top: 22px;
  border-top: 1px solid rgba(23, 57, 76, .2);
  padding-top: 15px;
  color: rgba(23, 57, 76, .76);
  font-size: 13px;
  line-height: 1.8;
}
.trusted-task-page .btn { min-height: 44px; }
.trusted-task-footer {
  padding: 26px clamp(18px, 4vw, 52px) calc(26px + env(safe-area-inset-bottom));
  color: rgba(23, 57, 76, .68);
  background: var(--shell);
  border-top: 1px solid rgba(23, 57, 76, .16);
  font-size: 12px;
  text-align: center;
}

/* ---------- Surface / hero ---------- */

.hero {
  position: relative;
  min-height: max(100svh, 680px);
  display: grid;
  align-items: center;
  padding: calc(108px + env(safe-area-inset-top)) clamp(24px, 7vw, 110px) 112px;
  background: linear-gradient(137deg, #F9F6EF 0%, var(--shell) 52%, var(--shell-soft) 100%);
  overflow: clip;
}
.hero-grid {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
  align-items: center;
  gap: clamp(42px, 7vw, 112px);
}
.hero-copy { max-width: 690px; }
.chapter-index,
.offer-no,
.shore-label {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}
/* A2 大字構圖：洄流大字（雙字微傾）＋ Kaushan 英文（混植 Dancing d） */
.hero-copy h1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(10px, 1.4vw, 18px);
  font-family: var(--logo-zh);
  font-weight: 400;
}
.hero-copy h1 .zh {
  display: flex;
  align-items: baseline;
  line-height: 1;
  font-size: clamp(64px, 7.5vw, 110px);
  letter-spacing: .06em;
}
.hero-copy h1 .zh .c1 { display: inline-block; transform: rotate(-2deg) translateY(-4px); }
.hero-copy h1 .zh .c2 { display: inline-block; transform: rotate(1.5deg) translateY(3px); font-size: 1.05em; }
.hero-copy h1 .en {
  font-family: var(--script);
  font-size: clamp(14px, 1.6vw, 17px);
  letter-spacing: .2em;
  margin-left: .2em;
  white-space: nowrap;
  transform: rotate(-2deg);
  transform-origin: left center;
}
.hero-thesis {
  margin-top: 25px;
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 600;
  letter-spacing: .14em;
}
.hero-note {
  max-width: 540px;
  margin-top: 12px;
  color: color-mix(in srgb, var(--ink-water) 68%, transparent);
  font-size: 15px;
  line-height: 1.9;
}

/* 課程、潛點與教練頁共用的編輯式 Hero 骨架；其他 page-hero 維持原版型。 */
.editorial-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: end;
}
.editorial-hero__copy { min-width: 0; }
.editorial-hero .hero-kicker {
  margin-bottom: 18px;
  color: var(--dim);
  font-family: var(--mono);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.editorial-hero .hero-note {
  color: var(--dim);
  text-wrap: pretty;
}
.editorial-hero__visual {
  min-width: 0;
  width: 100%;
}
.brand-keep { white-space: nowrap; }
.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}
.btn-coral,
.btn-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 120ms var(--ease-out), background-color 120ms var(--ease-out), border-color 120ms var(--ease-out);
}
.btn-coral { color: var(--coral-ink); background: var(--coral-cta); }
.btn-coral:hover { background: var(--coral-cta-press); }
.page-deep .btn-coral,
.session-card .btn-coral,
.crew-cta .btn-coral {
  color: var(--coral-ink);
  background: var(--coral-cta);
}
.page-deep .btn-coral:hover,
.session-card .btn-coral:hover,
.crew-cta .btn-coral:hover { background: var(--coral-cta-press); }
.btn-coral:active,
.btn-glass:active { transform: scale(.97); }
.btn-coral:disabled { opacity: .45; cursor: not-allowed; }
.btn-glass { color: inherit; background: transparent; border: 1px solid currentColor; }
.btn-glass:hover { background: var(--brand-soft); }
.btn-glass:focus-visible { outline: 2px solid var(--focus-ring); outline-offset: 2px; }
.text-link {
  display: inline-flex;
  align-items: center;
  color: inherit;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, currentColor 28%, transparent);
  padding: 7px 0 5px;
  transition: border-color 140ms var(--ease-out);
}
.text-link:hover { border-bottom-color: currentColor; }

.seal-stage {
  position: relative;
  justify-self: center;
  width: min(40vw, 440px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.seal-figure {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.seal-stage::before {
  content: '';
  position: absolute;
  inset: 9%;
  border-radius: 50%;
  background: rgba(255, 255, 255, .34);
  box-shadow: 0 28px 80px rgba(23, 57, 76, .11);
}
.seal-drawing {
  position: relative;
  z-index: 3;
  grid-area: 1 / 1;
  width: 72%;
  height: 72%;
  color: var(--water);
  overflow: visible;
}
/* dasharray 1.05 > pathLength 1：終點蓋過起點，收筆時圓才會接起來 */
.seal-ring {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-dasharray: 1.05;
  stroke-dashoffset: 0;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}
.seal-wave { fill: currentColor; }
.seal-word {
  fill: currentColor;
  font-family: var(--script, "Kaushan Script", cursive);
  font-size: 46px;
}
.seal-caps {
  fill: currentColor;
  font-family: var(--caps, "Montserrat", sans-serif);
  font-weight: 500;
  font-size: 9.5px;
  letter-spacing: 4px;
}
.seal-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(23, 57, 76, .19);
  border-radius: 50%;
}
.seal-orbit-outer { inset: 0; }
.seal-orbit-inner { inset: 16%; }
.seal-caption {
  position: absolute;
  z-index: 3;
  inset: auto 3% 4%;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .12em;
  color: color-mix(in srgb, var(--ink-water) 52%, transparent);
}
.hero-depth {
  position: absolute;
  z-index: 2;
  left: clamp(24px, 7vw, 110px);
  right: clamp(24px, 7vw, 110px);
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: color-mix(in srgb, var(--ink-water) 46%, transparent);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .15em;
}
.hero-depth i { flex: 1; height: 1px; background: currentColor; opacity: .32; }

/* 公告條：settings.announcement 有值才由 JS 插入 hero 頂部 */
.notice-bar {
  position: absolute;
  z-index: 3;
  top: calc(66px + env(safe-area-inset-top));
  left: clamp(18px, 4vw, 52px);
  right: clamp(18px, 4vw, 52px);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  color: #5C3A31;
  background: color-mix(in srgb, var(--coral-cta) 14%, #FFF9F5);
  border: 1px solid color-mix(in srgb, var(--coral-cta) 34%, transparent);
  border-radius: 2px;
  font-size: 13px;
  line-height: 1.7;
}
.notice-bar span { flex: 1; white-space: pre-wrap; }
.notice-bar button {
  border: 0;
  background: none;
  color: inherit;
  font-size: 14px;
  cursor: pointer;
  opacity: .6;
  padding: 2px 4px;
}
.notice-bar button:hover { opacity: 1; }

/* 行前包：預約確認後顯示在查詢結果內 */
.prep-pack {
  margin-top: 14px;
  border-top: 1px dashed rgba(23, 57, 76, .24);
  padding-top: 12px;
}
.prep-pack .prep-title {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  color: rgba(23, 57, 76, .72);
  margin-bottom: 7px;
}
.prep-pack .rc-line a { color: var(--water); font-weight: 700; }

/* ---------- Dive story / persistent depth cue ---------- */

.dive-story { position: relative; background: var(--ink-deep); }
.depth-rail {
  position: fixed;
  z-index: 18;
  left: clamp(16px, 2.8vw, 42px);
  top: 50%;
  width: 44px;
  color: var(--current-readable);
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(-50% + 10px));
  transition: opacity 180ms var(--ease-out), transform 220ms var(--ease-out);
}
.public-page.in-dive-story .depth-rail { opacity: 1; transform: translateY(-50%); }
.depth-rail-label {
  display: block;
  margin-bottom: 12px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  white-space: nowrap;
}
.depth-rail-track {
  position: relative;
  display: block;
  width: 1px;
  height: 164px;
  margin-left: 4px;
  background: rgba(255, 255, 255, .18);
}
.depth-rail-track i {
  position: absolute;
  top: -3px;
  left: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--foam);
  box-shadow: 0 0 0 4px rgba(127, 169, 192, .18);
  transform: translateY(0);
  transition: transform 520ms var(--ease-story);
}
.depth-rail-step {
  position: absolute;
  left: 13px;
  font-family: var(--mono);
  font-size: 12px;
  opacity: .78;
}
.depth-rail-step:nth-of-type(3) { top: 31px; }
.depth-rail-step:nth-of-type(4) { top: 83px; }
.depth-rail-step:nth-of-type(5) { top: 135px; }
.depth-rail-step:nth-of-type(6) { top: 187px; }

.story-chapter {
  position: relative;
  min-height: 88svh;
  display: flex;
  align-items: center;
  color: var(--foam);
  scroll-margin-top: 68px;
  padding: clamp(90px, 11vw, 150px) clamp(24px, 8vw, 126px);
  overflow: clip;
}
.story-chapter::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: min(12vw, 150px) 100%;
  opacity: .5;
}
.chapter-enter {
  background: linear-gradient(180deg, var(--water) 0%, var(--water-mid) 100%);
}
.chapter-safety {
  background: linear-gradient(180deg, var(--water-mid), #123850);
}
.chapter-descend {
  align-items: flex-start;
  background: linear-gradient(180deg, #123850, #0D2A3D);
}
.chapter-return {
  background: linear-gradient(180deg, #0D2A3D, var(--ink-deep));
}
.chapter-shell {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  margin: 0 auto;
}
.chapter-shell-wide { width: min(1120px, 100%); }
.chapter-heading { max-width: 720px; }
.chapter-index { color: var(--current-readable); margin-bottom: 20px; }
.chapter-index span { color: var(--foam); margin-right: 16px; }
.chapter-heading h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 6vw, 66px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -.025em;
  text-wrap: balance;
}
.chapter-heading > p:last-child {
  max-width: 620px;
  margin-top: 22px;
  color: var(--white-76);
  font-size: 15px;
  line-height: 2;
}
.chapter-heading-row {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: end;
}
.chapter-heading-row > p:last-child { margin: 0 0 8px; }

/* Services are a ledger, not three floating feature cards. */
.offer-ledger { margin-top: clamp(54px, 8vw, 86px); border-bottom: 1px solid var(--white-14); }
.offer-row {
  display: grid;
  grid-template-columns: minmax(110px, .45fr) minmax(170px, .8fr) minmax(260px, 1.35fr);
  gap: 28px;
  align-items: start;
  padding: 25px 0;
  border-top: 1px solid var(--white-14);
}
.offer-no { color: var(--current-readable); padding-top: 4px; }
.offer-row h3 { font-family: var(--serif); font-size: 21px; font-weight: 600; }
.offer-row > p:last-child { color: var(--white-76); font-size: 14px; line-height: 1.85; }
.offer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
  padding: 5px 13px;
  border: 1px solid rgba(244, 240, 231, .4);
  border-radius: 999px;
  color: var(--foam);
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 120ms var(--ease-out), border-color 120ms var(--ease-out), transform 120ms var(--ease-out);
}
.offer-link:hover { background: var(--surface-ink-raised); border-color: var(--foam); }
.offer-link:active { transform: scale(.97); }
.offer-link:focus-visible { outline: 2px solid var(--current); outline-offset: 2px; }
.offer-link svg { flex: none; }

/* ---------- Sessions ---------- */

.session-list { margin-top: 58px; }
.course-request-block {
  margin-top: clamp(56px, 8vw, 96px); padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--surface-ink-line); border-radius: 14px;
  background: linear-gradient(145deg, var(--surface-ink), var(--surface-ink-strong));
}
.course-request-block header { max-width: 720px; }
.course-request-block h3 { margin: 8px 0 12px; font-family: var(--serif); font-size: clamp(24px, 3vw, 38px); }
.course-request-copy { color: rgba(244, 240, 231, .9); line-height: 1.85; }
.course-request-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 18px; margin-top: 28px; }
.course-request-form .field { display: grid; gap: 7px; }
.course-request-form .field.full, .course-request-form .full { grid-column: 1 / -1; }
.course-request-form label { font-size: 13px; font-weight: 700; }
.course-request-form input, .course-request-form select, .course-request-form textarea {
  width: 100%; min-height: 48px; border: 1px solid rgba(244, 240, 231, .46); border-radius: 10px;
  background: var(--surface-ink-strong); color: var(--foam); padding: 11px 12px; font: inherit;
}
.course-request-form input:focus-visible, .course-request-form select:focus-visible, .course-request-form textarea:focus-visible {
  border-color: var(--current); outline: 2px solid color-mix(in srgb, var(--current) 72%, transparent); outline-offset: 2px;
}
.course-request-form select option { color: #17394c; }
.course-request-form textarea { min-height: 96px; resize: vertical; }
.course-request-form small { color: rgba(244, 240, 231, .78); line-height: 1.5; }
.course-request-line-action { display: flex; align-items: center; gap: 14px; }
.course-request-line-action small { max-width: 440px; }
.course-request-line-result {
  margin-top: 24px; padding: 20px; border: 1px solid rgba(127, 169, 192, .58); border-radius: 12px;
  background: var(--surface-ink-raised);
}
.course-request-line-result[hidden] { display: none; }
.course-request-line-result h4 { margin: 0; font-family: var(--serif); font-size: 22px; }
.course-request-line-result p { margin: 6px 0 16px; color: rgba(244, 240, 231, .84); }
.course-request-line-result label { display: block; margin-bottom: 7px; font-size: 13px; font-weight: 700; }
.course-request-line-result textarea {
  width: 100%; min-height: 190px; padding: 12px; border: 1px solid rgba(244, 240, 231, .42); border-radius: 10px;
  background: var(--surface-ink-strong); color: var(--foam); font: 13px/1.75 var(--mono); resize: vertical;
}
.course-request-line-result-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.course-request-line-result > small { display: block; margin-top: 10px; color: rgba(244, 240, 231, .74); line-height: 1.55; }
.people-stepper {
  display: grid; grid-template-columns: 48px minmax(0, 1fr) 48px; min-height: 48px;
  border: 1px solid rgba(244, 240, 231, .46); border-radius: 10px;
  background: var(--surface-ink-strong); overflow: hidden;
}
.people-stepper input {
  min-width: 0; border: 0; border-radius: 0; background: transparent;
  color: var(--foam); font-family: var(--mono); text-align: center; appearance: textfield;
}
.people-stepper input::-webkit-inner-spin-button, .people-stepper input::-webkit-outer-spin-button { margin: 0; appearance: none; }
.people-stepper button {
  display: grid; place-items: center; min-width: 48px; min-height: 48px; border: 0;
  background: var(--surface-ink); color: var(--foam); cursor: pointer;
  transition: background-color 120ms var(--ease-out), color 120ms var(--ease-out);
}
.people-stepper button:first-child { border-right: 1px solid rgba(244, 240, 231, .24); }
.people-stepper button:last-child { border-left: 1px solid rgba(244, 240, 231, .24); }
.people-stepper button:hover:not(:disabled) { background: var(--surface-ink-raised); }
.people-stepper button:focus-visible { position: relative; outline: 2px solid var(--current); outline-offset: -3px; }
.people-stepper button:disabled { color: rgba(244, 240, 231, .32); cursor: not-allowed; }
.course-request-block .form-error-summary { color: #ffd2c7; }
.course-request-success { margin-top: 20px; padding: 18px; border-left: 3px solid var(--ok); background: var(--surface-ink-raised); }
.month-label {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 40px 0 0;
  color: var(--current-readable);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .17em;
}
.month-label::after { content: ''; height: 1px; flex: 1; background: var(--white-14); }
.month-group { display: grid; grid-template-columns: 1fr 1fr; gap: 0 34px; }
.session-card {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 20px;
  padding: 27px 0 30px;
  border-bottom: 1px solid var(--white-14);
  transition: border-color 160ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .session-card:hover { border-color: color-mix(in srgb, var(--current) 72%, transparent); }
}
.session-card .date-block {
  border-right: 1px solid var(--white-14);
  padding-right: 16px;
}
.session-card .date-block .day {
  color: var(--foam);
  font-family: var(--mono);
  font-size: 19px;
  font-weight: 700;
}
.session-card .date-block .wd { color: var(--deep-muted); font-size: 12px; margin-top: 3px; }
.session-card .body { min-width: 0; }
.session-card .title-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--foam);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  overflow-wrap: anywhere;
}
.tag {
  border: 1px solid color-mix(in srgb, var(--current) 42%, transparent);
  border-radius: 999px;
  padding: 2px 8px;
  color: var(--current-readable);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  white-space: nowrap;
}
.session-card .meta { margin-top: 6px; color: var(--deep-muted); font-size: 12.5px; line-height: 1.7; }
.session-card .desc { margin-top: 9px; color: var(--white-76); font-size: 13px; line-height: 1.8; white-space: pre-wrap; }
.session-card .foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 18px; }
.session-card .price { color: var(--foam); font-family: var(--mono); font-size: 15px; font-weight: 700; }
.session-card .price small { color: var(--deep-muted); font-size: 12px; font-weight: 400; }
.session-card .slots { margin-left: 7px; color: var(--current-readable); font-size: 12px; }
.session-card .slots.full { color: #E1A094; }
.session-card .foot-actions { display: flex; align-items: center; gap: 8px; }
.session-card .btn-coral { padding: 8px 16px; font-size: 12px; }
.session-card .btn-glass { padding: 7px 14px; font-size: 12px; border-color: color-mix(in srgb, var(--current) 55%, transparent); color: var(--current-readable); }
.session-card .btn-glass:hover { border-color: var(--current); color: var(--foam); }
.deep-empty { padding: 44px 0; color: var(--deep-muted); text-align: center; font-size: 13px; }

/* ---------- Booking lookup ---------- */

.return-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .8fr);
  gap: clamp(52px, 8vw, 120px);
  align-items: center;
}
.lookup-panel {
  color: var(--ink-water);
  background: var(--shell);
  border-radius: 2px;
  padding: clamp(26px, 4vw, 42px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .18);
}
.lookup-panel > label {
  display: block;
  margin-bottom: 11px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.lookup-box { display: flex; gap: 9px; }
.lookup-box input {
  flex: 1;
  min-width: 0;
  color: var(--ink-water);
  background: rgba(255, 255, 255, .56);
  border: 1px solid rgba(23, 57, 76, .20);
  border-radius: 999px;
  padding: 11px 17px;
  font-family: var(--mono);
  font-size: 16px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.lookup-box input::placeholder { color: rgba(23, 57, 76, .44); letter-spacing: .04em; }
.lookup-box input:focus { outline: none; border-color: var(--water); box-shadow: 0 0 0 3px rgba(30, 77, 102, .14); }
.lookup-hint { margin-top: 11px; color: rgba(23, 57, 76, .68); font-size: 12px; line-height: 1.7; }
.lookup-result-card {
  margin-top: 20px;
  border-top: 1px solid rgba(23, 57, 76, .16);
  padding-top: 18px;
}
.lookup-result-card .rc-title { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; font-family: var(--serif); font-size: 16px; font-weight: 700; }
.lookup-result-card .rc-line { margin-top: 5px; color: rgba(23, 57, 76, .72); font-size: 12.5px; }
.lookup-panel .deep-empty { color: rgba(23, 57, 76, .58); padding: 28px 0 4px; }
.lookup-panel .deep-empty a { color: var(--water); font-weight: 700; }
.status-pill { border-radius: 999px; padding: 2px 9px; font-family: var(--mono); font-size: 12px; font-weight: 700; }
.status-pill.ok { color: #17694E; background: rgba(46, 140, 106, .12); }
.status-pill.warn { color: #81501C; background: rgba(178, 107, 44, .12); }
.status-pill.danger { color: #91473A; background: rgba(173, 91, 75, .13); }
.status-pill.plain { color: rgba(23, 57, 76, .72); background: rgba(23, 57, 76, .09); }

/* ---------- FAQ ---------- */

.chapter-return { flex-direction: column; align-items: stretch; justify-content: center; }
.chapter-return .return-grid { width: min(980px, 100%); }
.faq-block { margin-top: clamp(64px, 9vw, 110px); }
.faq-block > .chapter-index { color: var(--current-readable); margin-bottom: 18px; }
.faq-list { border-bottom: 1px solid var(--white-14); }
.faq-category {
  margin: 26px 0 5px;
  color: var(--current-readable);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
}
.faq-category:first-child { margin-top: 0; }
.faq-list details { border-top: 1px solid var(--white-14); }
.faq-list summary {
  position: relative;
  padding: 17px 40px 17px 0;
  color: var(--foam);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--current);
  font-family: var(--mono);
  font-size: 17px;
  font-weight: 400;
  transition: transform 180ms var(--ease-out);
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details > p {
  max-width: 720px;
  padding: 0 0 19px;
  color: var(--white-76);
  font-size: 14px;
  line-height: 1.95;
}
.faq-more {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 12px;
  margin-top: 22px;
  color: rgba(244, 240, 231, .66);
  font-size: 13px;
}
.faq-line-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid rgba(244, 240, 231, .55);
  border-radius: 999px;
  color: var(--foam);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 120ms var(--ease-out), border-color 120ms var(--ease-out), transform 120ms var(--ease-out);
}
.faq-line-btn:hover { background: var(--surface-ink-raised); border-color: var(--foam); }
.faq-line-btn:active { transform: scale(.97); }
.faq-line-btn:focus-visible { outline: 2px solid var(--current); outline-offset: 2px; }
.faq-line-btn svg { flex: none; }
.faq-more > span {
  flex-basis: 100%;
  display: block;
  margin-top: 12px;
  color: var(--deep-muted);
  line-height: 1.75;
}

/* ---------- Return to shore ---------- */

.shore {
  position: relative;
  color: var(--ink-water);
  background: var(--shell);
  padding: clamp(74px, 10vw, 120px) clamp(24px, 8vw, 126px) calc(42px + env(safe-area-inset-bottom));
}
.shore::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: rgba(23, 57, 76, .17);
}
.shore-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(38px, 5vw, 72px);
  align-items: start;
}
.shore-lockup { display: flex; align-items: center; gap: 18px; }
/* 頁尾用 B-橫幅英文標誌描稿（字上浪下），同 logo.svg 的單一資產原則 */
.brand-banner {
  display: inline-block;
  width: clamp(190px, 24vw, 250px);
  aspect-ratio: 3480 / 1624;
  background-color: currentColor;
  -webkit-mask: url('../wordmark-en.svg?v=1786516516') center / contain no-repeat;
  mask: url('../wordmark-en.svg?v=1786516516') center / contain no-repeat;
  color: var(--water);
}
.shore-label { color: var(--dim); }
.shore-social { text-align: center; }
.shore-social > a {
  display: inline-block;
  margin-top: 13px;
  color: var(--ink-water);
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 31px);
  font-weight: 600;
  text-decoration-line: underline;
  text-decoration-color: rgba(23, 57, 76, .26);
  text-decoration-thickness: 1px;
  text-underline-offset: 8px;
}
.shore-social > p:last-child { margin-top: 10px; color: var(--dim); font-size: 12px; }
.shore-meta { color: var(--dim); font-size: 12px; line-height: 1.9; text-align: right; }
.shore-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 7px 15px; margin-bottom: 12px; }
.shore-links a { color: var(--ink-water); font-size: 12px; font-weight: 700; text-decoration: none; }
.shore-meta p:last-child { margin-top: 20px; }

/* ---------- Motion ---------- */

/* Without JS every element is visible. JS adds the gate only when IntersectionObserver exists. */
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 560ms var(--ease-out), transform 560ms var(--ease-out);
}
.js-reveal .reveal.shown { opacity: 1; transform: none; }

/* Hero is one coordinated, one-shot breath rather than two independent reveals. */
.js-reveal .hero::before { transition: opacity 700ms var(--ease-out); }
.js-reveal .hero:not(.hero-shown)::before { opacity: 0; }
.js-reveal .hero .hero-copy > * {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 560ms var(--ease-out), transform 560ms var(--ease-out);
}
.js-reveal .hero.hero-shown .hero-copy > * { opacity: 1; transform: none; }
.js-reveal .hero .hero-copy > :nth-child(1) { transition-delay: 360ms; }
.js-reveal .hero .hero-copy > :nth-child(2) { transition-delay: 410ms; }
.js-reveal .hero .hero-copy > :nth-child(3) { transition-delay: 460ms; }
.js-reveal .hero .hero-copy > :nth-child(4) { transition-delay: 510ms; }
.js-reveal .hero .hero-copy > :nth-child(5) { transition-delay: 560ms; }
.js-reveal .hero .seal-stage {
  opacity: 0;
  transform: scale(.985);
  transition: opacity 560ms var(--ease-out) 80ms, transform 920ms var(--ease-story) 80ms;
}
.js-reveal .hero:not(.hero-shown) .seal-ring { stroke-dashoffset: 1.05; }
.js-reveal .hero:not(.hero-shown) .seal-wave { transform: translateY(84px); }
.js-reveal .hero:not(.hero-shown) .seal-texts { opacity: 0; }
.js-reveal .hero .hero-depth > span {
  opacity: 0;
  transition: opacity 420ms var(--ease-out) 680ms;
}
.js-reveal .hero .hero-depth i {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 720ms var(--ease-story) 620ms;
}
.js-reveal .hero.hero-shown .seal-stage { opacity: 1; transform: none; }
.js-reveal .hero.hero-shown .seal-drawing { opacity: 1; }
.js-reveal .hero.hero-shown .seal-ring {
  animation-name: seal-ring-draw;
  animation-timing-function: linear;
  animation-duration: 900ms;
  animation-delay: 40ms;
  animation-fill-mode: both;
}
.js-reveal .hero.hero-shown .seal-wave {
  animation: seal-wave-rise 980ms var(--ease-story) 300ms both;
}
.js-reveal .hero.hero-shown .seal-texts {
  animation: seal-text-set 520ms var(--ease-out) 940ms both;
}
.js-reveal .hero.hero-shown .seal-orbit-outer {
  animation: hero-breathe-outer 920ms var(--ease-story) 80ms both;
}
.js-reveal .hero.hero-shown .seal-orbit-inner {
  animation: hero-breathe-inner 920ms var(--ease-story) 80ms both;
}
.js-reveal .hero.hero-shown .hero-depth > span { opacity: 1; }
.js-reveal .hero.hero-shown .hero-depth i { transform: scaleX(1); }

/* 同一分頁工作階段切換頁面時，首屏直接就緒；下方內容仍保留捲動 reveal。 */
.returning-visit .hero::before,
.returning-visit .hero .hero-copy > *,
.returning-visit .hero .seal-stage,
.returning-visit .hero .hero-depth > span,
.returning-visit .page-hero .reveal,
.returning-visit .crew-hero .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}
.returning-visit .hero .hero-depth i { transform: scaleX(1); transition: none; }
.returning-visit .hero .seal-ring { stroke-dashoffset: 0; animation: none !important; }
.returning-visit .hero .seal-wave { transform: none; animation: none !important; }
.returning-visit .hero .seal-texts { opacity: 1; animation: none !important; }
.returning-visit .hero .seal-orbit { animation: none !important; }

@keyframes seal-ring-draw {
  from { stroke-dashoffset: 1.05; }
  to { stroke-dashoffset: 0; }
}

@keyframes seal-wave-rise {
  from { transform: translateY(84px); }
  to { transform: none; }
}

@keyframes seal-text-set {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes hero-breathe-outer {
  0% { opacity: .24; transform: scale(.96); }
  58% { opacity: 1; transform: scale(1.018); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes hero-breathe-inner {
  0% { opacity: .22; transform: scale(1.04); }
  58% { opacity: 1; transform: scale(.985); }
  100% { opacity: 1; transform: scale(1); }
}

@media print {
  .js-reveal .reveal,
  .js-reveal .hero .hero-copy > *,
  .js-reveal .hero .seal-stage { opacity: 1; transform: none; clip-path: none; }
  .js-reveal .hero:not(.hero-shown) .seal-ring { stroke-dashoffset: 0; }
  .js-reveal .hero:not(.hero-shown) .seal-wave { transform: none; }
  .js-reveal .hero:not(.hero-shown) .seal-texts { opacity: 1; }
  .depth-rail { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html:has(.public-page) { scroll-behavior: auto; }
  .site-nav,
  .depth-rail,
  .depth-rail-track i,
  .js-reveal .reveal,
  .js-reveal .hero .hero-copy > *,
  .js-reveal .hero .seal-stage { transition: opacity 160ms var(--ease-out); transform: none; clip-path: none; }
  .js-reveal .hero.hero-shown .seal-orbit { animation: none; }
  .js-reveal .hero .seal-ring { animation: none !important; stroke-dashoffset: 0 !important; }
  .js-reveal .hero .seal-wave { animation: none !important; transform: none !important; }
  .js-reveal .hero .seal-texts { animation: none !important; opacity: 1 !important; }
  .seal-figure,
  .hero-depth { transform: none !important; }
  .public-page .depth-rail,
  .public-page.in-dive-story .depth-rail { transform: translateY(-50%); }
  .js-reveal .reveal,
  .js-reveal .hero .hero-copy > *,
  .js-reveal .hero .seal-stage { opacity: 1; }
}

.public-page a:focus-visible,
.public-page button:focus-visible,
.public-page input:focus-visible { outline: 2px solid var(--focus-ring); outline-offset: 3px; }
.public-page .nav-focus-target:focus { outline: 2px solid var(--focus-ring); outline-offset: 6px; }
.dive-story a:focus-visible,
.dive-story button:focus-visible,
.dive-story input:focus-visible,
.site-nav.scrolled a:focus-visible,
.site-nav.scrolled button:focus-visible { outline-color: var(--current); }
.public-page .modal { box-shadow: 0 24px 80px rgba(0, 0, 0, .46); }

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .nav-links { display: none; }
  .site-nav { gap: 12px; }
  .nav-menu-btn {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    flex: none;
    color: inherit;
    background: transparent;
    border: 1px solid color-mix(in srgb, currentColor 24%, transparent);
    border-radius: 999px;
    cursor: pointer;
  }
  .nav-menu-btn > span {
    width: 17px;
    display: grid;
    gap: 4px;
  }
  .nav-menu-btn i {
    display: block;
    height: 1.5px;
    background: currentColor;
    border-radius: 999px;
    transition: transform 180ms var(--ease-out), opacity 140ms var(--ease-out);
  }
  .nav-menu-btn[aria-expanded="true"] i:first-child { transform: translateY(5.5px) rotate(45deg); }
  .nav-menu-btn[aria-expanded="true"] i:nth-child(2) { opacity: 0; }
  .nav-menu-btn[aria-expanded="true"] i:last-child { transform: translateY(-5.5px) rotate(-45deg); }
  .mobile-nav-panel {
    position: fixed;
    z-index: 29;
    inset: calc(72px + env(safe-area-inset-top)) 0 auto;
    display: block;
    /* 連結多起來時面板自己內捲，捲到底也不外溢到背後那頁 */
    max-height: calc(100dvh - 72px - env(safe-area-inset-top));
    overflow-y: auto;
    /* overflow-y:auto 連帶讓橫向也變 auto，長連結一溢出選單就能左右拖。明確關掉。 */
    overflow-x: hidden;
    overscroll-behavior: contain;
    padding: 14px 16px calc(20px + env(safe-area-inset-bottom));
    color: var(--foam);
    background: rgba(10, 28, 39, .98);
    border-top: 1px solid var(--white-14);
    box-shadow: 0 24px 48px rgba(0, 0, 0, .24);
  }
  .mobile-nav-panel[hidden] { display: none; }
  .mobile-nav-panel nav {
    width: min(520px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  .mobile-nav-panel a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 11px 14px;
    color: var(--white-76);
    border: 1px solid transparent;
    border-radius: 2px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
  }
  .mobile-nav-panel a[aria-current="page"] {
    color: var(--foam);
    border-color: var(--white-14);
    background: var(--surface-ink-raised);
  }
  .hero { min-height: auto; padding-top: calc(132px + env(safe-area-inset-top)); }
  .hero-grid { grid-template-columns: 1fr; }
  .editorial-hero__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .seal-stage { width: min(72vw, 380px); grid-row: 1; }
  .hero-copy { grid-row: 2; text-align: center; margin: 0 auto; }
  .hero-copy h1 { align-items: center; }
  .hero-copy h1 .en { margin-left: 0; }
  .hero-actions { justify-content: center; }
  .chapter-heading-row,
  .return-grid { grid-template-columns: 1fr; }
  .chapter-heading-row { gap: 24px; }
  .chapter-heading-row > p:last-child { margin: 0; }
  .offer-row { grid-template-columns: 110px 180px minmax(0, 1fr); }
  .shore-inner { grid-template-columns: 1fr 1fr; }
  .shore-social { text-align: right; }
  .shore-meta { grid-column: 1 / -1; text-align: center; }
  .shore-links { justify-content: center; }
}

@media (max-width: 700px) {
  .course-request-form { grid-template-columns: 1fr; }
  .site-nav { padding-left: 16px; padding-right: 16px; }
  .nav-cta { min-height: 44px; padding: 8px 13px; font-size: 12px; }
  .nav-wordmark small { display: none; }
  .trusted-task-nav {
    grid-template-columns: minmax(0, 1fr) auto;
    display: grid;
    gap: 7px 14px;
  }
  .trusted-task-nav .nav-brand { grid-column: 1; grid-row: 1; }
  .trusted-task-name {
    grid-column: 1 / -1;
    grid-row: 2;
    border-left: 0;
    padding-left: 0;
    font-size: 12px;
  }
  .trusted-task-help { grid-column: 2; grid-row: 1; margin-left: 0; padding-inline: 12px; font-size: 12px; }
  .hero { padding-left: 20px; padding-right: 20px; padding-bottom: 92px; }
  .seal-stage { width: min(78vw, 330px); }
  .seal-caption { display: none; }
  .hero-depth { left: 20px; right: 20px; bottom: 24px; }
  .depth-rail { display: none; }
  .story-chapter { min-height: auto; padding: 84px 22px; }
  .offer-ledger { margin-top: 46px; }
  .offer-row { grid-template-columns: 1fr; gap: 8px; padding: 23px 0; }
  .offer-no { margin-bottom: 4px; }
  .month-group { grid-template-columns: 1fr; }
  .session-card { grid-template-columns: 58px minmax(0, 1fr); gap: 15px; }
  .session-card .date-block { padding-right: 12px; }
  .lookup-panel { margin-top: 4px; }
  .lookup-box { align-items: stretch; }
  .lookup-box .btn-coral { padding-left: 16px; padding-right: 16px; }
  .public-page .btn-coral,
  .public-page .btn-glass,
  .public-page .text-link,
  .public-page .offer-link,
  .public-page .faq-line-btn,
  .public-page .session-card .btn-coral,
  .public-page .session-card .btn-glass { min-height: 44px; }
  .shore-inner { grid-template-columns: 1fr; text-align: center; }
  .shore-lockup { justify-content: center; }
  .shore-social { text-align: center; }
  .shore-meta { grid-column: auto; text-align: center; }
  .shore-links { justify-content: center; }
}

@media (max-width: 430px) {
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-copy h1 .zh { font-size: clamp(52px, 15vw, 72px); }
  .hero-copy h1 .en { font-size: 13px; }
  .chapter-heading h2 { font-size: clamp(36px, 11vw, 48px); }
  .lookup-box { flex-direction: column; }
  .lookup-box .btn-coral { width: 100%; }
}

@media (pointer: coarse) {
  .public-page .btn-coral,
  .public-page .btn-glass,
  .public-page .nav-cta,
  .public-page .text-link,
  .public-page .course-action-pill,
  .public-page .offer-link,
  .public-page .faq-list summary {
    min-block-size: 44px;
  }
}

/* ---------- 同行者自簽健康聲明 ---------- */
/* .card 自帶淺色底，放進深色 .page-deep 時文字色要一起帶回來 */
.page-deep .card { color: var(--ink); }
.signoff-questions { margin-top: 18px; }
.signoff-questions h4 { margin: 0 0 4px; font-family: var(--serif); font-size: 17px; }
.signoff-q { margin: 12px 0; }
.signoff-q-label { display: block; font-size: 14px; line-height: 1.5; margin-bottom: 5px; }
.signoff-q-choices { display: flex; gap: 18px; }
.signoff-q-choices label { display: flex; align-items: center; gap: 5px; font-size: 14px; cursor: pointer; }

/* 分階段預約：初始申請只說明付款門檻，完整資料於確認後另填。 */
.booking-stages {
  margin: 0 0 16px;
  padding: 14px 16px;
  border: 1px solid rgba(30, 77, 102, .24);
  border-radius: 12px;
  background: rgba(30, 77, 102, .07);
}
.booking-stages strong { color: var(--brand); }
.booking-stages p { margin: 6px 0 0; color: var(--dim); font-size: 13px; line-height: 1.65; }
.success-actions { justify-content: center; }
.success-actions .btn { text-align: center; text-decoration: none; }
.deposit-preview { display: block; margin-top: 4px; color: var(--brand); text-align: right; }
