:root {
  --navy: #0a1f3d;
  --navy-deep: #071426;
  --navy-footer-bar: #050f1f;
  --orange: #ff8a00;
  --orange-dark: #e67300;
  --ink: #1f2937;
  --muted: #6b7280;
  --paper: #f7f8fa;
  --white: #ffffff;
  --line: rgba(10, 29, 55, 0.1);
  --header-h: 5rem;
  --font-display: "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 14px 36px rgba(10, 29, 55, 0.1);
  --radius: 12px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.6rem 1rem;
  z-index: 100;
}

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

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

.center {
  text-align: center;
}

.muted {
  color: var(--muted);
}

.eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--orange);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.18;
  margin: 0;
  color: var(--navy);
}

h1 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  font-weight: 700;
}

h3 {
  font-size: 1.02rem;
  font-weight: 700;
}

.accent {
  color: var(--orange);
}

.section {
  padding: clamp(3.75rem, 7vw, 5.25rem) 0;
}

.section[id],
#contact,
#enquiry,
#top {
  scroll-margin-top: var(--header-h);
}

#top {
  scroll-margin-top: 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.4rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-copy p {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 3rem;
  padding: 0.75rem 1.35rem;
  border: 2px solid transparent;
  border-radius: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

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

.btn-orange {
  background: var(--orange);
  color: var(--white);
}

.btn-orange:hover {
  background: var(--orange-dark);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
  margin-top: 1.4rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: auto;
  padding-top: 1rem;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Side dock */
.side-dock {
  position: fixed;
  right: 0;
  top: 42%;
  z-index: 45;
  display: grid;
  transform: translateY(-50%);
}

body.is-ready .side-dock {
  animation: dock-slide 0.8s var(--ease) 0.85s both;
}

.side-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  background: var(--navy);
  color: var(--white);
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.25s ease;
}

.side-item span {
  display: none;
}

.side-item:hover {
  background: var(--orange);
}

.side-item.wa {
  background: #25d366;
}

.side-item.wa:hover {
  background: #1fa855;
}

.side-item svg {
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

body.is-ready .site-header {
  animation: header-drop 0.75s var(--ease) 0.05s both;
}

.site-header.is-over-hero:not(.is-scrolled) {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}

.site-header.is-scrolled {
  background: var(--navy);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
}

.logo {
  justify-self: start;
  flex-shrink: 0;
  line-height: 0;
}

.logo img {
  display: block;
  height: 3.375rem;
  width: auto;
  max-width: 10.75rem;
  object-fit: contain;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(0.65rem, 1.4vw, 1.15rem);
  flex-wrap: nowrap;
}

.nav > a,
.nav-item > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav > a:hover,
.nav-item > a:hover {
  color: var(--white);
}

.nav > a.is-active,
.nav-item > a.is-active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.submenu a.is-active {
  color: var(--orange);
  background: var(--paper);
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.caret {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.55rem;
  height: 0.55rem;
  flex-shrink: 0;
  opacity: 0.88;
  transform: translateY(1px);
}

.caret svg {
  width: 100%;
  height: 100%;
  display: block;
}

.submenu {
  position: absolute;
  top: calc(100% + 0.85rem);
  left: 0;
  min-width: 16rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 0.55rem;
  display: none;
  z-index: 20;
}

.nav-item:hover .submenu,
.nav-item:focus-within .submenu {
  display: grid;
}

.submenu a {
  padding: 0.55rem 0.7rem;
  border-radius: 6px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}

.submenu a:hover {
  background: var(--paper);
  color: var(--orange);
}

.header-cta {
  justify-self: end;
  flex-shrink: 0;
  min-height: 2.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  justify-self: end;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 2px;
  margin: 0.35rem auto;
  background: var(--white);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-shell {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--navy-deep);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.06);
}

body.is-ready .hero-bg img {
  animation: hero-bg-zoom 20s var(--ease) forwards;
}

@keyframes hero-bg-zoom {
  from {
    transform: scale(1.06);
  }

  to {
    transform: scale(1);
  }
}

.hero-fade-item {
  opacity: 0;
  transform: translateY(28px);
}

body.is-ready .hero-fade-item {
  animation: hero-rise 0.9s var(--ease) forwards;
}

body.is-ready .hero-panel .hero-fade-item:nth-child(1) {
  animation-delay: 0.12s;
}

body.is-ready .hero-panel .hero-fade-item:nth-child(2) {
  animation-delay: 0.28s;
}

body.is-ready .hero-panel .hero-fade-item:nth-child(3) {
  animation-delay: 0.44s;
}

body.is-ready .hero-panel .hero-fade-item:nth-child(4) {
  animation-delay: 0.6s;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes header-drop {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes dock-slide {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(14px);
  }

  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 20, 38, 0.28) 0%, rgba(7, 20, 38, 0.08) 36%, transparent 58%),
    linear-gradient(180deg, rgba(7, 20, 38, 0.22) 0%, transparent 42%, rgba(7, 20, 38, 0.38) 100%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  align-items: center;
  padding: calc(var(--header-h) + 1.5rem) 0 2rem;
}

.hero-panel {
  position: relative;
  z-index: 2;
  max-width: 38rem;
}

.hero-eyebrow {
  margin-bottom: 0.85rem;
}

.hero-panel h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.2vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: 0.015em;
}

.hero-panel h1 .accent {
  color: var(--orange);
}

.hero-lead {
  margin: 1.1rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
  max-width: 30rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

/* Hero chip bar (bottom divider row) */
.hero-chipbar {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 20, 38, 0.52);
  backdrop-filter: blur(6px);
}

.hero-chipbar::before {
  content: "";
  position: absolute;
  top: -1px;
  left: max(1.25rem, calc((100% - 1240px) / 2 + 1.25rem));
  width: clamp(3.5rem, 8vw, 5.5rem);
  height: 2px;
  background: var(--orange);
}

.hero-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
}

.hero-chips li {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: 0.01em;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  padding: 1.05rem 1rem;
}

.chip-label {
  display: block;
  text-align: left;
  white-space: normal;
}

.hero-chips li:last-child {
  border-right: 0;
}

.chip-icon {
  display: inline-flex;
  width: 1.75rem;
  height: 1.75rem;
  color: var(--orange);
  flex-shrink: 0;
}

.chip-icon svg {
  width: 100%;
  height: 100%;
}

/* About */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-grid h2 {
  line-height: 1.15;
}

.mini-stats {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem clamp(0.75rem, 2vw, 1.25rem);
}

.mini-stats li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.mini-stat-ic {
  display: inline-flex;
  width: 2.1rem;
  height: 2.1rem;
  color: var(--orange);
  flex-shrink: 0;
  margin-bottom: 0.55rem;
}

.mini-stat-ic svg {
  width: 100%;
  height: 100%;
}

.mini-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  line-height: 1.1;
}

.mini-stats .stat-text {
  font-size: 1.1rem;
}

.mini-stat-label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.35;
}

.about-visual {
  position: relative;
  padding-bottom: 2rem;
  padding-right: 0.5rem;
}

.about-deco-frame {
  position: absolute;
  top: 10%;
  right: 0;
  width: 48%;
  height: 82%;
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  z-index: 0;
  pointer-events: none;
}

.about-deco-dots {
  position: absolute;
  width: 5.5rem;
  height: 5.5rem;
  background-image: radial-gradient(circle, var(--orange) 2px, transparent 2px);
  background-size: 13px 13px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.95;
}

.about-deco-dots-tr {
  top: 2%;
  right: 0;
}

.about-deco-dots-br {
  bottom: 4%;
  right: 22%;
}

.about-visual > img {
  position: relative;
  z-index: 1;
  width: 88%;
  min-height: 24rem;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.values-card {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: min(310px, 62%);
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem;
  display: grid;
  gap: 1.05rem;
  box-shadow: var(--shadow);
}

.value-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.value-ic {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  color: var(--orange);
  flex-shrink: 0;
}

.value-ic svg {
  width: 100%;
  height: 100%;
}

.values-card h3 {
  color: var(--white);
  font-size: 0.92rem;
}

.values-card p {
  margin: 0.15rem 0 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
}

/* Services */
.services {
  background: var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.service-card {
  background: var(--white);
  padding: 1.6rem 1.15rem 1.3rem;
  border-radius: var(--radius);
  border-top: 3px solid var(--orange);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  text-align: center;
  align-items: center;
  transition: transform 0.35s var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-icon {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  color: var(--orange);
  margin-bottom: 0.95rem;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  margin-bottom: 0.5rem;
  font-size: 0.98rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.service-card .text-link {
  color: var(--navy);
}

.service-card .text-link:hover {
  color: var(--orange);
}

/* Industries */
.industries {
  background: var(--white);
}

.industry-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.industry-list li {
  background: var(--paper);
  border-left: 3px solid var(--orange);
  padding: 1rem 1.1rem;
  border-radius: 0 10px 10px 0;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
}

/* Cinematic banners */
.cine {
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.cine-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cine-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cine-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 20, 38, 0.96) 0%,
    rgba(7, 20, 38, 0.88) 42%,
    rgba(7, 20, 38, 0.45) 68%,
    rgba(7, 20, 38, 0.15) 100%
  );
}

.cine-mission {
  min-height: clamp(22rem, 38vw, 28rem);
  display: flex;
  align-items: center;
}

.cine-mission .cine-bg img {
  object-position: 72% center;
}

.cine-mission-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.cine-mission h2 {
  color: var(--white);
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  line-height: 1.15;
  margin-bottom: 0.85rem;
}

.cine-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  max-width: 30rem;
  font-size: 0.98rem;
}

.cine-copy .btn {
  margin-top: 1.4rem;
}

.cine-capabilities {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 0.75rem;
}

.cine-capabilities li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.92);
}

.cine-ic {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--orange);
}

.cine-ic svg {
  width: 100%;
  height: 100%;
}

.cine-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.cine-panel {
  position: relative;
  min-height: clamp(18rem, 32vw, 24rem);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.cine-panel-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cine-panel-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cine-panel-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 20, 38, 0.94) 0%,
    rgba(7, 20, 38, 0.78) 48%,
    rgba(7, 20, 38, 0.35) 100%
  );
}

.cine-pmc .cine-panel-bg::after {
  background: linear-gradient(
    90deg,
    rgba(7, 20, 38, 0.92) 0%,
    rgba(7, 20, 38, 0.72) 55%,
    rgba(7, 20, 38, 0.2) 100%
  );
}

.cine-panel-inner {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2.5rem);
  max-width: 28rem;
}

.cine-panel h2 {
  color: var(--white);
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.cine-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
}

.cine-checklist {
  list-style: none;
  margin: 1.1rem 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.cine-checklist li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.cine-checklist li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  flex-shrink: 0;
}

.text-link-light {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.text-link-light:hover {
  color: var(--orange);
}

.cine-process {
  min-height: clamp(20rem, 36vw, 26rem);
  display: flex;
  align-items: center;
}

.cine-process .cine-bg img {
  object-position: left center;
}

.cine-process .cine-bg::after {
  background: linear-gradient(
    90deg,
    rgba(7, 20, 38, 0.94) 0%,
    rgba(7, 20, 38, 0.82) 38%,
    rgba(7, 20, 38, 0.55) 62%,
    rgba(7, 20, 38, 0.25) 100%
  );
}

.cine-process-layout {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.cine-process h2 {
  color: var(--white);
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  line-height: 1.18;
  margin-bottom: 0.75rem;
}

.process-flow {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.35rem;
}

.process-flow li:not(.process-arrow) {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  min-width: 4.5rem;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.process-ic {
  display: inline-flex;
  width: 2.35rem;
  height: 2.35rem;
  color: var(--orange);
}

.process-ic svg {
  width: 100%;
  height: 100%;
}

.process-arrow {
  color: var(--orange);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  padding: 0 0.15rem;
}

/* Projects — navy band (Figma) */
.projects {
  background: var(--navy);
  padding: clamp(3.5rem, 6vw, 4.75rem) 0;
}

.projects-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 2.22fr);
  gap: clamp(1.5rem, 3.5vw, 2.75rem);
  align-items: center;
}

.projects-intro {
  padding-top: 0;
}

.projects-intro .eyebrow {
  margin-bottom: 0.65rem;
}

.projects-intro h2 {
  color: var(--white);
  max-width: 11.5rem;
  font-size: clamp(1.85rem, 2.6vw, 2.45rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.projects-cta {
  margin-top: 1.75rem;
}

.projects-carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
  width: 100%;
}

.car-btn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  color: var(--white);
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  align-self: center;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.car-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.projects-marquee {
  min-width: 0;
  width: 100%;
  overflow: hidden;
}

.project-marquee-group {
  gap: 1.15rem;
  padding-right: 1.15rem;
}

.projects-marquee .project-card {
  margin: 0;
  flex: 0 0 236px;
  display: flex;
}

/* Shared infinite marquee */
.infinite-marquee {
  overflow: hidden;
  min-width: 0;
}

.infinite-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: infinite-marquee-scroll var(--marquee-duration, 28s) linear infinite;
}

.infinite-marquee:not(.is-marquee-ready) .infinite-marquee-track {
  animation: none;
}

.infinite-marquee:hover .infinite-marquee-track {
  animation-play-state: paused;
}

.infinite-marquee-group {
  display: flex;
  flex-shrink: 0;
  align-items: stretch;
}

@keyframes infinite-marquee-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-1 * var(--marquee-shift, 0px)), 0, 0);
  }
}

.car-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  min-width: 0;
  width: 100%;
  padding-block: 0.35rem;
  align-items: stretch;
}

.car-track.is-autoplaying {
  scroll-behavior: auto;
}

.car-track.is-autoplaying.is-smooth {
  scroll-behavior: smooth;
}

.car-track::-webkit-scrollbar {
  display: none;
}

.project-card {
  margin: 0;
  flex: 0 0 236px;
  display: flex;
}

.project-card button {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding: 0;
  border: 0;
  background: var(--white);
  cursor: pointer;
  overflow: hidden;
  text-align: left;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.project-card button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.project-photo {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

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

.project-meta {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
  padding: 0.9rem 1rem 1.05rem;
  min-height: 4.35rem;
}

.project-meta h3 {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.project-meta p {
  margin: 0.35rem 0 0;
  font-size: 0.74rem;
  color: #7a8494;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.pin {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--orange);
  display: inline-block;
  flex-shrink: 0;
}

/* Orange stats band */
.stats-band {
  background: var(--orange);
  color: var(--white);
  padding: 1.6rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.stats-grid > div {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  justify-content: center;
}

.stat-icon {
  display: inline-flex;
  width: 2.4rem;
  height: 2.4rem;
  color: var(--white);
  flex-shrink: 0;
}

.stat-icon svg {
  width: 100%;
  height: 100%;
}

.stats-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: var(--white);
  line-height: 1;
}

.stats-grid .stat-text {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
}

.stats-grid div span:not(.stat-icon) {
  display: block;
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Testimonials */
.testimonials {
  background: var(--paper);
}

.testimonials-layout {
  display: grid;
  grid-template-columns: 0.8fr 2.2fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.testimonials-slider {
  min-width: 0;
}

.testimonial-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.testimonial-track.is-autoplaying {
  scroll-behavior: auto;
}

.testimonial-track.is-autoplaying.is-smooth {
  scroll-behavior: smooth;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-track .testimonial {
  flex: 0 0 min(320px, 88%);
  scroll-snap-align: start;
}

@media (min-width: 768px) {
  .testimonial-track .testimonial {
    flex: 0 0 min(360px, 48%);
  }
}

@media (min-width: 1024px) {
  .testimonial-track .testimonial {
    flex: 0 0 calc(36% - 0.5rem);
  }
}

.testimonial {
  margin: 0;
  background: var(--white);
  padding: 1.5rem 1.3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  display: flex;
  flex-direction: column;
}

.testimonial::before {
  content: "“";
  position: absolute;
  top: 0.2rem;
  left: 1rem;
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--orange);
}

.testimonial p {
  margin: 1.4rem 0 1.1rem;
  font-size: 0.92rem;
  color: var(--ink);
  flex: 1;
}

.testimonial footer {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.testimonial strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 0.88rem;
}

.testimonial footer span {
  color: var(--muted);
  font-size: 0.78rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.25rem;
}

.testimonial-dots button {
  width: 0.42rem;
  height: 0.42rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(10, 29, 55, 0.18);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.testimonial-dots button.is-active {
  background: var(--orange);
  transform: scale(1.15);
}

.testimonial-dots button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

/* Associates */
.associates {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 1.65rem 0;
  overflow: hidden;
}

.associates-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(1.5rem, 3vw, 2.75rem);
}

.associates-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #4f5966;
  white-space: nowrap;
}

.associates-marquee {
  position: relative;
  min-width: 0;
  mask-image: linear-gradient(to right, #000 0, #000 92%, transparent 100%);
}

.associates-logos {
  list-style: none;
  margin: 0;
  padding: 0 2.5rem 0 0;
  gap: 2.5rem;
  align-items: center;
}

.associates-logos li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  height: 2.25rem;
}

.partner-logo {
  display: block;
  width: auto;
  height: 2rem;
  max-width: none;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 1100px) {
  .associates-row {
    column-gap: 1.25rem;
  }

  .associates-logos {
    gap: 2rem;
    padding-right: 2rem;
  }

  .partner-logo {
    height: 1.75rem;
  }

  .project-card,
  .projects-marquee .project-card {
    flex-basis: 220px;
  }
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.78);
  padding: 3.25rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.95fr) minmax(0, 1.1fr) minmax(0, 1.15fr) minmax(10.5rem, 0.85fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: start;
  padding-right: 3.25rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
  margin: 0.85rem 0 0;
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 18rem;
  color: rgba(255, 255, 255, 0.72);
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.footer-grid h3 {
  color: var(--orange);
  font-size: 0.78rem;
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.footer-col a,
.footer-contact span {
  display: block;
  margin: 0.45rem 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-brand .logo {
  display: inline-block;
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.footer-ic {
  display: inline-flex;
  width: 1.1rem;
  height: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.footer-ic svg {
  width: 100%;
  height: 100%;
}

.footer-contact a,
.footer-contact span {
  margin: 0;
  line-height: 1.45;
  font-size: 0.86rem;
}

.socials {
  display: grid;
  grid-template-columns: repeat(4, 2.1rem);
  gap: 0.5rem;
}

.socials a {
  width: 2.1rem;
  height: 2.1rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.socials a svg {
  width: 0.9rem;
  height: 0.9rem;
}

.socials a:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(245, 124, 0, 0.08);
}

.footer-bottom-wrap {
  background: var(--navy-footer-bar);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  padding: 0.95rem 3.25rem 0.95rem 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
}

.footer-legal a:hover {
  color: var(--orange);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(7, 20, 38, 0.92);
  display: grid;
  place-items: center;
  padding: 2rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: min(82vh, 900px);
  max-width: min(92vw, 900px);
  object-fit: contain;
}

.lightbox p {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  border: 0;
  background: transparent;
  color: white;
  font-size: 2.4rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-left {
  transform: translateX(-32px);
}

.reveal-right {
  transform: translateX(32px);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-stagger-scale > * {
  transform: translateY(22px) scale(0.97);
}

.reveal-stagger > *.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-stagger-hero > * {
  transform: translateY(16px);
}

body.is-ready .reveal-stagger-hero > * {
  animation: hero-rise 0.75s var(--ease) forwards;
}

body.is-ready .reveal-stagger-hero > *:nth-child(1) {
  animation-delay: 0.72s;
}

body.is-ready .reveal-stagger-hero > *:nth-child(2) {
  animation-delay: 0.82s;
}

body.is-ready .reveal-stagger-hero > *:nth-child(3) {
  animation-delay: 0.92s;
}

body.is-ready .reveal-stagger-hero > *:nth-child(4) {
  animation-delay: 1.02s;
}

body.is-ready .reveal-stagger-hero > *:nth-child(5) {
  animation-delay: 1.12s;
}

.service-card.is-visible:hover {
  transform: translateY(-6px);
}

.service-card.is-visible:hover .service-icon {
  animation: icon-pop 0.55s var(--ease);
}

@keyframes icon-pop {
  0% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.12);
  }

  100% {
    transform: scale(1);
  }
}

/* Contact page */
.page-contact {
  background: var(--white);
}

.contact-hero {
  position: relative;
  min-height: clamp(32rem, 72svh, 42rem);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.contact-hero-shell {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: inherit;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--navy-deep);
}

.contact-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 88% center;
}

.contact-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 20, 38, 0.88) 0%, rgba(7, 20, 38, 0.62) 38%, rgba(7, 20, 38, 0.12) 62%, transparent 78%),
    linear-gradient(180deg, rgba(7, 20, 38, 0.28) 0%, transparent 38%, rgba(7, 20, 38, 0.5) 100%);
}

.contact-hero-layout {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 1.25rem) 0 2rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

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

.breadcrumb span[aria-hidden="true"] {
  color: rgba(255, 255, 255, 0.45);
}

.breadcrumb span[aria-current="page"] {
  color: rgba(255, 255, 255, 0.82);
}

.contact-hero-panel {
  max-width: 38rem;
}

.contact-hero-panel h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: none;
}

.contact-hero-lead {
  margin: 1.1rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
  max-width: 32rem;
}

.btn-call svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.contact-hero-chipbar .chip-stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact-hero-chipbar .chip-stat strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1;
  color: var(--white);
}

.contact-hero-chipbar .chip-stat .chip-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-strip {
  background: var(--navy);
  color: var(--white);
  padding: clamp(1.75rem, 3vw, 2.35rem) 0;
  border-bottom: 3px solid var(--orange);
}

.contact-strip-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.contact-strip-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-strip-icon {
  display: inline-flex;
  width: 2.2rem;
  height: 2.2rem;
  color: var(--orange);
  flex-shrink: 0;
}

.contact-strip-icon svg {
  width: 100%;
  height: 100%;
}

.contact-strip-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.contact-strip-item p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.contact-strip-item a {
  color: rgba(255, 255, 255, 0.92);
}

.contact-strip-item a:hover {
  color: var(--orange);
}

.contact-form-section {
  background: var(--white);
}

.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(2rem, 4vw, 3.25rem);
  align-items: stretch;
}

.contact-form-wrap h2 {
  margin-bottom: 0.55rem;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.contact-form-intro {
  margin: 0 0 1.75rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
  max-width: 36rem;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field span {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--navy);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 2.9rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field select {
  appearance: none;
  padding-right: 2.4rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.95rem center;
  background-size: 12px 8px;
  cursor: pointer;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245, 124, 0, 0.12);
}

.contact-form-submit {
  width: 100%;
  margin-top: 0.35rem;
  min-height: 3.15rem;
  border-radius: 4px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.contact-form-visual {
  display: flex;
  min-height: 100%;
}

.contact-form-visual img {
  width: 100%;
  height: 100%;
  min-height: clamp(22rem, 100%, 100%);
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(10, 29, 55, 0.12);
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-note {
  margin: 0.25rem 0 0;
  color: #15803d;
  font-size: 0.88rem;
  font-weight: 600;
}

.form-note.is-error {
  color: #b45309;
}

.contact-services {
  background: var(--white);
}

.contact-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.why-gks-band {
  background: var(--navy);
  color: var(--white);
  padding: clamp(2rem, 4vw, 2.75rem) 0;
}

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

.why-gks-grid > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
}

.why-gks-icon {
  display: inline-flex;
  width: 2.2rem;
  height: 2.2rem;
  color: var(--orange);
  margin-bottom: 0.25rem;
}

.why-gks-icon svg {
  width: 100%;
  height: 100%;
}

.why-gks-grid strong {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  color: var(--white);
  line-height: 1.1;
}

.why-gks-grid > div > span:last-child {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.contact-location-faq {
  background: var(--paper);
}

.contact-location-faq .section-head {
  margin-inline: auto;
  margin-bottom: 2rem;
}

.location-intro {
  margin: 0.65rem auto 0;
  color: var(--muted);
  font-size: 0.94rem;
  max-width: 34rem;
}

.location-grid {
  list-style: none;
  margin: 0 0 clamp(2.5rem, 5vw, 3.5rem);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 1.15rem;
  align-items: stretch;
}

.location-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  min-height: 19.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--orange);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem 1.35rem;
  box-shadow: var(--shadow);
  cursor: pointer;
  outline: none;
  list-style: none;
  overflow: hidden;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s ease;
  animation: location-rise 0.75s var(--ease) both;
}

.location-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: var(--orange);
  transition: width 0.35s var(--ease);
}

.location-card > * {
  position: relative;
  z-index: 1;
}

.location-grid .location-card:nth-child(1) {
  animation-delay: 0.06s;
}

.location-grid .location-card:nth-child(2) {
  animation-delay: 0.16s;
}

.location-grid .location-card:nth-child(3) {
  animation-delay: 0.26s;
}

@keyframes location-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(10, 29, 55, 0.12);
}

.location-card:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 138, 0, 0.28), var(--shadow);
}

.location-card.is-active {
  border-color: rgba(255, 138, 0, 0.35);
  box-shadow: 0 0 0 3px rgba(255, 138, 0, 0.16), 0 18px 40px rgba(10, 29, 55, 0.14);
  transform: translateY(-6px);
}

.location-card.is-active::before {
  width: 4px;
}

.location-card.is-active:hover {
  transform: translateY(-6px);
}

.location-card.is-active .location-icon {
  background: var(--orange);
  color: var(--white);
}

.location-card.is-pulse .location-icon {
  animation: location-icon-pop 0.45s var(--ease);
}

.location-card.is-active .location-pin {
  background: rgba(255, 138, 0, 0.14);
  color: var(--navy);
}

@keyframes location-icon-pop {
  0% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

.location-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 10px;
  background: rgba(255, 138, 0, 0.12);
  color: var(--orange);
  margin-bottom: 1rem;
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s var(--ease);
}

.location-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.location-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  min-height: 2.25rem;
  margin-bottom: 0.35rem;
}

@media (max-width: 640px) {
  .location-card-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
  }
}

.location-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.location-pin {
  flex-shrink: 0;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: var(--paper);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.location-city {
  margin: 0 0 0.55rem;
  min-height: 1.15rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--orange);
}

.location-address {
  margin: 0;
  flex: 1 1 auto;
  width: 100%;
  min-height: 6.875rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.location-directions {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  width: 100%;
  min-height: 2.35rem;
  margin-top: auto;
  padding-top: 1rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color 0.25s ease, gap 0.25s var(--ease);
}

.location-directions:hover {
  color: var(--orange);
  gap: 0.5rem;
}

.contact-faq {
  max-width: 52rem;
  margin-inline: auto;
}

.contact-faq-head {
  margin-bottom: 1.25rem;
}

.contact-faq-head h2 {
  margin: 0;
}

.faq-list {
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 0;
  background: transparent;
  text-align: left;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
}

.faq-trigger:hover {
  color: var(--orange);
}

.faq-chevron {
  display: inline-flex;
  width: 0.85rem;
  height: 0.85rem;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}

.faq-chevron svg {
  width: 100%;
  height: 100%;
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s var(--ease);
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-panel p {
  margin: 0;
  overflow: hidden;
  padding: 0 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  transition: padding 0.3s var(--ease);
}

.faq-item.is-open .faq-panel p {
  padding: 0 1.1rem 1rem;
}

.contact-cta-band {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  padding: clamp(2.75rem, 5vw, 3.5rem) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.contact-cta-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--navy) 0%, var(--navy) 42%, rgba(10, 31, 61, 0.92) 62%, rgba(10, 31, 61, 0.78) 100%);
  z-index: 1;
}

.contact-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  opacity: 0.42;
}

.contact-cta-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(1.25rem, 2.4vw, 2rem);
  align-items: center;
  padding-right: 3.25rem;
}

.contact-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  color: var(--white);
  flex-shrink: 0;
}

.contact-cta-icon svg {
  width: 100%;
  height: 100%;
}

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

.contact-cta-copy h2 {
  color: var(--white);
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  font-weight: 700;
  line-height: 1.25;
  text-transform: none;
  letter-spacing: -0.01em;
  margin: 0 0 0.55rem;
}

.contact-cta-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 40rem;
}

.contact-cta-btn {
  flex-shrink: 0;
  white-space: nowrap;
  min-height: 3.05rem;
  padding-inline: 1.55rem;
  border-radius: 4px;
}

@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .projects-layout,
  .testimonials-layout {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 768px) {
  .contact-cta-layout {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    padding-right: 0;
  }

  .contact-cta-bg img {
    object-position: center;
    opacity: 0.28;
  }

  .contact-cta-copy p {
    margin-inline: auto;
  }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-form-visual img {
    min-height: clamp(18rem, 52vw, 24rem);
  }

  .associates-row {
    grid-template-columns: 1fr;
    row-gap: 0.85rem;
  }

  .associates-marquee {
    mask-image: linear-gradient(to right, #000 0, #000 90%, transparent 100%);
  }

  .project-card,
  .projects-marquee .project-card {
    flex-basis: min(236px, 78vw);
  }

  .projects-intro h2 {
    max-width: none;
  }

  .projects-carousel {
    gap: 0.65rem;
  }

  .car-btn {
    width: 2.45rem;
    height: 2.45rem;
    font-size: 1.45rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    padding-right: 0;
  }

  .footer-bottom {
    padding-right: 0;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .logo img {
    height: 2.85rem;
    max-width: 9rem;
  }

  .stats-grid,
  .industry-list,
  .mini-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-track .testimonial {
    flex: 0 0 min(300px, 92%);
  }

  .hero-chips {
    flex-wrap: wrap;
  }

  .hero-chips li {
    flex: 1 1 45%;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: flex-start;
    padding: 0.85rem 0.5rem;
  }

  .hero-chipbar::before {
    left: 1.25rem;
  }

  .hero-bg img {
    object-position: 65% center;
  }

  .hero-panel h1 {
    font-size: clamp(1.85rem, 7vw, 2.65rem);
  }

  .about-visual {
    padding-bottom: 0;
    padding-right: 0;
  }

  .about-deco-frame,
  .about-deco-dots {
    display: none;
  }

  .about-visual > img {
    width: 100%;
  }

  .values-card {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 1rem;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    justify-self: stretch;
    width: 100%;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.1rem 1.5rem 1.4rem;
    gap: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s ease;
    max-height: calc(100svh - var(--header-h));
    overflow: auto;
  }

  .nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav > a,
  .nav-item > a {
    justify-content: flex-start;
    width: 100%;
    white-space: normal;
  }

  .nav-item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .submenu {
    position: static;
    display: none;
    width: 100%;
    min-width: 0;
    box-shadow: none;
    border: 0;
    padding: 0.35rem 0 0 1rem;
    margin-top: 0.15rem;
    background: transparent;
    gap: 0.15rem;
  }

  .nav-item:hover .submenu,
  .nav-item:focus-within .submenu {
    display: none;
  }

  .nav-item.is-sub-open .submenu {
    display: grid;
  }

  .nav-item.is-sub-open .caret {
    transform: translateY(1px) rotate(180deg);
  }

  .submenu a {
    color: rgba(255, 255, 255, 0.8);
    padding-inline: 0;
  }

  .submenu a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .side-dock {
    top: auto;
    bottom: 1rem;
    right: 0.75rem;
    transform: none;
  }

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

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

  .location-card {
    height: auto;
    min-height: auto;
  }

  .location-address {
    min-height: auto;
  }

  .location-directions {
    min-height: auto;
  }

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

  .contact-hero-bg img {
    object-position: 78% center;
  }
}

@media (max-width: 640px) {
  .service-grid,
  .stats-grid,
  .industry-list,
  .footer-grid,
  .mini-stats {
    grid-template-columns: 1fr;
  }

  .hero-chips li {
    flex: 1 1 100%;
  }

  .contact-strip-grid,
  .contact-service-grid,
  .why-gks-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .infinite-marquee-track {
    animation: none;
  }

  .hero-bg img,
  .hero-fade-item,
  .site-header,
  .side-dock,
  .reveal-stagger-hero > *,
  .location-card {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .reveal,
  .reveal-stagger > *,
  .btn {
    transition: none !important;
  }

  .reveal,
  .reveal-stagger > * {
    opacity: 1;
    transform: none;
  }
}
