:root {
  --xuan: #F7F5F0;
  --snow: #FCFBF7;
  --paper: #FDFCF8;
  --silk: #E8E3D8;
  --ink: #1B2631;
  --indigo: #2C3E50;
  --cinnabar: #C3272B;
  --cinnabar-dark: #A32024;
  --stone: #5D6D7E;
  --stone-light: #A7B2BC;
  --flax: #8A6A45;
  --flax-dark: #6E5233;
  --serif: Georgia, Times New Roman, serif;
  --sans: Segoe UI, Helvetica Neue, Arial, sans-serif;
  --mono: Consolas, Menlo, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-size: 16px;
  font-family: var(--sans);
  background-color: #F7F5F0;
  color: #1B2631;
  line-height: 1.6;
}

h1, h2, h3, h4 { font-family: var(--serif); color: #1B2631; }

a { color: #C3272B; }

img { max-width: 100%; }

/* ============ BRUSH-RACK NAV ============ */

.brush-rack-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background-color: #FCFBF7;
  border-bottom: 1px solid #E8E3D8;
}

.rack-band { position: relative; height: 20px; }

.rack-ledge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: #1B2631;
}

.brush { position: absolute; top: 4px; width: 5px; height: 9px; border-radius: 0 0 1px 1px; }
.brush::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 6px solid #1B2631;
}
.brush.b1 { left: 9%; background-color: #2C3E50; }
.brush.b2 { left: 29%; background-color: #C3272B; }
.brush.b3 { left: 49%; background-color: #2C3E50; }
.brush.b4 { left: 69%; background-color: #C3272B; }
.brush.b5 { left: 89%; background-color: #2C3E50; }

.rack-row {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 24px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.rack-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }

.inkstone-glyph {
  display: inline-block;
  width: 28px;
  height: 17px;
  border: 2px solid #2C3E50;
  border-radius: 5px;
  position: relative;
  flex-shrink: 0;
}
.inkstone-glyph::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  border-radius: 50%;
  background-color: #2C3E50;
}
.inkstone-glyph.light { border-color: #FCFBF7; }
.inkstone-glyph.light::after { background-color: #FCFBF7; }

.brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #1B2631;
  line-height: 1.2;
}
.brand-sub {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #5D6D7E;
}

.rack-links { display: flex; align-items: center; flex-wrap: wrap; }
.rack-links a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: #5D6D7E;
  font-weight: 600;
  padding: 6px 0;
}
.rack-links a:hover { color: #2C3E50; }
.rack-links a + a::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 1px;
  background-color: #C3272B;
  margin: 0 13px;
  vertical-align: middle;
}

/* ============ INKSTONE-GRIND HERO ============ */

.inkstone-grind-hero {
  position: relative;
  background-color: #F7F5F0;
  text-align: center;
  padding-top: 62px;
}

.hero-watermark {
  position: absolute;
  top: 40px;
  right: 30px;
  width: 120px;
  height: 120px;
  border: 10px solid #C3272B;
  border-radius: 18px;
  visibility: hidden;
}

.hero-upper { max-width: 860px; margin: 0 auto; padding: 0 24px; }

.hero-chip {
  display: inline-block;
  background-color: #C3272B;
  color: #FCFBF7;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 3px;
  margin: 0;
}

.hero-title {
  font-size: 54px;
  line-height: 1.14;
  margin: 26px auto 18px;
  color: #1B2631;
  font-weight: 800;
}
.hero-title .accent { color: #C3272B; }

.hero-sub {
  max-width: 700px;
  margin: 0 auto;
  color: #5D6D7E;
  font-size: 18px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 46px;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
}
.btn-primary {
  background-color: #C3272B;
  border: 2px solid #C3272B;
  color: #FCFBF7;
}
.btn-primary:hover { background-color: #A32024; border-color: #A32024; }
.btn-ghost {
  background-color: transparent;
  border: 2px solid #2C3E50;
  color: #2C3E50;
}
.btn-ghost:hover { background-color: #2C3E50; color: #FCFBF7; }

.hero-desk {
  background-color: #FCFBF7;
  border-top: 1px solid #2C3E50;
  border-bottom: 1px solid #2C3E50;
}
.desk-inner {
  max-width: 1180px;
  margin: 0 auto;
  height: 150px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  overflow: hidden;
}

.desk-inkstone { position: relative; width: 172px; height: 112px; flex-shrink: 0; }
.inkstone-slab {
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 150px;
  height: 84px;
  background-color: #2C3E50;
  border-radius: 16px;
}
.ink-pool {
  position: absolute;
  left: 26px;
  top: 22px;
  width: 84px;
  height: 38px;
  background-color: #1B2631;
  border-radius: 50%;
}
.desk-brush { position: absolute; right: 8px; top: 2px; transform: rotate(38deg); }
.db-handle { display: block; width: 8px; height: 66px; background-color: #8A6A45; border-radius: 4px; }
.db-tip {
  display: block;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 14px solid #1B2631;
}

.desk-scroll { display: flex; align-items: center; flex: 1; max-width: 470px; min-width: 0; }
.roller-rod { position: relative; width: 10px; height: 86px; background-color: #8A6A45; border-radius: 5px; flex-shrink: 0; }
.roller-rod::before, .roller-rod::after {
  content: "";
  position: absolute;
  left: -4px;
  width: 18px;
  height: 9px;
  background-color: #6E5233;
  border-radius: 5px;
}
.roller-rod::before { top: -5px; }
.roller-rod::after { bottom: -5px; }
.scroll-paper {
  position: relative;
  flex: 1;
  height: 74px;
  background-color: #FDFCF8;
  border-top: 1px solid #E8E3D8;
  border-bottom: 1px solid #E8E3D8;
  overflow: hidden;
}
.ink-stroke {
  position: absolute;
  left: 10%;
  bottom: 14px;
  width: 68%;
  height: 28px;
  border-bottom: 9px solid #2C3E50;
  border-radius: 0 0 90% 90% / 0 0 100% 100%;
}
.ink-stroke::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-top: 9px solid transparent;
  border-bottom: 9px solid #2C3E50;
}

.desk-seal { position: relative; width: 192px; height: 112px; flex-shrink: 0; }
.chop-stamp {
  position: absolute;
  right: 16px;
  bottom: 32px;
  width: 16px;
  height: 56px;
  background-color: #1B2631;
  border-radius: 3px;
}
.chop-stamp::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 18px;
  background-color: #C3272B;
  border-radius: 3px 3px 0 0;
}
.seal-box {
  position: absolute;
  left: 20px;
  bottom: 28px;
  width: 76px;
  height: 54px;
  background-color: #FCFBF7;
  border: 3px solid #C3272B;
  border-radius: 8px;
}
.paste-mound {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 9px;
  width: 48px;
  height: 22px;
  background-color: #C3272B;
  border-radius: 22px 22px 6px 6px;
}
.paper-weight {
  position: absolute;
  left: 10px;
  bottom: 8px;
  width: 172px;
  height: 9px;
  background-color: #5D6D7E;
  border-radius: 4px;
}

/* ============ SECTION HEADS ============ */

.section-head { max-width: 780px; margin: 0 auto; text-align: center; padding: 0 24px; }
.section-kicker {
  color: #C3272B;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.section-title { font-size: 36px; margin: 0 0 16px; color: #1B2631; }
.section-intro { color: #5D6D7E; margin: 0; }

/* ============ SEAL-PASTE ROWS ============ */

.seal-paste-rows { background-color: #F7F5F0; padding: 72px 24px 78px; }
.row-list { max-width: 1180px; margin: 44px auto 0; }

.seal-row {
  display: flex;
  align-items: stretch;
  background-color: #FCFBF7;
  border: 1px solid #2C3E50;
  margin-bottom: 11px;
  min-height: 130px;
}

.seal-col {
  width: 96px;
  flex-shrink: 0;
  background-color: #E8E3D8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.seal-stamp { position: relative; width: 54px; height: 54px; background-color: #C3272B; border-radius: 9px; }
.seal-stamp.pattern-a::before {
  content: "";
  position: absolute;
  inset: 12px 13px;
  border: 3px solid #FCFBF7;
}
.seal-stamp.pattern-a::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  top: 50%;
  margin-top: -1.5px;
  height: 3px;
  background-color: #FCFBF7;
}
.seal-stamp.pattern-b::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 16px;
  width: 3px;
  background-color: #FCFBF7;
}
.seal-stamp.pattern-b::after {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  right: 16px;
  width: 3px;
  background-color: #FCFBF7;
}

.seal-body { flex: 1; padding: 24px 28px; }
.seal-body h3 { margin: 0 0 8px; font-size: 21px; color: #1B2631; }
.seal-body p { margin: 0; color: #5D6D7E; line-height: 1.62; }

.charm-col {
  width: 64px;
  flex-shrink: 0;
  border-left: 1px solid #E8E3D8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 16px 0;
}
.charm-hole {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 2px solid #5D6D7E;
  background-color: #F7F5F0;
}
.charm-tassel { width: 3px; height: 24px; background-color: #C3272B; }
.charm-code {
  font-family: var(--mono);
  writing-mode: vertical-rl;
  font-size: 10.5px;
  letter-spacing: 2px;
  color: #5D6D7E;
  font-weight: 700;
}

/* ============ METRIC BAND ============ */

.metric-band { display: flex; flex-wrap: wrap; background-color: #2C3E50; }
.metric {
  flex: 1 1 220px;
  text-align: center;
  padding: 46px 18px 42px;
  border-left: 1px solid #C3272B;
}
.metric:first-child { border-left: none; }
.metric-num {
  display: block;
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 800;
  color: #FCFBF7;
  line-height: 1.1;
}
.metric-label {
  display: block;
  margin-top: 8px;
  color: #C3272B;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ============ STATEMENT BAND ============ */

.statement-band { background-color: #E8E3D8; padding: 66px 24px; }
.statement-inner {
  max-width: 900px;
  margin: 0 auto;
  border-left: 4px solid #C3272B;
  padding-left: 30px;
}
.statement-text {
  margin: 0;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.52;
  color: #1B2631;
}
.statement-attrib {
  margin: 18px 0 0;
  color: #5D6D7E;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ============ CTA BAND ============ */

.cta-band { background-color: #F7F5F0; padding: 76px 24px 88px; text-align: center; }
.cta-title { color: #C3272B; font-size: 36px; margin: 0 0 14px; }
.cta-sub { color: #5D6D7E; max-width: 640px; margin: 0 auto 30px; }

/* ============ PAGE HERO (SECONDARY) ============ */

.page-hero { background-color: #E8E3D8; padding: 58px 24px 54px; text-align: center; }
.page-hero .hero-chip { margin-bottom: 22px; }
.page-hero h1 { font-size: 42px; margin: 0 0 16px; color: #1B2631; }
.page-hero .page-intro { max-width: 760px; margin: 0 auto; color: #5D6D7E; font-size: 17px; }
.page-hero .accent { color: #C3272B; }

/* ============ SERVICES PAGE ============ */

.service-band { background-color: #FCFBF7; padding: 56px 24px; }
.service-band.alt { background-color: #E8E3D8; }
.service-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.service-side { width: 190px; flex-shrink: 0; text-align: left; }
.service-num {
  display: block;
  font-family: var(--serif);
  font-size: 58px;
  font-weight: 800;
  color: #C3272B;
  line-height: 1;
}
.service-side .mini-seal {
  display: block;
  margin-top: 16px;
  position: relative;
  width: 42px;
  height: 42px;
  background-color: #C3272B;
  border-radius: 7px;
}
.service-side .mini-seal::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 2px solid #FCFBF7;
}
.service-side .mini-seal.alt2::before { inset: 9px 6px; border-left: none; border-right: none; }
.service-main { flex: 1; }
.service-main h2 { font-size: 29px; margin: 0 0 14px; color: #1B2631; }
.service-main p { color: #5D6D7E; margin: 0 0 14px; line-height: 1.66; }
.service-main ul { margin: 6px 0 0; padding-left: 22px; }
.service-main li { color: #2C3E50; margin-bottom: 7px; font-weight: 600; }

.process-band { background-color: #2C3E50; padding: 66px 24px 72px; }
.process-head { max-width: 780px; margin: 0 auto 40px; text-align: center; }
.process-head .section-kicker { color: #C3272B; }
.process-head h2 { color: #FCFBF7; font-size: 33px; margin: 0 0 12px; }
.process-head p { color: #A7B2BC; margin: 0; }
.process-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.p-step { border-top: 3px solid #C3272B; padding-top: 16px; }
.p-num {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 800;
  color: #FCFBF7;
}
.p-title {
  display: block;
  margin: 6px 0 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #FCFBF7;
}
.p-step p { color: #A7B2BC; font-size: 14.5px; margin: 0; line-height: 1.6; }

/* ============ CONTACT PAGE ============ */

.contact-section { background-color: #F7F5F0; padding: 66px 24px; }
.contact-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 34px;
  align-items: start;
}
.contact-card, .form-card {
  background-color: #FCFBF7;
  border: 1px solid #2C3E50;
  padding: 32px 30px;
}
.contact-card h2, .form-card h2 { margin: 0 0 8px; font-size: 24px; }
.contact-card .card-note { color: #5D6D7E; margin: 0 0 22px; }
.detail-item { margin-bottom: 20px; }
.detail-item .detail-label {
  display: block;
  color: #C3272B;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.detail-item p, .detail-item a { margin: 0; color: #1B2631; font-size: 15.5px; line-height: 1.55; text-decoration: none; }
.detail-item a:hover { color: #C3272B; }

.form-row { display: flex; gap: 16px; }
.form-row .field { flex: 1; }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #2C3E50;
  margin-bottom: 6px;
}
.field input, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #2C3E50;
  border-radius: 3px;
  background-color: #FDFCF8;
  color: #1B2631;
  font-size: 16px;
  font-family: var(--sans);
}
.field input:focus, .field textarea:focus {
  outline: 2px solid #C3272B;
  outline-offset: 1px;
}
.field textarea { min-height: 130px; resize: vertical; }
.form-status { color: #2C3E50; font-size: 14.5px; margin: 14px 0 0; font-weight: 600; }
.form-note { color: #5D6D7E; font-size: 13.5px; margin: 10px 0 0; }

.faq-section { background-color: #FCFBF7; padding: 66px 24px 74px; }
.faq-list { max-width: 820px; margin: 34px auto 0; }
.faq-item { border: 1px solid #2C3E50; background-color: #F7F5F0; margin-bottom: 12px; }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 18px 20px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: #1B2631;
}
.faq-icon { position: relative; width: 14px; height: 14px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background-color: #C3272B;
}
.faq-icon::before { left: 0; right: 0; top: 6px; height: 3px; }
.faq-icon::after { top: 0; bottom: 0; left: 6px; width: 3px; }
.faq-item.open .faq-icon::after { background-color: transparent; }
.faq-a { display: none; padding: 0 20px 20px; color: #5D6D7E; line-height: 1.65; margin: 0; }
.faq-item.open .faq-a { display: block; }

/* ============ SCROLL-ROD FOOTER ============ */

.scroll-rod-footer { background-color: #1B2631; color: #FCFBF7; }

.rod-strip { position: relative; height: 16px; }
.rod-bar {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 4px;
  height: 6px;
  background-color: #8A6A45;
  border-radius: 3px;
}
.rod-bar::before, .rod-bar::after {
  content: "";
  position: absolute;
  top: -1px;
  width: 9px;
  height: 9px;
  background-color: #6E5233;
  border-radius: 50%;
}
.rod-bar::before { left: -7px; }
.rod-bar::after { right: -7px; }
.rod-cord {
  position: absolute;
  top: 10px;
  width: 12px;
  height: 11px;
  border: 2px solid #C3272B;
  border-top: none;
  border-radius: 0 0 12px 12px;
}
.cord-left { left: 44px; }
.cord-right { right: 44px; }

.footer-zones {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 38px 24px 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 36px 60px;
  justify-content: space-between;
}
.footer-zone { min-width: 220px; }
.footer-wordmark {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #FCFBF7;
  margin: 12px 0 8px;
}
.footer-desc { color: #A7B2BC; font-size: 14px; line-height: 1.6; margin: 0; max-width: 300px; }
.footer-links { display: flex; gap: 54px; }
.link-head {
  color: #C3272B;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.link-group { display: flex; flex-direction: column; gap: 9px; }
.link-group a {
  color: #FCFBF7;
  text-decoration: none;
  font-size: 14px;
}
.link-group a:hover { color: #C3272B; }
.footer-contact .link-group { display: flex; flex-direction: column; gap: 9px; }
.footer-contact a { color: #FCFBF7; text-decoration: none; font-size: 14px; }
.footer-contact a:hover { color: #C3272B; }
.footer-addr { color: #A7B2BC; font-size: 13.5px; line-height: 1.6; margin: 4px 0 0; max-width: 320px; }

.footer-legal {
  position: relative;
  z-index: 1;
  border-top: 1px solid #2C3E50;
  padding: 20px 24px 26px;
  text-align: center;
}
.footer-legal p { color: #A7B2BC; font-size: 13px; margin: 0; }

/* ============ REVEAL (transform only, safe without JS) ============ */

.reveal { transform: translateY(18px); transition: transform 0.55s ease; }
.reveal.is-visible { transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============ RESPONSIVE ============ */

@media (max-width: 1020px) {
  .hero-title { font-size: 46px; }
  .service-inner { flex-direction: column; gap: 18px; }
  .service-side { width: auto; display: flex; align-items: center; gap: 18px; }
  .service-num { font-size: 44px; }
  .service-side .mini-seal { margin-top: 0; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 38px; }
  .page-hero h1 { font-size: 33px; }
  .section-title { font-size: 29px; }
  .cta-title { font-size: 29px; }
  .desk-inner { height: 132px; gap: 18px; }
  .desk-inkstone, .desk-scroll, .desk-seal { transform: scale(0.82); transform-origin: center bottom; }
}

@media (max-width: 700px) {
  .seal-col { width: 64px; }
  .seal-stamp { width: 42px; height: 42px; }
  .seal-stamp.pattern-a::before { inset: 9px 10px; }
  .seal-stamp.pattern-a::after { left: 10px; right: 10px; }
  .seal-stamp.pattern-b::before { left: 12px; }
  .seal-stamp.pattern-b::after { right: 12px; }
  .charm-col { display: none; }
  .seal-body { padding: 18px 18px; }
  .form-row { flex-direction: column; gap: 0; }
  .footer-links { gap: 34px; }
}

@media (max-width: 560px) {
  .rack-row { justify-content: center; text-align: center; }
  .rack-brand { flex-direction: column; gap: 8px; }
  .brand-text { align-items: center; }
  .rack-links { justify-content: center; }
  .rack-links a + a::before { margin: 0 8px; }
  .hero-title { font-size: 31px; }
  .hero-sub { font-size: 16px; }
  .hero-desk { display: none; }
  .statement-inner { padding-left: 18px; }
  .statement-text { font-size: 20px; }
  .metric { flex: 1 1 100%; border-left: none; border-top: 1px solid #C3272B; }
  .metric:first-child { border-top: none; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-zones { flex-direction: column; gap: 28px; }
  .btn { width: 100%; text-align: center; }
  .hero-ctas { flex-direction: column; align-items: center; }
}
