/* ==========================================================================
   BD Crafters - shared stylesheet (design tokens + shared chrome)
   Owner: orchestrator. Page subagents may ONLY append page-scoped rules
   below, each under a banner comment reading: page: <slug>
   Do not edit the token / header / footer sections above the page banners.
   ========================================================================== */

:root {
  --black: #0d0d0d;
  --near-black: #1a1713;
  --gold: #d9a72c;
  --gold-dark: #c2921d;
  --gold-band: #d6a52b;
  --brown: #8a4515;
  --brown-dark: #6f370f;
  --dark-band: #3b3835;
  --light-bg: #eef0f2;
  --light-bg-2: #f4f5f6;
  --text: #2b2b2b;
  --muted: #6d6d6d;
  --white: #ffffff;
  --line: #e2e2e2;
  --radius: 4px;
  --shadow-sm: 0 2px 10px rgba(0,0,0,.08);
  --shadow-md: 0 10px 30px rgba(0,0,0,.12);
  --maxw: 1200px;
  --font-head: 'Poppins', system-ui, Arial, sans-serif;
  --font-body: 'Open Sans', system-ui, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--near-black);
  line-height: 1.2;
  margin: 0 0 .5em;
  font-weight: 700;
}

p { margin: 0 0 1rem; }

a { color: var(--brown); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--brown-dark); }

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

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--brown);
  color: #fff; padding: 10px 16px; z-index: 2000;
}
.skip-link:focus { left: 0; }

/* -------- Buttons -------- */
.btn {
  display: inline-block; font-family: var(--font-head); font-weight: 600;
  font-size: .95rem; padding: 13px 30px; border-radius: var(--radius);
  border: none; cursor: pointer; text-align: center; line-height: 1.2;
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-brown { background: var(--brown); color: #fff; }
.btn-brown:hover { background: var(--brown-dark); color: #fff; }
.btn-gold { background: var(--gold); color: #1c1408; }
.btn-gold:hover { background: var(--gold-dark); color: #1c1408; }

/* -------- Top bar -------- */
.topbar {
  background: #0a0a0a; color: #cfcfcf; font-size: .8rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 38px; flex-wrap: wrap; }
.topbar a { color: #d9d9d9; }
.topbar a:hover { color: var(--gold); }
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 14px; }
.topbar__soc { display: inline-flex; }
.topbar__soc img { width: 14px; height: 14px; }
.topbar__mail { display: inline-flex; align-items: center; gap: 8px; }
.topbar__mail img { width: 16px; height: 12px; }

/* -------- Header -------- */
.site-header { background: var(--black); position: relative; z-index: 100; }
.site-header__inner { display: flex; align-items: center; gap: 20px; min-height: 84px; }
.brand img { width: 150px; height: auto; }
.main-nav { margin-left: 26px; }
.main-nav > ul {
  list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 26px;
}
.main-nav a { color: #f2f2f2; font-family: var(--font-head); font-weight: 500; font-size: .95rem; position: relative; padding: 6px 0; }
.main-nav a:hover { color: var(--gold); }
.main-nav .is-active > a { color: var(--gold); }
.main-nav .is-active > a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--gold);
}
.has-dropdown { position: relative; }
.dropdown {
  list-style: none; margin: 0; padding: 8px 0; position: absolute; top: 100%; left: -14px;
  min-width: 250px; background: #141414; box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease; z-index: 200;
}
.dropdown li { display: block; }
.dropdown a { display: block; padding: 9px 20px; color: #eaeaea; white-space: nowrap; }
.dropdown a:hover { color: var(--gold); background: rgba(255,255,255,.04); }
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.header-cta { margin-left: auto; display: flex; align-items: stretch; gap: 0; }
.header-call { display: flex; align-items: center; gap: 10px; padding-right: 26px; }
.header-call__icon {
  width: 40px; height: 40px; border-radius: 50%; background: var(--gold);
  display: inline-flex; align-items: center; justify-content: center; color: #1c1408; flex: none;
}
.header-call__icon svg { width: 20px; height: 20px; }
.header-call__text { color: #cfcfcf; font-size: .72rem; line-height: 1.25; text-transform: uppercase; letter-spacing: .3px; }
.header-call__text a { color: var(--gold); font-weight: 700; font-size: .95rem; letter-spacing: 0; }
.btn-estimate {
  background: var(--brown); color: #fff; font-family: var(--font-head); font-weight: 600;
  display: inline-flex; align-items: center; padding: 0 34px; position: relative;
  clip-path: polygon(26px 0, 100% 0, 100% 100%, 0 100%);
  margin-left: 4px;
}
.btn-estimate:hover { background: var(--brown-dark); color: #fff; }

.nav-toggle { display: none; }
.nav-toggle-label { display: none; }

/* -------- Inner page hero band (About/Services/Reviews) -------- */
.page-hero {
  position: relative; background: var(--gold-band); text-align: center;
  padding: 96px 20px; overflow: hidden;
}
.page-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .28; }
.page-hero h1 { position: relative; color: var(--brown); font-size: 3rem; margin: 0; }

/* -------- Section helpers -------- */
.section { padding: 72px 0; }
.section--light { background: var(--light-bg); }
.eyebrow {
  font-family: var(--font-head); color: var(--gold-dark); font-weight: 600;
  font-size: .8rem; letter-spacing: 1px; text-transform: uppercase; margin: 0 0 12px;
  display: inline-block; position: relative;
}
.eyebrow::after { content: ""; display: block; width: 40px; height: 2px; background: var(--gold); margin-top: 6px; }
.eyebrow--center { display: block; text-align: center; }
.eyebrow--center::after { margin-left: auto; margin-right: auto; }
.section-title { font-size: 2rem; }

/* -------- Service cards (home + our-services) -------- */
.offer {
  position: relative; background: var(--light-bg);
}
.offer__bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .12; pointer-events: none;
}
.offer__inner { position: relative; }
.cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 34px;
}
.card {
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  display: block; color: var(--near-black); overflow: hidden; transition: box-shadow .25s ease, transform .25s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); color: var(--near-black); }
.card__img { width: 100%; height: 300px; object-fit: cover; }
.card__foot {
  display: flex; align-items: center; justify-content: space-between; padding: 20px; font-family: var(--font-head); font-weight: 600;
}
.card__arrow {
  width: 42px; height: 42px; background: var(--gold); color: #1c1408; display: inline-flex;
  align-items: center; justify-content: center; flex: none; transition: background .2s ease;
}
.card:hover .card__arrow { background: var(--gold-dark); }

/* -------- CTA dark band -------- */
.cta-band { position: relative; text-align: center; padding: 84px 20px; overflow: hidden; background: var(--dark-band); }
.cta-band__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: rgba(30,28,26,.72); }
.cta-band__inner { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; font-size: 2rem; max-width: 760px; margin: 0 auto 26px; }
.cta-band .brand-ring { display: inline-block; border: 2px solid var(--gold); border-radius: 50%; padding: 2px 10px; color: #fff; }

/* -------- About / Who we are -------- */
.who { position: relative; overflow: hidden; }
.who__bg { position: absolute; right: -40px; top: 40px; width: 520px; opacity: .10; pointer-events: none; }
.who__grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.who__media { position: relative; min-height: 460px; }
.who__media img.who__p1 { width: 78%; box-shadow: var(--shadow-md); }
/* Source badge is a flat gold rectangle with white type — no chevron, no dark text.
   z-index keeps it above both photos: .who__p2 is absolutely positioned and comes
   later in the DOM, so at `auto` it painted over the badge. */
.who__badge {
  position: absolute; z-index: 3; top: 120px; right: 40px; background: #dfbc47; color: #fff;
  width: 150px; height: 168px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
}
.who__badge .num { font-family: var(--font-head); font-weight: 700; font-size: 3rem; line-height: 1; }
.who__badge .lbl { font-size: .78rem; letter-spacing: 1px; text-transform: uppercase; margin-top: 8px; line-height: 1.35; }
.who__media img.who__p1,
.who__media img.who__p2 { position: relative; z-index: 1; }
.who__media img.who__p2 {
  position: absolute; right: 0; bottom: 0; width: 60%; box-shadow: var(--shadow-md); border: 6px solid #fff;
}
.who__body h2 { font-size: 1.9rem; }

/* -------- Testimonials -------- */
.testi { position: relative; overflow: hidden; padding: 90px 0; }
.testi__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.testi::after { content: ""; position: absolute; inset: 0; background: rgba(20,19,17,.62); }
.testi__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; align-items: center; }
.testi__head .eyebrow { color: var(--gold); }
.testi__head h2 { color: #fff; font-size: 2rem; }
.testi__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.testi-card { background: #f3f4f5; padding: 26px; position: relative; }
.testi-card__stars { height: 22px; width: auto; margin-bottom: 14px; }
.testi-card p { font-size: .92rem; color: #444; }
.testi-card__who { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.testi-card__who img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testi-card__who h6 { margin: 0; font-family: var(--font-head); font-size: .92rem; }
.testi-card__who span { font-size: .8rem; color: var(--muted); }
.testi-card__quote { position: absolute; right: 20px; bottom: 18px; color: var(--gold); font-size: 2.2rem; font-family: Georgia, serif; line-height: 1; }

/* sawtooth decoration */
.sawtooth { display: flex; gap: 0; overflow: hidden; height: 30px; }
.sawtooth img { height: 30px; width: auto; }

/* -------- Contact / form -------- */
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form .full { grid-column: 1 / -1; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 13px 14px; border: 1px solid var(--line); background: var(--light-bg-2);
  font-family: var(--font-body); font-size: .95rem; border-radius: var(--radius); color: var(--text);
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.hp-field { position: absolute; left: -9999px; overflow: hidden; width: 1px; height: 1px; }

.getintouch { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.getintouch__list { list-style: none; padding: 0; margin: 18px 0 0; }
.getintouch__list li { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; color: var(--brown); }
.getintouch__list svg { width: 18px; height: 18px; flex: none; color: var(--brown); }
.getintouch__list a { color: var(--brown); }
.getintouch__social { display: flex; gap: 16px; margin-top: 20px; }
.getintouch__social a { display: inline-flex; }
.getintouch__social img { width: 22px; height: 22px; }

/* -------- Service subpage (custom-home-remodelings etc.) -------- */
.svc { padding: 64px 0; }
.svc__grid { display: grid; grid-template-columns: 340px 1fr; gap: 40px; align-items: start; }
.svc__menu { list-style: none; margin: 0 0 26px; padding: 0; }
.svc__menu li a {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 20px; background: var(--light-bg); color: var(--near-black);
  font-family: var(--font-head); font-weight: 500; border-left: 3px solid transparent; transition: all .2s ease;
}
.svc__menu li a:hover, .svc__menu li.is-active a { background: #fff; border-left-color: var(--brown); box-shadow: var(--shadow-sm); }
.svc__quote { background: var(--brown); color: #fff; text-align: center; padding: 40px 28px; }
/* Selector carries two classes so it outranks `.svc__quote span { display: block }`
   below — as a bare `.svc__quote-icon` it lost, the flex box collapsed to a block,
   and the glyph sat on the text baseline at the top of the circle instead of centred. */
.svc__quote .svc__quote-icon {
  width: 64px; height: 64px; border-radius: 50%; background: #1c1c1c; border: 3px solid var(--gold);
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.svc__quote-icon svg { width: 28px; height: 28px; color: var(--gold); }
.svc__quote h3 { color: #fff; margin: 0 0 12px; }
.svc__quote span { display: block; font-size: .85rem; opacity: .85; }
.svc__quote a { color: #fff; font-weight: 700; font-family: var(--font-head); font-size: 1.15rem; }
.svc__hero-img { width: 100%; height: 420px; object-fit: cover; }
.svc__lead h2 { font-size: 1.8rem; margin-top: 14px; }
.svc__ribbon {
  border-left: 4px solid var(--brown); background: #fbfbfb; box-shadow: var(--shadow-sm);
  padding: 22px 26px; margin: 36px 0;
}
.svc__ribbon h3 { margin: 0; font-size: 1.25rem; }
.svc__benefits { display: grid; grid-template-columns: 300px 1fr; gap: 34px; align-items: center; margin-top: 26px; }
.svc__benefits img { width: 100%; height: auto; }
.benefit-list { list-style: none; padding: 0; margin: 14px 0 0; }
.benefit-list li { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; font-family: var(--font-head); font-weight: 600; }
.benefit-list .b-ico {
  width: 30px; height: 30px; border-radius: 50%; background: var(--brown); color: #fff; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
}
.benefit-list .b-ico svg { width: 15px; height: 15px; }

/* -------- Photo gallery (auto-scrolling carousel) --------
   Source gallery is a horizontally auto-scrolling collage: full-height tiles
   interleaved with stacked pairs, panning right-to-left and pausing on hover. */
.gallery-carousel { overflow: hidden; margin-top: 34px; padding: 0 48px; }
@media (max-width: 760px) { .gallery-carousel { padding: 0 20px; } }
.gallery-track { display: flex; width: max-content; animation: gallery-scroll 95s linear infinite; }
.gallery-carousel:hover .gallery-track,
.gallery-carousel:focus-within .gallery-track { animation-play-state: paused; }
/* margin-right, not `gap` — gap would leave the two passes unequal in width and the
   -50% keyframe would land 7px off, showing a jump once per loop. */
.gallery-col { flex: none; margin-right: 14px; display: flex; flex-direction: column; }
.gallery-col.is-tall { width: 380px; }
.gallery-col.is-pair { width: 285px; }
.gallery-col img { width: 100%; object-fit: cover; box-shadow: var(--shadow-sm); }
.gallery-col.is-tall img { height: 430px; }
.gallery-col.is-pair img { height: 208px; }
.gallery-col.is-pair img + img { margin-top: 14px; }
@keyframes gallery-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* -------- Location map -------- */
.map-band { line-height: 0; }
.map-band iframe { display: block; width: 100%; height: 450px; border: 0; }
@media (max-width: 760px) { .map-band iframe { height: 320px; } }

/* -------- Footer -------- */
.site-footer { background: var(--black); color: #c9c9c9; padding: 64px 0 24px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr; gap: 34px; }
.footer__brand img { width: 170px; margin-bottom: 18px; }
.footer__brand p { font-size: .9rem; color: #b3b3b3; }
.footer__insured { font-family: var(--font-head); font-weight: 700; color: #fff; margin-top: 16px; }
.footer__col h4 { color: #fff; font-size: 1.15rem; margin-bottom: 18px; position: relative; }
.footer__col h4::after { content: ""; display: block; width: 34px; height: 2px; background: var(--brown); margin-top: 8px; }
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul li a { color: #c1c1c1; font-size: .92rem; }
.footer__col ul li a:hover { color: var(--gold); }
.footer__contact p { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: #c1c1c1; margin-bottom: 10px; }
.footer__contact p a { color: #c1c1c1; }
.footer__contact svg { width: 16px; height: 16px; color: var(--gold); flex: none; }
.footer__social { display: flex; gap: 14px; margin-top: 8px; }
.footer__social a { width: 34px; height: 34px; border-radius: 50%; background: var(--gold); display: inline-flex; align-items: center; justify-content: center; }
.footer__social img { width: 16px; height: 16px; }
.footer__bottom { margin-top: 44px; }
.footer__bottom hr { border: none; border-top: 1px solid rgba(255,255,255,.12); margin-bottom: 20px; }
.footer__bottom p { text-align: center; font-size: .85rem; color: #9a9a9a; margin: 0; }

/* ==========================================================================
   Motion - plain CSS keyframes (no libraries). Reveal animations are
   on-load and use animation-fill-mode: both, so elements ALWAYS end visible.
   No stylesheet rule ever hides real content.
   ========================================================================== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes zoomIn { from { opacity: 0; transform: scale(.94); } to { opacity: 1; transform: scale(1); } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-34px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(34px); } to { opacity: 1; transform: translateX(0); } }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(217,167,44,.5); } 50% { box-shadow: 0 0 0 10px rgba(217,167,44,0); } }

.reveal { animation: fadeUp .8s ease both; }
.reveal-in { animation: fadeIn 1s ease both; }
.reveal-zoom { animation: zoomIn .8s ease both; }
.reveal-left { animation: slideInLeft .8s ease both; }
.reveal-right { animation: slideInRight .8s ease both; }
.d1 { animation-delay: .12s; }
.d2 { animation-delay: .24s; }
.d3 { animation-delay: .36s; }
.d4 { animation-delay: .48s; }
.header-call__icon { animation: pulse 2.6s infinite; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 992px) {
  .who__grid, .getintouch, .testi__inner, .svc__grid, .svc__benefits { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr 1fr; }
  .gallery-col.is-tall { width: 300px; }
  .gallery-col.is-pair { width: 225px; }
  .gallery-col.is-tall img { height: 340px; }
  .gallery-col.is-pair img { height: 163px; }
  .who__media { min-height: 420px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .site-header__inner { flex-wrap: wrap; min-height: 64px; }
  .nav-toggle-label {
    display: inline-flex; margin-left: auto; color: #fff; cursor: pointer; padding: 8px; font-size: 1.6rem; order: 2;
  }
  .header-cta { order: 3; }
  .main-nav {
    order: 4; margin: 0; flex-basis: 100%; max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .nav-toggle:checked ~ .main-nav { max-height: 640px; }
  .main-nav > ul { flex-direction: column; align-items: flex-start; gap: 0; padding: 8px 0 14px; }
  .main-nav > ul > li { width: 100%; border-bottom: 1px solid rgba(255,255,255,.08); }
  .main-nav a { display: block; padding: 12px 4px; }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    background: rgba(255,255,255,.03); padding: 0 0 6px 14px; min-width: 0;
  }
  .header-call { padding-right: 14px; }
  .cards, .contact-form { grid-template-columns: 1fr; }
  .gallery-col.is-tall { width: 220px; }
  .gallery-col.is-pair { width: 165px; }
  .gallery-col.is-tall img { height: 260px; }
  .gallery-col.is-pair img { height: 123px; }
  .page-hero h1 { font-size: 2.1rem; }
  .page-hero { padding: 64px 20px; }
  .btn-estimate { clip-path: none; padding: 12px 22px; }
  .footer__grid { grid-template-columns: 1fr; }
  .testi__cards { grid-template-columns: 1fr; }
}

/* page: index (home) */
.home-hero { position: relative; min-height: 560px; display: flex; align-items: center; overflow: hidden; }
.home-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.home-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,10,10,.72) 0%, rgba(10,10,10,.45) 45%, rgba(10,10,10,.15) 100%); }
.home-hero__inner { position: relative; z-index: 2; }
.home-hero__content { max-width: 620px; color: #fff; padding: 40px 0; }
.home-hero__content h1 { color: #fff; font-size: 3.4rem; font-weight: 800; letter-spacing: 1px; margin-bottom: 18px; }
.home-hero__content p { color: #eaeaea; font-size: 1rem; }
.home-hero__insured { font-family: var(--font-head); font-weight: 600; color: #fff; margin: 18px 0 22px; }
@media (max-width: 760px) {
  .home-hero__content h1 { font-size: 2.2rem; }
  .home-hero { min-height: 460px; }
}

/* page: about-us */
.about-extra { position: relative; background: var(--light-bg); overflow: hidden; }
.about-extra__bg { position: absolute; right: -60px; top: -30px; width: 480px; opacity: .14; pointer-events: none; }
.about-extra__inner { position: relative; max-width: 900px; }
.about-extra__inner p { color: var(--text); font-size: .98rem; }

/* page: reviews */
.reviews-testi { background: var(--white); }
.reviews-testi__grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 44px; align-items: start; }
.reviews-testi__head h2 { margin-top: 0; }
.reviews-testi__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 992px) {
  .reviews-testi__grid, .reviews-testi__cards { grid-template-columns: 1fr; }
}
