/* PARTNER GATE — お客様サイト デザインシステム
   コンセプト: 「静けさと高揚」。深いミッドナイト・インディゴのブランド世界 ×
   洗練された余白・上質な日本語書体・要所の光。ショーケース品質を目指す。
   トークン名は管理画面(admin.css)と共有のため維持する。 */

:root {
  /* 面 */
  --paper: #EEF2F9; --surface: #FFFFFF; --surface-2: #E9EEF7;
  --ink: #121926; --ink-2: #48566B; --ink-3: #8592A6;
  --line: #DDE4EE; --line-2: #EAEEF5;
  /* アクセント（宝石のようなアズール） */
  --accent: #2A62E0; --accent-ink: #123A86; --accent-weak: #E7EEFC;
  --online: #10897A; --online-weak: #E1F2EF; --phone: #AF7014; --phone-weak: #F6ECD8;
  --danger: #C1364A; --danger-weak: #F9E3E7; --ok: #24895C;
  /* ブランド世界・装飾（テーマ非依存） */
  --brand-navy: #0A0F1E; --spark: #F26D9C; --spark-2: #7C7BF0; --mint: #46D6C6; --gold: #E8C486;
  --grad-cta: linear-gradient(135deg, #2C6FE6 0%, #5A82F0 100%);
  --grad-progress: linear-gradient(90deg, #3B82F6 0%, #7C7BF0 55%, #F26D9C 100%);
  --grad-mk: linear-gradient(140deg, #4C8CF0, #7C7BF0 55%, #F26D9C);
  /* 影（柔らかく浮遊感） */
  --shadow: 0 2px 4px rgba(16,24,40,.05), 0 22px 50px -16px rgba(16,24,40,.20);
  --shadow-sm: 0 1px 2px rgba(16,24,40,.05), 0 8px 20px -12px rgba(16,24,40,.16);
  --shadow-cta: 0 12px 28px -10px rgba(44,111,230,.55);
  --radius: 18px; --radius-sm: 13px;
  --font: "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", Meiryo, sans-serif;
  --display: "Outfit", var(--font);
  --mono: "SF Mono", ui-monospace, Menlo, monospace;
}
@media (prefers-color-scheme: dark) {
  :root {
    --paper: #090D16; --surface: #121B29; --surface-2: #0D1522;
    --ink: #E9EEF6; --ink-2: #A7B5C6; --ink-3: #6E7E92;
    --line: #223247; --line-2: #1A2636;
    --accent: #5FA0EC; --accent-ink: #A9CCF3; --accent-weak: #16294933;
    --online: #4CC0AC; --online-weak: #10332d66; --phone: #DCAC63; --phone-weak: #3a2c1466;
    --danger: #E2727F; --danger-weak: #3a1c2066; --ok: #57B889;
    --shadow: 0 2px 4px rgba(0,0,0,.4), 0 24px 60px -16px rgba(0,0,0,.6);
    --shadow-sm: 0 1px 2px rgba(0,0,0,.4), 0 10px 24px -14px rgba(0,0,0,.55);
  }
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font); background: var(--paper); color: var(--ink);
  line-height: 1.7; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  font-feature-settings: "palt" 1;   /* 日本語の詰め */
}
a { color: var(--accent); }
.mono { font-family: var(--mono); }
.tnum { font-family: var(--display); font-variant-numeric: tabular-nums; }
::selection { background: color-mix(in srgb, var(--accent) 22%, transparent); }

/* ============ レイアウト ============ */
.layout { display: grid; grid-template-columns: 1fr; min-height: 100vh; min-height: 100dvh; }

/* ---- ブランド世界パネル ---- */
.hero {
  position: relative; overflow: hidden; color: #EDF2FC; padding: 30px 24px;
  background:
    radial-gradient(90% 70% at 12% 8%, rgba(92,130,240,.34), transparent 60%),
    radial-gradient(80% 70% at 92% 22%, rgba(242,109,156,.24), transparent 55%),
    radial-gradient(90% 80% at 82% 100%, rgba(124,123,240,.30), transparent 60%),
    linear-gradient(165deg, #10182E 0%, #0A0F1E 72%);
}
.hero::after {  /* 微細なグレイン */
  content: ""; position: absolute; inset: 0; z-index: 1; opacity: .5; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}
.hero-inner { position: relative; z-index: 3; }
.wordmark { display: flex; align-items: center; gap: 11px; }
.wordmark .mk { width: 34px; height: 34px; border-radius: 11px; display: grid; place-items: center;
  font-family: var(--display); font-weight: 800; font-size: 17px; color: #fff; background: var(--grad-mk);
  box-shadow: 0 6px 18px -4px rgba(124,123,240,.55); }
.wordmark .wm-text { font-family: var(--display); font-weight: 700; letter-spacing: .14em; font-size: 15px; }
.hero-title { font-size: clamp(22px, 2.6vw, 31px); line-height: 1.42; margin: 0; font-weight: 900;
  letter-spacing: .015em; text-wrap: balance; }
.hero-sub { color: #B7C6E0; font-size: 15px; margin: 0; line-height: 1.85; }
.hero-points { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.hero-points li { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: #DCE5F4; }
.hero-points .hp-ic { width: 30px; height: 30px; flex: none; border-radius: 10px; display: grid; place-items: center;
  font-size: 14px; color: #EDF2FC; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(6px); }
.hero-foot { font-size: 12.5px; color: #8294B4; letter-spacing: .03em; }

.hero-orbs { position: absolute; inset: 0; z-index: 2; }
.hero-orbs .orb { position: absolute; border-radius: 50%; filter: blur(34px); }
.orb.o1 { width: 210px; height: 210px; top: -46px; right: -34px; background: rgba(242,109,156,.5); }
.orb.o2 { width: 170px; height: 170px; bottom: 30px; left: -50px; background: rgba(70,214,198,.34); }
.orb.o3 { width: 150px; height: 150px; top: 42%; right: 8%; background: rgba(124,123,240,.42); }
.orb.o4 { width: 110px; height: 110px; bottom: -26px; right: 32%; background: rgba(232,196,134,.3); }
@media (prefers-reduced-motion: no-preference) {
  .orb { animation: drift 16s ease-in-out infinite; }
  .orb.o2 { animation-duration: 20s; } .orb.o3 { animation-duration: 18s; } .orb.o4 { animation-duration: 23s; }
  @keyframes drift { 0%,100%{ transform: translate3d(0,0,0) } 50%{ transform: translate3d(0,-18px,0) scale(1.05) } }
}

/* ---- 予約フロー本体 ---- */
.booking-shell { width: 100%; max-width: 580px; margin: 0 auto; background: var(--surface-2);
  min-height: 100vh; min-height: 100dvh; display: flex; flex-direction: column; }
.topbar { position: sticky; top: 0; z-index: 5;
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  backdrop-filter: saturate(160%) blur(12px); -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line-2); padding: 14px 20px; display: flex; align-items: center; gap: 12px; }
.topbar .back { background: none; border: 0; color: var(--ink-3); font-size: 23px; cursor: pointer;
  padding: 2px 8px; line-height: 1; border-radius: 9px; transition: background .15s, color .15s; }
.topbar .back:hover { color: var(--accent); background: var(--accent-weak); }
.topbar .title { font-weight: 700; font-size: 16.5px; letter-spacing: .01em; }
.topbar .brand { display: none; }
.progress { height: 4px; background: var(--line-2); position: sticky; top: 54px; z-index: 4; }
.progress > i { display: block; height: 100%; background: var(--grad-progress); border-radius: 0 4px 4px 0;
  transition: width .5s cubic-bezier(.3,.9,.25,1); box-shadow: 0 0 14px -2px rgba(124,123,240,.6); }
.stage { padding: 26px 20px 30px; flex: 1; display: flex; flex-direction: column; gap: 14px; }
.stage > * { animation: rise .4s cubic-bezier(.2,.7,.2,1) both; }
.stage > *:nth-child(1){animation-delay:.02s}.stage > *:nth-child(2){animation-delay:.06s}
.stage > *:nth-child(3){animation-delay:.10s}.stage > *:nth-child(4){animation-delay:.14s}
.stage > *:nth-child(5){animation-delay:.18s}.stage > *:nth-child(6){animation-delay:.22s}
.stage > *:nth-child(7){animation-delay:.26s}
@keyframes rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .stage > * { animation: none; } .progress > i { transition: none; } .orb { animation: none; } }

.hint { font-size: 13.5px; color: var(--ink-3); margin: 0 2px 2px; }
.stage h2 { font-size: 20px; margin: 2px 0 4px; letter-spacing: .01em; }

/* ページ見出し */
.page-head { display: flex; flex-direction: column; gap: 9px; margin-bottom: 8px; }
.step-eyebrow { display: flex; align-items: center; gap: 12px; font-family: var(--display);
  font-size: 11px; font-weight: 700; letter-spacing: .22em; color: var(--accent); }
.step-eyebrow .of { color: var(--ink-3); }
.step-eyebrow .bar { flex: 1; height: 1px; background: linear-gradient(90deg, var(--line), transparent); }
.page-head h2 { font-size: clamp(22px, 3vw, 27px); margin: 0; letter-spacing: .01em; font-weight: 900; line-height: 1.4; text-wrap: balance; }
.page-head .ph-sub { font-size: 14px; color: var(--ink-3); margin: 0; }
.foot-note { text-align: center; font-size: 12px; color: var(--ink-3); margin: 10px 0 0; letter-spacing: .02em; }

/* ---- 選択カード ---- */
.opt { width: 100%; text-align: left; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px; display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-sm); cursor: pointer; font-family: inherit; color: inherit; position: relative;
  transition: transform .18s cubic-bezier(.2,.7,.2,1), border-color .18s, box-shadow .18s; }
.opt:hover { border-color: color-mix(in srgb, var(--accent) 45%, var(--line)); transform: translateY(-3px); box-shadow: var(--shadow); }
.opt:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.opt.sel { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-weak), var(--shadow-sm); }
.opt.opt-lg { padding: 18px 17px; }
.opt .ic { width: 46px; height: 46px; flex: none; border-radius: 13px; display: grid; place-items: center;
  font-size: 19px; font-weight: 700; color: var(--accent);
  background: linear-gradient(150deg, var(--accent-weak), color-mix(in srgb, var(--accent-weak) 30%, var(--surface))); }
.opt .ic.on { color: var(--online); background: linear-gradient(150deg, var(--online-weak), transparent); }
.opt .ic.ph { color: var(--phone); background: linear-gradient(150deg, var(--phone-weak), transparent); }
.opt .ic.tone-a { color: #E14E7A; background: color-mix(in srgb, #E14E7A 13%, var(--surface)); }
.opt .ic.tone-b { color: var(--accent); background: color-mix(in srgb, var(--accent) 13%, var(--surface)); }
.opt .ic.tone-c { color: #6A5CE0; background: color-mix(in srgb, #6A5CE0 14%, var(--surface)); }
.opt .ic.tone-d { color: var(--phone); background: color-mix(in srgb, var(--phone) 13%, var(--surface)); }
.opt .tx { flex: 1; min-width: 0; }
.opt .tx .t { display: block; font-weight: 700; font-size: 16px; letter-spacing: .01em; }
.opt .tx .s { display: block; font-size: 12.5px; color: var(--ink-3); margin-top: 3px; }
.opt .dur { font-family: var(--display); font-size: 12.5px; font-weight: 700; color: var(--accent);
  background: var(--accent-weak); padding: 5px 11px; border-radius: 999px; white-space: nowrap; }
.opt .chev { color: var(--ink-3); font-size: 20px; }
.opt .check { color: var(--accent); font-size: 18px; font-weight: 800; }
.opt .dur + .chev { margin-left: 2px; }
.avatar { width: 46px; height: 46px; border-radius: 999px; flex: none; display: grid; place-items: center;
  font-weight: 700; font-size: 16px; color: var(--accent);
  background: linear-gradient(150deg, var(--accent-weak), transparent); }

/* ---- カレンダー ---- */
.cal-nav { display: flex; align-items: center; justify-content: space-between; }
.cal-nav button { background: var(--surface); border: 1px solid var(--line); border-radius: 11px;
  width: 38px; height: 36px; cursor: pointer; color: var(--ink); font-size: 17px; transition: .15s; }
.cal-nav button:hover { border-color: var(--accent); color: var(--accent); }
.cal-nav .label { font-family: var(--display); font-weight: 700; letter-spacing: .02em; font-size: 16px; }
.dow { display: grid; grid-template-columns: repeat(7,1fr); gap: 7px; }
.dow span { text-align: center; font-size: 11px; color: var(--ink-3); font-weight: 700; }
.cal-days { display: grid; grid-template-columns: repeat(7,1fr); gap: 7px; }
.cal-days .d { aspect-ratio: 1; border: 1px solid var(--line-2); background: var(--surface); border-radius: 12px;
  display: grid; place-items: center; font-family: var(--display); font-size: 14px; cursor: pointer; color: var(--ink);
  font-variant-numeric: tabular-nums; transition: transform .14s, border-color .14s, box-shadow .14s; }
.cal-days .d.has:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.cal-days .d.mut { background: transparent; border-color: transparent; color: var(--ink-3); cursor: default; }
.cal-days .d.has { position: relative; font-weight: 600; }
.cal-days .d.has::after { content:""; position:absolute; bottom:6px; width:5px; height:5px; border-radius:99px; background: var(--online); }
.cal-days .d.none { color: var(--ink-3); cursor: default; opacity: .4; }
.cal-days .d.sel { background: var(--grad-cta); color: #fff; border-color: transparent; font-weight: 800; box-shadow: var(--shadow-cta); }
.cal-days .d.sel::after { background: #fff; }
.slots { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.slots .sl { padding: 12px 0; text-align: center; border-radius: 12px; font-family: var(--display); font-size: 15px;
  font-weight: 700; border: 1px solid var(--line); background: var(--surface); color: var(--accent); cursor: pointer;
  font-variant-numeric: tabular-nums; transition: transform .14s, border-color .14s, box-shadow .14s; }
.slots .sl:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.slots .sl.sel { background: var(--grad-cta); color: #fff; border-color: transparent; box-shadow: var(--shadow-cta); }

/* ---- 入力フォーム ---- */
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 12.5px; font-weight: 700; color: var(--ink-2); letter-spacing: .02em; }
.field label .req { color: var(--danger); margin-left: 3px; }
.field input, .field textarea, .field select { border: 1px solid var(--line); background: var(--surface);
  border-radius: 12px; padding: 13px 14px; font-size: 15px; color: var(--ink); font-family: inherit; width: 100%;
  transition: border-color .14s, box-shadow .14s; }
.field textarea { min-height: 76px; resize: vertical; line-height: 1.6; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-weak); }

/* SMS認証の分割入力 */
.otp-boxes { display: flex; gap: 9px; justify-content: center; }
.otp-boxes input { width: 46px; height: 58px; text-align: center; font-family: var(--display); font-size: 24px;
  font-weight: 700; border: 1px solid var(--line); border-radius: 13px; background: var(--surface); color: var(--ink);
  transition: border-color .14s, box-shadow .14s, transform .1s; }
.otp-boxes input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-weak); transform: translateY(-1px); }
.otp-boxes input.filled { border-color: var(--accent); }

/* ---- サマリー（チケット風） ---- */
.sum { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); position: relative; }
.sum::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--grad-cta); }
.sum .row { display: flex; padding: 14px 16px 14px 20px; border-bottom: 1px dashed var(--line); font-size: 14.5px; }
.sum .row:last-child { border-bottom: 0; }
.sum .row .k { width: 92px; color: var(--ink-3); flex: none; }
.sum .row .v { font-weight: 700; }
.badge-on { color: var(--online); background: var(--online-weak); padding: 3px 11px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.badge-ph { color: var(--phone); background: var(--phone-weak); padding: 3px 11px; border-radius: 999px; font-size: 12px; font-weight: 700; }

/* ---- ボタン ---- */
.btn { display: block; width: 100%; text-align: center; padding: 16px; border-radius: 14px; font-weight: 700;
  font-size: 16px; border: 0; cursor: pointer; color: #fff; background: var(--grad-cta); box-shadow: var(--shadow-cta);
  font-family: inherit; letter-spacing: .03em; transition: transform .14s, filter .14s, box-shadow .14s; }
.btn:hover { transform: translateY(-2px); filter: brightness(1.05); box-shadow: 0 16px 34px -10px rgba(44,111,230,.6); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: .55; cursor: not-allowed; box-shadow: none; filter: none; transform: none; }
.btn.ghost { background: transparent; color: var(--ink-2); border: 1px solid var(--line); box-shadow: none; }
.btn.ghost:hover { border-color: var(--accent); color: var(--accent); filter: none; background: var(--accent-weak); }
.btn.danger { background: linear-gradient(135deg, #CE4657, #A82F40); box-shadow: 0 12px 28px -10px rgba(176,49,63,.5); }
.sticky-cta { position: sticky; bottom: 0; background: linear-gradient(to top, var(--surface-2) 74%, transparent);
  padding: 16px 0 8px; display: flex; flex-direction: column; gap: 10px; margin-top: auto; }

/* ---- 完了画面 ---- */
.done-ic { width: 78px; height: 78px; border-radius: 999px; display: grid; place-items: center; font-size: 37px;
  margin: 26px auto 10px; color: #fff; background: linear-gradient(150deg, #17AE96, #10897A);
  box-shadow: 0 16px 34px -8px rgba(16,137,122,.55); animation: pop .5s cubic-bezier(.2,1.4,.4,1) both; }
@keyframes pop { from { transform: scale(.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.center { text-align: center; }
.meet-card { background: linear-gradient(150deg, var(--online-weak), transparent); border: 1px solid var(--online);
  border-radius: var(--radius); padding: 15px 16px; }
.meet-card .lb { font-size: 12px; font-weight: 700; color: var(--online); }
.meet-card a { font-size: 14px; word-break: break-all; font-family: var(--mono); }

.err { background: var(--danger-weak); color: var(--danger); border-radius: 12px; padding: 12px 14px; font-size: 13px; font-weight: 700; }
.muted { color: var(--ink-3); font-size: 13px; }
.spinner { text-align: center; color: var(--ink-3); padding: 30px; font-size: 13px; }
.pill { font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 999px; }
.pill.confirmed { color: var(--ok); background: var(--online-weak); }
.pill.cancelled { color: var(--danger); background: var(--danger-weak); }

/* ---- ログイン / 新規登録 / SMS ---- */
.auth-lead { margin-bottom: 8px; }
.auth-lead h2 { font-size: clamp(23px, 3vw, 28px); margin: 0 0 8px; font-weight: 900; letter-spacing: .01em; text-wrap: balance; }
.auth-lead p { margin: 0; color: var(--ink-3); font-size: 14.5px; }

/* ---- マイページ ---- */
.portal-head { background: linear-gradient(150deg, var(--accent-weak), var(--surface)); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px 22px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden; }
.portal-head::after { content: ""; position: absolute; right: -30px; top: -30px; width: 120px; height: 120px;
  border-radius: 50%; background: radial-gradient(circle, rgba(124,123,240,.25), transparent 70%); }
.portal-head .pt-hello { font-weight: 900; font-size: 19px; letter-spacing: .01em; position: relative; }
.portal-head .pt-sub { color: var(--ink-2); font-size: 13px; margin-top: 5px; position: relative; }
.sec-label { font-size: 12px; font-weight: 700; color: var(--ink-2); letter-spacing: .1em; margin: 18px 2px 0; text-transform: none; }
.empty-note { background: var(--surface); border: 1px dashed var(--line); border-radius: var(--radius);
  padding: 30px 16px; text-align: center; color: var(--ink-3); font-size: 13.5px; }
.resv-card { display: flex; align-items: center; gap: 15px; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 15px 17px; box-shadow: var(--shadow-sm); color: inherit;
  transition: transform .18s cubic-bezier(.2,.7,.2,1), box-shadow .18s, border-color .18s; }
.resv-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--accent) 40%, var(--line)); }
.resv-card.muted-card { opacity: .62; }
.resv-card .rc-date { flex: none; width: 58px; text-align: center; border-right: 1px solid var(--line-2); padding-right: 14px; }
.resv-card .rc-date .rc-d { display: block; font-family: var(--display); font-weight: 800; font-size: 19px;
  font-variant-numeric: tabular-nums; letter-spacing: -.01em; color: var(--accent); }
.resv-card .rc-date .rc-w { display: block; font-size: 11px; color: var(--ink-3); margin-top: 1px; }
.resv-card .rc-body { flex: 1; min-width: 0; }
.resv-card .rc-body .rc-t { font-weight: 700; font-size: 15.5px; }
.resv-card .rc-body .rc-s { font-size: 12.5px; color: var(--ink-3); margin-top: 3px; }
.resv-card .rc-r { flex: none; }

/* ============ レスポンシブ ============ */
.pc-only { display: inline; }
.hero-title br { display: inline; }

/* --- 縦積み（〜1023px）: 上にブランド画面 → その下にログイン --- */
@media (max-width: 1023px) {
  .layout { grid-template-columns: 1fr; grid-template-rows: auto auto; }
  .hero { min-height: 100svh; padding: clamp(28px,7vw,64px) clamp(22px,7vw,48px);
    display: flex; flex-direction: column; justify-content: center; }
  .hero-inner { max-width: 560px; width: 100%; margin: 0 auto; display: flex; flex-direction: column; gap: 22px; }
  .hero-title br { display: none; }
  .booking-shell { max-width: 620px; min-height: auto; flex: 1; }
}
/* 小さいスマホはブランド画面を少しだけ簡潔に（順番は上→ログインのまま） */
@media (max-width: 560px) {
  .hero { min-height: 84svh; padding: 30px 22px; }
  .hero-inner { gap: 16px; }
  .hero-title { font-size: 22px; line-height: 1.44; }
  .hero-foot { display: none; }
  .orb.o2, .orb.o4 { display: none; }
}

/* --- 横長デスクトップ（1024px〜）: 左ブランド + 右フロー --- */
@media (min-width: 1024px) {
  .layout { grid-template-columns: minmax(380px, 40%) 1fr; grid-template-rows: 1fr; }
  .hero { position: sticky; top: 0; height: 100vh; height: 100dvh; min-height: 0; padding: 60px 54px;
    display: flex; flex-direction: column; justify-content: center; }
  .hero-inner { display: flex; flex-direction: column; gap: 26px; max-width: 440px; }
  .hero-title br { display: inline; }
  .booking-shell { background: var(--surface-2); min-height: 100vh; max-width: none; padding: 0 clamp(20px, 5vw, 84px); }
  .booking-shell .topbar { margin: 0 calc(clamp(20px, 5vw, 84px) * -1); padding-left: clamp(20px,5vw,84px); padding-right: clamp(20px,5vw,84px); }
  .progress { top: 56px; margin: 0 calc(clamp(20px, 5vw, 84px) * -1); }
  .stage { max-width: 560px; width: 100%; margin: 0 auto; padding: 36px 0 46px; }
}
