:root {
  --brand-bg-image: none;
  --brand-bg-position: center;
  --product-stage-fit-height: 380px;
  --blue-900: #0c3f8f;
  --blue-700: #1a57b8;
  --blue-100: #e9f1ff;
  --orange-500: #f25c05;
  --orange-600: #d84f03;
  --gray-950: #101622;
  --gray-700: #3e4a63;
  --gray-200: #d9deea;
  --gray-100: #f5f7fb;
  --white: #ffffff;
  --shadow-soft: 0 14px 30px rgba(12, 63, 143, 0.12);
  --shadow-strong: 0 20px 48px rgba(14, 31, 63, 0.22);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--gray-950);
  position: relative;
  background-color: #eef2f6;
  background-image: linear-gradient(180deg, #f8fafc 0%, #eef2f6 58%, #e7edf4 100%);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  transform: translateX(-50%);
  background: var(--brand-bg-image) var(--brand-bg-position) / cover no-repeat;
  opacity: 0.45;
  pointer-events: none;
  z-index: -3;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.2), rgba(248, 251, 255, 0.34));
  pointer-events: none;
  z-index: -2;
}

.bg-shape {
  display: none;
}

.bg-shape-left {
  display: none;
}

.bg-shape-right {
  display: none;
}

.container {
  width: min(1320px, calc(100% - 1.5rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  isolation: isolate;
  overflow: visible;
  backdrop-filter: blur(10px);
  background: transparent;
  border-bottom: 1px solid rgba(20, 52, 98, 0.12);
  will-change: transform, opacity;
  transition: background 260ms ease, box-shadow 260ms ease, transform 340ms cubic-bezier(0.22, 0.61, 0.36, 1), opacity 260ms ease;
}

.site-header::before {
  content: none;
}

.site-header::after {
  content: none;
}

.site-header.is-scrolled {
  background: transparent;
  box-shadow: 0 8px 18px rgba(17, 38, 75, 0.11);
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 0.45rem));
  opacity: 0.08;
  pointer-events: none;
}

.site-header.is-scroll-up {
  background: linear-gradient(180deg, rgba(244, 249, 255, 0.62), rgba(244, 249, 255, 0.34));
  box-shadow: 0 12px 26px rgba(12, 34, 73, 0.16);
}

.site-header:focus-within {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.top-nav {
  width: calc(100% - 1rem);
  max-width: none;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 0.2rem;
  gap: 1rem;
}

.nav-links {
  list-style: none;
  margin: 0 0 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.7rem, 1.8vw, 1.8rem);
}

.nav-links a {
  text-decoration: none;
  color: #1a2e4a;
  font-size: 1.03rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
  transition: color 220ms ease, background 220ms ease;
}

.nav-links a:hover {
  color: #c54f12;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(18, 57, 111, 0.22);
  border-radius: 0.6rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(241, 247, 255, 0.64));
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 8px 16px rgba(10, 36, 74, 0.12);
}

.menu-toggle span {
  display: block;
  width: 2px;
  height: 18px;
  background: #163b73;
  border-radius: 99px;
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle span:nth-child(2) {
  height: 16px;
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateX(7px) rotate(45deg);
}

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

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateX(-7px) rotate(-45deg);
}

.menu-backdrop {
  display: none;
}


.hero {
  position: relative;
  isolation: isolate;
  text-align: center;
  padding: 0.75rem 0 1rem;
  scroll-margin-top: 88px;
}

.hero::before {
  content: none;
}

.hero::after {
  content: none;
}

.hero-banner {
  width: min(100%, 1360px);
  min-height: clamp(108px, 15vw, 190px);
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}

.hero-banner img {
  display: block;
  width: min(100%, 1360px);
  max-height: clamp(108px, 15vw, 190px);
  margin: 0 auto;
  height: auto;
  object-fit: contain;
  transform: scale(1);
  transform-origin: center center;
  clip-path: inset(0 0 0 0);
}

.product-gallery {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: -0.1rem;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 88px;
  border-top: 1px solid rgba(16, 49, 95, 0.14);
  border-bottom: 1px solid rgba(16, 49, 95, 0.14);
  box-shadow: 0 8px 20px rgba(8, 29, 60, 0.12);
}

.product-gallery-title {
  margin: 0;
  padding: 0.75rem 1rem 0.9rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  color: #153a70;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.product-gallery-stage {
  position: relative;
  height: var(--product-stage-fit-height);
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 176, 52, 0.2), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(255, 54, 115, 0.18), transparent 32%),
    linear-gradient(115deg, rgba(24, 34, 76, 0.72), rgba(124, 31, 76, 0.5));
  overflow: hidden;
  perspective: 1400px;
  transform-style: preserve-3d;
}

.product-gallery-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(100deg, transparent 18%, rgba(255, 208, 130, 0.18) 42%, rgba(255, 255, 255, 0.34) 50%, rgba(255, 94, 141, 0.14) 60%, transparent 82%);
  transform: translateX(-120%);
}

.product-gallery-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 16%, rgba(255, 86, 133, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(3, 18, 41, 0.14), rgba(3, 18, 41, 0.48)),
    linear-gradient(90deg, rgba(11, 42, 84, 0.2), rgba(96, 24, 70, 0.14));
  pointer-events: none;
  opacity: 0.92;
  transition: opacity 420ms ease, transform 980ms ease;
}

.product-gallery-stage.is-transitioning::before {
  animation: gallery-sheen 1100ms ease;
}

.product-gallery-stage.is-transitioning::after {
  transform: scale(1.03);
}

.product-gallery-atmosphere {
  position: absolute;
  inset: -8% -6%;
  z-index: 4;
  pointer-events: none;
  opacity: 0.58;
}

.product-gallery-atmosphere::before,
.product-gallery-atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
}

.product-gallery-atmosphere::before {
  background:
    radial-gradient(circle at 22% 32%, rgba(255, 205, 132, 0.26) 0 6px, transparent 9px),
    radial-gradient(circle at 76% 26%, rgba(255, 122, 164, 0.24) 0 5px, transparent 8px),
    radial-gradient(circle at 34% 72%, rgba(183, 214, 255, 0.2) 0 4px, transparent 7px),
    radial-gradient(circle at 64% 78%, rgba(255, 173, 101, 0.22) 0 4px, transparent 7px),
    radial-gradient(circle at 84% 64%, rgba(255, 141, 184, 0.2) 0 3px, transparent 6px),
    radial-gradient(circle at 16% 84%, rgba(207, 226, 255, 0.2) 0 3px, transparent 6px);
  filter: blur(0.3px);
  animation: gallery-particles-drift 18s ease-in-out infinite alternate;
}

.product-gallery-atmosphere::after {
  background:
    radial-gradient(ellipse at 24% 12%, rgba(255, 197, 109, 0.26), transparent 44%),
    radial-gradient(ellipse at 82% 88%, rgba(255, 88, 151, 0.22), transparent 40%),
    radial-gradient(ellipse at 56% 42%, rgba(255, 255, 255, 0.12), transparent 46%);
  mix-blend-mode: screen;
  animation: gallery-halo-float 11s ease-in-out infinite;
}

.product-shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  transform: translateZ(0) rotateY(7deg) scale(1.08);
  clip-path: inset(0 0 0 0);
  transition: opacity 1350ms ease, transform 1350ms ease, clip-path 1350ms cubic-bezier(0.22, 1, 0.36, 1), filter 1350ms ease;
  transform-origin: center center;
  backface-visibility: hidden;
}

.product-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(13, 22, 51, 0.3), rgba(144, 34, 88, 0.18)),
    radial-gradient(circle at 78% 18%, rgba(255, 189, 76, 0.18), transparent 28%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 900ms ease;
  pointer-events: none;
}

.product-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.88;
  filter: saturate(0.95) contrast(1.03) brightness(0.9);
  transform: scale(1.12);
  transition: transform 6200ms linear, filter 1200ms ease, opacity 1200ms ease;
}

.product-shot img.product-shot-focus-low {
  object-position: center 76%;
}

.product-shot.is-active {
  opacity: 1;
  transform: translateZ(0) rotateY(0deg) scale(1);
}

.product-shot.is-active::after,
.product-shot.is-entering::after {
  opacity: 1;
}

.product-shot.is-active img {
  transform: scale(1.03);
  filter: saturate(1.02) contrast(1.04) brightness(0.96);
}

.product-shot.is-entering {
  opacity: 1;
  transform: translateZ(0) rotateY(0deg) scale(1);
  clip-path: inset(0 0 0 0);
  z-index: 2;
  transform-origin: left center;
}

.product-shot.is-entering img {
  transform: scale(1.04);
  filter: saturate(1.06) contrast(1.04) brightness(0.98);
}

.product-shot.is-leaving {
  opacity: 0;
  transform: translateZ(-16px) rotateY(-78deg) scale(0.94);
  transform-origin: right center;
  clip-path: inset(0 42% 0 0);
  filter: blur(1.2px);
  z-index: 1;
}

.product-shot.is-leaving img {
  transform: scale(1.18);
  filter: saturate(0.85) contrast(1) brightness(0.76);
}

.product-shot.is-enter-prepare {
  opacity: 0;
  transform: translateZ(-16px) rotateY(78deg) scale(0.94);
  transform-origin: left center;
  clip-path: inset(0 0 0 42%);
}

@keyframes gallery-sheen {
  0% {
    opacity: 0;
    transform: translateX(-120%);
  }

  35% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(120%);
  }
}

@keyframes gallery-particles-drift {
  0% {
    transform: translate3d(-1.5%, 0.6%, 0) scale(1);
    opacity: 0.5;
  }

  50% {
    transform: translate3d(1.4%, -0.8%, 0) scale(1.03);
    opacity: 0.66;
  }

  100% {
    transform: translate3d(-0.7%, -1.2%, 0) scale(0.98);
    opacity: 0.56;
  }
}

@keyframes gallery-halo-float {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.52;
  }

  50% {
    transform: translate3d(0, -1.2%, 0) scale(1.03);
    opacity: 0.66;
  }

  100% {
    transform: translate3d(0, 0.9%, 0) scale(0.99);
    opacity: 0.54;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-gallery-stage::before {
    display: none;
  }

  .product-gallery-atmosphere::before,
  .product-gallery-atmosphere::after {
    animation: none;
  }

  .site-header {
    transition: background 220ms ease, box-shadow 220ms ease;
  }

  .site-header.is-hidden {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-900);
  font-weight: 700;
  margin: 0;
}

.projects {
  padding: 1rem 0 0.5rem;
  scroll-margin-top: 88px;
}

.section-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.section-head span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(12, 63, 143, 0.3), transparent);
}

.section-head h3 {
  margin: 0;
  text-transform: uppercase;
  color: var(--blue-900);
  font-family: "Saira Semi Condensed", sans-serif;
  letter-spacing: 0.03em;
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
}

.project-carousel {
  position: relative;
  overflow: hidden;
  padding-block: 0.35rem 0.6rem;
}

.carousel-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: project-scroll 42s linear infinite;
}

.project-carousel:hover .carousel-track {
  animation-play-state: paused;
}

.project-card {
  width: min(330px, calc(100vw - 3.5rem));
  flex: 0 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.project-art {
  height: 250px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #dce9fb 0%, #8db0df 45%, #2f568f 100%),
    radial-gradient(circle at 15% 12%, rgba(255, 255, 255, 0.35), transparent 46%);
  transition: transform 340ms ease;
}

.project-art img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.project-card:hover .project-art {
  transform: scale(1.04);
}

.project-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 15, 34, 0.02) 30%, rgba(3, 15, 34, 0.28) 96%);
  z-index: 1;
}

.project-badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(242, 92, 5, 0.95), rgba(216, 79, 3, 0.95));
  box-shadow: 0 6px 12px rgba(11, 31, 62, 0.2);
}

.project-card h4 {
  margin: 0;
  padding: 0.55rem 0.1rem 0;
  text-align: left;
  color: #203a62;
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-family: "Saira Semi Condensed", sans-serif;
  background: transparent;
  border-top: none;
  text-shadow: none;
}

@keyframes project-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

.work-gallery {
  padding: 0.35rem 0 0.95rem;
  scroll-margin-top: 88px;
}

.work-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.work-filter {
  border: 1px solid rgba(29, 77, 145, 0.28);
  border-radius: 999px;
  padding: 0.48rem 0.9rem;
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #1d447a;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(233, 243, 255, 0.84));
  cursor: pointer;
  transition: transform 220ms ease, color 220ms ease, background 220ms ease, border-color 220ms ease;
}

.work-filter:hover {
  transform: translateY(-1px);
}

.work-filter.is-active {
  color: #ffffff;
  border-color: rgba(22, 67, 129, 0.68);
  background: linear-gradient(180deg, #24599d, #163f76);
}

.work-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 1rem;
}

.work-card {
  flex: 1 1 clamp(220px, 28vw, 305px);
  max-width: 305px;
  display: flex;
  flex-direction: column;
}

.js-ready .work-card {
  opacity: 0;
  transform: translateY(20px) scale(0.985);
  filter: saturate(0.9);
  transition:
    opacity 780ms ease,
    transform 780ms cubic-bezier(0.22, 0.61, 0.36, 1),
    filter 780ms ease;
  transition-delay: var(--work-reveal-delay, 0ms);
}

.js-ready .work-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: none;
}

.js-ready .work-card.is-row-reveal .work-card-media::after {
  animation: work-mosaic-recompose 1450ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.work-card-media {
  position: relative;
  isolation: isolate;
  border-radius: 0.9rem;
  overflow: hidden;
}

.work-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  z-index: 2;
  mix-blend-mode: soft-light;
  background-image:
    repeating-conic-gradient(from 45deg, rgba(245, 251, 255, 0.8) 0 25%, rgba(22, 63, 118, 0.45) 0 50%),
    radial-gradient(circle at 30% 35%, rgba(255, 255, 255, 0.42), transparent 58%);
  background-size: 22px 22px, 100% 100%;
  background-position: 0 0, center;
}

@keyframes work-mosaic-recompose {
  0% {
    opacity: 0.92;
    background-size: 28px 28px, 100% 100%;
    filter: blur(1.4px) saturate(1.15);
  }

  58% {
    opacity: 0.52;
    background-size: 14px 14px, 100% 100%;
    filter: blur(0.5px) saturate(1.08);
  }

  100% {
    opacity: 0;
    background-size: 5px 5px, 100% 100%;
    filter: blur(0) saturate(1);
  }
}

.work-card-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: inherit;
  transition: transform 320ms ease;
}

.work-card:hover .work-card-media img {
  transform: scale(1.02);
}

.work-card-tag {
  margin-top: 0.5rem;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #3a5f94;
}

.work-card h4 {
  margin: 0.2rem 0 0;
  color: #203a62;
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 1.03rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.work-empty {
  margin: 0;
  padding: 0.95rem 1rem;
  border-radius: 0.65rem;
  font-weight: 600;
  color: #2f4f7e;
  background: rgba(226, 238, 255, 0.72);
}

.trusted-brands {
  padding: 0.9rem 0 1.25rem;
}

.brands-carousel {
  position: relative;
  overflow: hidden;
  padding-block: 0.85rem 1.1rem;
}

.brands-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  padding-inline: 0.15rem;
}

.brand-pill {
  width: 190px;
  aspect-ratio: 1 / 1;
  padding: 0;
  display: block;
  border-radius: 1rem;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: hidden;
  opacity: 1;
  transform: none;
  filter: none;
  transition: opacity 220ms ease;
}

.brand-pill.has-logo {
  padding: 0;
}

.brand-pill.is-active {
  opacity: 1;
  transform: none;
  filter: none;
}

.brand-pill:hover {
  transform: none;
  opacity: 1;
}

.brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #143766;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(214, 231, 255, 0.86)),
    radial-gradient(circle at 22% 20%, rgba(255, 255, 255, 0.7), transparent 52%);
  border: 1px solid rgba(132, 168, 219, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.brand-logo-wrap {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.brand-logo-wrap.has-tinted-backdrop {
  padding: 0.4rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.52);
}

.brand-logo {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 1rem;
  transform: scale(1);
  transition: transform 260ms ease;
}

.brand-logo:hover {
  transform: scale(1.12);
}

.brand-name {
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #203d67;
  text-transform: uppercase;
  white-space: nowrap;
}

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

.contact {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(160deg, rgba(26, 32, 42, 0.97), rgba(45, 54, 66, 0.96));
  color: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  margin-top: 2.1rem;
  margin-bottom: 3rem;
  display: grid;
  gap: 1.35rem;
  scroll-margin-top: 88px;
}

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

.contact-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  padding: 0.5rem 0.85rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 142, 56, 0.94), rgba(221, 78, 8, 0.94));
  color: var(--white);
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 10px 24px rgba(8, 19, 42, 0.18);
  cursor: pointer;
  transition: transform 220ms ease, filter 220ms ease, box-shadow 220ms ease;
}

.contact-toggle:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.contact-toggle::after {
  content: "+";
  margin-left: 0.6rem;
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 220ms ease;
}

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

.contact h3 {
  margin: 0.4rem 0;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
}

.contact p {
  color: rgba(255, 255, 255, 0.87);
}

.contact-form-card {
  width: min(100%, 720px);
  margin: 0 auto;
  padding: 0 1.2rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1rem;
  backdrop-filter: blur(14px) saturate(120%);
  box-shadow: 0 18px 36px rgba(8, 19, 42, 0.15);
  transition: max-height 380ms ease, opacity 260ms ease, padding 260ms ease, border-color 260ms ease;
}

.contact-form-card.is-open {
  max-height: 560px;
  padding: 1.2rem;
  opacity: 1;
  border-color: rgba(238, 243, 255, 0.26);
}

.contact-form {
  display: grid;
  gap: 0.8rem;
}

.contact-feedback {
  display: none;
  margin: 0;
  padding: 0.55rem 0.7rem;
  border-radius: 0.55rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #e7f7e8;
  background: rgba(46, 160, 78, 0.28);
  border: 1px solid rgba(153, 235, 176, 0.5);
}

.contact-feedback.is-visible {
  display: block;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.5rem;
  padding: 0.65rem 0.75rem;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-family: "Manrope", sans-serif;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.contact-form button {
  border: none;
  border-radius: 0.5rem;
  padding: 0.7rem 0.9rem;
  background: linear-gradient(180deg, var(--orange-500), var(--orange-600));
  color: var(--white);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  .brand-pill {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .js-ready .work-card,
  .js-ready .work-card.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .work-card-media::after,
  .js-ready .work-card.is-row-reveal .work-card-media::after {
    animation: none;
    opacity: 0;
  }

  .contact-toggle,
  .contact-toggle::after,
  .contact-form-card {
    transition: none;
  }
}

.site-footer {
  position: relative;
  margin-top: 1.2rem;
  color: #1a2f4c;
  background:
    radial-gradient(circle at 10% 14%, rgba(121, 168, 236, 0.2), transparent 38%),
    radial-gradient(circle at 92% 88%, rgba(242, 92, 5, 0.11), transparent 42%),
    linear-gradient(155deg, rgba(249, 252, 255, 0.78) 0%, rgba(242, 248, 255, 0.68) 55%, rgba(238, 245, 253, 0.62) 100%);
  border-top: 1px solid rgba(146, 178, 224, 0.35);
  overflow: hidden;
}

.footer-shell {
  display: grid;
  grid-template-columns: 1fr;
  padding: 2rem 0 1.4rem;
}

.footer-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.84fr);
  gap: 1.8rem;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.38));
  border: 1px solid rgba(148, 178, 221, 0.28);
  border-radius: 0.95rem;
  padding: 1.1rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 24px rgba(30, 66, 118, 0.12);
}

.footer-contact,
.footer-map {
  min-width: 0;
  padding: 0.2rem 0.4rem;
}

.footer-contact {
  padding-right: 1.1rem;
}

.footer-map {
  padding-left: 1.1rem;
  border-left: 1px solid rgba(84, 124, 183, 0.35);
}

.footer-contact h5,
.footer-map h5 {
  margin: 0 0 0.7rem;
  font-family: "Saira Semi Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.18rem;
  color: #163765;
}

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

.footer-contact li {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  align-items: center;
  column-gap: 0.55rem;
  padding: 0.62rem 0.7rem;
  border-radius: 0.65rem;
  background: linear-gradient(170deg, rgba(238, 246, 255, 0.72), rgba(228, 239, 253, 0.54));
  border: 1px solid rgba(152, 182, 224, 0.3);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.footer-icon {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #24579f;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.78), rgba(226, 239, 255, 0.62));
  border: 1px solid rgba(141, 174, 220, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.footer-icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

.footer-contact-copy {
  min-width: 0;
}

.footer-contact li:hover {
  transform: translateY(-1px);
  border-color: rgba(115, 157, 214, 0.46);
  background: linear-gradient(170deg, rgba(240, 248, 255, 0.8), rgba(231, 243, 255, 0.62));
  box-shadow: 0 8px 16px rgba(43, 84, 143, 0.14);
}

.footer-contact li:hover .footer-icon {
  transform: translateY(-1px) scale(1.03);
  color: #1e4f93;
  border-color: rgba(104, 146, 205, 0.6);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(227, 240, 255, 0.74));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 6px 14px rgba(42, 80, 136, 0.18);
}

@media (prefers-reduced-motion: reduce) {
  .footer-contact li,
  .footer-icon {
    transition: none;
  }

  .footer-contact li:hover,
  .footer-contact li:hover .footer-icon {
    transform: none;
  }
}

.footer-contact span {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(52, 92, 144, 0.82);
  margin-bottom: 0.12rem;
}

.footer-contact strong,
.footer-contact a {
  color: #1b3b69;
  text-decoration: none;
  font-weight: 600;
}

.footer-contact a {
  text-transform: none;
}

.footer-contact a:hover {
  color: #d94f05;
}

.map-frame {
  width: min(100%, 650px);
  margin-left: auto;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(154, 184, 227, 0.4);
  box-shadow: 0 12px 22px rgba(32, 70, 123, 0.16);
}

.map-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: 220px;
  border: 0;
  filter: saturate(0.94) contrast(1.04);
}

.footer-bottom {
  border-top: 1px solid rgba(156, 186, 229, 0.28);
  padding: 0.8rem 0.9rem 1rem;
  text-align: center;
  color: rgba(36, 68, 109, 0.86);
  font-size: 0.92rem;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 460ms ease, transform 460ms ease;
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(16px);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  body {
    background-image: linear-gradient(180deg, #f9fbfd 0%, #eef2f6 62%, #e8edf4 100%);
    background-size: cover;
    background-attachment: scroll;
    background-position: center center;
  }

  body::before,
  body::after {
    position: absolute;
    height: min(100svh, 760px);
  }

  body::before {
    background-position: center 22%;
    opacity: 0.5;
  }

  body::after {
    background: linear-gradient(180deg, rgba(248, 251, 255, 0.26), rgba(248, 251, 255, 0.42));
  }

  .site-header {
    backdrop-filter: blur(8px);
  }

  .top-nav {
    position: relative;
    min-height: 62px;
    padding-right: 0;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    z-index: 42;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 0;
    width: min(440px, calc(100vw - 1rem));
    margin: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0 1rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.35rem;
    background:
      linear-gradient(160deg, rgba(255, 255, 255, 0.34), rgba(239, 247, 255, 0.18)),
      rgba(236, 245, 255, 0.14);
    backdrop-filter: blur(12px) saturate(130%);
    -webkit-backdrop-filter: blur(12px) saturate(130%);
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 0.9rem;
    box-shadow:
      0 14px 24px rgba(17, 38, 75, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.72);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: max-height 280ms ease, padding 220ms ease, opacity 220ms ease, transform 220ms ease;
    z-index: 40;
  }

  body.menu-open .nav-links {
    max-height: 320px;
    padding: 0.85rem 1rem 1rem;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-backdrop {
    display: none;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 0.58rem 0.45rem;
    font-size: 1.12rem;
    letter-spacing: 0.01em;
    color: #f3f7ff;
    font-weight: 800;
    text-shadow: 0 1px 0 rgba(4, 14, 30, 0.45);
    background: linear-gradient(180deg, rgba(14, 33, 62, 0.84), rgba(9, 24, 48, 0.9));
    border: 1px solid rgba(216, 230, 255, 0.25);
    border-radius: 0.55rem;
    transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
  }

  .nav-links a:hover {
    background: linear-gradient(180deg, rgba(18, 42, 77, 0.92), rgba(12, 31, 58, 0.96));
    border-color: rgba(235, 242, 255, 0.46);
    color: #ffffff;
  }

  .hero {
    padding: 0.58rem 0 0.78rem;
  }

  .hero-banner {
    min-height: clamp(96px, 18vw, 150px);
  }

  .hero-banner img {
    max-height: clamp(96px, 18vw, 150px);
    transform: scale(1);
  }

  .trusted-brands {
    padding: 0.4rem 0 0.8rem;
  }

  .project-art {
    height: 220px;
  }

  .work-grid {
    gap: 0.85rem;
  }

  .work-card {
    flex-basis: calc(50% - 0.45rem);
    max-width: calc(50% - 0.45rem);
  }

  .brands-carousel {
    padding-block: 0.25rem 0.45rem;
  }

  .brand-pill {
    width: 168px;
  }

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

  .carousel-track {
    animation-duration: 32s;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    padding: 1.2rem 0 0.9rem;
  }

  .footer-panel {
    grid-template-columns: 1fr;
    padding: 0.9rem;
    gap: 1rem;
  }

  .footer-contact,
  .footer-map {
    padding: 0;
  }

  .footer-map {
    padding-left: 0;
    padding-top: 1rem;
    border-left: none;
    border-top: 1px solid rgba(84, 124, 183, 0.35);
  }

  .footer-contact ul {
    gap: 0.5rem;
  }

  .footer-contact li {
    padding: 0.56rem 0.62rem;
  }

  .map-frame iframe {
    height: 200px;
  }

  .footer-bottom {
    padding: 0.7rem 0.75rem 0.9rem;
    font-size: 0.88rem;
  }

  .map-frame iframe {
    height: 210px;
  }
}

@media (max-width: 600px) {
  body::before,
  body::after {
    height: min(100svh, 700px);
  }

  body::before {
    background-position: center 16%;
    opacity: 0.54;
  }

  body::after {
    background: linear-gradient(180deg, rgba(248, 251, 255, 0.24), rgba(248, 251, 255, 0.38));
  }

  .top-nav {
    min-height: 56px;
  }

  .nav-links {
    top: calc(100% + 0.35rem);
    width: min(94vw, 340px);
  }

  .hero {
    padding: 0.5rem 0 0.68rem;
  }

  .hero-banner {
    min-height: clamp(82px, 26vw, 122px);
  }

  .hero-banner img {
    max-height: clamp(82px, 26vw, 122px);
    transform: scale(1);
    clip-path: inset(0 0 0 0);
  }

  .product-gallery-stage {
    height: 260px;
  }

  .work-filters {
    justify-content: flex-start;
    margin-bottom: 0.75rem;
  }

  .work-filter {
    font-size: 0.83rem;
    padding: 0.42rem 0.7rem;
  }

  .work-grid {
    gap: 0.75rem;
  }

  .work-card {
    flex-basis: min(100%, 430px);
    max-width: 100%;
  }

  .contact {
    padding: 1.2rem;
  }

  .brand-pill {
    width: 152px;
  }

  .brands-track {
    gap: 3rem;
  }

  .brand-logo {
    max-width: 100%;
    max-height: 100%;
  }

  .brand-mark {
    width: 2rem;
    height: 2rem;
    border-radius: 0.55rem;
    font-size: 0.9rem;
  }

  .brand-name {
    font-size: 0.8rem;
    letter-spacing: 0.02em;
  }

  .contact-toggle {
    width: 100%;
  }

  .contact-form-card,
  .contact-form-card.is-open {
    width: 100%;
  }

  .product-gallery-title {
    padding: 0.45rem 0.45rem 0.54rem;
    font-size: clamp(0.8rem, 3.2vw, 0.96rem);
    letter-spacing: 0;
    text-transform: none;
    line-height: 1.05;
    white-space: nowrap;
  }

  .section-head {
    gap: 0.4rem;
    margin-bottom: 0.9rem;
    justify-content: center;
  }

  .section-head span {
    display: none;
  }

  .section-head h3 {
    font-size: clamp(0.78rem, 3vw, 0.95rem);
    letter-spacing: 0;
    text-transform: none;
    line-height: 1.05;
    white-space: nowrap;
  }

  .footer-panel {
    padding: 0.85rem;
  }

  .footer-contact h5,
  .footer-map h5 {
    font-size: 1.05rem;
    margin-bottom: 0.55rem;
  }

  .footer-contact li {
    grid-template-columns: 1.9rem 1fr;
    column-gap: 0.48rem;
    padding: 0.5rem 0.55rem;
  }

  .footer-icon {
    width: 1.75rem;
    height: 1.75rem;
  }

  .footer-icon svg {
    width: 0.95rem;
    height: 0.95rem;
  }

  .footer-contact span {
    font-size: 0.74rem;
  }

  .footer-contact strong,
  .footer-contact a {
    font-size: 0.95rem;
  }

  .map-frame iframe {
    height: 190px;
  }

  .footer-bottom {
    padding: 0.65rem 0.65rem 0.8rem;
    font-size: 0.84rem;
  }

}

@media (max-height: 860px) and (min-width: 901px) {
  .top-nav {
    min-height: 62px;
  }

  .hero {
    padding: 0.45rem 0 0.62rem;
  }

  .hero-banner {
    min-height: clamp(88px, 12vh, 132px);
  }

  .hero-banner img {
    max-height: clamp(88px, 12vh, 132px);
  }

  .product-gallery-title {
    padding: 0.56rem 1rem 0.68rem;
    font-size: clamp(1.08rem, 2vw, 1.45rem);
  }
}

@media (max-height: 740px) and (min-width: 901px) {
  .top-nav {
    min-height: 58px;
  }

  .hero {
    padding: 0.35rem 0 0.46rem;
  }

  .hero-banner {
    min-height: clamp(76px, 11vh, 110px);
  }

  .hero-banner img {
    max-height: clamp(76px, 11vh, 110px);
  }

  .product-gallery-title {
    padding: 0.44rem 1rem 0.56rem;
    font-size: clamp(0.98rem, 1.8vw, 1.28rem);
  }
}

@media (max-width: 380px) {
  .product-gallery-title {
    font-size: clamp(0.74rem, 3vw, 0.88rem);
    letter-spacing: 0;
    padding: 0.4rem 0.35rem 0.48rem;
  }

  .section-head h3 {
    font-size: clamp(0.72rem, 2.95vw, 0.86rem);
    letter-spacing: 0;
  }

  .section-head {
    gap: 0.4rem;
  }
}
