:root {
  --bg: #f7f3f3;
  --surface: #fff9f9;
  --surface-strong: #ffffff;
  --text: #2a2326;
  --muted: #7f6d72;
  --accent: #cf171f;
  --accent-strong: #f03b2f;
  --accent-soft: #ffe1e1;
  --line: rgba(42, 35, 38, 0.12);
  --shadow: 0 24px 60px rgba(53, 20, 24, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --max: 1460px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(207, 23, 31, 0.12), transparent 30%),
    linear-gradient(180deg, #fffefe 0%, #fbf3f3 34%, #f6eeee 100%);
}

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

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

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
}

.brand-badge {
  width: 108px;
  height: 108px;
  flex: 0 0 108px;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(207, 23, 31, 0.18));
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy small,
.eyebrow,
.meta {
  display: block;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
}

.brand-copy small {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(42, 35, 38, 0.72);
}

.brand-copy strong {
  display: block;
  font-size: 34px;
  line-height: 0.96;
  letter-spacing: 0.01em;
}

.brand-copy span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 48px;
  height: 48px;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
}

.site-nav a {
  position: relative;
  font-weight: 600;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 3px;
  border-radius: 99px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 18px 35px rgba(207, 23, 31, 0.24);
}

.button.is-ghost {
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--line);
}

.hero-slider {
  position: relative;
  overflow: hidden;
}

.slides {
  position: relative;
}

.slide {
  min-height: calc(100vh - 88px);
  display: none;
  position: relative;
  color: #fff;
}

.slide.is-active {
  display: block;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(56, 16, 22, 0.58), rgba(56, 16, 22, 0.15)),
    var(--slide-bg, linear-gradient(135deg, #cf171f 0%, #f45046 100%));
}

.slide-bg::before,
.promo-panel::before,
.contact-map::before,
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.24), transparent 24%),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.18), transparent 22%),
    radial-gradient(circle at 75% 78%, rgba(255, 255, 255, 0.14), transparent 20%);
}

.slide-content {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 88px);
  display: grid;
  align-items: center;
  padding: 96px 0;
}

.hero-grid,
.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-items: center;
}

.hero-copy h1,
.page-hero h1 {
  margin: 14px 0 18px;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.98;
}

.hero-copy p,
.lead {
  font-size: 18px;
  line-height: 1.8;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-card,
.promo-panel,
.contact-map,
.card,
.stat-card,
.form-card,
.policy-card,
.news-card,
.feature-strip {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.hero-card {
  min-height: 520px;
  padding: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-card.store-scene {
  min-height: 620px;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.08);
}

.hero-card.store-photo {
  min-height: 620px;
  padding: 0;
  overflow: hidden;
  background: #fff;
}

.hero-card .card-stack {
  position: absolute;
  inset: 24px;
  display: grid;
  align-content: end;
  gap: 16px;
}

.float-card {
  width: min(100%, 360px);
  margin-left: auto;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 251, 251, 0.94);
  color: var(--text);
  box-shadow: 0 22px 45px rgba(62, 22, 29, 0.14);
}

.float-card strong {
  display: block;
  font-size: 24px;
  margin-bottom: 8px;
}

.store-scene-wrap {
  position: absolute;
  inset: 0;
  padding: 24px 24px 26px;
  display: grid;
  grid-template-rows: auto 1fr;
}

.store-photo-wrap {
  position: absolute;
  inset: 0;
}

.store-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(68, 14, 20, 0.58) 0%, rgba(68, 14, 20, 0.12) 38%, rgba(68, 14, 20, 0.06) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.store-photo-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  max-width: 310px;
  padding: 20px 20px 18px;
  border-radius: 24px;
  color: #fff;
  background: rgba(189, 16, 27, 0.88);
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 20px 38px rgba(68, 14, 20, 0.28);
  backdrop-filter: blur(10px);
}

.store-photo-card small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.store-photo-card strong {
  display: block;
  margin-top: 4px;
  font-size: 30px;
  line-height: 1;
}

.store-photo-card p {
  margin: 10px 0 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

.store-photo-card span {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff6f6;
}

.store-sign {
  position: relative;
  padding: 18px 22px 16px;
  border-radius: 24px;
  border: 4px solid rgba(255, 255, 255, 0.92);
  background: linear-gradient(180deg, #e22327 0%, #ba1018 100%);
  box-shadow: 0 18px 40px rgba(83, 18, 23, 0.28);
}

.store-sign::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
}

.store-sign small {
  display: block;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.store-sign strong {
  display: block;
  margin-top: 2px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  color: #fff;
}

.store-sign span {
  display: inline-block;
  margin-top: 8px;
  padding-top: 8px;
  font-size: 14px;
  font-weight: 800;
  color: #fff9f9;
  letter-spacing: 0.08em;
}

.store-floor {
  position: relative;
  margin-top: 18px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 245, 246, 0.98) 48%, rgba(219, 219, 223, 0.96) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34);
}

.store-floor::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 255, 255, 0.95), transparent 18%),
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.92), transparent 18%),
    radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.9), transparent 18%);
  opacity: 0.9;
}

.ceiling-ring {
  position: absolute;
  left: 50%;
  top: 46px;
  width: 164px;
  height: 56px;
  transform: translateX(-50%);
  border-radius: 999px;
  border: 10px solid #cf171f;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(73, 16, 21, 0.16);
}

.ceiling-screen {
  position: absolute;
  left: 50%;
  top: 68px;
  width: 110px;
  height: 62px;
  transform: translateX(-50%);
  border-radius: 12px;
  border: 4px solid #fff;
  background:
    radial-gradient(circle at 20% 30%, #ffe95c 0 10%, transparent 11%),
    radial-gradient(circle at 44% 34%, #ff7c5a 0 10%, transparent 11%),
    radial-gradient(circle at 70% 36%, #8bd850 0 10%, transparent 11%),
    radial-gradient(circle at 31% 68%, #ffb52f 0 10%, transparent 11%),
    radial-gradient(circle at 60% 70%, #fb4e4e 0 10%, transparent 11%),
    linear-gradient(135deg, #ffd44d 0%, #ff7a3c 48%, #7fd347 100%);
  box-shadow: 0 10px 22px rgba(54, 19, 22, 0.18);
}

.shelf-wall {
  position: absolute;
  bottom: 124px;
  width: 29%;
  height: 210px;
  border-radius: 24px 24px 18px 18px;
  background: linear-gradient(180deg, #cf171f 0%, #b1131a 100%);
  box-shadow: 0 14px 26px rgba(70, 18, 22, 0.18);
}

.shelf-wall.left {
  left: 22px;
}

.shelf-wall.right {
  right: 22px;
}

.shelf-wall.center {
  left: 50%;
  bottom: 136px;
  width: 34%;
  height: 194px;
  transform: translateX(-50%);
}

.shelf-wall::before {
  content: "";
  position: absolute;
  inset: 18px 14px 18px;
  border-radius: 14px;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.95) 0 4px,
      transparent 4px 36px
    ),
    linear-gradient(180deg, #fff7e6 0%, #fffdf6 100%);
}

.shelf-wall::after {
  content: "";
  position: absolute;
  inset: 30px 24px 30px;
  background:
    radial-gradient(circle at 8% 18%, #ffc048 0 5px, transparent 6px),
    radial-gradient(circle at 22% 18%, #ff8b55 0 5px, transparent 6px),
    radial-gradient(circle at 36% 18%, #ffdc63 0 5px, transparent 6px),
    radial-gradient(circle at 50% 18%, #f35d45 0 5px, transparent 6px),
    radial-gradient(circle at 64% 18%, #88d452 0 5px, transparent 6px),
    radial-gradient(circle at 78% 18%, #ffab2f 0 5px, transparent 6px),
    radial-gradient(circle at 92% 18%, #f04a45 0 5px, transparent 6px),
    radial-gradient(circle at 10% 50%, #ffc048 0 5px, transparent 6px),
    radial-gradient(circle at 25% 50%, #ff8b55 0 5px, transparent 6px),
    radial-gradient(circle at 40% 50%, #ffdc63 0 5px, transparent 6px),
    radial-gradient(circle at 55% 50%, #f35d45 0 5px, transparent 6px),
    radial-gradient(circle at 70% 50%, #88d452 0 5px, transparent 6px),
    radial-gradient(circle at 85% 50%, #ffab2f 0 5px, transparent 6px),
    radial-gradient(circle at 14% 82%, #ffc048 0 5px, transparent 6px),
    radial-gradient(circle at 30% 82%, #ff8b55 0 5px, transparent 6px),
    radial-gradient(circle at 46% 82%, #ffdc63 0 5px, transparent 6px),
    radial-gradient(circle at 62% 82%, #f35d45 0 5px, transparent 6px),
    radial-gradient(circle at 78% 82%, #88d452 0 5px, transparent 6px);
}

.center-island {
  position: absolute;
  left: 50%;
  bottom: 48px;
  width: 52%;
  min-width: 280px;
  height: 188px;
  transform: translateX(-50%);
}

.island-top {
  position: absolute;
  left: 50%;
  top: 0;
  width: 86%;
  height: 66px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, #e2282c 0%, #c5131b 100%);
  border: 5px solid rgba(255, 255, 255, 0.95);
}

.island-top::after {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 14px;
  bottom: 12px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 10% 50%, #ffcf56 0 7px, transparent 8px),
    radial-gradient(circle at 22% 50%, #ff9b5d 0 7px, transparent 8px),
    radial-gradient(circle at 34% 50%, #fff06b 0 7px, transparent 8px),
    radial-gradient(circle at 46% 50%, #f04a45 0 7px, transparent 8px),
    radial-gradient(circle at 58% 50%, #8ad455 0 7px, transparent 8px),
    radial-gradient(circle at 70% 50%, #ffbd33 0 7px, transparent 8px),
    radial-gradient(circle at 82% 50%, #ff7f52 0 7px, transparent 8px);
}

.island-base {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 118px;
  transform: translateX(-50%);
  border-radius: 32px 32px 38px 38px;
  background: linear-gradient(180deg, #dc252b 0%, #bf1018 100%);
  border: 5px solid rgba(255, 255, 255, 0.96);
}

.island-base::before {
  content: "人氣熱銷區";
  position: absolute;
  left: 50%;
  top: 56%;
  transform: translate(-50%, -50%);
  padding: 10px 18px;
  border-radius: 999px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.12);
}

.island-base::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  top: 18px;
  height: 34px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 8% 50%, #ffcf56 0 6px, transparent 7px),
    radial-gradient(circle at 20% 50%, #ff9b5d 0 6px, transparent 7px),
    radial-gradient(circle at 32% 50%, #fff06b 0 6px, transparent 7px),
    radial-gradient(circle at 44% 50%, #f04a45 0 6px, transparent 7px),
    radial-gradient(circle at 56% 50%, #8ad455 0 6px, transparent 7px),
    radial-gradient(circle at 68% 50%, #ffbd33 0 6px, transparent 7px),
    radial-gradient(circle at 80% 50%, #ff7f52 0 6px, transparent 7px),
    radial-gradient(circle at 92% 50%, #ffc751 0 6px, transparent 7px);
}

.scene-note {
  position: absolute;
  left: 24px;
  bottom: 20px;
  max-width: 220px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  box-shadow: 0 14px 28px rgba(55, 17, 21, 0.12);
}

.scene-note strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.hero-tags,
.mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.slider-controls {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 12px;
}

.slider-controls button {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  backdrop-filter: blur(12px);
}

section {
  padding: 110px 0;
}

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

.section-head h2,
.content-block h2,
.policy-card h3,
.form-card h3,
.news-card h3 {
  margin: 10px 0 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
}

.section-head p,
.content-block p,
.policy-card p,
.news-card p,
.form-card p,
.contact-map p {
  color: var(--muted);
  line-height: 1.85;
}

.promo-panel {
  min-height: 92vh;
  padding: 74px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(56, 16, 22, 0.45), rgba(56, 16, 22, 0.08)),
    var(--panel-bg, linear-gradient(135deg, #cf171f 0%, #f45046 100%));
}

.promo-panel > * {
  position: relative;
  z-index: 1;
}

.promo-panel h2 {
  margin: 14px 0 18px;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  max-width: 12ch;
}

.promo-panel p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.88);
}

.panel-grid,
.stats-grid,
.policies-grid,
.news-grid,
.contact-cards {
  display: grid;
  gap: 22px;
}

.panel-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 40px;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card,
.card,
.policy-card,
.news-card,
.form-card {
  padding: 28px;
}

.stat-card strong {
  display: block;
  font-size: clamp(28px, 4vw, 52px);
  color: var(--accent);
}

.split-grid .content-block,
.split-grid .visual-block {
  min-height: 100%;
}

.content-block {
  padding: 14px 0;
}

.content-block + .content-block {
  margin-top: 28px;
}

.visual-block {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.98));
  box-shadow: var(--shadow);
}

.visual-block .mock-display {
  min-height: 620px;
  border-radius: 30px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(207, 23, 31, 0.94), rgba(255, 114, 90, 0.76)),
    #df3833;
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mock-box {
  min-height: 156px;
  border-radius: 24px;
  padding: 18px;
  background: rgba(255, 250, 250, 0.88);
  color: var(--text);
}

.feature-strip {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.feature-strip strong {
  font-size: 18px;
}

.page-hero {
  color: #fff;
  padding: 140px 0 96px;
  background:
    linear-gradient(120deg, rgba(56, 16, 22, 0.6), rgba(56, 16, 22, 0.18)),
    var(--page-hero-bg, linear-gradient(135deg, #cf171f 0%, #f45046 100%));
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
}

.policies-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.policy-card h3 {
  font-size: 28px;
}

.policy-list,
.contact-list,
.news-meta,
.check-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.policy-list li,
.contact-list li,
.news-meta li,
.check-list li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.news-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.news-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.news-card .tag {
  display: inline-flex;
  width: fit-content;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-grid,
.contact-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-map {
  min-height: 620px;
  padding: 40px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(56, 16, 22, 0.54), rgba(56, 16, 22, 0.16)),
    linear-gradient(135deg, #cf171f 0%, #f45046 100%);
}

.contact-map > * {
  position: relative;
  z-index: 1;
}

.map-card {
  margin-top: 26px;
  padding: 22px;
  max-width: 420px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.contact-cards {
  gap: 22px;
}

.timeline-strip {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.timeline-strip div {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.timeline-strip strong,
.notice-panel strong {
  display: block;
  font-size: 16px;
}

.timeline-strip span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.6;
}

form {
  display: grid;
  gap: 16px;
}

label {
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(42, 35, 38, 0.14);
  border-radius: 18px;
  padding: 16px 18px;
  font: inherit;
  color: var(--text);
  background: #fffdfd;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input[type="radio"],
input[type="checkbox"] {
  width: auto;
}

select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--accent) 50%) calc(100% - 22px) calc(50% - 2px) / 8px 8px no-repeat,
    linear-gradient(135deg, var(--accent) 50%, transparent 50%) calc(100% - 16px) calc(50% - 2px) / 8px 8px no-repeat,
    #fffdfd;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.form-note.is-success {
  color: #9c1018;
  font-weight: 700;
}

.form-divider {
  position: relative;
  padding-top: 10px;
  margin-top: 4px;
}

.form-divider span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.notice-panel {
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff7f7 0%, #fff0f0 100%);
  border: 1px solid rgba(207, 23, 31, 0.1);
}

.notice-panel p {
  margin: 8px 0 0;
}

.inline-choice {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.inline-choice label,
.consent-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.inline-choice label {
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff7f7;
  border: 1px solid rgba(207, 23, 31, 0.1);
  font-weight: 600;
}

.consent-row {
  color: var(--muted);
  line-height: 1.7;
}

.info-card {
  min-height: 100%;
}

.site-footer {
  padding: 36px 0 54px;
  color: var(--muted);
}

.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 1080px) {
  .hero-grid,
  .split-grid,
  .contact-grid,
  .contact-cards,
  .panel-grid,
  .stats-grid,
  .policies-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .slide,
  .slide-content {
    min-height: auto;
  }

  .promo-panel {
    min-height: auto;
  }

  .hero-card.store-scene {
    min-height: 540px;
  }

  .hero-card.store-photo {
    min-height: 540px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-header .container {
    min-height: 76px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a::after {
    display: none;
  }

  section {
    padding: 80px 0;
  }

  .promo-panel,
  .hero-card,
  .contact-map,
  .card,
  .stat-card,
  .policy-card,
  .news-card,
  .form-card,
  .visual-block {
    border-radius: 24px;
  }

  .promo-panel,
  .contact-map {
    padding: 32px 24px;
  }

  .hero-card.store-scene {
    min-height: 500px;
  }

  .hero-card.store-photo {
    min-height: 500px;
  }

  .shelf-wall.center {
    width: 40%;
  }

  .center-island {
    width: 62%;
  }
}

@media (max-width: 620px) {
  .hero-copy h1,
  .page-hero h1 {
    font-size: 42px;
  }

  .brand-copy strong {
    font-size: 28px;
  }

  .brand-badge {
    width: 84px;
    height: 84px;
    flex-basis: 84px;
  }

  .hero-actions,
  .section-head,
  .feature-strip,
  .inline-choice {
    flex-direction: column;
    align-items: flex-start;
  }

  .slider-controls {
    left: 24px;
    transform: none;
    bottom: 22px;
  }

  .store-scene-wrap {
    padding: 16px;
  }

  .store-photo-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: 260px;
    padding: 16px;
  }

  .store-photo-card strong {
    font-size: 24px;
  }

  .store-sign strong {
    font-size: 28px;
  }

  .store-sign span {
    font-size: 11px;
  }

  .shelf-wall {
    bottom: 132px;
    width: 31%;
    height: 168px;
  }

  .shelf-wall.center {
    width: 38%;
    height: 154px;
  }

  .center-island {
    width: 78%;
    min-width: 0;
    height: 170px;
  }

  .island-base::before {
    font-size: 14px;
  }

  .scene-note {
    max-width: 180px;
    padding: 12px 14px;
  }
}
