/* ══════════════════════════════════════════════
   SERVICES-PAGE.CSS — 服務與作品：價目表、作品集
   ══════════════════════════════════════════════ */

/* ── 頁首 Banner ── */
.page-banner {
  background: linear-gradient(135deg, var(--blush-50) 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--rule);
  padding: 64px 48px 56px;
  text-align: center;
}
.page-banner .section-eyebrow { margin-bottom: 8px; }
.page-banner h1 {
  font-family: 'Noto Serif TC', serif;
  font-size: clamp(24px, 5.5vw, 46px);
  font-weight: 500;
  color: var(--rose-900);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.page-banner p {
  color: var(--ink-soft);
  font-size: clamp(13px, 1.8vw, 15px);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.9;
}

/* ── 價目表 ── */
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 56px;
}
.price-cat-head {
  display: flex; align-items: baseline; gap: 14px;
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 1.5px solid var(--blush-200);
}
.price-cat-head .ord {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(16px, 2.5vw, 22px);
  color: var(--rose-400);
}
.price-cat-head h3 {
  font-family: 'Noto Serif TC', serif;
  font-size: clamp(16px, 2.8vw, 22px);
  font-weight: 600;
  color: var(--rose-900);
  letter-spacing: 0.06em;
}
.price-cat-head .en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(11px, 1.6vw, 13px);
  color: var(--ink-soft);
  margin-left: auto;
}
.price-row {
  display: flex; align-items: baseline; gap: 10px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--rule);
}
.price-row:last-child { border-bottom: none; }
.price-row .pname {
  font-size: clamp(13px, 1.8vw, 15px);
  color: var(--ink);
  font-weight: 500;
}
.price-row .pdesc {
  font-size: clamp(10px, 1.4vw, 12px);
  color: var(--ink-soft);
  margin-top: 2px;
}
.price-row .leader {
  flex: 1;
  border-bottom: 1px dotted var(--blush-300);
  transform: translateY(-4px);
  min-width: 16px;
}
.price-row .pcost {
  font-family: 'Noto Serif TC', serif;
  font-size: clamp(14px, 2.2vw, 18px);
  color: var(--rose-700);
  font-weight: 600;
  white-space: nowrap;
}
.price-row .pcost small {
  font-size: clamp(10px, 1.3vw, 12px);
  color: var(--ink-soft);
  font-weight: 400;
}
.price-note {
  margin-top: 40px;
  text-align: center;
  font-size: clamp(11px, 1.6vw, 13px);
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  background: var(--blush-50);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 16px 22px;
  line-height: 1.8;
}
.addon-note {
  margin-top: 24px;
  background: linear-gradient(135deg, var(--blush-50), #fff);
  border: 1px solid var(--blush-200);
  border-radius: 14px;
  padding: 28px 32px;
}
.addon-note h4 {
  font-family: 'Noto Serif TC', serif;
  font-size: clamp(14px, 2.2vw, 17px);
  color: var(--rose-900);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.addon-note ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
}
.addon-note li {
  font-size: clamp(12px, 1.6vw, 13.5px);
  color: var(--ink-soft);
  padding-left: 16px;
  position: relative;
  line-height: 1.7;
}
.addon-note li::before {
  content: '✦';
  position: absolute; left: 0;
  color: var(--rose-400);
  font-size: 9px;
  top: 4px;
}

/* ── 作品集 ── */
.portfolio { background: var(--blush-50); }
.filter-bar {
  display: flex; justify-content: center; gap: 10px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  background: #fff;
  border: 1px solid var(--blush-200);
  color: var(--ink-soft);
  padding: 8px 20px;
  border-radius: 999px;
  font-family: 'Noto Sans TC', sans-serif;
  font-size: clamp(11px, 1.6vw, 13px);
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--rose-400); color: var(--rose-600); }
.filter-btn.active { background: var(--rose-600); border-color: var(--rose-600); color: #fff; }
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 14px;
  overflow: hidden;
  background: var(--blush-100);
  border: 1px solid var(--rule);
  transition: transform 0.3s, box-shadow 0.3s;
  -webkit-touch-callout: none;
}
.gallery-item:hover { transform: translateY(-5px); box-shadow: 0 22px 48px -24px var(--rose-500); }
.gallery-item img { width:100%; height:100%; display:block; object-fit:cover; }
.gallery-item .cap {
  position: absolute;
  left:0; right:0; bottom:0;
  padding: 24px 14px 12px;
  background: linear-gradient(transparent, rgba(124,58,80,0.78));
  color: #fff;
  font-size: clamp(11px, 1.6vw, 13px);
  letter-spacing: 0.06em;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 2;
}
.gallery-item:hover .cap { opacity: 1; }
.gallery-item.hide { display: none; }

/* ── RWD ── */
@media (max-width:1024px) {
  .page-banner { padding: 48px 32px 44px; }
  .price-grid  { gap: 24px 40px; }
}
@media (max-width:768px) {
  .page-banner { padding: 40px 24px 36px; }
  .price-grid  { grid-template-columns: 1fr; }
  .gallery     { grid-template-columns: repeat(3, 1fr); }
  .addon-note ul { grid-template-columns: 1fr; }
}
@media (max-width:480px) {
  .gallery { grid-template-columns: repeat(2, 1fr); gap:12px; }
  .addon-note { padding: 20px 18px; }
}
