:root {
  --bg-light: #efedf0;
  --surface: #f2f0f3;
  --surface-2: #f7f5f7;
  --border: #d7d4da;
  --text: #16151a;
  --text-soft: #474350;
  --text-muted: #5f5b68;
  --navy-1: #020b18;
  --navy-2: #061326;
  --navy-3: #081a31;
  --gold: #c6a00e;
  --gold-bright: #e0ba2e;
  --white: #fff;
  --container: 1520px;
  --narrow: 1480px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow-soft: 0 18px 44px rgba(3, 11, 23, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg-light);
  color: var(--text);
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

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

.container.narrow,
.narrow {
  width: min(calc(100% - 56px), var(--narrow));
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: background-color 0.28s ease, backdrop-filter 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.site-header.is-scrolled {
  background: rgba(3, 11, 24, 0.62);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.site-header.is-scrolled::after {
  opacity: 1;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 118px;
  gap: 24px;
}

.brand {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
}

.brand img {
  width: 171px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5.4vw, 106px);
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  letter-spacing: 0.01em;
}

.site-nav > a,
.dropdown-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.site-nav > a::after,
.dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224, 186, 46, 0.95), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.24s ease;
}

.site-nav > a:hover,
.dropdown-toggle:hover,
.site-nav > a:focus-visible,
.dropdown-toggle:focus-visible {
  color: #fff;
}

.site-nav > a:hover::after,
.dropdown-toggle:hover::after,
.site-nav > a:focus-visible::after,
.dropdown-toggle:focus-visible::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
  padding-bottom: 18px;
  margin-bottom: -18px;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: -12px;
  right: -12px;
  top: 100%;
  height: 18px;
}

.dropdown-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 0.24s ease;
}

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

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  min-width: 310px;
  transform: translate(-50%, 12px);
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 14, 29, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
  display: grid;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 20;
}

@media (min-width: 1181px) {
  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu,
  .nav-dropdown.is-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .nav-dropdown:hover .dropdown-toggle svg,
  .nav-dropdown:focus-within .dropdown-toggle svg,
  .nav-dropdown.is-open .dropdown-toggle svg {
    transform: rotate(180deg);
  }
}

.nav-dropdown.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.dropdown-menu a {
  display: block;
  padding: 11px 14px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.35;
  transition: background-color 0.18s ease, transform 0.18s ease, color 0.18s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  transform: translateX(4px);
}

.dropdown-menu a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.service-card h3 a {
  color: inherit;
}

.service-card h3 a:hover,
.service-card h3 a:focus-visible {
  color: var(--text);
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(3, 11, 22, 0.4);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  position: absolute;
  left: 13px;
  right: 13px;
  height: 2px;
  background: white;
  border-radius: 999px;
  transition: transform 0.22s ease, opacity 0.22s ease, top 0.22s ease;
}

.menu-toggle span:nth-child(1) { top: 16px; }
.menu-toggle span:nth-child(2) { top: 24px; }
.menu-toggle span:nth-child(3) { top: 32px; }

.menu-toggle.is-open span:nth-child(1) { top: 24px; transform: rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { top: 24px; transform: rotate(-45deg); }

.hero {
  position: relative;
  overflow: clip;
  min-height: 810px;
  padding-top: 118px;
  background:
    radial-gradient(780px 620px at 12% 46%, rgba(23, 42, 79, 0.28), transparent 64%),
    linear-gradient(90deg, var(--navy-1) 0%, #051425 39%, #0a1f3a 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(430px 430px at var(--mx, 80%) var(--my, 22%), rgba(255, 255, 255, 0.12), transparent 70%);
  mix-blend-mode: screen;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.hero-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(520px 320px at 86% 12%, rgba(215, 229, 255, 0.18), transparent 68%),
    radial-gradient(680px 460px at 72% 48%, rgba(145, 172, 212, 0.08), transparent 70%);
  pointer-events: none;
}

.hero-lightbar {
  position: absolute;
  top: 26px;
  right: 3%;
  width: min(59vw, 1040px);
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(245, 250, 255, 0.85), rgba(255, 255, 255, 0));
  filter: blur(7px);
  opacity: 0.75;
  pointer-events: none;
}

.hero-circuit {
  position: absolute;
  inset: 18px auto 0 0;
  width: min(50vw, 760px);
  height: 620px;
  background: url('../images/hero-circuit.svg') left top / contain no-repeat;
  opacity: 0.9;
  mix-blend-mode: screen;
  animation: circuitFloat 10s ease-in-out infinite;
  pointer-events: none;
}

.hero-photo {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(60vw, 1000px);
  height: calc(100% - 42px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -24%;
  width: 42%;
  background: linear-gradient(90deg, var(--navy-1), rgba(2, 11, 24, 0.94) 40%, rgba(2, 11, 24, 0));
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 12% 6% 10% 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 72%);
  filter: blur(34px);
  opacity: 0.4;
}

.hero-photo img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  filter: saturate(0.94) contrast(1.02) brightness(0.98);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: calc(810px - 118px);
  padding: 84px 0 110px;
}

.hero-copy {
  max-width: 780px;
  color: #fff;
}

.hero-copy h1 {
  margin: 0;
  max-width: 920px;
  font-size: clamp(3rem, 4.8vw, 4.6rem);
  line-height: 1.085;
  letter-spacing: -0.048em;
  font-weight: 700;
}

.hero-copy p {
  max-width: 780px;
  margin: 26px 0 0;
  font-size: clamp(1.15rem, 1.7vw, 1.75rem);
  line-height: 1.44;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.012em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 42px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 201px;
  min-height: 57px;
  padding: 0 30px;
  border-radius: 18px;
  border: 1px solid transparent;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -120% auto auto -24%;
  width: 38%;
  height: 320%;
  transform: rotate(22deg) translateX(-240%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transition: transform 0.55s ease;
}

.btn:hover::after,
.btn:focus-visible::after {
  transform: rotate(22deg) translateX(520%);
}

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

.btn-primary {
  background: linear-gradient(180deg, #d0ab18, var(--gold));
  color: #fff;
  box-shadow: 0 12px 24px rgba(198, 160, 14, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 16px 32px rgba(198, 160, 14, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.06);
}

.section {
  position: relative;
}

.section-services {
  padding: 98px 0 96px;
}

.section-title {
  margin: 0;
  text-align: center;
  font-size: clamp(2.5rem, 4vw, 4.15rem);
  line-height: 1.06;
  letter-spacing: -0.042em;
  font-weight: 650;
  color: var(--text);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 80px;
}

.service-card {
  min-height: 338px;
  padding: 30px 28px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: transparent;
  transition: transform 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease, background-color 0.26s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(198, 160, 14, 0.34);
  background: rgba(255, 255, 255, 0.24);
  box-shadow: 0 16px 32px rgba(17, 22, 31, 0.08);
}

.service-number {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 2.7rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #3d5477;
}

.service-card h3 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #222128;
}

.service-card p {
  margin: 14px 0 0;
  font-size: 1.04rem;
  line-height: 1.78;
  color: var(--text-soft);
}

.about-title-wrap {
  padding: 14px 0 52px;
}

.section-about {
  min-height: 478px;
  background:
    linear-gradient(90deg, rgba(3, 10, 23, 0.88) 0%, rgba(3, 10, 23, 0.72) 29%, rgba(3, 10, 23, 0.28) 53%, rgba(3, 10, 23, 0.06) 100%),
    url('../images/about-cube.webp') center center / cover no-repeat;
}

.about-inner {
  display: flex;
  align-items: center;
  min-height: 478px;
}

.about-copy {
  max-width: 660px;
  color: #fff;
  padding: 44px 0;
}

.about-copy h3 {
  margin: 0;
  font-size: clamp(2rem, 2.6vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.038em;
  font-weight: 630;
}

.about-copy p {
  margin: 28px 0 0;
  font-size: clamp(1.08rem, 1.45vw, 1.62rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: -0.014em;
}

.section-gallery {
  padding: 124px 0 126px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 78px;
}

.gallery-item {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(10, 16, 28, 0.06);
  background: #d9d8db;
  aspect-ratio: 354 / 227;
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

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

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 32px rgba(10, 16, 28, 0.12);
}

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

.section-cta {
  padding: 0;
  background: linear-gradient(90deg, var(--navy-1), #031022 44%, #08172b 100%);
}

.cta-inner {
  min-height: 248px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 46px 0;
}

.cta-inner h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 1.14;
  letter-spacing: -0.04em;
  font-weight: 640;
}

.cta-inner p {
  margin: 18px 0 34px;
  max-width: 980px;
  font-size: clamp(1rem, 1.25vw, 1.38rem);
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.86);
}

.site-footer {
  padding: 116px 0 112px;
  background: var(--bg-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr) minmax(0, 0.8fr);
  gap: 90px;
  align-items: start;
}

.footer-col h2,
.footer-col h3 {
  margin: 0;
  color: var(--text);
  letter-spacing: -0.03em;
}

.footer-col h2 {
  font-size: clamp(1.85rem, 2.15vw, 2.7rem);
  font-weight: 650;
}

.footer-col h3 {
  font-size: 1.5rem;
  font-weight: 500;
}

.footer-col p {
  margin: 24px 0 0;
  max-width: 460px;
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.9;
}

.footer-col ul {
  list-style: disc;
  padding-left: 22px;
  margin: 22px 0 0;
  color: var(--text);
}

.footer-col li + li {
  margin-top: 16px;
}

.footer-col li::marker {
  color: var(--text);
}

.footer-col a {
  color: var(--text-soft);
  transition: color 0.18s ease, transform 0.18s ease;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--text);
}

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

.reveal.in-view,
.reveal.visible-on-load {
  opacity: 1;
  transform: translateY(0);
}

@keyframes circuitFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, 12px, 0); }
}

@media (max-width: 1400px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    gap: 56px;
  }
}

@media (max-width: 1180px) {
  .site-header {
    background: rgba(3, 11, 24, 0.42);
    backdrop-filter: blur(14px);
  }

  .site-header::after {
    opacity: 1;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: auto;
    width: min(420px, calc(100vw - 28px));
    margin: 0;
    padding: 16px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(3, 11, 24, 0.94);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .site-nav > a,
  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    min-height: 50px;
    padding: 0 12px;
    border-radius: 14px;
  }

  .site-nav > a:hover,
  .dropdown-toggle:hover,
  .site-nav > a:focus-visible,
  .dropdown-toggle:focus-visible {
    background: rgba(255, 255, 255, 0.05);
  }

  .site-nav > a::after,
  .dropdown-toggle::after {
    display: none;
  }

  .nav-dropdown {
    width: 100%;
    padding-bottom: 0;
    margin-bottom: 0;
  }

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

  .dropdown-menu {
    position: static;
    transform: none;
    min-width: 0;
    padding: 6px 0 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    border: 0;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-dropdown.is-open .dropdown-menu {
    display: grid;
    transform: none;
  }

  .dropdown-menu a {
    padding: 10px 16px;
    font-size: 0.96rem;
  }

  .hero {
    min-height: 780px;
  }

  .hero-inner {
    min-height: calc(780px - 118px);
    align-items: flex-start;
    padding-top: 112px;
  }

  .hero-copy {
    max-width: 640px;
  }

  .hero-photo {
    width: min(64vw, 860px);
  }

  .hero-circuit {
    width: min(60vw, 680px);
    opacity: 0.78;
  }

  .section-about,
  .about-inner {
    min-height: 430px;
  }

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

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

  .header-inner {
    min-height: 90px;
  }

  .brand img {
    width: 148px;
  }

  .hero {
    min-height: 900px;
    padding-top: 90px;
  }

  .hero-inner {
    min-height: calc(900px - 90px);
    padding: 78px 0 80px;
    align-items: flex-start;
  }

  .hero-copy {
    max-width: 100%;
    position: relative;
    z-index: 1;
  }

  .hero-copy p {
    max-width: 94%;
  }

  .hero-photo {
    width: 100%;
    height: 60%;
    top: 118px;
    bottom: auto;
    opacity: 0.55;
  }

  .hero-photo::before {
    inset: 0;
    width: auto;
    background: linear-gradient(180deg, rgba(2, 11, 24, 0.36), rgba(2, 11, 24, 0.84) 56%, rgba(2, 11, 24, 1));
  }

  .hero-photo::after {
    inset: 6% 6% auto 6%;
    height: 38%;
  }

  .hero-circuit {
    inset: 90px auto auto -10px;
    width: min(82vw, 520px);
    height: 420px;
    opacity: 0.68;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    gap: 14px;
  }

  .btn {
    width: 100%;
    min-width: 0;
  }

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

  .section-services {
    padding: 78px 0 78px;
  }

  .services-grid {
    margin-top: 52px;
    gap: 18px;
  }

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

  .about-title-wrap {
    padding-bottom: 28px;
  }

  .section-about {
    min-height: 600px;
    background-position: 65% center;
  }

  .about-inner {
    min-height: 600px;
    align-items: flex-end;
  }

  .about-copy {
    max-width: 100%;
    padding-bottom: 60px;
  }

  .section-gallery {
    padding: 82px 0 88px;
  }

  .gallery-grid {
    margin-top: 52px;
    gap: 18px;
  }

  .gallery-item {
    aspect-ratio: 16 / 10.6;
  }

  .section-cta {
    padding: 0;
  }

  .cta-inner {
    min-height: 0;
    padding: 62px 0;
  }

  .site-footer {
    padding: 74px 0 78px;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 820px;
  }

  .hero-inner {
    min-height: calc(820px - 90px);
    padding-top: 58px;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 10vw, 3.1rem);
    max-width: 12ch;
  }

  .hero-copy p,
  .about-copy p,
  .cta-inner p,
  .service-card p,
  .footer-col p {
    font-size: 0.995rem;
  }

  .section-title {
    font-size: clamp(2.2rem, 10vw, 2.8rem);
  }

  .service-number {
    font-size: 2.15rem;
  }

  .service-card h3 {
    font-size: 1.05rem;
  }

  .about-copy h3,
  .cta-inner h2,
  .footer-col h2 {
    font-size: clamp(1.8rem, 8vw, 2.2rem);
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
  }
}

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

  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }
}

body.menu-open {
  overflow: hidden;
}


.site-nav > a[aria-current="page"] {
  color: #fff;
}

.site-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
}

/* Client polish update */
.header-inner {
  min-height: 126px;
}

.brand img {
  width: 238px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.site-nav {
  gap: clamp(24px, 4.8vw, 84px);
  font-size: 15px;
}

.hero {
  min-height: 780px;
  padding-top: 126px;
}

.hero-inner {
  min-height: calc(780px - 126px);
  padding: 74px 0 98px;
}

.hero-copy h1 {
  font-size: clamp(2.7rem, 4.4vw, 4.12rem);
  max-width: 12ch;
}

.hero-copy p {
  max-width: 740px;
  margin-top: 22px;
  font-size: clamp(1.02rem, 1.5vw, 1.44rem);
  line-height: 1.65;
}

.hero-actions {
  margin-top: 34px;
  gap: 18px;
}

.btn {
  min-width: 186px;
  min-height: 54px;
  font-size: 0.96rem;
}

.section-services {
  padding: 90px 0 92px;
}

.section-title {
  font-size: clamp(2.2rem, 3.45vw, 3.5rem);
}

.services-grid {
  margin-top: 64px;
}

.service-number {
  font-size: 2.35rem;
}

.service-card {
  min-height: 322px;
}

.service-card h3 {
  font-size: 1.08rem;
}

.service-card p {
  font-size: 0.98rem;
  line-height: 1.72;
}

.about-copy h3 {
  font-size: clamp(1.9rem, 2.3vw, 2.7rem);
}

.about-copy p {
  font-size: clamp(1rem, 1.22vw, 1.22rem);
  line-height: 1.72;
}

.section-gallery {
  padding: 106px 0 114px;
}

.gallery-grid {
  margin-top: 62px;
}

.cta-inner h2 {
  font-size: clamp(1.95rem, 2.65vw, 2.8rem);
}

.cta-inner p {
  font-size: clamp(0.98rem, 1.1vw, 1.14rem);
  line-height: 1.64;
}

.site-footer {
  padding: 92px 0 94px;
}

.footer-col h2 {
  font-size: clamp(1.72rem, 1.9vw, 2.22rem);
}

.footer-col h3 {
  font-size: 1.22rem;
}

.footer-col p,
.footer-col a,
.footer-col li {
  font-size: 0.98rem;
}

@media (max-width: 1180px) {
  .brand img {
    width: 212px;
  }

  .header-inner {
    min-height: 112px;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-inner {
    min-height: calc(760px - 112px);
    padding-top: 92px;
  }
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 100px;
  }

  .brand img {
    width: 182px;
    border-radius: 10px;
  }

  .hero {
    padding-top: 100px;
  }

  .hero-inner {
    min-height: calc(860px - 100px);
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 156px;
    border-radius: 8px;
  }

  .hero-copy h1 {
    font-size: clamp(2.15rem, 9vw, 2.8rem);
  }

  .hero-copy p,
  .about-copy p,
  .cta-inner p,
  .service-card p,
  .footer-col p,
  .footer-col a,
  .footer-col li {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: clamp(2rem, 9vw, 2.55rem);
  }
}

.dropdown-toggle.is-current {
  color: #fff;
}

.dropdown-toggle.is-current::after {
  transform: scaleX(1);
}

/* Hero copy: keep text out of the photo area on desktop widths,
   and let the photo extend further left so there's no dead navy gap. */
@media (min-width: 1181px) {
  .hero-copy {
    max-width: min(36vw, 640px);
  }

  .hero-copy h1,
  .hero-copy p {
    max-width: 100%;
  }

  .hero-photo {
    width: min(55vw, 1400px);
  }

  /* Remove the dark fade overlay on the photo's left edge — it was darkening
     the space between text and photo and created a visible solid band. */
  .hero-photo::before {
    display: none;
  }
}
