/* ============================================================
   映古子咖啡 in good hands cafe — Demo Styles v3
   版型：直述流 + 大字疊圖 + 不對稱
   跟 SunDawn 的差異：
   ・SunDawn = 左右格、章節卡片、精品感
   ・ingoods  = 單欄流、大字主導、藝文刊物感
   ============================================================ */

:root {
  --bg:        #F2EDE5;
  --bg-off:    #E8E0D4;
  --ink:       #1E1912;
  --ink-mid:   #5C5348;
  --ink-light: #9C9186;
  --green:     #3D6458;
  --green-lt:  #6A9B8A;
  --rust:      #B85C3A;
  --cream:     #FDF8F2;
  --dark:      #181410;

  --serif-tc:  "Noto Serif TC", serif;
  --sans-tc:   "Noto Sans TC", -apple-system, sans-serif;
  --serif-en:  "Cormorant Garamond", Georgia, serif;
  --sans-en:   "Inter", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans-tc);
  font-size: 1rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}
/* 窄欄：文章流用 */
.container-narrow {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ══ HEADER ══════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  height: 60px;
  background: var(--dark);
  display: flex; align-items: center;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
/* Logo: 全英文，細 */
.logo-wrap {
  display: flex; align-items: center; gap: 12px;
}
.logo-mark {
  width: 28px; height: 28px;
  border: 1px solid var(--green-lt);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.logo-mark svg { width: 14px; height: 14px; }
.logo-name {
  font-family: var(--serif-en);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  letter-spacing: 0.02em;
}
.logo-sub {
  font-family: var(--sans-tc);
  font-size: 0.64rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
  display: block;
  margin-top: 1px;
}
.site-nav {
  display: flex; gap: 28px;
}
.site-nav a {
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--green-lt); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px; padding: 6px;
}
.nav-toggle span {
  display: block; width: 18px; height: 1.5px;
  background: rgba(255,255,255,0.6); border-radius: 2px;
}
.mobile-nav {
  display: none; position: fixed;
  top: 60px; left: 0; right: 0;
  background: var(--dark);
  z-index: 49;
  padding: 20px 40px;
  flex-direction: column; gap: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ══ HERO ═══════════════════════════════════════════════════
   大字疊圖版型：照片全版，超大文字在圖上，右下對齊
   ════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  padding-top: 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    url("https://auntie.tw/wp-content/uploads/2025/05/202505271.jpg")
    center/cover no-repeat;
  background-color: #1a1410;
}
/* 左上到右下漸層，讓左上留空、右下文字可讀 */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(18,14,10,0.08) 0%,
    rgba(18,14,10,0.55) 60%,
    rgba(18,14,10,0.85) 100%
  );
}
/* 大字：底部對齊，橫跨整個視口 */
.hero-type {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0 40px 56px;
  z-index: 2;
}
.hero-pretitle {
  font-family: var(--sans-en);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--green-lt);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.hero-pretitle::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--green-lt);
}
/* 超大中文主標 */
.hero-title {
  font-family: var(--serif-tc);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 700;
  color: #fff;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.hero-title .line2 {
  display: block;
  font-size: 0.55em;
  font-weight: 400;
  font-family: var(--serif-en);
  font-style: italic;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
  margin-top: 8px;
}
/* 底部資訊橫排 */
.hero-meta {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-meta-item {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}
.hero-meta-item strong {
  display: block;
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}
.hero-cta {
  margin-left: auto;
  display: flex; gap: 10px;
}

/* Status dot */
.dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; animation: pulse 2s infinite; display: inline-block; }
.dot.closed { background: #f87171; animation: none; }
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:0.4} }

/* Buttons */
.btn {
  display: inline-block;
  padding: 11px 24px;
  font-family: var(--sans-tc);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 2px;
  transition: all 0.2s;
}
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-lt); }
.btn-outline-w { border: 1px solid rgba(255,255,255,0.4); color: rgba(255,255,255,0.8); }
.btn-outline-w:hover { background: rgba(255,255,255,0.1); }
.btn-outline { border: 1px solid var(--green); color: var(--green); }
.btn-outline:hover { background: var(--green); color: #fff; }

/* ══ TICKER ══════════════════════════════════════════════════ */
.ticker {
  background: var(--green);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-flex;
  gap: 40px;
  animation: tick 18s linear infinite;
}
.ticker-item {
  font-family: var(--sans-tc);
  font-size: 0.73rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.85);
}
.ticker-sep { color: rgba(255,255,255,0.3); }
@keyframes tick { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ══ STORY ═══════════════════════════════════════════════════
   文章單欄流，不是左右格
   ════════════════════════════════════════════════════════════ */
.story { padding: 96px 0; }
.story-kicker {
  font-family: var(--sans-en);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.story-kicker::after { content: ''; flex: 1; height: 1px; background: var(--green); opacity: 0.35; }
.story h2 {
  font-family: var(--serif-tc);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 36px;
}
/* 在標題和內文之間放一張寬圖 */
.story-img-full {
  width: 100%;
  aspect-ratio: 21/9;
  background:
    url("https://ants.tw/wp-content/uploads/20230930225324_45.jpg") center/cover no-repeat;
  background-color: var(--bg-off);
  border-radius: 2px;
  margin-bottom: 40px;
}
.story-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.story-body p {
  font-size: 1rem;
  color: var(--ink-mid);
  line-height: 1.95;
  margin-bottom: 16px;
}
/* 右欄的大引言 */
.story-pull {
  font-family: var(--serif-tc);
  font-size: 1.35rem;
  color: var(--ink);
  line-height: 1.55;
  border-top: 2px solid var(--rust);
  padding-top: 20px;
}
.story-pull::before {
  content: '"';
  display: block;
  font-family: var(--serif-en);
  font-size: 5rem;
  color: var(--rust);
  line-height: 0.7;
  margin-bottom: 12px;
}

/* ══ SERVICES ════════════════════════════════════════════════
   數字橫條，不是卡片 grid
   ════════════════════════════════════════════════════════════ */
.services {
  background: var(--dark);
  padding: 0;
}
.services-header {
  padding: 80px 40px 0;
  max-width: 1080px;
  margin: 0 auto;
}
.services-label {
  font-family: var(--sans-en);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-lt);
  margin-bottom: 16px;
}
.services h2 {
  font-family: var(--serif-tc);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #fff;
  margin-bottom: 56px;
}
/* 橫條列表 */
.services-list { border-top: 1px solid rgba(255,255,255,0.08); }
.service-row {
  display: grid;
  grid-template-columns: 100px 1fr 1fr 200px;
  align-items: center;
  gap: 32px;
  padding: 28px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  max-width: 1080px;
  margin: 0 auto;
  transition: background 0.2s;
  cursor: default;
}
.service-row:hover { background: rgba(255,255,255,0.03); }
.service-num-big {
  font-family: var(--serif-en);
  font-size: 3.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  user-select: none;
}
.service-title {
  font-family: var(--serif-tc);
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}
.service-desc {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}
.service-img-thumb {
  aspect-ratio: 3/2;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
  opacity: 0.65;
  transition: opacity 0.3s;
}
.service-row:hover .service-img-thumb { opacity: 0.9; }

/* ══ MENU ════════════════════════════════════════════════════
   黑板 vs 亮色雙欄
   ════════════════════════════════════════════════════════════ */
.menu { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }

.menu-dark {
  background: #1E2220;
  padding: 80px 56px;
  color: #fff;
}
.menu-dark .menu-label {
  font-family: var(--sans-en);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-lt);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.menu-dark .menu-label::after { content: ''; flex: 1; height: 1px; background: var(--green-lt); opacity: 0.3; }
.menu-dark h2 {
  font-family: var(--serif-tc);
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 36px;
}
.menu-item-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.menu-item-row .name { font-size: 1rem; color: rgba(255,255,255,0.85); }
.menu-item-row .sub { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-top: 3px; }
.menu-item-row .price {
  font-family: var(--sans-en);
  font-size: 0.92rem;
  color: var(--green-lt);
  white-space: nowrap;
  margin-left: 16px;
}
.menu-tag-chip {
  display: inline-block;
  font-size: 0.6rem;
  padding: 1px 6px;
  background: var(--green);
  border-radius: 2px;
  color: #fff;
  margin-left: 6px;
  vertical-align: middle;
}
.menu-note-dark {
  margin-top: 24px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
}
.menu-note-dark a { color: var(--green-lt); text-decoration: underline; }

.menu-light {
  background: var(--bg-off);
  padding: 80px 56px;
}
.menu-light .menu-label {
  font-family: var(--sans-en);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.menu-light .menu-label::after { content: ''; flex: 1; height: 1px; background: var(--rust); opacity: 0.25; }
.menu-light h2 {
  font-family: var(--serif-tc);
  font-size: 1.8rem;
  color: var(--ink);
  margin-bottom: 36px;
}
.menu-light .menu-item-row { border-color: rgba(0,0,0,0.07); }
.menu-light .menu-item-row .name { color: var(--ink); }
.menu-light .menu-item-row .sub { color: var(--ink-light); }
.menu-light .menu-item-row .price { color: var(--rust); }
.menu-note-light {
  margin-top: 24px;
  font-size: 0.86rem;
  color: var(--ink-mid);
  line-height: 1.75;
  padding: 16px;
  background: var(--bg);
  border-radius: 2px;
}

/* ══ MOSAIC ══════════════════════════════════════════════════
   不規則拼貼：大小照片混排
   ════════════════════════════════════════════════════════════ */
.mosaic {
  display: grid;
  grid-template-columns: 3fr 2fr 2fr;
  grid-template-rows: 300px 300px;
  gap: 4px;
  background: var(--ink);
}
.mosaic-cell {
  background-size: cover;
  background-position: center;
  background-color: var(--bg-off);
  position: relative;
  overflow: hidden;
}
.mosaic-cell-main {
  grid-row: span 2;
}
.mosaic-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 16px 16px;
  background: linear-gradient(transparent, rgba(18,14,10,0.7));
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
  font-family: var(--sans-tc);
}

/* ══ SIGNATURE ═══════════════════════════════════════════════
   單張大照片，文字疊底
   ════════════════════════════════════════════════════════════ */
.signature {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.signature-bg {
  position: absolute; inset: 0;
  background:
    url("https://auntie.tw/wp-content/uploads/2025/05/batch_3DSC_1166.jpg")
    center/cover no-repeat;
  background-color: var(--bg-off);
}
.signature-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(transparent 20%, rgba(18,14,10,0.88) 100%);
}
.signature-content {
  position: relative;
  z-index: 2;
  padding: 0 40px 56px;
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}
.signature-text {}
.sig-eyebrow {
  font-family: var(--sans-en);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-lt);
  margin-bottom: 10px;
}
.signature-text h2 {
  font-family: var(--serif-tc);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 12px;
}
.signature-text .en {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  display: block;
  margin-bottom: 20px;
}
.signature-desc {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
}
.signature-side {
  text-align: right;
}
.sig-price {
  font-family: var(--serif-en);
  font-size: 4.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  margin-bottom: 4px;
  display: block;
}
.sig-price-label {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.4);
}

/* ══ REVIEWS ═════════════════════════════════════════════════
   疊放大引言，不是 grid 卡
   ════════════════════════════════════════════════════════════ */
.reviews { padding: 96px 0; background: var(--cream); }
.reviews-header {
  margin-bottom: 64px;
}
.reviews-kicker {
  font-family: var(--sans-en);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.reviews h2 {
  font-family: var(--serif-tc);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  margin-bottom: 20px;
}
.reviews-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
}
.r-stat { }
.r-num {
  font-family: var(--serif-en);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--rust);
  display: block; line-height: 1;
}
.r-label {
  font-size: 0.78rem;
  color: var(--ink-light);
  letter-spacing: 0.07em;
}

/* 大引言疊放 */
.reviews-stack { display: flex; flex-direction: column; gap: 0; }
.review-quote {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  padding: 40px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  align-items: start;
}
.review-quote:first-child { border-top: 1px solid rgba(0,0,0,0.08); }
.q-num {
  font-family: var(--serif-en);
  font-size: 1rem;
  font-style: italic;
  color: var(--ink-light);
  padding-top: 4px;
}
.q-body {}
.q-tag {
  display: inline-block;
  font-size: 0.65rem;
  padding: 2px 8px;
  border: 1px solid var(--green);
  border-radius: 20px;
  color: var(--green);
  margin-bottom: 14px;
}
.q-text {
  font-family: var(--serif-tc);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 12px;
}
.q-author {
  font-family: var(--sans-en);
  font-size: 0.78rem;
  color: var(--ink-light);
  letter-spacing: 0.08em;
}

/* ══ VISIT ═══════════════════════════════════════════════════ */
.visit { padding: 96px 0; }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.visit-left h2 {
  font-family: var(--serif-tc);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 36px;
}
.info-row {
  margin-bottom: 24px;
}
.info-key {
  font-family: var(--sans-en);
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 4px;
}
.info-val {
  font-size: 1rem;
  color: var(--ink-mid);
  line-height: 1.7;
}
.info-val a { color: var(--green); text-decoration: underline; }
.hours-grid {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 6px 12px;
  font-size: 0.94rem;
  color: var(--ink-mid);
}
.hours-grid .day { font-weight: 500; color: var(--ink); }
.hours-grid .day.today { color: var(--green); }
.hours-grid .time { }
.hours-grid .closed { color: var(--ink-light); }
.visit-ctas { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 32px; }
.visit-right iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 3px;
}

/* ══ FOOTER ══════════════════════════════════════════════════ */
footer {
  background: var(--dark);
  padding: 48px 0 40px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand-name {
  font-family: var(--serif-en);
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(255,255,255,0.8);
}
.footer-brand-tc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin-top: 4px;
}
.footer-links {
  display: flex; gap: 24px; flex-wrap: wrap;
  align-items: center;
}
.footer-links a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.38);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--green-lt); }
.footer-bottom {
  text-align: center;
  font-size: 0.67rem;
  color: rgba(255,255,255,0.18);
}

/* ══ MOBILE STICKY CTA ═══════════════════════════════════════ */
.sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 60;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.sticky-cta-inner { display: grid; grid-template-columns: repeat(3,1fr); }
.sticky-btn {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 11px 0; gap: 3px;
  font-size: 0.74rem; color: rgba(255,255,255,0.7);
  font-family: var(--sans-tc);
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
}
.sticky-btn:last-child { border-right: none; }
.sticky-btn:hover { background: rgba(255,255,255,0.04); color: var(--green-lt); }
.sticky-icon { font-size: 1.05rem; }

/* ══ RESPONSIVE ══════════════════════════════════════════════ */
@media (max-width: 960px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .hero-title { font-size: clamp(2.8rem, 10vw, 5rem); }
  .story-body { grid-template-columns: 1fr; }
  .services-header { padding: 64px 24px 0; }
  .service-row { grid-template-columns: 60px 1fr; gap: 16px; padding: 20px 24px; }
  .service-desc, .service-img-thumb { display: none; }
  .menu { grid-template-columns: 1fr; }
  .menu-dark, .menu-light { padding: 56px 32px; }
  .mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 200px); }
  .mosaic-cell-main { grid-row: span 1; }
  .signature-content { grid-template-columns: 1fr; gap: 24px; padding: 0 24px 40px; }
  .signature-side { text-align: left; }
  .review-quote { grid-template-columns: 48px 1fr; }
  .visit-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { flex-direction: column; gap: 24px; }
  .sticky-cta { display: block; }
  body { padding-bottom: 60px; }
}
@media (max-width: 600px) {
  .container, .container-narrow { padding: 0 20px; }
  .hero-type { padding: 0 20px 40px; }
  .hero-meta { flex-direction: column; gap: 16px; }
  .hero-cta { margin-left: 0; }
  .story-img-full { aspect-ratio: 16/9; }
  .mosaic { grid-template-columns: 1fr; height: auto; }
  .mosaic-cell { height: 220px; }
  .mosaic-cell-main { height: 280px; }
}
