:root {
  --ink: #0f1011;
  --muted: #3b3b3d;
  --soft: #8f9096;
  --paper: #f1f1f1;
  --line: #d8d8d8;
  --blue: #1537ee;
  --lime: #ecff1c;
  --aqua: #1bbfd2;
  --radius: 40px;
  --max: 1710px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: Archivo, Arial, sans-serif;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.section-pad,
.site-header {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  min-height: 138px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.logo {
  position: relative;
  min-width: 155px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 40px;
  letter-spacing: 0;
  line-height: 1;
}

.logo span {
  display: inline-grid;
  width: 67px;
  height: 73px;
  margin-right: 8px;
  place-items: center;
  color: white;
  background: var(--blue);
  border: 3px solid #d2d2d2;
  border-radius: 10px;
}

.image-logo {
  display: inline-flex;
  align-items: center;
  min-width: 160px;
}

.image-logo img {
  width: auto;
  max-width: 180px;
  max-height: 74px;
  object-fit: contain;
}

.desktop-nav,
.header-actions,
.language,
.row {
  display: flex;
  align-items: center;
}

.desktop-nav {
  gap: 30px;
  margin-left: auto;
  color: var(--muted);
  font-size: 18px;
}

.desktop-nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 700;
}

.header-actions {
  gap: 28px;
}

.language {
  gap: 18px;
}

.language button,
.menu-button {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.language .active {
  color: var(--ink);
  font-weight: 700;
}

.pill,
.discover {
  border-radius: 170px;
  white-space: nowrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  font-weight: 600;
}

.pill.dark {
  color: var(--paper);
  background: var(--ink);
}

.pill.light {
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
}

.menu-button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  gap: 7px;
}

.menu-button span {
  width: 32px;
  height: 2px;
  background: var(--ink);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 1035px;
  font-size: clamp(64px, 7.2vw, 130px);
  line-height: 0.94;
  font-weight: 500;
}

h2 {
  font-size: clamp(44px, 5vw, 90px);
  line-height: 1.05;
  font-weight: 500;
}

h1 span,
h2 span,
h3 span,
.eyebrow span,
.hero-tail span,
.footer span {
  color: var(--soft);
}

.eyebrow {
  color: var(--muted);
  font-size: clamp(24px, 2.1vw, 38px);
  line-height: 1.3;
  font-weight: 500;
}

.strong-note {
  color: var(--muted);
  font-size: 22px;
  font-weight: 700;
}

.discover {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px;
  color: var(--ink);
  background: var(--ink);
  width: fit-content;
}

.discover span {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 30px;
  background: var(--paper);
  border-radius: 170px;
  font-size: 20px;
  font-weight: 600;
}

.discover i {
  display: grid;
  width: 52px;
  height: 54px;
  place-items: center;
  color: var(--paper);
  font-size: 26px;
  font-style: normal;
}

.store-cta {
  align-items: center;
  gap: 10px;
  padding: 4px;
}

.store-cta svg {
  width: 74px;
  height: 74px;
  padding: 19px;
  fill: var(--paper);
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.store-cta span {
  min-height: 92px;
  padding-inline: 56px;
  font-size: 36px;
}

.store-cta i {
  width: 86px;
  height: 92px;
  font-size: 42px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 405px;
  gap: 48px;
  padding-top: 104px;
}

.hero-copy {
  display: grid;
  gap: 38px;
}

.hero-note {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 36px;
  padding-top: 130px;
}

.hero-note p {
  max-width: 350px;
  font-size: 28px;
  line-height: 1.35;
  font-weight: 500;
}

.stamp {
  width: 154px;
  height: 154px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-14deg);
}

.hero-media {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: end;
}

.hero-media figure {
  margin: 0;
}

.hero-media img {
  height: 52vw;
  max-height: 884px;
  min-height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
}

.pool-stack img {
  height: 31vw;
  max-height: 520px;
  min-height: 300px;
}

figcaption {
  margin-top: 18px;
  color: var(--muted);
  font-size: 20px;
}

.hero-tail {
  grid-column: 2;
  font-size: clamp(48px, 5vw, 90px);
  line-height: 1.05;
  font-weight: 500;
}

.quote-band,
.about,
.services,
.why,
.team,
.projects,
.testimonials,
.blog,
.contact,
.footer {
  padding-top: 140px;
}

.first-section {
  padding-top: 92px;
}

.quote-heading,
.section-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: 48px;
  align-items: end;
}

.quote-heading h2,
.section-title h2 {
  grid-column: 1;
}

.section-copy {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.quote-heading .section-copy,
.quote-band > .section-copy {
  max-width: 530px;
  margin-left: auto;
  margin-top: -80px;
}

.quote-panel {
  margin-top: 86px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 58px;
  padding: 72px;
  background: #e5e5e5;
  border-radius: var(--radius);
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
  align-content: start;
}

.quote-form label {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 20px;
}

.quote-form .full {
  grid-column: 1 / -1;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 62px;
  border: 0;
  border-radius: 6px;
  padding: 0 20px;
  color: var(--soft);
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.quote-form textarea {
  min-height: 152px;
  padding-top: 18px;
  resize: vertical;
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: center;
  color: var(--muted);
  font-size: 18px;
}

.consent input {
  width: 27px;
  min-height: 27px;
  box-shadow: none;
}

.submit {
  border: 0;
  cursor: pointer;
}

.quote-image {
  display: grid;
  align-content: space-between;
  gap: 42px;
}

.quote-image h3 {
  font-size: clamp(46px, 5vw, 90px);
  line-height: 1.05;
  font-weight: 500;
}

.quote-image img,
.about-image img,
.why-image img,
.contact img {
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.about {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 95px;
  align-items: center;
}

.about-store-cta {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 22px;
}

.about-image {
  position: relative;
}

.about-image img {
  min-height: 640px;
}

.about-image p {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 40px;
  color: var(--paper);
  font-size: 20px;
}

.about-copy {
  display: grid;
  gap: 38px;
}

.about-copy .eyebrow {
  justify-self: center;
  text-align: center;
}

.about-copy .eyebrow span {
  color: var(--blue);
}

.about-copy h1 {
  font-size: clamp(32px, 3.6vw, 65px);
  line-height: 1.08;
}

.about-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-left: auto;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.check-list {
  display: grid;
  gap: 24px;
  padding: 0;
  margin: 0 0 12px auto;
  width: min(100%, 520px);
  list-style: none;
}

.about-copy .check-list {
  width: min(100%, 620px);
}

.check-list li {
  position: relative;
  padding-left: 30px;
  font-size: 22px;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
  transform: rotate(-45deg);
}

.stats-strip {
  width: 100%;
  margin-top: 150px;
  padding: 56px max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.stats-strip div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
}

.stats-strip strong {
  font-size: clamp(42px, 4vw, 70px);
  font-weight: 500;
}

.stats-strip span {
  max-width: 160px;
  color: var(--muted);
  line-height: 1.35;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 80px;
}

.service-card,
.team-grid article,
.project-card,
.blog-grid article,
.testimonial-card {
  overflow: hidden;
  background: var(--paper);
  border-radius: var(--radius);
}

.service-card {
  min-height: 430px;
  display: grid;
  align-content: end;
}

.service-card img {
  height: 320px;
  object-fit: cover;
}

.service-card h3 {
  padding: 28px;
  font-size: 28px;
  line-height: 1.18;
  font-weight: 500;
}

.service-card.feature {
  background: var(--lime);
}

.service-card.feature img {
  height: 380px;
}

.service-card.feature div {
  padding: 34px;
}

.service-card.feature p {
  margin-bottom: 12px;
  font-size: 32px;
  font-weight: 500;
}

.service-card.feature h3 {
  padding: 0;
  max-width: 480px;
  font-size: clamp(34px, 3vw, 58px);
}

.service-offer {
  align-content: stretch;
}

.service-offer div {
  display: grid;
  gap: 16px;
  align-content: start;
}

.service-offer h3 {
  font-size: clamp(30px, 2.4vw, 44px);
  line-height: 1.05;
}

.service-offer ul {
  display: grid;
  gap: 8px;
  min-height: 132px;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1.35;
}

.service-offer strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.2;
  text-transform: uppercase;
}

.why {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 55px;
  align-items: start;
}

.why h2 {
  max-width: 720px;
}

.why .section-copy {
  max-width: 470px;
  margin-top: 32px;
}

.why-image {
  height: 560px;
  background: var(--aqua);
  border-radius: var(--radius);
}

.why-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-list article {
  padding: 38px;
  border-top: 1px solid var(--line);
}

.why-list span {
  display: block;
  margin-bottom: 40px;
  font-size: 38px;
  font-weight: 500;
}

.why-list h3 {
  margin-bottom: 14px;
  font-size: 38px;
  font-weight: 500;
}

.why-list p {
  color: var(--muted);
  line-height: 1.55;
}

.section-title.row {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.team-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 72px;
}

.team-grid article {
  background: var(--paper);
}

.team-grid img {
  height: 520px;
  object-fit: cover;
  object-position: center top;
}

.team-grid h3,
.team-grid p,
.blog-grid h3,
.blog-grid p {
  padding-inline: 28px;
}

.team-grid h3 {
  padding-top: 28px;
  font-size: 28px;
  font-weight: 500;
}

.team-grid p {
  padding-top: 8px;
  padding-bottom: 30px;
  color: var(--muted);
}

.project-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.75fr;
  gap: 24px;
}

.project-card {
  position: relative;
  min-height: 520px;
}

.project-card img {
  height: 100%;
  object-fit: cover;
}

.project-card div {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  background: var(--lime);
  border-radius: 22px;
}

.project-card p {
  max-width: 320px;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 500;
}

.project-card a {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: white;
  background: var(--ink);
  border-radius: 50%;
}

.project-card.metric {
  min-height: 250px;
  padding: 36px;
  display: grid;
  align-content: end;
}

.project-card.metric strong {
  font-size: 64px;
  font-weight: 500;
}

.project-card.metric span {
  color: var(--muted);
}

.testimonial-card {
  max-width: 980px;
  margin: 72px auto 0;
  padding: clamp(34px, 5vw, 72px);
  background: var(--lime);
}

.testimonial-card p {
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.16;
  font-weight: 500;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
  margin-top: 28px;
}

.testimonial-card span {
  margin-top: 6px;
  color: var(--muted);
}

.blog-grid {
  grid-template-columns: repeat(2, 1fr);
}

.blog-grid img {
  height: 430px;
  object-fit: cover;
}

.blog-grid p {
  padding-top: 28px;
  color: var(--muted);
}

.blog-grid h3 {
  padding-top: 10px;
  padding-bottom: 36px;
  font-size: 38px;
  line-height: 1.1;
  font-weight: 500;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.contact img {
  min-height: 520px;
}

.footer {
  padding-bottom: 54px;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 80px;
}

.footer h2 {
  max-width: 430px;
  font-size: 38px;
  line-height: 1.3;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-top: 84px;
  color: var(--muted);
  font-size: 20px;
}

.footer address {
  display: grid;
  gap: 24px;
  align-content: start;
  padding-top: 12px;
  border-top: 2px solid rgba(15, 16, 17, 0.5);
  color: var(--muted);
  font-style: normal;
  font-size: 22px;
}

.footer address a {
  color: var(--ink);
  font-weight: 600;
}

.map-link {
  display: inline-flex;
  margin-left: 14px;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
}

.social-links svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.store-page,
.product-page {
  padding-top: 92px;
  padding-bottom: 96px;
}

.store-hero {
  display: grid;
  gap: 26px;
  max-width: 1060px;
}

.store-hero h1 {
  max-width: none;
  font-size: clamp(32px, 3.6vw, 65px);
  line-height: 1.08;
}

.store-hero h1 span {
  display: block;
  color: var(--ink);
  white-space: nowrap;
}

html[data-language="ru"] .store-hero h1 {
  font-size: clamp(26px, 2.9vw, 52px);
}

.store-shell {
  margin-top: 72px;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.category-tabs button {
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--muted);
  cursor: pointer;
}

.category-tabs button.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.store-toolbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 18px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.store-card {
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.store-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 16, 17, 0.28);
  box-shadow: 0 24px 70px rgba(15, 16, 17, 0.12);
}

.store-card a {
  display: grid;
  height: 100%;
  grid-template-rows: 310px 1fr;
}

.store-card img {
  height: 100%;
  padding: 28px;
  object-fit: contain;
  background: var(--paper);
}

.store-card div {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 24px;
}

.store-card p {
  color: var(--soft);
  font-size: 15px;
}

.store-card h2 {
  min-height: 74px;
  font-size: 28px;
  line-height: 1.15;
}

.store-card strong {
  margin-top: 10px;
  font-size: 30px;
  font-weight: 600;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 56px;
  align-items: start;
}

.product-media-panel,
.product-info-panel,
.missing-product {
  border-radius: var(--radius);
}

.product-media-panel {
  display: grid;
  gap: 24px;
}

.product-media-panel img {
  width: 100%;
  min-height: 620px;
  max-height: 720px;
  padding: clamp(24px, 4vw, 64px);
  object-fit: contain;
  background: var(--paper);
  border-radius: var(--radius);
}

.product-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.product-actions .pill {
  min-height: 58px;
  text-align: center;
}

.disabled-link {
  color: var(--soft);
  background: var(--paper);
  cursor: not-allowed;
}

.product-info-panel {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 30px;
  padding: clamp(28px, 4vw, 56px);
  background: var(--lime);
}

.product-info-panel h1 {
  font-size: clamp(48px, 5vw, 86px);
  line-height: 1;
}

.product-price {
  width: fit-content;
  padding: 18px 26px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: clamp(34px, 3vw, 56px);
  font-weight: 600;
}

.stock-status {
  margin-top: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(15, 16, 17, 0.18);
  color: var(--ink);
  font-size: 28px;
  font-weight: 700;
}

.missing-product {
  display: grid;
  gap: 28px;
  padding: clamp(34px, 6vw, 90px);
  background: var(--paper);
}

@media (max-width: 1180px) {
  .desktop-nav,
  .language {
    display: none;
  }

  .desktop-nav.is-open {
    position: fixed;
    z-index: 20;
    inset: 104px 24px auto;
    display: grid;
    gap: 18px;
    padding: 28px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(15, 16, 17, 0.16);
  }

  .hero,
  .quote-heading,
  .about,
  .why,
  .contact,
  .product-detail,
  .footer {
    grid-template-columns: 1fr;
  }

  .about-store-cta {
    grid-column: auto;
    margin-top: 22px;
  }

  .hero-note {
    padding-top: 0;
    justify-items: start;
  }

  .hero-media,
  .service-grid,
  .team-grid,
  .project-grid,
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .quote-band > .section-copy {
    max-width: 720px;
    margin: 28px 0 0;
  }

  .quote-panel {
    grid-template-columns: 1fr;
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-info-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .section-pad,
  .site-header {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    min-height: 104px;
  }

  .logo {
    min-width: 116px;
    font-size: 30px;
  }

  .logo span {
    width: 52px;
    height: 58px;
  }

  .image-logo img {
    max-width: 138px;
    max-height: 58px;
  }

  .header-actions .pill {
    display: none;
  }

  .hero,
  .quote-band,
  .about,
  .services,
  .why,
  .team,
  .projects,
  .testimonials,
  .blog,
  .contact,
  .footer {
    padding-top: 82px;
  }

  .hero-media,
  .service-grid,
  .team-grid,
  .project-grid,
  .blog-grid,
  .why-list,
  .quote-form,
  .stats-strip,
  .product-grid,
  .product-actions {
    grid-template-columns: 1fr;
  }

  .hero-tail {
    grid-column: auto;
  }

  .hero-media img,
  .pool-stack img,
  .about-image img,
  .why-image,
  .team-grid img,
  .blog-grid img,
  .contact img {
    min-height: 300px;
    height: auto;
    aspect-ratio: 1 / 0.78;
  }

  .quote-panel {
    padding: 20px;
    border-radius: 24px;
  }

  .quote-form .full {
    grid-column: auto;
  }

  .stats-strip {
    margin-top: 82px;
  }

  .service-card.feature {
    grid-row: auto;
  }

  .service-card.feature img,
  .service-card img {
    height: auto;
    aspect-ratio: 1 / 0.74;
  }

  .project-card {
    min-height: 420px;
  }

  .project-card div {
    flex-direction: column;
    align-items: start;
  }

  .store-page,
  .product-page {
    padding-top: 58px;
  }

  .store-cta {
    gap: 4px;
  }

  .store-cta svg {
    width: 58px;
    height: 58px;
    padding: 15px;
  }

  .store-cta span {
    min-height: 68px;
    padding-inline: 28px;
    font-size: 24px;
  }

  .store-cta i {
    width: 58px;
    height: 68px;
    font-size: 30px;
  }

  .about-copy .eyebrow {
    justify-self: start;
    text-align: left;
  }

  .store-hero h1 {
    white-space: normal;
  }

  .store-hero h1 span {
    white-space: normal;
  }

  .store-card a {
    grid-template-rows: 260px 1fr;
  }

  .product-media-panel img {
    min-height: 360px;
  }
}
