/* index.css — 首頁專屬樣式 */

/* ---------- HERO ---------- */
.hero {
  padding: 64px 0 96px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}
.hero-eyebrow .line { width: 38px; height: 1px; background: var(--caramel); }
.hero-eyebrow span {
  font-size: 12px; letter-spacing: .3em; text-transform: uppercase; color: var(--caramel-dk);
}
.hero h1 {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: .02em;
  margin-bottom: 30px;
}
.hero h1 em {
  font-family: var(--latin);
  font-style: italic;
  font-weight: 500;
  color: var(--caramel-dk);
}
.hero .lede {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.95;
  max-width: 440px;
  margin-bottom: 38px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-meta { display: flex; gap: 44px; padding-top: 30px; border-top: 1px solid var(--line); }
.hero-meta .num {
  font-family: var(--serif); font-size: 32px; font-weight: 600; display: block; line-height: 1;
}
.hero-meta .lbl {
  font-size: 11.5px; letter-spacing: .18em; color: var(--ink-faint);
  margin-top: 9px; display: block; text-transform: uppercase;
}
.hero-visual { position: relative; aspect-ratio: 4/5; }
.hero-visual .ph { position: absolute; inset: 0; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 2px; }
.hero-badge {
  position: absolute;
  bottom: -26px; left: -26px;
  background: var(--oat);
  border: 1px solid var(--line);
  padding: 20px 26px;
  z-index: 3;
}
.hero-badge .zh { font-family: var(--serif); font-size: 15px; letter-spacing: .2em; margin-bottom: 4px; }
.hero-badge .en { font-family: var(--latin); font-style: italic; font-size: 20px; color: var(--caramel-dk); }
.hero-seal {
  position: absolute;
  top: 22px; right: 22px;
  width: 92px; height: 92px;
  border-radius: 50%;
  background: rgba(51,51,51,.55);
  backdrop-filter: blur(3px);
  color: var(--oat);
  display: grid; place-items: center;
  text-align: center; line-height: 1.3;
  z-index: 3;
}
.hero-seal .big { font-family: var(--serif); font-size: 26px; font-weight: 600; }
.hero-seal .sm { font-size: 9px; letter-spacing: .22em; display: block; margin-top: 2px; }

/* ---------- VALUE STRIP ---------- */
.vstrip { background: var(--sand); }
.vstrip-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: var(--maxw); margin: 0 auto;
}
.vstrip-item {
  padding: 30px 28px;
  border-right: 1px solid rgba(51,51,51,.1);
  display: flex; align-items: center; gap: 16px;
}
.vstrip-item:last-child { border-right: none; }
.vstrip-item .ico {
  width: 38px; height: 38px; border: 1.5px solid var(--ink); border-radius: 50%;
  display: grid; place-items: center; font-family: var(--serif); font-size: 16px; flex: none;
}
.vstrip-item .t { font-size: 13.5px; font-weight: 500; }
.vstrip-item .s { font-size: 11.5px; color: var(--ink-soft); }

/* ---------- ROAST CATEGORIES ---------- */
.roast-split { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.roast-cell {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  display: flex; align-items: flex-end;
  text-decoration: none;
  color: var(--oat);
}
.roast-cell .ph { position: absolute; inset: 0; }
.roast-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.roast-cell::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(38,32,26,.74), rgba(38,32,26,.12) 60%, transparent);
  z-index: 1;
}
.roast-cell .rc-body { position: relative; z-index: 2; padding: 34px; width: 100%; }
.roast-cell .rc-en { font-family: var(--latin); font-style: italic; font-size: 16px; opacity: .9; }
.roast-cell h3 { font-family: var(--serif); font-size: 30px; font-weight: 600; margin: 4px 0 8px; letter-spacing: .04em; }
.roast-cell p { font-size: 13px; opacity: .85; max-width: 320px; line-height: 1.8; }
.roast-cell .rc-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px; font-size: 13px; letter-spacing: .14em;
  border-bottom: 1px solid var(--caramel); padding-bottom: 3px;
}
.roast-cell .rc-link .arrow { transition: transform .25s var(--ease); }
.roast-cell:hover .rc-link .arrow { transform: translateX(5px); }

/* ---------- FEATURED ---------- */
.feat-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 48px; gap: 24px;
}
.feat-head .eyebrow { display: block; margin-bottom: 12px; }
.feat-head h2 { font-family: var(--serif); font-size: 40px; font-weight: 600; letter-spacing: .03em; }
.feat-head .more {
  text-decoration: none; font-size: 13.5px; letter-spacing: .12em; color: var(--ink);
  border-bottom: 1.5px solid var(--caramel); padding-bottom: 4px; white-space: nowrap;
}

/* ---------- ABOUT TEASER ---------- */
.teaser { background: var(--ink); color: var(--oat); }
.teaser-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
.teaser-visual { aspect-ratio: 5/6; position: relative; }
.teaser-visual .ph { position: absolute; inset: 0; }
.teaser-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 2px; }
.teaser .eyebrow { color: var(--caramel); }
.teaser h2 { font-family: var(--serif); font-size: 38px; font-weight: 600; line-height: 1.35; margin: 14px 0 22px; }
.teaser p { color: rgba(248,246,240,.72); font-size: 15px; line-height: 2; margin-bottom: 18px; max-width: 460px; }
.teaser .sign {
  margin-top: 30px; padding-top: 26px; border-top: 1px solid rgba(248,246,240,.18);
  font-family: var(--latin); font-style: italic; font-size: 22px; color: var(--caramel);
}

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; gap: 48px; }
  .hero h1 { font-size: 46px; }
  .vstrip-inner { grid-template-columns: 1fr 1fr; }
  .vstrip-item:nth-child(2) { border-right: none; }
  .roast-split { grid-template-columns: 1fr; }
  .teaser-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 38px; }
  .vstrip-inner { grid-template-columns: 1fr; }
  .vstrip-item { border-right: none; border-bottom: 1px solid rgba(51,51,51,.1); }
  .feat-head { flex-direction: column; align-items: flex-start; }
}
