   body{
    background: var(--color-bg);
   }
   .maternity-section {
    display: flex;
    width: 100vw;
    min-height: 100vh;
    background: var(--color-beige);
    overflow: hidden;
    padding-top: 30px; 
  }
  
  /* ---------- CENTER MAIN（靠左，無 peek）---------- */
  .main-center {
    flex: 0 0 clamp(380px, 48vw, 680px);
    padding: 40px;
    display: flex;
  }
  
  .main-img-wrap {
    width: 100%;
    height: 520px;
    margin-top: 40px;
    display: flex;
    align-items: flex-end;  
    justify-content: center;
    overflow: hidden;
  }
  
  .main-img-wrap img {
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto;
      object-fit: contain; 
    transition: opacity 0.45s ease, transform 0.45s ease;
  }
  
  .main-img-wrap img.fading {
    opacity: 0;
    transform: scale(1.02);
  }
  
  /* ---------- RIGHT PANEL ---------- */
  .right-panel {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 56px 48px 0 52px;
    min-width: 0;
    overflow: hidden;
  }
  
  .right-content { flex: 0 0 auto; }
  
  .section-label {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: var(--color-text);
    margin-bottom: 10px;
  }
  
  .section-divider {
    width: 100%;
    height: 1px;
    background: var(--color-line);
    margin-bottom: 24px;
  }
  
  .quote {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 2;
  }
  
  .body-text {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 300;
    color: var(--color-text-md);
    line-height: 2;
    margin-bottom: 32px;
  }
  
  /* ---------- CTA ---------- */
  .cta-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
  }
  
  .btn-outline,
  .btn-solid {
    font-family: var(--font-serif);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    padding: 12px 28px;
    border-radius: 10px;
    transition:color 0.25s, border-color 0.25s;
    white-space: nowrap;
  }
  
  .btn-outline {
    border: 1px solid var(--color-text);
    color: var(--color-text);
    background: transparent;
  }
  .btn-outline:hover {
    background: var(--color-text);
    color: var(--color-white);
  }
  
  .btn-solid {
    border: 1px solid var(--color-text-lt);
    color: var(--color-text);
    background: var(--color-beige-lt);
  }
  .btn-solid:hover {
    background: var(--color-text);
    color: var(--color-white);
    border-color: var(--color-text);
  }
  
  /* ---------- Nav Arrows ---------- */
  .strip-nav {
    display: flex;
    gap: 12px;
  }
  
  .nav-arrow {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;  
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .nav-arrow img {
    width: 18px;
    height: 18px;
    opacity: 0.6;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  
  .nav-arrow:hover img {
    opacity: 1;
    transform: translateX(4px); /* 👉 右箭頭 */
  }
  /* ---------- Gallery Strip ---------- */
  .gallery-strip-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    -webkit-overflow-scrolling: touch; /* ⭐ 手機滑順 */
  }
  
  .gallery-strip-wrap::-webkit-scrollbar {
    display: none;
  }
  
  .gallery-strip {
    display: flex;
    gap: 6px;
  }
  .thumb-item {
    flex: 0 0 auto;
    width: 200px;
    height: 200px;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    overflow: hidden;
  }
  .thumb-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain; 
    transition: transform 0.4s ease, filter 0.3s ease;
    filter: brightness(0.88);
  }
  
  .thumb-item:hover img,
  .thumb-item.active img {
    transform: scale(1.04);
    filter: brightness(1);
  }
  /* =========================
   PRICE SECTION
========================= */
/* 外框 */
.price-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* 卡片 */
.price-card {
  padding: 70px 50px;
  text-align: center;
  font-family: var(--font-serif);
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: center; 
}

/* 左卡（主視覺重點） */
.price-card--left {
  background: var(--color-beige);
}


/* 標題 */
.price-title {
  font-size: 20px;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  color: var(--color-text);
}

/* 說明 */
.price-desc {
  font-size: 16px;
  color: var(--color-text-md);
  line-height: 2;
  margin-bottom: 50px;
}

/* 價格區 */

.price-main {
  margin-top: auto;  
}
.price {
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  color: var(--color-text);
}

.label {
  font-size: 18px;
  color: var(--color-text-md);
}


/* 備註 */
.price-note {
  font-size: 14px;
  color: var(--color-text-lt);
}

/* 底部說明 */
.price-footer {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.08em;
}

  /* ══════════════════════════════════
   推薦見證
══════════════════════════════════ */
.testimonials {
  background: var(--color-bg);
  padding: 0 0 20px;
}
.testimonials-header{
  position:relative;
  padding:60px 0;
  text-align:center;
}

.testimonials-scroll {
  overflow-x: auto;
  cursor: grab;
  scrollbar-width: none;
  border-top: 1px solid #d8d4ce;
  border-bottom: 1px solid #d8d4ce;
}
.testimonials-scroll::-webkit-scrollbar { display: none; }
.testimonials-scroll.grabbing { cursor: grabbing; }
.testimonials-cards {
  display: flex;
  min-width: max-content;
}
.t-card {
  width: 420px; flex-shrink: 0;
  background: var(--color-beige);
  padding: 40px 36px 36px;
  border-right: 1px solid #d0cbc5;
  display: flex; flex-direction: column;
}
.t-card:last-child { border-right: none; }
.t-card__header {
  display: flex; align-items: baseline;
  gap: 10px; margin-bottom: 10px;
}
.t-card__name {
  font-family: var(--font-en);
  font-size: 0.95rem; font-weight: 400;
  color: var(--color-text); letter-spacing: 0.04em;
}
.t-card__divider { color: #aaa49e; }
.t-card__type {
  font-size: 0.82rem; font-weight: 400;
  color: var(--color-text); letter-spacing: 0.04em;
}
.t-card__stars {
  font-size: 1rem; letter-spacing: 0.05em;
  margin-bottom: 18px;
}
.t-card__text {
  font-size: 0.82rem; font-weight: 300;
  line-height: 2; color: var(--color-text-md);
  flex: 1; overflow: hidden;
  max-height: calc(0.82rem * 2 * 7);
  transition: max-height 0.4s ease;
}
.t-card__text.expanded { max-height: 2000px; }
.t-card__toggle {
  display: flex; align-items: center; gap: 6px;
  margin-top: 20px;
  font-size: 0.82rem; font-weight: 300;
  color: var(--color-text-md); letter-spacing: 0.06em;
  font-family: var(--font-serif);
  transition: color 0.2s;
}
.t-card__toggle:hover { color: var(--color-text); }
.t-card__toggle .chevron {
  display: inline-block;
  transition: transform 0.3s;
}
.t-card__toggle.open .chevron { transform: rotate(180deg); }

.page-end {
  text-align: center;
  font-size: 12px;
  color: #b5aca4;
  padding-bottom: 10px;
}
/* ══════════════════════════════
   RWD — 平板 (max-width: 1024px)
══════════════════════════════ */
@media (max-width: 1024px) {
 
  /* ── Maternity Section ── */
  .maternity-section {
    padding-top: 20px;
  }
  .main-center {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .main-img-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .main-img-wrap img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .right-panel {
    padding: 40px 28px 0 32px;
    justify-content: space-evenly;
  }
 
  .section-label {
    font-size: 26px;
  }
 
  .quote {
    font-size: 1.1rem;
  }
 
  .body-text {
    font-size: 15px;
    margin-bottom: 24px;
  }
 
  .thumb-item {
    width: 150px;
    height: 180px;
  }
 
  /* ── Price ── */
  .price-card {
    padding: 52px 36px;
  }
 
  .price {
    font-size: 28px;
  }
 
  .price-desc {
    font-size: 15px;
    margin-bottom: 36px;
  }
 
  /* ── Testimonials ── */
  .t-card {
    width: 360px;
    padding: 32px 28px 28px;
  }
 
  .testimonials-header {
    padding: 20px 0;
  }
}
 
 
/* ══════════════════════════════
   RWD — 手機 (max-width: 640px)
══════════════════════════════ */
@media (max-width: 640px) {
 
  /* ── Maternity Section：直排 ── */
  .maternity-section {
    flex-direction: column;
    min-height: auto;
    padding-top: 50px;
    
  }
 
  /* 主圖區：圖片在上 */
  .main-center {
    order: 2;
    width: 100%;
    height: auto; 
  }

  .main-img-wrap {
      height: 70vw;
      margin-top: 0;
  }

  .main-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

 
  /* right-panel、right-content 攤平成同一個 flex 容器 */
  .right-panel {
    display: contents;
    flex-direction: column;
    padding: 0 0 32px;
    overflow: visible;
  }
 
  .right-content {
    display: contents;
  }
 
  /* 小圖：order -1，排到最前面（緊接大圖） */
  .gallery-strip-wrap {
    order: 4;
  }
 
  /* 文字們：order 0，排在小圖後 */
  .section-label  { order: 0; padding: 28px 24px 0; }
  .section-divider{ order: 0; margin: 8px 24px 18px; width: auto; }
  .quote          { order: 0; padding: 0 24px; }
  .body-text      { order: 0; padding: 0 24px; }
  .cta-row        { order: 0; padding: 0 24px; }
  .strip-nav      { order: 4; padding: 0 24px; }
 
  .section-label {
    font-size: 22px;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
  }
 
  .section-divider {
    margin-bottom: 18px;
  }
 
  .quote {
    font-size: 1rem;
    margin-bottom: 14px;
    line-height: 1.9;
  }
 
  .body-text {
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 24px;
  }
 
  /* CTA 按鈕 */
  .cta-row {
    gap: 10px;
    margin-bottom: 20px;
  }
 
  .btn-outline,
  .btn-solid {
    font-size: 0.8rem;
    padding: 10px 20px;
    flex: 1 1 auto;
    text-align: center;
  }
 
  .thumb-item {
    width: 100px;
    height: 120px; 
    align-items: flex-start;
  }
 
  .thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;     
  }
 
  /* ── Price Section ── */
  .price-section {
    padding-top: 32px;
  }
 
  .price-wrap {
    grid-template-columns: 1fr;
  }
 
  .price-card {
    padding: 48px 28px 44px;
  }
 
  .price-card--left {
    border-bottom: 1px solid var(--color-line);
  }
 
  .price-title {
    font-size: 18px;
    margin-bottom: 14px;
  }
 
  .price-desc {
    font-size: 14px;
    margin-bottom: 32px;
  }
 
  .price {
    font-size: 28px;
  }
 
  .label {
    font-size: 15px;
  }
 
  .price-note {
    font-size: 13px;
  }
 
  .price-footer {
    font-size: 14px;
    margin: 36px 24px;
    letter-spacing: 0.05em;
  }
 
  /* ── Testimonials ── */
  .testimonials {
    padding: 0 0 10px;
  }
 
  .testimonials-header {
    padding: 40px 24px;
  }
 
  /* 手機版改為全屏單卡，可左右滑 */
  .t-card {
    width: 85vw;
    padding: 32px 24px 28px;
    flex-shrink: 0;
  }
 
  .t-card__name {
    font-size: 0.88rem;
  }
 
  .t-card__type {
    font-size: 0.78rem;
  }
 
  .t-card__stars {
    font-size: 0.9rem;
    margin-bottom: 14px;
  }
 
  .t-card__text {
    font-size: 0.8rem;
  }
 
  .t-card__toggle {
    font-size: 0.78rem;
    margin-top: 14px;
  }
}