:root {
  /* 臻管家：香槟金奢 · 明亮高端（不用纯黑） */
  --glow: #e8c49a;
  --glow-soft: rgba(232, 196, 154, 0.45);
  --gold: #c9a36a;
  --gold-bright: #d4b07a;
  --primary: #b08a4f;
  --primary-deep: #8a6a3a;
  --primary-mid: #c9a36a;
  --ink: #3f3428;
  --slate: #5c4d3d;
  --text: #3f3428;
  --text-soft: #7a6b5a;
  --text-on-dark: #fffaf3;
  --text-on-dark-soft: rgba(255, 250, 243, 0.88);
  --surface: #fbf7f1;
  --surface-alt: #f4ebe0;
  --white: #ffffff;
  --line: rgba(176, 138, 79, 0.16);
  --line-strong: rgba(176, 138, 79, 0.28);
  --chip-bg: rgba(255, 255, 255, 0.8);
  --chip-border: rgba(176, 138, 79, 0.22);
  --shadow:
    0 4px 8px rgba(138, 106, 58, 0.05),
    0 24px 52px rgba(138, 106, 58, 0.1);
  --shadow-soft:
    0 2px 4px rgba(138, 106, 58, 0.04),
    0 12px 28px rgba(138, 106, 58, 0.08);
  --shadow-glass:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 18px 40px rgba(138, 106, 58, 0.1);
  --radius-xl: 22px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --container: 1240px;
  --font-display: "Outfit", "Noto Sans SC", "PingFang SC", sans-serif;
  --font-serif: "Cormorant Garamond", "Noto Serif SC", "Songti SC", serif;
  --font-body: "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(ellipse 70% 45% at 90% 0%, rgba(232, 196, 154, 0.28), transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 20%, rgba(201, 163, 106, 0.1), transparent 50%),
    var(--surface);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  cursor: pointer;
  font: inherit;
}

.page {
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section {
  padding: 96px 0;
}

h1,
h2,
h3,
p,
ul,
ol {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.025em;
  line-height: 1.22;
  font-weight: 700;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-deep), var(--gold-bright));
  border-radius: 2px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 40px;
}

.section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  max-width: none;
}

.section-head > p,
.section-head-center > p:last-child {
  max-width: 42ch;
  color: var(--text-soft);
  font-size: 15px;
}

.section-head-center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-head-center h2 {
  max-width: none;
}

.lead {
  margin-top: 16px;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.8;
}

.glass-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-glass);
  backdrop-filter: blur(12px);
}

.depth-card {
  box-shadow: var(--shadow);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px) saturate(1.15);
}

.site-header .container {
  position: relative;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
}

.brand-logo {
  height: 40px;
  width: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav a {
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 500;
  transition: color 160ms ease;
}

.nav a:hover {
  color: var(--primary-deep);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.header-contact {
  position: relative;
}

.header-contact-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: linear-gradient(180deg, #fff, var(--surface-alt));
  color: var(--primary);
  box-shadow: var(--shadow-soft);
}

.header-contact-trigger svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-qr-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 220px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.header-contact:hover .header-qr-panel,
.header-contact:focus-within .header-qr-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-qr-panel img {
  width: 100%;
  border-radius: 12px;
}

.header-qr-panel strong {
  display: block;
  margin-top: 10px;
  font-size: 15px;
}

.header-qr-panel p {
  margin-top: 6px;
  color: var(--text-soft);
  font-size: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(115deg, #6b4f2e 0%, #9a7b4f 48%, #d4b483 100%);
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 12px 28px rgba(107, 79, 46, 0.38);
}

.btn-glow {
  animation: pulseGold 2.8s ease-in-out infinite;
}

@keyframes pulseGold {
  0%,
  100% {
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.22) inset,
      0 12px 28px rgba(107, 79, 46, 0.38);
  }
  50% {
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.28) inset,
      0 14px 36px rgba(201, 163, 106, 0.55);
  }
}

.btn-secondary {
  border-color: var(--line-strong);
  background: #fff;
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.btn-ghost-light {
  border-color: rgba(232, 196, 154, 0.42);
  background: rgba(28, 25, 23, 0.38);
  color: var(--text-on-dark);
}

.btn-ghost-light:hover {
  background: rgba(232, 196, 154, 0.16);
}

.btn-header {
  min-height: 40px;
  padding: 0 16px;
  font-size: 14px;
  white-space: nowrap;
}

/* ========== Hero（高度对齐 geo-site，文案靠版心） ========== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  padding: 40px 0 48px;
  overflow: hidden;
  color: var(--text);
  background:
    radial-gradient(ellipse 50% 45% at 78% 30%, rgba(232, 196, 154, 0.45), transparent 58%),
    radial-gradient(ellipse 40% 40% at 10% 75%, rgba(201, 163, 106, 0.18), transparent 55%),
    linear-gradient(165deg, #faf4eb 0%, #fffaf4 40%, #f5ebdd 100%);
}

.hero-fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-fx__aurora {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 30% at 60% 40%, rgba(232, 196, 154, 0.12), transparent 60%),
    radial-gradient(ellipse 30% 25% at 30% 70%, rgba(154, 123, 79, 0.18), transparent 55%);
  animation: auroraShift 14s ease-in-out infinite alternate;
}

@keyframes auroraShift {
  from {
    opacity: 0.7;
    transform: scale(1);
  }
  to {
    opacity: 1;
    transform: scale(1.05);
  }
}

.hero-fx__grain {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(232, 196, 154, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 196, 154, 0.05) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 88%);
}

.hero-fx__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}

.hero-fx__orb--a {
  width: 360px;
  height: 360px;
  right: -20px;
  top: -60px;
  background: rgba(201, 163, 106, 0.32);
}

.hero-fx__orb--b {
  width: 260px;
  height: 260px;
  left: 6%;
  bottom: -40px;
  background: rgba(107, 79, 46, 0.45);
}

.hero-poster {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: center;
  position: relative;
  z-index: 2;
  /* 与下方 .container 同宽同边距对齐 */
}

.hero-copy {
  width: 100%;
  max-width: 36em;
}

.hero-eyebrow {
  margin-bottom: 14px;
  color: var(--primary-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hero-copy h1 {
  margin-top: 0;
  max-width: none;
  white-space: normal;
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.28;
}

.hero-lead {
  margin-top: 16px;
  max-width: 40ch;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.hero-chips span {
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid var(--chip-border);
  background: rgba(255, 255, 255, 0.88);
  color: var(--primary-deep);
  font-size: 12px;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

/* Scan / item-tracking hero stage — 二维码 + 靠向版心 */
.hero-stage {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 360px;
  padding: 0;
  position: relative;
}

.scan-stage {
  position: relative;
  width: min(100%, 460px);
  margin: 0 auto;
}

.scan-stage__device {
  padding: 16px;
  border-radius: 28px;
  background: linear-gradient(165deg, #ffffff 0%, #faf4eb 100%);
  border: 1px solid rgba(176, 138, 79, 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 28px 56px rgba(138, 106, 58, 0.16),
    0 0 40px rgba(201, 163, 106, 0.12);
  animation: deviceFloat 7s ease-in-out infinite;
}

@keyframes deviceFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.scan-stage__bezel {
  border-radius: 20px;
  padding: 10px;
  background: linear-gradient(180deg, #fffaf3, #f5ebdd);
  border: 1px solid rgba(176, 138, 79, 0.16);
}

.scan-stage__screen {
  position: relative;
  overflow: hidden;
  padding: 22px 16px 16px;
  border-radius: 14px;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(201, 163, 106, 0.14), transparent 55%),
    linear-gradient(180deg, #ffffff, #fbf7f1);
  min-height: 320px;
}

.scan-beam {
  position: absolute;
  left: 10%;
  right: 10%;
  height: 2px;
  top: 18%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 16px var(--glow-soft);
  animation: scanSweep 3.2s ease-in-out infinite;
  z-index: 2;
}

@keyframes scanSweep {
  0%, 100% { top: 14%; opacity: 0.35; }
  50% { top: 38%; opacity: 1; }
}

.scan-code {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 16px;
  padding-top: 4px;
}

.scan-code__qr {
  width: 108px;
  height: 108px;
  margin: 0 auto 12px;
  padding: 8px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(176, 138, 79, 0.22);
  box-shadow: 0 8px 20px rgba(138, 106, 58, 0.08);
}

.scan-code__qr svg {
  width: 100%;
  height: 100%;
  display: block;
}

.scan-code strong {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--primary-deep);
}

.scan-item {
  position: relative;
  z-index: 1;
  padding: 14px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(176, 138, 79, 0.18);
  box-shadow: 0 8px 20px rgba(138, 106, 58, 0.06);
}

.scan-item em {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 6px;
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  background: rgba(201, 163, 106, 0.18);
  color: var(--primary-deep);
}

.scan-item h4 {
  margin-top: 8px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.scan-item p {
  margin-top: 4px;
  font-size: 12px;
  color: var(--text-soft);
}

.scan-trail {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.scan-trail li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(201, 163, 106, 0.08);
  border: 1px solid rgba(176, 138, 79, 0.12);
  font-size: 12px;
  color: var(--text-soft);
}

.scan-trail li.is-now {
  border-color: rgba(176, 138, 79, 0.35);
  background: rgba(201, 163, 106, 0.16);
  color: var(--primary-deep);
}

.scan-trail small {
  color: inherit;
  opacity: 0.75;
  white-space: nowrap;
}

.scan-float {
  position: absolute;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(176, 138, 79, 0.22);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 36px rgba(138, 106, 58, 0.12);
  animation: floatCard 5.5s ease-in-out infinite;
}

.scan-float strong {
  display: block;
  font-size: 12px;
  color: var(--text-soft);
  font-weight: 600;
}

.scan-float span {
  display: block;
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-deep);
}

/* 浮卡放在靠中/右侧，避免把主体拽出左边界 */
.scan-float--a {
  top: 8%;
  right: -6%;
  left: auto;
  animation-delay: 0.4s;
}

.scan-float--b {
  bottom: 14%;
  right: -4%;
  left: auto;
  animation-delay: 1.1s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}


/* Why */
.why-section {
  background: linear-gradient(180deg, #fff 0%, var(--surface) 100%);
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: start;
}

.why-copy h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  max-width: none;
}

.why-points {
  display: grid;
  gap: 14px;
}

.why-points article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  padding: 22px 20px;
  border-radius: var(--radius-lg);
}

.why-points span {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.04em;
}

.why-points h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.why-points p {
  color: var(--text-soft);
  font-size: 14px;
}

/* Capabilities */
.promise-section {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(232, 196, 154, 0.16), transparent 60%),
    linear-gradient(180deg, var(--surface-alt), var(--surface));
}

.promise-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.promise-row article {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.promise-row article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-deep), var(--gold-bright));
}

.cap-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(145deg, #6b4f2e, #b8956a);
  color: #fff8ef;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.promise-row strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--primary-deep);
}

.promise-row p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.7;
}

/* Shots */
.shots-section {
  background: var(--white);
}

.shot-feature {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 22px;
  padding: 20px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(ellipse 50% 60% at 80% 20%, rgba(201, 163, 106, 0.28), transparent 55%),
    linear-gradient(145deg, #8a6a3a 0%, #b08a4f 55%, #d4b07a 100%);
  color: var(--text-on-dark);
  box-shadow: var(--shadow);
}

.shot-feature-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #8a6a3a;
  border: 1px solid rgba(232, 196, 154, 0.22);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.shot-feature-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.shot-feature-copy span {
  color: var(--gold-bright);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.shot-feature-copy h3 {
  margin-top: 10px;
  font-size: clamp(22px, 2.4vw, 30px);
}

.shot-feature-copy p {
  margin-top: 12px;
  color: var(--text-on-dark-soft);
  font-size: 14px;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--gold-bright);
  font-weight: 700;
  font-size: 14px;
}

.text-link:hover {
  color: #fff;
}

.shot-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.shot-tile {
  padding: 12px;
  border-radius: var(--radius-lg);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.shot-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.shot-tile-media {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #8a6a3a;
  margin-bottom: 12px;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
}

.shot-tile-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.shot-tile span {
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
}

.shot-tile h3 {
  margin-top: 4px;
  font-size: 17px;
}

.shot-tile p {
  margin-top: 6px;
  color: var(--text-soft);
  font-size: 13px;
}

/* Flow */
.flow-section {
  background:
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(201, 163, 106, 0.28), transparent 60%),
    linear-gradient(165deg, #8a6a3a 0%, #b08a4f 55%, #c9a36a 100%);
  color: var(--text-on-dark);
}

.flow-section .section-kicker {
  color: var(--gold-bright);
}

.flow-section .section-kicker::before {
  background: linear-gradient(90deg, var(--gold-bright), transparent);
}

.flow-section .section-head-center > p:last-child {
  color: var(--text-on-dark-soft);
}

.flow-rail {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.flow-rail li {
  padding: 26px 20px;
  border-radius: var(--radius-lg);
  background: rgba(28, 22, 16, 0.55) !important;
  border: 1px solid rgba(232, 196, 154, 0.24);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.flow-rail span {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold-bright);
  margin-bottom: 12px;
}

.flow-rail h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.flow-rail p {
  color: var(--text-on-dark-soft);
  font-size: 13px;
}

/* Scenes */
.scenes-section {
  background: var(--white);
}

.scene-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.scene-list article {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.scene-list article:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.scene-list h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--primary-deep);
}

.scene-list p {
  color: var(--text-soft);
  font-size: 14px;
}

/* CTA */
.cta-band {
  position: relative;
  padding: 64px 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201, 163, 106, 0.32), transparent 60%),
    linear-gradient(165deg, #8a6a3a 0%, #b08a4f 48%, #d4b07a 120%);
  color: var(--text-on-dark);
}

.cta-band-fx {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(240, 217, 176, 0.08), transparent 40%);
  pointer-events: none;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
  z-index: 1;
}

.cta-logo {
  height: 36px;
  width: auto;
  margin-bottom: 14px;
}

.cta-band h2 {
  font-size: clamp(24px, 2.8vw, 34px);
  margin-bottom: 10px;
  max-width: none;
}

.cta-band p {
  color: var(--text-on-dark-soft);
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

/* Contact */
.contact-section {
  background: var(--surface-alt);
}

.contact-panel {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  align-items: center;
  padding: 36px;
  border-radius: var(--radius-xl);
}

.contact-qr-block {
  text-align: center;
}

.contact-qr-block img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.contact-qr-block p {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-soft);
}

.contact-copy h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  margin-bottom: 10px;
}

.contact-copy > p {
  color: var(--text-soft);
  max-width: 48ch;
}

.contact-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.contact-highlights li {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(154, 123, 79, 0.1);
  color: var(--primary-deep);
  font-size: 13px;
  font-weight: 600;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

/* Footer */
.site-footer {
  padding: 44px 0 100px;
  background: #8a6a3a;
  color: rgba(250, 246, 240, 0.62);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 12px;
}

.footer-brand-block p {
  max-width: 48ch;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 18px;
  margin-top: 14px;
}

.footer-links a {
  color: var(--gold-bright);
  font-size: 14px;
  font-weight: 600;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(232, 196, 154, 0.15);
  font-size: 12px;
}

.footer-legal a {
  color: rgba(250, 246, 240, 0.9);
}

.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  gap: 10px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(16, 12, 8, 0.94);
  border-top: 1px solid rgba(232, 196, 154, 0.2);
  backdrop-filter: blur(12px);
}

.mobile-cta-bar .btn {
  flex: 1;
}

.reveal-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .nav {
    gap: 14px;
  }

  .nav a {
    font-size: 13px;
  }

  .scan-float--a {
    right: -8%;
  }

  .scan-float--b {
    left: -8%;
  }
}

@media (max-width: 960px) {
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: auto;
    padding: 28px 0 36px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-poster,
  .why-layout,
  .shot-feature,
  .promise-row,
  .flow-rail,
  .shot-trio,
  .contact-panel,
  .cta-band-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-stage {
    min-height: 0;
    order: -1;
  }

  .scan-stage {
    width: min(100%, 380px);
    margin: 0 auto;
  }

  .scan-float--a,
  .scan-float--b {
    display: none;
  }

  .flow-rail {
    grid-template-columns: 1fr 1fr;
  }

  .nav {
    display: none;
  }

  .header-actions.is-open .nav {
    display: flex;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: rgba(250, 247, 242, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .header-actions.is-open .nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-toggle {
    display: block;
    order: 3;
  }

  .header-actions {
    margin-left: auto;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 36px 0 44px;
  }

  .hero-copy h1 {
    font-size: clamp(24px, 6.5vw, 30px);
  }

  .scene-list {
    grid-template-columns: 1fr;
  }

  .flow-rail,
  .shot-trio {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    padding: 22px;
    gap: 20px;
  }

  .contact-qr-block {
    max-width: 180px;
    margin: 0 auto;
  }

  .mobile-cta-bar {
    display: flex;
  }

  .site-footer {
    padding-bottom: 110px;
  }

  .btn-header {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-up {
    opacity: 1;
    transform: none;
  }
}
