:root {
  --cream: #f4f0e7;
  --paper: #fbf8ef;
  --sage: #dfe7d9;
  --deep: #053d4b;
  --deep-2: #07313b;
  --ink: #223033;
  --muted: #6f7a78;
  --gold: #b69b67;
  --line: rgba(34, 48, 51, 0.12);
  --white: #fffdf7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family:
    "Microsoft YaHei",
    "PingFang SC",
    "Noto Sans CJK SC",
    Arial,
    sans-serif;
}

body.no-scroll {
  overflow: hidden;
}

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

img {
  max-width: 100%;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(22px, 6vw, 82px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(4, 36, 43, 0.58), transparent);
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(251, 248, 239, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand-mark {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.desktop-nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
}

.desktop-nav a {
  padding: 10px 0;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 11px;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
}

.menu-button span {
  display: block;
  height: 1px;
  margin: 7px 0;
  background: currentColor;
}

.mobile-nav {
  position: fixed;
  z-index: 29;
  top: 78px;
  left: 0;
  right: 0;
  display: none;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.mobile-nav a {
  display: block;
  padding: 18px 24px;
  border-top: 1px solid var(--line);
}

.mobile-nav.is-open {
  display: block;
}

.hero {
  position: relative;
  min-height: 76svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--deep-2);
}

.hero-image,
.hero-tint {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
}

.hero-image {
  right: 0;
  width: 72%;
  object-fit: cover;
  object-position: center 54%;
}

.hero-tint {
  left: 0;
  right: 0;
  width: 100%;
  background:
    linear-gradient(90deg, rgba(4, 43, 51, 0.98) 0%, rgba(4, 43, 51, 0.9) 28%, rgba(4, 43, 51, 0.18) 48%, rgba(4, 43, 51, 0) 72%),
    linear-gradient(0deg, rgba(4, 43, 51, 0.12), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(460px, calc(100% - 40px));
  margin-left: clamp(24px, 7vw, 96px);
  padding-top: 78px;
  color: var(--white);
}

.brand-small {
  margin: 0 0 24px;
  font-size: 17px;
  letter-spacing: 0.16em;
}

.eyebrow,
.section-kicker,
.item-type {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.22;
  font-weight: 500;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.35;
}

.hero-copy {
  color: rgba(255, 253, 247, 0.9);
  font-size: 17px;
  line-height: 1.8;
}

.page-main {
  padding-top: 0;
}

.page-hero {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  align-items: stretch;
  background: var(--deep);
  color: var(--white);
}

.page-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(58px, 8vw, 112px) clamp(24px, 7vw, 96px);
}

.page-hero-copy h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(38px, 5.2vw, 72px);
}

.page-hero-copy p:not(.section-kicker) {
  max-width: 620px;
  color: rgba(255, 253, 247, 0.78);
  font-size: 18px;
  line-height: 1.9;
}

.page-hero img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.page-section {
  padding: clamp(60px, 8vw, 110px) clamp(22px, 8vw, 120px);
}

.page-section.soft {
  background: var(--paper);
}

.page-section.sage {
  background: var(--sage);
}

.page-section > .contact-panel {
  max-width: 640px;
  margin: 0 auto;
}

.page-intro {
  max-width: 800px;
}

.page-intro h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.18;
}

.page-intro p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.category-grid,
.process-grid,
.support-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 38px;
}

.category-card,
.process-card,
.support-card,
.trust-card {
  background: var(--paper);
  border: 1px solid var(--line);
}

.category-card img {
  width: 100%;
  aspect-ratio: 1.15 / 0.78;
  object-fit: cover;
}

.category-card div,
.process-card,
.support-card,
.trust-card {
  padding: 24px;
}

.category-card h3,
.process-card h3,
.support-card h3,
.trust-card h3 {
  margin-bottom: 10px;
  color: var(--deep);
  font-size: 22px;
}

.category-card p,
.process-card p,
.support-card p,
.trust-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.78;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.split-feature img {
  width: 100%;
  aspect-ratio: 1.08 / 0.8;
  object-fit: cover;
}

.detail-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.detail-list div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.detail-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--deep);
  font-size: 18px;
}

.detail-list span {
  color: var(--muted);
  line-height: 1.75;
}

.page-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.solid-link,
.outline-link {
  display: inline-grid;
  place-items: center;
  min-height: 44px;
  padding: 0 22px;
  font-weight: 700;
}

.solid-link {
  background: var(--deep);
  color: var(--white);
}

.outline-link {
  border: 1px solid currentColor;
  color: var(--deep);
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  color: var(--deep);
  font-weight: 700;
  font-size: 14px;
}

.text-link::after {
  content: "";
  width: 36px;
  height: 1px;
  margin-left: 12px;
  background: currentColor;
}

.text-link.light {
  color: var(--white);
}

.value-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--deep);
  color: var(--white);
}

.value-bar div {
  min-height: 96px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 7px;
  border-right: 1px solid rgba(255, 253, 247, 0.18);
}

.value-bar strong {
  font-size: 17px;
}

.value-bar span {
  color: rgba(255, 253, 247, 0.66);
  font-size: 12px;
}

.section {
  padding: clamp(78px, 10vw, 126px) clamp(20px, 6vw, 82px);
}

.section-heading {
  max-width: 960px;
  margin: 0 auto 44px;
}

.section-heading.centered {
  text-align: center;
}

.section-heading p:not(.section-kicker) {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  line-height: 1.9;
}

.needs-section {
  background: var(--paper);
}

.needs-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.82fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}

.need-card {
  position: relative;
  min-height: 240px;
  display: block;
  overflow: hidden;
  background: var(--deep);
}

.need-card.large {
  grid-row: span 2;
  min-height: 520px;
}

.need-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.need-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 43, 51, 0.68), transparent 52%);
}

.need-card span,
.need-card small {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  color: var(--white);
}

.need-card span {
  bottom: 48px;
  font-size: 26px;
  font-weight: 600;
}

.need-card small {
  bottom: 24px;
  color: rgba(255, 253, 247, 0.75);
}

.need-card:hover img,
.best-grid a:hover img,
.design-row article:hover img {
  transform: scale(1.035);
}

.season-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  background: var(--sage);
}

.season-image img,
.sleep-section > img,
.story-section > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.season-copy {
  align-self: center;
  padding: clamp(48px, 8vw, 96px);
}

.season-copy p,
.sleep-copy p,
.story-section p {
  color: var(--muted);
  line-height: 1.9;
}

.season-copy ul {
  margin: 24px 0;
  padding: 0;
  list-style: none;
  color: var(--deep);
  font-weight: 700;
  line-height: 2;
}

.design-section {
  background: var(--paper);
}

.design-row {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.design-row article {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
}

.design-row img {
  width: 100%;
  aspect-ratio: 0.82 / 1;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.design-row h3,
.design-row p {
  padding: 0 18px;
}

.design-row h3 {
  margin-top: 18px;
}

.design-row p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 13px;
}

.sleep-section {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(70px, 9vw, 116px) clamp(20px, 6vw, 82px);
  background: var(--deep);
  color: var(--white);
}

.sleep-copy {
  max-width: 460px;
  justify-self: end;
}

.sleep-copy .section-kicker,
.story-section .section-kicker {
  color: #d9c28c;
}

.sleep-copy p,
.story-section p {
  color: rgba(255, 253, 247, 0.74);
}

.sleep-section > img {
  max-height: 620px;
}

.sleep-tags {
  display: flex;
  gap: 28px;
  margin-top: 32px;
  color: var(--white);
  font-weight: 700;
}

.best-section {
  background: var(--paper);
}

.best-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.best-grid a {
  display: block;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
}

.best-grid img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.best-grid strong,
.best-grid span {
  display: block;
  padding: 0 22px;
}

.best-grid strong {
  padding-top: 20px;
  font-size: 18px;
}

.best-grid span {
  padding-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
}

.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(70px, 9vw, 116px) clamp(20px, 6vw, 82px);
  background: var(--deep);
  color: var(--white);
}

.story-section > img {
  max-height: 560px;
}

.story-section div {
  max-width: 560px;
}

blockquote {
  margin: 28px 0;
  padding-left: 20px;
  border-left: 2px solid #d9c28c;
  color: var(--white);
  font-size: 20px;
  line-height: 1.7;
}

.group-buy-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding: clamp(76px, 9vw, 116px) clamp(20px, 6vw, 82px);
  background: var(--sage);
}

.group-buy-section > div:first-child {
  max-width: 520px;
}

.group-buy-section p:not(.section-kicker) {
  color: var(--muted);
  line-height: 1.9;
}

.group-hotline-button {
  margin-top: 24px;
  padding: 13px 22px;
  color: var(--white);
  background: var(--deep);
  border: 1px solid var(--deep);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.group-hotline-button:hover {
  background: var(--deep-2);
  border-color: var(--deep-2);
}

.group-hotline-button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.group-hotline-number {
  margin: 14px 0 0;
  color: var(--deep);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
}

.group-hotline-number[hidden] {
  display: none;
}

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

.group-buy-grid article {
  min-height: 260px;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(34, 48, 51, 0.1);
}

.group-buy-grid span,
.group-buy-grid strong {
  display: block;
}

.group-buy-grid span {
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 700;
}

.group-buy-grid strong {
  margin-bottom: 14px;
  color: var(--deep);
  font-size: 20px;
}

.franchise-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(76px, 9vw, 118px) clamp(20px, 6vw, 82px);
  background: var(--paper);
}

.franchise-copy {
  max-width: 760px;
}

.franchise-copy > p:not(.section-kicker) {
  max-width: 650px;
  color: var(--muted);
  line-height: 1.9;
}

.franchise-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.franchise-points div {
  min-height: 190px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
}

.franchise-points strong,
.franchise-points span {
  display: block;
}

.franchise-points strong {
  margin-bottom: 14px;
  color: var(--deep);
  font-size: 18px;
}

.franchise-points span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.contact-panel {
  align-self: stretch;
  padding: 34px;
  color: var(--white);
  background: var(--deep);
}

.contact-panel h3 {
  margin-bottom: 28px;
  font-size: 28px;
}

.contact-panel dl,
.contact-panel dd {
  margin: 0;
}

.contact-panel dl {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 253, 247, 0.18);
}

.contact-panel dl div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 253, 247, 0.18);
}

.contact-panel dt {
  color: rgba(255, 253, 247, 0.62);
}

.contact-panel dd {
  font-weight: 700;
}

.contact-note {
  margin: 22px 0 0;
  color: rgba(255, 253, 247, 0.66);
  font-size: 13px;
  line-height: 1.7;
}

.promise-section {
  padding: clamp(72px, 9vw, 108px) clamp(20px, 6vw, 82px);
  background: var(--sage);
}

.promise-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.promise-grid div {
  min-height: 150px;
  padding: 28px;
  background: var(--white);
}

.promise-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-weight: 700;
}

.promise-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

.promise-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.closing-section {
  padding: 72px 20px;
  text-align: center;
  color: var(--white);
  background: var(--deep);
}

.closing-section p {
  margin-bottom: 16px;
  letter-spacing: 0.24em;
}

.closing-section h2 {
  margin-bottom: 30px;
}

.shop-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.shop-links a {
  min-width: 180px;
  padding: 14px 22px;
  border: 1px solid rgba(255, 253, 247, 0.48);
}

.mobile-action-bar {
  display: none;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-image {
    width: 82%;
  }

  .hero-tint {
    background:
      linear-gradient(90deg, rgba(4, 43, 51, 0.96) 0%, rgba(4, 43, 51, 0.76) 42%, rgba(4, 43, 51, 0.12) 74%),
      linear-gradient(0deg, rgba(4, 43, 51, 0.16), transparent 48%);
  }

  .value-bar,
  .design-row,
  .promise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .needs-grid,
  .season-section,
  .sleep-section,
  .story-section,
  .group-buy-section,
  .page-hero,
  .split-feature,
  .franchise-section {
    grid-template-columns: 1fr;
  }

  .group-buy-grid,
  .franchise-points,
  .category-grid,
  .process-grid,
  .support-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .page-hero img {
    min-height: 320px;
    max-height: 460px;
  }

  .need-card.large {
    min-height: 420px;
  }

  .sleep-copy {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 70px;
  }

  .site-header {
    height: 66px;
    padding: 0 16px;
  }

  .brand-mark {
    font-size: 16px;
  }

  .mobile-nav {
    top: 66px;
  }

  .hero {
    min-height: 62svh;
    align-items: end;
  }

  .page-main {
    padding-top: 0;
  }

  .page-hero {
    min-height: 0;
  }

  .page-hero-copy {
    padding: 42px 20px 34px;
  }

  .page-hero-copy h1 {
    font-size: 36px;
  }

  .page-hero-copy p:not(.section-kicker) {
    font-size: 16px;
    line-height: 1.75;
  }

  .page-hero img {
    min-height: 260px;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px 26px;
    padding-top: 64px;
  }

  .hero-image {
    width: 100%;
    object-position: 58% center;
  }

  .hero-tint {
    background:
      linear-gradient(0deg, rgba(4, 43, 51, 0.92) 0%, rgba(4, 43, 51, 0.56) 46%, rgba(4, 43, 51, 0.08) 100%),
      linear-gradient(90deg, rgba(4, 43, 51, 0.58), transparent 64%);
  }

  .brand-small {
    font-size: 14px;
    margin-bottom: 12px;
  }

  h1 {
    font-size: clamp(30px, 9.2vw, 40px);
  }

  h2 {
    font-size: clamp(25px, 7.2vw, 34px);
  }

  .hero-copy {
    font-size: 15px;
    line-height: 1.65;
  }

  .value-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .design-row,
  .best-grid,
  .promise-grid {
    grid-template-columns: 1fr;
  }

  .value-bar div {
    min-height: 70px;
    padding: 12px 10px;
  }

  .value-bar strong {
    font-size: 15px;
  }

  .value-bar span {
    font-size: 11px;
  }

  .section,
  .page-section,
  .sleep-section,
  .story-section,
  .promise-section {
    padding: 46px 18px;
  }

  .page-intro h2 {
    font-size: 31px;
  }

  .category-grid,
  .process-grid,
  .support-grid,
  .trust-grid {
    gap: 12px;
    margin-top: 26px;
  }

  .category-card div,
  .process-card,
  .support-card,
  .trust-card {
    padding: 20px;
  }

  .split-feature {
    gap: 24px;
  }

  .group-buy-section,
  .franchise-section {
    padding: 38px 18px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading p:not(.section-kicker),
  .season-copy p,
  .sleep-copy p,
  .story-section p,
  .group-buy-section p:not(.section-kicker),
  .franchise-copy > p:not(.section-kicker) {
    line-height: 1.72;
  }

  .contact-panel {
    padding: 24px 20px;
  }

  .contact-panel dl div {
    grid-template-columns: 86px 1fr;
    gap: 12px;
    padding: 14px 0;
  }

  .contact-panel h3 {
    font-size: 26px;
  }

  .contact-panel dt,
  .contact-panel dd {
    font-size: 15px;
  }

  .needs-grid {
    max-width: none;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    margin: 0 -18px;
    padding: 0 18px 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .need-card,
  .need-card.large {
    flex: 0 0 min(78vw, 310px);
    min-height: 248px;
    scroll-snap-align: start;
  }

  .need-card span {
    bottom: 42px;
    font-size: 22px;
  }

  .need-card small {
    bottom: 20px;
  }

  .season-section {
    min-height: 0;
  }

  .season-image {
    aspect-ratio: 1.08 / 1;
    overflow: hidden;
  }

  .season-copy {
    padding: 42px 20px;
  }

  .design-row,
  .best-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    margin: 0 -18px;
    padding: 0 18px 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .design-row article,
  .best-grid a {
    flex: 0 0 min(76vw, 292px);
    scroll-snap-align: start;
  }

  .design-row img {
    aspect-ratio: 1 / 0.92;
  }

  .best-grid img {
    aspect-ratio: 1.12 / 0.82;
  }

  .sleep-section,
  .story-section {
    gap: 22px;
  }

  .sleep-section > img,
  .story-section > img {
    max-height: none;
    aspect-ratio: 1.08 / 1;
  }

  .sleep-tags {
    gap: 18px;
    margin-top: 24px;
    flex-wrap: wrap;
  }

  .group-buy-grid article,
  .franchise-points div {
    min-height: 0;
    padding: 18px 20px;
  }

  .group-buy-grid,
  .franchise-points {
    gap: 10px;
  }

  .group-buy-grid strong,
  .franchise-points strong {
    margin-bottom: 8px;
    font-size: 18px;
  }

  .group-buy-grid span {
    margin-bottom: 10px;
  }

  .group-buy-grid p,
  .franchise-points span {
    font-size: 14px;
    line-height: 1.62;
  }

  .group-hotline-button {
    width: 100%;
    margin-top: 18px;
    padding: 12px 18px;
  }

  .group-hotline-number {
    text-align: center;
    font-size: 22px;
  }

  .shop-links {
    display: grid;
  }

  .icp-footer {
    padding-bottom: 88px;
  }

  .mobile-action-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 80;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    background: rgba(250, 247, 238, 0.96);
    border-top: 1px solid rgba(34, 48, 51, 0.12);
    box-shadow: 0 -10px 30px rgba(4, 43, 51, 0.14);
    backdrop-filter: blur(10px);
  }

  .mobile-action-bar a {
    min-height: 44px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--deep);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-action-bar a:first-child {
    background: var(--gold);
    color: var(--deep);
  }

  .contact-panel {
    scroll-margin-top: 24px;
  }
}

.icp-footer {
  background: #073f49;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.7;
  padding: 18px 20px 24px;
  text-align: center;
}

.icp-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.icp-footer a:hover {
  color: #ffffff;
}
