/* ============================================================
   Collision Strategy — styles.css
   Vintage badge identity per brand/brand-guide.html, refined:
     Rosso Corsa #D40000 · Giallo #FFF200 · Ink #1A1A18 · Shop Paper #F2E9D8
     Alfa Slab One (names/headlines, never letterspaced)
     Staatliches (labels/services/signage, always caps, wide tracking)
     Special Elite (job numbers/fine print only, small sizes)
     Inter (body copy — clean, modern reading text)
   Red carries the brand. Yellow is a rule, a bar, or a small field —
   never a large area. Paper is the default ground; ink is for night.
   Surfaces are soft: rounded corners, hairline borders, diffuse shadows.
   ============================================================ */

:root {
  --red: #D40000;
  --red-dark: #a30000;
  --yellow: #FFF200;
  --ink: #1A1A18;
  --paper: #F2E9D8;
  --paper-light: #FBF6EC;
  --paper-line: #DDD3BD;
  --paper-line-soft: #E7DECA;
  --ink-soft: #4A4438;
  --ink-mute: #6B6355;
  --paper-mute: #8A8272;
  --night-text: #CFC6B2;
  --night-mute: #A49A86;
  --night-line: rgba(255, 255, 255, 0.09);

  --font-slab: 'Alfa Slab One', 'Rockwell', serif;
  --font-label: 'Staatliches', 'Oswald', sans-serif;
  --font-type: 'Special Elite', 'Courier New', monospace;
  --font-body: 'Inter', -apple-system, 'Segoe UI', system-ui, sans-serif;

  --container: 1160px;
  --radius-oval: 50% / 40%;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 3px rgba(26, 26, 24, 0.06), 0 1px 2px rgba(26, 26, 24, 0.04);
  --shadow-md: 0 6px 24px rgba(26, 26, 24, 0.08), 0 2px 6px rgba(26, 26, 24, 0.05);
  --shadow-lg: 0 18px 48px rgba(26, 26, 24, 0.16), 0 4px 12px rgba(26, 26, 24, 0.08);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--red-dark); }

h1, h2, h3 {
  font-family: var(--font-slab);
  font-weight: 400;
  letter-spacing: 0;      /* slab is never letterspaced */
  line-height: 1.06;
  margin: 0;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 820px; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--yellow); color: var(--ink);
  font-family: var(--font-label); letter-spacing: 0.12em; text-transform: uppercase;
  padding: 10px 18px; z-index: 100;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Racing bar (signature rule) ---------- */
.racing-bar { display: flex; height: 6px; }
.racing-bar span { display: block; }
.rb-red { flex: 1; background: var(--red); }
.rb-yellow { width: 110px; background: var(--yellow); }
.rb-paper { width: 64px; background: var(--paper); }
.rb-ink { width: 64px; background: var(--ink); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  padding: 16px 28px 14px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
              box-shadow 0.2s ease, transform 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 2px 12px rgba(212, 0, 0, 0.25); }
.btn-primary:hover { background: var(--red-dark); color: #fff; box-shadow: 0 6px 20px rgba(212, 0, 0, 0.3); }
.btn-secondary { background: transparent; color: var(--paper); border-color: rgba(242, 233, 216, 0.45); }
.btn-secondary:hover { border-color: var(--paper); color: #fff; background: rgba(255, 255, 255, 0.06); }
.btn-light { background: var(--paper); color: var(--red); }
.btn-light:hover { background: #fff; color: var(--red-dark); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18); }
.btn-sm { font-size: 15px; padding: 12px 20px 10px; }
.btn-block { width: 100%; }

/* ---------- Header (night ground) ---------- */
.site-header {
  background: rgba(26, 26, 24, 0.88);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  backdrop-filter: saturate(180%) blur(16px);
  position: sticky; top: 0; z-index: 50;
  border-bottom: 2px solid var(--red);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding-top: 14px; padding-bottom: 14px;
}

/* horizontal lockup: mini oval + wordmark (per brand guide §02) */
.brand { display: flex; align-items: center; gap: 14px; }
.brand-oval {
  flex-shrink: 0;
  border: 2.5px solid var(--red);
  border-radius: var(--radius-oval);
  padding: 8px 12px 6px;
  text-align: center;
}
.brand-oval-cs {
  display: block;
  font-family: var(--font-slab);
  font-size: 20px; line-height: 1; color: var(--red);
}
.brand-oval-bar { display: block; height: 3px; background: var(--yellow); margin: 4px 1px 3px; border-radius: 2px; }
.brand-oval-est {
  display: block;
  font-family: var(--font-label);
  font-size: 10px; letter-spacing: 0.16em; color: var(--night-mute);
}
.brand-text { display: flex; flex-direction: column; gap: 3px; }
.brand-word {
  font-family: var(--font-slab);
  font-size: 21px; line-height: 0.98; color: var(--paper);
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.brand-sub {
  font-family: var(--font-label);
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--night-mute);
}
.brand:hover .brand-word { color: #fff; }

.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a {
  font-family: var(--font-label);
  font-size: 17px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--night-text);
}
.site-nav a:hover { color: #fff; }
.site-nav .nav-phone { font-family: var(--font-body); font-size: 14px; font-weight: 500; letter-spacing: 0.01em; color: var(--night-mute); }
.site-nav .nav-phone:hover { color: var(--paper); }
.site-nav .btn { color: #fff; }

.menu-toggle {
  display: none;
  background: none; border: 1.5px solid var(--night-mute); color: var(--paper);
  border-radius: var(--radius-sm);
  padding: 8px; cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.menu-toggle:hover { border-color: var(--paper); color: #fff; }

.mobile-menu[hidden] { display: none; }
.mobile-menu {
  display: flex; flex-direction: column; gap: 4px;
  background: var(--ink);
  border-top: 1px solid var(--night-line);
  padding: 16px 24px 24px;
}
.mobile-menu a {
  font-family: var(--font-label);
  font-size: 20px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--night-text); padding: 8px 0;
}
.mobile-menu a:hover { color: #fff; }
.mobile-menu .btn { text-align: center; margin-top: 10px; color: #fff; }

/* ---------- Hero (night application) ---------- */
.hero { background: var(--ink); color: var(--paper); }
.hero > .container { padding-top: 88px; padding-bottom: 80px; }
.hero-grid {
  display: grid; grid-template-columns: 1.08fr 0.92fr;
  gap: 56px; align-items: center;
}
.eyebrow {
  font-family: var(--font-label);
  font-size: 15px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 20px;
  white-space: nowrap;
}
/* Sized so each sentence of the three-line headline fits its own line
   at every viewport — no mid-sentence wraps. */
.hero h1 {
  font-size: clamp(24px, 6.2vw, 41px);
  color: var(--paper);
}
.hero h1 .accent { color: var(--red); }
.hero .lead {
  font-family: var(--font-body);
  font-size: 17px; line-height: 1.75;
  color: var(--night-text);
  max-width: 54ch;
  margin: 26px 0 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-media { position: relative; }
.hero-media img {
  width: 100%; height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.hero-badge {
  position: absolute; left: -18px; bottom: 20px;
  display: flex; align-items: center; gap: 12px;
  background: var(--paper-light); color: var(--ink);
  border-left: 4px solid var(--yellow);
  border-radius: var(--radius-sm);
  padding: 14px 20px 14px 16px;
  box-shadow: var(--shadow-lg);
}
.hero-badge-check {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--red); color: #fff; flex-shrink: 0;
}
.hero-badge strong {
  display: block;
  font-family: var(--font-label);
  font-size: 17px; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 400;
}
.hero-badge span:last-child { font-family: var(--font-body); font-size: 12.5px; color: var(--ink-mute); }

.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin: 80px 0 0;
  border-top: 1px solid var(--night-line);
}
.stats > div { padding: 28px 24px 0; border-left: 1px solid var(--night-line); }
.stats > div:first-child { border-left: none; padding-left: 0; }
.stats dt {
  font-family: var(--font-slab);
  font-size: 40px; line-height: 1; color: var(--red);
}
.stats dd {
  margin: 10px 0 0;
  font-family: var(--font-label);
  font-size: 15px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--night-mute);
}

/* ---------- Sections ---------- */
.section { padding: 104px 0; }
.section-alt { background: var(--paper-light); border-top: 1px solid var(--paper-line-soft); border-bottom: 1px solid var(--paper-line-soft); }

.section-head { max-width: 760px; margin-bottom: 60px; }
.section-no {
  font-family: var(--font-slab);
  font-size: 14px; color: var(--red);
  border-bottom: 2px solid var(--ink);
  display: inline-block;
  padding: 0 40px 6px 0;
  margin: 0 0 20px;
}
.section-head h2 { font-size: clamp(28px, 3.6vw, 42px); }
.section-head p:not(.section-no) {
  font-family: var(--font-body);
  font-size: 17px; line-height: 1.75; color: var(--ink-soft);
  margin: 20px 0 0;
}

/* ---------- Services ---------- */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--paper-light);
  border: 1px solid var(--paper-line-soft);
  border-top: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 34px 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.section-alt .service-card { background: #fff; }
.service-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--red); color: #fff;
  margin-bottom: 20px;
}
.service-card h3 { font-size: 22px; margin-bottom: 12px; }
.service-card > p { font-family: var(--font-body); font-size: 15px; line-height: 1.7; color: var(--ink-mute); margin: 0 0 20px; }
.service-card ul { list-style: none; margin: 0; padding: 0; }
.service-card li {
  font-family: var(--font-body);
  font-size: 14.5px; font-weight: 500;
  color: #3D3830;
  padding: 8px 0 8px 20px;
  position: relative;
  border-top: 1px solid var(--paper-line-soft);
}
.service-card li:first-child { border-top: none; }
.service-card li::before {
  content: "";
  position: absolute; left: 0; top: 16px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red);
}

/* ---------- Process ---------- */
.process-steps {
  list-style: none;
  counter-reset: step;
  margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
}
.process-steps li {
  counter-increment: step;
  background: #fff;
  border: 1px solid var(--paper-line-soft);
  border-radius: var(--radius);
  padding: 30px 26px 26px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.process-steps li:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.process-steps li::before {
  content: "0" counter(step);
  display: block;
  font-family: var(--font-slab);
  font-size: 32px; line-height: 1; color: var(--red);
  margin-bottom: 26px;
}
.process-steps li::after {
  content: "";
  position: absolute; left: 26px; top: 72px;
  width: 30px; height: 3px; border-radius: 2px; background: var(--yellow);
}
.process-steps h3 { font-family: var(--font-label); font-size: 21px; letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.2; margin-bottom: 10px; }
.process-steps p { font-family: var(--font-body); font-size: 14.5px; line-height: 1.7; color: var(--ink-mute); margin: 0; }

/* ---------- Shop photos ---------- */
.shop-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.shop-photo { margin: 0; }
.shop-photo-wide { grid-column: 1 / -1; }
.shop-photo img {
  width: 100%; height: 380px; object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.shop-photo-wide img { height: 440px; }
.shop-photo figcaption {
  font-family: var(--font-body);
  font-size: 13.5px; color: var(--ink-mute);
  padding: 14px 4px 2px;
}
.shop-photo figcaption::before { content: "— "; color: var(--red); }

/* ---------- Testimonial (yellow quote card, per brand social templates) ---------- */
.testimonial {
  margin: 0;
  background: var(--yellow);
  border-radius: 18px;
  padding: 44px 48px 38px;
  position: relative;
  box-shadow: var(--shadow-md);
}
.testimonial-mark {
  display: block;
  font-family: var(--font-slab);
  font-size: 72px; line-height: 0.6;
  color: var(--red);
}
.testimonial blockquote {
  margin: 20px 0 0;
  font-family: var(--font-body);
  font-size: 18px; line-height: 1.75;
  color: var(--ink);
}
.testimonial figcaption {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 2px solid var(--ink);
  font-family: var(--font-label);
  font-size: 16px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft);
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.testimonial figcaption strong { font-weight: 400; color: var(--ink); }
.stamp {
  display: inline-block;
  font-family: var(--font-type);
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--red);
  border: 1.5px solid var(--red);
  border-radius: 6px;
  padding: 4px 12px 2px;
  margin-left: auto;
}

/* ---------- Guarantee (red slab) ---------- */
.guarantee { background: var(--red); color: #fff; padding: 104px 0; }
.guarantee-eyebrow {
  font-family: var(--font-label);
  font-size: 16px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 16px;
}
.guarantee h2 { font-size: clamp(28px, 3.6vw, 42px); color: #fff; }
.guarantee h2::after {
  content: "";
  display: block;
  width: 72px; height: 4px; border-radius: 2px; background: var(--yellow);
  margin-top: 22px;
}
.guarantee p {
  font-family: var(--font-body);
  font-size: 17px; line-height: 1.8;
  color: #FBDFDA;
  margin: 24px 0 34px;
}

/* ---------- FAQ ---------- */
.faq {
  background: #fff;
  border: 1px solid var(--paper-line-soft);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease;
}
.faq:hover { box-shadow: var(--shadow-md); }
.faq summary {
  font-family: var(--font-label);
  font-size: 19px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 20px 52px 17px 24px;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color 0.2s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 22px; top: 50%;
  transform: translateY(-54%);
  font-family: var(--font-slab);
  font-size: 20px; color: var(--red);
  transition: transform 0.2s ease;
}
.faq[open] summary::after { content: "–"; }
.faq[open] summary { border-bottom: 1px solid var(--paper-line-soft); }
.faq summary:hover { color: var(--red); }
.faq p {
  font-family: var(--font-body);
  font-size: 15.5px; line-height: 1.75; color: var(--ink-soft);
  margin: 0; padding: 18px 28px 24px 24px;
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
.contact-info h2 { font-size: clamp(26px, 3.2vw, 38px); }
.contact-info > p {
  font-family: var(--font-body);
  font-size: 16px; line-height: 1.75; color: var(--ink-soft);
  margin: 20px 0 32px;
}
.contact-list { list-style: none; margin: 0 0 38px; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.contact-list li { display: grid; grid-template-columns: 84px 1fr; gap: 14px; align-items: baseline; }
.contact-label {
  font-family: var(--font-label);
  font-size: 14px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--paper-mute);
}
.contact-list a, .contact-list span { font-family: var(--font-body); font-size: 15.5px; color: var(--ink); }
.contact-list a:hover { color: var(--red); }
.contact-list strong { color: var(--red); font-weight: 600; }

/* form styled like an estimate sheet (brand guide §05) */
.lead-form {
  background: #fff;
  border: 1px solid var(--paper-line-soft);
  border-radius: 18px;
  padding: 32px 34px 30px;
  box-shadow: var(--shadow-md);
}
.form-head {
  display: flex; justify-content: space-between; align-items: baseline;
  border-bottom: 4px solid var(--red);
  padding-bottom: 14px; margin-bottom: 26px;
  position: relative;
}
.form-head::after {
  content: "";
  position: absolute; right: 0; bottom: -4px;
  width: 64px; height: 4px; background: var(--yellow);
}
.form-head span:first-child {
  font-family: var(--font-label);
  font-size: 22px; letter-spacing: 0.16em; text-transform: uppercase;
}
.form-jobno { font-family: var(--font-type); font-size: 13px; color: var(--ink-mute); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-family: var(--font-label);
  font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--paper-light);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red); background: #fff;
  box-shadow: 0 0 0 3px rgba(212, 0, 0, 0.12);
}
.form-group input.invalid,
.form-group select.invalid { border-color: var(--red); background: #FDF1F0; }
.form-group ::placeholder { color: #A79D89; }
.field-error {
  font-family: var(--font-body);
  font-size: 12.5px; color: var(--red);
  margin: 5px 0 0; min-height: 0;
}
.lead-form .btn-block { margin-top: 8px; }
.form-note {
  font-family: var(--font-body);
  font-size: 13px; line-height: 1.65; color: var(--ink-mute);
  margin: 16px 0 0;
}
.form-success {
  border: 1.5px solid var(--red);
  border-radius: var(--radius-sm);
  background: var(--paper-light);
  padding: 22px 24px;
  margin-top: 18px;
}
.form-success p { font-family: var(--font-body); font-size: 14.5px; margin: 0 0 8px; }
.form-success strong {
  font-family: var(--font-label);
  font-size: 19px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red); font-weight: 400;
}

/* ---------- Footer (night ground) ---------- */
.site-footer { background: var(--ink); color: var(--night-text); }
.footer-inner {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  padding-top: 64px; padding-bottom: 44px;
}
.footer-badge { width: 210px; height: auto; }
.footer-brand p {
  font-family: var(--font-body);
  font-size: 14px; line-height: 1.75; color: var(--night-mute);
  margin: 20px 0 0; max-width: 40ch;
}
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact a, .footer-contact span {
  font-family: var(--font-body);
  font-size: 14.5px; color: var(--night-text);
}
.footer-contact a:hover { color: #fff; }
.footer-legal {
  border-top: 1px solid var(--night-line);
  padding-top: 20px; padding-bottom: 28px;
}
.footer-legal p {
  font-family: var(--font-label);
  font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--night-mute); margin: 0;
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
/* The hero pairs a wide photo with large type, so it stacks earlier
   than the rest of the layout to avoid cramped mid-width wrapping. */
@media (max-width: 1120px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-media { max-width: 640px; }
}

@media (max-width: 1020px) {
  .hero-media { max-width: 560px; }
  .service-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .stats > div:nth-child(odd) { border-left: none; padding-left: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 860px) {
  .site-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .brand-sub { display: none; }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .hero > .container { padding-top: 56px; padding-bottom: 56px; }
  .process-steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .shop-photo img { height: 260px; }
  .shop-photo-wide img { height: 280px; }
  .testimonial { padding: 32px 26px 28px; }
  .stamp { margin-left: 0; }
  /* On phones the landscape photo is short, so the badge sits below it
     instead of covering it. */
  .hero-badge { position: static; margin-top: 12px; }
  .eyebrow { font-size: 13px; }
  .rb-yellow { width: 70px; }
  .rb-paper, .rb-ink { width: 40px; }
  .lead-form { padding: 26px 22px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .service-card:hover, .process-steps li:hover { transform: none; }
}
