.page-shell {
  position: relative;
  min-height: 100svh;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-height) + var(--safe-area-top) + 48px) 0 42px;
  background:
    linear-gradient(180deg, rgba(var(--accent-rgb), 0.05) 0%, transparent 54%),
    linear-gradient(120deg, rgba(255, 246, 228, 0.45) 0%, rgba(255, 246, 228, 0.06) 34%, transparent 70%);
}

.page-hero::before,
.page-hero::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.page-hero::before {
  inset: 14% 10% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), 0.24), transparent);
}

.page-hero::after {
  width: clamp(180px, 24vw, 320px);
  height: clamp(180px, 24vw, 320px);
  right: max(-30px, calc(6vw - 40px));
  top: 40px;
  border-radius: 42% 58% 54% 46%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 247, 232, 0.58), transparent 62%),
    radial-gradient(circle at 50% 50%, rgba(var(--accent-rgb), 0.16), rgba(var(--accent-rgb), 0.02) 72%, transparent 76%);
  filter: blur(10px);
  opacity: 0.56;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 880px;
}

.page-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  margin-bottom: 20px;
  border-radius: var(--radius-pill);
  background: rgba(var(--accent-rgb), 0.08);
  border: 1px solid rgba(var(--accent-rgb), 0.14);
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 18px;
}

.page-copy {
  max-width: 720px;
  margin: 0 auto 28px;
  color: var(--text2);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.8;
}

.page-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.page-chip-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.page-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text2);
  font-size: 0.88rem;
}

.page-shell-store .inquiry.section {
  padding-top: 32px;
}

html[data-device="mobile"] .page-hero {
  padding: calc(var(--nav-height) + var(--safe-area-top) + 28px) 0 24px;
}

html[data-device="mobile"] .page-hero::before {
  inset: 18% 7% auto;
}

html[data-device="mobile"] .page-hero::after {
  width: 170px;
  height: 170px;
  right: -48px;
  top: 24px;
  opacity: 0.38;
  filter: blur(8px);
}

html[data-device="mobile"] .page-kicker {
  margin-bottom: 16px;
}

html[data-device="mobile"] .page-title {
  font-size: clamp(2.05rem, 11vw, 3.1rem);
}

html[data-device="mobile"] .page-copy {
  max-width: 34ch;
  font-size: 1rem;
  line-height: 1.72;
  margin-bottom: 22px;
}

html[data-device="mobile"] .page-actions {
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

html[data-device="mobile"] .page-actions .btn {
  width: 100%;
}

html[data-device="mobile"] .page-chip-row {
  gap: 8px;
}

html[data-device="mobile"] .page-chip {
  flex: 1 1 100%;
  min-height: 44px;
}

@media (max-width: 720px) {
  .page-hero {
    padding-top: calc(var(--nav-height) + var(--safe-area-top) + 34px);
    padding-bottom: 28px;
  }

  .page-copy {
    margin-bottom: 24px;
  }
}
