:root {
  --color-primary: #d71920;
  --color-primary-dark: #a31218;
  --color-secondary: #111111;
  --color-background: #ffffff;
  --color-surface: #ffffff;
  --color-surface-alt: #f3f3f3;
  --color-border: #d7d7d7;
  --color-text: #1d1d1f;
  --color-text-soft: #55575c;
  --color-success: #0e6b46;
  --color-warning: #996b00;
  --color-error: #b42318;
  --shadow-soft: 0 10px 26px rgba(15, 16, 18, 0.06);
  --shadow-hover: 0 16px 30px rgba(15, 16, 18, 0.1);
  --radius-sm: 0.3rem;
  --radius-md: 0.45rem;
  --radius-lg: 0.55rem;
  --max-width: 1180px;
  --header-height: 88px;
  --transition: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--color-text);
  background: var(--color-background);
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(123, 23, 24, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 1000;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--color-primary);
  color: #fff;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: #f6f6f6;
}

.section-heading {
  margin-bottom: 2.2rem;
  max-width: 720px;
}

.section-heading h2,
.page-hero h1,
.hero h1,
.content-card h2,
.split-layout__content h2 {
  margin: 0.2rem 0 0.75rem;
  line-height: 1.15;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.9rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 0.2rem;
  font-weight: 700;
  transition: transform var(--transition), background-color var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: none;
}

.button-primary:hover {
  background: var(--color-primary-dark);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
  color: #fff;
}

.split-layout .button-secondary,
.section .button-secondary {
  border-color: var(--color-primary);
  background: transparent;
  color: var(--color-primary);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--color-primary);
  background: #111111;
}

.home-page .site-header {
  position: absolute;
  width: 100%;
  border-bottom: 0;
  background: transparent;
}

.about-page .site-header {
  position: absolute;
  width: 100%;
  border-bottom: 0;
  background: transparent;
}

.products-page .site-header {
  position: absolute;
  width: 100%;
  border-bottom: 0;
  background: transparent;
}

.contact-page .site-header {
  position: absolute;
  width: 100%;
  border-bottom: 0;
  background: transparent;
}

.gallery-page .site-header {
  position: absolute;
  width: 100%;
  border-bottom: 0;
  background: transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 1rem;
}

.brand img {
  width: min(250px, 100%);
  height: auto;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 600;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--color-primary);
  transition: transform var(--transition);
}

.site-nav a:hover::after,
.site-nav a.is-current::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.2rem;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 1.2rem;
  height: 2px;
  margin: 0.22rem auto;
  background: #fff;
  transition: transform var(--transition), opacity var(--transition);
}

.site-header.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: stretch;
  overflow: clip;
  background: #171717;
}

.home-page {
  background: #ffffff;
}

.home-page .container {
  width: min(calc(100% - 2rem), 1200px);
}

.home-page .brand img {
  width: min(320px, 100%);
}

.home-page .site-nav ul {
  gap: 2.5rem;
}

.home-page .site-nav a {
  font-size: 0.98rem;
  font-weight: 500;
  text-transform: none;
}

.home-page .site-nav a::after {
  bottom: -0.35rem;
  background: #ffffff;
}

.home-page .nav-toggle {
  border-color: rgba(255, 255, 255, 0.35);
}

.home-hero {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding: 7.4rem 0 8.5rem;
}

.about-page .container {
  width: min(calc(100% - 2rem), 1200px);
}

.products-page .container {
  width: min(calc(100% - 2rem), 1200px);
}

.contact-page .container {
  width: min(calc(100% - 2rem), 1200px);
}

.gallery-page .container {
  width: min(calc(100% - 2rem), 1200px);
}

.about-page .brand img {
  width: min(320px, 100%);
}

.products-page .brand img {
  width: min(320px, 100%);
}

.contact-page .brand img {
  width: min(320px, 100%);
}

.gallery-page .brand img {
  width: min(320px, 100%);
}

.about-page .site-nav ul {
  gap: 2.5rem;
}

.products-page .site-nav ul {
  gap: 2.5rem;
}

.contact-page .site-nav ul {
  gap: 2.5rem;
}

.gallery-page .site-nav ul {
  gap: 2.5rem;
}

.about-page .site-nav a {
  font-size: 0.98rem;
  font-weight: 500;
  text-transform: none;
}

.products-page .site-nav a {
  font-size: 0.98rem;
  font-weight: 500;
  text-transform: none;
}

.contact-page .site-nav a {
  font-size: 0.98rem;
  font-weight: 500;
  text-transform: none;
}

.gallery-page .site-nav a {
  font-size: 0.98rem;
  font-weight: 500;
  text-transform: none;
}

.about-page .site-nav a::after {
  background: #ffffff;
}

.products-page .site-nav a::after {
  background: #ffffff;
}

.contact-page .site-nav a::after {
  background: #ffffff;
}

.gallery-page .site-nav a::after {
  background: #ffffff;
}

.about-page .nav-toggle {
  border-color: rgba(255, 255, 255, 0.35);
}

.products-page .nav-toggle {
  border-color: rgba(255, 255, 255, 0.35);
}

.contact-page .nav-toggle {
  border-color: rgba(255, 255, 255, 0.35);
}

.gallery-page .nav-toggle {
  border-color: rgba(255, 255, 255, 0.35);
}

.about-hero {
  min-height: 360px;
  background:
    linear-gradient(180deg, rgba(131, 204, 80, 0.43) 0%, rgba(64, 178, 99, 0.5) 100%),
    url("../img/colombia_argos.png") center center / cover no-repeat;
}

.products-hero {
  min-height: 360px;
  background:
    linear-gradient(180deg, rgba(131, 204, 80, 0.43) 0%, rgba(64, 178, 99, 0.5) 100%),
    url("../img/colombia_argos.png") center center / cover no-repeat;
}

.contact-hero {
  min-height: 360px;
  background:
    linear-gradient(180deg, rgba(131, 204, 80, 0.43) 0%, rgba(64, 178, 99, 0.5) 100%),
    url("../img/colombia_argos.png") center center / cover no-repeat;
}

.gallery-hero {
  min-height: 360px;
  background:
    linear-gradient(180deg, rgba(131, 204, 80, 0.43) 0%, rgba(64, 178, 99, 0.5) 100%),
    url("../img/colombia_argos.png") center center / cover no-repeat;
}

.about-intro {
  margin-top: -14px;
  margin-bottom: -35px;
  padding: 40px 0 20px;
  background: linear-gradient(180deg, #d9fdde 0%, #ffffff 21%);
}

.products-intro {
  margin-top: -14px;
  margin-bottom: -35px;
  padding: 40px 0 10px;
  background: linear-gradient(180deg, #d9fdde 0%, #ffffff 21%);
}

.contact-intro {
  margin-top: -14px;
  margin-bottom: -35px;
  padding: 40px 0 20px;
  background: linear-gradient(180deg, #d9fdde 0%, #ffffff 21%);
}

.gallery-intro {
  margin-top: -14px;
  margin-bottom: -35px;
  padding: 40px 0 20px;
  background: linear-gradient(180deg, #d9fdde 0%, #ffffff 21%);
}

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

.gallery-intro__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.contact-intro h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 500;
  color: #304a6b;
}

.gallery-intro h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 500;
  color: #304a6b;
}

.contact-intro p {
  margin: 0 auto;
  max-width: 900px;
  padding: 0 70px 20px;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: #000000;
}

.gallery-intro p {
  margin: 0 auto;
  max-width: 900px;
  padding: 0 70px 20px;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: #000000;
}

.contact-showcase {
  padding: 2rem 0 5rem;
}

.contact-showcase__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}

.contact-showcase__card {
  padding: 2rem;
  border: 1px solid #d7d7d7;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(15, 16, 18, 0.06);
}

.contact-showcase__card h2 {
  margin: 0 0 1.2rem;
  font-size: 2rem;
  font-weight: 500;
  color: #304a6b;
}

.contact-showcase__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-showcase__list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #2d344b;
}

.contact-showcase__list a {
  color: inherit;
}

.contact-showcase__list li + li {
  margin-top: 0.9rem;
}

.contact-showcase__list span {
  display: inline-flex;
  width: 3rem;
  flex: 0 0 3rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5a6b87;
}

.contact-showcase__extra {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.7rem 1.1rem;
  border: 1px solid #000000;
  color: #111111;
  font-weight: 600;
  background: #ffffff;
}

.contact-showcase__map {
  overflow: hidden;
  min-height: 100%;
  border: 1px solid #d7d7d7;
  box-shadow: 0 10px 26px rgba(15, 16, 18, 0.06);
}

.contact-showcase__map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.contact-page .home-footer__social a:last-child {
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.gallery-page .home-footer__social a:last-child {
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.gallery-showcase {
  padding: 2rem 0 1.5rem;
}

.gallery-showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.gallery-page .gallery-item {
  position: relative;
  border-radius: 0;
  box-shadow: none;
}

.gallery-page .gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-page .gallery-item:hover::after {
  opacity: 1;
}

.gallery-page .gallery-item img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.gallery-videos {
  padding: 1.5rem 0 5rem;
}

.gallery-videos__heading {
  margin: 0 auto 2rem;
  max-width: 900px;
  text-align: center;
}

.gallery-videos__heading h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 500;
  color: #304a6b;
}

.gallery-videos__heading p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: #2d344b;
}

.gallery-videos__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.gallery-video-card {
  overflow: hidden;
  border: 1px solid #d7d7d7;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(15, 16, 18, 0.06);
}

.gallery-video-card video {
  display: block;
  width: 100%;
  background: #000000;
}

.products-intro__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.products-intro h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 500;
  color: #304a6b;
}

.products-intro p {
  margin: 0 auto;
  max-width: 900px;
  padding: 0 70px 30px;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: #000000;
}

.products-group {
  padding: 0;
}

.products-group--compact {
  padding-top: 23px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.product-showcase-card {
  text-align: center;
}

.product-showcase-card img {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.product-showcase-card h2 {
  margin: 0;
  padding: 0 25px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #304a6b;
}

.product-showcase-card__divider,
.products-divider__line {
  width: 50px;
  height: 1px;
  margin: 10px auto;
  background: #000000;
}

.product-showcase-card p {
  margin: 0;
  padding: 0 25px;
  font-size: 0.98rem;
  line-height: 1.75;
  color: #222222;
}

.product-showcase-card--minimal h2 {
  display: none;
}

.products-section-title {
  padding: 35px 0 0;
}

.products-section-title--spaced {
  padding-top: 40px;
}

.products-section-title h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 500;
  color: #304a6b;
}

.products-divider {
  padding: 16px 0 0;
}

.about-intro__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.about-intro h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 500;
  color: #304a6b;
}

.about-intro p {
  margin: 0 auto;
  max-width: 980px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.8;
  color: #000000;
}

.about-block {
  padding: 2rem 0;
}

.about-block__grid {
  display: grid;
  grid-template-columns: 42.719% 57.281%;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.about-block--reverse .about-block__grid {
  grid-template-columns: 57.982% 42.017%;
}

.about-block__text--left {
  padding-right: 19%;
}

.about-block__text--right {
  padding-left: 19%;
}

.about-block__text h2,
.about-values h2 {
  margin: 0 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 400;
  color: #61ce70;
}

.about-block__text p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: #353535;
}

.about-block__media--raised {
  margin-top: -40px;
}

.about-block--reverse .about-block__media--raised {
  margin-top: -63px;
}

.about-block__media img {
  display: block;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  border: 15px solid #ffffff;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.5);
}

.about-values {
  padding: 0 0 100px;
}

.about-values__inner {
  max-width: 900px;
  margin: 0 auto;
  padding-right: 19%;
}

.about-values h2 {
  text-align: center;
}

.about-values p,
.about-values li {
  font-size: 16px;
  line-height: 1.9;
  color: #000000;
}

.about-values ul {
  margin: 0;
  padding-left: 1.4rem;
}

.about-values li + li {
  margin-top: 0.2rem;
}

.home-hero__media,
.home-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero__media img {
  object-fit: cover;
  object-position: center left;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(360deg, rgba(125, 206, 69, 0.85) 100%, rgba(64, 178, 99, 0.72) 43%);
}

.home-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
  padding-top: 7rem;
  color: #ffffff;
}

.home-hero__content h1 {
  margin: 0;
  font-size: clamp(2.8rem, 4.8vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
}

.home-hero__content p {
  margin: 2rem 0 0;
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  font-weight: 700;
}

.home-services {
  position: relative;
  z-index: 2;
  margin-top: -13.5rem;
  padding-bottom: 4.2rem;
}

.home-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.home-service-card {
  padding: 1.9rem 1.9rem 2.15rem;
  border-radius: 0.4rem;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.home-service-card__icon {
  margin-bottom: 0.9rem;
  font-size: 3.2rem;
  line-height: 1;
  color: #67d46b;
}

.home-service-card h2 {
  margin: 0 0 1rem;
  font-size: 1.2rem;
  color: #304a6b;
}

.home-service-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #2c3550;
}

.home-band {
  padding: 4rem 0 4.5rem;
}

.home-title {
  margin: 0 0 2.4rem;
  text-align: center;
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 500;
  color: #304a6b;
}

.home-clients {
  position: relative;
  overflow: hidden;
}

.home-clients::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -6rem;
  height: 12rem;
  border-radius: 50%;
  background: #f7f7f7;
  z-index: 0;
}

.home-clients .container {
  position: relative;
  z-index: 1;
  max-width: 1240px;
}

.home-clients__row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 1.4rem;
}

.home-clients__row img {
  width: 82%;
  max-height: 78px;
  object-fit: contain;
  justify-self: center;
  padding: 0;
  border: 0;
  background: transparent;
  filter: none;
  box-shadow: none;
}

.home-products {
  background: #f7f7f7;
}

.home-products__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.25rem;
  max-width: 1040px;
  margin: 0 auto;
}

.home-product-tile {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  background: #efefef;
  overflow: hidden;
}

.home-product-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  opacity: 0;
  transition: opacity var(--transition);
}

.home-product-tile:hover::after,
.home-product-tile:focus-visible::after {
  opacity: 1;
}

.home-product-tile img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #efefef;
  transition: transform 220ms ease;
}

.home-product-tile:hover img,
.home-product-tile:focus-visible img {
  transform: scale(1.02);
}

.home-products__actions,
.home-works__actions {
  margin-top: 1.8rem;
  text-align: center;
}

.home-pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 178px;
  min-height: 54px;
  padding: 0.85rem 1.9rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: linear-gradient(180deg, #61b6d7 0%, #4aa6cc 100%);
  box-shadow: 0 12px 24px rgba(74, 166, 204, 0.22);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.home-pill-button:hover,
.home-pill-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(74, 166, 204, 0.28);
  filter: brightness(1.03);
}

.home-works {
  padding-top: 5.5rem;
  padding-bottom: 6rem;
}

.home-works__image {
  display: flex;
  justify-content: center;
}

.home-works__image a {
  display: inline-block;
}

.home-works__image img {
  width: min(100%, 600px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.home-footer {
  padding: 1.6rem 0 1.4rem;
  background: #8db883;
}

.home-footer__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1380px;
  margin: 0 auto;
}

.home-footer__brand img {
  width: min(360px, 100%);
  margin: 0 auto;
}

.home-footer__social {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1rem;
}

.home-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 0.3rem;
  color: #ffffff;
  font-size: 1.55rem;
  font-weight: 700;
}

.home-footer__social a:first-child {
  background: #3867b5;
}

.home-footer__social a:last-child {
  background: #2e2e2e;
}

.home-footer__contact h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 3.7vw, 3rem);
  font-weight: 500;
  color: #304a6b;
}

.home-footer__contact ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-footer__contact li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  color: #2d344b;
}

.home-footer__contact li + li {
  margin-top: 0.75rem;
}

.home-footer__contact span {
  display: inline-flex;
  width: 1.7rem;
  justify-content: center;
  flex: 0 0 1.7rem;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(10, 10, 10, 0.9) 20%, rgba(10, 10, 10, 0.72) 55%, rgba(215, 25, 32, 0.16)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.34));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: calc(100vh - var(--header-height));
  padding: 7rem 0 5rem;
  color: #fff;
}

.hero h1 {
  font-size: clamp(2.75rem, 6vw, 5.2rem);
  letter-spacing: 0.04em;
}

.hero-lead {
  margin: 0 0 0.75rem;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 1.8rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.84);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.page-hero {
  padding: 8rem 0 4rem;
  color: #fff;
  border-top: 4px solid var(--color-primary);
  background: linear-gradient(90deg, #101010, #232323);
}

.page-hero p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

/* Cards and grids */
.cards-grid,
.product-preview-grid,
.product-grid,
.values-grid,
.image-grid,
.gallery-grid,
.footer-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.info-card,
.content-card,
.product-preview-card,
.product-card,
.value-card,
.contact-card,
.map-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.info-card,
.content-card,
.value-card {
  padding: 1.7rem;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  margin-bottom: 1rem;
  border-radius: 0.2rem;
  background: rgba(215, 25, 32, 0.1);
  color: var(--color-primary);
  font-weight: 800;
}

.info-card,
.content-card,
.value-card,
.contact-card,
.map-card,
.product-preview-card,
.product-card {
  border-top: 4px solid transparent;
}

.info-card,
.content-card,
.contact-card,
.map-card,
.product-preview-card {
  border-top-color: var(--color-primary);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.logo-grid img {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  filter: grayscale(1);
  transition: filter var(--transition), transform var(--transition), box-shadow var(--transition);
}

.logo-grid img:hover {
  filter: grayscale(0.2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

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

.product-preview-card {
  overflow: hidden;
}

.product-preview-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--color-surface-alt);
}

.product-preview-card__body {
  padding: 1.2rem 1.3rem 1.4rem;
}

.section-actions {
  margin-top: 2rem;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.split-layout--reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.split-layout--reverse .split-layout__content {
  order: 2;
}

.split-layout--reverse .split-layout__media {
  order: 1;
}

.split-layout__media img,
.image-grid img,
.gallery-item img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.split-layout__content p:last-child {
  margin-bottom: 0;
}

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

.value-card {
  position: relative;
  padding-left: 4rem;
}

.value-card::before {
  content: "";
  position: absolute;
  left: 1.5rem;
  top: 1.55rem;
  width: 1rem;
  height: 1rem;
  border-radius: 0.2rem;
  background: var(--color-primary);
  box-shadow: 0 0 0 0.28rem rgba(215, 25, 32, 0.12);
}

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

/* Catalog */
.catalog-toolbar {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.search-field label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 700;
}

.search-field input,
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 0.2rem;
  background: #fff;
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.search-field input:focus,
.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(215, 25, 32, 0.45);
  box-shadow: 0 0 0 0.2rem rgba(215, 25, 32, 0.08);
  outline: none;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.filter-chip {
  padding: 0.7rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 0.2rem;
  background: #fff;
  color: var(--color-text);
  font-weight: 700;
}

.filter-chip.is-active,
.filter-chip:hover {
  border-color: var(--color-primary);
  background: rgba(215, 25, 32, 0.08);
  color: var(--color-primary);
}

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

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(215, 25, 32, 0.18);
  border-top-color: var(--color-primary);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: linear-gradient(180deg, #f2f2f2, #e5e5e5);
}

.product-card__body {
  padding: 1.25rem;
}

.product-card h2 {
  margin-top: 0;
  font-size: 1.25rem;
}

.product-meta {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--color-text-soft);
}

.product-meta li + li {
  margin-top: 0.3rem;
}

.product-card[hidden] {
  display: none;
}

.catalog-empty {
  margin-top: 1.5rem;
  color: var(--color-text-soft);
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.8rem;
}

.contact-card,
.map-card {
  padding: 1.8rem;
}

.contact-form {
  margin-top: 1.2rem;
}

.form-field + .form-field {
  margin-top: 1rem;
}

.form-field label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 700;
}

.form-field textarea {
  resize: vertical;
  min-height: 11rem;
}

.field-error {
  min-height: 1.2rem;
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
  color: var(--color-error);
}

.form-field.has-error input,
.form-field.has-error textarea {
  border-color: rgba(180, 35, 24, 0.45);
}

.form-status {
  min-height: 1.6rem;
  margin-top: 1rem;
  font-weight: 700;
}

.form-status.is-success {
  color: var(--color-success);
}

.form-status.is-error {
  color: var(--color-error);
}

.form-status.is-warning {
  color: var(--color-warning);
}

.contact-list,
.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li + li,
.footer-list li + li {
  margin-top: 0.7rem;
}

.map-frame {
  overflow: hidden;
  border-radius: var(--radius-md);
  min-height: 360px;
  background: var(--color-surface-alt);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

/* Gallery */
.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-item {
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery-item img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
  filter: saturate(1.05);
}

.video-placeholder {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  background: #111;
}

.video-placeholder iframe {
  width: 100%;
  min-height: 440px;
  border: 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: rgba(10, 12, 16, 0.86);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: calc(100vh - 4rem);
  border-radius: var(--radius-lg);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 0.2rem;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.8rem;
}

/* Footer */
.site-footer {
  padding-top: 3rem;
  color: rgba(255, 255, 255, 0.86);
  border-top: 4px solid var(--color-primary);
  background: #111111;
}

.footer-brand {
  width: min(220px, 100%);
  margin-bottom: 1rem;
}

.footer-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
}

.site-footer h2 {
  margin-top: 0;
  font-size: 1.1rem;
  color: #fff;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 2rem;
  padding: 1.2rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.62);
}

/* Utilities and responsive */
.is-hidden {
  display: none !important;
}

@media (max-width: 1040px) {
  .about-block__grid,
  .products-grid,
  .home-services__grid,
  .logo-grid,
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-clients__row,
  .home-footer__grid,
  .product-preview-grid,
  .product-grid,
  .values-grid,
  .gallery-grid,
  .image-grid,
  .gallery-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-layout,
  .split-layout--reverse,
  .contact-layout,
  .cards-grid--three {
    grid-template-columns: 1fr;
  }

  .about-block__grid,
  .about-block--reverse .about-block__grid,
  .products-grid,
  .home-footer__grid {
    grid-template-columns: 1fr;
  }

  .about-block__text--left,
  .about-block__text--right,
  .about-values__inner {
    padding-left: 0;
    padding-right: 0;
  }

  .about-block__media--raised,
  .about-block--reverse .about-block__media--raised {
    margin-top: 1.5rem;
  }

  .split-layout--reverse .split-layout__content,
  .split-layout--reverse .split-layout__media {
    order: initial;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-grid;
    align-content: center;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 0 1rem 1rem;
    background: #111111;
  }

  .home-page .site-nav {
    background: rgba(110, 170, 90, 0.98);
  }

  .about-page .site-nav {
    background: rgba(110, 170, 90, 0.98);
  }

  .products-page .site-nav {
    background: rgba(110, 170, 90, 0.98);
  }

  .contact-page .site-nav {
    background: rgba(110, 170, 90, 0.98);
  }

  .gallery-page .site-nav {
    background: rgba(110, 170, 90, 0.98);
  }

  .site-header.menu-open .site-nav {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
  }

  .site-nav a {
    display: block;
    padding: 0.7rem 0;
  }

  .hero-content,
  .page-hero {
    padding-top: 6rem;
  }

  .hero {
    min-height: auto;
  }

  .home-hero {
    min-height: 620px;
    padding-bottom: 12rem;
  }

  .about-hero {
    min-height: 300px;
  }

  .products-hero {
    min-height: 300px;
  }

  .contact-hero {
    min-height: 300px;
  }

  .gallery-hero {
    min-height: 300px;
  }

  .home-hero__content {
    padding-top: 8.5rem;
  }

  .home-services {
    margin-top: -10rem;
  }

  .about-intro {
    padding: 30px 30px 10px;
  }

  .about-intro p {
    font-size: 1.05rem;
  }

  .products-intro {
    padding: 30px 30px 10px;
  }

  .products-intro p {
    padding: 0 20px 20px;
    font-size: 1rem;
  }

  .contact-intro {
    padding: 30px 30px 10px;
  }

  .contact-intro p {
    padding: 0 20px 20px;
    font-size: 1rem;
  }

  .gallery-intro {
    padding: 30px 30px 10px;
  }

  .gallery-intro p {
    padding: 0 20px 20px;
    font-size: 1rem;
  }

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

  .contact-showcase__map iframe {
    min-height: 360px;
  }

  .gallery-showcase__grid,
  .gallery-videos__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 78px;
  }

  .section {
    padding: 4rem 0;
  }

  .home-services__grid,
  .home-clients__row,
  .home-products__grid,
  .logo-grid,
  .product-preview-grid,
  .product-grid,
  .values-grid,
  .gallery-grid,
  .image-grid,
  .cards-grid--two,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 12vw, 3.3rem);
  }

  .home-page .brand img {
    width: min(250px, 100%);
  }

  .about-page .brand img {
    width: min(250px, 100%);
  }

  .products-page .brand img {
    width: min(250px, 100%);
  }

  .contact-page .brand img {
    width: min(250px, 100%);
  }

  .gallery-page .brand img {
    width: min(250px, 100%);
  }

  .home-page .site-nav a {
    text-transform: uppercase;
  }

  .about-page .site-nav a {
    text-transform: uppercase;
  }

  .products-page .site-nav a {
    text-transform: uppercase;
  }

  .contact-page .site-nav a {
    text-transform: uppercase;
  }

  .gallery-page .site-nav a {
    text-transform: uppercase;
  }

  .home-hero {
    min-height: 560px;
    padding-top: 7rem;
    padding-bottom: 9rem;
  }

  .about-hero {
    min-height: 260px;
  }

  .products-hero {
    min-height: 260px;
  }

  .contact-hero {
    min-height: 260px;
  }

  .gallery-hero {
    min-height: 260px;
  }

  .home-hero__content {
    padding-top: 6rem;
  }

  .home-services {
    margin-top: -7rem;
    padding-bottom: 3.5rem;
  }

  .home-service-card {
    padding: 1.7rem 1.4rem 2rem;
  }

  .home-title,
  .home-footer__contact h2 {
    font-size: 2.2rem;
  }

  .home-footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-intro {
    padding: 50px 0 10px;
  }

  .products-intro {
    padding: 50px 0 10px;
  }

  .contact-intro {
    padding: 50px 0 10px;
  }

  .gallery-intro {
    padding: 50px 0 10px;
  }

  .about-intro h1 {
    font-size: 2.3rem;
  }

  .products-intro h1,
  .products-section-title h2 {
    font-size: 2.3rem;
  }

  .contact-intro h1 {
    font-size: 2.3rem;
  }

  .gallery-intro h1,
  .gallery-videos__heading h2 {
    font-size: 2.3rem;
  }

  .about-intro p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .products-intro p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .contact-intro p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .gallery-intro p,
  .gallery-videos__heading p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .contact-showcase {
    padding: 1.5rem 0 4rem;
  }

  .contact-showcase__card {
    padding: 1.5rem;
  }

  .contact-showcase__card h2 {
    font-size: 1.75rem;
    text-align: center;
  }

  .contact-showcase__list li {
    font-size: 0.98rem;
  }

  .contact-showcase__map iframe {
    min-height: 300px;
  }

  .gallery-showcase {
    padding: 1.5rem 0 1rem;
  }

  .gallery-videos {
    padding: 1rem 0 4rem;
  }

  .about-block {
    padding: 0;
  }

  .about-block__text,
  .about-values__inner {
    padding: 50px 40px 10px;
    text-align: center;
  }

  .about-block__media--raised,
  .about-block--reverse .about-block__media--raised {
    margin-top: 0;
  }

  .about-block__media img {
    margin: 30px auto;
  }

  .about-values {
    padding: 0 0 70px;
  }

  .about-values h2 {
    line-height: 1.3;
  }

  .about-values ul {
    text-align: left;
  }

  .products-group,
  .products-section-title,
  .products-divider {
    padding-left: 0;
    padding-right: 0;
  }

  .product-showcase-card p,
  .product-showcase-card h2 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .home-footer__contact li {
    font-size: 1rem;
    justify-content: flex-start;
    text-align: left;
  }

  .hero-copy,
  .page-hero p {
    font-size: 0.98rem;
  }

  .hero-actions,
  .filter-chips {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .video-placeholder iframe,
  .map-frame iframe {
    min-height: 300px;
  }

  .gallery-video-card video {
    min-height: 220px;
  }
}
