/* Red Cherry IT — design system
   Brand colours taken from the live site's own computed styles:
   cherry accent rgb(176,54,63), navy text rgb(26,35,59), Manrope font. */

:root {
  --cherry: #b0363f;
  --cherry-dark: #8f2b33;
  --cherry-light: #f6e6e7;
  --navy: #1a233b;
  --ink: #2b3350;
  --muted: #6b7280;
  --bg: #ffffff;
  --bg-alt: #faf7f6;
  --border: #e8e2df;
  --radius: 14px;
  --shadow: 0 10px 30px -12px rgba(26, 35, 59, 0.18);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 0.5em;
  font-weight: 800;
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; }

a { color: var(--cherry); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--navy);
  color: #fff;
  padding: 10px 16px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0; top: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--navy); outline-offset: 2px; }

.btn-primary {
  background: var(--cherry);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(176, 54, 63, 0.6);
}
.btn-primary:hover { background: var(--cherry-dark); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--navy); }

.btn-light {
  background: #fff;
  color: var(--cherry);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.header-inner .btn-primary { flex-shrink: 0; }
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--navy);
  flex-shrink: 0;
}
.brand img { height: 42px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 28px; }
.nav-links { display: flex; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.96rem;
}
.nav-links a[aria-current="page"] { color: var(--cherry); }
.nav-links a:hover { color: var(--cherry); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  position: relative;
}
.nav-toggle::before { transform: translateY(-6px); }
.nav-toggle::after { transform: translateY(4px); }

/* Hero */
.hero {
  padding: 72px 0 56px;
  background: linear-gradient(180deg, var(--bg-alt) 0%, #fff 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  color: var(--cherry);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: 12px;
}
.hero-lead { font-size: 1.15rem; color: var(--muted); max-width: 46ch; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 22px; }
.hero-art {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-art img, .hero-art svg { width: 100%; height: 100%; object-fit: cover; display: block; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.trust-stat { display: flex; flex-direction: column; }
.trust-stat strong { font-size: 1.6rem; color: var(--navy); }
.trust-stat span { color: var(--muted); font-size: 0.88rem; }

/* Sections */
.section { padding: 72px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 62ch; margin-bottom: 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-lead { color: var(--muted); font-size: 1.05rem; }

/* Breadcrumb */
.breadcrumb {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 18px 0 0;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--cherry); }

/* Stats grid (About / Why choose) */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
  margin-top: 48px;
}
.stat-box strong { display: block; font-size: 2.1rem; color: var(--cherry); }
.stat-box span { color: var(--muted); font-size: 0.9rem; }

/* Packages */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pkg-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pkg-card--featured {
  border-color: var(--cherry);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}
.pkg-badge {
  position: absolute;
  top: -14px; left: 26px;
  background: var(--cherry);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.pkg-price { font-size: 2.2rem; font-weight: 800; color: var(--navy); margin: 10px 0; }
.pkg-price span { font-size: 0.95rem; color: var(--muted); font-weight: 600; }
.pkg-list { list-style: none; padding: 0; margin: 18px 0 26px; flex-grow: 1; }
.pkg-list li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.95rem;
  display: flex;
  gap: 10px;
}
.pkg-list li:last-child { border-bottom: none; }
.pkg-list .no { color: var(--muted); }
.pkg-note { text-align: center; color: var(--muted); margin-top: 28px; font-size: 0.95rem; }

/* Compare table */
.table-wrap { overflow-x: auto; margin-top: 40px; }
table.compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  background: #fff;
}
table.compare th, table.compare td {
  padding: 16px 18px;
  border: 1px solid var(--border);
  text-align: center;
}
table.compare th { background: var(--bg-alt); color: var(--navy); }
table.compare td:first-child, table.compare th:first-child { text-align: left; }

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}
.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cherry-light);
  color: var(--cherry);
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}

/* Timeline (connected steps — used in place of a plain card grid) */
.timeline {
  position: relative;
  display: flex;
  margin-top: 8px;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.timeline-step {
  flex: 1;
  padding: 0 18px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.timeline-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--cherry);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 0 0 6px var(--bg);
}
.timeline-step h3 { margin-bottom: 8px; }
.timeline-step p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* Values split panel (dark quote + plain row list, instead of a card grid) */
.values-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}
.values-quote {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 44px 38px;
}
.values-quote .eyebrow { color: #f0a7ac; }
.values-quote h2 { color: #fff; }
.values-quote p { color: rgba(255, 255, 255, 0.78); font-size: 1.05rem; margin: 0; }

.value-rows { display: flex; flex-direction: column; }
.value-row {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.value-row:first-child { padding-top: 0; }
.value-row:last-child { border-bottom: none; }
.value-row-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--cherry-light);
  color: var(--cherry);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.value-row-icon svg { width: 22px; height: 22px; }
.value-row h3 { margin-bottom: 4px; font-size: 1.05rem; }
.value-row p { margin: 0; color: var(--muted); font-size: 0.94rem; }

/* Why-choose flat row (icon + text, no card boxes — contrasts with pkg/testimonial cards) */
.why-flat {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.why-flat-item {
  padding: 4px 28px;
  border-left: 1px solid var(--border);
}
.why-flat-item:first-child { border-left: none; padding-left: 4px; }
.why-flat-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--cherry-light);
  color: var(--cherry);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.why-flat-icon svg { width: 22px; height: 22px; }
.why-flat-item h3 { font-size: 1.05rem; }
.why-flat-item p { color: var(--muted); font-size: 0.94rem; margin: 0; }

/* Values / Why grid (legacy card style — still available for other pages) */
.values-grid, .why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.value-card, .why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

/* Industries */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.industry-chip {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
  text-align: center;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.industry-chip:hover {
  border-color: var(--cherry);
  color: var(--cherry);
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.stars { color: var(--cherry); letter-spacing: 2px; margin-bottom: 10px; }
.testimonial-quote { flex-grow: 1; font-size: 1rem; }
.testimonial-name { font-weight: 800; color: var(--navy); }
.testimonial-role { color: var(--muted); font-size: 0.9rem; }
.rating-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--bg-alt);
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Case studies */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-featured-single {
  max-width: 420px;
  margin: 0 auto 48px;
}
.case-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}
.case-card:hover { border-color: var(--cherry); box-shadow: var(--shadow); text-decoration: none; }
.case-card--featured { border-color: var(--cherry); box-shadow: var(--shadow); position: relative; }
.case-card-badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  background: var(--cherry);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 999px;
}
.case-card-logo {
  background: var(--navy);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
}
.case-card-logo img {
  max-width: 100%;
  max-height: 84px;
  width: auto;
  object-fit: contain;
}
.case-card-body { padding: 22px; }
.case-card-body h3 { margin-bottom: 6px; }
.case-card-tag {
  display: inline-block;
  background: var(--cherry-light);
  color: var(--cherry);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.case-card-body p { color: var(--muted); font-size: 0.94rem; margin: 0; }

.case-hero-logo {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 220px;
}
.case-hero-logo img {
  max-width: 100%;
  max-height: 140px;
  width: auto;
  object-fit: contain;
}

.case-meta-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0; }
.case-meta-pill {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}

.testimonial-placeholder {
  background: var(--bg-alt);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  color: var(--muted);
}
.testimonial-placeholder strong { display: block; color: var(--navy); margin-bottom: 6px; }

/* FAQ */
.faq-list { max-width: 820px; }
details.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px 22px;
  margin-bottom: 14px;
}
details.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  padding: 16px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--cherry);
  flex-shrink: 0;
}
details.faq-item[open] summary::after { content: "\2212"; }
details.faq-item p { padding-bottom: 18px; color: var(--muted); margin: 0; }

/* CTA banner */
.cta-banner {
  background: var(--navy);
  color: #fff;
  border-radius: 24px;
  padding: 56px;
  text-align: center;
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255, 255, 255, 0.78); }

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 2px solid var(--cherry);
  outline-offset: 1px;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 6px; }
.hp-field { position: absolute; left: -9999px; top: -9999px; }
.form-error {
  background: #fdeceb;
  border: 1px solid #f3b9b4;
  color: #8a2b23;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.92rem;
  margin-bottom: 18px;
}

/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1000;
  background: var(--navy);
  color: #fff;
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.18);
}
.cookie-banner p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
}
.cookie-banner a { color: #fff; }
.cookie-banner-actions { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }
.cookie-banner .btn-outline { border-color: rgba(255, 255, 255, 0.4); color: #fff; }
.cookie-banner .btn-outline:hover { border-color: #fff; }

.contact-info-list { list-style: none; padding: 0; margin: 0 0 28px; }
.contact-info-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-list strong { display: block; color: var(--navy); }

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer-brand img { width: 200px; max-width: 100%; height: auto; margin-bottom: 14px; }
.footer-brand p { color: rgba(255, 255, 255, 0.6); font-size: 0.92rem; }
.site-footer h4 { color: #fff; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255, 255, 255, 0.72); font-size: 0.94rem; }
.footer-links a:hover { color: #fff; }
.social-row { display: flex; gap: 12px; margin-top: 16px; }
.social-row a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 48px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer-bottom a { color: rgba(255, 255, 255, 0.55); }
.footer-bottom a:hover { color: #fff; }

/* Location page hero variant */
.location-hero {
  background: var(--navy);
  color: #fff;
  padding: 64px 0;
}
.location-hero h1 { color: #fff; }
.location-hero p { color: rgba(255, 255, 255, 0.75); }
.location-hero .eyebrow { color: #f0a7ac; }

.area-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.area-pill {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .pkg-grid, .steps-grid, .values-grid, .why-grid, .testimonial-grid, .case-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); row-gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pkg-card--featured { transform: none; }
  .values-split { grid-template-columns: 1fr; }
  .why-flat { grid-template-columns: 1fr 1fr; }
  .why-flat-item:nth-child(2n+1) { border-left: none; }
  .why-flat-item:nth-child(n+3) { border-top: 1px solid var(--border); padding-top: 24px; }
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; flex-shrink: 0; }
  .header-inner { gap: 10px; flex-wrap: wrap; row-gap: 10px; }
  .brand img { height: 32px; width: auto; }
  .header-inner .btn-primary { padding: 10px 16px; font-size: 0.85rem; }
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-banner-actions { justify-content: center; }
  .main-nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: #fff;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
  }
  .pkg-grid, .steps-grid, .values-grid, .why-grid, .testimonial-grid, .industry-grid, .case-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .field-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 24px; }
  .timeline { flex-direction: column; gap: 28px; }
  .timeline::before { top: 0; bottom: 0; left: 23px; right: auto; width: 2px; height: auto; }
  .timeline-step { text-align: left; padding: 0 0 0 64px; }
  .timeline-num { position: absolute; left: 0; top: 0; margin: 0; }
  .why-flat { grid-template-columns: 1fr; }
  .why-flat-item { border-left: none !important; padding-left: 4px; }
  .why-flat-item:not(:first-child) { border-top: 1px solid var(--border); padding-top: 24px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
}
