/* ═══════════════════════════════════════════════════════════════
   全新响应式CSS - 从零开始
   桌面1920px / 平板768-1024px / 手机<768px
   ═══════════════════════════════════════════════════════════════ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 全站内容最大宽度（改这一处即可统一所有区块的左右宽度） */
:root {
  --content-max: 1280px;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #ebe9e3;
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════════════════════════
   页面容器
   ═══════════════════════════════════════════════════════════════ */
.responsive-page {
  width: 100%;
  margin: 0 auto;
  background-color: #ebe9e3;
}

/* ═══════════════════════════════════════════════════════════════
   Hero Section - 全屏自适应
   ═══════════════════════════════════════════════════════════════ */
.hero-section {
  width: 100vw;
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  flex-direction: column;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* 导航栏 */
.main-nav {
  width: 100%;
  padding: 12px 0;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* 滚过 hero 后：导航固定顶部、变 navy 实心、从上滑入。
   触发点在 hero 快滚出屏幕时，避免顶部内容跳动。 */
.main-nav.is-stuck {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1200;
  background-color: #192a44;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
  animation: navSlideDown 0.35s ease;
}

@keyframes navSlideDown {
  from { transform: translateY(-100%); }
  to   { transform: translateY(0); }
}

.nav-container {
  max-width: var(--content-max, 1280px);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  width: 64px;
  height: 60px;
}

.nav-links {
  display: flex;
  gap: 34px;
  margin-left: 48px;
}

.nav-link {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #bc994b;
}

.btn-join {
  background-color: #f7f1e8;
  color: #192a44;
  border: none;
  border-radius: 20px;
  height: 40px;
  padding: 0 20px;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s;
  margin-left: auto;
  flex-shrink: 0;
  white-space: nowrap;
}

.btn-join:hover {
  transform: translateY(-2px);
}

/* 右侧操作区按钮不被压缩 */
.nav-link--account,
.cb-curr {
  flex-shrink: 0;
}

.cart-btn {
  background-color: #192a44;
  border-radius: 20px;
  height: 40px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s;
  flex-shrink: 0;
  white-space: nowrap;
}

.cart-btn:hover {
  transform: translateY(-2px);
}

.cart-badge {
  background-color: #bc994b;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* Hero 内容 */
.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  max-width: 1220px;
  margin: 0 auto;
  width: 100%;
}

.hero-tagline {
  color: #bc994b;
  font-size: 14px;
  letter-spacing: 4px;
  text-align: center;
  margin-top: -50px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.2s;
}

.hero-title {
  color: #fff;
  font-size: 64px;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  line-height: 80px;
  text-align: center;
  margin-top: 16px;
  max-width: 584px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.4s;
}

.hero-subtitle {
  color: #dbdbdb;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  margin-top: 16px;
  max-width: 584px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.6s;
}

.hero-cta {
  display: flex;
  gap: 64px;
  margin-top: 80px;
  justify-content: center;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.8s;
}

/* 动画定义 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-primary {
  background-color: #bc994b;
  border: 1px solid #fff;
  border-radius: 8px;
  width: 260px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.3s;
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-4px);
}

.btn-primary img {
  width: 32px;
  height: 32px;
}

.btn-secondary {
  background: transparent;
  border: 1px solid #fff;
  border-radius: 8px;
  width: 260px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.btn-secondary img {
  width: 32px;
  height: 30px;
}

/* ═══════════════════════════════════════════════════════════════
   Section - For The One Who Matters Most
   ═══════════════════════════════════════════════════════════════ */
.section-matters {
  width: 100%;
  padding: 100px 20px;
  background-color: #ebe9e3;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
}

.section-tagline {
  color: #bc994b;
  font-size: 14px;
  letter-spacing: 4px;
  text-align: left;
}

.section-title {
  color: #192a44;
  font-size: 64px;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  line-height: 80px;
  margin-top: 32px;
  max-width: 580px;
}

.section-text {
  color: rgba(25, 42, 68, 0.8);
  font-size: 18px;
  line-height: 32px;
  margin-top: 48px;
  max-width: 584px;
}

/* ═══════════════════════════════════════════════════════════════
   Section - Our Story
   ═══════════════════════════════════════════════════════════════ */
.section-story {
  width: 100%;
  padding: 100px 20px;
  background-color: #192a44;
}

.story-content {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: center;
}

.story-images img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
}

.story-text {
  flex: 1;
  color: #fff;
}

.story-year {
  font-size: 32px;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 24px;
}

.story-title {
  font-size: 46px;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  line-height: 58px;
  margin-bottom: 32px;
}

.story-desc {
  font-size: 18px;
  line-height: 36px;
  margin-bottom: 48px;
  opacity: 0.9;
}

.btn-story {
  background: transparent;
  border: 1px solid #fff;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  padding: 20px 40px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-story:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════
   Section - Featured Products
   ═══════════════════════════════════════════════════════════════ */
.section-products {
  width: 100%;
  padding: 100px 20px;
  background-color: #ebe9e3;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.product-card {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.product-card img {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 16px;
}

.product-card h3 {
  color: #192a44;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}

.product-card p {
  color: #bc994b;
  font-size: 20px;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════
   Section - Features
   ═══════════════════════════════════════════════════════════════ */
.section-features {
  width: 100%;
  padding: 100px 20px;
  background-color: #ebe9e3;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.feature-card {
  background: #192a44;
  border-radius: 8px;
  padding: 48px;
  color: #fff;
}

.feature-large {
  background: linear-gradient(135deg, #bc994b 0%, #192a44 100%);
}

.feature-number {
  font-size: 56px;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  display: block;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 26px;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}

.feature-card p {
  font-size: 14px;
  line-height: 22px;
  opacity: 0.9;
}

/* ═══════════════════════════════════════════════════════════════
   Footer
   ═══════════════════════════════════════════════════════════════ */
.site-footer {
  width: 100%;
  padding: 80px 20px 40px;
  background-color: #192a44;
  color: #fff;
}

.footer-content {
  max-width: var(--content-max, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  width: 64px;
  margin-bottom: 16px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #bc994b;
}

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 14px;
  opacity: 0.6;
}

/* ═══════════════════════════════════════════════════════════════
   响应式断点
   ═══════════════════════════════════════════════════════════════ */

/* 平板 (768px - 1024px) */
@media (max-width: 1024px) {
  .hero-section {
    height: 700px;
  }

  .nav-links {
    gap: 30px;
    margin-left: 80px;
  }

  .nav-link {
    font-size: 12px;
  }

  .hero-title {
    font-size: 48px;
    line-height: 60px;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
  }

  .section-title {
    font-size: 48px;
    line-height: 60px;
  }

  .section-text {
    font-size: 16px;
    line-height: 28px;
  }

  .story-content {
    gap: 40px;
  }

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

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

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* 手机 (最大768px) */
@media (max-width: 768px) {
  .hero-section {
    height: 600px;
  }

  .nav-links {
    display: none; /* 手机版使用汉堡菜单 */
  }

  .nav-container {
    justify-content: space-between;
  }

  .btn-join {
    display: none;
  }

  .hero-content {
    align-items: center;
    padding: 0 20px;
  }

  .hero-tagline {
    text-align: center;
    margin-top: 80px;
    font-size: 12px;
    letter-spacing: 2px;
  }

  .hero-title {
    font-size: 36px;
    line-height: 46px;
    text-align: center;
  }

  .hero-subtitle {
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    margin-top: 40px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 16px;
    margin-top: 60px;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 320px;
  }

  .section-matters {
    padding: 60px 20px;
  }

  .section-tagline {
    text-align: center;
    font-size: 12px;
  }

  .section-title {
    font-size: 36px;
    line-height: 46px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .section-text {
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .section-story {
    padding: 60px 20px;
  }

  .story-content {
    flex-direction: column;
    gap: 32px;
  }

  .story-images img {
    max-width: 100%;
  }

  .story-year,
  .story-title,
  .story-desc {
    text-align: center;
  }

  .story-year {
    font-size: 24px;
    line-height: 32px;
  }

  .story-title {
    font-size: 36px;
    line-height: 46px;
  }

  .story-desc {
    font-size: 14px;
    line-height: 24px;
  }

  .btn-story {
    display: block;
    margin: 0 auto;
  }

  .section-products {
    padding: 60px 20px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-features {
    padding: 60px 20px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-card {
    padding: 32px;
  }

  .site-footer {
    padding: 60px 20px 40px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* 超小手机 (最大480px) */
@media (max-width: 480px) {
  .hero-section {
    height: 500px;
  }

  .hero-title {
    font-size: 28px;
    line-height: 36px;
  }

  .hero-subtitle {
    font-size: 13px;
    line-height: 20px;
  }

  .section-title {
    font-size: 28px;
    line-height: 36px;
  }

  .section-text {
    font-size: 13px;
    line-height: 20px;
  }

  .story-year {
    font-size: 20px;
    line-height: 28px;
  }

  .story-title {
    font-size: 28px;
    line-height: 36px;
  }

  .story-desc {
    font-size: 13px;
    line-height: 20px;
  }

  .feature-card {
    padding: 24px;
  }

  .feature-number {
    font-size: 40px;
  }

  .feature-card h3 {
    font-size: 20px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   Section 6 - Testimonials
   ═══════════════════════════════════════════════════════════════ */
.section-testimonials {
  width: 100%;
  padding: 100px 20px;
  background-color: #fff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.testimonial-card {
  background-color: #f9f8f6;
  padding: 32px;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
  color: #bc994b;
  font-size: 18px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 26px;
  color: #192a44;
  margin-bottom: 24px;
  font-style: italic;
}

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

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  color: #192a44;
  margin-bottom: 4px;
}

.testimonial-author span {
  display: block;
  font-size: 12px;
  color: #666;
}

/* ═══════════════════════════════════════════════════════════════
   Section 7 - Shop by Category
   ═══════════════════════════════════════════════════════════════ */
.section-categories {
  width: 100%;
  padding: 100px 20px;
  background-color: #ebe9e3;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.category-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.category-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.category-card h3 {
  font-size: 24px;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: #192a44;
  margin: 24px 0 8px;
}

.category-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
}

.btn-category {
  display: inline-block;
  color: #bc994b;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 24px;
  transition: color 0.3s;
}

.btn-category:hover {
  color: #192a44;
}

/* ═══════════════════════════════════════════════════════════════
   Section 8 - Newsletter
   ═══════════════════════════════════════════════════════════════ */
.section-newsletter {
  width: 100%;
  padding: 80px 20px;
  background: linear-gradient(135deg, #bc994b 0%, #192a44 100%);
}

.newsletter-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.newsletter-text h2 {
  font-size: 36px;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.newsletter-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 26px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  min-width: 400px;
}

.newsletter-input {
  flex: 1;
  height: 48px;
  padding: 0 20px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
}

.btn-newsletter {
  height: 48px;
  padding: 0 32px;
  background-color: #192a44;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s;
  white-space: nowrap;
}

.btn-newsletter:hover {
  background-color: #0d1a2d;
}

/* ═══════════════════════════════════════════════════════════════
   Section 9 - Instagram Feed
   ═══════════════════════════════════════════════════════════════ */
.section-instagram {
  width: 100%;
  padding: 100px 20px;
  background-color: #fff;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.instagram-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.instagram-item:hover img {
  transform: scale(1.1);
}

.instagram-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.instagram-item:hover .instagram-overlay {
  opacity: 1;
}

.instagram-overlay span {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════
   Section 10 - Blog/Journal
   ═══════════════════════════════════════════════════════════════ */
.section-journal {
  width: 100%;
  padding: 100px 20px;
  background-color: #ebe9e3;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.journal-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.journal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.journal-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.journal-meta {
  display: flex;
  justify-content: space-between;
  padding: 20px 24px 0;
  font-size: 12px;
  color: #bc994b;
  text-transform: uppercase;
}

.journal-card h3 {
  font-size: 20px;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: #192a44;
  line-height: 28px;
  padding: 16px 24px 0;
}

.journal-card p {
  font-size: 14px;
  line-height: 24px;
  color: #666;
  padding: 12px 24px;
}

.btn-read {
  display: inline-block;
  color: #bc994b;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  padding: 0 24px 24px;
  transition: color 0.3s;
}

.btn-read:hover {
  color: #192a44;
}

/* ═══════════════════════════════════════════════════════════════
   Section 11 - Trust Badges
   ═══════════════════════════════════════════════════════════════ */
.section-trust {
  width: 100%;
  padding: 100px 20px;
  background-color: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
  margin-bottom: 64px;
}

.trust-item {
  text-align: center;
  padding: 32px;
}

.trust-item img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

.trust-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: #192a44;
  margin-bottom: 8px;
}

.trust-item p {
  font-size: 14px;
  color: #666;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  padding-top: 64px;
  border-top: 1px solid #e0e0e0;
}

.partners-logos img {
  height: 48px;
  opacity: 0.6;
  transition: opacity 0.3s;
  filter: grayscale(100%);
}

.partners-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ═══════════════════════════════════════════════════════════════
   新增Section的响应式断点
   ═══════════════════════════════════════════════════════════════ */

/* 平板 (768px - 1024px) */
@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .categories-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    min-width: 100%;
  }

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

  .journal-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .partners-logos {
    gap: 32px;
    flex-wrap: wrap;
  }
}

/* 手机 (最大768px) */
@media (max-width: 768px) {
  .section-testimonials,
  .section-categories,
  .section-instagram,
  .section-journal,
  .section-trust {
    padding: 60px 20px;
  }

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

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

  .newsletter-text h2 {
    font-size: 28px;
  }

  .newsletter-text p {
    font-size: 14px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .btn-newsletter {
    width: 100%;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

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

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

  .partners-logos {
    flex-direction: column;
    gap: 24px;
  }

  .partners-logos img {
    height: 40px;
  }
}

/* ─── 由 div/button 改为 a 的按钮：去除链接默认样式，保持原视觉 ─── */
a.box_9,
a.box_10,
a.section_6 {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a.btn-primary,
a.btn-secondary {
  text-decoration: none;
}
