﻿:root {
  --bg: #0b0b0d;
  --bg-soft: #141418;
  --card: #17171b;
  --line: rgba(255, 194, 65, 0.22);
  --text: #f5f6fa;
  --muted: #aeb4c0;
  --gold: #ffc85a;
  --orange: #ff7f23;
  --shadow: 0 20px 44px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans SC", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(rgba(255, 194, 65, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 194, 65, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 8% 2%, rgba(255, 194, 65, 0.2), transparent 26%),
    radial-gradient(circle at 92% 12%, rgba(255, 127, 35, 0.17), transparent 24%),
    linear-gradient(160deg, #09090b 0%, #0d0d11 56%, #111217 100%);
  background-size: 64px 64px, 64px 64px, auto, auto, auto;
  line-height: 1.7;
}

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

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

.wrap {
  width: min(1180px, calc(100% - 44px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(11, 11, 13, 0.84);
  border-bottom: 1px solid rgba(255, 194, 65, 0.2);
}

.header-wrap {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  border: 1px solid rgba(255, 194, 65, 0.35);
  background: #121218;
}

.brand-title {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}

.brand-sub {
  margin: 2px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
}

.desktop-nav a {
  color: #d7dbe4;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  padding-bottom: 4px;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  transition: width 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--gold);
}

.desktop-nav a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 700;
}

.btn-primary {
  background: linear-gradient(130deg, var(--orange), #ff5c1a);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 127, 35, 0.3);
}

.btn-ghost {
  border: 1px solid rgba(255, 194, 65, 0.45);
  background: rgba(255, 194, 65, 0.09);
  color: #ffd78a;
}

main {
  margin-top: 28px;
  padding-bottom: 22px;
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 20px;
  align-items: stretch;
}

.hero-copy h1 {
  margin: 10px 0 10px;
  font-family: "Teko", sans-serif;
  font-size: clamp(58px, 6.5vw, 88px);
  line-height: 0.94;
  letter-spacing: 0.02em;
}

.hero-kicker {
  margin: 0;
  color: #ffd88d;
  font-size: 12px;
  letter-spacing: 0.16em;
}

.hero-copy p {
  margin: 0;
  font-size: 18px;
  color: #d8ddea;
  max-width: 95%;
}

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

.hero-showcase {
  border-radius: 16px;
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.hero-photo-wrap {
  margin: 0;
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
  position: relative;
}

.hero-photo-wrap::after {
  content: none;
}

.hero-photo-wrap img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.tag-row {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.tag-row span {
  border: 1px solid rgba(255, 181, 41, 0.9);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffd84f 0%, #ffbf1e 100%);
  padding: 9px 16px;
  color: #171107;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 10px 22px rgba(255, 191, 30, 0.22);
}

.cards {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.cards article {
  border: 1px solid rgba(255, 194, 65, 0.18);
  border-radius: 16px;
  background: rgba(20, 20, 24, 0.9);
  padding: 24px 22px;
}

.cards h3 {
  margin: 0 0 10px;
  font-size: 30px;
  font-family: "Teko", sans-serif;
  letter-spacing: 0.06em;
}

.cards p {
  margin: 0;
  color: #c4cad7;
}

.brands {
  margin-top: 54px;
}

.brands h2 {
  margin: 0;
  text-align: center;
  font-family: "Teko", sans-serif;
  letter-spacing: 0.07em;
  font-size: 54px;
}

.brands > p {
  margin: 6px 0 0;
  text-align: center;
  color: #b8bfce;
}

.brand-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.brand-item {
  border: 1px solid rgba(255, 194, 65, 0.28);
  border-radius: 14px;
  padding: 14px;
  background: linear-gradient(155deg, rgba(255, 194, 65, 0.08), rgba(255, 127, 35, 0.06));
}

.brand-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.brand-logo-box {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid rgba(255, 194, 65, 0.3);
  background: #101116;
  display: grid;
  place-items: center;
  overflow: hidden;
  flex: 0 0 28px;
}

.brand-logo {
  width: 25px;
  height: 25px;
  object-fit: contain;
  background: transparent;
}

.brand-fallback {
  display: none;
  width: 100%;
  height: 100%;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  color: #ffd483;
}

.brand-item h3 {
  margin: 0;
  font-size: 16px;
}

.brand-item p {
  margin: 0;
  color: #c7cfdd;
  font-size: 13px;
}

.gallery {
  margin-top: 52px;
}

.gallery h2 {
  margin: 0;
  text-align: center;
  font-family: "Teko", sans-serif;
  letter-spacing: 0.07em;
  font-size: 48px;
}

.gallery > p {
  margin: 6px 0 0;
  text-align: center;
  color: #b6bfcd;
}

.gallery-marquee {
  margin-top: 20px;
  border: 1px solid rgba(255, 194, 65, 0.24);
  border-radius: 16px;
  background: rgba(20, 20, 24, 0.88);
  overflow: hidden;
  padding: 14px;
}

.gallery-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: galleryScroll 42s linear infinite;
}

.gallery-track:hover {
  animation-play-state: paused;
}

.gallery-item {
  position: relative;
  width: 260px;
  height: 170px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 194, 65, 0.24);
  flex: 0 0 auto;
  background: #0f1116;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item.is-missing::before {
  content: "待放入照片";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #8f98a8;
  font-size: 13px;
  background: #11131a;
}

.gallery-item.is-missing img {
  display: none;
}

.gallery-item span {
  position: absolute;
  left: 8px;
  bottom: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  color: #f2f5fb;
  font-size: 12px;
}

@keyframes galleryScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.store {
  margin-top: 52px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(310px, 0.8fr);
  gap: 20px;
}

.store-main,
.store-side,
.faq {
  border: 1px solid rgba(255, 194, 65, 0.2);
  border-radius: 18px;
  background: rgba(20, 20, 24, 0.9);
  padding: 22px;
}

.store h2,
.faq h2 {
  margin: 0 0 14px;
  font-family: "Teko", sans-serif;
  letter-spacing: 0.07em;
  font-size: 42px;
}

.store-main dl {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px;
}

.store-main dl div {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 0;
}

.store-main dt {
  color: #a9b0bf;
  font-size: 12px;
}

.store-main dd {
  margin: 3px 0 0;
  font-weight: 600;
}

.store-main a {
  color: #ffd58b;
}

.store-side h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

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

.date-boxes > div {
  border: 1px solid rgba(255, 194, 65, 0.24);
  border-radius: 12px;
  padding: 12px;
  background: #171920;
  text-align: center;
}

.date-boxes p {
  margin: 0;
  color: #aeb6c8;
  font-size: 12px;
}

.date-boxes strong {
  display: block;
  margin: 3px 0 2px;
  font-size: 36px;
  font-family: "Teko", sans-serif;
  line-height: 1;
}

.date-boxes span {
  display: inline-block;
  border-radius: 999px;
  background: #362012;
  color: #ffd9c3;
  padding: 3px 10px;
  font-size: 13px;
  font-weight: 700;
}

.day-tip {
  margin: 11px 0 0;
  text-align: center;
  color: #d8deeb;
}

.faq {
  margin-top: 30px;
}

.faq details {
  border: 1px solid rgba(255, 194, 65, 0.2);
  border-radius: 12px;
  background: #14161d;
  padding: 11px 12px;
  margin-bottom: 9px;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: #f7da96;
}

.faq p {
  margin: 8px 0 0;
  color: #cfd6e4;
}

.mobile-nav {
  display: none;
}

.site-footer {
  text-align: center;
  color: #8d95a5;
  font-size: 12px;
  padding: 18px 12px 20px;
}

@media (max-width: 1024px) {
  .wrap {
    width: min(1180px, calc(100% - 24px));
  }

  .header-wrap {
    grid-template-columns: 1fr auto;
    min-height: 70px;
    gap: 10px;
  }

  .desktop-nav {
    display: none;
  }

  main {
    margin-top: 14px;
    padding-bottom: 84px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-copy h1 {
    font-size: clamp(40px, 11vw, 62px);
  }

  .hero-copy p {
    font-size: 15px;
    max-width: none;
  }

  .hero-photo-wrap img {
    height: 250px;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .tag-row {
    margin-top: 20px;
    justify-content: flex-start;
  }

  .cards {
    margin-top: 22px;
    grid-template-columns: 1fr;
  }

  .brands {
    margin-top: 34px;
  }

  .brands h2 {
    font-size: 36px;
    text-align: left;
  }

  .brands > p {
    text-align: left;
  }

  .brand-grid {
    margin-top: 14px;
    grid-template-columns: 1fr 1fr;
  }

  .gallery {
    margin-top: 34px;
  }

  .gallery h2 {
    font-size: 34px;
    text-align: left;
  }

  .gallery > p {
    text-align: left;
  }

  .gallery-marquee {
    margin-top: 14px;
    padding: 10px;
  }

  .gallery-item {
    width: 220px;
    height: 145px;
  }

  .store {
    margin-top: 34px;
    grid-template-columns: 1fr;
  }

  .store h2,
  .faq h2 {
    font-size: 30px;
  }

  .store-main dl {
    grid-template-columns: 1fr;
  }

  .date-boxes strong {
    font-size: 30px;
  }

  .faq {
    margin-top: 20px;
  }

  .mobile-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 64px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: rgba(11, 11, 13, 0.95);
    border-top: 1px solid rgba(255, 194, 65, 0.2);
    z-index: 40;
  }

  .mobile-nav a {
    display: grid;
    place-items: center;
    font-size: 13px;
    color: #d2d8e5;
  }
}

/* Refined layout pass: stronger typography rhythm and safer responsive sizing. */
body {
  line-height: 1.62;
}

.wrap {
  width: min(1320px, calc(100% - 36px));
}

main {
  margin-top: 34px;
  padding-bottom: 34px;
}

.header-wrap {
  min-height: 72px;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
}

.brand-title {
  font-size: 17px;
  line-height: 1.25;
}

.brand-sub {
  max-width: 520px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(540px, 1.08fr);
  gap: 34px;
  align-items: center;
}

.hero-copy h1 {
  margin: 12px 0 16px;
  font-size: 68px;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-kicker {
  letter-spacing: 0.12em;
}

.hero-copy p {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.75;
}

.hero-photo-wrap,
.hero-showcase {
  border-radius: 10px;
}

.hero-photo-wrap img {
  height: 420px;
}

.tag-row {
  margin-top: 36px;
}

.tag-row span {
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
}

.cards {
  margin-top: 24px;
  gap: 16px;
}

.cards article,
.brand-item,
.gallery-marquee,
.gallery-item,
.store-main,
.store-side,
.faq,
.faq details,
.date-boxes > div {
  border-radius: 8px;
}

.cards article {
  padding: 20px;
}

.cards h3 {
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: 0;
  font-family: "Noto Sans SC", "Segoe UI", sans-serif;
}

.cards p {
  line-height: 1.75;
}

.section-heading {
  margin-bottom: 24px;
  text-align: center;
}

.brand-heading {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "main"
    "desc";
  gap: 8px;
  align-items: center;
  justify-items: center;
}

.section-heading-main {
  grid-area: main;
  text-align: center;
}

.brand-title-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.brand-heading > p:last-child {
  grid-area: desc;
  justify-self: center;
  text-align: center;
}

.brand-note {
  margin: 0;
  padding: 7px 12px;
  border: 1px solid rgba(255, 194, 65, 0.24);
  border-radius: 999px;
  background: rgba(255, 194, 65, 0.08);
  color: #ffe2a4;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.section-heading-left {
  text-align: left;
  margin-bottom: 16px;
}

.section-heading span {
  display: block;
  margin-bottom: 6px;
  color: #ffd88d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.section-heading h2 {
  margin: 0;
  font-family: "Noto Sans SC", "Segoe UI", sans-serif;
  font-size: 38px;
  line-height: 1.2;
  letter-spacing: 0;
}

.section-heading p {
  margin: 10px 0 0;
  color: #b8bfce;
  font-size: 15px;
}

.section-heading .brand-note {
  margin: 0;
  color: #ffe2a4;
  font-size: 12px;
}

.brands,
.gallery,
.store {
  margin-top: 58px;
}

.brands h2,
.gallery h2 {
  text-align: inherit;
  font-family: "Noto Sans SC", "Segoe UI", sans-serif;
  font-size: 38px;
  line-height: 1.2;
  letter-spacing: 0;
}

.brands > p,
.gallery > p {
  text-align: inherit;
}

.brand-grid {
  margin-top: 0;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
}

.brand-item {
  padding: 16px 12px;
  min-width: 0;
  min-height: 118px;
  background:
    linear-gradient(155deg, rgba(255, 200, 90, 0.09), rgba(255, 127, 35, 0.05)),
    rgba(18, 18, 22, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.brand-head {
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
  min-width: 0;
}

.brand-logo-box {
  width: 68px;
  height: 48px;
  flex-basis: 48px;
  border-radius: 8px;
  border-color: rgba(255, 200, 90, 0.42);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 200, 90, 0.34), transparent 42%),
    linear-gradient(145deg, #1b1d24, #0d0e12);
}

.brand-item h3 {
  min-width: 0;
  font-size: 14px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.brand-item p {
  font-size: 12px;
  line-height: 1.45;
}

.floating-customer {
  position: fixed;
  right: 22px;
  bottom: 108px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 122px;
  padding: 9px 15px 9px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff8a22 0%, #ffac36 100%);
  color: #130d05;
  box-shadow: 0 14px 34px rgba(255, 132, 27, 0.38);
  border: 1px solid rgba(255, 211, 112, 0.38);
}

.floating-customer-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(93, 53, 18, 0.28);
  color: #fff;
  line-height: 1;
  overflow: hidden;
  flex: 0 0 56px;
  box-shadow: inset 0 0 0 2px rgba(255, 204, 100, 0.28);
}

.floating-customer-icon img,
.floating-customer-icon svg {
  width: 66px;
  height: 66px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}

.floating-customer-text {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}

.store-main,
.store-side,
.faq {
  padding: 24px;
}

.store h2,
.faq h2 {
  font-family: "Noto Sans SC", "Segoe UI", sans-serif;
  font-size: 30px;
  line-height: 1.25;
  letter-spacing: 0;
}

.store-main dd,
.faq p {
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .wrap {
    width: min(1160px, calc(100% - 24px));
  }

  main {
    margin-top: 18px;
  }

  .header-wrap {
    min-height: 66px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand-sub {
    max-width: 210px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 13vw, 58px);
    line-height: 1;
  }

  .hero-copy p {
    font-size: 15px;
  }

  .hero-photo-wrap img {
    height: 260px;
  }

  .section-heading,
  .section-heading-left,
  .brands h2,
  .gallery h2,
  .brands > p,
  .gallery > p {
    text-align: left;
  }

  .section-heading h2,
  .brands h2,
  .gallery h2 {
    font-size: 30px;
  }

  .cards h3 {
    font-size: 22px;
  }

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

  .store-main,
  .store-side,
  .faq {
    padding: 18px;
  }
}

.brand-item {
  position: relative;
  overflow: hidden;
}

.brand-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--brand-color, #ffc85a);
}

.brand-logo-box {
  border-color: rgba(255, 200, 90, 0.42);
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 200, 90, 0.25), transparent 45%),
    linear-gradient(145deg, #1b1d24, #0d0e12);
}

.brand-logo {
  width: 54px;
  height: 34px;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

@media (max-width: 720px) {
  .brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .brand-item {
    min-height: 104px;
    padding: 12px 8px;
  }

  .brand-logo-box {
    width: 58px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand-logo {
    width: 46px;
    height: 30px;
  }

  .brand-item h3 {
    font-size: 13px;
  }

  .brand-heading {
    justify-items: center;
  }

  .brand-title-row {
    flex-direction: column;
    gap: 10px;
  }

  .brand-note {
    justify-self: center;
  }

  .floating-customer {
    right: 14px;
    bottom: 78px;
    padding: 10px 12px;
  }

  .floating-customer-text {
    font-size: 12px;
  }
}
