:root {
  color-scheme: light;
  --brand-red: #d90000;
  --brand-black: #111111;
  --brand-charcoal: #1c1c1c;
  --brand-paper: #f5f5f3;
  --brand-white: #ffffff;
  --brand-line: rgba(17, 17, 17, 0.08);
  --brand-shadow: 0 18px 50px rgba(17, 17, 17, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--brand-black);
  background: var(--brand-white);
}

.site-topbar {
  background: #111111;
  color: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-topbar__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0.55rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1rem;
}

.site-topbar__contact,
.site-topbar__social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.85rem;
}

.site-topbar__contact a,
.site-topbar__social a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.82);
}

.site-topbar__contact a {
  min-height: 1.9rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  gap: 0.5rem;
}

.site-topbar__contact a i {
  width: 1.05rem;
  flex: 0 0 1.05rem;
  font-size: 1.05rem;
  line-height: 1;
  text-align: center;
}

.site-topbar__contact a span {
  font-size: 0.78rem;
  line-height: 1;
}

.site-topbar__service {
  min-height: 1.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.site-topbar__service > i {
  width: 1.05rem;
  flex: 0 0 1.05rem;
  font-size: 1.05rem;
  text-align: center;
}

.site-topbar__contact svg {
  width: 0.82rem;
  height: 0.82rem;
  fill: currentColor;
  flex: 0 0 auto;
}

.site-topbar__social a {
  width: 1.9rem;
  height: 1.9rem;
  justify-content: center;
  border-radius: 0;
  background: transparent;
  border: 0;
  color: var(--brand-white);
  font-size: 1.3rem;
}

.site-topbar__social a:hover {
  background: transparent;
}

.site-topbar__social svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: currentColor;
  flex: 0 0 auto;
}

.site-topbar__contact a:hover,
.site-topbar__social a:hover {
  color: var(--brand-white);
}

.site-topbar__social {
  margin-left: auto;
}

.site-topbar__social a:not([aria-label="Instagram"]) {
  display: none;
}

.site-topbar__social span {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
}

.site-topbar__social-label {
  margin-right: 0.2rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--brand-line);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.08);
}

.site-header__inner {
  position: relative;
  min-width: 0;
  max-width: 1440px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-brand__logo {
  height: 3rem;
  width: auto;
  transform: scale(2.1);
  transform-origin: left center;
}

.site-nav {
  display: none;
  flex: 1;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 0.95rem;
}

.site-nav__link,
.site-nav__toggle {
  position: relative;
  min-height: 2.25rem;
  padding: 0.5rem 0;
  display: inline-flex;
  align-items: center;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.72);
}

.site-nav__toggle {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  gap: 0.35rem;
}

.site-nav__toggle--mega {
  gap: 0.5rem;
}

.site-nav__toggle--mega::before {
  display: none;
}

.site-nav__toggle::before {
  content: '';
  width: 0.38rem;
  height: 0.38rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-0.05rem);
  transition: transform 160ms ease;
}

.site-nav__group.is-open .site-nav__toggle::before,
.site-nav__group:focus-within .site-nav__toggle::before {
  transform: rotate(-135deg) translateY(0.08rem);
}

.site-nav__toggle-icon {
  transition: transform 160ms ease;
}

.site-nav__group.is-open .site-nav__toggle-icon,
.site-nav__group:hover .site-nav__toggle-icon,
.site-nav__group:focus-within .site-nav__toggle-icon {
  transform: rotate(180deg);
}

.site-nav__link::after,
.site-nav__toggle::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.2rem;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after,
.site-nav__toggle:hover::after,
.site-nav__toggle.is-active::after,
.site-nav__group:focus-within .site-nav__toggle::after {
  transform: scaleX(1);
}

.site-nav__group {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.site-nav__group--mega {
  position: static;
}

.site-nav__dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  min-width: 18rem;
  padding: 0.65rem;
  border: 1px solid var(--brand-line);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--brand-shadow);
  display: grid;
  gap: 0.3rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.35rem);
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 5;
}

.site-nav__group.is-open .site-nav__dropdown,
.site-nav__group:hover .site-nav__dropdown,
.site-nav__group:focus-within .site-nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav__dropdown a {
  padding: 0.8rem 0.95rem;
  border-radius: 0.9rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.78);
}

.site-nav__dropdown a:hover {
  background: rgba(217, 0, 0, 0.06);
  color: var(--brand-red);
}

.site-nav__group--mega .site-nav__mega {
  position: absolute;
  top: calc(100% + 0.2rem);
  left: 1.5rem;
  right: 1.5rem;
  width: auto;
  transform: translateY(0.55rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(29rem, 1.12fr);
  height: clamp(19rem, 40vh, 20.5rem);
  box-sizing: border-box;
  gap: 0.8rem;
  padding: 0.8rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 28px 70px rgba(17, 17, 17, 0.16);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 6;
}

.site-nav__group--mega.is-open .site-nav__mega,
.site-nav__group--mega:hover .site-nav__mega,
.site-nav__group--mega:focus-within .site-nav__mega {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav__mega-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  min-width: 0;
  min-height: 0;
  align-content: center;
  overflow: visible;
}

.site-nav__mega-category {
  min-width: 0;
  border-radius: 0.8rem;
  border: 1px solid rgba(17, 17, 17, 0.075);
  background: #f7f7f4;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.site-nav__mega-category:hover,
.site-nav__mega-category:focus-within,
.site-nav__mega-category.is-active {
  background: #ffffff;
  border-color: rgba(217, 0, 0, 0.24);
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.07);
  transform: translateY(-2px);
}

.site-nav__mega-category-link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.55rem;
  min-height: 3.15rem;
  box-sizing: border-box;
  padding: 0.5rem 0.7rem;
  border-radius: inherit;
  color: rgba(17, 17, 17, 0.86);
  transition: background-color 160ms ease, color 160ms ease;
}

.site-nav__mega-category-link span {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-red);
}

.site-nav__mega-category-link strong {
  overflow: hidden;
  font-size: 0.71rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  text-overflow: ellipsis;
}

.site-nav__mega-category-link i {
  font-size: 0.65rem;
  color: rgba(17, 17, 17, 0.3);
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav__mega-category:hover .site-nav__mega-category-link,
.site-nav__mega-category:focus-within .site-nav__mega-category-link,
.site-nav__mega-category.is-active .site-nav__mega-category-link {
  color: var(--brand-red);
}

.site-nav__mega-category:hover .site-nav__mega-category-link i,
.site-nav__mega-category:focus-within .site-nav__mega-category-link i,
.site-nav__mega-category.is-active .site-nav__mega-category-link i {
  color: var(--brand-red);
  transform: translateX(0.16rem);
}

.site-nav__mega-preview {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 0;
  height: 100%;
  border-radius: 0.95rem;
  background: var(--brand-black);
}

.site-nav__mega-preview img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
}

.site-nav__mega-preview::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.12), rgba(17, 17, 17, 0.92));
}

.site-nav__mega-copy {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 1;
  display: grid;
  gap: 0.25rem;
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 0.8rem;
  background: rgba(10, 10, 10, 0.64);
  backdrop-filter: blur(9px);
  color: var(--brand-white);
}

.site-nav__mega-copy p {
  margin: 0;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.82;
}

.site-nav__mega-copy h3 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  line-height: 1;
}

.site-nav__mega-copy span {
  font-size: 0.72rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

.site-nav__mega-detail-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.3rem;
  margin-top: 0.4rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.site-nav__mega-detail-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
  min-width: 0;
  min-height: 1.55rem;
  box-sizing: border-box;
  padding: 0.3rem 0.45rem;
  border-radius: 0.4rem;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.64rem;
  font-weight: 700;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.94);
  transition: color 160ms ease, background-color 160ms ease;
}

.site-nav__mega-detail-links a i {
  flex: 0 0 auto;
  font-size: 0.52rem;
  color: var(--brand-red);
}

.site-nav__mega-detail-links a:hover,
.site-nav__mega-detail-links a:focus-visible {
  color: #ffffff;
  background: rgba(217, 0, 0, 0.8);
}

@media (max-width: 1199px) {
  .site-nav__group--mega .site-nav__mega {
    left: 1rem;
    right: 1rem;
    width: auto;
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.9fr);
    overflow: visible;
  }

  .site-nav__mega-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-nav__mega-preview {
    min-height: 0;
  }

  .site-nav__mega-preview img {
    min-height: 0;
  }

  .site-nav__mega-category-link {
    gap: 0.45rem;
    padding: 0.45rem 0.55rem;
  }

  .site-nav__mega-category-link strong {
    font-size: 0.64rem;
  }
}

@media (min-width: 768px) and (max-width: 900px) {
  .site-nav__mega-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Compact products mega menu */
.site-nav__group--mega .site-nav__mega {
  top: calc(100% + 0.45rem);
  left: 50%;
  right: auto;
  width: min(78rem, calc(100vw - 2rem));
  height: auto;
  max-height: 32rem;
  grid-template-columns: 17.5rem minmax(0, 1fr);
  gap: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 1.25rem;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.12);
  visibility: hidden;
  transform: translate(-50%, 0.45rem);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}

.site-nav__group--mega.is-open .site-nav__mega {
  visibility: visible;
  transform: translate(-50%, 0);
}

.site-nav__group--mega:hover:not(.is-open) .site-nav__mega,
.site-nav__group--mega:focus-within:not(.is-open) .site-nav__mega {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 0.45rem);
}

.site-nav__mega-categories {
  display: grid;
  align-content: start;
  gap: 0.18rem;
  padding: 0.75rem;
  border-right: 1px solid rgba(17, 17, 17, 0.08);
  background: #fbfbfa;
}

.site-nav__mega-category {
  appearance: none;
  width: 100%;
  min-height: 2rem;
  display: grid;
  grid-template-columns: 1.25rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.4rem;
  padding: 0.38rem 0.5rem;
  border: 0;
  border-radius: 0.55rem;
  background: transparent;
  box-shadow: none;
  color: rgba(17, 17, 17, 0.72);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transform: none;
  transition: background-color 160ms ease, color 160ms ease;
}

.site-nav__mega-category:hover,
.site-nav__mega-category:focus-visible,
.site-nav__mega-category.is-active {
  border: 0;
  background: rgba(217, 0, 0, 0.055);
  box-shadow: none;
  color: var(--brand-red);
  outline: none;
  transform: none;
}

.site-nav__mega-category > i:first-of-type {
  font-size: 0.68rem;
  color: rgba(17, 17, 17, 0.38);
}

.site-nav__mega-category strong {
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.site-nav__mega-category > i:last-child {
  font-size: 0.55rem;
  color: rgba(17, 17, 17, 0.28);
  transition: color 160ms ease, transform 160ms ease;
}

.site-nav__mega-category:hover > i,
.site-nav__mega-category:focus-visible > i,
.site-nav__mega-category.is-active > i {
  color: var(--brand-red);
}

.site-nav__mega-category:hover > i:last-child,
.site-nav__mega-category:focus-visible > i:last-child,
.site-nav__mega-category.is-active > i:last-child {
  transform: translateX(0.15rem);
}

.site-nav__mega-content {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0.9rem;
  min-width: 0;
  padding: 1.15rem 1.25rem 1rem;
  background: #ffffff;
}

.site-nav__mega-content.is-changing {
  animation: megaContentIn 180ms ease both;
}

@keyframes megaContentIn {
  from { opacity: 0; transform: translateY(0.25rem); }
  to { opacity: 1; transform: translateY(0); }
}

.site-nav__mega-head {
  display: grid;
  gap: 0.35rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.site-nav__mega-head h3 {
  margin: 0;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-black);
}

.site-nav__mega-head p {
  max-width: 48rem;
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.55;
  color: rgba(17, 17, 17, 0.62);
}

.site-nav__mega-main {
  display: block;
  min-width: 0;
}

.site-nav__mega-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: stretch;
  gap: 0 0.8rem;
}

.site-nav__mega-product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  min-height: 2.8rem;
  padding: 0.5rem 0.2rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  color: var(--brand-black);
  transition: color 160ms ease;
}

.site-nav__mega-product-copy {
  display: block;
  min-width: 0;
}

.site-nav__mega-product strong {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 0.7rem;
  line-height: 1.3;
}

.site-nav__mega-product > i {
  font-size: 0.58rem;
  color: rgba(17, 17, 17, 0.3);
}

.site-nav__mega-product:hover,
.site-nav__mega-product:focus-visible {
  color: var(--brand-red);
}

@media (max-width: 1199px) {
  .site-nav__group--mega .site-nav__mega {
    left: 50%;
    right: auto;
    width: calc(100vw - 2rem);
    grid-template-columns: 15.5rem minmax(0, 1fr);
  }

  .site-nav__mega-category {
    grid-template-columns: 1.1rem minmax(0, 1fr) auto;
    padding-inline: 0.4rem;
  }

  .site-nav__mega-category strong {
    font-size: 0.61rem;
  }

  .site-nav__mega-content {
    padding-inline: 1rem;
  }

  .site-nav__mega-main {
    display: block;
  }
}

.site-header__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
}

.site-language {
  position: relative;
  flex: 0 0 auto;
}

.site-language__toggle {
  min-width: 4.45rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  padding: 0 0.7rem;
  border: 1px solid var(--brand-line);
  border-radius: 999px;
  background: #fff;
  color: var(--brand-black);
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.05);
}

.site-language__toggle strong {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.site-language__toggle > i {
  color: rgba(17, 17, 17, 0.42);
  font-size: 0.56rem;
  transition: transform 160ms ease;
}

.site-language.is-open .site-language__toggle > i {
  transform: rotate(180deg);
}

.site-language__flag,
.site-language__flag svg {
  width: 1.35rem;
  height: 0.9rem;
  display: block;
  flex: 0 0 auto;
}

.site-language__menu {
  position: absolute;
  top: calc(100% + 0.65rem);
  right: 0;
  z-index: 90;
  width: 11.5rem;
  padding: 0.45rem;
  border: 1px solid var(--brand-line);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 20px 50px rgba(17, 17, 17, 0.16);
}

.site-language__menu[hidden] {
  display: none;
}

.site-language__menu button {
  width: 100%;
  min-height: 3.15rem;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.75rem;
  border: 0;
  border-radius: 0.7rem;
  background: transparent;
  color: var(--brand-black);
  text-align: left;
}

.site-language__menu button:hover,
.site-language__menu button.is-active {
  background: rgba(217, 0, 0, 0.055);
  color: var(--brand-red);
}

.site-language__menu button span:not(.site-language__flag) {
  font-size: 0.72rem;
  font-weight: 800;
}

.site-language__menu button small {
  color: rgba(17, 17, 17, 0.52);
  font-size: 0.68rem;
}

.site-phone,
.site-cta,
.site-mobile__cta,
.site-mobile__phone,
.btn,
.floating-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.site-phone {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.12rem;
  min-width: 9.5rem;
  padding: 0.7rem 1rem;
  background: rgba(17, 17, 17, 0.03);
  border: 1px solid var(--brand-line);
  line-height: 1.05;
}

.site-phone__label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.55);
}

.site-phone__icon {
  width: 0.85rem;
  height: 0.85rem;
  color: var(--brand-red);
  flex: 0 0 auto;
}

.site-phone strong {
  font-size: 0.8rem;
  font-weight: 700;
}

.site-cta {
  padding: 0.82rem 1.15rem;
  background: var(--brand-red);
  color: var(--brand-white);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(217, 0, 0, 0.22);
}

.site-menu-btn {
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--brand-line);
  border-radius: 999px;
  background: var(--brand-white);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.22rem;
  padding: 0.7rem;
}

.site-menu-btn span {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-black);
}

.site-mobile {
  border-top: 1px solid var(--brand-line);
  background: rgba(255, 255, 255, 0.98);
}

.site-mobile__panel {
  max-width: 1440px;
  margin: 0 auto;
  padding: 1rem 1.25rem 1.25rem;
  display: grid;
  gap: 1rem;
}

.site-mobile__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-mobile__title {
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-mobile__close {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--brand-line);
  border-radius: 999px;
  background: var(--brand-white);
  font-size: 1.25rem;
}

.site-mobile__nav {
  display: grid;
  gap: 0.55rem;
}

.site-mobile__nav a {
  padding: 0.95rem 1rem;
  border: 1px solid var(--brand-line);
  border-radius: 1rem;
  background: var(--brand-paper);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-mobile__group {
  display: grid;
  gap: 0.45rem;
}

.site-mobile__toggle {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 1rem;
  border: 1px solid var(--brand-line);
  border-radius: 1rem;
  background: var(--brand-paper);
  font: inherit;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-black);
}

.site-mobile__toggle::after {
  content: '';
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.site-mobile__group.is-open .site-mobile__toggle::after {
  transform: rotate(-135deg);
}

.site-mobile__submenu {
  display: none;
  padding-left: 0.45rem;
  gap: 0.45rem;
}

.site-mobile__group.is-open .site-mobile__submenu {
  display: grid;
}

.site-mobile__submenu a {
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--brand-line);
  border-radius: 0.9rem;
  background: var(--brand-white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-mobile__product-category {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}

.site-mobile__product-category > button {
  width: 100%;
  min-height: 2.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--brand-line);
  border-radius: 0.8rem;
  background: #ffffff;
  color: var(--brand-black);
  font: inherit;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: left;
  text-transform: uppercase;
}

.site-mobile__product-category > button i {
  flex: 0 0 auto;
  color: var(--brand-red);
  transition: transform 160ms ease;
}

.site-mobile__product-category.is-open > button {
  border-color: rgba(217, 0, 0, 0.2);
  background: rgba(217, 0, 0, 0.045);
  color: var(--brand-red);
}

.site-mobile__product-category.is-open > button i {
  transform: rotate(180deg);
}

.site-mobile__product-links {
  display: none;
  min-width: 0;
  padding-left: 0.45rem;
  gap: 0.3rem;
}

.site-mobile__product-category.is-open .site-mobile__product-links {
  display: grid;
}

.site-mobile__product-links a {
  min-height: 2.65rem;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.site-mobile__actions {
  display: grid;
  gap: 0.7rem;
}

.site-mobile__cta {
  width: 100%;
  min-height: 3rem;
  background: var(--brand-red);
  color: var(--brand-white);
  padding: 0.95rem 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-mobile__phone {
  width: 100%;
  min-height: 3rem;
  border: 1px solid var(--brand-line);
  background: var(--brand-white);
  padding: 0.95rem 1rem;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 84vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--brand-black);
}

.hero__slider,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 700ms ease, transform 900ms ease;
  transform: scale(1.03);
}

.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.74) 0%, rgba(10, 10, 10, 0.54) 45%, rgba(10, 10, 10, 0.1) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 3rem 1.25rem 3.5rem;
  color: var(--brand-white);
}

.hero__content.is-changing .hero__title,
.hero__content.is-changing .hero__text {
  animation: hero-copy-in 480ms ease both;
}

.hero__content.is-changing .hero__text {
  animation-delay: 70ms;
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(0.7rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__controls {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.3);
  backdrop-filter: blur(12px);
}

.hero__control {
  width: 2.3rem;
  height: 2.3rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--brand-white);
  font-size: 1.35rem;
  line-height: 1;
}

.hero__dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.35);
}

.hero__dot.is-active {
  width: 1.6rem;
  background: var(--brand-red);
}

.hero__eyebrow,
.section__eyebrow {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-red);
}

.hero__title,
.section__title {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 0.93;
  letter-spacing: -0.03em;
}

.hero__title {
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  max-width: 10ch;
}

.hero__text,
.section__text {
  max-width: 42rem;
  margin: 1.25rem 0 0;
  font-size: 1.02rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.8);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.hero__trust span,
.timeline span,
.cta-block__chips span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  font-weight: 600;
}

.section {
  padding: 5rem 1.25rem;
}

.section__head {
  max-width: 760px;
  margin: 0 auto 2rem;
}

.section__head--products {
  max-width: 1200px;
}

.section__head--products .section__title {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(2.4rem, 4.3vw, 4rem);
}

.section__head--products .section__text {
  max-width: 52rem;
}

.section__title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  color: var(--brand-black);
}

.section__text {
  color: rgba(17, 17, 17, 0.72);
}

.section--dark {
  background: linear-gradient(180deg, #131313 0%, #0f0f0f 100%);
  color: var(--brand-white);
}

.section__eyebrow--light,
.section__text--light,
.section__title--light {
  color: var(--brand-white);
}

.solution-grid,
.project-grid,
.blog-grid {
  display: grid;
  gap: 1rem;
  max-width: 1440px;
  margin: 0 auto;
}

.product-catalog {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-category {
  display: grid;
  gap: 0.9rem;
  padding: 1.15rem;
  border-radius: 1.5rem;
  border: 1px solid var(--brand-line);
  background: var(--brand-white);
  box-shadow: var(--brand-shadow);
}

.product-category__head {
  display: grid;
  gap: 0.3rem;
}

.product-category__head p {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--brand-red);
}

.product-category__head h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.1;
}

.product-category__head span {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(17, 17, 17, 0.72);
}

.product-category ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-category li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(17, 17, 17, 0.82);
}

.product-category li a {
  color: inherit;
  transition: color 160ms ease;
}

.product-category li a:hover {
  color: var(--brand-red);
}

.product-category li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: var(--brand-red);
}

.product-detail-page {
  background: #ffffff;
}

.product-detail-hero {
  max-width: 1440px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

.product-detail-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  height: 100%;
  padding: 1.4rem;
  box-sizing: border-box;
  border: 1px solid var(--brand-line);
  border-radius: 1.8rem;
  background: #ffffff;
}

.product-detail__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 2rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.48);
}

.product-detail__breadcrumb a:hover {
  color: var(--brand-red);
}

.product-detail__breadcrumb i {
  font-size: 0.5rem;
  color: rgba(17, 17, 17, 0.25);
}

.product-detail-hero__copy h1 {
  max-width: 12ch;
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.6rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--brand-black);
}

.product-detail-hero__copy > p:not(.section__eyebrow) {
  max-width: 42rem;
  margin: 1.2rem 0 0;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(17, 17, 17, 0.68);
}

.product-detail-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.product-detail-hero__tags span {
  display: inline-flex;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--brand-line);
  border-radius: 999px;
  background: #fafaf8;
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(17, 17, 17, 0.72);
}

.product-detail-hero__media {
  position: relative;
  order: -1;
  height: 100%;
  min-height: 24rem;
  overflow: hidden;
  border-radius: 1.8rem;
  background: #ffffff;
}

.product-detail-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-detail-body {
  max-width: 1440px;
  margin: 0 auto;
  padding: 4rem 1.25rem 5rem;
  display: grid;
  gap: 2rem;
  border-top: 1px solid var(--brand-line);
}

.product-detail-body__main > h2 {
  max-width: 18ch;
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1;
}

.product-detail-body__main > p:not(.section__eyebrow) {
  max-width: 50rem;
  margin: 1.2rem 0 0;
  font-size: 0.98rem;
  line-height: 1.8;
  color: rgba(17, 17, 17, 0.68);
}

.product-detail-features {
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
}

.product-detail-features article {
  padding: 1.1rem;
  border: 1px solid var(--brand-line);
  border-radius: 1.1rem;
  background: #fafaf8;
}

.product-detail-features i {
  color: var(--brand-red);
}

.product-detail-features h3 {
  margin: 0.7rem 0 0;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.product-detail-features p {
  margin: 0.45rem 0 0;
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(17, 17, 17, 0.62);
}

.product-detail-related {
  align-self: start;
  padding: 1.2rem;
  border: 1px solid var(--brand-line);
  border-radius: 1.4rem;
  background: #f7f7f5;
}

.product-detail-related > p {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-red);
}

.product-detail-related > h2 {
  margin: 0.35rem 0 1rem;
  font-size: 1.15rem;
}

.product-detail-related > div {
  display: grid;
}

.product-detail-related a {
  display: grid;
  grid-template-columns: 1.5rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.8rem;
  padding: 0.45rem 0.2rem;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  color: rgba(17, 17, 17, 0.72);
}

.product-detail-related a span {
  font-size: 0.54rem;
  font-weight: 800;
  color: var(--brand-red);
}

.product-detail-related a strong {
  font-size: 0.7rem;
  line-height: 1.3;
}

.product-detail-related a i {
  font-size: 0.55rem;
  color: rgba(17, 17, 17, 0.28);
}

.product-detail-related a:hover,
.product-detail-related a.is-active {
  color: var(--brand-red);
}

@media (min-width: 768px) {
  .product-detail-hero {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-inline: 1.5rem;
  }

  .product-detail-hero__copy {
    padding: 2rem;
  }

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

}

@media (min-width: 1024px) {
  .product-detail-body {
    grid-template-columns: minmax(0, 1fr) 22rem;
    padding-inline: 1.5rem;
  }
}

.brand-strip {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.brand-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: var(--brand-white);
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(17, 17, 17, 0.78);
  box-shadow: var(--brand-shadow);
}

.section--references .section__head {
  max-width: 860px;
}

.reference-marquee {
  overflow: hidden;
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 0.5rem;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.reference-marquee__track {
  display: flex;
  width: max-content;
  animation: reference-scroll 34s linear infinite;
}

.reference-marquee:hover .reference-marquee__track {
  animation-play-state: paused;
}

.reference-marquee__group {
  display: flex;
  gap: 1rem;
  padding-right: 1rem;
}

.reference-card {
  position: relative;
  width: clamp(12rem, 18vw, 16rem);
  aspect-ratio: 4 / 5;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #ece7df;
  box-shadow: var(--brand-shadow);
}

.reference-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95) contrast(1.02);
  transform: scale(1.02);
}

.reference-card__overlay {
  position: absolute;
  inset: auto 0 0 0;
  display: grid;
  gap: 0.25rem;
  padding: 0.95rem 1rem;
  color: var(--brand-white);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.78));
}

.reference-card__overlay span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.82;
}

.reference-card__overlay strong {
  font-size: 0.95rem;
  font-weight: 700;
}

@keyframes reference-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.solution-card,
.project-card,
.blog-card {
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid var(--brand-line);
  background: var(--brand-white);
  box-shadow: var(--brand-shadow);
}

.solution-card img,
.project-card img,
.blog-card img,
.split-block__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-card {
  min-height: unset;
  display: grid;
  grid-template-rows: auto auto;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.solution-card img {
  display: block;
  aspect-ratio: 16 / 10;
  height: 100%;
  max-height: 21rem;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.03);
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.solution-card img.solution-card__image--contain {
  object-fit: contain;
  background: var(--brand-white);
}

.solution-card:hover,
.solution-card:focus-visible {
  transform: translateY(-0.25rem);
  border-color: rgba(202, 0, 24, 0.28);
  box-shadow: 0 24px 55px rgba(17, 17, 17, 0.12);
}

.solution-card:hover img,
.solution-card:focus-visible img {
  transform: scale(1.025);
}

.solution-card__body,
.project-card__body,
.blog-card__body {
  padding: 1.1rem 1.1rem 1.2rem;
}

.solution-card__body p {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--brand-red);
}

.solution-card__body h3,
.project-card__body h3,
.blog-card__body h3 {
  margin: 0.45rem 0 0;
  font-size: 1.45rem;
}

.solution-card__body span,
.project-card__body p,
.blog-card__body p {
  display: block;
  margin-top: 0.75rem;
  color: rgba(17, 17, 17, 0.7);
  line-height: 1.7;
}

.project-gallery {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.project-gallery__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin: 0;
  border-radius: 1.25rem;
  background: #dededb;
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.09);
  cursor: zoom-in;
}

.project-gallery__item:focus-visible {
  outline: 3px solid rgba(217, 0, 0, 0.34);
  outline-offset: 3px;
}

.project-gallery__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 500ms ease;
}

.project-gallery__item figcaption {
  position: absolute;
  inset: auto 0 0;
  min-height: 42%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.2rem;
  background: linear-gradient(180deg, transparent, rgba(10, 10, 10, 0.82));
  color: #ffffff;
}

.project-gallery__item figcaption strong {
  font-size: 0.78rem;
  line-height: 1.3;
}

.project-gallery__item:hover img {
  transform: scale(1.045);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  padding: 1.25rem;
  display: grid;
  place-items: center;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(10px);
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox__figure {
  position: relative;
  width: min(92vw, 1200px);
  height: min(82vh, 820px);
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border-radius: 1.4rem;
  background: #2a2a2a;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
}

.gallery-lightbox__figure::before {
  content: '';
  position: absolute;
  inset: -2rem;
  background-image: var(--gallery-image);
  background-position: center;
  background-size: cover;
  filter: blur(24px);
  opacity: 0.58;
  transform: scale(1.08);
}

.gallery-lightbox__figure img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  background: transparent;
}

.gallery-lightbox__figure figcaption {
  position: relative;
  z-index: 1;
  padding: 1rem 1.25rem;
  background: rgba(10, 10, 10, 0.76);
  font-size: 0.84rem;
  font-weight: 700;
  color: #ffffff;
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.72);
  color: #ffffff;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.gallery-lightbox__close {
  top: 1.25rem;
  right: 1.25rem;
  width: 2.8rem;
  height: 2.8rem;
  font-size: 1.35rem;
}

.gallery-lightbox__nav {
  top: 50%;
  width: 3rem;
  height: 3rem;
  transform: translateY(-50%);
  font-size: 1.25rem;
}

.gallery-lightbox__nav--prev {
  left: 1.25rem;
}

.gallery-lightbox__nav--next {
  right: 1.25rem;
}

body.has-lightbox {
  overflow: hidden;
}

.call-picker {
  position: fixed;
  inset: 0;
  z-index: 1100;
  padding: 1rem;
  display: grid;
  place-items: center;
  background: rgba(8, 8, 8, 0.68);
  backdrop-filter: blur(10px);
}

.call-picker[hidden] {
  display: none;
}

.call-picker__panel {
  position: relative;
  width: min(100%, 34rem);
  padding: 2rem;
  border-radius: 1.6rem;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.call-picker__panel h2 {
  max-width: 16ch;
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 0.98;
  color: var(--brand-black);
}

.call-picker__text {
  margin: 0.9rem 0 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(17, 17, 17, 0.62);
}

.call-picker__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--brand-line);
  border-radius: 999px;
  background: #f5f5f3;
  color: var(--brand-black);
  font-size: 1.3rem;
  cursor: pointer;
}

.call-picker__numbers {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.call-picker__numbers a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.18rem 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--brand-line);
  border-radius: 1rem;
  background: #fafaf8;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.call-picker__numbers span,
.call-picker__numbers strong {
  grid-column: 1;
}

.call-picker__numbers span {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.5);
}

.call-picker__numbers strong {
  font-size: 1rem;
  color: var(--brand-black);
}

.call-picker__numbers i {
  grid-column: 2;
  grid-row: 1 / 3;
  color: var(--brand-red);
}

.whatsapp-picker .call-picker__numbers i {
  color: #16a34a;
  font-size: 1.15rem;
}

.whatsapp-picker .call-picker__numbers a:hover {
  border-color: rgba(22, 163, 74, 0.3);
}

.call-picker__numbers a:hover {
  border-color: rgba(217, 0, 0, 0.28);
  background: #ffffff;
  transform: translateY(-2px);
}

body.has-call-picker {
  overflow: hidden;
}

@media (max-width: 520px) {
  .call-picker__panel {
    padding: 1.5rem 1rem 1rem;
  }
}

@media (max-width: 767px) {
  .gallery-lightbox {
    padding: 0.75rem;
  }

  .gallery-lightbox__figure {
    width: 100%;
    height: min(78vh, 680px);
  }

  .gallery-lightbox__nav {
    top: auto;
    bottom: 1rem;
    transform: none;
  }
}

@media (min-width: 768px) {
  .project-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (min-width: 1200px) {
  .project-gallery {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.split-block,
.cta-block {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.page-preview {
  padding: 1rem 1.25rem 0;
}

.page-preview--flush {
  margin-top: -1px;
  padding-top: 0;
}

.page-preview--flush .page-preview__visual {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.page-preview--compact {
  padding-left: 0;
  padding-right: 0;
}

.page-preview--compact .page-preview__inner {
  max-width: none;
}

.page-preview--compact .page-preview__visual {
  aspect-ratio: 6 / 1;
  min-height: 6rem;
}

.page-preview--compact .page-preview__overlay {
  padding: 1rem 1.25rem;
}

.page-preview--compact .page-preview__copy h1,
.page-preview--compact .page-preview__copy h2 {
  font-size: clamp(1.4rem, 2vw, 2.2rem);
}

.page-preview__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.page-preview__visual {
  position: relative;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  aspect-ratio: 3 / 1;
  min-height: 9rem;
  border-radius: 1.8rem;
  background: #111111;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.14);
}

.page-preview__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.98) contrast(1.02);
}

.page-preview__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.72), rgba(17, 17, 17, 0.18) 60%, rgba(17, 17, 17, 0.05));
}

.page-preview__overlay--center {
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.54), rgba(17, 17, 17, 0.32));
}

.page-preview--contact .page-preview__overlay--center {
  padding: 1rem 1.25rem;
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.42), rgba(17, 17, 17, 0.22));
}

.page-preview__copy {
  max-width: 34rem;
  color: var(--brand-white);
}

.page-preview__copy--center {
  max-width: 44rem;
  display: grid;
  gap: 0.5rem;
  padding: 1.1rem 1.35rem;
  border-radius: 1.35rem;
  background: rgba(17, 17, 17, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.18);
}

.page-preview__copy p {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.82;
}

.page-preview__copy h1,
.page-preview__copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 2.6vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.page-preview__copy--center p {
  margin-bottom: 0.1rem;
}

.page-preview__copy--center h1 {
  font-size: clamp(1.75rem, 2.4vw, 2.7rem);
  line-height: 1;
}

.page-preview__copy--center h2 {
  margin-top: 0.1rem;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.88rem, 1vw, 0.98rem);
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.88);
  max-width: 36rem;
}

.page-preview--contact .page-preview__copy--contact {
  max-width: 40rem;
}

.page-preview--contact .page-preview__copy--contact h1 {
  max-width: 18ch;
  margin-inline: auto;
}

.page-preview--contact .page-preview__copy--contact h2 {
  max-width: 32rem;
  margin-inline: auto;
}

.contact-intro {
  padding-top: 2rem;
  padding-bottom: 1rem;
}

.contact-intro__inner {
  max-width: 58rem;
  margin: 0 auto;
  text-align: center;
}

.contact-intro__inner .section__title {
  max-width: 18ch;
  margin-inline: auto;
}

.contact-intro__inner .section__text {
  max-width: 42rem;
  margin-inline: auto;
}

.split-block__media {
  min-height: 22rem;
  border-radius: 1.8rem;
  overflow: hidden;
}

.about-profile {
  align-items: stretch;
}

.about-profile .split-block__media {
  position: relative;
  height: 100%;
  min-height: 22rem;
}

.about-profile .split-block__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-profile .split-block__content {
  height: 100%;
  box-sizing: border-box;
}

.split-block__content.corporate-profile {
  background: #ffffff;
  border-color: var(--brand-line);
}

.corporate-profile .section__text {
  margin-top: 0.9rem;
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(17, 17, 17, 0.7);
}

.corporate-profile .corporate-profile__lead {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(17, 17, 17, 0.82);
}

.corporate-profile__services {
  margin-top: 1.4rem;
  padding: 1.15rem;
  border-radius: 1.15rem;
  background: #f7f7f5;
  border: 1px solid var(--brand-line);
}

.corporate-profile__services h2 {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-black);
}

.corporate-profile__services ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1rem;
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
}

.corporate-profile__services li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(17, 17, 17, 0.72);
}

.corporate-profile__services li::before {
  content: '';
  position: absolute;
  top: 0.45rem;
  left: 0;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--brand-red);
}

.corporate-profile__closing {
  margin: 1.25rem 0 0;
  padding: 0.9rem 1rem;
  border-left: 3px solid var(--brand-red);
  background: rgba(217, 0, 0, 0.035);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.65;
  color: var(--brand-black);
}

@media (max-width: 767px) {
  .corporate-profile__services ul {
    grid-template-columns: 1fr;
  }
}

.split-block__content,
.cta-block__content,
.contact-form {
  border-radius: 1.8rem;
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-block__image {
  margin-top: 1.25rem;
  overflow: hidden;
  border-radius: 1.4rem;
  min-height: 14rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.cta-block__image img {
  width: 100%;
  height: 100%;
  min-height: 14rem;
  object-fit: cover;
}

.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.timeline span {
  background: rgba(255, 255, 255, 0.06);
}

.glass-presentation {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.glass-presentation__card {
  display: grid;
  gap: 0.35rem;
  padding: 0.9rem 1rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.glass-presentation__card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.glass-presentation__card h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.2;
}

.glass-presentation__card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  font-size: 0.96rem;
}

.section--paper {
  background: var(--brand-paper);
}

.section--paper .section__title,
.section--paper .section__text {
  color: var(--brand-black);
}

.service-process {
  overflow: hidden;
  padding-top: 7rem;
  padding-bottom: 7rem;
  border-top: 1px solid var(--brand-line);
  border-bottom: 1px solid var(--brand-line);
  background: #ffffff;
}

.service-process__head {
  max-width: 56rem;
  margin: 0 auto 4.5rem;
  text-align: center;
}

.service-process__head .section__text {
  margin-inline: auto;
  max-width: 50rem;
  font-size: 1.08rem;
  color: rgba(17, 17, 17, 0.64);
}

.service-process__steps {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  gap: 0;
  list-style: none;
}

.service-process__step {
  position: relative;
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  gap: 1.25rem;
  padding: 0 0 2.75rem;
}

.service-process__step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 4rem;
  bottom: 0.15rem;
  left: 1.98rem;
  width: 1px;
  background: rgba(17, 17, 17, 0.13);
}

.service-process__icon {
  position: relative;
  z-index: 1;
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.13);
  border-radius: 1.15rem;
  background: #ffffff;
  color: var(--brand-red);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.06);
}

.service-process__icon i {
  font-size: 1.18rem;
}

.service-process__icon span {
  position: absolute;
  top: -0.42rem;
  right: -0.42rem;
  min-width: 1.35rem;
  height: 1.35rem;
  display: grid;
  place-items: center;
  box-sizing: border-box;
  padding-inline: 0.2rem;
  border: 2px solid #ffffff;
  border-radius: 999px;
  background: var(--brand-red);
  color: #ffffff;
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.service-process__content {
  padding-top: 0.18rem;
}

.service-process__content h3 {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: var(--brand-black);
}

.service-process__content p {
  margin: 0.5rem 0 0;
  max-width: 40rem;
  font-size: 0.94rem;
  line-height: 1.7;
  color: rgba(17, 17, 17, 0.62);
}

@media (min-width: 1180px) {
  .service-process__steps {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .service-process__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.35rem;
    min-width: 0;
    padding: 0 1rem;
    text-align: center;
  }

  .service-process__step:not(:last-child)::after {
    top: 2rem;
    right: calc(-50% + 2.05rem);
    bottom: auto;
    left: calc(50% + 2.05rem);
    width: auto;
    height: 1px;
  }

  .service-process__content {
    padding-top: 0;
  }

  .service-process__content p {
    margin-inline: auto;
    font-size: 0.84rem;
    line-height: 1.65;
  }
}

@media (max-width: 767px) {
  .service-process {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }

  .service-process__head {
    margin-bottom: 3.5rem;
  }

  .service-process__head .section__text {
    font-size: 1rem;
  }
}

.section--cta {
  background: var(--brand-charcoal);
}

.site-footer {
  border-top: 1px solid var(--brand-line);
  background: #ffffff;
  color: var(--brand-black);
}

.site-footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 3rem 1.25rem 2.2rem;
  display: grid;
  gap: 2rem;
}

.site-footer__brand {
  display: grid;
  gap: 1rem;
  max-width: 33rem;
}

.site-footer__logo {
  height: 5.5rem;
  width: auto;
  transform: none;
}

.site-footer__text {
  margin: 0;
  color: rgba(17, 17, 17, 0.72);
  line-height: 1.85;
  font-size: 0.98rem;
}

.site-footer__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.floating-action i {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  flex: 0 0 2rem;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  line-height: 1;
}

.floating-action--whatsapp i {
  font-size: 2rem;
}

.site-footer__stats span {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--brand-line);
  background: #fafaf8;
  color: rgba(17, 17, 17, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__columns {
  display: grid;
  gap: 1.8rem;
}

.site-footer__column h2 {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.45);
}

.site-footer__column a,
.site-footer__note {
  display: block;
  margin-top: 0.6rem;
  color: rgba(17, 17, 17, 0.82);
  transition: color 160ms ease, transform 160ms ease;
}

.site-footer__column a:hover {
  color: var(--brand-red);
  transform: translateX(0.15rem);
}

.site-footer__note {
  margin-top: 0.95rem;
  color: rgba(17, 17, 17, 0.58);
  font-size: 0.9rem;
}

.site-footer-products {
  border-top: 1px solid var(--brand-line);
  background: #f7f7f5;
}

.site-footer-products__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 2.6rem 1.25rem 2.8rem;
}

.site-footer-products__head {
  display: grid;
  gap: 0.35rem;
  max-width: 42rem;
  margin-bottom: 2rem;
}

.site-footer-products__head p,
.site-footer-products__head h2,
.site-footer-products__head span {
  margin: 0;
}

.site-footer-products__head p {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-red);
}

.site-footer-products__head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  color: var(--brand-black);
}

.site-footer-products__head span {
  font-size: 0.9rem;
  color: rgba(17, 17, 17, 0.6);
}

.site-footer-products__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem 1.4rem;
}

.site-footer-products__category {
  min-width: 0;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(17, 17, 17, 0.14);
}

.site-footer-products__title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.55rem;
  min-height: 2rem;
  color: var(--brand-black);
}

.site-footer-products__title strong {
  font-size: 0.76rem;
  letter-spacing: 0.055em;
  line-height: 1.25;
  text-transform: uppercase;
}

.site-footer-products__title i {
  font-size: 0.62rem;
  color: rgba(17, 17, 17, 0.3);
  transition: color 160ms ease, transform 160ms ease;
}

.site-footer-products__title:hover {
  color: var(--brand-red);
}

.site-footer-products__title:hover i {
  color: var(--brand-red);
  transform: translateX(0.15rem);
}

.site-footer-products__category ul {
  display: grid;
  gap: 0.38rem;
  margin: 0.65rem 0 0;
  padding: 0;
  list-style: none;
}

.site-footer-products__category li {
  min-width: 0;
}

.site-footer-products__category li a {
  display: inline-flex;
  font-size: 0.72rem;
  line-height: 1.4;
  color: rgba(17, 17, 17, 0.64);
  transition: color 160ms ease, transform 160ms ease;
}

.site-footer-products__category li a:hover {
  color: var(--brand-red);
  transform: translateX(0.12rem);
}

@media (min-width: 640px) {
  .site-footer-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .site-footer-products__inner {
    padding-inline: 1.5rem;
  }

  .site-footer-products__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.site-footer__bottom {
  max-width: 1440px;
  margin: 0 auto;
  padding: 1rem 1.25rem 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: space-between;
  border-top: 1px solid var(--brand-line);
  color: rgba(17, 17, 17, 0.55);
  font-size: 0.82rem;
}

.contact-card {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.45rem 1.5rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  border: none;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) auto;
  gap: 1rem 1.5rem;
  align-items: center;
  justify-items: stretch;
  text-align: left;
}

.contact-card__content {
  display: grid;
  gap: 0.55rem;
  max-width: 42rem;
  justify-items: start;
}

.contact-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
  align-self: center;
}

.contact-card .btn--secondary {
  background: transparent;
  color: var(--brand-white);
  border-color: rgba(255, 255, 255, 0.18);
}

.contact-card .btn--secondary:hover {
  background: rgba(255, 255, 255, 0.06);
}

.cta-block__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.cta-block__chips span {
  background: rgba(255, 255, 255, 0.06);
}

.contact-form {
  display: grid;
  gap: 0.85rem;
  background: var(--brand-white);
  color: var(--brand-black);
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--brand-line);
  border-radius: 1rem;
  background: #fafaf8;
  padding: 0.95rem 1rem;
  font: inherit;
}

.contact-form__full {
  grid-column: 1 / -1;
}

.contact-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  grid-column: 1 / -1;
}

.contact-form__honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.contact-form__human {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5.2rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--brand-line);
  border-radius: 1rem;
  background: #fafaf8;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.contact-form__human-control {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 0.8rem !important;
  cursor: pointer;
}

.contact-form__human-control input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form__human-box {
  display: grid;
  flex: 0 0 auto;
  width: 1.65rem;
  height: 1.65rem;
  place-items: center;
  border: 2px solid #a9acae;
  border-radius: 0.35rem;
  background: #fff;
  color: #fff;
  transition: border-color 180ms ease, background 180ms ease;
}

.contact-form__human-box i {
  display: none;
  font-size: 0.78rem;
}

.contact-form__human-copy {
  display: grid;
  gap: 0.2rem;
}

.contact-form__human-copy strong {
  color: var(--brand-black);
  font-size: 0.95rem;
}

.contact-form__human-copy small {
  color: rgba(17, 17, 17, 0.56);
  font-size: 0.74rem;
  font-weight: 500;
}

.contact-form__human-shield {
  color: rgba(17, 17, 17, 0.32);
  font-size: 1.35rem;
}

.contact-form__human.is-loading {
  border-color: rgba(217, 0, 0, 0.25);
}

.contact-form__human.is-loading .fa-spinner {
  display: block;
  color: var(--brand-red);
  animation: human-check-spin 700ms linear infinite;
}

.contact-form__human.is-verified {
  border-color: rgba(22, 163, 74, 0.35);
  background: #f2faf5;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.06);
}

.contact-form__human.is-verified .contact-form__human-box {
  border-color: #16a34a;
  background: #16a34a;
}

.contact-form__human.is-verified .fa-check {
  display: block;
}

.contact-form__human.is-verified .contact-form__human-shield {
  color: #16a34a;
}

.contact-form__human.is-error {
  border-color: rgba(163, 18, 32, 0.35);
  background: #fff7f7;
}

@keyframes human-check-spin {
  to {
    transform: rotate(360deg);
  }
}

.contact-form__status {
  display: none;
  margin: 0;
  padding: 0.9rem 1rem;
  border-radius: 0.8rem;
  font-size: 0.92rem;
  line-height: 1.5;
}

.contact-form__status.is-success,
.contact-form__status.is-error {
  display: block;
}

.contact-form__status.is-success {
  color: #17643a;
  background: #eef9f2;
  border: 1px solid #b9e3c8;
}

.contact-form__status.is-error {
  color: #a31220;
  background: #fff1f2;
  border: 1px solid #f2c2c7;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.btn {
  min-height: 3rem;
  padding: 0.85rem 1.15rem;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.btn--primary {
  background: var(--brand-red);
  color: var(--brand-white);
}

.btn--secondary {
  border-color: var(--brand-line);
  background: var(--brand-white);
  color: var(--brand-black);
}

.floating-action {
  position: fixed;
  right: 1rem;
  z-index: 60;
  padding: 0.8rem 1rem;
  color: var(--brand-white);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.2);
}

.floating-action--phone {
  bottom: 1rem;
  background: var(--brand-black);
}

.floating-action--whatsapp {
  bottom: 4.25rem;
  background: #1fb855;
}

@media (min-width: 768px) {
  .site-phone {
    display: inline-flex;
  }

  .site-header__inner,
  .section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .site-header__actions {
    margin-left: auto;
  }

  .site-brand__logo {
    height: 3rem;
    transform: scale(2.1);
  }

  .solution-grid,
  .project-grid,
  .blog-grid {
    gap: 1.2rem;
  }

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

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

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

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

  .glass-presentation {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
  }

  .split-block,
  .cta-block {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .contact-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 1.6rem;
  }

  .hero__controls {
    right: 1.75rem;
    bottom: 1.75rem;
  }

  .cta-block__image {
    min-height: 18rem;
  }

  .cta-block__image img {
    min-height: 18rem;
  }

  .site-footer__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    align-items: start;
    padding-top: 2.8rem;
    padding-bottom: 2rem;
    gap: 3rem;
  }

  .site-footer__columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.8rem;
  }

  .reference-marquee__group {
    gap: 1.2rem;
  }
}

@media (min-width: 1024px) {
  .site-nav {
    display: flex;
    justify-content: flex-end;
    gap: 0.95rem;
  }

  .site-brand__logo {
    height: 2.8rem;
    transform: scale(1.65);
  }

  .site-menu-btn {
    display: none;
  }

  .hero__content {
    padding: 5rem 3rem 4rem;
  }

  .section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

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

@media (max-width: 767px) {
  .site-nav {
    display: none;
  }

  .site-cta {
    display: none;
  }

  .site-brand__logo {
    height: 2.45rem;
    transform: scale(1.82);
  }

  .hero {
    min-height: 80vh;
  }

  .hero__content {
    padding: 2.4rem 1rem 3rem;
  }

  .hero__controls {
    right: 1rem;
    bottom: 1rem;
  }

  .site-footer__inner {
    padding-inline: 1rem;
  }

  .site-footer__logo {
    height: 3.5rem;
  }

  .site-footer__bottom {
    padding-inline: 1rem;
  }

  .contact-card {
    padding: 1.5rem 1rem;
    border-radius: 1.5rem;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-card__content {
    justify-items: center;
    max-width: 100%;
  }

  .contact-card__actions {
    width: 100%;
    justify-content: center;
  }

  .contact-card__actions .btn {
    width: 100%;
  }

  .reference-marquee {
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  }

  .reference-card {
    width: 11.5rem;
  }

  .reference-marquee__track {
    animation-duration: 26s;
  }

  .glass-presentation {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reference-marquee__track {
    animation: none;
    transform: none;
  }
}

.site-nav {
  flex-wrap: nowrap;
}

.site-nav__link {
  white-space: nowrap;
}

.floating-action {
  min-width: 11.25rem;
  min-height: 3.6rem;
  padding: 1rem 1.35rem;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  border-radius: 999px;
  justify-content: center;
  gap: 0.6rem;
}

.floating-action--phone {
  right: 1.15rem;
  bottom: 1.15rem;
}

.floating-action--whatsapp {
  right: 1.15rem;
  bottom: 5.4rem;
}

@media (max-width: 767px) {
  .floating-action {
    min-width: 9.8rem;
    min-height: 3.35rem;
    padding: 0.95rem 1.15rem;
    font-size: 0.9rem;
  }

  .floating-action--phone {
    bottom: 0.95rem;
  }

  .floating-action--whatsapp {
    bottom: 4.85rem;
  }
}

.contact-page {
  background: #ffffff;
}

.contact-page__layout {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.contact-page__panel {
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  gap: 1rem;
  align-content: stretch;
  padding: 1.5rem;
  border-radius: 1.8rem;
  background: var(--brand-white);
  border: 1px solid var(--brand-line);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.06);
}

.contact-page__map {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 1.6rem;
  border: 1px solid var(--brand-line);
  min-height: 22rem;
  background: #f2f2f0;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.08);
}

.contact-page__map iframe {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  border: 0;
  display: block;
}

.contact-page__note {
  margin: 0;
  color: rgba(17, 17, 17, 0.6);
  font-size: 0.92rem;
}

.contact-page .contact-form {
  height: 100%;
  align-content: start;
  padding: 1.5rem;
  border: 1px solid var(--brand-line);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.06);
}

@media (min-width: 1024px) {
  .contact-page__layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .contact-page__layout {
    grid-template-columns: 1fr;
  }

  .contact-page__panel,
  .contact-page .contact-form {
    padding: 1.1rem;
  }

  .contact-page__map,
  .contact-page__map iframe {
    min-height: 18rem;
  }

  .solution-card img {
    aspect-ratio: 16 / 9;
  }

  .product-catalog {
    grid-template-columns: 1fr;
  }

  .product-category ul {
    grid-template-columns: 1fr;
  }
}

/* Mega menu responsive safeguards */
@media (min-width: 1180px) {
  .site-nav__group--mega .site-nav__mega {
    width: min(78rem, calc(100vw - 2rem));
    max-width: calc(100vw - 2rem);
    max-height: min(32rem, calc(100dvh - 7.5rem));
  }

  .site-nav__mega-categories,
  .site-nav__mega-content {
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(17, 17, 17, 0.18) transparent;
  }

  .site-nav__mega-categories::-webkit-scrollbar,
  .site-nav__mega-content::-webkit-scrollbar {
    width: 5px;
  }

  .site-nav__mega-categories::-webkit-scrollbar-thumb,
  .site-nav__mega-content::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.18);
  }
}

@media (min-width: 1024px) and (max-width: 1179px) {
  .site-nav {
    display: none;
  }

  .site-cta {
    display: none;
  }

  .site-menu-btn {
    display: inline-flex;
  }

  .site-header__actions {
    margin-left: auto;
  }
}

@media (max-width: 1179px) {
  .site-header__inner {
    justify-content: space-between;
  }

  .site-header__actions {
    display: flex;
    flex: 0 0 auto;
    margin-left: auto;
    position: relative;
    z-index: 2;
  }

  .site-cta {
    display: none;
  }

  .site-menu-btn {
    display: inline-flex;
    flex: 0 0 3rem;
  }

  .site-mobile {
    position: fixed;
    top: 4.75rem;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 70;
    max-height: none;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    box-shadow: 0 20px 45px rgba(17, 17, 17, 0.12);
    scrollbar-width: thin;
    scrollbar-color: rgba(17, 17, 17, 0.18) transparent;
  }

  .site-mobile__panel,
  .site-mobile__nav,
  .site-mobile__submenu,
  .site-mobile__product-category,
  .site-mobile__product-links {
    min-width: 0;
    max-width: 100%;
  }

  .site-mobile__top {
    position: sticky;
    top: -0.85rem;
    z-index: 4;
    margin: -0.85rem -1rem 0;
    padding: 0.85rem 1rem 0.7rem;
    border-bottom: 1px solid var(--brand-line);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
  }

  .site-mobile__product-category > button span,
  .site-mobile__product-links a {
    overflow-wrap: anywhere;
  }
}

/* Site-wide tablet and mobile layout */
html,
body {
  max-width: 100%;
}

body {
  overflow-x: clip;
}

html.has-mobile-menu,
body.has-mobile-menu {
  overflow: hidden;
  overscroll-behavior: none;
}

body.has-mobile-menu .site-mobile {
  touch-action: pan-y;
  overscroll-behavior-y: contain;
}

body.has-mobile-menu .floating-action {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(1rem);
}

.contact-intro.section {
  padding-top: clamp(2.75rem, 4vw, 4rem);
  padding-bottom: 1rem;
}

.contact-page.section {
  padding-top: 1.5rem;
}

@media (min-width: 1180px) {
  .hero__content {
    width: 100%;
    max-width: 1280px;
  }

  .hero__title {
    max-width: 1100px;
    font-size: clamp(4.25rem, 4.5vw, 5.4rem);
  }
}

.hero__title,
.section__title,
.page-preview__copy h1,
.page-preview__copy h2,
.product-detail-hero__copy h1,
.product-detail-body__main > h2,
.contact-card h2 {
  overflow-wrap: break-word;
}

@media (min-width: 768px) and (max-width: 1179px) {
  .hero__title {
    max-width: 100%;
    font-size: clamp(3.35rem, 6.5vw, 4.5rem);
  }

  .section {
    padding-top: 4.75rem;
    padding-bottom: 4.75rem;
  }

  .split-block,
  .cta-block {
    grid-template-columns: 1fr;
  }

  .about-profile .split-block__media,
  .split-block__media {
    min-height: clamp(20rem, 46vw, 30rem);
  }

  .contact-card {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .service-process__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .service-process__step {
    min-width: 0;
    padding: 1.25rem;
    border: 1px solid var(--brand-line);
    border-radius: 1.25rem;
    background: #ffffff;
  }

  .service-process__step:not(:last-child)::after {
    display: none;
  }

  .contact-page__layout {
    grid-template-columns: 1fr;
  }

  .contact-page__map,
  .contact-page__map iframe {
    min-height: 24rem;
  }

  .product-detail-hero__copy h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
  }
}

@media (min-width: 768px) and (max-width: 899px) {
  .product-detail-hero {
    grid-template-columns: 1fr;
  }

  .product-detail-hero__media {
    min-height: clamp(22rem, 58vw, 30rem);
  }
}

@media (max-width: 767px) {
  .site-topbar__service {
    display: none;
  }

  .site-topbar__inner {
    padding: 0.35rem 0.75rem;
    gap: 0.3rem;
    flex-wrap: nowrap;
  }

  .site-topbar__contact {
    min-width: 0;
    flex: 1 1 auto;
    flex-wrap: nowrap;
    gap: 0.35rem;
  }

  .site-topbar__contact a {
    min-width: 0;
    min-height: 1.65rem;
    gap: 0.25rem;
    font-size: 0.56rem;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .site-topbar__contact a span {
    font-size: 0.56rem;
  }

  .site-topbar__social {
    flex: 0 0 auto;
    flex-wrap: nowrap;
    gap: 0.05rem;
  }

  .site-topbar__social-label {
    display: none;
  }

  .site-topbar__social a {
    width: 1.45rem;
    height: 1.65rem;
    font-size: 1.3rem;
  }

  .site-header__inner {
    min-height: 4.75rem;
    padding: 0.65rem 1rem;
    gap: 0.75rem;
  }

  .site-brand {
    min-width: 0;
    max-width: calc(100% - 8.75rem);
  }

  .site-brand__logo {
    height: 2.3rem;
    transform: scale(1.7);
  }

  .site-menu-btn {
    width: 2.75rem;
    height: 2.75rem;
    flex-basis: 2.75rem;
  }

  .site-language__toggle {
    min-width: 4rem;
    height: 2.5rem;
    padding-inline: 0.55rem;
  }

  .site-language__menu {
    right: -3.25rem;
    width: min(11.5rem, calc(100vw - 2rem));
  }

  .site-mobile {
    max-height: none;
  }

  .site-mobile__panel {
    padding: 0.85rem 1rem 1.25rem;
  }

  .site-mobile__nav a,
  .site-mobile__toggle {
    min-height: 3rem;
    padding: 0.8rem 0.9rem;
  }

  .hero {
    min-height: max(38rem, calc(100svh - 4.75rem));
  }

  .hero__overlay {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.2), rgba(10, 10, 10, 0.78) 72%, rgba(10, 10, 10, 0.9));
  }

  .hero__slide img {
    object-position: center;
  }

  .hero__content {
    width: 100%;
    max-width: none;
    padding: 2.5rem 1rem 5.25rem;
  }

  .hero__title {
    max-width: 100%;
    font-size: clamp(2.65rem, 13vw, 4rem);
    line-height: 0.94;
  }

  .hero__text,
  .section__text {
    font-size: 0.94rem;
    line-height: 1.7;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__trust {
    gap: 0.4rem;
  }

  .hero__trust span,
  .timeline span,
  .cta-block__chips span {
    padding: 0.58rem 0.72rem;
    font-size: 0.72rem;
  }

  .hero__controls {
    right: auto;
    bottom: 1rem;
    left: 1rem;
    transform: scale(0.9);
    transform-origin: left bottom;
  }

  .section {
    padding: 3.75rem 1rem;
  }

  .section__head {
    margin-bottom: 1.5rem;
  }

  .section__head--products .section__title {
    white-space: normal;
    font-size: clamp(2.15rem, 11vw, 3rem);
  }

  .section__eyebrow,
  .hero__eyebrow {
    margin-bottom: 0.75rem;
    letter-spacing: 0.18em;
  }

  .section__title {
    font-size: clamp(2.15rem, 11vw, 3rem);
    line-height: 0.98;
  }

  .solution-grid,
  .project-grid,
  .blog-grid,
  .product-catalog {
    grid-template-columns: 1fr;
  }

  .solution-card img {
    height: auto;
    max-height: none;
    aspect-ratio: 16 / 10;
  }

  .solution-card__body h3,
  .project-card__body h3,
  .blog-card__body h3 {
    font-size: 1.25rem;
  }

  .split-block,
  .cta-block {
    grid-template-columns: 1fr;
  }

  .split-block__content,
  .cta-block__content,
  .contact-form {
    padding: 1.15rem;
    border-radius: 1.25rem;
  }

  .split-block__media,
  .about-profile .split-block__media {
    min-height: 18rem;
    border-radius: 1.25rem;
  }

  .about-profile .split-block__media img {
    position: static;
    aspect-ratio: 4 / 3;
  }

  .page-preview--compact .page-preview__visual {
    aspect-ratio: 16 / 6;
    min-height: 7.5rem;
  }

  .page-preview--compact .page-preview__overlay {
    padding: 0.75rem 1rem;
  }

  .page-preview__copy--center {
    max-width: calc(100% - 1rem);
    padding: 0.8rem 0.9rem;
  }

  .contact-intro {
    padding-top: 2.5rem;
    padding-bottom: 0.5rem;
  }

  .product-detail-hero {
    padding: 2rem 1rem;
  }

  .product-detail-hero__copy {
    padding: 1.15rem;
    border-radius: 1.25rem;
  }

  .product-detail__breadcrumb {
    margin-bottom: 1.35rem;
  }

  .product-detail-hero__copy h1 {
    max-width: 100%;
    font-size: clamp(2.55rem, 13vw, 3.65rem);
  }

  .product-detail-hero__media {
    min-height: 18rem;
    border-radius: 1.25rem;
  }

  .product-detail-body {
    padding: 3rem 1rem;
  }

  .product-detail-features {
    grid-template-columns: 1fr;
  }

  .project-gallery {
    gap: 0.7rem;
  }

  .service-process {
    padding-top: 4.25rem;
    padding-bottom: 4.25rem;
  }

  .service-process__head {
    margin-bottom: 2.5rem;
  }

  .service-process__step {
    grid-template-columns: 3.35rem minmax(0, 1fr);
    gap: 1rem;
    padding-bottom: 2rem;
  }

  .service-process__icon {
    width: 3.35rem;
    height: 3.35rem;
  }

  .service-process__step:not(:last-child)::after {
    top: 3.35rem;
    left: 1.67rem;
  }

  .service-process__content h3 {
    font-size: 0.82rem;
  }

  .service-process__content p {
    font-size: 0.87rem;
  }

  .contact-page__layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-page__panel,
  .contact-page .contact-form {
    padding: 0.9rem;
    border-radius: 1.25rem;
  }

  .contact-page__map,
  .contact-page__map iframe {
    min-height: 17rem;
    border-radius: 1rem;
  }

  .contact-form__actions,
  .contact-form__actions .btn {
    width: 100%;
  }

  .contact-card {
    padding: 1.35rem 1rem;
  }

  .site-footer__inner {
    gap: 2.5rem;
    padding-top: 2.4rem;
  }

  .site-footer__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem 1rem;
  }

  .site-footer__column:last-child {
    grid-column: 1 / -1;
  }

  .site-footer-products__inner {
    padding: 2.2rem 1rem;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-action {
    min-width: 8.75rem;
    min-height: 3.1rem;
    padding: 0.8rem 1rem;
    font-size: 0.8rem;
  }

  .floating-action--phone,
  .floating-action--whatsapp {
    right: 0.75rem;
  }

  .floating-action--phone {
    bottom: 0.75rem;
  }

  .floating-action--whatsapp {
    bottom: 4.6rem;
  }

  .call-picker__panel {
    max-height: calc(100dvh - 2rem);
    overflow-y: auto;
  }
}

@media (max-width: 520px) {
  .site-topbar__contact a {
    font-size: 0.52rem;
  }

  .site-topbar__contact a span {
    font-size: 0.52rem;
  }

  .site-topbar__contact a:first-child {
    max-width: 8.5rem;
  }

  .site-topbar__contact a:first-child span {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .site-topbar__social a {
    width: 1.25rem;
  }

  .project-gallery {
    grid-template-columns: 1fr;
  }

  .site-footer__columns,
  .site-footer-products__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__column:last-child {
    grid-column: auto;
  }

  .gallery-lightbox__close {
    top: 0.75rem;
    right: 0.75rem;
  }

  .gallery-lightbox__nav--prev {
    left: 0.75rem;
  }

  .gallery-lightbox__nav--next {
    right: 0.75rem;
  }
}

@media (max-width: 360px) {
  .site-topbar__contact a:first-child {
    max-width: 6.25rem;
  }

  .site-topbar__social a {
    width: 1.1rem;
  }

  .hero__title {
    font-size: 2.55rem;
  }

  .floating-action {
    min-width: 8.1rem;
  }
}

/* The logo uses real layout dimensions so it scales without overlapping header actions. */
.site-brand {
  width: clamp(9rem, 12vw, 11.5rem);
  height: 3.25rem;
  flex: 0 1 auto;
  min-width: 0;
}

.site-brand__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transform: none;
}

@media (min-width: 1180px) {
  .site-brand {
    width: clamp(11.5rem, 12vw, 12.25rem);
    height: 3.4rem;
  }

  .site-brand__logo {
    width: 100%;
    height: auto;
    max-width: none;
  }
}

@media (min-width: 768px) and (max-width: 1179px) {
  .site-brand {
    width: clamp(8.5rem, 18vw, 10rem);
    height: 3.05rem;
  }
}

@media (max-width: 767px) {
  .site-brand {
    width: clamp(6.75rem, 27vw, 8rem);
    height: 2.7rem;
    max-width: calc(100% - 8.75rem);
  }
}
