/* =========================================================
   九南資產管理有限公司 — 網站樣式（繁英對照版）
   設計語言與《九南企業宣傳冊 · 繁英對照版》一致：
   紅 #DD1215 主色 · Noto Sans TC 黑體標題 · Poppins 西文
   紅色短橫線 · 圓形圖標底 · 圓環裝飾 · 卡片軟陰影
   ========================================================= */

:root {
  --red: #DD1215;
  --red-deep: #A50D10;
  --red-dark: #7E0A0C;
  --red-tint: #FBEAEA;
  --red-tint2: #F6D8D8;
  --ink: #26282B;
  --gray: #3B3F45;
  --gray-soft: #7A7E85;
  --line: #E8E9EC;
  --bg: #FFFFFF;
  --soft: #F5F6F8;
  --sans: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  --latin: "Poppins", "Noto Sans TC", sans-serif;
  --maxw: 1180px;
  --shadow-card: 0 6px 22px rgba(30, 32, 40, 0.10);
  --shadow-deep: 0 14px 44px -14px rgba(30, 32, 40, 0.22);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.95;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- 通用版式 ---------- */

.section { padding: 100px 0; }
.section--soft { background: var(--soft); }

/* 英文對照：小號 Poppins 灰字 */
.en {
  display: block;
  font-family: var(--latin);
  font-size: 12px;
  line-height: 1.75;
  color: #8A8F96;
  margin-top: 6px;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.en-inline {
  font-family: var(--latin);
  font-size: 11.5px;
  color: #B0B4BA;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-left: 8px;
}

/* 標題組：中文黑體 900 + 英文眉題 + 紅色短橫線 */
.h-en {
  font-family: var(--latin);
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.26em;
  text-transform: uppercase;
}
.h-cn {
  font-size: clamp(28px, 3.6vw, 38px);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin-top: 8px;
}
.h-dash {
  width: 36px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin-top: 16px;
}
.h-sub {
  margin-top: 20px;
  max-width: 800px;
  color: var(--gray);
  font-size: 16px;
}
.center { text-align: center; }
.center .h-dash { margin-left: auto; margin-right: auto; }
.center .h-sub { margin-left: auto; margin-right: auto; }

.lead { font-size: 16.5px; line-height: 2.05; color: #1F2226; }
.lead b, .lead strong { font-weight: 700; color: var(--ink); }

/* 膠囊標籤 */
.pill {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.14em;
  padding: 7px 20px;
  border-radius: 999px;
  font-weight: 500;
}
.pill--ink { background: var(--ink); }

/* 卡片 */
.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

/* 紅色數字圓 */
.numc {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--latin);
  font-size: 14px;
  font-weight: 600;
  flex: 0 0 auto;
  box-shadow: 0 6px 14px rgba(221, 18, 21, 0.32);
}
.numc.hollow { background: #fff; color: var(--red); border: 2px solid var(--red); box-shadow: none; }

/* 圖標圓 */
.iconc {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--red-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.iconc svg {
  width: 32px; height: 32px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.iconc.solid { background: var(--red); }
.iconc.solid svg { stroke: #fff; }

/* 圓環裝飾 */
.ring {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
  pointer-events: none;
}

/* 提示框 */
.note {
  background: var(--red-tint);
  border-left: 4px solid var(--red);
  border-radius: 0 8px 8px 0;
  padding: 16px 24px;
  font-size: 13.5px;
  line-height: 1.9;
  color: #7A1D1D;
}
.note .en { color: #8A5A5A; }

/* 照片卡 */
.photo-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  position: relative;
}
.photo-card img { width: 100%; height: 100%; object-fit: cover; }
.photo-card .blockcap {
  position: absolute;
  left: 0; bottom: 0;
  background: var(--red);
  color: #fff;
  padding: 14px 24px;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  border-top-right-radius: 12px;
  font-weight: 500;
}

.btn {
  display: inline-block;
  padding: 13px 36px;
  border-radius: 999px;
  font-size: 15px;
  letter-spacing: 0.1em;
  font-weight: 500;
  border: 1.5px solid transparent;
  cursor: pointer;
  font-family: var(--sans);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 20px rgba(221, 18, 21, 0.3);
}
.btn-primary:hover { background: var(--red-deep); transform: translateY(-2px); }
.btn-outline-light { border-color: rgba(255,255,255,0.8); color: #fff; background: transparent; }
.btn-outline-light:hover { background: #fff; color: var(--red); }
.btn-sm { padding: 10px 26px; font-size: 14px; }

/* ---------- 頂部導航 ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px -18px rgba(30, 32, 40, 0.28);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}
.brand-logo { width: 50px; height: auto; flex: none; }
.brand-name {
  font-weight: 900;
  font-size: 18.5px;
  letter-spacing: 0.1em;
  line-height: 1.35;
  white-space: nowrap;
}
.brand-name small {
  display: block;
  font-family: var(--latin);
  font-weight: 500;
  font-size: 9.5px;
  letter-spacing: 0.16em;
  color: var(--gray-soft);
}

.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a.nav-link {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 6px 0;
  position: relative;
  color: var(--ink);
  transition: color 0.25s ease;
}
.main-nav a.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 3px;
  border-radius: 2px;
  background: var(--red);
  transition: right 0.3s ease;
}
.main-nav a.nav-link:hover,
.main-nav a.nav-link.active { color: var(--red); }
.main-nav a.nav-link:hover::after,
.main-nav a.nav-link.active::after { right: 0; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px; height: 44px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.nav-toggle span {
  width: 24px; height: 2.4px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero（宣傳冊封面風格） ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: var(--red-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/photos/hero-skyline.jpg");
  background-size: cover;
  background-position: center 35%;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(126, 10, 12, 0.55) 0%, rgba(126, 10, 12, 0.38) 45%, rgba(60, 5, 6, 0.72) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 150px 28px 120px;
  max-width: 900px;
}
.hero-kicker {
  font-family: var(--latin);
  font-size: 13px;
  letter-spacing: 0.34em;
  font-weight: 500;
  opacity: 0.92;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(32px, 5.2vw, 54px);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.09em;
  margin-top: 22px;
  text-shadow: 0 4px 24px rgba(90, 4, 6, 0.4);
}
.hero-dash {
  width: 44px; height: 4px;
  background: #fff;
  border-radius: 2px;
  margin: 30px auto 26px;
}
.hero-sub {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 2.1;
  opacity: 0.96;
  max-width: 720px;
  margin: 0 auto;
}
.hero-sub .en { color: rgba(255, 255, 255, 0.85); font-size: 13px; margin-top: 12px; }
.hero-actions {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero .ring { z-index: 1; }

.scroll-hint {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.75);
  font-family: var(--latin);
  font-size: 11px;
  letter-spacing: 0.3em;
  animation: hint 2.4s ease-in-out infinite;
}
@keyframes hint {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.65; }
  50% { transform: translate(-50%, 8px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) { .scroll-hint { animation: none; } }

/* ---------- 關於九南 ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.about-copy .lead { margin-top: 24px; }
.about-figure { position: relative; }
.about-figure .photo-card { aspect-ratio: 4 / 4.7; }
.about-figure .ring {
  width: 150px; height: 150px;
  right: -40px; top: -46px;
  border-width: 20px;
  border-color: var(--red-tint2);
  z-index: -1;
}

/* 定位四角色 mini-card */
.roles-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.mini-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  padding: 20px 22px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mini-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-deep); }
.mini-card .sq {
  width: 40px; height: 40px;
  border-radius: 9px;
  background: var(--red);
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mini-card .sq svg {
  width: 20px; height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mini-card .mt2 { font-size: 16.5px; font-weight: 700; }
.mini-card .md2 { font-size: 13.5px; color: var(--gray); line-height: 1.8; margin-top: 4px; }
.mini-card--accent { border-left: 4px solid var(--red); }

/* ---------- 理念價值（願景 · 使命 · 承諾 + 價值觀環） ---------- */

.mission-list { margin-top: 10px; }
.mission {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
}
.mission + .mission { border-top: 1px solid var(--line); }
.mission .mt { font-size: 17px; font-weight: 700; letter-spacing: 0.05em; }
.mission .mp { font-size: 14.5px; color: var(--gray); line-height: 1.95; margin-top: 6px; max-width: 560px; }

.philosophy-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}
.philosophy-figure .photo-card { aspect-ratio: 4 / 4.4; }
.philosophy-figure { position: relative; }
.philosophy-figure .redge {
  position: absolute;
  right: -1px; top: 0; bottom: 0;
  width: 12px;
  background: var(--red);
  border-radius: 0 12px 12px 0;
  z-index: 1;
}

/* 價值觀環 */
.vals {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.val {
  text-align: center;
  padding: 34px 24px 30px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.val:hover { transform: translateY(-6px); box-shadow: var(--shadow-deep); }
.valring {
  width: 124px; height: 124px;
  margin: 0 auto;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: conic-gradient(var(--red) 0 75%, var(--red-tint2) 75% 100%);
}
.valring::after {
  content: "";
  position: absolute;
  inset: 12px;
  background: #fff;
  border-radius: 50%;
  box-shadow: inset 0 2px 8px rgba(30, 32, 40, 0.06);
}
.valring span {
  position: relative;
  z-index: 1;
  font-size: 32px;
  font-weight: 900;
  color: var(--red);
}
.val .ven {
  font-family: var(--latin);
  font-size: 12px;
  color: var(--red);
  letter-spacing: 0.16em;
  margin-top: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
.val .vt { font-size: 18px; font-weight: 700; margin-top: 4px; letter-spacing: 0.3em; text-indent: 0.3em; }
.val .vp { font-size: 13.5px; color: var(--gray); line-height: 1.9; margin-top: 12px; text-align: left; }

/* ---------- 名言引用帶（紅色） ---------- */

.quote-band {
  position: relative;
  color: #fff;
  padding: 96px 0;
  overflow: hidden;
  background: var(--red-dark);
}
.quote-band .band-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/photos/harbour-night.jpg");
  background-size: cover;
  background-position: center;
}
.quote-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(126, 10, 12, 0.92) 0%, rgba(165, 13, 16, 0.78) 55%, rgba(126, 10, 12, 0.55) 100%);
}
.quote-band .container { position: relative; z-index: 2; }
.quote-band blockquote {
  font-size: clamp(21px, 2.8vw, 29px);
  line-height: 1.95;
  font-weight: 700;
  letter-spacing: 0.05em;
  max-width: 880px;
}
.quote-band blockquote .en {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 400;
  margin-top: 16px;
  letter-spacing: 0.02em;
}
.quote-band cite {
  display: block;
  margin-top: 26px;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.75);
}
.quote-band .ring { z-index: 1; }

/* ---------- 核心服務 ---------- */

.services-layout {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 30px;
  align-items: stretch;
}

/* 左側照片面板（宣傳冊 P06 風格） */
.services-panel {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  min-height: 560px;
}
.services-panel img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.services-panel .panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(126, 10, 12, 0.18) 0%, rgba(126, 10, 12, 0.78) 100%);
}
.services-panel .panel-copy {
  position: absolute;
  left: 36px; right: 30px; bottom: 40px;
  color: #fff;
  z-index: 2;
}
.services-panel .panel-copy .pen {
  font-family: var(--latin);
  font-size: 12px;
  letter-spacing: 0.26em;
  opacity: 0.92;
}
.services-panel .panel-copy .pcn {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-top: 10px;
}
.services-panel .panel-copy .pdash {
  width: 34px; height: 4px;
  background: #fff;
  border-radius: 2px;
  margin-top: 16px;
}
.services-panel .panel-copy p {
  font-size: 13.5px;
  line-height: 2;
  margin-top: 16px;
  opacity: 0.95;
}
.services-panel .panel-copy p .en { color: rgba(255,255,255,0.85); }
.services-panel .ring {
  width: 150px; height: 150px;
  left: -54px; top: -54px;
  border-width: 20px;
  border-color: rgba(255, 255, 255, 0.3);
  z-index: 2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.service-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,0.02);
  padding: 30px 30px 26px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-deep); }
.service-card .sn {
  position: absolute;
  top: 18px; right: 26px;
  font-family: var(--latin);
  font-style: italic;
  font-size: 30px;
  color: var(--red-tint2);
  font-weight: 700;
}
.service-card .iconc { width: 58px; height: 58px; margin-bottom: 18px; }
.service-card .iconc svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 18.5px; font-weight: 700; }
.service-card .svc-en {
  font-family: var(--latin);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--gray-soft);
  text-transform: uppercase;
  margin: 3px 0 12px;
  font-weight: 500;
}
.service-card p { font-size: 13.5px; color: var(--gray); line-height: 1.85; }
.service-card ul { margin-top: 12px; }
.service-card li {
  font-size: 13px;
  color: var(--gray);
  padding-left: 18px;
  position: relative;
  margin-top: 6px;
  line-height: 1.75;
}
.service-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
}
.services-note { margin-top: 30px; }

/* 寬幅照片條 */
.photo-strip {
  margin-top: 56px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  position: relative;
}
.photo-strip img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.photo-strip .strip-cap {
  position: absolute;
  left: 0; bottom: 0;
  background: var(--red);
  color: #fff;
  padding: 12px 24px;
  font-size: 12px;
  letter-spacing: 0.14em;
  border-top-right-radius: 12px;
}

/* ---------- 五步工作法（宣傳冊時間線風格） ---------- */

.tl {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  margin-top: 70px;
  gap: 0;
}
.tl::before {
  content: "";
  position: absolute;
  left: 10%; right: 10%;
  top: 33px;
  height: 2px;
  background: var(--red-tint2);
}
.tl-step { text-align: center; position: relative; padding: 0 14px; }
.tl-step .c {
  width: 66px; height: 66px;
  border-radius: 50%;
  margin: 0 auto;
  background: #fff;
  border: 2px solid var(--red-tint2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--latin);
  font-size: 17px;
  font-weight: 700;
  color: var(--red);
  position: relative;
  z-index: 1;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.tl-step:hover .c,
.tl-step.hot .c {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 8px 20px rgba(221, 18, 21, 0.35);
}
.tl-step .tt { font-size: 16px; font-weight: 700; margin-top: 18px; letter-spacing: 0.04em; }
.tl-step .tt .en { margin-top: 2px; font-size: 11px; }
.tl-step .tp { font-size: 13px; color: var(--gray); line-height: 1.85; margin-top: 8px; }

.method-quote {
  max-width: 780px;
  margin: 56px auto 0;
  padding: 24px 34px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.method-quote img.mq-logo { height: 46px; flex: 0 0 auto; }
.method-quote .mq-text { font-size: 15px; line-height: 2; color: #1F2226; }
.method-quote .mq-text b { color: var(--red); font-weight: 700; }

/* ---------- 客户與優勢 ---------- */

.cw-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}
.cw-col .stack { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }

/* ---------- 研究與洞察 ---------- */

.insights-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.insight-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,0.02);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.insight-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-deep); }
.insight-thumb { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.insight-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.insight-card:hover .insight-thumb img { transform: scale(1.05); }
.insight-thumb .i-cat {
  position: absolute;
  left: 0; bottom: 0;
  background: var(--red);
  color: #fff;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  padding: 8px 18px;
  border-top-right-radius: 10px;
  font-weight: 500;
}
.insight-body { padding: 24px 26px 26px; flex: 1; display: flex; flex-direction: column; }
.insight-body h3 { font-size: 17px; font-weight: 700; line-height: 1.7; }
.insight-body .en { font-size: 11.5px; }
.insight-body .i-meta {
  margin-top: auto;
  padding-top: 16px;
  font-family: var(--latin);
  font-size: 12px;
  color: var(--gray-soft);
  letter-spacing: 0.08em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.insight-body .i-meta .read {
  color: var(--red);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
}
.insights-note {
  margin-top: 26px;
  text-align: center;
  font-size: 12.5px;
  color: var(--gray-soft);
  letter-spacing: 0.08em;
}

/* ---------- CTA 帶 ---------- */

.cta-band {
  position: relative;
  color: #fff;
  padding: 90px 0;
  overflow: hidden;
  background: linear-gradient(120deg, #C5100F 0%, var(--red-dark) 100%);
}
.cta-band .ring { z-index: 1; }
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cta-band h2 {
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: 0.06em;
}
.cta-band p { margin-top: 10px; color: rgba(255,255,255,0.9); font-size: 15px; }
.cta-band p .en { color: rgba(255,255,255,0.75); }
.cta-band .btn {
  background: #fff;
  color: var(--red);
  border-color: #fff;
  flex: none;
  font-weight: 700;
}
.cta-band .btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---------- 聯繫我們 ---------- */

.contact-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.contact-list li {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.contact-list li:first-child { padding-top: 0; }
.contact-ic {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--red-tint);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-ic svg { width: 20px; height: 20px; }
.contact-list h3 {
  font-family: var(--latin);
  font-size: 11.5px;
  letter-spacing: 0.22em;
  color: var(--gray-soft);
  font-weight: 600;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.contact-list .cl-cn { font-size: 13px; letter-spacing: 0.2em; color: var(--gray-soft); font-weight: 500; margin-bottom: 4px; }
.contact-list p { font-size: 15.5px; line-height: 1.85; font-weight: 500; }
.contact-list p small { color: var(--gray-soft); font-size: 12.5px; font-family: var(--latin); font-weight: 400; }
.contact-list a:hover { color: var(--red); }

.confidential-note { margin-top: 28px; }

.contact-form {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.02);
  padding: 42px 44px 38px;
  box-shadow: var(--shadow-deep);
}
.contact-form h3 { font-size: 21px; font-weight: 900; letter-spacing: 0.06em; }
.form-hint { font-size: 12.5px; color: var(--gray-soft); margin: 8px 0 26px; line-height: 1.8; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 8px;
}
.field label .en-inline { margin-left: 6px; }
.field input, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  padding: 13px 16px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(221, 18, 21, 0.12);
}
.field textarea { min-height: 130px; resize: vertical; }
.contact-form .btn { width: 100%; margin-top: 8px; }

.map-embed {
  margin-top: 64px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-deep);
  position: relative;
  background: var(--soft);
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
  filter: grayscale(0.7) contrast(1.02);
}

/* ---------- 重要聲明（宣傳冊 decl-panel 風格） ---------- */

.disclaimer { padding: 90px 0; background: #fff; }
.decl-panel {
  background: var(--soft);
  border-radius: 14px;
  padding: 40px 48px;
  position: relative;
  overflow: hidden;
  margin-top: 44px;
}
.decl-panel::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: var(--red);
}
.decl-panel p { font-size: 14.5px; line-height: 2.15; color: #1F2226; }
.decl-panel p + p { margin-top: 14px; }
.decl-panel p.em {
  background: #fff;
  border-radius: 10px;
  padding: 18px 24px;
  color: var(--red-deep);
  font-weight: 500;
  box-shadow: 0 4px 14px rgba(30, 32, 40, 0.07);
}
.decl-panel p.em .en { color: #8A2A2A; }

/* ---------- 頁腳 ---------- */

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding: 70px 0 0;
  font-size: 14px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-brand .brand-name { color: #fff; }
.footer-brand p { margin-top: 18px; max-width: 360px; line-height: 1.95; font-size: 13.5px; }
.footer-brand p .en { color: rgba(255,255,255,0.45); }
.footer-col h3 {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.26em;
  margin-bottom: 6px;
  font-weight: 700;
}
.footer-col .fc-en {
  font-family: var(--latin);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col li { margin-top: 12px; }
.footer-col a { transition: color 0.25s ease; }
.footer-col a:hover { color: #FF6B6B; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 26px 0 32px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.05em;
  line-height: 1.9;
}

/* ---------- 政策頁（privacy.html / pdpo.html） ---------- */

.policy-hero {
  background: linear-gradient(120deg, #C5100F 0%, var(--red-dark) 100%);
  color: #fff;
  padding: 170px 0 80px;
  position: relative;
  overflow: hidden;
}
.policy-hero .ring { opacity: 0.9; }
.policy-hero .h-en { color: rgba(255,255,255,0.85); }
.policy-hero .h-cn { color: #fff; }
.policy-hero .h-dash { background: #fff; }
.policy-hero .meta {
  margin-top: 20px;
  font-family: var(--latin);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.8);
}

.policy-body { padding: 70px 0 90px; }
.policy-body .container { max-width: 900px; }
.policy-intro { font-size: 15.5px; color: var(--gray); line-height: 2.05; }
.policy-sec { margin-top: 46px; }
.policy-sec h2 {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.05em;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.policy-sec h2 .pno {
  font-family: var(--latin);
  color: var(--red);
  font-size: 17px;
  font-weight: 700;
}
.policy-sec h2 .en { display: block; margin-top: 2px; }
.policy-sec h3 { font-size: 16px; font-weight: 700; margin-top: 22px; }
.policy-sec p { font-size: 14.5px; color: #2A2D33; line-height: 2.05; margin-top: 12px; }
.policy-sec ul { margin-top: 10px; }
.policy-sec li {
  font-size: 14px;
  color: #2A2D33;
  line-height: 1.95;
  padding-left: 20px;
  position: relative;
  margin-top: 8px;
}
.policy-sec li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
}
.policy-sec .en { font-size: 12.5px; color: #8A8F96; }
.policy-note { margin-top: 46px; }
.policy-back { margin-top: 50px; text-align: center; }

/* ---------- 進場動效 ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }

/* ---------- 響應式 ---------- */

@media (max-width: 1080px) {
  .services-layout { grid-template-columns: 1fr; }
  .services-panel { min-height: 340px; }
  .vals { grid-template-columns: repeat(2, 1fr); }
  .tl { grid-template-columns: repeat(3, 1fr); gap: 36px 0; }
  .tl::before { display: none; }
  .about-grid, .philosophy-grid { grid-template-columns: 1fr; gap: 52px; }
  .about-figure, .philosophy-figure { max-width: 520px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .section { padding: 72px 0; }
  .header-inner { height: 74px; }
  .brand-logo { width: 42px; }
  .brand-name { font-size: 16px; }

  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    z-index: 99;
    background: #FFFFFF;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 28px 26px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
    box-shadow: 0 24px 40px -24px rgba(30, 32, 40, 0.3);
  }
  .main-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .main-nav a.nav-link { padding: 14px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .main-nav .btn { margin-top: 18px; }

  .hero-inner { padding-top: 130px; padding-bottom: 110px; }
  .hero h1 br { display: none; }
  .scroll-hint { display: none; }
  .hero .ring { display: none; }

  .roles-grid, .services-grid, .vals, .tl,
  .cw-grid, .insights-grid, .form-row { grid-template-columns: 1fr; }
  .method-quote { flex-direction: column; text-align: center; padding: 28px 24px; }
  .contact-form { padding: 32px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .cta-inner { justify-content: flex-start; }
  .decl-panel { padding: 30px 26px; }
  .policy-hero { padding: 140px 0 60px; }
}

@media (max-width: 440px) {
  .brand-name { font-size: 14.5px; }
  .brand-name small { letter-spacing: 0.1em; font-size: 8.5px; }
}
