:root {
  --bg: #ffffff;
  --surface: #f7f7f5;
  --cream: #f3efe6;
  --graphite: #111821;
  --graphite-2: #1a2431;
  --ink: #121820;
  --muted: #596374;
  --line: #e6e4dd;
  --accent: #b8232a;
  --accent-dark: #971a20;
  --ok: #1d7a4a;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 8px rgba(17, 24, 33, .06);
  --shadow-md: 0 10px 30px rgba(17, 24, 33, .08);
  --container: 1200px;
  --font-display: "Manrope", system-ui, -apple-system, Segoe UI, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; color: var(--ink); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 8vw, 112px) 0; }
.section--alt { background: var(--surface); }
.section--dark { background: var(--graphite); color: #e9edf2; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: #c2cbd6; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--accent);
}

.lead {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 62ch;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-dark); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--cream); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .25); }
.btn--outline-light:hover { border-color: #fff; }
.btn svg { width: 18px; height: 18px; }

/* nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -.01em;
  font-size: 1.05rem;
}
.nav__brand .logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #fff url("../img/logo.png") center/contain no-repeat;
  border: 1px solid var(--line);
  flex: none;
}
.nav__brand small {
  display: block;
  font-weight: 500;
  color: var(--muted);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink);
  transition: color .2s var(--ease);
}
.nav__links a:hover { color: var(--accent); }
.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: .95rem;
}
.nav__phone svg { width: 16px; height: 16px; color: var(--accent); }
.nav__burger {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform .2s var(--ease), opacity .2s var(--ease);
}
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* hero */
.hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(13,20,28,.78) 0%, rgba(20,31,43,.85) 100%),
    url("../img/hero-warsztat.jpg") center/cover no-repeat;
  color: #fff;
  overflow: hidden;
  padding: clamp(88px, 10vw, 140px) 0 clamp(72px, 9vw, 120px);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 85% 10%, rgba(184, 35, 42, .22), transparent 60%),
    radial-gradient(600px 300px at 10% 90%, rgba(243, 239, 230, .08), transparent 60%);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: block;
  max-width: 880px;
}
.hero h1 { color: #fff; }
.hero h1 .accent { color: #f3efe6; display: inline-block; position: relative; }
.hero h1 .accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}
.hero__lead {
  font-size: 1.125rem;
  color: #c2cbd6;
  max-width: 56ch;
  margin-bottom: 32px;
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero__trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.hero__trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: -.02em;
}
.hero__trust-item span {
  font-size: .85rem;
  color: #8e99a7;
}

/* usługi */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.service {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.service:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.service__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--cream);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.service__icon svg { width: 22px; height: 22px; }
.service h3 { margin-bottom: 8px; }
.service p { color: var(--muted); margin: 0; font-size: .95rem; }

/* why us */
.why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}
.why__list li {
  display: flex;
  gap: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
}
.why__list .badge {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  flex: none;
}
.why__list .badge svg { width: 18px; height: 18px; }
.why__list strong { display: block; color: #fff; margin-bottom: 4px; }
.why__list span { color: #c2cbd6; font-size: .95rem; }

/* realizacje */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.case {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.case:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.case__img {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #1a2431, #2a3744);
  position: relative;
  overflow: hidden;
}
.case__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.case:hover .case__img img { transform: scale(1.04); }
.case__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(200px 100px at 30% 70%, rgba(184, 35, 42, .25), transparent 70%),
    linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, .55) 100%);
  z-index: 1;
}
.case__img-label {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.case__body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.case__meta {
  display: flex;
  gap: 12px;
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}
.case h3 { margin-bottom: 10px; }
.case p { color: var(--muted); margin: 0 0 18px; font-size: .95rem; flex: 1; }
.case__link {
  color: var(--accent);
  font-weight: 600;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.case__link::after {
  content: "→";
  transition: transform .2s var(--ease);
}
.case:hover .case__link::after { transform: translateX(4px); }

/* process */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.process__step {
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  position: relative;
}
.process__num {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--accent);
  font-size: .85rem;
  letter-spacing: .1em;
  margin-bottom: 10px;
}
.process__step h3 { font-size: 1.1rem; margin-bottom: 6px; }
.process__step p { color: var(--muted); font-size: .92rem; margin: 0; }

/* kontakt */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  margin-top: 48px;
}
.contact__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact__row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--cream);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex: none;
}
.contact__icon svg { width: 18px; height: 18px; }
.contact__row strong { display: block; margin-bottom: 2px; font-size: .95rem; }
.contact__row span, .contact__row a { color: var(--muted); font-size: .95rem; }
.contact__row a:hover { color: var(--accent); }
.contact__socials { display: flex; gap: 10px; margin-top: 6px; }
.contact__social {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--muted);
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.contact__social:hover { color: var(--accent); border-color: var(--accent); }
.contact__social svg { width: 18px; height: 18px; }
.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 420px;
}
.contact__map iframe { width: 100%; height: 100%; border: 0; display: block; min-height: 420px; }

/* sticky phone */
.phone-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(184, 35, 42, .4);
  z-index: 60;
  transition: transform .2s var(--ease);
}
.phone-fab:hover { transform: scale(1.05); }
.phone-fab svg { width: 22px; height: 22px; }

/* footer */
.footer {
  background: #0b1117;
  color: #c2cbd6;
  padding: 60px 0 28px;
}
.footer p { color: #ffffff; }
.footer a { color: #c2cbd6; }
.footer li { color: #c2cbd6; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  margin-bottom: 14px;
}
.footer__brand .logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #fff url("../img/logo.png") center/contain no-repeat;
  flex: none;
}
.footer h4 {
  color: #fff;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 18px;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer a:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  flex-wrap: wrap;
  gap: 10px;
}

/* case detail page */
.case-hero {
  background: linear-gradient(180deg, #0d141c 0%, #141f2b 100%);
  color: #fff;
  padding: 100px 0 60px;
}
.case-hero .breadcrumb {
  font-size: .85rem;
  color: #8e99a7;
  margin-bottom: 20px;
}
.case-hero .breadcrumb a { color: #c2cbd6; }
.case-hero .breadcrumb a:hover { color: #fff; }
.case-hero h1 { color: #fff; margin-bottom: 14px; }
.case-hero__meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.case-hero__meta div strong {
  display: block;
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.05rem;
}
.case-hero__meta div span { color: #8e99a7; font-size: .85rem; }

.case-body {
  max-width: 820px;
  margin: 0 auto;
}
.case-body h2 {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 2px solid var(--cream);
  font-size: 1.6rem;
}
.case-body h2:first-child { margin-top: 0; padding-top: 0; border: 0; }
.case-body ul { padding-left: 20px; }
.case-body ul li { margin-bottom: 8px; }
.case-body blockquote {
  border-left: 4px solid var(--accent);
  padding: 12px 20px;
  margin: 24px 0;
  color: var(--ink);
  background: var(--cream);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
}
.case-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0;
}
.case-gallery__ph {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1a2431, #2a3744);
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
}
.case-gallery__ph::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .5);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.case-gallery a,
.case-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.case-gallery a { overflow: hidden; }
.case-gallery a:hover img { transform: scale(1.04); }
.case-gallery a:hover { box-shadow: var(--shadow-md); }
.cta-band {
  background: var(--graphite);
  color: #fff;
  padding: 48px;
  border-radius: var(--radius);
  margin-top: 64px;
  text-align: center;
}
.cta-band h3 { color: #fff; font-size: 1.6rem; margin-bottom: 10px; }
.cta-band p { color: #c2cbd6; max-width: 52ch; margin: 0 auto 24px; }

/* realizacje index page */
.cases-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

/* responsive */
@media (max-width: 960px) {
  .hero__trust { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why { grid-template-columns: 1fr; gap: 32px; }
  .cases-grid, .cases-list { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .contact { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .case-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  html, body { overflow-x: hidden; }
  .container { padding-left: 20px; padding-right: 20px; }

  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px 20px 24px;
    border-bottom: 1px solid var(--line);
    display: none;
  }
  .nav.is-open .nav__links { display: flex; }
  .nav__burger { display: block; }
  .nav__phone span { display: none; }
  .nav__cta .btn--primary { display: none; }

  /* center alignment on mobile */
  .hero { text-align: center; }
  .hero__grid { text-align: center; }
  .hero__cta { justify-content: center; }
  .hero__trust { grid-template-columns: 1fr; gap: 18px; justify-items: center; }
  .hero__lead { margin-left: auto; margin-right: auto; }
  .hero .eyebrow { justify-content: center; }

  #uslugi > .container > .eyebrow,
  #uslugi > .container > h2,
  #uslugi > .container > .lead,
  #jak-pracujemy > .container > .eyebrow,
  #jak-pracujemy > .container > h2,
  #kontakt > .container > .eyebrow,
  #kontakt > .container > h2,
  #kontakt > .container > .lead {
    text-align: center;
  }
  #uslugi > .container > .eyebrow,
  #jak-pracujemy > .container > .eyebrow,
  #kontakt > .container > .eyebrow { justify-content: center; }
  #uslugi > .container > .lead,
  #kontakt > .container > .lead { margin-left: auto; margin-right: auto; }

  #realizacje > .container > div:first-child { text-align: center; flex-direction: column; align-items: center; }
  #realizacje > .container > div:first-child .eyebrow { justify-content: center; }
  #realizacje > .container > div:first-child .lead { margin-left: auto; margin-right: auto; }

  .why > div:first-child { text-align: center; }
  .why > div:first-child .eyebrow { justify-content: center; }

  .process__step { text-align: center; }

  .case-hero { text-align: center; }
  .case-hero .breadcrumb { text-align: center; }
  .case-hero__meta { justify-content: center; }

  /* keep card internals left-aligned */
  .service, .case, .case__body, .contact__card, .why__list li { text-align: left; }
  .why__list li { align-items: flex-start; }
}
@media (max-width: 560px) {
  .services-grid, .cases-grid, .cases-list, .reviews-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .case-gallery { grid-template-columns: 1fr; }
  .cta-band { padding: 32px 24px; }
  .reviews__head { flex-direction: column; align-items: flex-start; }
  .reviews__summary { align-items: flex-start; }
}

/* reviews */
.reviews__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
}
.reviews__summary {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.reviews__score {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.reviews__score strong {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--ink);
}
.reviews__stars {
  display: inline-flex;
  gap: 2px;
  color: #f5b400;
  font-size: 1.1rem;
  letter-spacing: 1px;
}
.reviews__score span {
  font-size: .85rem;
  color: var(--muted);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.review:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.review__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.review__author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--ink);
}
.review__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
}
.review__stars {
  color: #f5b400;
  font-size: .95rem;
  letter-spacing: 1px;
}
.review__text {
  color: var(--ink);
  font-size: .98rem;
  line-height: 1.55;
  margin: 0;
}
.review__date {
  font-size: .8rem;
  color: var(--muted);
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}
.review__date::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'><path fill='%234285F4' d='M24 9.5c3.54 0 6.71 1.22 9.21 3.6l6.85-6.85C35.9 2.38 30.47 0 24 0 14.62 0 6.51 5.38 2.56 13.22l7.98 6.19C12.43 13.72 17.74 9.5 24 9.5z'/><path fill='%2334A853' d='M46.98 24.55c0-1.57-.15-3.09-.38-4.55H24v9.02h12.94c-.58 2.96-2.26 5.48-4.78 7.18l7.73 6c4.51-4.18 7.09-10.36 7.09-17.65z'/><path fill='%23FBBC05' d='M10.53 28.59c-.48-1.45-.76-2.99-.76-4.59s.27-3.14.76-4.59l-7.98-6.19C.92 16.46 0 20.12 0 24c0 3.88.92 7.54 2.56 10.78l7.97-6.19z'/><path fill='%23EA4335' d='M24 48c6.48 0 11.93-2.13 15.89-5.81l-7.73-6c-2.15 1.45-4.92 2.3-8.16 2.3-6.26 0-11.57-4.22-13.47-9.91l-7.98 6.19C6.51 42.62 14.62 48 24 48z'/></svg>") center/contain no-repeat;
}
.reviews__empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  padding: 40px 0;
  margin: 0;
}
@media (max-width: 400px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .nav__brand small { display: none; }
  .nav__brand { font-size: .95rem; gap: 10px; }
  .nav__brand .logo { width: 40px; height: 40px; }
}

/* lightbox */
.lb {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: lbFade .15s ease-out;
}
.lb.is-open { display: flex; }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lb__stage {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 64px 80px;
  box-sizing: border-box;
}
.lb__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  cursor: zoom-in;
  transition: transform .15s ease;
  transform-origin: center center;
}
.lb__close,
.lb__prev,
.lb__next {
  position: absolute;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .18);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, transform .15s;
  font-family: inherit;
}
.lb__close { font-size: 32px; }
.lb__close:hover,
.lb__prev:hover,
.lb__next:hover {
  background: rgba(255, 255, 255, .2);
}
.lb__close { top: 24px; right: 24px; }
.lb__prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb__next { right: 24px; top: 50%; transform: translateY(-50%); }
.lb__prev:hover { transform: translateY(-50%) scale(1.05); }
.lb__next:hover { transform: translateY(-50%) scale(1.05); }
.lb__counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .75);
  font-size: .85rem;
  letter-spacing: .08em;
  background: rgba(0, 0, 0, .4);
  padding: 6px 14px;
  border-radius: 999px;
}
@media (max-width: 720px) {
  .lb__stage { padding: 56px 12px; }
  .lb__close { top: 12px; right: 12px; width: 40px; height: 40px; font-size: 26px; }
  .lb__prev { left: 8px; width: 40px; height: 40px; font-size: 18px; }
  .lb__next { right: 8px; width: 40px; height: 40px; font-size: 18px; }
}
