/* ===========================================================
   Cindy's 人類告解室 — Blocksy-style stylesheet
   英文/數字：Noto Serif　中文：Noto Sans TC
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700;900&family=Noto+Serif:ital,wght@0,300;0,400;0,500;0,700;0,900;1,400&family=Noto+Serif+TC:wght@500;700;900&display=swap');

/* ===== Tokens ===== */
:root {
  --sans:  'Noto Serif', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang TC', 'Microsoft JhengHei', sans-serif;
  --serif: 'Noto Serif TC', 'Songti TC', 'PMingLiU', serif;

  --black:    #131316;
  --text:     #131316;
  --text-2:   #2d2d31;
  --muted:    #56575b;
  --hint:     #8a8a8e;
  --border:   #e8e8ea;
  --border-2: #d6d6d9;
  --soft-bg:  #f7f7f8;
  --white:    #ffffff;

  --link:       #131316;
  --link-hover: #e8820a;

  --container:  1290px;
  --content:    760px;
  --wide:       1100px;

  --radius:     6px;
  --radius-lg:  10px;
}

/* ===== Reset ===== */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 17px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--text);
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: 0.01em;
}
a { color: var(--link); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--link-hover); }
img, svg { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; }
strong, b { font-weight: 700; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--sans);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(2rem, 4.4vw, 3rem); line-height: 1.2; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.2rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.55rem); }
h4 { font-size: 1.1rem; }
h6 { font-size: 1.05rem; font-weight: 700; }

/* ===== Container ===== */
.container       { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2.5rem); }
.container-wide  { width: 100%; max-width: var(--wide);      margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2.5rem); }
.container-narrow{ width: 100%; max-width: var(--content);   margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2.5rem); }

/* ===========================================================
   HEADER (Blocksy header builder: top bar + main bar)
   =========================================================== */
.ct-header { background: var(--white); border-bottom: 1px solid var(--border); position: relative; z-index: 50; }

/* ── Main bar ── */
.ct-mainbar { background: var(--white); }
.ct-mainbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 96px;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.site-logo {
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.1;
}
.site-logo:hover { color: var(--text); }

.main-menu ul {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.main-menu a {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  position: relative;
  padding: 0.5rem 0;
}
.main-menu a:hover { color: var(--link-hover); }
.main-menu a.is-active { color: var(--link-hover); }

/* Mobile burger */
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  border-radius: var(--radius);
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.menu-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
/* 開啟時：三條線轉成 X */
body.menu-open .menu-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.menu-open .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}
body.menu-open .menu-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative;
  width: 100%;
  margin: 0;
  text-align: center;
  min-height: clamp(420px, 78vh, 720px);
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(3.5rem, 7vw, 5.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  background-image:
    linear-gradient(rgba(19, 19, 22, 0.55), rgba(19, 19, 22, 0.65)),
    url("index_background.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #ffffff;
  overflow: hidden;
}
.hero .container-narrow { position: relative; z-index: 1; width: 100%; }
.hero-eyebrow {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.75rem;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}
.hero-title {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.005em;
  margin-bottom: 0.5rem;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.hero-title-block {
  font-size: clamp(1.55rem, 3.8vw, 2.4rem);
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 0.4rem;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.hero .btn-primary {
  background: #ffffff;
  color: var(--text);
  border-color: #ffffff;
}
.hero .btn-primary:hover {
  background: var(--link-hover);
  border-color: var(--link-hover);
  color: #ffffff;
}
.hero-actions {
  margin-top: 2.25rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Page hero (內頁通用) */
.page-hero {
  text-align: center;
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(1rem, 2.5vw, 1.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}
.page-hero .eyebrow {
  font-size: 0.95rem;
  font-weight: 700;
  color: #e8820a;
  margin-bottom: 1.25rem;
}
.page-hero h1 {
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  font-weight: 900;
  margin-bottom: 1rem;
}
.page-hero .lede {
  max-width: 580px;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.85;
}

/* ===========================================================
   BUTTONS
   =========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.85rem 1.85rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
  line-height: 1.2;
}
.btn-primary  { background: var(--text); color: var(--white); border-color: var(--text); }
.btn-primary:hover  { background: var(--link-hover); border-color: var(--link-hover); color: var(--white); }
.btn-outline  { background: transparent; color: var(--text); border-color: var(--text); }
.btn-outline:hover  { background: var(--text); color: var(--white); }
.btn-ghost    { background: transparent; color: var(--muted); border-color: var(--border-2); }
.btn-ghost:hover    { color: var(--text); border-color: var(--text); }

/* ===========================================================
   SECTION (3-column features)
   =========================================================== */
.section { padding: clamp(2.5rem, 6vw, 4.5rem) 0; }

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.25rem);
}
.feature {
  text-align: left;
  padding: 1.75rem 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.feature:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.feature-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.7rem;
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e8820a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.feature-icon svg {
  width: 22px;
  height: 22px;
}
.feature h6 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  color: var(--text);
  text-align: left;
  line-height: 1.3;
}
.feature p {
  font-size: 0.95rem;
  line-height: 1.95;
  color: var(--muted);
  margin: 0;
  text-align: justify;
  text-justify: inter-ideograph;
}

/* ===========================================================
   SERVICE CARDS (3-col simple)
   =========================================================== */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.25rem);
}
.svc-card {
  text-align: center;
  padding: 0 0.5rem;
}
.svc-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}
.svc-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.95;
  margin-bottom: 1.25rem;
  min-height: 5.6em;
}
.svc-card .btn {
  font-size: 0.88rem;
  padding: 0.65rem 1.4rem;
}

/* ===========================================================
   ABOUT page
   =========================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3.5rem;
  align-items: start;
  max-width: var(--wide);
  margin: 0 auto;
}
.about-bio p {
  font-size: 1rem;
  line-height: 2;
  color: var(--text-2);
  margin-bottom: 1.25rem;
}
.about-bio .lead {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 1.75rem;
}

.keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}
.keyword {
  font-size: 0.82rem;
  padding: 0.3rem 0.85rem;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  color: var(--muted);
  background: var(--soft-bg);
}

.profile-card {
  border: 1px solid var(--border);
  background: var(--white);
  padding: 2rem 1.5rem;
  text-align: center;
  border-radius: var(--radius);
}
.profile-mark {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--soft-bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: var(--serif);
  font-size: 3.2rem;
  color: var(--text-2);
  line-height: 1;
}
.profile-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.profile-title {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.profile-email {
  font-size: 0.78rem;
  color: var(--hint);
  word-break: break-all;
  line-height: 1.5;
  border-top: 1px solid var(--border);
  padding-top: 0.85rem;
}
.profile-email a { color: var(--muted); }

/* ===========================================================
   TESTIMONIALS
   =========================================================== */
.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.testimonial {
  background: var(--soft-bg);
  border-left: 3px solid var(--text);
  padding: 1.4rem 1.6rem;
  font-size: 0.92rem;
  line-height: 1.95;
  color: var(--text-2);
}

/* ===========================================================
   PODCAST embed
   =========================================================== */
.embed-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  margin-bottom: 1.25rem;
}
.embed-wrap iframe { display: block; width: 100%; border: none; }

.episode-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.episode-list .embed-wrap {
  margin-bottom: 0;
  border-radius: 12px;
  border-color: var(--border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.episode-list .embed-wrap:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.85rem;
}
.platforms .label {
  font-size: 0.78rem;
  color: var(--hint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-right: 0.5rem;
}
.platform-pill {
  padding: 0.4rem 1rem;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.85rem;
  transition: all .2s;
}
.platform-pill:hover { border-color: var(--text); color: var(--text); }

/* ===========================================================
   FORMS (服務頁 / contact)
   =========================================================== */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem 2.25rem;
}
.form-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.4rem; }
.form-card .form-subtitle { font-size: 0.9rem; color: var(--muted); margin-bottom: 1.75rem; line-height: 1.7; }

.form-group { margin-bottom: 1.1rem; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.45rem;
}
.form-input {
  width: 100%;
  padding: 0.7rem 0.95rem;
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  font-size: 0.95rem;
  outline: none;
  transition: border-color .2s;
}
.form-input:focus { border-color: var(--text); }
select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2356575b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.25rem;
}
textarea.form-input { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.78rem; color: var(--hint); margin-top: 0.4rem; line-height: 1.6; }

.radio-group { display: flex; flex-wrap: wrap; gap: 1rem; }
.radio-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  color: var(--text-2);
  cursor: pointer;
}
.radio-item input { accent-color: var(--text); }

.form-check { display: flex; gap: 0.6rem; align-items: flex-start; margin-bottom: 0.6rem; font-size: 0.85rem; color: var(--text-2); line-height: 1.65; }
.form-check input { margin-top: 5px; flex-shrink: 0; accent-color: var(--text); }
.form-divider { border: none; border-top: 1px solid var(--border); margin: 1.25rem 0; }

.form-submit {
  width: 100%;
  padding: 0.9rem;
  background: var(--text);
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .2s;
  margin-top: 0.5rem;
}
.form-submit:hover { background: var(--link-hover); }

/* Info / price boxes (服務頁通用) */
.info-box, .price-box, .notice-box {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.25rem;
}
.info-box h3, .notice-box h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.85rem; }
.info-box ul, .notice-box ul { display: flex; flex-direction: column; gap: 0.55rem; }
.info-box li, .notice-box li {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  padding-left: 1.1rem;
  position: relative;
}
.info-box li::before, .notice-box li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--text);
  font-weight: 900;
}
.price-box { background: #b6630a; color: var(--white); border-color: #b6630a; }
.price-label { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.88); margin-bottom: 0.5rem; }
.price-amount { font-size: 2.1rem; font-weight: 900; margin-bottom: 0.5rem; line-height: 1; }
.price-note { font-size: 0.82rem; color: rgba(255,255,255,0.92); line-height: 1.65; }

/* 表單內費用區塊（時空答錄機委託表） */
.fee-block { border-radius: var(--radius); margin-bottom: 1.1rem; }
.fee-label { font-size: 0.78rem; letter-spacing: 0.1em; margin-bottom: 0.4rem; }
.fee-amount { font-size: 1.85rem; font-weight: 900; line-height: 1; margin-bottom: 0.45rem; }
.fee-sub { font-size: 0.85rem; line-height: 1.6; margin-bottom: 0.7rem; }
.fee-note { font-size: 0.78rem; line-height: 1.7; }
.fee-note + .fee-note { margin-top: 0.25rem; }
.fee-block--clean {
  background: var(--soft-bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--link-hover);
  padding: 1.15rem 1.3rem;
}
.fee-block--clean .fee-label { color: var(--muted); }
.fee-block--clean .fee-amount { color: var(--link-hover); }
.fee-block--clean .fee-sub { color: var(--text); }
.fee-block--clean .fee-note { color: var(--hint); }

/* 開啟與錄製費：外觀比照表單欄位（白底灰邊圓角），金額仍保留醒目 */
.fee-field {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  width: 100%;
  padding: 0.7rem 0.95rem;
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
}
.fee-field-amount {
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
}
.fee-field-sub {
  font-size: 0.78rem;
  color: var(--muted);
}

/* 送出後的「成功・加 LINE」區塊（取代表單顯示） */
.form-success { text-align: center; padding: 0.5rem 0; }
.success-check {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--link-hover);
  color: #fff;
  font-size: 1.8rem;
  line-height: 56px;
  font-weight: 700;
}
.form-success h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.4rem; }
.success-lede { font-size: 1rem; color: var(--text-2); margin-bottom: 1.6rem; }
.success-steps {
  list-style: decimal;
  text-align: left;
  max-width: 360px;
  margin: 0 auto 1.75rem;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.success-steps li { font-size: 0.92rem; color: var(--muted); line-height: 1.75; padding-left: 0.25rem; }
.success-line-btn {
  display: block;
  width: 100%;
  padding: 0.95rem;
  background: var(--text);
  color: var(--white);
  font-weight: 500;
  font-size: 1rem;
  border-radius: var(--radius);
  text-align: center;
  transition: background .2s;
}
.success-line-btn:hover { background: var(--link-hover); color: var(--white); }
.success-note { font-size: 0.8rem; color: var(--hint); margin-top: 1rem; line-height: 1.7; }

/* 蜜罐：人類看不到、不會去填；機器人常會填 → 後端據此攔截 */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Cloudflare Turnstile 與送出前的錯誤訊息 */
.form-card .cf-turnstile { margin-bottom: 1rem; }
.form-error {
  color: #b6630a;
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 0.6rem;
  text-align: center;
}

/* ===========================================================
   CONTACT methods
   =========================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-methods { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1.5rem; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  padding: 0.95rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: all .2s;
}
.contact-method:hover { border-color: var(--text); background: var(--soft-bg); color: var(--text); }
.method-icon { font-size: 1.1rem; width: 32px; text-align: center; flex-shrink: 0; }
.method-label { font-size: 0.95rem; font-weight: 500; line-height: 1.35; }
.method-sub { font-size: 0.8rem; color: var(--muted); margin-top: 2px; }

/* ===========================================================
   TIME-BUDDY page
   =========================================================== */
.query-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 2.5rem;
}
.query-bar label { font-size: 0.9rem; color: var(--muted); flex-shrink: 0; }
.query-bar input[type="date"] {
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--text);
}
.query-bar input[type="date"]:focus { border-color: var(--text); outline: none; }

.buddy-block {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}
.kin-headline {
  font-size: clamp(1.25rem, 3.2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 0.4rem;
  letter-spacing: 0.005em;
}
.art-date {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}
.buddy-img-wrap {
  margin: 0 auto 2rem;
  aspect-ratio: 1 / 1;
  background: transparent;
}
.buddy-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity .35s ease;
}
.img-fade { animation: fadeIn .4s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.kin-attrs {
  margin-bottom: 2.5rem;
}
.attr-line {
  font-size: 1.02rem;
  font-weight: 400;
  color: var(--text);
  line-height: 2.1;
  letter-spacing: 0.02em;
}
.attr-line strong {
  font-weight: 700;
}

.copyright-note {
  margin-top: 2rem;
  padding-top: 1.5rem;
  font-size: 0.78rem;
  color: var(--hint);
  line-height: 1.85;
  border-top: 1px solid var(--border);
  text-align: center;
}
.copyright-note a { color: var(--muted); }

/* ===========================================================
   FOOTER
   =========================================================== */
.ct-footer {
  border-top: 1px solid var(--border);
  margin-top: clamp(4rem, 8vw, 6rem);
  padding-top: clamp(2.5rem, 5vw, 3rem);
  padding-bottom: calc(clamp(2.5rem, 5vw, 3rem) + env(safe-area-inset-bottom, 0px));
  text-align: center;
  background: var(--white);
}
.ct-footer p {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0;
  line-height: 1.5;
}
.ct-footer .footer-links {
  display: inline-flex;
  gap: 1.5rem;
  font-size: 0.72rem;
  line-height: 1.5;
  margin-top: 0.15rem;
}
.ct-footer .footer-links a { color: var(--muted); }
.ct-footer .footer-links a:hover { color: var(--link-hover); }

/* ===========================================================
   Utilities
   =========================================================== */
.section-title {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.section-title .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hint);
  margin-bottom: 0.6rem;
}
.section-title h2 {
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 900;
}
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 900px) {
  .features      { grid-template-columns: 1fr; gap: 2.5rem; }
  .svc-grid      { grid-template-columns: 1fr; gap: 2rem; }
  .testimonials  { grid-template-columns: 1fr; }
  .about-grid    { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid  { grid-template-columns: 1fr; gap: 2.5rem; }
  .result        { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 900px) {
  .ct-mainbar { position: relative; }
  .ct-mainbar .container {
    min-height: 70px;
    justify-content: center;
    position: relative;
  }
  .site-logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
  }
  .menu-toggle {
    display: inline-flex;
    position: absolute;
    right: clamp(1rem, 4vw, 2.5rem);
    top: 50%;
    transform: translateY(-50%);
  }
  body.menu-open .menu-toggle {
    transform: translateY(-50%);
  }
  .main-menu ul { display: none; }

  body.menu-open .main-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 16px rgba(0,0,0,0.06);
    z-index: 100;
  }
  body.menu-open .main-menu ul {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.25rem 1.5rem;
  }
  body.menu-open .main-menu li {
    border-bottom: 1px solid var(--border);
  }
  body.menu-open .main-menu li:last-child { border-bottom: none; }
  body.menu-open .main-menu a {
    display: block;
    padding: 1rem 0;
    font-size: 0.95rem;
  }
  .form-card { padding: 1.5rem; }
  .attr-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  html { font-size: 16px; }
  .hero { padding: 3.5rem 0 2.5rem; }
  .platforms { font-size: 0.82rem; }
}

/* ===========================================================
   服務／Podcast 卡片封面圖（svc-card 變體）
   =========================================================== */
.svc-card.has-cover {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  text-align: left;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.svc-card.has-cover:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.svc-card-cover {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.svc-card.has-cover > h4,
.svc-card.has-cover > p,
.svc-card.has-cover > .btn {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
.svc-card.has-cover > h4 { margin-top: 1.5rem; text-align: left; }
.svc-card.has-cover > p {
  flex: 1;
  min-height: 0;
  text-align: justify;
  text-justify: inter-ideograph;
  text-align-last: left;
}
.svc-card.has-cover > .btn {
  margin-top: 1rem;
  margin-bottom: 1.75rem;
  align-self: flex-start;
}

/* ===========================================================
   關於我 — Cindy 頭像
   =========================================================== */
.profile-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  margin-bottom: 1.25rem;
}

/* ===========================================================
   首頁專屬：滿版底圖 + 透明化 + 卡片浮在上層
   =========================================================== */
body.index-page {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.82)),
    url("index_background.jpg");
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

/* header / footer 在首頁變成半透明，讓底圖也透出來 */
body.index-page .ct-header,
body.index-page .ct-mainbar {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
body.index-page .ct-footer {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: 0;
}

/* 三格文案區段：背景透明，讓底圖透出 */
body.index-page main > .section {
  background: transparent;
}

/* 首頁標題：「選擇你想推開的門」與其他頁 hero h1 同級；eyebrow 等比放大 */
body.index-page .section-title h2 {
  font-size: clamp(2rem, 4.6vw, 3.1rem);
}
body.index-page .section-title .eyebrow {
  font-size: 1.20rem;
}

/* 三格卡片：磨砂玻璃效果（白色半透明 + 背景模糊） */
body.index-page .feature {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
body.index-page .feature:hover {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

@supports not ((backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))) {
  body.index-page .feature {
    background: rgba(255, 255, 255, 0.92);
  }
  body.index-page .ct-mainbar,
  body.index-page .ct-footer {
    background: rgba(255, 255, 255, 0.92);
  }
}

/* ===========================================================
   首頁 hero 內的左右兩欄佈局
   =========================================================== */
.hero .container {
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  width: 100%;
}
.hero-content {
  text-align: left;
}
.hero-content .hero-eyebrow,
.hero-content .hero-title,
.hero-content .hero-title-block {
  text-align: left;
}
.hero-content .hero-actions {
  justify-content: flex-start;
}

.hero .features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  grid-template-columns: none;
}

body.index-page .hero {
  min-height: clamp(640px, 92vh, 960px);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.hero .feature {
  padding: 1.75rem 2rem;
}
.hero .feature p {
  text-align: left;
}

@media (max-width: 1100px) {
  .hero-layout { gap: 2rem; }
  .hero .feature {
    padding: 1.5rem 1.6rem;
  }
  .hero .feature h6 { font-size: 1rem; }
  .hero .feature p { font-size: 0.88rem; line-height: 1.8; }
}

@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .hero-content,
  .hero-content .hero-eyebrow,
  .hero-content .hero-title,
  .hero-content .hero-title-block {
    text-align: center;
  }
  .hero-content .hero-actions {
    justify-content: center;
  }
  body.index-page .hero {
    min-height: auto;
    padding: clamp(3rem, 8vw, 5rem) 0 clamp(2.5rem, 6vw, 3.5rem);
  }
}

/* ===========================================================
   PODCAST 頁面 — 頂部 intro 卡片
   =========================================================== */
.intro-card {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 1.3fr;
  align-items: stretch;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: box-shadow .25s ease, transform .25s ease;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}
.intro-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.intro-card-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 220px;
}
.intro-card-body {
  padding: 1.85rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.intro-card-body h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.intro-card-body p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.95;
  margin-bottom: 1.35rem;
  text-align: justify;
  text-justify: inter-ideograph;
  text-align-last: left;
}
.intro-card-body .btn {
  align-self: flex-start;
  font-size: 0.88rem;
  padding: 0.65rem 1.4rem;
}
@media (max-width: 700px) {
  .intro-card { grid-template-columns: 1fr; }
  .intro-card-cover { aspect-ratio: 4 / 3; min-height: 0; }
  .intro-card-body { padding: 1.5rem 1.5rem 1.75rem; }
}

/* ===========================================================
   PODCAST 底部兩格並排
   =========================================================== */
.svc-grid--2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .svc-grid--2 { grid-template-columns: 1fr; }
}

/* ===========================================================
   手機版：收聽平台一排顯示
   =========================================================== */
@media (max-width: 600px) {
  .platforms {
    flex-wrap: nowrap;
    gap: 0.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.4rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .platforms::-webkit-scrollbar { display: none; }
  .platforms .label {
    flex-shrink: 0;
    font-size: 0.72rem;
    margin-right: 0.15rem;
  }
  .platform-pill {
    flex-shrink: 0;
    padding: 0.35rem 0.75rem;
    font-size: 0.78rem;
    white-space: nowrap;
  }
}

/* ===========================================================
   PODCAST — 焦點集 + 其他 4 集
   =========================================================== */
.episode-featured {
  margin-bottom: 2.25rem;
}
.episode-featured-head {
  margin-bottom: 0.75rem;
}
.badge-latest {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: var(--text);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
}
.badge-latest svg {
  width: 9px;
  height: 9px;
  flex-shrink: 0;
}

/* 焦點集的 embed 框 */
.embed-wrap--featured {
  border: 2px solid var(--text);
  border-radius: 14px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.10);
  margin-bottom: 0;
  transition: box-shadow .25s ease, transform .25s ease;
}
.embed-wrap--featured:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
  transform: translateY(-2px);
}

/* 其他 4 集的小標 */
.episode-others-head {
  margin: 0 0 0.85rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.episode-others-head .eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hint);
  font-weight: 700;
}

.episode-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.episode-grid .embed-wrap {
  margin-bottom: 0;
  border-radius: 12px;
  border-color: var(--border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.episode-grid .embed-wrap:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

@media (max-width: 700px) {
  .episode-grid { grid-template-columns: 1fr; }
}

/* ===========================================================
   服務頁專屬(時空答錄機等 1對1 服務委託頁)
   =========================================================== */

/* 左右兩欄佈局(info + form) */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) {
  .service-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* 流動訊息提示框(橘色重點區塊) */
.flow-callout {
  background: #fff8ec;
  border: 1px solid #f0dca8;
  border-left: 3px solid #e8820a;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.92rem;
  line-height: 1.95;
  color: var(--text-2);
}
.flow-callout strong {
  color: #b6630a;
  letter-spacing: 0.02em;
}
.flow-callout p { margin: 0; }
.flow-callout p + p { margin-top: 0.6rem; }

/* 備註欄即時字數計數器 */
.note-counter-wrap {
  text-align: right;
  font-variant-numeric: tabular-nums;
  color: var(--hint);
}
.note-counter-wrap.is-full { color: #b6630a; }

