:root {
  --red: #e30613;
  --red-dark: #b9000b;
  --red-soft: #fff1f2;
  --yellow: #f4b31b;
  --yellow-dark: #dfa00b;
  --ink: #171a1f;
  --muted: #656c75;
  --surface: #f7f8f9;
  --surface-warm: #fbfaf7;
  --line: #e4e7eb;
  --white: #fff;
  --shadow-sm: 0 8px 22px rgba(20, 25, 33, 0.08);
  --shadow-md: 0 18px 48px rgba(20, 25, 33, 0.12);
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 26px;
  --container: 1320px;
  --transition: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 180px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.7rem, 5vw, 5rem);
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  margin-bottom: 20px;
}

h3 {
  font-size: 1.24rem;
  margin-bottom: 10px;
}

p:last-child {
  margin-bottom: 0;
}

address {
  font-style: normal;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}

.skip-link:focus {
  transform: translateY(0);
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

:focus-visible {
  outline: 3px solid rgba(227, 6, 19, 0.28);
  outline-offset: 3px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  content: "";
  background: currentColor;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 12px 19px 12px 22px;
  color: var(--white);
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 11px;
  box-shadow: 0 8px 20px rgba(227, 6, 19, 0.2);
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.button:hover {
  background: var(--red-dark);
  box-shadow: 0 12px 26px rgba(227, 6, 19, 0.28);
  transform: translateY(-2px);
}

.button .icon {
  width: 18px;
  height: 18px;
}

.button-secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
  box-shadow: none;
}

.button-secondary:hover {
  color: var(--red);
  background: var(--white);
  border-color: var(--red);
  box-shadow: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: 0.92rem;
  font-weight: 800;
}

.text-link .icon {
  width: 17px;
  height: 17px;
  transition: transform var(--transition);
}

.text-link:hover .icon {
  transform: translateX(4px);
}

.site-header {
  position: relative;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 3px 18px rgba(20, 25, 33, 0.08);
}

.header-top {
  border-bottom: 1px solid var(--line);
}

.header-top-inner {
  display: grid;
  min-height: 94px;
  grid-template-columns: 280px minmax(320px, 1fr) auto auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  width: max-content;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  color: var(--red);
  font-size: 3.35rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.075em;
  text-shadow: 0 2px 0 rgba(151, 0, 8, 0.12);
}

.brand-subtitle {
  margin-top: 4px;
  padding-left: 3px;
  color: #0e1013;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.site-search {
  position: relative;
  display: flex;
  min-width: 0;
  height: 51px;
  align-items: center;
  background: var(--white);
  border: 1px solid #cfd3d8;
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.site-search:focus-within {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(227, 6, 19, 0.08);
}

.site-search input {
  width: 100%;
  min-width: 0;
  height: 100%;
  padding: 0 70px 0 24px;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: none;
}

.site-search input::placeholder {
  color: #858b93;
}

.site-search > button {
  position: absolute;
  right: 4px;
  display: grid;
  width: 43px;
  height: 43px;
  padding: 0;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.site-search > button:hover {
  background: var(--red-dark);
}

.search-suggestions {
  position: absolute;
  z-index: 20;
  top: calc(100% + 10px);
  right: 0;
  left: 0;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
}

.search-suggestions a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 13px;
  border-radius: 9px;
  font-size: 0.92rem;
  font-weight: 700;
}

.search-suggestions a:hover,
.search-suggestions a:focus-visible {
  color: var(--red);
  background: var(--red-soft);
}

.search-suggestions small {
  color: var(--muted);
  font-weight: 400;
}

.header-contact {
  display: flex;
  min-width: max-content;
  align-items: center;
  gap: 12px;
}

.header-contact > .icon {
  color: var(--red);
}

.header-contact span {
  display: flex;
  flex-direction: column;
}

.header-contact strong {
  font-size: 0.92rem;
}

.header-contact small {
  color: var(--muted);
  font-size: 0.75rem;
}

.header-contact:hover strong {
  color: var(--red);
}

.header-nav-wrap {
  background: var(--white);
}

.header-nav-inner {
  position: relative;
  display: flex;
  min-height: 69px;
  align-items: center;
  gap: 22px;
}

.main-nav {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  gap: 10px;
}

.nav-link {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: transparent;
  border: 0;
  border-radius: 11px;
  font-size: 0.93rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover,
.nav-link.is-active,
.nav-dropdown.is-active > .nav-link {
  color: var(--red);
  background: var(--red-soft);
}

.nav-home,
.nav-home:hover,
.nav-home.is-active {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 8px 18px rgba(227, 6, 19, 0.18);
}

.nav-home .icon {
  width: 19px;
  height: 19px;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle .icon {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.nav-dropdown.is-open .nav-dropdown-toggle .icon {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  display: grid;
  width: 245px;
  padding: 9px;
  visibility: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  padding: 11px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-dropdown-menu a:hover {
  color: var(--red);
  background: var(--red-soft);
}

.nav-cta {
  display: inline-flex;
  min-width: 186px;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 11px 20px;
  background: var(--yellow);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(244, 179, 27, 0.26);
  font-size: 0.92rem;
  font-weight: 900;
  transition: background var(--transition), transform var(--transition);
}

.nav-cta:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
}

.nav-cta .icon {
  width: 19px;
  height: 19px;
}

.menu-toggle {
  display: none;
}

.home-hero {
  padding-top: 15px;
  background: linear-gradient(180deg, #f7f8f9 0%, #fff 82%);
}

.hero-slider {
  position: relative;
  min-height: 474px;
  overflow: hidden;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(370px, 1fr);
  gap: 8px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.hero-slide.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.hero-slide-media {
  min-width: 0;
  height: 474px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius) 0 0 var(--radius);
}

.hero-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 52px 52px 76px;
  background:
    radial-gradient(circle at 90% 10%, rgba(227, 6, 19, 0.035), transparent 45%),
    var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.hero-slide-copy h1,
.hero-slide-copy h2 {
  max-width: 520px;
  margin-bottom: 20px;
  font-size: clamp(2.65rem, 4.1vw, 4.25rem);
}

.hero-slide-copy h1 span,
.hero-slide-copy h2 span,
.section-heading h2 span,
.welcome-panel h2 span {
  color: var(--red);
}

.hero-slide-copy h1 span,
.hero-slide-copy h2 span {
  display: block;
}

.hero-slide-copy > p {
  max-width: 460px;
  margin-bottom: 15px;
  color: #333941;
  font-size: 1.08rem;
  line-height: 1.45;
}

.hero-slide-copy .hero-highlight {
  margin-bottom: 25px;
}

.hero-highlight strong {
  color: var(--red);
}

.slider-controls {
  position: absolute;
  z-index: 5;
  right: 31px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.slider-arrow {
  display: grid;
  width: 32px;
  height: 32px;
  padding: 0;
  place-items: center;
  background: transparent;
  border: 0;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.slider-arrow:hover {
  color: var(--red);
  background: var(--red-soft);
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 12px;
}

.slider-dot {
  width: 13px;
  height: 13px;
  padding: 0;
  background: #d8dbe0;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.slider-dot.is-active {
  background: var(--red);
}

.benefits-section {
  padding: 19px 0 12px;
  background: linear-gradient(180deg, #fff, #fafafa);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.benefit-card {
  display: flex;
  min-height: 102px;
  align-items: center;
  gap: 18px;
  padding: 19px 23px;
  background: var(--white);
  border: 1px solid #e8eaed;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), border-color var(--transition);
}

a.benefit-card:hover {
  border-color: rgba(227, 6, 19, 0.3);
  transform: translateY(-3px);
}

.benefit-icon {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--red);
}

.benefit-icon .icon {
  width: 42px;
  height: 42px;
  stroke-width: 1.65;
}

.benefit-card > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.benefit-card strong {
  margin-bottom: 3px;
  font-size: 0.98rem;
}

.benefit-card small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.section {
  padding: 88px 0;
}

.services-overview {
  padding-bottom: 36px;
}

.page-hero + .section {
  padding-top: 58px;
}

.compact-section {
  padding-top: 28px;
  padding-bottom: 32px;
}

.section-tint {
  background: var(--surface);
}

.section-heading {
  margin-bottom: 38px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading.centered {
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading.centered .eyebrow::after {
  width: 30px;
  height: 2px;
  content: "";
  background: currentColor;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  align-items: end;
  gap: 60px;
}

.split-heading p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 1.03rem;
}

.narrow-heading {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.narrow-heading p {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.service-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.service-card-image {
  display: block;
  height: 182px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.035);
}

.service-card-body {
  padding: 21px 26px 24px;
}

.service-card-body p {
  min-height: 75px;
  margin-bottom: 18px;
  color: #464d56;
  font-size: 0.92rem;
}

.welcome-section {
  background: linear-gradient(180deg, #fff, #f7f8f9);
}

.welcome-panel {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr auto;
  align-items: center;
  gap: 48px;
  padding: 27px 38px;
  background: var(--white);
  border: 1px solid #dce0e4;
  border-radius: 13px;
  box-shadow: var(--shadow-sm);
}

.welcome-panel h2 {
  margin-bottom: 8px;
  font-size: 1.7rem;
}

.welcome-panel p {
  color: #4b525b;
  font-size: 0.91rem;
}

.welcome-panel .eyebrow {
  margin-bottom: 7px;
}

.opening-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  border-left: 1px solid var(--line);
}

.opening-summary div {
  padding: 5px 24px;
}

.opening-summary dt {
  margin-bottom: 4px;
  color: var(--red);
  font-weight: 800;
}

.opening-summary dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.welcome-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.phone-plain {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 800;
}

.phone-plain:hover {
  color: var(--red);
}

.phone-plain .icon {
  width: 16px;
  height: 16px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.78rem;
}

.breadcrumb a:hover {
  color: var(--red);
}

.page-hero {
  padding: 24px 0 50px;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 15%, rgba(244, 179, 27, 0.11), transparent 25%),
    linear-gradient(180deg, #f7f8f9, #fff);
}

.page-hero-grid {
  display: grid;
  min-height: 450px;
  grid-template-columns: minmax(380px, 0.84fr) minmax(0, 1.16fr);
  align-items: stretch;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.page-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 56px 62px;
}

.page-hero-copy h1 {
  max-width: 650px;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 4.7vw, 4.6rem);
}

.page-hero-copy p {
  max-width: 570px;
  margin-bottom: 0;
  color: #49515a;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 27px;
}

.page-hero-media {
  min-height: 450px;
  margin: 0;
  overflow: hidden;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.assortment-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 58px;
  border-bottom: 1px solid var(--line);
}

.assortment-section {
  padding-bottom: 52px;
}

.assortment-section + .section {
  padding-top: 52px;
}

.assortment-list article {
  display: flex;
  min-height: 148px;
  gap: 20px;
  padding: 27px 10px;
  border-top: 1px solid var(--line);
}

.assortment-list article:nth-child(even) {
  padding-left: 8px;
}

.list-icon,
.project-icon {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--red);
  background: var(--red-soft);
  border-radius: 13px;
}

.list-icon .icon,
.project-icon .icon {
  width: 27px;
  height: 27px;
}

.assortment-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.assortment-featured {
  background: linear-gradient(90deg, var(--red-soft), transparent);
}

.assortment-featured .text-link {
  margin-top: 12px;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  padding: 42px 46px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.contact-band h2 {
  margin-bottom: 8px;
  font-size: 2.2rem;
}

.contact-band p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-band-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.contact-band-phone {
  font-size: 1.15rem;
  font-weight: 900;
  white-space: nowrap;
}

.contact-band-phone:hover {
  color: var(--red);
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: 88px;
}

.editorial-intro {
  position: sticky;
  top: 32px;
  align-self: start;
}

.editorial-intro p {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-groups {
  border-bottom: 1px solid var(--line);
}

.service-groups article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.service-groups article > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--red);
  background: var(--red-soft);
  border-radius: 14px;
}

.service-groups article > span .icon {
  width: 26px;
  height: 26px;
}

.check-list {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 14px 0 0;
  color: var(--muted);
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-list .icon {
  width: 17px;
  height: 17px;
  color: var(--red);
  stroke-width: 2.5;
}

.two-column-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: center;
  gap: 84px;
}

.two-column-copy p {
  max-width: 720px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 1.04rem;
}

.plain-list-panel {
  padding: 34px 38px;
  background: var(--white);
  border-left: 5px solid var(--red);
  border-radius: 0 14px 14px 0;
  box-shadow: var(--shadow-sm);
}

.plain-list-panel ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.plain-list-panel li {
  position: relative;
  padding-left: 22px;
  color: #4d545d;
}

.plain-list-panel li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 2px;
  content: "";
  background: var(--red);
}

.project-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.project-columns article {
  min-height: 340px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.project-columns h3 {
  margin-top: 25px;
  font-size: 1.45rem;
}

.project-columns ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 20px 0 0;
  color: var(--muted);
  list-style: none;
}

.project-columns li {
  position: relative;
  padding-left: 18px;
}

.project-columns li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--red);
  border-radius: 50%;
  transform: translateY(-50%);
}

.info-ribbon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 25px 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 13px;
}

.info-ribbon > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.info-ribbon > div > .icon {
  color: var(--red);
}

.info-ribbon span {
  display: flex;
  flex-direction: column;
}

.info-ribbon small {
  color: var(--muted);
}

.visual-copy-grid {
  align-items: start;
}

.gallery-section {
  overflow: hidden;
}

.visual-gallery {
  display: grid;
  min-height: 610px;
  grid-template-columns: 1.45fr 0.85fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}

.gallery-item {
  position: relative;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: #ddd;
  border: 0;
  border-radius: 13px;
  cursor: zoom-in;
}

.gallery-item-large {
  grid-row: 1 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-item-source img {
  object-position: center 48%;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(17, 20, 24, 0.78);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.gallery-dialog {
  width: min(1200px, calc(100% - 48px));
  max-width: none;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
}

.gallery-dialog::backdrop {
  background: rgba(12, 15, 18, 0.84);
  backdrop-filter: blur(5px);
}

.gallery-dialog img {
  width: 100%;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 12px;
}

.gallery-dialog-close {
  position: absolute;
  z-index: 2;
  top: -16px;
  right: -16px;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

.about-grid {
  align-items: start;
}

.pillars-list {
  display: grid;
  border-bottom: 1px solid var(--line);
}

.pillars-list article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.pillars-list article > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--red);
  background: var(--red-soft);
  border-radius: 13px;
}

.pillars-list p {
  margin: 0;
  color: var(--muted);
}

.company-data-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 90px;
}

.company-data-grid > div:first-child p {
  color: var(--muted);
}

.locations-mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.locations-mini article {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.locations-mini p {
  color: var(--muted);
}

.locations-mini a {
  color: var(--red);
  font-weight: 800;
}

.promo-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.promo-categories a {
  display: flex;
  min-height: 130px;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.promo-categories a:hover {
  border-color: rgba(227, 6, 19, 0.32);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.promo-categories span {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--red);
  background: var(--red-soft);
  border-radius: 13px;
}

.promo-note {
  display: flex;
  max-width: 800px;
  align-items: center;
  gap: 20px;
  margin: 35px auto 0;
  padding: 24px 28px;
  color: var(--ink);
  background: #fff6d9;
  border: 1px solid #f1d787;
  border-radius: 14px;
}

.promo-note > .icon {
  width: 34px;
  height: 34px;
  color: #b67b00;
}

.promo-note h3,
.promo-note p {
  margin-bottom: 0;
}

.promo-note p {
  color: #655523;
  font-size: 0.9rem;
}

.contact-hero {
  padding: 24px 0 55px;
  background:
    radial-gradient(circle at 85% 30%, rgba(227, 6, 19, 0.06), transparent 30%),
    linear-gradient(180deg, #f7f8f9, #fff);
}

.contact-locations {
  padding-top: 58px;
  padding-bottom: 58px;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(380px, 0.8fr);
  align-items: center;
  gap: 70px;
  padding: 55px 62px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.contact-hero-grid h1 {
  margin-bottom: 18px;
}

.contact-hero-grid > div:first-child p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.04rem;
}

.contact-primary-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px;
  color: var(--white);
  background: var(--red);
  border-radius: 15px;
  box-shadow: 0 18px 35px rgba(227, 6, 19, 0.2);
}

.contact-primary-card > span {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.contact-primary-card > span .icon {
  width: 27px;
  height: 27px;
}

.contact-primary-card > div {
  display: flex;
  flex-direction: column;
}

.contact-primary-card small {
  margin-bottom: 5px;
  opacity: 0.8;
}

.contact-primary-card a:first-of-type {
  font-size: 1.45rem;
  font-weight: 900;
}

.contact-primary-card a:last-of-type {
  font-size: 0.86rem;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.location-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.location-card-primary {
  border-top: 5px solid var(--red);
}

.location-card-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.location-card-title > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--red);
  background: var(--red-soft);
  border-radius: 13px;
}

.location-card-title small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.location-card h2 {
  margin: 2px 0 0;
  font-size: 1.85rem;
}

.location-card address {
  padding-bottom: 22px;
  margin-bottom: 7px;
  border-bottom: 1px solid var(--line);
  font-size: 1.02rem;
  font-weight: 700;
}

.location-card dl {
  display: grid;
  gap: 18px;
  margin: 18px 0 26px;
}

.location-card dl div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 15px;
}

.location-card dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.location-card dd {
  margin: 0;
  color: #414851;
  font-size: 0.89rem;
}

.location-card dd a:hover {
  color: var(--red);
}

.location-card > .text-link {
  margin-top: auto;
}

.map-section {
  position: relative;
  height: 340px;
  overflow: hidden;
  background-color: #e9ece8;
  background-image:
    linear-gradient(32deg, transparent 0 46%, rgba(255, 255, 255, 0.96) 47% 51%, transparent 52%),
    linear-gradient(118deg, transparent 0 58%, rgba(255, 255, 255, 0.92) 59% 64%, transparent 65%),
    linear-gradient(8deg, transparent 0 25%, rgba(255, 255, 255, 0.82) 26% 29%, transparent 30%);
  border-top: 1px solid var(--line);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0.68;
  filter: saturate(0.72) contrast(1.04);
  mix-blend-mode: multiply;
}

.map-overlay {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: max(24px, calc((100vw - var(--container)) / 2));
  display: grid;
  min-width: min(430px, calc(100% - 48px));
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 17px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
}

.map-overlay > span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--red);
  background: var(--red-soft);
  border-radius: 12px;
}

.map-overlay > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.map-overlay small {
  color: var(--muted);
  font-size: 0.72rem;
}

.map-overlay strong {
  font-size: 0.93rem;
}

.map-overlay > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
}

.map-overlay > a .icon {
  width: 16px;
  height: 16px;
}

.not-found {
  display: grid;
  min-height: 65vh;
  place-items: center;
  text-align: center;
}

.not-found .container {
  max-width: 760px;
}

.not-found p {
  max-width: 560px;
  margin: 0 auto 28px;
  color: var(--muted);
}

.not-found .container > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.site-footer {
  color: #e6e8eb;
  background: #1d2227;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr 0.6fr 1.2fr;
  gap: 54px;
  padding-top: 58px;
  padding-bottom: 52px;
}

.site-footer .brand-name {
  color: var(--white);
  font-size: 2.8rem;
  text-shadow: none;
}

.site-footer .brand-subtitle {
  color: #cfd3d7;
}

.footer-brand p {
  max-width: 310px;
  margin-top: 19px;
  color: #aeb4bb;
  font-size: 0.88rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-column h2 {
  margin-bottom: 7px;
  color: var(--white);
  font-size: 0.91rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-column a {
  color: #bac0c6;
  font-size: 0.82rem;
  transition: color var(--transition);
}

.footer-column a:hover {
  color: var(--white);
}

.footer-contact-list a {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.footer-contact-list .icon {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  color: var(--red);
}

.footer-bottom {
  background: #161a1e;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom-inner {
  display: flex;
  min-height: 55px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: #9ca3aa;
  font-size: 0.72rem;
}

@media (max-width: 1180px) {
  .header-top-inner {
    grid-template-columns: 240px minmax(280px, 1fr) auto;
  }

  .header-location {
    display: none;
  }

  .header-nav-inner {
    gap: 10px;
  }

  .nav-link {
    padding-right: 13px;
    padding-left: 13px;
  }

  .benefits-grid {
    gap: 14px;
  }

  .benefit-card {
    padding-right: 17px;
    padding-left: 17px;
  }

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

  .welcome-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: flex-end;
  }
}

@media (max-width: 1020px) {
  html {
    scroll-padding-top: 120px;
  }

  .header-top-inner {
    min-height: 82px;
    grid-template-columns: 220px 1fr auto;
    gap: 18px;
  }

  .brand-name {
    font-size: 2.75rem;
  }

  .site-search {
    height: 47px;
  }

  .header-contact strong {
    font-size: 0.82rem;
  }

  .header-contact small {
    font-size: 0.68rem;
  }

  .header-nav-inner {
    min-height: 58px;
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: 9px;
    padding: 9px 14px;
    background: var(--red);
    border: 0;
    border-radius: 10px;
    color: var(--white);
    font-weight: 800;
    cursor: pointer;
  }

  .menu-toggle .icon {
    width: 20px;
    height: 20px;
  }

  .menu-close-icon {
    display: none;
  }

  .menu-toggle[aria-expanded="true"] .menu-open-icon {
    display: none;
  }

  .menu-toggle[aria-expanded="true"] .menu-close-icon {
    display: block;
  }

  .main-nav {
    position: absolute;
    z-index: 50;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 165px);
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    padding: 12px;
    overflow-y: auto;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow-md);
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 12px 14px;
  }

  .nav-home {
    justify-content: flex-start;
  }

  .nav-dropdown-menu {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0 9px;
    visibility: hidden;
    overflow: hidden;
    border: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
    transition: max-height 220ms ease, padding 220ms ease, visibility 220ms ease;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    visibility: hidden;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    max-height: 180px;
    padding-top: 6px;
    padding-bottom: 6px;
    visibility: visible;
  }

  .nav-cta {
    min-width: 178px;
    min-height: 43px;
  }

  .hero-slider,
  .hero-slide-media {
    min-height: 445px;
    height: 445px;
  }

  .hero-slide {
    grid-template-columns: minmax(0, 1.35fr) minmax(340px, 1fr);
  }

  .hero-slide-copy {
    padding: 40px 34px 70px;
  }

  .hero-slide-copy h1,
  .hero-slide-copy h2 {
    font-size: clamp(2.35rem, 5vw, 3.4rem);
  }

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

  .service-cards {
    gap: 20px;
  }

  .service-card-body {
    padding-right: 20px;
    padding-left: 20px;
  }

  .page-hero-grid {
    grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  }

  .page-hero-copy {
    padding: 44px 40px;
  }

  .editorial-grid {
    gap: 55px;
  }

  .project-columns {
    gap: 16px;
  }

  .project-columns article {
    padding: 28px;
  }

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

  .location-card:last-child {
    min-height: 390px;
    grid-column: 1 / -1;
  }

  .footer-main {
    grid-template-columns: 1.2fr 1fr 0.8fr;
  }

  .footer-contact-list {
    grid-column: 1 / -1;
  }
}

@media (max-width: 780px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .header-top-inner {
    min-height: 132px;
    grid-template-columns: 1fr auto;
    grid-template-rows: 68px 48px;
  }

  .site-search {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .header-contact {
    grid-column: 2;
    grid-row: 1;
  }

  .header-nav-inner {
    min-height: 55px;
  }

  .nav-cta {
    min-width: 156px;
  }

  .home-hero {
    padding-top: 10px;
  }

  .hero-slider {
    min-height: 686px;
    height: 686px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    grid-template-rows: 318px 1fr;
    gap: 0;
  }

  .hero-slide-media {
    min-height: 318px;
    height: 318px;
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .hero-slide-copy {
    justify-content: flex-start;
    padding: 31px 30px 72px;
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .hero-slide-copy h1,
  .hero-slide-copy h2 {
    margin-bottom: 14px;
    font-size: clamp(2.25rem, 10vw, 3.2rem);
  }

  .hero-slide-copy h1 span,
  .hero-slide-copy h2 span {
    display: inline;
  }

  .hero-slide-copy > p {
    font-size: 0.98rem;
  }

  .benefits-grid,
  .service-cards,
  .assortment-list,
  .project-columns,
  .promo-categories,
  .company-data-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 92px;
  }

  .section {
    padding: 66px 0;
  }

  .services-overview {
    padding-bottom: 36px;
  }

  .contact-locations {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .compact-section {
    padding-top: 24px;
    padding-bottom: 28px;
  }

  .split-heading,
  .editorial-grid,
  .two-column-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .service-card-body p {
    min-height: 0;
  }

  .welcome-panel {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 26px;
  }

  .opening-summary {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .opening-summary div {
    padding: 20px 8px 0;
  }

  .welcome-actions {
    grid-column: auto;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .page-hero {
    padding-bottom: 34px;
  }

  .page-hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .page-hero-copy {
    padding: 40px 30px;
  }

  .page-hero-copy h1 {
    font-size: clamp(2.55rem, 11vw, 4rem);
  }

  .page-hero-media {
    min-height: 330px;
    max-height: 430px;
  }

  .assortment-list {
    column-gap: 0;
  }

  .assortment-list article:nth-child(even) {
    padding-left: 10px;
  }

  .contact-band {
    align-items: flex-start;
    flex-direction: column;
    padding: 32px;
  }

  .editorial-intro {
    position: static;
  }

  .construction-section .two-column-section {
    gap: 38px;
  }

  .info-ribbon {
    align-items: flex-start;
    flex-direction: column;
  }

  .visual-gallery {
    min-height: 780px;
    grid-template-columns: 1fr;
    grid-template-rows: 1.2fr 0.8fr 0.8fr;
  }

  .gallery-item-large {
    grid-row: auto;
  }

  .locations-mini {
    grid-template-columns: 1fr;
  }

  .contact-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 30px;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-card,
  .location-card:last-child {
    min-height: 0;
    grid-column: auto;
  }

  .map-section {
    height: 285px;
  }

  .map-overlay {
    top: auto;
    right: 16px;
    bottom: 18px;
    left: 16px;
    min-width: 0;
    grid-template-columns: 46px 1fr;
    gap: 14px;
    padding: 16px;
    transform: none;
  }

  .map-overlay > span {
    width: 44px;
    height: 44px;
  }

  .map-overlay > a {
    grid-column: 2;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-contact-list {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2rem;
  }

  .brand-name {
    font-size: 2.45rem;
  }

  .brand-subtitle {
    font-size: 0.72rem;
  }

  .header-contact span {
    display: none;
  }

  .header-contact.header-location {
    display: none;
  }

  .header-contact {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--white);
    background: var(--red);
    border-radius: 50%;
  }

  .header-contact > .icon {
    color: inherit;
  }

  .nav-cta {
    min-width: 0;
    padding: 10px 14px;
  }

  .nav-cta span {
    display: none;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .hero-slider {
    min-height: 710px;
    height: 710px;
  }

  .hero-slide {
    grid-template-rows: 285px 1fr;
  }

  .hero-slide-media {
    min-height: 285px;
    height: 285px;
  }

  .hero-slide-copy {
    padding: 28px 22px 76px;
  }

  .slider-controls {
    right: 18px;
  }

  .service-card-image {
    height: 210px;
  }

  .opening-summary {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .welcome-actions {
    flex-direction: column;
  }

  .page-hero-copy {
    padding: 34px 22px;
  }

  .page-hero-media {
    min-height: 270px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .assortment-list article {
    min-height: 0;
    padding: 23px 6px;
  }

  .list-icon,
  .project-icon {
    width: 45px;
    height: 45px;
  }

  .contact-band {
    padding: 28px 22px;
  }

  .contact-band-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-groups article {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .service-groups article > span {
    width: 43px;
    height: 43px;
  }

  .plain-list-panel,
  .project-columns article,
  .location-card {
    padding: 26px 22px;
  }

  .visual-gallery {
    min-height: 650px;
  }

  .promo-categories a {
    min-height: 105px;
  }

  .contact-primary-card {
    align-items: flex-start;
    padding: 23px;
  }

  .contact-primary-card a:first-of-type {
    font-size: 1.1rem;
  }

  .location-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-contact-list {
    grid-column: auto;
  }

  .footer-bottom-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

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