/* ===== Reset ===== */
*, *::before, *::after{
  box-sizing:border-box;
  margin:0;
  padding:0;
}
img{
  max-width:100%;
  display:block;
}
a{
  text-decoration:none;
  color:inherit;
}
body{
  font-family:-apple-system,BlinkMacSystemFont,"Noto Sans TC","Microsoft JhengHei",sans-serif;
  line-height:1.7;
  color:#333;
  background:#FBEBEE;
}

/* ===== Utilities（歷年成果相容） ===== */
.text-center{text-align:center;}
.d-block{display:block;}
.w-100{width:100%;}
.img-fluid{
  max-width:100%;
  height:auto;
}

/* ===== Variables ===== */
:root{
  --brand-green:#ED2E68;   /* 主色：亮桃紅 */
  --brand-red:#EA6671;     /* 價格／重點暖紅 */
  --soft-green:#EE8EAC;    /* 輔助粉色 */
  --soft-cream:#FBEBEE;    /* 淺粉背景 */
  --text-muted:#C0609D;    /* 次要文字粉紫 */
  --max-width:1080px;
  --radius-lg:18px;
  --shadow-soft:0 10px 30px rgba(0,0,0,0.06);

  /* 步驟 icon 寬度（桌機） */
  --step-icon-width:240px;
  --step-gap:1.8rem;
}

/* ===== Layout ===== */
.page{
  width:100%;
  max-width:none;
  margin:0;
  background:var(--soft-cream);
  box-shadow:none;
}
.container{
  max-width:var(--max-width);
  margin:0 auto;
  padding:0 1.4rem;
}
section{
  padding:3rem 0;
}

/* ===== Header / Navbar ===== */
.topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0.7rem 1.4rem;
  border-bottom:1px solid rgba(0,0,0,0.05);
  background:#ffffff;
  position:sticky;
  top:0;
  z-index:20;
}
.brand-logos{
  display:flex;
  align-items:center;
  gap:0.6rem;
  font-size:0.9rem;
}
.brand-logos img{
  height:32px;
  object-fit:contain;
}
.nav{
  display:flex;
  gap:1rem;
  font-size:0.95rem;
}
.nav a{
  position:relative;
  padding-bottom:0.1rem;
  color:#555;
}
.nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0;
  height:2px;
  background:var(--brand-green);
  transition:width .2s ease;
}
.nav a:hover::after{
  width:100%;
}

/* ===== Buttons ===== */
.btn-primary,
.btn-outline{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0.7rem 1.6rem;
  border-radius:999px;
  font-size:1.35rem;
  font-weight:700;
  border:2px solid transparent;
  cursor:pointer;
  transition:all .2s ease;
  white-space:nowrap;
}
.btn-primary{
  background:linear-gradient(120deg,var(--brand-green),var(--brand-red));
  color:#fff;
  box-shadow:0 8px 18px rgba(204,45,156,0.35);
}
.btn-primary:hover{
  transform:translateY(-1px);
  box-shadow:0 12px 24px rgba(90,138,83,0.45);
}
.btn-outline{
  background:#ffffff;
  color:var(--brand-green);
  border-color:#e6c8f8;
}
.btn-outline:hover{
  background:var(--brand-green);
  color:#fff;
}
.btn-row{
  display:flex;
  flex-wrap:wrap;
  gap:0.8rem;
  margin-top:1.6rem;
}

/* FB & Group 特別色 */
#FB.btn-outline{
  color:#0866ff;
  border-color:#0866ff;
}
#FB.btn-outline:hover{
  background:#0866ff;
  color:#ffffff;
  box-shadow:0 8px 18px rgba(8,102,255,0.35);
}
#groups.btn-outline{
  color:#8baf2b;
  border-color:#8baf2b;
}
#groups.btn-outline:hover{
  background:#8baf2b;
  color:#ffffff;
  box-shadow:0 8px 18px rgba(139,175,43,0.35);
}

/* ===== Hero ===== */
.hero{
  position:relative;
  overflow:hidden;
  padding:0;
}
.hero-bn img{
  width:100%;
  height:auto;
  display:block;
}
.hero-people{
  position:absolute;
  right:10%;
  bottom:-130px;
  width:min(560px,42vw);
  pointer-events:none;
}
.hero-people-float{
  animation:heroFloat 4.5s ease-in-out infinite;
}
.hero-people img{
  width:100%;
  height:auto;
  display:block;
}
@keyframes heroFloat{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-14px);}
}

/* === 手機版 hero-people 位置微調，避免跑出 hero_bn_mobile 範圍 === */
@media (max-width:640px){
  .hero{
    min-height:auto;           /* 交給圖片本身決定高度 */
    padding-bottom:-0.8rem;     /* 下方預留一點空間 */
  }
  .hero-people{
    bottom:0;                  /* 固定在 hero 區塊底部 */
    width:80vw;                /* 🔧 想大一點：改 85vw 或 90vw */
    left:50%;                  /* 🔧 想往右：改 55% / 58% */
    transform:translateX(-50%);
  }
}

/* （備用）Hero 文案置中 */
.hero-copy .hero-text{
  max-width:720px;
  margin:0 auto;
  text-align:center;
}
.hero-copy .hero-title{line-height:1.4;}
.hero-copy .hero-meta{justify-content:center;}
.hero-copy .btn-row{justify-content:center;}

.hero-inner{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:2rem;
  align-items:center;
  padding:2.8rem 1.8rem 3.4rem;
}
.hero-text{
  position:relative;
  z-index:1;
}
.eyebrow{
  font-size:0.8rem;
  letter-spacing:0.15em;
  text-transform:uppercase;
  color:var(--brand-green);
  margin-bottom:0.5rem;
}
.hero-title{
  font-size:2rem;
  font-weight:800;
  margin-bottom:0.4rem;
  color:#222;
}
.hero-title span{color:var(--brand-green);}
.hero-subtitle{
  font-size:1rem;
  color:#555;
  margin-bottom:0.3rem;
}
.hero-tagline{
  font-size:0.95rem;
  color:var(--brand-red);
  font-weight:600;
  margin-bottom:0.4rem;
}
.hero-meta{
  display:flex;
  flex-wrap:wrap;
  gap:0.4rem 0.8rem;
  margin-top:0.8rem;
  color:#ffffff;
}
.pill{
  padding:0.3rem 0.9rem;
  border-radius:999px;
  background:#ed2e68;
  border:1px solid rgba(0,0,0,0.06);
  font-size:0.9rem;
  font-weight:700;
  color:#ffffff;
  display:inline-block;
}
.hero-visual{position:relative;}
.hero-visual .banner-img{
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow-soft);
}
.hero-curve{
  position:absolute;
  left:-5%;
  right:-5%;
  bottom:-40px;
  height:110px;
  background:radial-gradient(circle at top, var(--soft-green) 0, transparent 60%);
  z-index:0;
}

/* Hero 主標圖 */
.hero-title-img{
  max-width:360px;
  margin:0 auto 0.6rem;
  text-align:center;
}
.hero-title-img img{
  width:100%;
  height:auto;
  display:block;
}

/* 隱藏文字（SEO 用） */
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}
@media(max-width:540px){
  .hero-title-img{
    max-width:82vw;
    margin-bottom:0.8rem;
  }
}

/* ===== Section Titles ===== */
.section-eyebrow{
  font-size:0.75rem;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--brand-green);
  text-align:center;
  margin-bottom:0.3rem;
}
.section-title{
  font-size:1.6rem;
  text-align:center;
  font-weight:700;
  margin-bottom:0.4rem;
  color:#222;
}
.section-subtitle{
  text-align:center;
  font-size:0.95rem;
  color:var(--text-muted);
  margin-bottom:2rem;
}

/* Section 背景色 */
#about{background:#ffffff;}
#menu{background:var(--soft-cream);}
#steps{background:#ffffff;}
#partner{background:var(--soft-cream);}
#notice{background:var(--soft-cream);}
#faq{background:#ffffff;}
.cta-bottom{background:var(--soft-cream);}

/* ===== 累積募集標題區（文字） ===== */
.flip-wrap{
  margin:1.2rem auto 0;
  text-align:center;
}
.flip-label{
  font-size:1.5rem;
  margin-bottom:0.4rem;
  color:#fff67c;
}

/* 舊翻牌表格隱藏（相容用） */
.flip-table{display:none !important;}
.flip-table td,
#mzykmode{display:none !important;}

/* === ABOUT：滿版家庭照背景（拆成上下兩塊） === */
/* === ABOUT：上半｜家庭照背景 + 文字 === */
.about-hero{
  position:relative;
  padding:4rem 0 4rem;
  overflow:hidden;
  color:#fff;
}

.about-hero-bg{
  position:absolute;
  inset:0;
  z-index:0;
}
.about-hero-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.about-hero-mask{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
  z-index:1;
}

/* 文字置中 */
.about-hero-inner{
  position:relative;
  z-index:2;
  max-width:760px;
  margin:0 auto;
  text-align:center;
  padding:0 1.2rem;
}

.about-hero .section-title,
.about-hero .section-subtitle{
  color:#fff;
  text-shadow:0 3px 6px rgba(0,0,0,0.4);
}

.about-hero .hero-title-img{
  margin-bottom:0.8rem;
}

.about-hero .about-tagline{
  font-size:0.95rem;
  color:#fff67c;
  margin-top:0.6rem;
  margin-bottom:0.6rem;
  text-shadow:0 2px 4px rgba(0,0,0,0.5);
}

/* 關於說明文字：置中＋限寬 */
.about-intro{
  max-width:720px;
  margin:0 auto;
  font-size:1.12rem;
  line-height:1.9;
  text-align:center;
}
.about-intro p{
  color:#fff;
  text-shadow:0 2px 4px rgba(0,0,0,0.55);
  margin-bottom:0.35rem;
}
.about-intro .about-lead{
  font-weight:700;
  font-size:1.75rem;
  margin-bottom:0.25rem;
}

/* 手機版 about 上半 */
@media (max-width:640px){
  .about-hero{
    padding:3rem 0 2.6rem;
  }
  .about-hero-inner{
    padding:0 1.1rem;
  }
}

/* === ABOUT：下半｜3 圓形 Badge + 數字 + CTA（底色 #c0609d） === */
.about-stat{
  background:#b279a3;
  padding:2.6rem 0 3rem;
  color:#ffffff;
}
.about-stat-inner{
  max-width:960px;
  margin:0 auto;
  text-align:center;
}

/* 三顆圓形 Badge：桌機橫向並排 */
.about-stat .hero-meta{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:1.5rem;
  flex-wrap:wrap;
  margin-bottom:1.2rem;
}

/* 圓形 Badge 共用樣式（只作用在這區） */
.about-stat .hero-meta .pill{
  width:170px;
  aspect-ratio:1 / 1;     /* 正圓 */
  border-radius:50%;
  display:flex;
  flex-direction:column;  /* 文字上下排 */
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:0.4rem 0.6rem;
  background:#ecebeb;
  color:#c0609d;
  border:1px solid rgba(0,0,0,0.06);
  /*box-shadow:0 10px 24px rgba(0,0,0,0.25); */
  line-height:1.3;
}

/* 三顆都：第一行 22px、第二行 16px */
.pill-line-main{
  display:block;
  font-size:22px;
  font-weight:800;
}

.pill-line-sub{
  display:block;
  font-size:18px;
  margin-top:2px;
}

/* 認購金額那顆中間的橫線 */
.pill-price .pill-divider{
  width:100px;          /* 線長度：可依喜好調整 */
  height:2px;
  background:#c0609d;  /* 線的顏色 */
  opacity:0.8;
  margin:8px 0;        /* 與上下文字的距離 */
  
}

/* 下半區的 flip 區 & 按鈕置中（沿用原本樣式即可） */
.about-stat .flip-wrap{
  margin-top:0.4rem;
}
.about-stat .btn-row{
  justify-content:center;
  margin-top:1.2rem;
}

/* 手機版：3 顆改直排、稍微縮小 */
@media (max-width:640px){
  .about-stat{
    padding:2.4rem 0 2.8rem;
  }
  .about-stat .hero-meta{
    flex-direction:column;
    gap:0.8rem;
  }
  .about-stat .hero-meta .pill{
    width:160px;
  }
}

/* ===== Menu / Dishes Gallery ===== */
.menu-grid{
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:1.4rem;
}
/* 2 + 2 + 3 排版 */
.menu-grid > .dish-card:nth-child(1){
  grid-column:1 / span 3;
}
.menu-grid > .dish-card:nth-child(2){
  grid-column:4 / span 3;
}
.menu-grid > .dish-card:nth-child(3){
  grid-column:1 / span 3;
}
.menu-grid > .dish-card:nth-child(4){
  grid-column:4 / span 3;
}
.menu-grid > .dish-card:nth-child(5){
  grid-column:1 / span 2;
}
.menu-grid > .dish-card:nth-child(6){
  grid-column:3 / span 2;
}
.menu-grid > .dish-card:nth-child(7){
  grid-column:5 / span 2;
}

.dish-card{
  background:#ffffff;
  border-radius:var(--radius-lg);
  padding:1.1rem 1.1rem 1.2rem;
  box-shadow:var(--shadow-soft);
  font-size:0.9rem;
  display:flex;
  flex-direction:column;
  height:100%;
}
.dish-img{
  border-radius:14px;
  overflow:hidden;
  margin-bottom:0.7rem;
}
.dish-name{
  font-weight:700;
  margin-bottom:0.2rem;
  font-size:1.25rem;
}

/* 價格重點放大 */
.dish-price .price-big{
  font-size:1.5em;
  font-weight:bold;
  color:#db3f3f;
  margin-left:5px;
}
.dish-price{
  font-size:1.1rem;
  color:#db3f3f;
  font-weight:900;
  margin-bottom:0.3rem;
}
.dish-meta{
  font-size:0.88rem;
  font-weight:600;
  color:var(--text-muted);
  margin-bottom:0.4rem;
}
.dish-note{
  font-size:0.8rem;
  color:#555;
  margin-top:auto;
}

/* ===== Steps ===== */
#steps{
  background:#ffffff;
  padding:3rem 0;
}
.steps-wrap{
  background:transparent;
  border-radius:0;
  box-shadow:none;
  padding:0;
  margin-top:1.8rem;
}
.steps-grid{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:8.5rem;  /* 這一行 = 每顆 icon 之間的距離（上下＋左右） */
  justify-items:center;
}
.step-item{
  text-align:center;
  font-size:0.86rem;
  color:#555;
}
.step-icon{
  width:var(--step-icon-width);
  max-width:100%;
  margin:0 auto 0.8rem;
  display:block;
}
.step-icon img{
  width:90%;
  height:auto;
  display:block;
}
@media (max-width:900px){
  .steps-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:1.1rem;
  }
  .step-icon{
    width:230px;
  }
}
@media (max-width:640px){
  .steps-grid{
    grid-template-columns:1fr;
    gap:0.3rem;
  }
  .step-icon{
    width:230px;
  }
}

/* ===== Partner / Beneficiaries ===== */
.partner-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr;
  gap:1.6rem;
  align-items:start;
}
.partner-card{
  background:#ffffff;
  border-radius:var(--radius-lg);
  padding:1.3rem 1.1rem;
  box-shadow:var(--shadow-soft);
  font-size:0.9rem;
}
.partner-card h3{
  font-size:1rem;
  margin-bottom:0.4rem;
  color:var(--brand-green);
}
.benefit-tags{
  display:flex;
  flex-wrap:wrap;
  gap:0.4rem;
  margin-top:0.5rem;
  font-size:0.8rem;
}
.benefit-tags span{
  padding:0.15rem 0.6rem;
  border-radius:999px;
  background:#f1f1f1;
}

/* ===== Notice / FAQ ===== */
.notice-box{
  max-width:880px;
  margin:0 auto;
  background:#ffffff;
  border-radius:var(--radius-lg);
  padding:1.3rem 1.2rem;
  box-shadow:var(--shadow-soft);
  font-size:0.9rem;
}
.notice-title{
  font-weight:700;
  margin-bottom:0.5rem;
  color:#333;
}
.notice-list{
  padding-left:1.2rem;
  font-size:0.86rem;
  color:#555;
}
.notice-list li{
  margin-bottom:0.4rem;
}
.faq-list{
  max-width:880px;
  margin:0 auto;
}
.faq-item{
  background:#ffffff;
  border-radius:var(--radius-lg);
  padding:0.9rem 1rem;
  box-shadow:var(--shadow-soft);
  margin-bottom:0.7rem;
  font-size:0.9rem;
}
.faq-q{
  font-weight:700;
  color:#333;
  margin-bottom:0.2rem;
}
.faq-a{
  font-size:0.86rem;
  color:#555;
}

/* ===== CTA Bottom ===== */
.cta-bottom{
  text-align:center;
  padding-bottom:3rem;
}

/* ===== Footer ===== */
footer{
  background:#f9f9f9;
  border-top:1px solid rgba(0,0,0,0.05);
  font-size:0.8rem;
  color:var(--text-muted);
  padding:1.6rem 1.4rem 2rem;
}
.footer-inner{
  max-width:var(--max-width);
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:0.5rem;
  text-align:center;
}
.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:0.8rem;
}
.footer-links a{text-decoration:underline;}

/* ===== Back to top ===== */
.back-top{
  position:fixed;
  right:1.2rem;
  bottom:1.2rem;
  width:40px;
  height:40px;
  border-radius:50%;
  background:var(--brand-green);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.2rem;
  cursor:pointer;
  box-shadow:0 10px 24px rgba(0,0,0,0.3);
  opacity:0;
  pointer-events:none;
  transition:opacity .2s ease, transform .2s ease;
  z-index:50;
}
.back-top.show{
  opacity:1;
  pointer-events:auto;
  transform:translateY(0);
}

/* ===== Scroll Reveal ===== */
.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible{
  opacity:1;
  transform:translateY(0);
}
.reveal.from-left{
  transform:translateX(-32px);
}
.reveal.visible.from-left{
  transform:translateX(0);
}
.reveal.from-right{
  transform:translateX(32px);
}
.reveal.visible.from-right{
  transform:translateX(0);
}
.reveal.from-bottom{
  transform:translateY(32px);
}
.reveal.visible.from-bottom{
  transform:translateY(0);
}
.reveal.delay-1{transition-delay:0.15s;}
.reveal.delay-2{transition-delay:0.3s;}
.reveal.delay-3{transition-delay:0.45s;}

/* ===== RWD ===== */
@media (max-width:640px){
  .hero-inner{
    grid-template-columns:1fr;
    padding:2.2rem 1.4rem 3rem;
  }
  .hero-visual{order:-1;}
  .about-grid,
  .plans-grid,
  .partner-grid,
  .story-grid,
  .menu-grid,
  .history-grid{
    grid-template-columns:1fr;
  }
  .plans-grid,
  .menu-grid,
  .history-grid{
    gap:1rem;
  }
  .menu-grid > .dish-card{
    grid-column:auto !important;
  }
}
@media (max-width:640px){
  .topbar{
    flex-direction:column;
    align-items:flex-start;
    gap:0.5rem;
  }
  .nav{
    flex-wrap:wrap;
    gap:0.6rem 1rem;
    font-size:0.85rem;
  }
  .hero-title{
    font-size:1.6rem;
  }
  section{
    padding:2.4rem 0;
  }
}

/* ===== 活動相關資訊（若未使用可保留不顯示） ===== */
.info-section{
  padding:2.4rem 0 0;
}
.info-box{
  max-width:880px;
  margin:0 auto;
  background:var(--soft-cream);
  border-radius:var(--radius-lg);
  padding:1.4rem 1.3rem;
  box-shadow:var(--shadow-soft);
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:0.9rem 1.4rem;
}
.info-text{
  flex:1 1 220px;
}
.info-title{
  font-size:1.05rem;
  font-weight:700;
  margin-bottom:0.2rem;
  color:#333;
}
.info-desc{
  font-size:0.9rem;
  color:var(--text-muted);
}
.info-links{
  display:flex;
  flex-wrap:wrap;
  gap:0.6rem;
}
.info-link-sub{
  font-size:0.85rem;
  color:var(--brand-green);
  text-decoration:underline;
  align-self:flex-end;
}
@media (max-width:640px){
  .info-box{align-items:flex-start;}
}

/* ===== 歷年成果 Swiper ===== */
.history-section .swiper{
  width:100%;
  height:100%;
  position:relative;
  margin-top:1.5rem;
}
.history-section .swiper-slide{
  text-align:center;
  font-size:0;
  background:transparent;
  display:flex;
  justify-content:center;
  align-items:center;
}
.history-section .swiper-slide img{
  display:block;
  width:100%;
  height:auto;
}
.history-section .swiper-pagination{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  text-align:center;
  z-index:10;
}
.history-section .swiper-wrapper{
  margin-bottom:2.4rem;
}

/* ===== Partner Hero 背景 ===== */
#partner.partner-hero{
  position:relative;
  background:url('img/holding-hand3.jpg') center center/cover no-repeat;
  color:#ffffff;
}
#partner.partner-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(115deg,rgba(0,0,0,0.6),rgba(0,0,0,0.2));
}
.partner-hero-inner{
  position:relative;
  z-index:1;
  max-width:660px;
  margin:0 auto;
  padding:4rem 1.5rem;
}
.partner-hero .section-eyebrow,
.partner-hero .section-title,
.partner-hero .section-subtitle{
  color:#ffffff;
  text-align:left;
}
.partner-text-block{
  margin-top:1.2rem;
  max-width:720px;
  font-size:0.95rem;
  line-height:1.8;
}
.partner-text-block p{
  margin-bottom:0.6rem;
}
.partner-note{
  font-size:0.85rem;
  margin-top:0.6rem;
  opacity:0.9;
}
.partner-btn-row{
  margin-top:1.2rem;
}
.partner-hero .btn-outline{
  background:transparent;
  color:#ffffff;
  border-color:#ffffff;
}
.partner-hero .btn-outline:hover{
  background:#ffffff;
  color:var(--brand-red);
}
@media (max-width:640px){
  .partner-hero-inner{
    padding:3rem 1.25rem;
    max-width:360px;
  }
}

/* ===== Odometer（SCIF 風格、無光暈） ===== */
#odometer{
  font-size:90px;
  font-weight:900;
  color:#ffffff;
  text-shadow:none;
  background:rgba(255,255,255,0.20);
  padding:0.6rem 1.6rem;
  border-radius:22px;
  display:inline-block;
}
@media (max-width:640px){
  #odometer{
    font-size:5rem;
    padding:0.4rem 1rem;
  }
}


/* =========================
 * 手機版 RWD 修正（≤ 640px）
 * 直接貼在 style.css 最底即可
 * ========================= */
@media (max-width:640px){

  /* 避免整頁左右滑動 */
  html,
  body{
    max-width:100%;
    overflow-x:hidden;
  }

  /* 每個 section 稍微收窄 padding，畫面比較緊實 */
  section{
    padding:2.2rem 0;
  }

  /* Topbar：維持你原本的「上下堆疊」但再收一點間距 */
  .topbar{
    flex-direction:column;
    align-items:flex-start;
    gap:0.4rem;
    padding:0.6rem 1rem;
  }
  .nav{
    flex-wrap:wrap;
    gap:0.4rem 0.8rem;
    font-size:0.85rem;
  }

  /* Hero 區：改成一欄直排，圖片在上、文字在下 */
  .hero-inner{
    grid-template-columns:1fr;
    padding:2rem 1.2rem 2.6rem;
  }
  .hero-visual{
    order:-1;
  }
  .hero-title{
    font-size:1.5rem;
  }

  /* 浮動人物圖：縮小一點、往上拉，避免吃到下面區塊 */
  .hero-people{
    left:50%;
    transform:translateX(-50%);
    bottom:-90px;
    width:88vw;
  }

  /* ===== ABOUT：上半（滿版家庭照 + 說明文字） ===== */
  .about-hero{
    padding:2.6rem 0 2.4rem;
  }
  .about-hero-inner{
    padding:0 1.1rem;
  }
  .about-hero .about-tagline{
    font-size:0.95rem;
  }
  .about-intro{
    font-size:0.9rem;
    line-height:1.8;
  }

  /* ===== ABOUT：下半（3 顆圓 + SCIF 數字 + CTA） ===== */
  .about-stat{
    padding:2.4rem 0 2.6rem;
  }

  /* 3 顆圓形改成直排、等寬 */
  .about-stat .hero-meta{
    flex-direction:column;
    align-items:center;
    gap:0.8rem;
    margin-bottom:1rem;
  }
  .about-stat .hero-meta .pill{
    width:140px;
  }

  /* 三顆圓裡的上下兩行字再縮小一點，避免擠到換行 */
  .about-stat .hero-meta .pill .pill-line-main{
    font-size:18px;
  }
  .about-stat .hero-meta .pill .pill-line-sub{
    font-size:14px;
  }

  /* SCIF 數字縮小，避免撐出橫向卷軸 */
  #odometer{
    font-size:3.2rem;
    padding:0.4rem 0.9rem;
  }

  /* CTA 按鈕列置中 */
  .about-stat .btn-row{
    justify-content:center;
    margin-top:1.1rem;
  }

  /* ===== 年菜一覽：改成單欄直排 ===== */
  .menu-grid{
    grid-template-columns:1fr;
    gap:1rem;
  }
  .menu-grid > .dish-card{
    grid-column:auto !important; /* 把原本 2+2+3 的格線吃掉 */
  }

  /* ===== 認購步驟：手機改一欄直排，間距拉開一點 ===== */
  .steps-grid{
    grid-template-columns:1fr;
    gap:1rem;
  }
  .step-icon{
    width:230px;
  }

  /* ===== Partner / FAQ 等兩欄區塊：改為一欄 ===== */
  .partner-grid{
    grid-template-columns:1fr;
    gap:1rem;
  }
  .info-box{
    flex-direction:column;
    align-items:flex-start;
  }

  /* 歷年成果輪播，下方留白少一點 */
  .history-section .swiper-wrapper{
    margin-bottom:1.6rem;
  }
}


/* === 手機版 Navbar：圓形漢堡鈕 + 展開選單 === */

/* 基本漢堡鈕（桌機隱藏、手機再開） */
.nav-toggle{
  display:none;
  border:none;
  background:#ffffff;
  border-radius:50%;
  width:40px;
  height:40px;
  padding:0;
  margin-left:0.75rem;
  box-shadow:0 4px 12px rgba(0,0,0,0.12);
  cursor:pointer;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:4px;
}

/* 三條線 */
.nav-toggle span{
  display:block;
  width:18px;
  height:2px;
  border-radius:999px;
  background:#ed2e68;
  transition:transform .2s ease, opacity .2s ease, width .2s ease;
}

/* 變成 X 的動畫 */
.nav-toggle.is-open span:nth-child(1){
  transform:translateY(6px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2){
  opacity:0;
  width:0;
}
.nav-toggle.is-open span:nth-child(3){
  transform:translateY(-6px) rotate(-45deg);
}

/* 手機版 navbar 佈局 */
@media (max-width:768px){
  .topbar{
    padding:0.6rem 1rem;
    justify-content:space-between;
    align-items:center;
    gap:0.5rem;
  }

  /* logo 置中 */
  .brand-logos{
    flex:1 1 auto;
    justify-content:center;
  }

  /* 手機版展開選單（預設收起） */
  .nav{
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:#ffffff;
    padding:0.6rem 1.4rem 1rem;
    flex-direction:column;
    align-items:flex-start;
    gap:0.4rem;
    font-size:0.95rem;
    box-shadow:0 10px 28px rgba(0,0,0,0.15);
    border-radius:0 0 18px 18px;
    display:none;
    z-index:30;
  }

  /* 打開狀態：body 加 nav-open 時顯示 */
  body.nav-open .nav{
    display:flex;
  }

  .nav a{
    padding:0.25rem 0;
  }

  /* 手機才顯示漢堡鈕 */
  .nav-toggle{
    display:flex;
  }
}


/* ===== Section Floating Decorations ===== */
section{
  position:relative; /* 讓裝飾圖可以相對於每個區塊定位 */
}

/* 共用容器：放在每一區塊分界線上方 */
.section-decoration{
  position:absolute;
  top:-40px;               /* 圖片中心大約落在分界線，可視覺再微調 */
  left:80%;
  transform:translateX(-50%);
  z-index:6;
  pointer-events:none;     /* 不會擋住連結與按鈕 */
}

/* 圖片大小 + 漂浮動畫：桌機版 */
.section-decoration img{
  width:200px;                           /* 桌機尺寸 */
  height:auto;
  animation:sectionFloat 6s ease-in-out infinite;
}

/* 漂浮關鍵影格 */
@keyframes sectionFloat{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-12px); }
}

/* 可以選擇左右偏移／大小與速度微調用 */
.section-decoration--left{
  left:18%;
  transform:none;
}
.section-decoration--right{
  left:auto;
  right:18%;
  transform:none;
}
.section-decoration--small img{
  width:170px;            /* 小一點的版本（桌機） */
}
.section-decoration--slow img{
  animation-duration:8s;
}
.section-decoration--fast img{
  animation-duration:4.5s;
}

/* 手機版：ICON 縮小 */
@media (max-width:640px){
  .section-decoration{
    top:-50px;
  }

  /* 手機版 ICON 統一放大 */
  .section-decoration img{
    width:150px;   /* ← 原本 120px，改大一點 */
  }

  /* 如果 icon3 / icon4 有加 .section-decoration--small，就再放大一點 */
  .section-decoration--small img{
    width:135px;   /* 可再視覺調整 130～140 之間 */
  }
}
