﻿:root {
  --navy: #0a2b5c;
  --blue: #1a3a6b;
  --sky: #1e6fa8;
  --logo-orange: #f7945d;
  --logo-green: #7ba02d;
  --accent: var(--logo-orange);
  --accent2: #c75a2a;
  --accent-soft: rgba(247, 148, 93, 0.12);
  --accent-border: rgba(247, 148, 93, 0.35);
  --brand-green: var(--logo-green);
  --brand-green-soft: rgba(123, 160, 45, 0.12);
  --white: #ffffff;
  --bg: #ffffff;
  --bg-muted: #f4f6f9;
  --bg-card: #fafbfc;
  --text: #1a2d42;
  --text-muted: #5c6b7d;
  --border: #e2e8f0;
  --shadow: 0 8px 30px rgba(10, 22, 40, 0.06);
  --hero-home-bg: url("videos/9339477/pexels-photo-93394778a9e.jpg");
  
  --page-hero-bg: url("images/hero-inner.svg");
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 100px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-icon {
  height: 100px;
  width: auto;
  min-width: 42px;
  max-width: 110px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  display: block;
}

.nav-logo-icon img {
  display: block;
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
}

.nav-logo-text { line-height: 1; }
.nav-logo-text .brand { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 1px; color: var(--navy); }
.nav-logo-text .sub { font-size: 10px; color: var(--accent2); letter-spacing: 2px; text-transform: uppercase; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: var(--navy);
  transition: transform 0.2s, top 0.2s, opacity 0.2s;
}

.nav-toggle::before { top: 16px; box-shadow: 0 7px 0 var(--navy); }
.nav-toggle::after { top: 30px; }

.nav-toggle[aria-expanded="true"]::before {
  top: 21px;
  box-shadow: none;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  top: 21px;
  transform: rotate(-45deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links > li > a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.nav-links > li > a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav-links > li > a:hover,
.nav-links > li > a.nav-active { color: var(--navy); }

.nav-links > li > a:hover::after,
.nav-links > li > a.nav-active::after { transform: scaleX(1); }

.nav-dropdown:hover > .nav-dropdown-trigger,
.nav-dropdown:focus-within > .nav-dropdown-trigger {
  color: var(--navy);
}

.nav-dropdown:hover > .nav-dropdown-trigger::after,
.nav-dropdown:focus-within > .nav-dropdown-trigger::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--accent);
  color: var(--navy) !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700 !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--accent2) !important;
  color: var(--white) !important;
}

#home {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 100px 5% 88px;
  width: 100%;
  max-width: none;
  margin: 0;
  /* background-color: #0a1628; */
  background-image: var(--hero-home-bg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

#home .hero-canvas-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  filter: invert(1) brightness(8);
 
}

#home #myCanvas {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  touch-action: none;
}

#home::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
  /* background-image:
    linear-gradient(100deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.88) 28%, rgba(255, 255, 255, 0.55) 52%, rgba(255, 255, 255, 0.22) 100%); */
}

.hero-content {
  box-sizing: border-box;
  max-width: min(640px, 100%);
  width: 100%;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

#home .breadcrumb {
  margin-bottom: 16px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  padding: 6px 16px;
  border-radius: 100px;
  margin: 0 0 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent2);
}

.hero-badge span {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: 2px;
  margin: 0 0 22px;
  color: var(--navy);
  overflow-wrap: break-word;
  word-wrap: break-word;
  max-width: 100%;
}

.hero-title .highlight {
  color: var(--accent2);
  -webkit-text-fill-color: var(--accent2);
}

.hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  max-width: 36em;
  margin-bottom: 28px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  background: var(--accent);
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: var(--accent2);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(199, 90, 42, 0.25);
}

.btn-outline {
  border: 1.5px solid var(--border);
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
}

.btn-outline:hover {
  border-color: var(--sky);
  color: var(--sky);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 44px);
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  justify-content: flex-start;
}

.stat {
  text-align: left;
  flex: 0 1 auto;
  min-width: 0;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  line-height: 1;
  color: var(--accent2);
  letter-spacing: 1px;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 4px;
}

section { padding: 88px 5%; }

section.inner-follow { padding: 48px 5% 88px; }

.section-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent2);
  font-weight: 600;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--logo-green), var(--logo-orange));
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: 1px;
  line-height: 1.05;
  margin-bottom: 16px;
  color: var(--navy);
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  font-weight: 400;
}

/* #about { background: var(--bg-muted); } */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}

.about-visual { position: relative; }

.about-visual img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  /* border: 1px solid var(--border); */
  /* box-shadow: var(--shadow); */
  display: block;
}

.about-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow);
}

.about-icon-row { display: flex; gap: 12px; margin-bottom: 24px; }

.about-icon-box {
  width: 52px;
  height: 52px;
  background: var(--brand-green-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.about-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
}

.about-card-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

.about-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-features { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 10px; }

.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}

.about-features li::before {
  content: "✦";
  color: var(--logo-green);
  font-size: 12px;
  flex-shrink: 0;
}

#products { background: var(--bg); }

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 48px;
  align-items: stretch;
}

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

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

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
  position: relative;
}

.product-card:hover {
  border-color: rgba(30, 111, 168, 0.35);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.product-card-media {
  aspect-ratio: 16 / 10;
  background: var(--bg-muted);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  flex-shrink: 0;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.product-card-body {
  padding: 22px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.product-icon {
  width: 52px;
  height: 52px;
  background: var(--brand-green-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.product-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
  letter-spacing: 0.3px;
}

.product-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}
/* 
#works { background: var(--bg-muted); } */

.works-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.works-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}

.work-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s, box-shadow 0.25s;
  min-height: 160px;
}

.work-item:hover {
  transform: scale(1.01);
  box-shadow: var(--shadow);
}

.work-item img,
.work-item video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}

.work-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.75) 0%, transparent 55%);
  z-index: 1;
  pointer-events: none;
}

.work-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 16px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.4;
}

.work-item:first-child { grid-row: span 2; }

.works-gallery--interactive .work-item {
  cursor: pointer;
}

.works-gallery--interactive .work-item img,
.works-gallery--interactive .work-item video {
  pointer-events: none;
}

.work-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 56px 12px 88px;
  box-sizing: border-box;
}

.work-lightbox.is-open {
  display: flex;
}

.work-lightbox-backdrop {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(10, 22, 40, 0.92);
  cursor: pointer;
}

.work-lightbox-panel {
  position: relative;
  z-index: 1;
  max-width: min(1100px, 96vw);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  pointer-events: none;
}

.work-lightbox-panel > * {
  pointer-events: auto;
}

.work-lightbox-stage {
  width: 100%;
  max-height: min(72vh, 720px);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}

.work-lightbox-img,
.work-lightbox-video {
  max-width: 100%;
  max-height: min(72vh, 720px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.45);
  background: #0a1628;
}

.work-lightbox-video {
  width: 100%;
}

.work-lightbox-caption {
  margin: 0;
  max-width: 640px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.45;
}

.work-lightbox-close,
.work-lightbox-prev,
.work-lightbox-next {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(10, 22, 40, 0.65);
  color: #fff;
  cursor: pointer;
  line-height: 1;
  transition: background 0.2s, border-color 0.2s;
}

.work-lightbox-close:hover,
.work-lightbox-prev:hover,
.work-lightbox-next:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.45);
}

.work-lightbox-close {
  top: -6px;
  right: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  font-size: 28px;
  font-weight: 300;
  padding: 0;
}

.work-lightbox-prev,
.work-lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 400;
  padding: 0 0 4px;
}

.work-lightbox-prev {
  left: 0;
}

.work-lightbox-next {
  right: 0;
}

@media (max-width: 700px) {
  .work-lightbox {
    padding: 48px 8px 72px;
  }

  .work-lightbox-prev {
    left: -4px;
  }

  .work-lightbox-next {
    right: -4px;
  }

  .work-lightbox-close {
    top: -40px;
  }
}

#contact { background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  margin-top: 48px;
  align-items: start;
}

.contact-info-card {
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  position: relative;
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-item:last-child { margin-bottom: 0; }

.contact-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.contact-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 4px;
  font-weight: 600;
}

.contact-value {
  font-size: 15px;
  color: var(--text);
  line-height: 1.55;
}

.contact-value a { color: var(--sky); text-decoration: none; }
.contact-value a:hover { text-decoration: underline; }

.contact-form { display: flex; flex-direction: column; gap: 18px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(30, 111, 168, 0.12);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-group select option { background: var(--white); color: var(--text); }

footer {
  background: var(--navy);
  border-top: 2px solid var(--accent);
  padding: 44px 5% 28px;
  color: rgba(255, 255, 255, 0.85);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.15fr) minmax(120px, 0.62fr) minmax(120px, 0.62fr) minmax(160px, 0.72fr);
  gap: 20px 28px;
  margin-bottom: 28px;
  align-items: start;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 14px;
}

.footer-logo {
  width: 140px;
  max-width: 100%;
  height: auto;
  display: block;
}

.footer-brand .brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 2px;
  color: var(--white);
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin-top: 12px;
  max-width: 400px;
}

.footer-address {
  font-style: normal;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-top: 16px;
  max-width: 400px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  align-items: center;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.footer-social-link:hover {
  background: rgb(254 149 101);
  color: var(--white);
  transform: translateY(-1px);
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.footer-heading {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

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

.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

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

.footer-hours {
  margin: 14px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

.footer-cta {
  margin: 12px 0 0;
}

.footer-cta a {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-main {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 20px;
  flex: 1 1 280px;
}

.footer-bottom-main a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-main a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-developer {
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.32);
  text-align: right;
  flex: 0 1 280px;
  padding-top: 0;
  border-top: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.footer-developer a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-developer a:hover {
  color: rgb(254 149 101);
}

.footer-developer-addr {
  display: block;
  margin-top: 0;
  max-width: 280px;
  margin-left: 0;
  margin-right: 0;
}

.call-banner {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  padding: 22px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.call-banner-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.3px;
}

.call-banner-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--navy);
  letter-spacing: 1px;
}

.call-banner a {
  background: var(--navy);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.2s;
}

.call-banner a:hover {
  background: rgba(10, 22, 40, 0.88);
  transform: translateY(-2px);
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0 5%;
}

.nav-links > li { list-style: none; position: relative; }

.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 22px;
  z-index: 1000;
}

.nav-dropdown-trigger { position: relative; padding-right: 14px; }

.nav-dropdown-trigger::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 0;
  height: 0;
  margin-top: -2px;
  border: 4px solid transparent;
  border-top-color: var(--text-muted);
}

.nav-dropdown:hover .nav-dropdown-trigger::before,
.nav-dropdown:focus-within .nav-dropdown-trigger::before {
  border-top-color: var(--navy);
}

.nav-dropdown-trigger::after {
  right: 16px;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 280px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 6px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  box-shadow: var(--shadow);
  z-index: 1002;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-submenu a,
.nav-submenu a:visited {
  display: block;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
  color: var(--text);
}

.nav-submenu a:hover {
  background: var(--bg-muted);
  color: var(--navy);
  text-decoration: none;
}

.nav-submenu a::after { display: none !important; }

.breadcrumb { margin-bottom: 12px; }

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.breadcrumb li { display: inline-flex; align-items: center; gap: 0; color: var(--text-muted); }

.breadcrumb li + li::before {
  content: "/";
  color: #cbd5e1;
  font-weight: 400;
  margin: 0 10px;
}

.breadcrumb a {
  color: var(--accent2);
  text-decoration: none;
}

.breadcrumb a:hover { text-decoration: underline; }

.breadcrumb [aria-current="page"] { color: var(--navy); }

/* Product detail: brochure-style split hero + photo collage (layout varies per page) */
.product-detail-hero {
  background: linear-gradient(180deg, #fafbfc 0%, var(--bg-card) 100%);
  border-bottom: 1px solid var(--border);
  padding: 96px 5% 48px;
}

.product-detail-hero__inner {
  max-width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 36px 48px;
  align-items: center;
}

.product-detail-hero__inner > .breadcrumb {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.product-detail-hero .breadcrumb ol {
  color: var(--text-muted);
}

@media (min-width: 900px) {
  .product-detail-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
    gap: 48px 64px;
  }
}

.product-detail-hero__text h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1.65rem, 3.6vw, 2.5rem);
  line-height: 1.14;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  text-wrap: balance;
}

.product-detail-hero__intro {
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--text-muted);
  max-width: 38em;
  margin: 0;
}

.product-detail-hero__intro strong {
  color: var(--navy);
  font-weight: 600;
}

.product-hero-collage {
  display: grid;
  min-height: clamp(260px, 32vw, 400px);
  position: relative;
  isolation: isolate;
}

.phc-cell {
  position: relative;
  overflow: hidden;
  min-height: 104px;
  background: var(--bg-muted);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.08);
}

.phc-cell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.phc-cell:hover img {
  transform: scale(1.04);
}

/* Hood: tall left + two stacked right (reference-style mosaic) */


.product-hero-collage--hood .phc-cell--1 {
  grid-row: 1 / -1;
  border-radius: 28px 10px 32px 28px;
  z-index: 2;
  margin-right: -8px;
}

.product-hero-collage--hood .phc-cell--2 {
  border-radius: 14px 26px 14px 14px;
  z-index: 1;
  margin-bottom: -10px;
}

.product-hero-collage--hood .phc-cell--3 {
  border-radius: 22px 14px 28px 18px;
  z-index: 1;
  margin-top: -6px;
}

.product-hero-collage--hood .phc-cell--4 {
  position: absolute;
  width: 34%;
  height: 34%;
  right: -4%;
  bottom: 10%;
  border-radius: 50% 16px 20px 16px;
  z-index: 3;
  clip-path: polygon(12% 0, 100% 0, 100% 88%, 0 100%, 0 22%);
}

/* Duct: staggered 2×2 with overlap */


.product-hero-collage--duct .phc-cell--1 {
  border-radius: 8px 28px 8px 8px;
  transform: translate(-6px, -4px);
  z-index: 2;
}

.product-hero-collage--duct .phc-cell--2 {
  border-radius: 28px 8px 20px 8px;
  transform: translate(6px, -8px);
  z-index: 1;
}

.product-hero-collage--duct .phc-cell--3 {
  border-radius: 20px 8px 8px 28px;
  transform: translate(-10px, 8px);
  z-index: 1;
}

.product-hero-collage--duct .phc-cell--4 {
  border-radius: 8px 20px 28px 12px;
  transform: translate(8px, 4px);
  z-index: 2;
}



.product-hero-collage--axial .phc-cell--1 {
  grid-column: 1 / -1;
  grid-row: 1;
  border-radius: 20px;
  clip-path: inset(0 round 20px 6px 20px 6px);
}

.product-hero-collage--axial .phc-cell--2 {
  grid-row: 2;
  grid-column: 1;
  border-radius: 12px 24px 12px 12px;
}

.product-hero-collage--axial .phc-cell--3 {
  grid-row: 2;
  grid-column: 2;
  border-radius: 24px 12px 12px 12px;
}

.product-hero-collage--axial .phc-cell--4 {
  grid-column: 1 / -1;
  grid-row: 3;
  border-radius: 10px;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 92% 100%, 0 100%);
}

/* Blower: one dominant tile + strip */
.product-hero-collage--blower {

}

.product-hero-collage--blower .phc-cell--1 {
  /* grid-row: 1 / -1; */
  border-radius: 8px 32px 8px 8px;
}

.product-hero-collage--blower .phc-cell--2 {
  border-radius: 16px;
}

.product-hero-collage--blower .phc-cell--3 {
  border-radius: 16px;
}

.product-hero-collage--blower .phc-cell--4 {
  display: none;
}

/* Metal fab: bento */


.product-hero-collage--metal .phc-cell--1 {
  grid-column: 1 / 3;
  grid-row: 1;
  border-radius: 24px 8px 24px 8px;
}

.product-hero-collage--metal .phc-cell--2 {
  grid-column: 3;
  grid-row: 1;
  border-radius: 8px 20px 8px 8px;
}

.product-hero-collage--metal .phc-cell--3 {
  grid-column: 1;
  grid-row: 2;
  border-radius: 8px 8px 8px 20px;
}

.product-hero-collage--metal .phc-cell--4 {
  grid-column: 2 / 4;
  grid-row: 2;
  border-radius: 12px;
  min-height: 72px;
}

@media (max-width: 899px) {
  .product-detail-hero {
    padding-top: 88px;
  }

  .product-hero-collage--blower {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(150px, auto) minmax(120px, auto);
  }

  .product-hero-collage--blower .phc-cell--1 {
    grid-row: 1;
    grid-column: 1 / -1;
  }

  .product-hero-collage--hood .phc-cell--4 {
    position: static;
    width: auto;
    height: auto;
    clip-path: none;
    border-radius: 18px;
    margin: 0;
  }

  .product-hero-collage--hood {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(130px, auto) minmax(130px, auto);
    gap: 10px;
  }

  .product-hero-collage--hood .phc-cell--1 {
    grid-row: 1;
    grid-column: 1;
    margin-right: 0;
  }

  .product-hero-collage--hood .phc-cell--2 {
    grid-row: 1;
    grid-column: 2;
    margin-bottom: 0;
  }

  .product-hero-collage--hood .phc-cell--3 {
    grid-row: 2;
    grid-column: 1;
    margin-top: 0;
  }

  .product-hero-collage--hood .phc-cell--4 {
    grid-row: 2;
    grid-column: 2;
  }

  .product-hero-collage--metal {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(140px, auto) minmax(120px, auto) minmax(88px, auto);
  }

  .product-hero-collage--metal .phc-cell--1 {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .product-hero-collage--metal .phc-cell--2 {
    grid-column: 1;
    grid-row: 2;
  }

  .product-hero-collage--metal .phc-cell--3 {
    grid-column: 2;
    grid-row: 2;
  }

  .product-hero-collage--metal .phc-cell--4 {
    grid-column: 1 / -1;
    grid-row: 3;
  }
}

.page-header {
  padding: 108px 5% 48px;
  background: var(--bg-muted);
  border-bottom: 1px solid var(--border);
}

.page-header.page-header--hero {
  position: relative;
  min-height: clamp(260px, 40vh, 440px);
  padding: 108px 5% 52px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: var(--bg-muted);
  background-image:
    linear-gradient(100deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 45%, rgba(255, 255, 255, 0.55) 100%),
    var(--page-hero-bg);
  background-size: auto, cover;
  background-position: center, center center;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--border);
}

.page-header--about.page-header--hero {
  --page-hero-bg: url("images/sva6-mnlW5Z2KW3fEpqqQ.jpg");
}

.page-header--products.page-header--hero {
  --page-hero-bg: url("images/centrifugal_blower_fan-d951roa2glTP3zNP.jpg");
}

.page-header--works.page-header--hero {
  --page-hero-bg: url("images/sv20-mxB48EzKK8uV4014.jpg");
}

.page-header--hero h1,
.page-header--hero .lead { color: var(--navy); }

.page-header--hero .lead { color: var(--text-muted); }

.page-header--hero .breadcrumb ol { color: var(--text-muted); }

.page-header h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 5.5vw, 64px);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 12px;
  color: var(--navy);
}

.page-header .lead {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.6;
  font-weight: 400;
}

main.page-body {
  padding: 56px 5% 88px;
  max-width: 820px;
  margin: 0 auto;
  background: var(--bg);
}

main.page-body.wide {
  max-width: 1100px;
  width: 100%;
}

main.page-body--split {
  max-width: min(1280px, 100%);
}

.product-detail-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 960px) {
  .product-detail-layout {
    display: grid;
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
    gap: 40px 44px;
    align-items: start;
  }
}

.product-sidebar {
  background: linear-gradient(180deg, #e8f0fa 0%, #eef3f8 100%);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 18px;
  padding: 14px;
  box-shadow: var(--shadow);
}

.product-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-sidebar-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.product-sidebar-card:hover {
  border-color: rgba(26, 58, 107, 0.28);
  box-shadow: 0 10px 28px rgba(10, 22, 40, 0.08);
}

.product-sidebar-card:focus-visible {
  outline: 2px solid var(--accent2);
  outline-offset: 2px;
}

.product-sidebar-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
  letter-spacing: 0.02em;
  min-width: 0;
}

.product-sidebar-card__arrow {
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.2;
}

.product-sidebar-card[aria-current="page"] {
  background: linear-gradient(145deg, #3d4f72 0%, #2a3a5c 100%);
  border-color: rgba(26, 58, 107, 0.55);
  box-shadow: 0 12px 32px rgba(10, 22, 40, 0.18);
}

.product-sidebar-card[aria-current="page"] .product-sidebar-card__title,
.product-sidebar-card[aria-current="page"] .product-sidebar-card__arrow {
  color: rgba(255, 255, 255, 0.96);
}

@media (min-width: 960px) {
  .product-sidebar {
    position: sticky;
    top: 88px;
    max-height: calc(100vh - 104px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.product-detail-main-visual {
  position: relative;
  margin: 0 0 28px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-muted);
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: min(520px, 52vw);
}

.product-detail-main-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 599px) {
  .product-detail-main-visual {
    max-height: none;
    min-height: 200px;
  }
}

.page-prose-layout {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.page-prose-layout .prose-figure {
  margin: 0;
}

.page-prose-content {
  min-width: 0;
}

.page-prose-content > *:first-child {
  margin-top: 0;
}

@media (min-width: 900px) {
  .page-prose-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
    gap: 40px 52px;
    align-items: start;
  }

  .page-prose-layout .prose-figure {
    position: sticky;
    top: 88px;
  }
}

.page-intro {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 720px;
}

.page-prose {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.85;
}

.page-prose p { margin-bottom: 1.15em; }

.page-prose h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin: 1.75em 0 0.5em;
  color: var(--navy);
  letter-spacing: 0.3px;
}

.page-prose--detail .page-prose-content > h2:first-child {
  margin-top: 0;
}

.page-prose h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin: 1.35em 0 0.45em;
  color: var(--navy);
  letter-spacing: 0.2px;
  line-height: 1.3;
}

.page-prose ul { margin: 0 0 1.1em 1.2em; color: var(--text-muted); }

.page-prose li { margin-bottom: 0.35em; }

a.product-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  cursor: pointer;
}

a.product-card-link .product-name { transition: color 0.2s; }

a.product-card-link:hover .product-name { color: var(--accent2); }

.prose-figure {
  margin: 1.5em 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-muted);
}

.prose-figure img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

@media (max-width: 960px) {
  #home {
    padding-top: 88px;
  }
}

@media (max-width: 900px) {
  .site-nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255, 255, 255, 0.98);
  }

  .nav-toggle { display: block; }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 5% 32px;
    background: var(--white);
    border-top: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
    box-shadow: -8px 0 40px rgba(10, 22, 40, 0.08);
  }

  .nav-links.is-open { transform: translateX(0); }

  .nav-links > li { border-bottom: 1px solid var(--border); }

  .nav-links a {
    display: block;
    padding: 16px 0;
  }

  .nav-links a::after { display: none; }

  .nav-cta { text-align: center; margin-top: 8px; }

  .nav-dropdown > .nav-dropdown-trigger {
    position: relative;
    padding-right: 32px;
  }

  .nav-dropdown .nav-dropdown-trigger::before {
    content: "";
    display: block;
    position: absolute;
    right: 6px;
    top: 50%;
    width: 7px;
    height: 7px;
    margin-top: -5px;
    border: none;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(45deg);
    transition: transform 0.2s ease, margin-top 0.2s ease;
  }

  .nav-dropdown.is-submenu-open .nav-dropdown-trigger::before {
    margin-top: -2px;
    transform: rotate(-135deg);
    border-right-color: var(--navy);
    border-bottom-color: var(--navy);
  }

  .nav-dropdown.is-submenu-open > .nav-dropdown-trigger {
    color: var(--navy);
  }

  .nav-dropdown .nav-submenu,
  .nav-dropdown:hover .nav-submenu,
  .nav-dropdown:focus-within .nav-submenu {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    border-radius: 0;
    min-width: 0;
    width: 100%;
    max-width: none;
    list-style: none;
    max-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    pointer-events: none;
    transition: max-height 0.35s ease;
  }

  .nav-dropdown.is-submenu-open .nav-submenu,
  .nav-dropdown.is-submenu-open:hover .nav-submenu,
  .nav-dropdown.is-submenu-open:focus-within .nav-submenu {
    max-height: min(100vh, 560px);
    pointer-events: auto;
    margin: 0 0 8px 4px;
    padding: 0 0 8px 12px;
    border-left: 2px solid var(--accent-soft);
    transform: none;
  }

  .nav-dropdown:hover:not(.is-submenu-open) .nav-submenu,
  .nav-dropdown:focus-within:not(.is-submenu-open) .nav-submenu {
    max-height: 0;
    margin: 0;
    padding: 0;
    pointer-events: none;
    border: none;
    overflow: hidden;
    transform: none;
    box-shadow: none;
  }

  .nav-dropdown::before { display: none; }

  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-developer {
    text-align: left;
    flex: 1 1 auto;
    width: 100%;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    align-items: flex-start;
  }

  .footer-developer-addr {
    max-width: none;
  }

  .page-header.page-header--hero { min-height: 240px; padding: 96px 5% 40px; }

  .works-intro { flex-direction: column; align-items: flex-start; }

  .works-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .work-item:first-child { grid-row: span 1; min-height: 200px; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .hero-title {
    letter-spacing: 1px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  #home .hero-actions .btn-primary,
  #home .hero-actions .btn-outline {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .hero-stats .stat {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 639px) {
  .site-nav {
    padding: 0 4%;
    height: 64px;
  }

  .nav-logo {
    min-width: 0;
    gap: 8px;
  }

  .nav-logo-text {
    min-width: 0;
  }

  .nav-logo-text .brand {
    font-size: 18px;
  }

  .nav-links {
    top: 64px;
  }

  section {
    padding: 56px 4%;
  }

  #home {
    min-height: min(100vh, 100dvh);
    padding: 88px 4% 64px;
  }

  .hero-badge {
    font-size: 10px;
    letter-spacing: 1.2px;
    padding: 6px 12px;
    max-width: 100%;
    flex-wrap: wrap;
    row-gap: 6px;
  }

  .hero-title {
    font-size: clamp(32px, 10.5vw, 52px);
    letter-spacing: 0.5px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .hero-stats {
    margin-top: 36px;
    padding-top: 28px;
  }

  .stat-num {
    font-size: 36px;
  }

  .stat-label {
    letter-spacing: 1.5px;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 36px;
  }

  .about-card {
    padding: 24px;
  }

  .contact-info-card {
    padding: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .works-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(200px, 52vw);
    gap: 12px;
  }

  .work-item {
    min-height: 180px;
  }

  #works .works-intro > div:last-child {
    align-self: stretch;
    flex-direction: column;
  }

  #works .works-intro > div:last-child a {
    width: 100%;
    justify-content: center;
  }

  .call-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 20px 4%;
  }

  .call-banner-num {
    font-size: clamp(20px, 6vw, 26px);
    line-height: 1.25;
    word-break: break-word;
  }

  .call-banner a {
    display: block;
    text-align: center;
  }

  .section-divider {
    margin: 0 4%;
  }

  footer {
    padding: 36px 4% 24px;
  }

  .btn-primary,
  .btn-outline {
    padding: 12px 20px;
    font-size: 13px;
  }
}
