* {
  box-sizing: border-box;
}

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.75;
  color: #1f2937;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top, rgba(255, 174, 66, 0.12), transparent 30%),
    linear-gradient(180deg, #fffaf3 0%, #fff 22%, #fff 100%);
}

a {
  color: #b45309;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.wrap {
  width: min(1080px, calc(100% - 24px));
  margin: 0 auto;
}

.page-shell {
  padding-bottom: 24px;
}

.site-header {
  padding: 22px 0 14px;
}

.brand {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(180, 83, 9, 0.15);
  padding-bottom: 16px;
}

.brand h1,
.brand h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  letter-spacing: 0.02em;
}

.brand p {
  margin: 0;
  color: #6b7280;
}

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

.site-nav a {
  display: flex;
  flex-direction: column;
  gap: 3px;
  justify-content: center;
  min-height: 78px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(180, 83, 9, 0.14);
  background: #fff;
  color: #7c2d12;
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.site-nav a:hover {
  transform: translateY(-1px);
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.site-nav a strong {
  font-size: 1rem;
}

.site-nav a span {
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(124, 45, 18, 0.78);
}

.site-nav .nav-home {
  background: linear-gradient(135deg, #fff7ed, #ffffff);
  border-color: rgba(180, 83, 9, 0.2);
}

.site-nav .nav-location {
  background: linear-gradient(135deg, #fff4e5, #fff);
}

.site-nav .nav-menu {
  background: linear-gradient(135deg, #fff9f1, #fff);
}

.site-nav .nav-activity {
  background: linear-gradient(135deg, #fff1e3, #fff);
}

.site-nav a.active {
  outline: 2px solid rgba(180, 83, 9, 0.2);
}

.crumbs {
  margin: 10px 0 0;
  color: #6b7280;
  font-size: 0.95rem;
}

.crumbs a {
  color: #92400e;
}

.hero {
  margin: 24px 0 18px;
  padding: 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(180, 83, 9, 0.08), rgba(245, 158, 11, 0.05));
  border: 1px solid rgba(180, 83, 9, 0.14);
}

.hero--split {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 360px);
  gap: 18px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b45309;
  font-weight: 700;
}

.hero h2,
.page-title {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.hero p {
  margin: 0;
  color: #4b5563;
}

.hero-thumb {
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(180, 83, 9, 0.12);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.section-title {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin: 20px 0 28px;
}

.card {
  background: #fff;
  border: 1px solid rgba(180, 83, 9, 0.12);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  color: #4b5563;
}

.meta {
  display: grid;
  gap: 8px;
  margin: 18px 0 22px;
  padding: 16px 18px;
  background: #fff;
  border-left: 4px solid #d97706;
  border-radius: 12px;
  border: 1px solid rgba(180, 83, 9, 0.1);
}

.meta strong {
  color: #111827;
}

.content {
  background: #fff;
  border: 1px solid rgba(180, 83, 9, 0.12);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.content + .content {
  margin-top: 18px;
}

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

.content-head p {
  margin: 0;
}

.mini-link {
  white-space: nowrap;
  color: #92400e;
  font-weight: 700;
}

.map-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(180, 83, 9, 0.12);
  background: #fffaf4;
}

.content p {
  margin: 0 0 16px;
}

.content p:last-child {
  margin-bottom: 0;
}

.next-reco {
  margin: 14px 0 18px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(180, 83, 9, 0.14);
  background: #fff7ed;
}

.next-reco__label {
  display: inline-block;
  margin-bottom: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(234, 88, 12, 0.12);
  color: #9a3412;
  font-size: 0.82rem;
  font-weight: 700;
}

.next-reco a {
  display: block;
  color: #9a3412;
  font-weight: 700;
}

.next-reco__note {
  margin: 6px 0 0;
  color: #6b7280;
  font-size: 0.95rem;
}

.store-info {
  margin: 22px 0 28px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(180, 83, 9, 0.14);
  background: linear-gradient(180deg, rgba(255, 247, 237, 0.92), rgba(255, 255, 255, 0.96));
}

.store-info__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.store-info__head h2 {
  margin: 0 0 6px;
  font-size: 1.15rem;
}

.store-info__head p {
  margin: 0;
  color: #6b7280;
}

.store-info__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.store-info__item {
  padding: 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(180, 83, 9, 0.1);
}

.store-info__item span {
  display: block;
  margin-bottom: 6px;
  color: #b45309;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.store-info__item strong {
  display: block;
  color: #7c2d12;
  line-height: 1.5;
}

.store-info__item a {
  display: inline-block;
  margin-top: 8px;
  color: #92400e;
  font-weight: 700;
}

.faq-block .faq-list {
  display: grid;
  gap: 10px;
}

.faq-block details {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(180, 83, 9, 0.12);
  background: #fffaf4;
}

.faq-block summary {
  cursor: pointer;
  font-weight: 700;
  color: #7c2d12;
}

.faq-block summary::-webkit-details-marker {
  display: none;
}

.faq-block summary::after {
  content: "+";
  float: right;
  color: #b45309;
  font-weight: 700;
}

.faq-block details[open] summary::after {
  content: "−";
}

.faq-block p {
  margin-top: 10px;
  margin-bottom: 0;
  color: #4b5563;
}

.content ul {
  margin: 8px 0 0 20px;
  padding: 0;
}

.content li {
  margin-bottom: 8px;
}

.ad-slot {
  margin: 18px 0 22px;
  padding: 14px 16px;
  border: 1px dashed rgba(180, 83, 9, 0.35);
  border-radius: 14px;
  color: #92400e;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.ad-slot--filled {
  border-style: solid;
  background: linear-gradient(180deg, rgba(255, 247, 237, 0.92), rgba(255, 255, 255, 0.98));
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.ad-slot--filled strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.ad-slot--filled p {
  margin: 0 0 10px;
  color: #4b5563;
}

.link-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.link-list li {
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(180, 83, 9, 0.12);
  overflow-wrap: anywhere;
}

.link-list strong {
  display: block;
  margin-bottom: 4px;
}

.friend-links {
  margin: 22px 0 10px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(180, 83, 9, 0.12);
}

.friend-links h2 {
  margin: 0 0 12px;
  font-size: 1.05rem;
}

.friend-links .links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.friend-links .links a {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff7ed;
  border: 1px solid rgba(180, 83, 9, 0.14);
  color: #92400e;
  min-height: 42px;
  align-items: center;
}

.nav-box {
  margin: 22px 0 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.pager {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pager a,
.pager span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(180, 83, 9, 0.18);
  background: #fff;
  color: #92400e;
  font-size: 0.95rem;
}

.pager .current {
  background: #92400e;
  color: #fff;
}

.pager .wide {
  min-width: auto;
}

.toplink {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #92400e;
  font-weight: 700;
}

.footer {
  margin: 28px 0 40px;
  color: #6b7280;
  font-size: 0.95rem;
  text-align: center;
}

.footer-contact {
  margin-top: 6px;
  color: #92400e;
  font-weight: 700;
}

.footer small {
  display: block;
  margin-top: 8px;
}

.mobile-bottom-nav {
  display: none;
}

.mobile-bottom-nav a {
  color: #7c2d12;
}

.muted {
  color: #6b7280;
}

@media (max-width: 820px) {
  .site-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav a {
    min-height: 68px;
    padding: 10px 12px;
  }

  .hero--split {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 20px;
  }

  .content {
    padding: 20px;
  }

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

@media (max-width: 640px) {
  .wrap {
    width: min(100% - 16px, 1080px);
  }

  .hero,
  .content,
  .card,
  .meta {
    padding: 18px;
  }

  .brand {
    align-items: flex-start;
  }

  .site-nav {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .site-nav a {
    min-height: 64px;
    border-radius: 16px;
  }

  .content-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-thumb,
  .map-frame {
    border-radius: 14px;
  }

  .friend-links .links {
    gap: 8px;
  }

  .friend-links .links a {
    width: 100%;
    justify-content: center;
  }

  .store-info {
    padding: 16px;
  }

  .store-info__head {
    flex-direction: column;
  }

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

  .footer {
    margin-bottom: 24px;
  }
}

@media (max-width: 420px) {
  .brand h1,
  .brand h2 {
    font-size: 1.35rem;
  }

  .hero h2,
  .page-title,
  .section-title {
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .card,
  .content,
  .meta,
  .hero {
    border-radius: 16px;
  }

  .site-nav a strong {
    font-size: 0.98rem;
  }

  .site-nav a span,
  .muted,
  .footer,
  .friend-links {
    font-size: 0.92rem;
  }
}

@media (max-width: 767px) {
  .home-page {
    padding-bottom: 92px;
  }

  .home-page .mobile-bottom-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 40;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
    border-radius: 20px;
    background: rgba(255, 250, 243, 0.96);
    border: 1px solid rgba(180, 83, 9, 0.16);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .home-page .mobile-bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-height: 56px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(180, 83, 9, 0.12);
    text-decoration: none;
  }

  .home-page .mobile-bottom-nav a strong {
    font-size: 0.92rem;
    line-height: 1.1;
  }

  .home-page .mobile-bottom-nav a span {
    font-size: 0.72rem;
    line-height: 1.1;
    color: #8b5e34;
  }
}

.page-feature {
  margin-top: 18px;
}

.page-feature__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 330px);
  gap: 18px;
  align-items: center;
}

.page-feature__art {
  margin: 0;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(180, 83, 9, 0.08), rgba(245, 158, 11, 0.04));
  border: 1px solid rgba(180, 83, 9, 0.12);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}

.page-feature__art img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
}

.page-feature__body h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.page-feature__body p {
  margin: 0 0 12px;
  color: #4b5563;
}

.page-feature__points {
  margin: 0;
  padding-left: 18px;
  color: #374151;
}

.page-feature__points li + li {
  margin-top: 6px;
}

@media (max-width: 767px) {
  .page-feature__grid {
    grid-template-columns: 1fr;
  }

  .page-feature__art {
    order: -1;
  }
}
