/* 共创档案馆 · 场景样式
   场景数学：背景图 4096×2306，场景容器由 JS 按房间实测像素设 contain 尺寸，
   热区/标签全部用图面百分比定位（同灵感大厅 / 村子地图的坐标思路）。 */

:root {
  --hall-gold: #f4c879;
  --hall-gold-hot: #ffb347;
  --hall-cream: #ffe2a7;
  --hall-muted: rgba(255, 241, 210, 0.72);
  --hall-ink: rgba(10, 7, 4, 0.92);
}

html, body { height: 100%; }

body.hall-body {
  display: flex;
  flex-direction: column;
  margin: 0;
  overflow: hidden;
  background: #0a0803;
  color: var(--hall-cream);
  font-family: var(--font-sans);
}

body.hall-body .site-header { position: relative; z-index: 30; }

/* ---------- 房间与场景 ---------- */

.hall-room {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  min-height: 0;
  overflow: hidden;
}

/* 视口比例与图不合时的外溢铺底：低清图模糊放大 */
.hall-room::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("./assets/hall-bg-low.webp") center / cover no-repeat;
  filter: blur(16px) brightness(0.6) saturate(0.9);
  transform: scale(1.06);
  pointer-events: none;
}

.hall-scene {
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 0 70px rgba(0, 0, 0, 0.62);
}

.hall-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  transform: scale(1);
  transform-origin: center;
  transition: transform 620ms cubic-bezier(0.22, 0.8, 0.2, 1), filter 620ms ease;
  will-change: transform;
}

/* 聚焦推近：translate 在前（先移再放大），数值 = (50-目标中心%)，超界按 50-50/s 截断 */
body[data-scene-focus] .hall-bg { filter: saturate(1.06) contrast(1.03); }
body[data-scene-focus="learn"]    .hall-bg { transform: translate(24%, 5%) scale(1.45); }
body[data-scene-focus="photos"]   .hall-bg { transform: translate(25.5%, -10.7%) scale(1.45); }
body[data-scene-focus="journey"]  .hall-bg { transform: translate(0, 7%) scale(1.3); }
body[data-scene-focus="works"]    .hall-bg { transform: translate(-24.5%, 4%) scale(1.45); }
body[data-scene-focus="students"] .hall-bg { transform: translate(-23.8%, -10.5%) scale(1.45); }

/* 村徽：钉在正面墙金色圆盘上。图面百分比：盘心约 (49.83%, 31.1%)，盘径约 4.3% 图宽；
   徽章取 4.55% 略大于盘、把金盘完全盖住；内图放大 133% 裁掉 logo 外圈米色留白 */
.hall-crest {
  position: absolute;
  left: 49.83%;
  top: 31.1%;
  z-index: 1;
  width: 4.55%;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  overflow: hidden;
  pointer-events: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
  transition: opacity 300ms ease;
}

.hall-crest img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 133%;
  height: 133%;
  transform: translate(-50%, -50%);
  filter: saturate(1.1) brightness(0.87) contrast(1.04);
}

/* 内缘阴影：让徽章嵌进金盘而不是浮在上面 */
.hall-crest::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 8px rgba(50, 25, 5, 0.35), inset 0 -4px 8px rgba(40, 20, 5, 0.22);
}

body[data-scene-focus] .hall-crest { opacity: 0; }

/* 暗角：聚焦时加深，把视线收进目标墙 */
.hall-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse at center, transparent 48%, rgba(4, 3, 2, 0.42) 100%);
  pointer-events: none;
  transition: background 420ms ease;
}

body[data-scene-focus] .hall-vignette {
  background: radial-gradient(ellipse at center, transparent 26%, rgba(4, 3, 2, 0.64) 100%);
}

/* ---------- 热区 ---------- */

.hall-hotspots { position: absolute; inset: 0; z-index: 3; }

.hall-hotspot {
  position: absolute;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

/* 物件描边光：默认极淡常亮，hover/聚焦增强 */
.hall-hotspot::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 214, 140, 0.16);
  border-radius: 6px;
  background: radial-gradient(ellipse at center, rgba(255, 196, 110, 0.05), transparent 72%);
  box-shadow: 0 0 22px rgba(255, 178, 84, 0.08);
  opacity: 1;
  transition: border-color 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.hall-hotspot:hover::before,
.hall-hotspot:focus-visible::before {
  border-color: rgba(255, 224, 160, 0.55);
  background: radial-gradient(ellipse at center, rgba(255, 200, 118, 0.12), transparent 76%);
  box-shadow: 0 0 34px rgba(255, 187, 96, 0.22);
}

.hall-hotspot:focus-visible { outline: 3px solid #ffe8b1; outline-offset: 4px; }

/* 常亮标签：挂在热区下缘 */
.hall-label {
  position: absolute;
  left: 50%;
  top: calc(100% + 6px);
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border: 1px solid rgba(244, 200, 121, 0.32);
  border-radius: 999px;
  background: rgba(14, 10, 5, 0.72);
  color: var(--hall-cream);
  font-size: 13px;
  letter-spacing: 1px;
  white-space: nowrap;
  backdrop-filter: blur(4px);
  transition: border-color 240ms ease, color 240ms ease, background 240ms ease;
}

.hall-label::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--hall-gold-hot);
  box-shadow: 0 0 8px rgba(255, 179, 71, 0.9);
}

.hall-hotspot:hover .hall-label,
.hall-hotspot:focus-visible .hall-label {
  border-color: rgba(255, 224, 160, 0.7);
  background: rgba(24, 16, 7, 0.88);
  color: #fff0d0;
}

/* 标签朝上的热区（下缘贴近桌面/画面底部时用） */
.hall-hotspot.label-above .hall-label { top: auto; bottom: calc(100% + 6px); }

/* 五个热区坐标（图面百分比，对应 6101×2306 合成宽图：原图区间 x 1002–5098，全高。
   由原 16:9 校准值换算：x' = 16.42% + x×0.6714，y 不变 */
.hall-hotspot--learn    { left: 19.4%; top: 34%;   width: 13.1%; height: 22%; }
.hall-hotspot--photos   { left: 19.8%; top: 57%;   width: 9.4%;  height: 7.5%; }
.hall-hotspot--journey  { left: 43.9%; top: 23%;   width: 12.1%; height: 40%; }
.hall-hotspot--works    { left: 67.4%; top: 37%;   width: 14.1%; height: 18%; }
.hall-hotspot--students { left: 68.4%; top: 56.5%; width: 10.8%; height: 8%; }

body[data-scene-focus] .hall-hotspots { pointer-events: none; }
body[data-scene-focus] .hall-hotspot { opacity: 0; transition: opacity 300ms ease; }
.hall-hotspot { transition: opacity 300ms ease; }

/* ---------- 内容面板（第 1 层） ---------- */

.hall-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 20;
  width: min(430px, 92vw);
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(18, 12, 6, 0.94), rgba(10, 7, 4, 0.96));
  border-left: 1px solid rgba(244, 200, 121, 0.22);
  box-shadow: -18px 0 50px rgba(0, 0, 0, 0.5);
  transform: translateX(105%);
  visibility: hidden;
  transition: transform 480ms cubic-bezier(0.22, 0.8, 0.2, 1), visibility 0s linear 480ms;
}

.hall-panel.is-open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 480ms cubic-bezier(0.22, 0.8, 0.2, 1);
}

/* 聚焦右侧墙时面板从左侧进入 */
.hall-panel.from-left {
  right: auto;
  left: 0;
  border-left: 0;
  border-right: 1px solid rgba(244, 200, 121, 0.22);
  box-shadow: 18px 0 50px rgba(0, 0, 0, 0.5);
  transform: translateX(-105%);
}

.hall-panel.from-left.is-open { transform: translateX(0); }

.hall-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 22px 14px;
  border-bottom: 1px solid rgba(244, 200, 121, 0.16);
}

.hall-panel-head h2 {
  margin: 0;
  color: var(--hall-cream);
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
}

.hall-panel-head .sub {
  margin: 6px 0 0;
  color: var(--hall-muted);
  font-size: 13px;
  letter-spacing: 0.5px;
}

.hall-close {
  flex: none;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(244, 200, 121, 0.3);
  border-radius: 50%;
  background: transparent;
  color: var(--hall-cream);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 200ms ease, background 200ms ease;
}

.hall-close:hover, .hall-close:focus-visible { border-color: rgba(255, 224, 160, 0.7); background: rgba(255, 200, 118, 0.08); }

.hall-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 22px 26px;
  scrollbar-width: thin;
  scrollbar-color: rgba(244, 200, 121, 0.3) transparent;
}

.hall-card {
  display: block;
  width: 100%;
  margin: 0 0 12px;
  padding: 16px 16px 14px;
  border: 1px solid rgba(244, 200, 121, 0.2);
  border-radius: 10px;
  background: rgba(255, 214, 140, 0.04);
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 200ms ease, background 200ms ease, transform 200ms ease;
}

.hall-card:hover, .hall-card:focus-visible {
  border-color: rgba(255, 224, 160, 0.55);
  background: rgba(255, 214, 140, 0.08);
  transform: translateY(-2px);
}

.hall-card .thumb {
  display: block;
  overflow: hidden;
  margin: -4px -4px 10px;
  border-radius: 7px;
  aspect-ratio: 16 / 8;
  background: rgba(0, 0, 0, 0.3);
}

.hall-card .thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.hall-card .meta {
  display: block;
  margin: 0 0 6px;
  color: var(--hall-gold-hot);
  font-size: 12px;
  letter-spacing: 1px;
}

.hall-card h3 {
  margin: 0 0 8px;
  color: var(--hall-cream);
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 500;
}

.hall-card p { margin: 0; color: var(--hall-muted); font-size: 13px; line-height: 1.75; }

/* ---------- 大图/详情浮层（第 2 层） ---------- */

.hall-lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vh 4vw;
  background: rgba(5, 3, 1, 0.78);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease, visibility 0s linear 300ms;
}

.hall-lightbox.is-open { opacity: 1; visibility: visible; transition: opacity 300ms ease; }

.hall-lightbox-inner {
  position: relative;
  width: min(680px, 100%);
  max-height: 100%;
  overflow-y: auto;
  padding: 26px 28px 24px;
  border: 1px solid rgba(244, 200, 121, 0.3);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(24, 16, 8, 0.98), rgba(12, 8, 4, 0.98));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.hall-lightbox-inner .hall-close { position: absolute; top: 14px; right: 14px; }

.hall-lightbox-inner .meta { display: block; margin: 0 0 8px; color: var(--hall-gold-hot); font-size: 13px; letter-spacing: 1.5px; }

.hall-lightbox-inner h3 {
  margin: 0 0 12px;
  padding-right: 40px;
  color: var(--hall-cream);
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
}

.hall-lightbox-inner .body { margin: 0 0 16px; color: var(--hall-muted); font-size: 15px; line-height: 1.9; }

/* 图片位：有图放图（Ken Burns 在 P1 加），没图放「素材待补」画框 */
.hall-figure {
  position: relative;
  overflow: hidden;
  margin: 0 0 16px;
  border-radius: 10px;
  border: 1px solid rgba(244, 200, 121, 0.22);
}

.hall-figure img { display: block; width: 100%; }

.hall-figure.is-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255, 196, 110, 0.1), transparent 55%),
    radial-gradient(ellipse at 75% 80%, rgba(120, 62, 22, 0.24), transparent 55%),
    linear-gradient(160deg, #171008, #0c0804);
  color: rgba(255, 226, 167, 0.5);
  font-family: var(--font-kai, serif);
  font-size: 15px;
  letter-spacing: 3px;
}

.hall-link {
  display: inline-block;
  padding: 9px 20px;
  border: 1px solid rgba(255, 191, 104, 0.5);
  border-radius: 999px;
  background: rgba(255, 179, 71, 0.1);
  color: #ffd997;
  font-size: 14px;
  text-decoration: none;
  transition: background 200ms ease, border-color 200ms ease;
}

.hall-link:hover, .hall-link:focus-visible { background: rgba(255, 179, 71, 0.2); border-color: rgba(255, 217, 151, 0.8); }

/* ---------- 桌面操作条 ---------- */

.hall-dock {
  position: absolute;
  left: 50%;
  bottom: 3.2%;
  z-index: 10;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px;
  border: 1px solid rgba(244, 200, 121, 0.28);
  border-radius: 999px;
  background: rgba(14, 10, 5, 0.66);
  backdrop-filter: blur(6px);
  white-space: nowrap;
}

.hall-dock .hint { margin: 0; color: var(--hall-muted); font-size: 13px; letter-spacing: 1px; }

.hall-dock button,
.hall-dock a {
  padding: 7px 16px;
  border: 1px solid rgba(255, 191, 104, 0.45);
  border-radius: 999px;
  background: transparent;
  color: #ffd997;
  font-size: 13px;
  text-decoration: none;
  cursor: pointer;
  transition: background 200ms ease, border-color 200ms ease;
}

.hall-dock button:hover, .hall-dock a:hover,
.hall-dock button:focus-visible, .hall-dock a:focus-visible { background: rgba(255, 179, 71, 0.14); border-color: rgba(255, 217, 151, 0.8); }

/* 转化主按钮：获客页的常驻出口 */
.hall-dock a.is-primary {
  border-color: rgba(255, 205, 120, 0.9);
  background: linear-gradient(135deg, rgba(255, 179, 71, 0.32), rgba(230, 140, 40, 0.4));
  color: #fff0d0;
  font-weight: 600;
  box-shadow: 0 0 18px rgba(255, 179, 71, 0.28);
}

.hall-dock a.is-primary:hover,
.hall-dock a.is-primary:focus-visible {
  background: linear-gradient(135deg, rgba(255, 190, 90, 0.45), rgba(235, 150, 50, 0.52));
  box-shadow: 0 0 26px rgba(255, 190, 96, 0.4);
}

body[data-scene-focus] .hall-dock { opacity: 0; pointer-events: none; transition: opacity 300ms ease; }
.hall-dock { transition: opacity 300ms ease; }

/* ---------- 氛围层：灯笼呼吸 / 尘埃 / 薄雾 ---------- */

.hall-fx { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }

/* 聚焦推近时氛围层跟随背景一起缩放，保持光晕贴在灯笼上 */
.hall-fx {
  transform-origin: center;
  transition: transform 620ms cubic-bezier(0.22, 0.8, 0.2, 1), opacity 420ms ease;
  will-change: transform;
}

body[data-scene-focus="learn"]    .hall-fx { transform: translate(24%, 5%) scale(1.45); }
body[data-scene-focus="photos"]   .hall-fx { transform: translate(25.5%, -10.7%) scale(1.45); }
body[data-scene-focus="journey"]  .hall-fx { transform: translate(0, 7%) scale(1.3); }
body[data-scene-focus="works"]    .hall-fx { transform: translate(-24.5%, 4%) scale(1.45); }
body[data-scene-focus="students"] .hall-fx { transform: translate(-23.8%, -10.5%) scale(1.45); }

/* 灯笼呼吸光晕：中心对准图面灯笼，周期与相位错开避免同频闪 */
.fx-glow {
  position: absolute;
  width: 12%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 186, 92, 0.2), rgba(255, 160, 60, 0.06) 46%, transparent 70%);
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  animation: fx-breathe 7s ease-in-out infinite;
}

.fx-glow--a { left: 36.6%; top: 20%; width: 8%; }
.fx-glow--b { left: 63.1%; top: 20%; width: 7.4%; animation-duration: 8.5s; animation-delay: -2.6s; }
.fx-glow--c { left: 39.8%; top: 53%; width: 6.7%; animation-duration: 9.5s; animation-delay: -1.4s; }
.fx-glow--d { left: 60.7%; top: 52%; width: 6.7%; animation-duration: 8s;   animation-delay: -4.2s; }
.fx-glow--e { left: 48.5%; top: 73%; width: 10.7%; animation-duration: 6.5s; animation-delay: -3.1s; }
.fx-glow--f { left: 6%;    top: 32%; width: 6.7%; animation-duration: 10s;  animation-delay: -5.5s; }
.fx-glow--g { left: 90%;   top: 61%; width: 7.4%; animation-duration: 9s;   animation-delay: -2s; }
.fx-glow--h { left: 12.6%; top: 59%; width: 6.7%; animation-duration: 8.8s; animation-delay: -6.3s; }

@keyframes fx-breathe {
  0%, 100% { opacity: 0.55; }
  38%      { opacity: 1; }
  62%      { opacity: 0.72; }
}

/* 尘埃微粒：暖光里缓慢上浮 + 横向轻摆 */
.fx-dust {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 214, 150, 0.75);
  box-shadow: 0 0 6px rgba(255, 200, 120, 0.6);
  opacity: 0;
  animation: fx-float 16s linear infinite;
}

.fx-dust--1 { left: 38.6%; top: 68%; animation-delay: 0s; }
.fx-dust--2 { left: 44.6%; top: 76%; width: 2px; height: 2px; animation-delay: -3s; animation-duration: 19s; }
.fx-dust--3 { left: 50%;   top: 72%; animation-delay: -6s; animation-duration: 14s; }
.fx-dust--4 { left: 54.7%; top: 78%; width: 2px; height: 2px; animation-delay: -9s; animation-duration: 21s; }
.fx-dust--5 { left: 59.4%; top: 70%; animation-delay: -12s; animation-duration: 17s; }
.fx-dust--6 { left: 41.3%; top: 58%; width: 2px; height: 2px; animation-delay: -5s; animation-duration: 23s; }
.fx-dust--7 { left: 63.4%; top: 60%; animation-delay: -14s; animation-duration: 18s; }
.fx-dust--8 { left: 47.3%; top: 64%; width: 2px; height: 2px; animation-delay: -8s; animation-duration: 20s; }

@keyframes fx-float {
  0%   { transform: translate(0, 0);        opacity: 0; }
  12%  { opacity: 0.8; }
  50%  { transform: translate(8px, -46px);  opacity: 0.5; }
  85%  { opacity: 0.15; }
  100% { transform: translate(-5px, -90px); opacity: 0; }
}

/* 薄雾：桌面上方一层缓慢左右漂移的暖雾 */
.fx-fog {
  position: absolute;
  left: -20%;
  bottom: 8%;
  width: 140%;
  height: 30%;
  background:
    radial-gradient(ellipse 34% 58% at 28% 60%, rgba(255, 205, 140, 0.05), transparent),
    radial-gradient(ellipse 40% 52% at 62% 45%, rgba(240, 190, 130, 0.06), transparent),
    radial-gradient(ellipse 30% 60% at 85% 62%, rgba(255, 210, 150, 0.04), transparent);
  animation: fx-drift 46s ease-in-out infinite alternate;
}

@keyframes fx-drift {
  from { transform: translateX(-3%); }
  to   { transform: translateX(3%); }
}

/* 详情浮层照片：统一 Ken Burns 预设（缓慢单向推近，每次打开重新播放） */
.hall-figure img {
  transform-origin: 50% 40%;
  animation: fx-kenburns 14s ease-out both;
}

@keyframes fx-kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

/* ---------- 入场点灯（一次性） ---------- */

.hall-scene { filter: brightness(1); }

body.hall-entering .hall-scene { animation: hall-lightup 1400ms ease-out both; }

@keyframes hall-lightup {
  from { filter: brightness(0.12) saturate(0.6); }
  60%  { filter: brightness(0.75) saturate(0.92); }
  to   { filter: brightness(1) saturate(1); }
}

body.hall-entering .hall-hotspot,
body.hall-entering .hall-dock { animation: hall-fadein 700ms ease-out 1100ms both; }

@keyframes hall-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ---------- 校准网格（?dev=1） ---------- */

.hall-devgrid {
  position: absolute;
  inset: 0;
  z-index: 25;
  display: none;
  background-image:
    repeating-linear-gradient(to right, rgba(0, 255, 200, 0.25) 0 1px, transparent 1px 10%),
    repeating-linear-gradient(to bottom, rgba(0, 255, 200, 0.25) 0 1px, transparent 1px 10%);
  pointer-events: none;
}

body.hall-dev .hall-devgrid { display: block; }
body.hall-dev .hall-hotspot::before { border-color: rgba(0, 255, 200, 0.7); }

.hall-devreadout {
  position: fixed;
  left: 10px;
  bottom: 10px;
  z-index: 60;
  display: none;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.8);
  color: #4dffd2;
  font-family: monospace;
  font-size: 12px;
}

body.hall-dev .hall-devreadout { display: block; }

/* ---------- 动效关怀 ---------- */

@media (prefers-reduced-motion: reduce) {
  .hall-bg, .hall-panel, .hall-lightbox, .hall-hotspot, .hall-dock, .hall-card, .hall-fx { transition: none; }
  body.hall-entering .hall-scene,
  body.hall-entering .hall-hotspot,
  body.hall-entering .hall-dock,
  .fx-glow, .fx-dust, .fx-fog,
  .hall-figure img { animation: none; }
  .fx-dust { opacity: 0.4; }
}

/* ---------- 窄屏降级（≤760px）：一屏封面 + 线性卡片流 ---------- */

@media (max-width: 760px) {
  body.hall-body { display: block; overflow: auto; }
  .hall-room { display: none !important; }
  .hall-panel, .hall-lightbox-inner { width: 100%; }

  .hall-linear { display: block !important; padding: 0 0 60px; }

  .hall-linear-hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 46vh;
    padding: 22px 20px;
    background: url("./assets/hall-bg-low.webp") center 30% / cover no-repeat;
  }

  .hall-linear-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 8, 3, 0.25) 30%, rgba(10, 8, 3, 0.92) 96%);
  }

  .hall-linear-hero h1 {
    position: relative;
    margin: 0;
    color: var(--hall-cream);
    font-family: var(--font-serif);
    font-size: 30px;
    font-weight: 500;
  }

  .hall-linear-hero p { position: relative; margin: 8px 0 0; color: var(--hall-muted); font-size: 14px; }

  .hall-linear-section { padding: 26px 20px 4px; }

  .hall-linear-section > h2 {
    margin: 0 0 4px;
    color: var(--hall-cream);
    font-family: var(--font-serif);
    font-size: 21px;
    font-weight: 500;
  }

  .hall-linear-section > .sub { margin: 0 0 14px; color: var(--hall-gold-hot); font-size: 12px; letter-spacing: 1px; }

  .hall-linear-cta { padding: 34px 20px 10px; text-align: center; }

  .hall-linear-cta p { margin: 0 0 16px; color: var(--hall-muted); font-family: var(--font-kai, serif); font-size: 15px; }

  .hall-linear-cta .hall-link.is-primary {
    display: block;
    padding: 14px 20px;
    border-color: rgba(255, 205, 120, 0.9);
    background: linear-gradient(135deg, rgba(255, 179, 71, 0.32), rgba(230, 140, 40, 0.4));
    color: #fff0d0;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 0 18px rgba(255, 179, 71, 0.28);
  }
}

@media (min-width: 761px) {
  .hall-linear { display: none !important; }
}
