@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter+Tight:wght@400;500;600;700;800;900&display=swap");

:root {
  --ink: #121417;
  --ink-2: #23272d;
  --steel: #59616b;
  --muted: #717985;
  --line: #d9dde2;
  --paper: #f6f4ef;
  --white: #ffffff;
  --accent: #d6212a;
  --accent-dark: #a9151c;
  --blue: #18384f;
  --green: #3d5b47;
  --shadow: 0 18px 50px rgba(18, 20, 23, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter Tight", Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

body.lightbox-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(214, 33, 42, 0.78);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--accent);
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(18, 20, 23, 0.94);
  backdrop-filter: blur(14px);
  transition: transform 320ms ease;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 32px, var(--max));
  min-height: 88px;
  margin: 0 auto;
  padding: 10px 0;
  gap: 24px;
}

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

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

.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  position: absolute;
  left: 11px;
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease, top 220ms ease;
  content: "";
}

.nav-toggle::before {
  top: 14px;
}

.nav-toggle span {
  top: 21px;
}

.nav-toggle::after {
  top: 28px;
}

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

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a,
.dropdown-toggle {
  padding: 10px 12px;
  border: 0;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.08rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.dropdown-toggle:hover,
.dropdown-toggle[aria-current="page"],
.dropdown-toggle[aria-expanded="true"] {
  color: var(--accent);
}

.nav-item {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.dropdown-toggle::after {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 240ms ease;
  content: "";
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding-top: 18px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  pointer-events: none;
}

.dropdown-menu-inner {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(18, 20, 23, 0.98);
  box-shadow: var(--shadow);
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu,
.nav-item.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-item:hover .dropdown-toggle::after,
.nav-item:focus-within .dropdown-toggle::after,
.nav-item.is-open .dropdown-toggle::after,
.dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(225deg) translate(-2px, -1px);
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
}

.nav-cta {
  margin-left: 8px;
  border: 1px solid var(--accent);
}

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

.section {
  position: relative;
  padding: 86px 0;
}

.section::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(16px, calc((100% - var(--max)) / 2 - 32px));
  width: 1px;
  background: rgba(18, 20, 23, 0.12);
  content: "";
}

.section.dark::before,
.section.blue::before {
  background: rgba(255, 255, 255, 0.16);
}

.section.tight {
  padding: 56px 0;
}

.section.dark {
  color: var(--white);
  background: var(--ink);
}

.section.blue {
  color: var(--white);
  background: var(--blue);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Bebas Neue", Impact, sans-serif;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  margin-bottom: 24px;
  color: inherit;
  font-size: clamp(2.7rem, 7vw, 6.6rem);
  font-weight: 900;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 900;
}

h1.eyebrow,
h2.eyebrow {
  max-width: none;
  margin: 0 0 14px;
  color: var(--accent);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.display-title {
  max-width: 920px;
  margin-bottom: 24px;
  color: inherit;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.7rem, 7vw, 6.6rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.split-word {
  display: inline-block;
  will-change: transform, opacity;
}

.hero-preload .hero h1.eyebrow,
.hero-preload .hero .display-title,
.hero-preload .hero .lead,
.hero-preload .hero .button-row,
.hero-preload .hero .button-row .btn,
.hero-preload .page-hero h1.eyebrow,
.hero-preload .page-hero .display-title,
.hero-preload .page-hero .lead,
.hero-preload .page-hero .button-row,
.hero-preload .page-hero .button-row .btn {
  opacity: 0;
}

.section-title {
  margin-bottom: 22px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

h4 {
  margin-bottom: 12px;
  color: var(--ink-2);
  font-size: 1.25rem;
}

p {
  color: var(--steel);
}

.dark p,
.blue p,
.hero p,
.page-hero p {
  color: rgba(255, 255, 255, 0.78);
}

.lead {
  max-width: 760px;
  font-size: clamp(1.12rem, 2vw, 1.35rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 0;
  background: var(--accent);
  color: var(--white);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.btn.secondary {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
  background: transparent;
}

.btn.secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.hero {
  position: relative;
  min-height: calc(100vh - 91px);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-slider,
.hero-slide,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-grid {
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  pointer-events: none;
}

.hero-grid span {
  position: relative;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-grid span:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-grid span::after {
  position: absolute;
  top: -35%;
  left: -1px;
  width: 1px;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  animation: heroLine 4.8s ease-in-out infinite;
  content: "";
}

.hero-grid span:nth-child(2)::after {
  animation-delay: 0.9s;
}

.hero-grid span:nth-child(3)::after {
  animation-delay: 1.8s;
}

.hero-grid span:nth-child(4)::after {
  animation-delay: 2.7s;
}

.hero-slide {
  opacity: 0;
  transition: opacity 1100ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 7600ms ease-out;
  will-change: transform;
}

.hero-slide.is-active img,
.hero-slide.is-leaving img {
  transform: scale(1.18) translate3d(1.5%, -1.5%, 0);
}

.hero::after,
.page-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 20, 23, 0.88), rgba(18, 20, 23, 0.45) 55%, rgba(18, 20, 23, 0.72));
  content: "";
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 91px);
  padding: 72px 0;
}

.hero-copy {
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
}

.hero-copy .lead {
  max-width: 660px;
  margin-right: auto;
  margin-left: auto;
}

.hero-copy .display-title {
  margin-right: auto;
  margin-left: auto;
}

.hero-copy .button-row {
  justify-content: center;
}

.hero .eyebrow {
  color: var(--white);
}

.page-hero .eyebrow {
  color: var(--white);
}

.proof-strip {
  color: var(--white);
  background: #090e13;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.proof-item {
  min-height: 190px;
  padding: 34px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item span {
  display: block;
  margin-bottom: 56px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.proof-item h2 {
  margin-bottom: 18px;
  font-size: clamp(1.75rem, 3vw, 3rem);
  font-weight: 400;
}

.proof-item p {
  text-wrap: balance;
  color: rgba(255, 255, 255, 0.76);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(28px, 6vw, 74px);
}

.split.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  grid-template-rows: auto auto;
  gap: 14px;
}

.image-stack img:first-child {
  grid-row: span 2;
  height: 520px;
}

.image-stack img {
  width: 100%;
  height: 252px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.framed-img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  box-shadow: var(--shadow);
}

.card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.64;
  transition: transform 400ms ease, opacity 400ms ease;
}

.card:hover img {
  opacity: 0.76;
  transform: scale(1.04);
}

.card-content {
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  padding: 28px;
  background: linear-gradient(0deg, rgba(18, 20, 23, 0.94), rgba(18, 20, 23, 0));
}

.card-content p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.project-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--ink);
}

.project-tile {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 0;
  border: 0;
  color: var(--white);
  background: var(--ink);
  cursor: pointer;
}

.project-tile img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 360ms ease, opacity 360ms ease;
}

.project-tile span {
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  padding: 24px;
  background: linear-gradient(0deg, rgba(18, 20, 23, 0.92), rgba(18, 20, 23, 0));
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  letter-spacing: 0.03em;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 240ms ease, transform 240ms ease;
}

.project-tile:hover img,
.project-tile:focus-visible img {
  opacity: 0.58;
  transform: scale(1.05);
}

.project-tile:hover span,
.project-tile:focus-visible span {
  opacity: 1;
  transform: translateY(0);
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: stretch;
}

.cta-panel {
  padding: clamp(28px, 5vw, 52px);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
}

.map-embed {
  overflow: hidden;
  min-height: 380px;
  border-radius: var(--radius);
  background: var(--line);
  margin-top: 4rem;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}

.contact-team {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.contact-person {
  text-align: left;
}

.contact-person h3 {
  margin-bottom: 4px;
  font-size: 1.6rem;
  font-weight: 400;
}

.contact-person p {
  margin-bottom: 14px;
}

.contact-person a {
  display: block;
  color: var(--steel);
  text-decoration: none;
}

.contact-person a:hover {
  color: var(--accent);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 72px clamp(18px, 5vw, 72px);
  background: rgba(5, 8, 12, 0.94);
}

.lightbox[hidden] {
  display: none;
}

.lightbox figure {
  width: min(100%, 1120px);
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
}

.lightbox figcaption {
  margin-top: 16px;
  color: var(--white);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
}

.lightbox button {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
  background: rgba(18, 20, 23, 0.72);
  font-family: "Bebas Neue", Impact, sans-serif;
  cursor: pointer;
}

.lightbox-close {
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  width: 54px;
  height: 74px;
  font-size: 3rem;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.page-hero {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 470px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}

.page-hero .container {
  position: relative;
  z-index: 1;
  padding: 110px 0 72px;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 46px;
  align-items: start;
}

.service-menu,
.contact-card {
  position: sticky;
  top: 104px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-menu a {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.service-menu a:last-child {
  border-bottom: 0;
}

.service-menu a[aria-current],
.service-menu a:hover {
  color: var(--accent-dark);
}

.capability-section {
  scroll-margin-top: 118px;
  padding-bottom: 70px;
  margin-bottom: 70px;
  border-bottom: 1px solid var(--line);
}

.capability-section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 26px 0;
  list-style: none;
}

.feature-list li {
  padding: 16px 16px 16px 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--steel);
  font-weight: 700;
}

.feature-list li::before {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-left: -24px;
  margin-right: 14px;
  background: var(--accent);
  content: "";
}

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

.gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

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

.team-card {
  overflow: hidden;
  border: 0;
  background: transparent;
}

.team-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.team-card div {
  padding: 16px 0 0;
}

.team-card h3 {
  margin-bottom: 4px;
  font-size: 1.12rem;
}

.team-card p {
  margin: 0;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 32px;
  align-items: start;
}

.contact-card {
  position: static;
}

.contact-card p {
  margin-bottom: 10px;
}

.form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.form .full {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid #c9ced4;
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  min-height: 160px;
  resize: vertical;
}

.site-footer {
  color: var(--white);
  background: var(--ink);
  text-align: center;
}

.footer-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 44px 0 22px;
}

.footer-main img {
  width: 190px;
  margin-bottom: 0;
}

.footer-main a {
  display: inline-flex;
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.76);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.footer-main a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

@keyframes heroLine {
  0% {
    top: -35%;
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  72% {
    opacity: 1;
  }
  100% {
    top: 104%;
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .section::before {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 20px;
    background: var(--ink);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 0;
  }

  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 13px 0;
  }

  .nav-item:not(.is-open) .dropdown-toggle,
  .nav-item:not(.is-open) .dropdown-toggle:hover,
  .nav-item:not(.is-open) .dropdown-toggle:focus,
  .nav-item:not(.is-open) .dropdown-toggle[aria-expanded="true"] {
    color: rgba(255, 255, 255, 0.82);
  }

  .nav-item.is-open .dropdown-toggle {
    color: var(--accent);
  }

  .nav-item:not(.is-open) .dropdown-toggle::after,
  .nav-item:not(.is-open):hover .dropdown-toggle::after,
  .nav-item:not(.is-open):focus-within .dropdown-toggle::after {
    transform: rotate(45deg) translateY(-2px);
  }

  .nav-item.is-open .dropdown-toggle::after {
    transform: rotate(225deg) translate(-2px, -1px);
  }

  .nav-item:hover .dropdown-menu,
  .nav-item:focus-within .dropdown-menu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .nav-item.is-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 240px;
    pointer-events: auto;
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    margin: 0 0 8px;
    padding: 0 0 0 14px;
    max-height: 0;
    overflow: hidden;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: none;
    transition: max-height 260ms ease, opacity 200ms ease, visibility 200ms ease;
  }

  .dropdown-menu-inner {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .dropdown-menu a {
    padding: 10px 0;
  }

  .nav-cta {
    margin-left: 0;
    padding: 13px 0 !important;
    border-color: transparent;
  }

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

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

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

  .project-tile img {
    opacity: 0.62;
  }

  .project-tile span {
    opacity: 1;
    transform: translateY(0);
  }

  .service-menu {
    position: static;
  }
}

@media (max-width: 680px) {
  .brand img {
    width: 150px;
  }

  .section {
    padding: 62px 0;
  }

  .hero,
  .hero-content {
    min-height: calc(100vh - 91px);
  }

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

  .cards,
  .feature-list,
  .gallery,
  .team-grid,
  .proof-grid,
  .contact-team,
  .contact-team.team-grid,
  .form {
    grid-template-columns: 1fr;
  }

  .proof-item {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-stack img,
  .image-stack img:first-child {
    height: 300px;
  }

  .card {
    min-height: 350px;
  }

  .project-strip {
    grid-template-columns: 1fr;
  }

  .project-tile,
  .project-tile img,
  .gallery img {
    height: 210px;
    min-height: 210px;
  }

  .lightbox {
    padding: 72px 16px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 18px;
    width: 48px;
    height: 52px;
    font-size: 2.4rem;
    transform: none;
  }

  .lightbox-prev {
    left: 16px;
  }

  .lightbox-next {
    right: 16px;
  }
}
