:root {
  --c: #00aeef;
  --m: #ec008c;
  --y: #ffd100;
  --k: #111111;
  --ink: #161616;
  --muted: #5a5a5a;
  --line: #e6e6e6;
  --bg: #f7f7f5;
  --card: #ffffff;
  --radius: 18px;
  --shadow: 0 12px 32px rgba(17, 17, 17, 0.08);
  --max: 1120px;
  --header: 80px;
  --font: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--card);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
}
.skip:focus {
  left: 8px;
  z-index: 100;
  background: #fff;
  padding: 8px 12px;
}

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}
.brand img,
.footer .logo {
  width: min(180px, 58vw);
  height: auto;
  aspect-ratio: 572 / 178;
  object-fit: contain;
  object-position: left center;
}
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav a:hover { color: var(--m); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-k { background: var(--k); color: #fff; }
.btn-m { background: var(--m); color: #fff; }
.btn-ghost {
  background: #fff;
  color: var(--k);
  border: 1px solid var(--line);
}
.btn-ghost-dark {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.28);
}
.menu-btn {
  display: none;
  background: none;
  border: 0;
  width: 42px;
  height: 42px;
  padding: 8px;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  display: block;
  height: 2px;
  background: var(--k);
  position: relative;
  content: "";
}
.menu-btn span:before { top: -8px; }
.menu-btn span:after { top: 6px; }

.hero-banner {
  position: relative;
  min-height: min(72vh, 620px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}
.hero-banner-media,
.hero-banner-scrim {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity 1.1s ease;
}
.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}
.hero-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 68%;
}
.hero-slide:nth-child(2) img { object-position: 58% 48%; }
.hero-slide:nth-child(3) img { object-position: 62% 46%; }
.hero-slider-dots {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}
.hero-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}
.hero-dot.is-active {
  width: 22px;
  background: #fff;
}
.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(17, 17, 17, 0.42);
  backdrop-filter: blur(8px);
  cursor: pointer;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
}
.hero-arrow:hover,
.hero-arrow:focus-visible {
  background: rgba(17, 17, 17, 0.72);
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.hero-arrow-prev { left: 14px; }
.hero-arrow-next { right: 14px; }
.hero-arrow svg { width: 18px; height: 18px; display: block; }
.hero-slider-dots {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}
.hero-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}
.hero-dot.is-active {
  width: 22px;
  background: #fff;
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
}
.hero-banner-scrim {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.82) 0%, rgba(17, 17, 17, 0.42) 46%, rgba(17, 17, 17, 0.12) 100%),
    linear-gradient(180deg, rgba(17, 17, 17, 0.15) 0%, rgba(17, 17, 17, 0.35) 100%);
}
.hero-banner-copy {
  position: relative;
  z-index: 2;
  padding: 88px 0 48px;
}
.hero-banner-copy > * { max-width: 36rem; }
.hero-banner .kicker { color: rgba(255, 255, 255, 0.82); }
.hero-banner h1 {
  margin: 12px 0 10px;
  font-size: clamp(2.2rem, 5.4vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: #fff;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}
.hero-banner p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  max-width: 46ch;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.cmyk-dots { display: flex; gap: 5px; }
.cmyk-dots i {
  width: 10px;
  height: 10px;
  border-radius: 3px;
}
.cmyk-dots i:nth-child(1) { background: var(--c); }
.cmyk-dots i:nth-child(2) { background: var(--y); }
.cmyk-dots i:nth-child(3) { background: var(--m); }
.cmyk-dots i:nth-child(4) { background: var(--k); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.section { padding: 64px 0; }
.section h2 {
  margin: 0 0 8px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
}
.lead { color: var(--muted); margin: 0 0 28px; max-width: 60ch; }

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.focus {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 22px;
}
.focus h3 { margin: 0 0 8px; font-size: 1.15rem; letter-spacing: -0.02em; }
.focus p { margin: 0; color: var(--muted); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.service {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  min-height: 148px;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.service:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.service img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service div { padding: 18px 18px 16px; }
.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--m);
  margin-bottom: 6px;
}
.service h3 { margin: 0 0 6px; font-size: 1.12rem; letter-spacing: -0.02em; }
.service p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.dark {
  background: var(--k);
  color: #fff;
}
.dark .lead { color: #c8c8c8; }
.catalog-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  min-height: 320px;
}
.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.mosaic img:first-child { grid-row: 1 / 3; }

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
}
.panel {
  background: var(--bg);
  border-radius: 22px;
  padding: 22px;
}
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { padding: 12px 0; border-bottom: 1px solid var(--line); }
.contact-list a { color: var(--m); font-weight: 700; text-decoration: none; }
.map {
  margin-top: 18px;
  border: 0;
  border-radius: 16px;
  width: 100%;
  height: 220px;
  filter: grayscale(0.2);
}
form { display: grid; gap: 12px; }
label { font-weight: 600; font-size: 0.92rem; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  background: #fff;
}
textarea { min-height: 110px; resize: vertical; }

.footer {
  background: var(--k);
  color: #fff;
  padding: 36px 0 18px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 24px;
}
.footer a { color: #fff; text-decoration: none; }
.footer a:hover { color: var(--y); }
.tiny { color: #bdbdbd; font-size: 0.9rem; }
.copy {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: #9a9a9a;
  font-size: 0.85rem;
}

.wa {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.2);
}
.wa svg { width: 28px; height: 28px; fill: currentColor; }

@media (max-width: 900px) {
  .focus-grid,
  .grid-2,
  .catalog-split,
  .contact-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .service { grid-template-columns: 110px 1fr; }
  .hero-banner { min-height: 70vh; }
  .hero-banner-media img { object-position: 70% 45%; }
  .hero-slide:nth-child(2) img { object-position: 62% 42%; }
  .hero-slide:nth-child(3) img { object-position: 70% 40%; }
}
@media (max-width: 720px) {
  .nav {
    display: none;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 16px;
    gap: 12px;
  }
  .nav.is-open { display: flex; }
  .menu-btn { display: inline-flex; align-items: center; justify-content: center; }
  .hero-banner-copy { padding: 56px 0 36px; }
  .hero-arrow {
    width: 38px;
    height: 38px;
  }
  .hero-arrow-prev { left: 8px; }
  .hero-arrow-next { right: 8px; }
  .hero-banner-scrim {
    background:
      linear-gradient(180deg, rgba(17, 17, 17, 0.2) 0%, rgba(17, 17, 17, 0.78) 100%);
  }
  .mosaic { min-height: 240px; }
}
