/* ==========================================================================
   Mitchell & Doonan Inc. - design system (mobile-first)
   Fresh house look: emerald-teal + coral pop on warm cream. Friendly, modern,
   money-credible. Rebrand by editing the tokens in :root.
   ========================================================================== */

:root {
  /* Brand - fresh emerald-teal */
  --teal:       #0e9e80;   /* primary brand */
  --teal-dark:  #0a7d64;
  --teal-deep:  #0d2a24;   /* deep emerald for dark sections */
  --mint:       #34d9af;   /* bright mint - pops on dark */

  /* Accent - playful coral (CTAs, highlights) */
  --coral:        #ff6f51;
  --coral-dark:   #ec5a3d;
  --coral-bright: #ff8a70;

  /* Ink + neutrals (warm) */
  --ink:    #1b2a26;
  --muted:  #5d6f69;

  /* Surfaces - warm cream */
  --bg:      #fbf8f2;
  --surface: #ffffff;
  --bg-alt:  #f2ecdf;
  --border:  #e9e1d2;

  /* Dark sections */
  --dark:          #0d2a24;
  --on-dark:       #eff7f2;
  --on-dark-muted: #9fbcb0;
  --border-dark:   rgba(255, 255, 255, 0.12);

  /* Hand-drawn coral underline for the hero highlight */
  --doodle: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' preserveAspectRatio='none'%3E%3Cpath d='M3 9 C 45 3, 80 3, 118 8 S 178 11, 197 5' stroke='%23ff6f51' stroke-width='4.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");

  --font-display: "Bricolage Grotesque", "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body:    "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --maxw: 1140px;
  --radius: 16px;
  --radius-lg: 26px;
  --shadow-sm: 0 1px 2px rgba(13, 42, 36, 0.06), 0 4px 14px rgba(13, 42, 36, 0.05);
  --shadow-md: 0 12px 32px rgba(13, 42, 36, 0.10);
  --shadow-lg: 0 26px 60px rgba(13, 42, 36, 0.16);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Reset ------------------------------------------------------------------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--teal-dark); }
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; line-height: 1.05; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.skip-link {
  position: absolute; left: 16px; top: -48px; z-index: 100;
  background: var(--coral); color: #fff; padding: 10px 16px;
  border-radius: 10px; font-weight: 600; text-decoration: none; transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* Highlight word with hand-drawn underline */
.hl { position: relative; color: var(--coral); white-space: nowrap; }
.hl::after {
  content: ""; position: absolute; left: -2px; right: -2px; bottom: -0.16em; height: 0.22em;
  background: var(--doodle) center/100% 100% no-repeat;
}

/* Scroll progress bar (created by main.js) -------------------------------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--teal), var(--mint)); z-index: 9999; border-radius: 0 3px 3px 0;
  box-shadow: 0 0 12px rgba(52, 217, 175, 0.55); transition: width .1s linear;
}

/* Buttons ----------------------------------------------------------------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--coral); color: #fff; text-decoration: none;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: 13px 24px; border: 2px solid transparent; border-radius: 999px;
  cursor: pointer; transition: transform .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease);
  box-shadow: 0 8px 22px -8px rgba(255, 111, 81, 0.6);
}
.btn::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 28%, rgba(255,255,255,0.28) 50%, transparent 72%);
  transform: translateX(-130%); transition: transform .6s var(--ease);
}
.btn:hover::after { transform: translateX(130%); }
.btn:hover { background: var(--coral-dark); transform: translateY(-3px); box-shadow: 0 16px 34px -10px rgba(255, 111, 81, 0.7); }
.btn:active { transform: translateY(-1px); }
.btn:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; }
.btn-lg { padding: 16px 32px; font-size: 1.075rem; }
.btn-sm { padding: 10px 18px; font-size: .95rem; box-shadow: none; }

.btn-ghost { background: transparent; color: var(--teal-dark); border-color: rgba(14, 158, 128, 0.4); box-shadow: none; }
.btn-ghost:hover { background: var(--teal); color: #fff; border-color: var(--teal); box-shadow: none; }

/* On dark backgrounds */
.on-dark .btn, .btn-on-dark { background: var(--coral); color: #fff; }
.on-dark .btn:hover, .btn-on-dark:hover { background: var(--coral-dark); }
.on-dark .btn-ghost, .btn-ghost.btn-on-dark { background: transparent; color: var(--on-dark); border-color: rgba(255,255,255,.4); box-shadow: none; }
.on-dark .btn-ghost:hover, .btn-ghost.btn-on-dark:hover { background: var(--mint); color: var(--teal-deep); border-color: var(--mint); }

/* Header ------------------------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 248, 242, 0.82);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 16px; }

/* Brand wordmark */
.brand { display: inline-flex; align-items: baseline; gap: 8px; text-decoration: none; transition: transform .2s var(--ease); }
.brand:hover { transform: translateY(-1px); }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.34rem; color: var(--ink); letter-spacing: -0.03em; line-height: 1; }
.brand-name .amp { color: var(--coral); }
.brand-sub { font-family: var(--font-body); font-size: .64rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }

/* Nav - mobile drawer; desktop bar at >=741px */
.nav-toggle { display: block; background: transparent; border: 0; cursor: pointer; padding: 8px; width: 44px; height: 44px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s var(--ease), opacity .2s var(--ease); }
.nav-toggle span + span { margin-top: 6px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-links {
  list-style: none;
  position: absolute; top: 70px; left: 0; right: 0;
  display: flex; flex-direction: column; align-items: stretch; gap: 2px;
  padding: 10px 22px 18px; background: rgba(251, 248, 242, 0.98);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: transform .2s var(--ease), opacity .2s var(--ease);
}
.nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
.nav-links li { width: 100%; }
.nav-links a { color: var(--ink); text-decoration: none; font-weight: 600; }
.nav-links a:not(.btn) { display: block; padding: 12px 4px; border-bottom: 1px solid var(--border); }
.nav-links a:not(.btn):hover { color: var(--coral); }
.nav-links .btn { margin-top: 10px; width: 100%; color: #fff; }

/* Hero -------------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden; isolation: isolate;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  padding: 72px 0 64px;
}
/* soft playful blobs */
.hero::before, .hero::after {
  content: ""; position: absolute; z-index: -1; border-radius: 50%; filter: blur(70px); opacity: .55; pointer-events: none;
}
.hero::before { width: 460px; height: 460px; top: -160px; right: -100px; background: radial-gradient(circle, rgba(52, 217, 175, 0.5), transparent 70%); }
.hero::after  { width: 420px; height: 420px; bottom: -200px; left: -120px; background: radial-gradient(circle, rgba(255, 138, 112, 0.45), transparent 70%); }

.hero-inner { position: relative; max-width: 760px; }
.hero-inner > * { animation: heroIn .7s var(--ease) both; }
.hero-inner > *:nth-child(2) { animation-delay: .08s; }
.hero-inner > *:nth-child(3) { animation-delay: .16s; }
.hero-inner > *:nth-child(4) { animation-delay: .24s; }
.hero-inner > *:nth-child(5) { animation-delay: .32s; }
@keyframes heroIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  text-transform: uppercase; letter-spacing: .14em; font-size: .76rem; font-weight: 700;
  color: var(--coral); margin-bottom: 18px;
  padding: 7px 15px; border-radius: 999px; background: rgba(255, 111, 81, 0.1);
}
.hero h1 { font-size: clamp(2.5rem, 6.2vw, 4.2rem); letter-spacing: -0.035em; max-width: 16ch; }
.hero .lede { margin: 22px 0 32px; font-size: clamp(1.08rem, 2.2vw, 1.3rem); color: var(--muted); max-width: 56ch; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 38px; color: var(--muted); font-size: .95rem; font-weight: 600; }
.hero-trust li { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; }

/* Trust bar --------------------------------------------------------------- */
.trustbar { background: var(--teal-deep); color: var(--on-dark); }
.trustbar-inner { display: grid; grid-template-columns: 1fr; gap: 14px; padding: 22px; }
.trust-item { display: flex; align-items: center; gap: 12px; font-size: .96rem; font-weight: 600; }
.trust-item svg { width: 24px; height: 24px; color: var(--mint); flex-shrink: 0; }

/* Sections ---------------------------------------------------------------- */
.section { padding: 64px 0; }
.section-alt { background: var(--bg-alt); }
.on-dark { background: var(--dark); color: var(--on-dark); }
.on-dark h2 { color: var(--on-dark); }

.section-head { max-width: 680px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker { display: inline-block; text-transform: uppercase; letter-spacing: .16em; font-size: .76rem; font-weight: 700; color: var(--coral); }
.on-dark .kicker { color: var(--coral-bright); }
h2 { font-size: clamp(1.9rem, 4.4vw, 2.8rem); margin-top: 10px; }
.section-lede { color: var(--muted); font-size: 1.12rem; margin-top: 12px; }
.on-dark .section-lede { color: var(--on-dark-muted); }

/* Service cards ----------------------------------------------------------- */
.cards { display: grid; grid-template-columns: 1fr; gap: 20px; }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px 26px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: rgba(14, 158, 128, 0.45); }
.card-ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 16px; margin-bottom: 18px;
  background: rgba(14, 158, 128, 0.12); color: var(--teal-dark);
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.card:hover .card-ic { background: var(--teal); color: #fff; transform: rotate(-6deg) scale(1.07); }
.card-ic svg { width: 27px; height: 27px; }
.card h3 { font-size: 1.22rem; margin-bottom: 8px; }
.card p { color: var(--muted); }

/* Process steps ----------------------------------------------------------- */
.steps { list-style: none; display: grid; grid-template-columns: 1fr; gap: 26px; counter-reset: step; }
.step { position: relative; padding-top: 22px; border-top: 3px solid var(--coral); }
.step-no { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--teal); line-height: 1; display: block; margin-bottom: 10px; }
.step h3 { font-size: 1.26rem; margin-bottom: 8px; }
.step p { color: var(--muted); }

/* About + team ------------------------------------------------------------ */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 44px; align-items: start; }
.about-copy p { font-size: 1.12rem; color: var(--muted); margin-bottom: 16px; }
.about-copy p:first-of-type { color: var(--ink); font-size: 1.18rem; }
.about-copy h2 { margin-bottom: 8px; }
.badges { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 22px; font-weight: 600; color: var(--ink); }
.badges li { display: inline-flex; align-items: center; gap: 8px; }
.badges svg { width: 19px; height: 19px; color: var(--teal); flex-shrink: 0; }

.partners { display: grid; grid-template-columns: 1fr; gap: 16px; }
.partner {
  display: flex; gap: 18px; align-items: center;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 20px; transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.partner:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.partner-photo {
  flex-shrink: 0; width: 92px; height: 92px; border-radius: 50%; object-fit: cover; object-position: center 22%;
  border: 3px solid var(--surface); box-shadow: 0 0 0 3px var(--teal);
}
.partner-body h3 { font-size: 1.18rem; margin-bottom: 3px; }
.partner-role { font-size: .92rem; color: var(--teal-dark); font-weight: 700; }
.partner-edu { font-size: .88rem; color: var(--muted); margin-top: 2px; }

.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stat {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px 18px; text-align: center; transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat .num { font-family: var(--font-display); font-size: 1.7rem; font-weight: 800; line-height: 1.1; color: var(--coral); }
.stat .lbl { display: block; margin-top: 6px; color: var(--muted); font-size: .9rem; }

/* Guarantee quote band ---------------------------------------------------- */
.quote-band { text-align: center; }
.quote { max-width: 800px; margin: 0 auto; }
.quote-mark { font-family: var(--font-display); font-size: 4.5rem; line-height: .5; color: var(--coral); display: block; height: 2rem; }
.quote p { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.45rem, 3.2vw, 2.1rem); line-height: 1.3; color: var(--ink); letter-spacing: -0.02em; }
.quote cite { display: block; margin-top: 20px; font-style: normal; font-weight: 700; font-size: .9rem; letter-spacing: .06em; text-transform: uppercase; color: var(--teal-dark); }

/* CTA band ---------------------------------------------------------------- */
.cta { position: relative; overflow: hidden; text-align: center; }
.cta::before { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; top: -260px; left: 50%; transform: translateX(-50%); background: radial-gradient(circle, rgba(52,217,175,.22), transparent 70%); filter: blur(40px); pointer-events: none; }
.cta .container { position: relative; max-width: 720px; }
.cta h2 { font-size: clamp(2rem, 4.6vw, 2.9rem); }
.cta p { color: var(--on-dark-muted); font-size: 1.14rem; margin: 14px auto 30px; max-width: 50ch; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Contact cards (used on the contact page) -------------------------------- */
.contact-cards { display: grid; grid-template-columns: 1fr; gap: 16px; }
.aside-item {
  display: flex; gap: 16px; align-items: flex-start; text-decoration: none; color: inherit;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 22px 24px; transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.aside-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(255, 111, 81, 0.5); }
.aside-item .ic { flex-shrink: 0; width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: rgba(14, 158, 128, 0.12); color: var(--teal-dark); }
.aside-item .ic svg { width: 23px; height: 23px; }
.aside-item h3 { font-size: 1.08rem; margin-bottom: 2px; }
.aside-item p { color: var(--ink); font-size: 1rem; }
.aside-item .aside-sub { color: var(--muted); font-size: .9rem; margin-top: 2px; }
a.aside-item:hover .aside-sub { color: var(--coral); }

/* Person contact card (photo + email) ------------------------------------- */
.people { display: grid; grid-template-columns: 1fr; gap: 18px; }
.person {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px 24px; transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.person:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.person-photo { width: 116px; height: 116px; border-radius: 50%; object-fit: cover; object-position: center 22%; box-shadow: 0 0 0 4px var(--teal); margin-bottom: 16px; }
.person h3 { font-size: 1.3rem; }
.person .person-role { font-size: .9rem; color: var(--teal-dark); font-weight: 700; margin: 4px 0 16px; }
.person .btn { width: 100%; }
.person .person-email { display: block; margin-top: 10px; font-size: .92rem; color: var(--muted); word-break: break-word; }

/* Footer ------------------------------------------------------------------ */
.site-footer { background: var(--teal-deep); color: var(--on-dark-muted); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand .brand-name { color: var(--on-dark); }
.footer-brand .brand-sub { color: var(--on-dark-muted); }
.footer-brand p { max-width: 38ch; font-size: .95rem; }
.footer-col h4 { font-family: var(--font-display); font-weight: 700; color: var(--on-dark); font-size: 1.04rem; margin-bottom: 12px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a, .footer-col p { color: var(--on-dark-muted); text-decoration: none; font-size: .95rem; }
.footer-col a:hover { color: var(--mint); }
.footer-bottom { margin-top: 42px; padding-top: 22px; border-top: 1px solid var(--border-dark); display: flex; align-items: center; justify-content: space-between; gap: 10px 20px; flex-wrap: wrap; font-size: .86rem; }

/* "Built by Group Zeus" chrome credit */
.built-by { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; font-size: .82rem; font-weight: 600; letter-spacing: .01em; }
.built-by .bb-label { color: var(--on-dark-muted); font-weight: 500; }
.built-by .bb-mark { width: 24px; height: 16px; flex-shrink: 0; background: linear-gradient(125deg, #ffffff 0%, #d8e5ed 35%, #9fb3c2 58%, #ffffff 85%); -webkit-mask: url("/assets/group-zeus-symbol.svg") center/contain no-repeat; mask: url("/assets/group-zeus-symbol.svg") center/contain no-repeat; transition: transform .25s var(--ease), filter .25s var(--ease); }
.built-by .bb-name { background: linear-gradient(125deg, #ffffff 0%, #d8e5ed 40%, #9fb3c2 70%, #ffffff 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.built-by:hover .bb-mark { transform: translateY(-1px) scale(1.05); filter: drop-shadow(0 0 6px rgba(216,229,237,.6)); }
.built-by:hover .bb-name { filter: brightness(1.12); }

/* Page hero (contact page) ------------------------------------------------ */
.page-hero { position: relative; overflow: hidden; isolation: isolate; background: linear-gradient(180deg, var(--bg), var(--bg-alt)); padding: 64px 0 56px; text-align: center; }
.page-hero::before { content: ""; position: absolute; z-index: -1; width: 440px; height: 440px; border-radius: 50%; top: -180px; right: -80px; background: radial-gradient(circle, rgba(52,217,175,.4), transparent 70%); filter: blur(70px); }
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(2.2rem, 5.4vw, 3.4rem); letter-spacing: -0.035em; }
.page-hero p { color: var(--muted); font-size: 1.14rem; margin: 14px auto 0; max-width: 52ch; }

/* Scroll reveal ----------------------------------------------------------- */
.reveal { opacity: 0; }
.reveal.in { animation: revealUp .6s var(--ease) both; animation-delay: var(--d, 0s); }
@keyframes revealUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.cards .card:nth-child(2), .people .person:nth-child(2) { --d: .08s; }
.cards .card:nth-child(3) { --d: .16s; }
.cards .card:nth-child(4) { --d: .24s; }
.cards .card:nth-child(5) { --d: .32s; }
.cards .card:nth-child(6) { --d: .4s; }

/* ==========================================================================
   Responsive - mobile-first. Breakpoints: 741 (tablet), 861, 961 (desktop)
   ========================================================================== */
@media (min-width: 741px) {
  .nav-toggle { display: none; }
  .nav-links {
    position: static; flex-direction: row; align-items: center; gap: 28px;
    padding: 0; background: none; backdrop-filter: none; -webkit-backdrop-filter: none;
    border-bottom: 0; transform: none; opacity: 1; pointer-events: auto;
  }
  .nav-links li { width: auto; }
  .nav-links a:not(.btn) { display: inline; padding: 0; border-bottom: 0; position: relative; }
  .nav-links a:not(.btn)::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
    background: var(--coral); border-radius: 2px; transform: scaleX(0); transform-origin: left;
    transition: transform .22s var(--ease);
  }
  .nav-links a:not(.btn):hover::after { transform: scaleX(1); }
  .nav-links .btn { margin-top: 0; width: auto; }

  .hero { padding: 108px 0 92px; }
  .section { padding: 92px 0; }

  .trustbar-inner { grid-template-columns: repeat(2, 1fr); gap: 18px 30px; padding: 26px 22px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); gap: 32px 28px; }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .people { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}

@media (min-width: 861px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
  .trustbar-inner { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 961px) {
  .about-grid { grid-template-columns: 1.1fr 1fr; gap: 56px; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; animation: none !important; }
  .hero-inner > * { animation: none !important; opacity: 1 !important; }
  .btn::after { display: none; }
  .btn:hover, .card:hover, .stat:hover, .partner:hover, .person:hover, .aside-item:hover, .brand:hover { transform: none; }
}
