@charset "UTF-8";

/* =========================================================
   About｜Corporate Philosophy 比例平衡版
   ========================================================= */

/* 1. 調整網格比例：接近 1:1 但左圖稍微寬一點，維持大氣感 */
.philosophy-grid {
    display: grid;
    /* 左欄 1.1，右欄 0.9，這會讓右側文字擁有更寬鬆的閱讀空間 */
    grid-template-columns: 1fr 1fr; 
    gap: 5px; /* 增加兩欄之間的間距，避免視覺壓迫 */
    align-items: center;
    padding: 5px 0;
}

/* 2. 左側圖片容器 */
.philosophy-gallery {
    position: relative;
    width: 100%;
}

/* 3. 圖片外框：加入溫潤的圓角，讓視覺更柔和 */
.photo-main {
    position: relative;
    overflow: hidden;
    border-radius: 20px; /* 增加圓角 */
    background: #f0f0f0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05); /* 輕微陰影增加層次 */
}

/* 4. 圖片尺寸控制：高度設定為固定感，避免過長 */
.photo-main img {
    width: 100%;
    /* 高度設定在 500px 到 650px 之間，保持橫向感 */
    height: clamp(480px, 55vh, 1000px); 
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.8s ease;
}

.photo-main:hover img {
    transform: scale(1.05);
}

/* 5. 右側文字內容區塊：強化標題與文字的寬度 */
.philosophy-content {
    padding: 20px 0;
    max-width: 520px; /* 限制文字寬度，讓閱讀更舒適 */
}

.section-kicker {
    font-size: 50px;
    color: var(--wt-gold-700, #c99700);
    letter-spacing: 0.2em;
    margin-bottom: 16px;
    font-weight: 600;
}

.section-title {
    font-size:  28px ; /* 標題放大，撐起右側份量 */
    line-height: 1.1;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.section-title span {
    display: block;
    margin-top: 8px;
}

/* =========================================================
   手機與平板調整 (RWD)
   ========================================================= */
@media (max-width: 1100px) {
    .philosophy-grid {
        grid-template-columns: 1fr; /* 改為上下排列 */
        gap: 50px;
        padding: 50px 0;
    }

    .philosophy-content {
        max-width: 100%;
        text-align: center; /* 平板手機版文字置中較美觀 */
        padding: 0 10%;
    }
}

@media (max-width: 768px) {
    .photo-main img {
        height: 300px; /* 手機版縮短高度 */
    }
    
    .philosophy-content {
        padding: 0 20px;
    }

    .section-title {
        font-size: 28px;
    }
}


/*--用規劃團隊 當模板---------------------------------------------------------------------------------------------------------------*/
:root{
  --team-max: 1120px;
  --team-radius: 18px;
  --team-border: rgba(13,59,102,.14);
  --team-shadow: 0 12px 30px rgba(0,0,0,.08);
  --team-shadow-hover: 0 16px 42px rgba(0,0,0,.12);
  --team-bg: #f2f4f8;
  --team-card: #ffffff;
  --team-ink: #101820;
  --team-muted: rgba(16,24,32,.70);

  /* 品牌色（若 base.css 有就吃它，沒有就用 fallback） */
  --team-primary: var(--primary, #0d3b66);
  --team-secondary: var(--secondary, #c99700);
  --team-gold: var(--wt-gold-700, #c9a85d);
  --team-blue: var(--wt-blue-900, #0d3b66);
}


/* ========================
   Page base / container
   ======================== */
.inner {
  background: var(--team-bg);
}

.inner .container{
  max-width: var(--team-max);
  margin: 0 auto;
  padding: 0 ;
}

.inner .section{
  padding: 0px 0 10px;
}


/* =========================================================
   Page Hero（薄型、穩定，不重複）
   ========================================================= */
.inner .page-hero{
  padding: 8px 0 0;
  background: #f1f3f6;
  border-bottom: 1px solid #dee2e6;
}

.inner .page-hero .container{
  padding-top: 8px;
  padding-bottom: 6px;
}

.page-hero-content{
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0;
}

.page-title{
  margin: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: var(--team-blue);
}

.page-kicker{
  font-size: 14px;
  font-weight: 800;
  color: var(--team-gold);
  letter-spacing: 0;
  text-transform: none;
  font-family: Arial, sans-serif;
}

.page-subtitle{
  margin: 0;
  font-size: 13px;
  color: #666;
  border-left: 1px solid #ddd;
  padding-left: 14px;
  line-height: 1.2;
}

@media (max-width: 768px){
  .inner .page-hero{
    padding: 14px 0 0;
  }
  .page-hero-content{
    flex-direction: column;
    gap: 6px;
  }
  .page-title{ font-size: 20px; }
  .page-kicker{ font-size: 13px; }
  .page-subtitle{
    border-left: none;
    padding-left: 0;
    color: #888;
    line-height: 1.45;
  }
}

/* =========================================================
   次導覽（Team sub-nav）
   ========================================================= */
.team-sub-nav{
  display: flex;
  width: fit-content;
  background: #fff;
  padding: 6px;
  border-radius: 12px 12px 0 0;
  border: 1px solid #dee2e6;
  border-bottom: none;
  box-shadow: 0 -8px 20px rgba(0,0,0,0.06);
  margin-top: 6px;
}

.sub-nav-item{
  display: inline-block;
  padding: 10px 22px;
  font-size: 14px;
  color: #666;
  font-weight: 600;
  border-radius: 10px;
  position: relative;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}

.sub-nav-item:hover{
  background: #f8f9fa;
  color: var(--team-blue);
}

.sub-nav-item.active{
  background: var(--team-blue);
  color: #fff !important;
  box-shadow: 0 4px 10px rgba(13,59,102,0.20);
}

@media (max-width: 768px){
  .team-sub-nav{
    width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
    overflow-x: auto;
    white-space: nowrap;
    padding: 8px 14px;
    -webkit-overflow-scrolling: touch;
  }
  .team-sub-nav::-webkit-scrollbar{ display:none; }
}


/* =========================================================
   About｜Corporate Philosophy 改為「背景底圖版」
   ========================================================= */

/* =========================================================
   About｜Corporate Philosophy（雜誌封面版：背景更清楚＋文字更立體）
   ========================================================= */
.page-about .philosophy-section{
  position: relative;
  overflow: hidden;
  padding: 4px 0 46px;
  background:
    /* ✅ 讓背景看得到：由上到下漸層，不是整片洗白 */
    linear-gradient(180deg,
      rgba(255,255,255,.72) 0%,
      rgba(255,255,255,.82) 58%,
      rgba(255,255,255,.90) 100%
    ),
    url("../images/about/重劃空拍.jpg") center / cover no-repeat;
}

/* ✅ 右側加一點暗角，讓字更浮、畫面更有景深 */
.page-about .philosophy-section::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background: radial-gradient(
    circle at 78% 45%,
    rgba(0,0,0,.10) 0%,
    rgba(0,0,0,0) 60%
  );
  mix-blend-mode: multiply;
}



/* =========================================================
   About｜塭仔圳自辦市地重劃 導言區
   ========================================================= */

/* =========================================================
   About｜塭仔圳自辦市地重劃（雜誌拼貼版：補滿左下空位）
   ========================================================= */

.about-wenzizhen{
  background:#ffffff;
  padding: 68px 0 78px;
}

/* 標題不要太空，拉近內容 */
.wenzizhen-head{ margin-bottom: 26px; }

/* 主版面：左文右拼貼 */
.wenzizhen-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr; /* 讓右側更集中、左側更飽 */
  gap: 8px;
  align-items: start;
}

/* 左側文字：做成「閱讀欄」感，行距舒服但不鬆散 */
.wenzizhen-content{
  padding-right: 8px;
}
.wenzizhen-content p{
  font-size: 15.5px;
  line-height: 1.85;
  color: rgba(17,24,39,.86);
  margin: 0 0 16px;
}

/* ✅ 關鍵：把 highlight 做成「跨欄橫卡」，直接填補左下空位 */
.wenzizhen-highlight{
  margin: 18px 0 0;
  padding: 16px 18px;
  border-left: none;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(201,151,0,.10), rgba(201,151,0,.04));
  box-shadow: 0 14px 30px rgba(0,0,0,.08);
  color: rgba(17,24,39,.92);
  font-weight: 700;
  position: relative;
}
.wenzizhen-highlight::before{
  content:"";
  position:absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 14px 0 0 14px;
  background: var(--wt-gold-700, #c99700);
}

/* 右側圖片：改成「拼貼板」——大圖吃高度，小圖當角落 */
.wenzizhen-media{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  align-content: start;
}

/* 小圖卡 */
.wenzizhen-media figure{
  background:#f7f8fa;
  border-radius: 14px;
  overflow:hidden;
  box-shadow: 0 12px 26px rgba(0,0,0,.08);
  transform: translateZ(0);
}
.wenzizhen-media img{
  width:100%;
  display:block;
  aspect-ratio: 4 / 3 ;        /* ✅ 統一小圖比例，避免高度飄 */
  object-fit: cover;
}

/* ✅ 大示意圖：吃掉右側主要高度（填補左下空位的關鍵之一） */
.wenzizhen-media figure.full{
  grid-column: 1 / -1;
  order: -1;                  /* ✅ 大圖放最上面（視覺先看示意圖） */
}
.wenzizhen-media figure.full img{
  aspect-ratio: 4 / 3;        /* 讓它更像主視覺，不要太長 */
  object-fit: contain;        /* 示意圖用 contain 才不會被裁切 */
  background: #fff;
  padding: 2px;              /* 留白像簡報圖 */
}

/* 說明文字 */
.wenzizhen-media figcaption{
  padding: 2px;
  font-size: 13px;
  color:#666;
  background:#fff;
  border-top: 1px solid rgba(0,0,0,.05);
}

/* ✅ 讓右側整塊稍微往下，跟左文段落視覺齊平（更協調） */
 
/* RWD：平板改上下，圖片變成 2 欄 + 大圖在上 */
@media (max-width: 900px){
  .wenzizhen-grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .wenzizhen-media{
    grid-template-columns: 1fr 1fr;
  }
  .wenzizhen-highlight{
    margin-top: 14px;
  }
}

@media (max-width: 600px){
  .about-wenzizhen{ padding: 52px 0 64px; }
  .wenzizhen-media{ grid-template-columns: 1fr; }
  .wenzizhen-media figure.full img{
    aspect-ratio: 1 / 1;       /* 手機示意圖用正方更穩 */
  }
}


/* =========================================================
   塭仔圳｜左下 CTA 行動按鈕區
   ========================================================= */

.wenzizhen-actions{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

/* 基本按鈕 */
.wz-btn{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  min-height: 72px;
  padding: 6px 2px;
  border-radius: 14px;

  background: #ffffff;
  color: #1a1a1a;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.0;
  text-align: center;
  text-decoration: none;

  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 12px 26px rgba(0,0,0,.10);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.wz-btn span{
  font-size: 20px;
   padding: 6px 4px;
  font-weight: 600;
  color: #666;
}

/* hover 效果 */
.wz-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0,0,0,.16);
  background: #f8f9fb;
}

/* 主 CTA（預約諮詢） */
.wz-btn.primary{
  background: linear-gradient(
    135deg,
    var(--wt-gold-700, #c99700),
    #e7c77a
  );
  color: #1b1b1b;
  border: none;
}

.wz-btn.primary:hover{
  background: linear-gradient(
    135deg,
    #b88a00,
    #d9b866
  );
}

/* RWD */
@media (max-width: 900px){
  .wenzizhen-actions{
    grid-template-columns: 1fr;
  }
  .wz-btn{
    min-height: 64px;
  }
}



/*-------------------------------------------------------------------------*/
/* 內容層級要蓋過 ::after */
.page-about .philosophy-section .container,
.page-about .philosophy-grid{
  position: relative;
  z-index: 1;
}

/* ✅ 改成單欄：左對齊、限制閱讀寬度、不要撐滿整頁 */
.page-about .philosophy-grid{
  display:block;
}

/* ✅ 主文字卡：霧面、內距、陰影，像雜誌內文 */
 

/* 標題層級（更像封面） */
.page-about .philosophy-content .section-kicker{
  letter-spacing: .26em;
  font-weight: 800;
  margin-bottom: 14px;
}

.page-about .philosophy-content .section-title{
  font-size: clamp(40px, 3vw, 54px);
  line-height: 1.1;
  margin-bottom: 18px;
}

.page-about .philosophy-content .section-title span{
  font-size: .62em;
  margin-top: 10px;
  color: var(--wt-gold-700, #c99700);
}

/* 三段內容做出節奏：標題跟段落間距更舒服 */
.page-about .philosophy-list .philosophy-item{
  padding: 18px 0 14px;
  border-top: 1px solid rgba(0,0,0,.08);
}

.page-about .philosophy-list .philosophy-item:first-child{
  border-top: none;
  padding-top: 0;
}

.page-about .philosophy-list h3{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
  color: rgba(17,24,39,.92);
}

.page-about .philosophy-list p{
  margin: 0;
  font-size: 15.5px;
  line-height: 1.95;
  color: rgba(17,24,39,.82);
}

/* RWD：手機不要太厚重 */
@media (max-width: 768px){
  .page-about .philosophy-section{
    padding: 56px 0 70px;
  }
  .page-about .philosophy-content{
    max-width: 100%;
    padding: 26px 20px;
    border-radius: 16px;
    background: rgba(255,255,255,.86);
  }
  .page-about .philosophy-content .section-title{
    font-size: 32px;
  }
}


.page-main {
    flex: 1 0 auto;
    padding: 0 ;
    background: #f5f5f5;
}



/*----------------------------------------------------------------*/
/* =========================================================
   About｜Corporate Philosophy（圖二：三張條狀玻璃卡）
   ========================================================= */

/* 背景：比你現在再清楚一點，但仍能讀字 */
.page-about .philosophy-section{
  position: relative;
  overflow: hidden;
  padding: 6px 0 6px;
  background:
   
    url("../images/about/重劃空拍.jpg") center / cover no-repeat;
}

/* 內容蓋過背景 */
.page-about .philosophy-section .container,
.page-about .philosophy-grid{
  position: relative;
  z-index: 1;
}

/* 不要兩欄，改成單欄居中 */
.page-about .philosophy-grid{
  display:block;
}

/* ✅ 取消「整塊大卡片」效果（覆蓋你現在那條） */
.page-about .philosophy-content{
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  border-radius: 0;
}

/* 標題置中（像圖二） */
.page-about .philosophy-content .section-kicker{
  text-align:center;
  letter-spacing:.26em;
  font-weight: 800;
  margin-bottom: 6px;
}

.page-about .philosophy-content .section-title{
  text-align:center;
  font-size: clamp(44px, 3.2vw, 36px);
  line-height: 1.12;
  margin: 0 0 6px;
  font-weight: 900;
}

.page-about .philosophy-content .section-title span{
  display:block;
  margin-top: 10px;
  font-size: .62em;
  color: var(--wt-gold-700, #c99700);
  font-weight: 900;
}

/* ===== 三張條狀卡 ===== */
.page-about .philosophy-list{
  display: grid;
  gap: 22px;
}

.page-about .philosophy-item{
  border: 0;
  padding: 0;
}

.page-about .philosophy-item .item-text{
  padding: 22px 26px;
  border-radius: 18px;

  /* 玻璃卡：像圖二那樣「透明灰白」 */
  background: rgba(255,255,255,.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  box-shadow: 0 16px 34px rgba(0,0,0,.14);
  border: 1px solid rgba(255,255,255,.35);
}



.page-about .philosophy-item .item-text{
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(9px);
  border: 1px solid rgba(255,255,255,.30);
  box-shadow: 0 18px 40px rgba(0,0,0,.20);
}



/* 卡片標題 */
.page-about .philosophy-item h3{
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 900;
  color: rgba(17,24,39,.92);
}

/* 卡片內文 */
.page-about .philosophy-item p{
  margin: 0;
  font-size: 15.5px;
  line-height: 1.95;
  color: rgba(17,24,39,.80);
}

/* 手機：卡片內距縮小、標題縮 */
@media (max-width: 768px){
  .page-about .philosophy-section{
    padding: 58px 0 74px;
  }

  .page-about .philosophy-content{
    max-width: 100%;
  }

  .page-about .philosophy-content .section-title{
    font-size: 32px;
    margin-bottom: 18px;
  }

  .page-about .philosophy-item .item-text{
    padding: 18px 18px;
    border-radius: 16px;
    background: rgba(255,255,255,.50);
  }
}

/*----------------------------------------------*/
/* =========================================
   誠信・品質・創新｜膠囊樣式（推薦）
   ========================================= */

.philosophy-pill-group{
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 15px 0 15px;
  flex-wrap: wrap;
}

.philosophy-pill-group .pill{
  padding: 8px 18px;
  border-radius: 999px;

  font-size: 15px;
  font-weight: 800;
  letter-spacing: .08em;

  color: #1a1a1a;

  /* 半透明霧面白，背景再亮也清楚 */
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(4px);

  border: 1px solid rgba(255,255,255,.55);
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
}

/* 手機微調 */
@media (max-width: 768px){
  .philosophy-pill-group .pill{
    font-size: 14px;
    padding: 7px 16px;
  }
}


.philosophy-tags{
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 10px;
  justify-content: center;
  margin: 16px 0 28px;
}

.philosophy-tags span{
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .1em;

  color: #1a1a1a;
  background: rgba(255,255,255,.85);
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,.16);
}


/*------------------------------------------------------*/
/* =========================================================
   誠信・品質・創新｜品牌膠囊（深色版）
   ========================================================= */

.philosophy-pill-group{
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 18px 0 30px;
  flex-wrap: wrap;
}

/* 膠囊本體 */
.philosophy-pill-group .pill{
  position: relative;
  padding: 10px 22px;
  border-radius: 999px;

  font-size: 30px;
  font-weight: 800;
  letter-spacing: .1em;

  /* ✅ 深藍灰底，亮背景也穩 */
  background: rgba(17, 24, 39, 0.78);
  color: #f5f5f5;

  /* 金色只當「描邊與質感」 */
  border: 1px solid rgba(201, 151, 0, 0.55);

  box-shadow:
    0 10px 24px rgba(0,0,0,.25),
    inset 0 1px 0 rgba(255,255,255,.12);

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease;
}

/* =========================================
   桌機 hover：微亮，不浮誇
   ========================================= */
@media (hover: hover){
  .philosophy-pill-group .pill:hover{
    background: rgba(201, 151, 0, 0.85);   /* 金色浮出來 */
    color: #1a1a1a;

    box-shadow:
      0 14px 36px rgba(0,0,0,.35),
      0 0 0 3px rgba(201,151,0,.22);

    transform: translateY(-2px);
  }
}

/* =========================================
   手機版：直列 + 更好點擊
   ========================================= */
@media (max-width: 768px){
  .philosophy-pill-group{
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .philosophy-pill-group .pill{
    width: 100%;
    max-width: 240px;
    text-align: center;

    font-size: 14px;
    padding: 12px 0;
  }
}

/*---------------------------------------------------------------------------------------------------------*/
/* =========================================================
   About｜Corporate Philosophy（圖二：三張條狀玻璃卡）
   ========================================================= */

/* 背景：比你現在再清楚一點，但仍能讀字 */
.page-about .philosophy-section{
  position: relative;
  overflow: hidden;
  padding: 16px 0 16px;
  
}


.page-about .philosophy-section{
  background:
    linear-gradient(180deg,
      rgba(245,247,250,.30) 0%,
      rgba(245,247,250,.48) 55%,
      rgba(245,247,250,.72) 100%
    ),
    url("../images/about/重劃空拍.jpg") center / cover no-repeat;
}



/* 內容蓋過背景 */
.page-about .philosophy-section .container,
.page-about .philosophy-grid{
  position: relative;
  z-index: 1;
}

/* 不要兩欄，改成單欄居中 */
.page-about .philosophy-grid{
  display:block;
}

/* ✅ 取消「整塊大卡片」效果（覆蓋你現在那條） */
.page-about .philosophy-content{
  max-width: 980px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  border-radius: 0;
}

/* 標題置中（像圖二） */
.page-about .philosophy-content .section-kicker{
  text-align:center;
  letter-spacing:.26em;
  font-weight: 800;
  margin-bottom: 16px;
}

.page-about .philosophy-content .section-title{
  text-align:center;
  font-size: clamp(44px, 3.2vw, 58px);
  line-height: 1.12;
  margin: 0 0 26px;
  font-weight: 900;
}

.page-about .philosophy-content .section-title span{
  display:block;
  margin-top: 10px;
  font-size: .62em;
  color: var(--wt-gold-700, #c99700);
  font-weight: 900;
}

/* ===== 三張條狀卡 ===== */
.page-about .philosophy-list{
  display: grid;
  gap: 22px;
}

.page-about .philosophy-item{
  border: 0;
  padding: 0;
}

.page-about .philosophy-item .item-text{
  padding: 22px 26px;
  border-radius: 18px;

  /* 玻璃卡：像圖二那樣「透明灰白」 */
  background: rgba(255,255,255,.38);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);

  box-shadow: 0 16px 34px rgba(0,0,0,.14);
  border: 1px solid rgba(255,255,255,.35);
}

/* 卡片標題 */
.page-about .philosophy-item h3{
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 900;
  color: rgba(17,24,39,.92);
}

/* 卡片內文 */
.page-about .philosophy-item p{
  margin: 0;
  font-size: 15.5px;
  line-height: 1.95;
  color: rgba(17,24,39,.80);
}

/* 手機：卡片內距縮小、標題縮 */
@media (max-width: 768px){
  .page-about .philosophy-section{
    padding: 58px 0 74px;
  }

  .page-about .philosophy-content{
    max-width: 100%;
  }

  .page-about .philosophy-content .section-title{
    font-size: 32px;
    margin-bottom: 18px;
  }

  .page-about .philosophy-item .item-text{
    padding: 18px 18px;
    border-radius: 16px;
    background: rgba(255,255,255,.50);
  }
}


.page-about .philosophy-item .item-text{
  background: rgba(255,255,255,.24);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);

  box-shadow: 0 12px 26px rgba(0,0,0,.10);
  border: 1px solid rgba(255,255,255,.26);
}

/* =========================================================
   About｜New sections（武泰品牌 / 團隊理念 / 公益慈善 / 得獎實績）
   ========================================================= */

/* =========================================================
   About｜FINAL sections styles
   武泰品牌 / 團隊理念 / 公益慈善 / 得獎實績
   - 統一章節節奏（about-head）
   - 四章節視覺識別（brand/team/charity/awards）
   - 影片卡 hover 淡金框、疊加平台條（灰黑 overlay）
   - RWD：圖文改單欄、影片 3/2/1
   - 章節進場：淡入 + 底線展開
   ========================================================= */

/* ---------- 區塊底色與間距（淡、耐看） ---------- */
.page-about .about-block{
  padding: 24px 0;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,.06);
}

.page-about .about-block:nth-of-type(even){
  background: #f6f7f9;
}

@media (max-width: 640px){
  .page-about .about-block{ padding: 24px 0; }
}

/* ---------- 章節抬頭（有設計的 header） ---------- */
.page-about .about-head{
  position: relative;
  margin: 0 0 22px;
  padding: 8px 0 16px;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;

  /* 進場前狀態（JS 會加 is-inview） */
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .55s ease, transform .55s ease;
}

.page-about .about-head.is-inview{
  opacity: 1;
  transform: translateY(0);
}

.page-about .about-head .section-title{
  margin: 0;
  font-size: clamp(34px, 3vw, 46px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: .02em;
  color: var(--wt-blue-900, #0d3b66);
}

/* 副標膠囊（基底） */
.page-about .about-head .about-sub{
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 8px 14px;
  border-radius: 999px;

  font-size: 13.5px;
  font-weight: 900;
  letter-spacing: .06em;

  color: rgba(17,24,39,.78);
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 12px 26px rgba(0,0,0,.08);
}

/* ✅ 圓點／章節 icon 的「本體」：沒有這個你之前的 Identity 不會顯示 */
.page-about .about-head .about-sub::before{
  content:"";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--wt-gold-700, #c99700); /* 預設金色 */
  box-shadow: 0 0 0 3px rgba(201,151,0,.15);
}

/* ✅ 底線（本體）：沒有這個你之前的 Identity 線條也不會顯示 */
.page-about .about-head::after{
  content:"";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;

  /* 預設底線（會被章節識別覆寫） */
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,.18) 20%,
    rgba(0,0,0,.06) 60%,
    rgba(0,0,0,0) 100%
  );

  /* 進場展開 */
  transform-origin: left center;
  transform: scaleX(.18);
  transition: transform .70s ease;
}

.page-about .about-head.is-inview::after{
  transform: scaleX(1);
}

@media (max-width: 640px){
  .page-about .about-head{
    align-items: flex-start;
  }
  .page-about .about-head .about-sub{
    padding: 7px 12px;
    font-size: 12.5px;
  }
}

/* 尊重 reduced motion */
@media (prefers-reduced-motion: reduce){
  .page-about .about-head{
    opacity: 1;
    transform: none;
    transition: none;
  }
  .page-about .about-head::after{
    transform: none;
    transition: none;
  }
}

/* ---------- 四章節視覺識別（可用 class 或 id） ---------- */
/* ① 武泰品牌 */
.page-about .about-brand .about-head .about-sub::before,
.page-about #about-brand .about-head .about-sub::before{
  background: var(--wt-gold-700, #c99700);
  box-shadow: 0 0 0 3px rgba(201,151,0,.18);
}
.page-about .about-brand .about-head::after,
.page-about #about-brand .about-head::after{
  background: linear-gradient(
    90deg,
    rgba(201,151,0,0) 0%,
    rgba(201,151,0,.65) 22%,
    rgba(201,151,0,.22) 60%,
    rgba(201,151,0,0) 100%
  );
}

/* ② 團隊理念 */
.page-about .about-team .about-head .about-sub::before,
.page-about #about-team .about-head .about-sub::before{
  background: var(--wt-blue-900, #0d3b66);
  box-shadow: 0 0 0 3px rgba(13,59,102,.18);
}
.page-about .about-team .about-head::after,
.page-about #about-team .about-head::after{
  background: linear-gradient(
    90deg,
    rgba(13,59,102,0) 0%,
    rgba(13,59,102,.55) 22%,
    rgba(13,59,102,.18) 60%,
    rgba(13,59,102,0) 100%
  );
}

/* ③ 公益慈善 */
.page-about .about-charity .about-head .about-sub::before,
.page-about #about-charity .about-head .about-sub::before{
  background: rgba(120,120,120,.85);
  box-shadow: 0 0 0 3px rgba(120,120,120,.18);
}
.page-about .about-charity .about-head::after,
.page-about #about-charity .about-head::after{
  background: linear-gradient(
    90deg,
    rgba(120,120,120,0) 0%,
    rgba(120,120,120,.45) 22%,
    rgba(120,120,120,.15) 60%,
    rgba(120,120,120,0) 100%
  );
}

/* ④ 得獎實績（副標改成金牌 icon） */
.page-about .about-awards .about-head .about-sub,
.page-about #about-awards .about-head .about-sub{
  padding-left: 16px;
}
.page-about .about-awards .about-head .about-sub::before,
.page-about #about-awards .about-head .about-sub::before{
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff6cc, #c99700 70%);
  box-shadow:
    0 0 0 3px rgba(201,151,0,.18),
    inset 0 -2px 0 rgba(0,0,0,.18);
}
.page-about .about-awards .about-head::after,
.page-about #about-awards .about-head::after{
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(201,151,0,0) 0%,
    rgba(201,151,0,.85) 20%,
    rgba(201,151,0,.35) 60%,
    rgba(201,151,0,0) 100%
  );
}

/* ---------- 圖文左右（品牌/理念） ---------- */
.page-about .about-split{
  display: grid;
   
  gap: 22px;
  align-items: start;
}

.page-about .about-brand .about-split{
  grid-template-columns: 1fr 1fr;
}


.page-about .about-split.is-reverse{
  grid-template-columns: 1.2fr 0.8fr;
}
.page-about .about-split.is-reverse .about-media{ order: 2; }
.page-about .about-split.is-reverse .about-body{ order: 1; }

.page-about .about-media{
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #eef1f4;
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
  border: 1px solid rgba(0,0,0,.06);
}

.page-about .about-media img{
  width: 100%;
  height: clamp(280px, 44vh, 520px);
  object-fit: cover;
  display: block;
}

.page-about .about-body p{
  margin: 0 0 14px;
  font-size: 15.5px;
  line-height: 1.95;
  color: rgba(17,24,39,.84);
}

.page-about .about-quote{
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(201,151,0,.12), rgba(201,151,0,.04));
  box-shadow: 0 14px 28px rgba(0,0,0,.10);
  font-weight: 800;
  color: rgba(17,24,39,.92);
  position: relative;
}
.page-about .about-quote::before{
  content:"";
  position:absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  border-radius: 14px 0 0 14px;
  background: var(--wt-gold-700, #c99700);
}

/* 理念三點 */
.page-about .about-points{
  display: grid;
  gap: 14px;
}
.page-about .about-point{
  padding: 16px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 12px 26px rgba(0,0,0,.08);
}
.page-about .about-point h3{
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
  color: rgba(17,24,39,.92);
}
.page-about .about-point p{
  margin: 0;
  color: rgba(17,24,39,.78);
}

@media (max-width: 980px){
  .page-about .about-split,
  .page-about .about-split.is-reverse{
    grid-template-columns: 1fr;
  }
  .page-about .about-split.is-reverse .about-media,
  .page-about .about-split.is-reverse .about-body{
    order: initial;
  }
}

/* ---------- 影片區（維持你原本 yt-grid 結構） ---------- */
.page-about .yt-grid{
  display: grid;
  gap: 16px;
}

.page-about .yt-grid-2{ grid-template-columns: repeat(2, 1fr); }
.page-about .yt-grid-3{ grid-template-columns: repeat(3, 1fr); }

@media (max-width: 980px){
  .page-about .yt-grid-3{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px){
  .page-about .yt-grid-2,
  .page-about .yt-grid-3{ grid-template-columns: 1fr; }
}

.page-about .yt-card{
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 16px 34px rgba(0,0,0,.10);
  transform: translateZ(0);
  position: relative;
}

/* hover 微互動：極淡金色框線 */
@media (hover:hover){
  .page-about .yt-card:hover{
    box-shadow: 0 18px 40px rgba(0,0,0,.12), 0 0 0 1px rgba(201,151,0,.20);
    border-color: rgba(201,151,0,.22);
    transform: translateY(-1px);
  }
}

.page-about .yt-embed{
  aspect-ratio: 16 / 9;
  width: 100%;
  background: #000;
  position: relative;
}

.page-about .yt-embed iframe{
  width: 100%;
  height: 100%;
  display: block;
}

.page-about .yt-title{
  margin: 0;
  padding: 12px 12px 14px;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 800;
  color: rgba(17,24,39,.90);
}

/* ---------- 疊加平台條（你要的灰黑色疊在影片上） ---------- */
/* 你只要在 .yt-embed 裡加：
   <a class="yt-overlay" href="..." target="_blank" rel="noopener">
     到以下平台觀看： <span class="yt-overlay__btn">YouTube</span>
   </a>
*/
.page-about .yt-overlay{
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 3;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 8px 10px;
  border-radius: 10px;

  background: rgba(15, 18, 22, .72);
  color: rgba(255,255,255,.92);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .02em;
  text-decoration: none;

  box-shadow: 0 10px 22px rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.10);
}

.page-about .yt-overlay__btn{
  display: inline-flex;
  align-items: center;
  gap: 6px;

  height: 22px;
  padding: 0 10px;
  border-radius: 999px;

  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.95);
  font-weight: 900;
}

/* 小 YouTube icon（純 CSS） */
.page-about .yt-overlay__btn::before{
  content:"";
  width: 14px;
  height: 10px;
  border-radius: 3px;
  background: rgba(229,57,53,.95);
  display: inline-block;
  position: relative;
}
.page-about .yt-overlay__btn::after{
  content:"";
  width: 0;
  height: 0;
  border-left: 5px solid #fff;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  display: inline-block;
  margin-left: -9px;
}

@media (hover:hover){
  .page-about .yt-card:hover .yt-overlay{
    border-color: rgba(201,151,0,.28);
    box-shadow: 0 14px 28px rgba(0,0,0,.22), 0 0 0 1px rgba(201,151,0,.18);
  }
}

/* ✅ 人像/直幅：完整呈現（不裁切） */
.page-about .about-media.is-contain img{
  object-fit: contain;
  background: #fff;          /* 你也可以改成 #fff 或 rgba(0,0,0,.06) */
  height: clamp(280px, 44vh, 520px); /* 保留你原本高度節奏 */
}


/* ✅ 讓圖片按比例撐開（不裁切、不留空） */
.page-about .about-media.auto-height img{
  height: auto;
  max-height: 70vh;  /* 避免圖片太高把版面撐爆，可調 */
  object-fit: contain;
  background: transparent;
}



/* =========================================================
   團隊理念｜桌機改成「每張照片自己圓角」
   - 取消外框容器裁切的圓角
   - 讓拼貼內每張圖都有圓角
   ========================================================= */

@media (min-width: 981px){

  /* ① 取消拼貼外框的「圓角 + 裁切」(桌機才改) */
  .page-about .about-team .about-media{
    border-radius: 0 !important;
    overflow: visible !important;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  /* ② 如果你的拼貼是「一張大圖」(img) → 讓 img 自己圓角 */
  .page-about .about-team .about-media > img{
    border-radius: 18px;
  }

  /* ③ 如果你的拼貼是多張圖（常見：.mosaic / figure / img）→ 每張都圓角 */
  .page-about .about-team .about-media img{
    border-radius: 18px;
  }

  /* ④ 防止某些 grid item 自己有 overflow hidden 把圓角吃掉 */
  .page-about .about-team .about-media *{
    overflow: visible;
  }
}

@media (min-width: 981px){
  .page-about .about-team .about-media{
    padding: 6px;              /* 外圍留白 */
  }
  .page-about .about-team .about-media img{
    box-shadow: 0 12px 26px rgba(0,0,0,.10); /* 淡陰影，像相片 */
  }
}

/* =========================================================
   About｜團隊理念：桌機也改成「照片本身圓角」
   ========================================================= */

/* 外框不再當圓角裁切容器（避免你說的桌機外框圓角感） */
.page-about .about-team .about-media{
  border-radius: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

/* 圓角回到照片本身（桌機/手機一致） */
.page-about .about-team .about-media img{
  border-radius: 18px;
  overflow: hidden; /* 保險：確保圓角不破 */
}

/* auto-height 你已經有了，這裡補一個 display:block 更穩 */
.page-about .about-team .about-media img{
  display: block;
}

/* =========================================================
   About｜武泰品牌：兩張圖上下拼貼（完整呈現）
   ========================================================= */

.page-about .about-brand .about-media.brand-stack{
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 10px;

  /* 外框保留你的質感（但不裁切圖片本身） */
  border-radius: 18px;
  padding: 10px;
  background: #eef1f4;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
}

/* 每張圖自己當「相片」：完整呈現 */
.page-about .about-brand .about-media.brand-stack img{
  width: 100%;
  height: 260px;                 /* 你覺得太高/太低再調 */
  object-fit: contain;           /* ✅ 完整呈現，不裁切 */
  background: #111827;           /* 相片背板（可改 #fff） */
  border-radius: 16px;
  display: block;
}

/* 桌機可略高，手機自動縮 */
@media (min-width: 981px){
  .page-about .about-brand .about-media.brand-stack img{
    height: 300px;
  }
}
@media (max-width: 640px){
  .page-about .about-brand .about-media.brand-stack img{
    height: 220px;
  }
}


/* 武泰品牌：右側加一張「得獎照」 */
.page-about .about-brand .brand-award-photo{
  margin-top: 16px;
  border-radius: 16px;
  overflow: hidden;
  background: #111827; /* 深色背板，搭配 contain 留白更好看 */
  box-shadow: 0 16px 34px rgba(0,0,0,.12);
  border: 1px solid rgba(0,0,0,.06);
}

/* ✅ 完整呈現（不裁切） */
.page-about .about-brand .brand-award-photo img{
  width: 100%;
  height: 260px;           /* 你可調：240~320 都行 */
  object-fit: contain;     /* 關鍵：完整呈現 */
  display: block;
}
@media (max-width: 640px){
  .page-about .about-brand .brand-award-photo img{
    height: 220px;
  }
}


.page-about .about-brand .brand-award-photo img{
  height: 230px;
  opacity: .95;
}

/* =========================================================
   About｜武泰品牌 左側主圖（桌機縮小 + 完整呈現）
   ========================================================= */

@media (min-width: 981px){

  /* 只鎖定「武泰品牌」左圖 */
  .page-about .about-brand .about-media img{
    height: 360px;          /* 🔧 關鍵：縮小高度（可調 320~380） */
    object-fit: contain;    /* ✅ 完整呈現，不裁切 */
    background: #0f172a;    /* 深色背板，讓留白變成質感 */
  }

}

/* =========================================================
   About｜武泰品牌：一列三欄（取代現在的 2x2）
   ========================================================= */

@media (min-width: 981px){

  .page-about .about-brand-grid{
    display: grid;
    grid-template-columns: 0.9fr 0.9fr 1.2fr; /* 左圖 / 右圖 / 文字 */
    gap: 24px;

    /* 🔴 關鍵：確保不會再自動換成 2x2 */
    grid-auto-flow: row;
    grid-template-rows: unset;
  }

  /* 三欄通用樣式 */
  .page-about .about-brand-grid .brand-col{
    min-width: 0; /* 防止文字把 grid 撐爆 */
  }

}

.page-about .about-brand-grid img{
  width: 100%;
  height: 320px;        /* 固定高度，grid 就不會亂換 */
  object-fit: contain;  /* 完整呈現 */
  border-radius: 16px;
  background: #0f172a;
  display: block;
}

/* =========================================================
   About｜武泰品牌：桌機 3 欄 / 平板 上圖下文 / 手機 圖圖文
   ========================================================= */

/* 讓兩張圖「完整呈現」：不裁切 */
.page-about .about-brand .brand-media{
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #0f172a; /* 深色背板，contain 留白更像相片 */
  box-shadow: 0 16px 34px rgba(0,0,0,.10);
  border: 1px solid rgba(0,0,0,.06);
}

.page-about .about-brand .brand-media img{
  width: 100%;
  height: 340px;        /* 桌機可調 300~380 */
  object-fit: contain;  /* ✅ 完整呈現 */
  display: block;
}

/* 文字欄：直向敘事更像專欄 */
.page-about .about-brand .brand-text{
  min-width: 0;
}

/* ---------- 桌機：一列三欄（圖 / 文 / 圖） ---------- */
@media (min-width: 981px){
  .page-about .about-brand .about-brand-grid{
    display: grid;
    grid-template-columns: 0.95fr 1.15fr 0.95fr;
    gap: 24px;
    align-items: start;
  }

  .page-about .about-brand .brand-media--a{ order: 1; }
  .page-about .about-brand .brand-text{    order: 2; }
  .page-about .about-brand .brand-media--b{ order: 3; }
}

/* ---------- 平板：圖圖在上、文字整欄（圖在上兩欄） ---------- */
@media (max-width: 980px) and (min-width: 641px){
  .page-about .about-brand .about-brand-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .page-about .about-brand .brand-media{ height: auto; }
  .page-about .about-brand .brand-media img{ height: 300px; }

  /* 文字整欄 */
  .page-about .about-brand .brand-text{
    grid-column: 1 / -1;
  }
}

/* ---------- 手機：圖 → 圖 → 文（直向） ---------- */
@media (max-width: 640px){
  .page-about .about-brand .about-brand-grid{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .page-about .about-brand .brand-media img{
    height: 240px;
  }

  /* 明確順序：圖、圖、文 */
  .page-about .about-brand .brand-media--a{ order: 1; }
  .page-about .about-brand .brand-media--b{ order: 2; }
  .page-about .about-brand .brand-text{    order: 3; }
}

@media (min-width: 981px){
  .page-about .about-brand .about-brand-grid{
    display: grid;
    grid-template-columns: 0.6fr 0.6fr 1.8fr;
    gap: 24px;
    align-items: start;
  }

  /* ✅ 市場圖（你現在右邊那張） */
  .page-about .about-brand .brand-media--b{
    order: 1;
  }

  /* ✅ 得獎圖（你現在左邊那張） */
  .page-about .about-brand .brand-media--a{
    order: 2;
  }

  /* ✅ 文字 */
  .page-about .about-brand .brand-text{
    order: 3;
  }
}


@media (max-width: 640px){
  .page-about .about-brand .about-brand-grid{
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  /* 市場圖 */
  .page-about .about-brand .brand-media--b{
    order: 1;
  }

  /* 得獎圖 */
  .page-about .about-brand .brand-media--a{
    order: 2;
  }

  /* 文字 */
  .page-about .about-brand .brand-text{
    order: 3;
  }
}

/* =========================================================
   About｜武泰品牌｜桌機照片等高等寬、填滿容器
   ========================================================= */
@media (min-width: 981px){

  /* 兩張照片的外框 */
  .page-about .about-brand .brand-media{
    position: relative;
    aspect-ratio: 3 / 3.5 ;     /* ✅ 統一視覺比例 4/5（可微調） */
    border-radius: 18px;
    overflow: hidden;
    background: #0f172a;     /* 深底，避免 loading 時露白 */
  }

  /* 圖片本身 */
  .page-about .about-brand .brand-media img{
    width: 100%;
    height: 100%;
    object-fit: cover;       /* ✅ 關鍵：填滿但裁切 */
    object-position: center;
    display: block;
  }
}


/* =========================================================
   About｜武泰品牌｜桌機：兩張照片等大填滿 + 視覺微調
   1) 得獎照：極淡金色榮耀光暈
   2) 市場老照：記憶感（暖色 + 顆粒 + 微霧）
   ========================================================= */

@media (min-width: 981px){

  /* 兩張照片容器：統一尺寸、圓角貼圖 */
  .page-about .about-brand .brand-media{
    position: relative;
    aspect-ratio: 3 / 3.5;       /* 統一視覺比例 */
    border-radius: 18px;
    overflow: hidden;
    background: #0f172a;
    box-shadow: 0 16px 34px rgba(0,0,0,.10);
    border: 1px solid rgba(0,0,0,.06);
  }

  .page-about .about-brand .brand-media img{
    width: 100%;
    height: 100%;
    object-fit: cover;         /* ✅ 填滿容器，視覺一致 */
    object-position: center;
    display: block;
    transform: scale(1.01);    /* 很輕微，避免邊緣露底 */
  }

  /* ---------- (1) 得獎照：極淡金色榮耀光暈 ---------- */
  .page-about .about-brand .brand-media--a::after{
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    /* 超淡金色光暈 + 邊緣暗角(非常輕) */
    background:
      radial-gradient(80% 70% at 50% 45%,
        rgba(201,151,0,.16) 0%,
        rgba(201,151,0,.08) 35%,
        rgba(201,151,0,0) 70%),
      radial-gradient(120% 95% at 50% 55%,
        rgba(0,0,0,0) 55%,
        rgba(0,0,0,.18) 100%);
    mix-blend-mode: screen;     /* 不會髒，光感更自然 */
    opacity: .9;
  }

  /* hover 微互動：更像「高級燈光」不是框線 */
  .page-about .about-brand .brand-media--a:hover{
    box-shadow: 0 18px 44px rgba(0,0,0,.14);
    transform: translateY(-1px);
  }

  /* ---------- (2) 市場老照：記憶感處理 ---------- */
  .page-about .about-brand .brand-media--b img{
    /* 暖一點 + 顆粒感的基本色調 */
    filter: sepia(.16) saturate(1.06) contrast(.98) brightness(1.02);
  }

  /* 顆粒 + 微霧：用 overlay 疊上去，不改原圖檔 */
  .page-about .about-brand .brand-media--b::before{
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    /* 兩層：微霧 + 顆粒（很淡） */
    background:
      radial-gradient(120% 95% at 50% 40%,
        rgba(255,245,230,.22) 0%,
        rgba(255,245,230,.10) 38%,
        rgba(255,245,230,0) 72%),
      repeating-linear-gradient(
        0deg,
        rgba(255,255,255,.018) 0px,
        rgba(255,255,255,.018) 1px,
        rgba(0,0,0,.018) 2px,
        rgba(0,0,0,.018) 3px
      );
    opacity: .85;
    mix-blend-mode: overlay;   /* 顆粒自然、像底片 */
  }

  /* hover：讓市場照更像「翻閱相片」 */
  .page-about .about-brand .brand-media--b:hover{
    box-shadow: 0 18px 44px rgba(0,0,0,.14);
    transform: translateY(-1px);
  }

  /* hover 需要 transition */
  .page-about .about-brand .brand-media{
    transition: transform .18s ease, box-shadow .22s ease;
  }
}


/* =========================================================
   About｜武泰品牌｜手機：兩張圖同寬同尺寸（時間軸敘事）
   ========================================================= */
@media (max-width: 640px){

  /* 保持你目前順序：市場 → 得獎 → 文 */
  .page-about .about-brand .about-brand-grid{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  /* 兩張圖同款式 */
  .page-about .about-brand .brand-media{
    border-radius: 18px;
    overflow: hidden;
    background: #0f172a;
    box-shadow: 0 16px 34px rgba(0,0,0,.10);
    border: 1px solid rgba(0,0,0,.06);
  }

  /* ✅ 手機用 16:9 或 4:3 最舒服（推薦 4:3 更有故事感） */
  .page-about .about-brand .brand-media{
    aspect-ratio: 4 / 3;
  }

  /* 手機我建議「完整呈現」更重要（不裁切人臉/獎盃） */
  .page-about .about-brand .brand-media img{
    width: 100%;
    height: 100%;
    object-fit: contain;   /* ✅ 不裁切 */
    display: block;
    background: #0f172a;
  }

  /* 文字區稍微拉開呼吸 */
  .page-about .about-brand .brand-text{
    padding-top: 4px;
  }
}


@media (max-width: 640px){

  /* 整體 grid：兩張圖並排，文字在下面 */
  .page-about .about-brand .about-brand-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: start;
  }

  /* 讓文字橫跨兩欄 */
  .page-about .about-brand .brand-text{
    grid-column: 1 / -1;
    margin-top: 6px;
  }
}


@media (max-width: 640px){

  .page-about .about-brand .brand-media{
    aspect-ratio: 1 / 1;        /* ✅ 正方形，最穩 */
    border-radius: 16px;
    overflow: hidden;
    background: #0f172a;
    box-shadow: 0 10px 22px rgba(0,0,0,.12);
  }

  .page-about .about-brand .brand-media img{
    width: 100%;
    height: 100%;
    object-fit: cover;          /* 手機並排我建議 cover */
    display: block;
  }
}

.page-about section[id]{
  scroll-margin-top: 96px; /* 依你的 header 高度可微調 */
}


