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

.public-page {
  --shell: #F4F0E9;
  --shell-soft: #E7EBEA;
  --ink-water: #0E2B43;
  --ink-deep: #071C2C;
  --water: #17425E;
  --water-mid: #0E334F;
  --current: #79AABD;
  --foam: #F6F5F0;
  --coral-cta: #AD5B4B;
  --coral-cta-press: #8F493D;
  --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(7, 28, 44, .88);
  border-bottom-color: var(--white-14);
  backdrop-filter: blur(16px);
}
.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: 7px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .08em;
}
.nav-wordmark small {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .58;
}
.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 {
  color: #FFF9F5;
  background: var(--coral-cta);
  border-radius: 999px;
  padding: 9px 17px;
  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(--coral-cta-press); }
.nav-cta:active { transform: scale(.97); }

/* ---------- 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:
    radial-gradient(80% 90% at 79% 35%, rgba(121, 170, 189, .26), transparent 58%),
    linear-gradient(135deg, #F7F3EB 0%, var(--shell) 54%, #D9E2E1 100%);
  overflow: clip;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .22;
  pointer-events: none;
  background-image: linear-gradient(rgba(14, 43, 67, .12) 1px, transparent 1px), linear-gradient(90deg, rgba(14, 43, 67, .12) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 34%, transparent 90%);
}
.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; }
.hero-kicker,
.chapter-index,
.offer-no,
.shore-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-kicker { color: var(--water); margin-bottom: 22px; }
.hero-copy h1 {
  font-family: var(--serif);
  font-size: clamp(46px, 5.2vw, 78px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.hero-copy h1 span { display: block; white-space: nowrap; }
.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-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: #FFF9F5; background: var(--coral-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; }
.text-link {
  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-stage::before {
  content: '';
  position: absolute;
  inset: 9%;
  border-radius: 50%;
  background: rgba(255, 255, 255, .34);
  box-shadow: 0 28px 80px rgba(14, 43, 67, .10);
}
.seal-mark {
  position: relative;
  z-index: 2;
  width: 54%;
  height: 54%;
  color: var(--ink-water);
}
.seal-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(14, 43, 67, .18);
  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; }

/* ---------- 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);
  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: 9px;
  letter-spacing: .12em;
  white-space: nowrap;
}
.depth-rail-track {
  position: relative;
  display: block;
  width: 1px;
  height: 112px;
  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(121, 170, 189, .15);
  transform: translateY(0);
  transition: transform 520ms var(--ease-story);
}
.depth-rail-step {
  position: absolute;
  left: 13px;
  font-family: var(--mono);
  font-size: 8px;
  opacity: .54;
}
.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; }

.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-descend {
  align-items: flex-start;
  background: linear-gradient(180deg, var(--water-mid), #092842);
}
.chapter-return {
  background: linear-gradient(180deg, #092842, 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); 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); 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-block;
  margin-left: 8px;
  color: var(--current);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--current) 40%, transparent);
  padding-bottom: 1px;
}
.offer-link:hover { border-bottom-color: currentColor; }

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

.session-list { margin-top: 58px; }
.month-label {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 40px 0 0;
  color: var(--current);
  font-family: var(--mono);
  font-size: 11px;
  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(--white-48); font-size: 11px; 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);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .06em;
  white-space: nowrap;
}
.session-card .meta { margin-top: 6px; color: var(--white-48); 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(--white-48); font-size: 10px; font-weight: 400; }
.session-card .slots { margin-left: 7px; color: var(--current); font-size: 11px; }
.session-card .slots.full { color: #E1A094; }
.session-card .btn-coral { padding: 8px 16px; font-size: 12px; }
.deep-empty { padding: 44px 0; color: var(--white-48); 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: 10px;
  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(14, 43, 67, .19);
  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(14, 43, 67, .42); letter-spacing: .04em; }
.lookup-box input:focus { outline: none; border-color: var(--water); box-shadow: 0 0 0 3px rgba(23, 66, 94, .12); }
.lookup-hint { margin-top: 11px; color: rgba(14, 43, 67, .56); font-size: 11px; line-height: 1.7; }
.lookup-result-card {
  margin-top: 20px;
  border-top: 1px solid rgba(14, 43, 67, .15);
  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(14, 43, 67, .7); font-size: 12.5px; }
.lookup-panel .deep-empty { color: rgba(14, 43, 67, .56); padding: 28px 0 4px; }
.status-pill { border-radius: 999px; padding: 2px 9px; font-family: var(--mono); font-size: 9px; font-weight: 700; }
.status-pill.ok { color: #17694E; background: rgba(46, 140, 106, .12); }
.status-pill.warn { color: #8B571F; background: rgba(178, 107, 44, .12); }
.status-pill.danger { color: #91473A; background: rgba(173, 91, 75, .13); }
.status-pill.plain { color: rgba(14, 43, 67, .7); background: rgba(14, 43, 67, .08); }

/* ---------- 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(14, 43, 67, .16);
}
.shore-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr .8fr;
  gap: clamp(38px, 7vw, 90px);
  align-items: start;
}
.shore-lockup { display: flex; align-items: center; gap: 18px; }
.shore-lockup > div > p { font-family: var(--serif); font-size: 27px; font-weight: 700; letter-spacing: .09em; }
.shore-lockup > div > span { display: block; margin-top: 2px; color: #5F6E77; font-family: var(--mono); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.shore-label { color: #5F6E77; }
.shore-social > a {
  display: inline-block;
  margin-top: 13px;
  color: var(--ink-water);
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 31px);
  font-weight: 600;
  text-decoration-line: underline;
  text-decoration-color: rgba(14, 43, 67, .24);
  text-decoration-thickness: 1px;
  text-underline-offset: 8px;
}
.shore-social > p:last-child { margin-top: 10px; color: #5F6E77; font-size: 12px; }
.shore-meta { color: #5F6E77; font-size: 11px; line-height: 1.9; }
.shore-links { display: flex; flex-wrap: wrap; 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; }
.js-reveal .hero-copy.reveal { opacity: 1; transform: none; transition: none; }
.js-reveal .hero-copy.reveal > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 620ms var(--ease-out), transform 620ms var(--ease-out);
}
.js-reveal .hero-copy.reveal.shown > * { opacity: 1; transform: none; }
.js-reveal .hero-copy.reveal > :nth-child(2) { transition-delay: 55ms; }
.js-reveal .hero-copy.reveal > :nth-child(3) { transition-delay: 110ms; }
.js-reveal .hero-copy.reveal > :nth-child(4) { transition-delay: 165ms; }
.js-reveal .hero-copy.reveal > :nth-child(5) { transition-delay: 220ms; }
.js-reveal .seal-stage.reveal {
  opacity: 0;
  transform: scale(.97);
  transition: opacity 720ms var(--ease-out), transform 900ms var(--ease-story);
  transition-delay: 120ms;
}
.js-reveal .seal-stage.reveal .seal-mark {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 900ms var(--ease-story);
  transition-delay: 180ms;
}
.js-reveal .seal-stage.reveal.shown { opacity: 1; transform: scale(1); }
.js-reveal .seal-stage.reveal.shown .seal-mark { clip-path: inset(0); }

@media print {
  .js-reveal .reveal,
  .js-reveal .hero-copy.reveal > *,
  .js-reveal .seal-stage.reveal,
  .js-reveal .seal-stage.reveal .seal-mark { opacity: 1; transform: none; clip-path: none; }
  .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-copy.reveal > *,
  .js-reveal .seal-stage.reveal,
  .js-reveal .seal-stage.reveal .seal-mark { transition: opacity 160ms var(--ease-out); transform: none; clip-path: none; }
  .public-page .depth-rail,
  .public-page.in-dive-story .depth-rail { transform: translateY(-50%); }
  .js-reveal .reveal,
  .js-reveal .hero-copy.reveal > *,
  .js-reveal .seal-stage.reveal { opacity: 1; }
}

.public-page a:focus-visible,
.public-page button:focus-visible,
.public-page input:focus-visible { outline: 2px solid var(--current); outline-offset: 3px; }
.public-page .modal { box-shadow: 0 24px 80px rgba(0, 0, 0, .46); }

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

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero { min-height: auto; padding-top: calc(132px + env(safe-area-inset-top)); }
  .hero-grid { grid-template-columns: 1fr; }
  .seal-stage { width: min(72vw, 380px); grid-row: 1; }
  .hero-copy { grid-row: 2; text-align: center; margin: 0 auto; }
  .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-meta { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .site-nav { padding-left: 16px; padding-right: 16px; }
  .nav-cta { padding: 8px 13px; font-size: 12px; }
  .nav-wordmark small { display: none; }
  .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; }
  .shore-inner { grid-template-columns: 1fr; }
  .shore-meta { grid-column: auto; }
}

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