@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=Rubik:wght@300;400;500;600;700&display=swap');

/* ===== CSS 变量 ===== */
:root {
  --parchment: #f5e6c8;
  --amber: #d4a574;
  --ink: #262117;
  --ink-80: rgba(38,33,23,0.8);
  --ink-40: rgba(38,33,23,0.4);
  --ink-10: rgba(38,33,23,0.1);
  --amber-light: #e8c49a;
  --amber-dark: #b8854e;
  --warm-white: #fdf6e8;
  --sepia-mid: #8b6f47;
  --font-head: 'Outfit', 'Rubik', system-ui, sans-serif;
  --font-body: 'Rubik', 'Outfit', system-ui, sans-serif;
  --radius-card: 18px;
  --shadow-card: 0 2px 12px rgba(38,33,23,0.12), 0 1px 3px rgba(38,33,23,0.08);
  --max-w: 1100px;
  --nav-h: 48px;
}

/* ===== 重置 ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--parchment);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--amber-dark); }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: 1rem; }

/* ===== SVG 噪点滤镜（胶片颗粒） ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* ===== 胶片颗粒覆盖层 ===== */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)' opacity='0.08'/%3E%3C/svg%3E");
  opacity: 0.06;
  mix-blend-mode: multiply;
}

/* ===== 光晕漏光 ===== */
.light-leak {
  position: fixed;
  top: -60px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,165,116,0.22) 0%, transparent 70%);
  pointer-events: none;
  z-index: 998;
  animation: leakPulse 8s ease-in-out infinite;
}
@keyframes leakPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

/* ===== 公告条 ===== */
.announce-bar {
  background: var(--ink);
  color: var(--amber);
  text-align: center;
  font-size: 0.8rem;
  font-family: var(--font-head);
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 6px 16px;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--parchment);
  border-bottom: 2px solid var(--amber);
  filter: sepia(0.08) contrast(1.02);
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  border-bottom: 1px solid var(--amber-light);
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.brand-link:hover { color: var(--amber-dark); }

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  filter: sepia(0.3);
}

.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.cta-header {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: var(--ink);
  color: var(--parchment);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s, transform 0.15s;
  min-height: 40px;
}
.cta-header:hover { background: var(--amber-dark); color: var(--warm-white); transform: translateY(-1px); }

.main-nav {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.main-nav > p {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: center;
  min-height: var(--nav-h);
}
.main-nav > p > a {
  display: inline-flex;
  align-items: center;
  padding: 12px 14px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--ink);
  text-decoration: none;
  border-right: 1px solid var(--amber-light);
  transition: background 0.18s, color 0.18s;
  min-height: 40px;
  white-space: nowrap;
}
.main-nav > p > a:first-child { border-left: 1px solid var(--amber-light); }
.main-nav > p > a:hover { background: var(--ink); color: var(--amber); }
.main-nav > p > a[href="/"]:first-child { font-weight: 700; }

/* ===== 布局包裹 ===== */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== 通用 article+aside 布局 ===== */
.page-aside {
  width: 220px;
  flex-shrink: 0;
  position: sticky;
  top: calc(var(--nav-h) + 80px);
  align-self: flex-start;
}

.page-aside h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sepia-mid);
  margin-bottom: 2px;
}
.page-aside p.subtitle {
  font-size: 0.78rem;
  color: var(--ink-40);
  margin-bottom: 14px;
}

.aside-link {
  display: block;
  padding: 7px 10px;
  font-size: 0.875rem;
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-left: 2px solid var(--amber-light);
  margin-bottom: 4px;
  transition: border-color 0.18s, color 0.18s, background 0.18s;
}
.aside-link:hover {
  border-left-color: var(--amber);
  color: var(--amber-dark);
  background: rgba(212,165,116,0.08);
}

.aside-cta {
  margin: 16px 0;
  padding: 12px;
  background: var(--ink);
  border-radius: var(--radius-card);
}
.aside-cta p { color: var(--amber-light); font-size: 0.8rem; margin-bottom: 8px; }

.aside-quicklinks { margin-top: 12px; }

.aside-stat {
  display: flex;
  flex-direction: column;
  padding: 10px 10px;
  margin-bottom: 6px;
  background: rgba(212,165,116,0.15);
  border-radius: 8px;
}
.aside-stat strong {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--ink);
}
.aside-stat span { font-size: 0.78rem; color: var(--sepia-mid); }

/* article 主体 */
article {
  display: flex;
  gap: 40px;
  padding: 48px 0;
}

.article-body {
  flex: 1;
  min-width: 0;
}

/* ===== eyebrow ===== */
.eyebrow-label {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-dark);
  border: 1px solid var(--amber);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 14px;
  background: rgba(212,165,116,0.12);
}

/* ===== 标题系统 ===== */
h1 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
h3 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 8px;
}
p.subtitle {
  font-size: 1rem;
  color: var(--sepia-mid);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ===== 按钮 ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: var(--ink);
  color: var(--parchment);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  min-height: 44px;
}
.btn-primary:hover {
  background: var(--amber-dark);
  color: var(--warm-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(38,33,23,0.2);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid var(--amber);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  min-height: 44px;
}
.btn-secondary:hover {
  background: var(--amber);
  color: var(--ink);
  transform: translateY(-2px);
}
.btn-text {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--amber-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--amber-light);
  padding-bottom: 1px;
  transition: color 0.18s, border-color 0.18s;
}
.btn-text:hover { color: var(--ink); border-color: var(--ink); }

/* ===== 卡片 ===== */
.card {
  background: var(--warm-white);
  border-radius: var(--radius-card);
  padding: 24px 22px 20px;
  border: 1px solid var(--amber-light);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform 0.22s, box-shadow 0.22s;
  border-bottom: 3px solid var(--amber);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(38,33,23,0.15);
}
.card-tape {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 14px;
  background: rgba(212,165,116,0.55);
  border-radius: 0 0 6px 6px;
}
.card h3 { margin-top: 8px; }
.card h3 a { text-decoration: none; color: var(--ink); }
.card h3 a:hover { color: var(--amber-dark); }
.card-date { font-size: 0.8rem; color: var(--ink-40); margin-top: 8px; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

/* ===== Hero 区域（首页） ===== */
.hero-section { padding: 48px 0 32px; }
.hero-article {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  min-height: 45vh;
}
.hero-content {
  flex: 1;
  min-width: 0;
  padding-top: 16px;
}
.hero-lead {
  font-size: 1.05rem;
  color: var(--sepia-mid);
  margin-bottom: 28px;
  max-width: 480px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-collage {
  width: 380px;
  flex-shrink: 0;
  position: relative;
  height: 320px;
}
.hero-img {
  border-radius: 4px;
  filter: sepia(0.25) contrast(1.05) saturate(0.85);
  object-fit: cover;
}
.hero-img-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 240px;
  height: 200px;
  border: 8px solid var(--warm-white);
  box-shadow: 4px 4px 18px rgba(38,33,23,0.18);
  z-index: 2;
  transform: rotate(-2deg);
  animation: polShake 6s ease-in-out infinite;
}
.hero-img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 210px;
  height: 185px;
  border: 8px solid var(--warm-white);
  box-shadow: 4px 4px 18px rgba(38,33,23,0.14);
  z-index: 1;
  transform: rotate(2.5deg);
}
.hero-img-placeholder {
  border-radius: 4px;
  background: linear-gradient(135deg, var(--amber-light) 0%, var(--parchment) 100%);
  border: 8px solid var(--warm-white);
  box-shadow: 4px 4px 18px rgba(38,33,23,0.18);
}
.hero-img-placeholder.hero-img-1 {
  position: absolute; top:0; left:0; width:240px; height:200px;
  transform: rotate(-2deg); z-index: 2;
}
.hero-img-placeholder.hero-img-2 {
  position: absolute; bottom:0; right:0; width:210px; height:185px;
  transform: rotate(2.5deg); z-index: 1;
}
@keyframes polShake {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(-1.2deg) translateY(-3px); }
}
.polaroid-stamp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
  z-index: 10;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: #c0392b;
  border: 2.5px solid #c0392b;
  padding: 4px 12px;
  border-radius: 3px;
  background: rgba(245,230,200,0.72);
  letter-spacing: 0.06em;
  pointer-events: none;
}

/* ===== page-meta ===== */
.page-meta {
  font-size: 0.82rem;
  color: var(--ink-40);
  margin-bottom: 20px;
}
.page-meta time { font-variant-numeric: tabular-nums; }

/* ===== 正文区内容样式 ===== */
.article-body h2 { margin-top: 2rem; }
.article-body h3 { margin-top: 1.5rem; }
.article-body p { margin-bottom: 1rem; }
.article-body ul, .article-body ol {
  padding-left: 1.4em;
  margin-bottom: 1rem;
  list-style: disc;
}
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: 0.4em; }
.article-body blockquote {
  border-left: 3px solid var(--amber);
  padding-left: 16px;
  color: var(--sepia-mid);
  font-style: italic;
  margin: 1.2rem 0;
}
.article-body table { width: 100%; border-collapse: collapse; margin-bottom: 1rem; }
.article-body th, .article-body td {
  border: 1px solid var(--amber-light);
  padding: 8px 12px;
  font-size: 0.9rem;
}
.article-body th { background: var(--ink); color: var(--parchment); font-family: var(--font-head); }

/* ===== 各页面 section 特定 ===== */
.content-section { padding: 0; }
.content-section > article { padding: 48px 0; }

.page-intro-section { padding: 40px 0 0; }
.page-intro-article {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  padding: 40px 0 32px;
}
.page-intro-text { flex: 1; min-width: 0; }
.page-intro-text .btn-primary { margin-top: 20px; }
.page-intro-media {
  width: 300px;
  flex-shrink: 0;
}
.service-hero-img {
  width: 100%;
  border-radius: var(--radius-card);
  border: 6px solid var(--warm-white);
  box-shadow: var(--shadow-card);
  filter: sepia(0.2) contrast(1.04) saturate(0.88);
}

/* cases */
.page-banner-section { padding: 32px 0 0; }
.page-banner-article {
  display: flex;
  gap: 40px;
  padding: 32px 0 24px;
}

.cases-list-section { padding: 32px 0 48px; }
.cases-list-section h2 { margin-bottom: 8px; }
.cases-ol { margin-top: 24px; counter-reset: casect; }
.case-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  border-left: 3px solid var(--amber-light);
  margin-bottom: 12px;
  background: var(--warm-white);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.case-item:hover {
  border-left-color: var(--amber);
  box-shadow: var(--shadow-card);
}
.case-item a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  text-decoration: none;
}
.case-item a:hover { color: var(--amber-dark); }
.case-item small {
  font-size: 0.82rem;
  color: var(--sepia-mid);
  line-height: 1.5;
}

/* faq */
.faq-header-section { padding: 32px 0 0; }
.faq-header-article { display: flex; gap: 40px; padding: 32px 0 48px; }
.faq-body h2 { margin-top: 2rem; border-top: 1px solid var(--amber-light); padding-top: 1.4rem; }

/* about */
.about-intro-section { padding: 32px 0 0; }
.about-intro-article { display: flex; gap: 40px; padding: 32px 0 32px; }
.about-media { margin: 20px 0; }
.about-img {
  width: 100%;
  border-radius: var(--radius-card);
  border: 6px solid var(--warm-white);
  box-shadow: var(--shadow-card);
  filter: sepia(0.25) contrast(1.03) saturate(0.82);
}

.about-values-section { padding: 32px 0 48px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.value-item p { font-size: 0.9rem; color: var(--sepia-mid); margin-top: 4px; }

/* contact */
.contact-section { padding: 32px 0 0; }
.contact-article { display: flex; gap: 40px; padding: 32px 0 48px; }
.contact-channel {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px;
  margin-bottom: 8px;
  background: rgba(212,165,116,0.1);
  border-radius: 8px;
}
.contact-channel strong { font-size: 0.85rem; color: var(--ink); font-family: var(--font-head); }
.contact-channel span { font-size: 0.78rem; color: var(--sepia-mid); }

.contact-form-block { margin-top: 36px; }
.contact-form { margin-top: 20px; }
.form-row { display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; }
.form-row label {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--ink);
}
.form-row input,
.form-row select,
.form-row textarea {
  padding: 10px 14px;
  border: 1.5px solid var(--amber-light);
  border-radius: 8px;
  background: var(--warm-white);
  color: var(--ink);
  font-size: 0.9rem;
  transition: border-color 0.18s;
  line-height: 1.5;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(212,165,116,0.2);
}
.form-row textarea { resize: vertical; min-height: 100px; }

/* privacy */
.privacy-section { padding: 32px 0 0; }
.privacy-article { display: flex; gap: 40px; padding: 32px 0 48px; }

/* default */
.default-section { padding: 32px 0 0; }
.default-article { display: flex; gap: 40px; padding: 32px 0 48px; }

/* ===== CTA Band ===== */
.cta-band { padding: 48px 0; }
.cta-band-inner {
  background: var(--ink);
  border-radius: var(--radius-card);
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(212,165,116,0.12) 100%);
  pointer-events: none;
}
.cta-band-inner h2 { color: var(--parchment); margin-bottom: 8px; }
.cta-band-inner p.subtitle { color: var(--amber-light); margin-bottom: 24px; }
.cta-band-inner .btn-primary {
  background: var(--amber);
  color: var(--ink);
}
.cta-band-inner .btn-primary:hover {
  background: var(--amber-light);
  color: var(--ink);
}

/* ===== 服务/首页 div 标题区 ===== */
.services-section { padding: 32px 0 48px; }
.services-section h2 { margin-bottom: 6px; }

.page-content-block > article { padding-top: 24px; }

/* ===== Footer ===== */
.site-footer {
  background: var(--ink);
  color: var(--parchment);
  padding: 28px 24px 20px;
  margin-top: 0;
  text-align: center;
  border-top: 3px solid var(--amber);
}
.site-footer p {
  font-family: var(--font-head);
  font-size: 0.875rem;
  margin-bottom: 8px;
  line-height: 2;
  flex-wrap: wrap;
}
.site-footer a {
  color: var(--amber-light);
  text-decoration: none;
  margin: 0 2px;
  transition: color 0.18s;
}
.site-footer a:hover { color: var(--amber); }
.site-footer strong { color: var(--parchment); }
.site-footer small {
  display: block;
  font-size: 0.78rem;
  color: rgba(245,230,200,0.5);
}

/* ===== Scroll Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===== 移动端 ===== */
@media (max-width: 768px) {
  :root { --max-w: 100%; }

  .brand-row { padding: 8px 16px; }
  .brand-name { font-size: 1rem; }

  .main-nav { padding: 0; overflow-x: auto; }
  .main-nav > p {
    flex-wrap: nowrap;
    width: max-content;
    min-height: auto;
  }
  .main-nav > p > a {
    padding: 11px 12px;
    font-size: 0.8rem;
    min-height: 44px;
  }

  .wrap { padding: 0 16px; }

  /* hero */
  .hero-article { flex-direction: column; gap: 24px; min-height: auto; }
  .hero-collage { width: 100%; height: 200px; }
  .hero-img-1, .hero-img-placeholder.hero-img-1 { width: 55%; height: 160px; }
  .hero-img-2, .hero-img-placeholder.hero-img-2 { width: 48%; height: 140px; }

  /* articles */
  article,
  .hero-article,
  .page-intro-article,
  .page-banner-article,
  .faq-header-article,
  .about-intro-article,
  .contact-article,
  .privacy-article,
  .default-article { flex-direction: column; gap: 24px; padding: 24px 0; }

  .page-aside {
    width: 100%;
    position: static;
    border-top: 1px solid var(--amber-light);
    padding-top: 16px;
    order: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
  }
  .page-aside h2, .page-aside p.subtitle { width: 100%; flex-shrink: 0; }
  .aside-link { min-height: 40px; display: inline-flex; align-items: center; }
  .aside-cta, .aside-stat, .aside-quicklinks, .contact-channel { width: 100%; }

  .page-intro-media { width: 100%; }

  .cards-grid { grid-template-columns: 1fr 1fr; gap: 14px; }

  .cta-band-inner { padding: 32px 20px; }

  .values-grid { grid-template-columns: 1fr; }

  .hero-actions { gap: 10px; }
  .btn-primary, .btn-secondary { font-size: 0.9rem; padding: 11px 20px; }

  .article-body { order: 0; }
}

@media (max-width: 480px) {
  .cards-grid { grid-template-columns: 1fr; }
  .hero-collage { display: none; }
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.15rem; }
  .cta-band-inner { padding: 24px 16px; }
}

/* ===== prefers-reduced-motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
