:root {
  color-scheme: dark;
  --bg: #061328;
  --bg-soft: #0a1b38;
  --panel: #0f2852;
  --panel-strong: #17366f;
  --line: rgba(255, 255, 255, 0.16);
  --line-strong: rgba(255, 255, 255, 0.32);
  --text: #ffffff;
  --muted: #c8d6ea;
  --muted-strong: #edf4ff;
  --white-accent: #ffffff;
  --white-soft: #f5f9ff;
  --cyan: #74b9ff;
  --coral: #9dccff;
  --green: #8fd3ff;
  --shadow: 0 24px 70px rgba(1, 8, 23, 0.48);
  --radius: 8px;
  --max: 1180px;
  --header-h: 70px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(116, 185, 255, 0.16), transparent 360px),
    linear-gradient(180deg, #071a38 0%, var(--bg) 42%, #030b17 100%);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--white-accent);
  color: #111;
  padding: 0.65rem 1rem;
  border-radius: var(--radius);
  font-weight: 800;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--header-h);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(6, 19, 40, 0.9);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  width: min(var(--max), calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
  min-width: 0;
  max-width: 220px;
  padding: 0.22rem 0.34rem;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.brand__logo {
  display: block;
  width: clamp(146px, 16vw, 188px);
  height: auto;
  max-height: 54px;
  object-fit: contain;
}


.nav {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
  gap: 0.1rem;
}

.nav a {
  position: relative;
  color: var(--muted-strong);
  padding: 0.7rem 0.5rem;
  font-size: 0.9rem;
  font-weight: 750;
  transition: color 180ms ease, background 180ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav a[aria-current="page"] {
  color: #fff;
}

.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0.62rem;
  right: 0.62rem;
  bottom: 0.38rem;
  height: 2px;
  background: var(--white-accent);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  color: #061328;
  background: #ffffff;
  font-weight: 850;
  box-shadow: 0 12px 28px rgba(255, 255, 255, 0.12);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle__bar {
  position: relative;
}

.nav-toggle__bar::before,
.nav-toggle__bar::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle__bar::before {
  transform: translateY(-7px);
}

.nav-toggle__bar::after {
  transform: translateY(7px);
}

body.nav-open .nav-toggle__bar {
  transform: rotate(45deg);
}

body.nav-open .nav-toggle__bar::before {
  opacity: 0;
}

body.nav-open .nav-toggle__bar::after {
  transform: rotate(90deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 850;
  line-height: 1.1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

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

.btn--primary {
  background: #ffffff;
  color: #061328;
  box-shadow: 0 16px 32px rgba(255, 255, 255, 0.14);
}

.btn--secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.btn--ghost {
  min-height: 42px;
  padding: 0.65rem 0.85rem;
  border-color: var(--line);
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.03);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: var(--white-accent);
  color: #fff;
}

.hero {
  position: relative;
  min-height: calc(82vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #061328;
  background-position: center;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 19, 40, 0.96) 0%, rgba(11, 36, 74, 0.82) 50%, rgba(11, 36, 74, 0.42) 100%),
    radial-gradient(circle at 82% 18%, rgba(116, 185, 255, 0.26), transparent 340px),
    linear-gradient(0deg, rgba(3, 11, 23, 0.94) 0%, rgba(6, 19, 40, 0.1) 52%, rgba(6, 19, 40, 0.58) 100%);
}

.hero--home {
  background-image: url("https://images.unsplash.com/photo-1501281668745-f7f57925c3b4?auto=format&fit=crop&w=2200&q=82");
}

.hero--services,
.hero--work,
.hero--venues,
.hero--exhibitions,
.hero--about,
.hero--sustainability,
.hero--news,
.hero--contact {
  background-image:
    radial-gradient(circle at 78% 18%, rgba(116, 185, 255, 0.28), transparent 310px),
    linear-gradient(135deg, #061328 0%, #0c2855 48%, #17366f 100%);
}

.hero__inner,
.section__inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero__content {
  max-width: 790px;
  padding: 6rem 0;
}

.page-hero {
  min-height: 430px;
}

.page-hero .hero__content {
  max-width: 840px;
  padding: 5rem 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--white-soft);
  font-size: 0.79rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  background: var(--white-accent);
}

h1 {
  max-width: 980px;
  color: #fff;
  font-size: clamp(2.55rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
  margin-bottom: 1.4rem;
}

.page-hero h1 {
  font-size: clamp(2.35rem, 5vw, 4.8rem);
}

.hero__lead {
  max-width: 760px;
  color: #e8edf3;
  font-size: clamp(1.06rem, 2vw, 1.33rem);
  line-height: 1.55;
  margin-bottom: 2rem;
}

.hero__actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.section-actions--offset {
  margin-top: 1.5rem;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 38px;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(8, 9, 11, 0.5);
  color: var(--muted-strong);
  font-size: 0.88rem;
  font-weight: 700;
}

.proof-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(116, 211, 156, 0.85);
}

.section {
  padding: 5.8rem 0;
}

.section--tight {
  padding: 3.2rem 0;
}

.section--surface {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    var(--bg-soft);
}

.section--line {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section__header {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.3rem;
}

.section__header--center {
  display: block;
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section__header--center .eyebrow {
  justify-content: center;
}

.section__header--center .eyebrow::after {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  background: var(--white-accent);
}

.section h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.04;
  margin-bottom: 0.7rem;
  letter-spacing: 0;
}

.section h3 {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.25;
  margin-bottom: 0.55rem;
  letter-spacing: 0;
}

.section-copy {
  color: var(--muted);
  font-size: 1.02rem;
}

.trust-band {
  position: relative;
  z-index: 5;
  margin-top: -1px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(116, 185, 255, 0.12), rgba(255, 255, 255, 0.06)),
    #0a1b38;
}

.trust-band__inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.3rem;
  align-items: center;
  padding: 1.15rem 0;
}

.warrant-logo {
  display: block;
  width: clamp(118px, 17vw, 190px);
  height: auto;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.warrant-mark {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  color: #17366f;
  background: #ffffff;
  font-weight: 900;
  line-height: 1;
}

.trust-band strong {
  display: block;
  color: #fff;
  font-size: clamp(1.02rem, 2vw, 1.35rem);
  line-height: 1.25;
}

.trust-band span {
  color: var(--muted);
  font-size: 0.95rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    var(--panel);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.card:hover,
.card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.46);
}

.service-card,
.why-card,
.process-card,
.value-card,
.contact-card {
  padding: 1.35rem;
}

.service-card__number,
.process-card__step,
.metric__value {
  color: var(--white-soft);
  font-weight: 900;
}

.service-card p,
.why-card p,
.process-card p,
.value-card p,
.contact-card p {
  margin-bottom: 0;
}

.service-card a,
.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #fff;
  margin-top: 1rem;
  font-weight: 850;
}

.service-card a::after,
.feature-link::after {
  content: ">";
  color: var(--white-accent);
}

.media-card {
  min-height: 100%;
}

.media-card__image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #1a1d23;
}

.media-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.media-card:hover .media-card__image img {
  transform: scale(1.045);
}

.media-card__image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 55%;
  background: linear-gradient(0deg, rgba(8, 9, 11, 0.72), transparent);
}

.media-card__body {
  padding: 1.25rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li,
.tag {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
  color: var(--muted-strong);
  font-size: 0.78rem;
  font-weight: 750;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: 2rem;
  align-items: center;
}

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

.split__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

.split__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(8, 9, 11, 0.36));
  pointer-events: none;
}

.brand-panel {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.18), transparent 220px),
    linear-gradient(135deg, #061328 0%, #0d2a58 55%, #17366f 100%);
  box-shadow: var(--shadow);
}

.brand-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(120deg, rgba(0, 0, 0, 0.62), transparent 78%);
}

.brand-panel::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -48px;
  bottom: -58px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.brand-panel__logo {
  position: relative;
  z-index: 1;
  width: min(250px, 68%);
  height: auto;
  max-height: 140px;
  object-fit: contain;
  padding: 0.8rem;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.site-footer .brand {
  max-width: 240px;
}

.site-footer .brand__logo {
  width: 200px;
  max-height: 60px;
}


.check-list {
  display: grid;
  gap: 0.72rem;
  margin: 1.3rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.55rem;
  color: var(--muted-strong);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white-accent);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.38);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.metric {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.metric__value {
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.metric span:last-child {
  color: var(--muted);
  font-size: 0.92rem;
}

.process-card {
  min-height: 210px;
}

.process-card__step {
  display: inline-block;
  margin-bottom: 1.2rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(116, 185, 255, 0.12)),
    var(--panel);
}

.testimonial blockquote {
  margin: 0;
  color: #fff;
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.35;
  font-weight: 760;
}

.testimonial figcaption {
  margin-top: 1rem;
  color: var(--muted);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.2), transparent 300px),
    linear-gradient(135deg, #061328 0%, #0e2c5c 52%, #17366f 100%);
  box-shadow: var(--shadow);
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 19, 40, 0.78), rgba(6, 19, 40, 0.38));
}

.cta-panel > * {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.cta-panel h2 {
  margin-bottom: 0.7rem;
}

.cta-panel p {
  font-size: 1.05rem;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.55fr);
  gap: 2rem;
  align-items: start;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}

.service-detail:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-detail:last-child {
  padding-bottom: 0;
}

.service-detail__aside {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.04);
}

.service-detail__aside h3 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white-soft);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0 0 1.5rem;
}

.filter-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
  padding: 0.55rem 0.8rem;
  cursor: pointer;
  font-weight: 800;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.filter-btn:hover,
.filter-btn:focus-visible,
.filter-btn.is-active {
  border-color: var(--white-accent);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.case-card[hidden] {
  display: none;
}

.case-meta {
  display: block;
  color: var(--white-soft);
  margin-bottom: 0.5rem;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.case-facts {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.case-facts p {
  margin-bottom: 0;
}

.case-facts strong {
  color: #fff;
}

.timeline {
  position: relative;
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 1rem;
}

.timeline-item__dot {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white-soft);
  font-weight: 900;
  background: #111318;
}

.team-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.team-card {
  padding: 1.35rem;
}

.team-card__role {
  color: var(--white-soft);
  font-weight: 800;
  font-size: 0.9rem;
}

.news-card__date {
  color: var(--white-soft);
  font-weight: 800;
  font-size: 0.9rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  gap: 2rem;
  align-items: start;
}

.form {
  display: grid;
  gap: 1rem;
}

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

.field {
  display: grid;
  gap: 0.4rem;
}

.field label {
  color: #fff;
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  padding: 0.85rem 0.9rem;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}

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

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--white-accent);
  background: rgba(255, 255, 255, 0.08);
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status {
  min-height: 1.5rem;
  color: var(--green);
  font-weight: 800;
}

.map {
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #15171b;
}

.map iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
  filter: grayscale(0.85) invert(0.88) contrast(0.9);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #030b17;
}

.footer__inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 3rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) repeat(3, minmax(150px, 0.45fr));
  gap: 2rem;
}

.footer__inner--compact {
  padding: 2rem 0 1.6rem;
}

.footer__compact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer__links--inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem 1rem;
}

.footer__title {
  color: #fff;
  margin-bottom: 0.7rem;
  font-weight: 850;
}

.footer__links {
  display: grid;
  gap: 0.45rem;
}

.footer__links a,
.footer__links span {
  color: var(--muted);
}

.footer__links a:hover,
.footer__links a:focus-visible {
  color: #fff;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.3rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

@media (max-width: 1080px) {
  .header-cta {
    display: none;
  }

  .nav a {
    padding-inline: 0.48rem;
  }

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

@media (max-width: 980px) {
  :root {
    --header-h: 66px;
  }

  .site-header__inner,
  .hero__inner,
  .section__inner,
  .trust-band__inner,
  .footer__inner {
    width: min(var(--max), calc(100% - 28px));
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header-h);
    display: grid;
    align-content: start;
    gap: 0;
    height: calc(100vh - var(--header-h));
    padding: 1rem 14px 2rem;
    background: rgba(8, 9, 11, 0.98);
    border-top: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform 220ms ease;
    overflow-y: auto;
  }

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

  .nav a {
    min-height: 50px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 1rem;
  }

  .nav a[aria-current="page"]::after {
    left: 0;
    right: auto;
    top: 50%;
    bottom: auto;
    width: 3px;
    height: 26px;
    transform: translateY(-50%);
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(6, 19, 40, 0.95), rgba(6, 19, 40, 0.64)),
      linear-gradient(0deg, rgba(3, 11, 23, 0.92), rgba(6, 19, 40, 0.12));
  }

  .hero__content,
  .page-hero .hero__content {
    padding: 4.8rem 0;
  }

  .section {
    padding: 4.4rem 0;
  }

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

  .split--reverse .split__media {
    order: -1;
  }

  .grid--3,
  .team-row,
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer__links--inline {
    justify-content: flex-start;
  }

  .trust-band__inner {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .trust-band .btn {
    grid-column: 1 / -1;
    width: 100%;
  }

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

@media (max-width: 620px) {
  .brand {
    max-width: 162px;
  }

  .brand__logo {
    width: min(142px, 48vw);
    max-height: 44px;
  }

  .site-footer .brand {
    max-width: 180px;
  }

  .site-footer .brand__logo {
    width: 174px;
    max-height: 54px;
  }

  .brand-panel__logo {
    width: min(210px, 72%);
  }

  .hero__content,
  .page-hero .hero__content {
    padding: 4rem 0;
  }

  h1 {
    font-size: clamp(2.35rem, 15vw, 3.45rem);
  }

  .hero__actions .btn,
  .section-actions .btn {
    width: 100%;
  }

  .grid--2,
  .grid--3,
  .grid--4,
  .team-row,
  .form__row,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__links--inline {
    display: grid;
    gap: 0.45rem;
  }

  .section__header--center {
    text-align: left;
  }

  .section__header--center .eyebrow {
    justify-content: flex-start;
  }

  .section__header--center .eyebrow::after {
    display: none;
  }

  .trust-band__inner {
    grid-template-columns: 1fr;
  }

  .warrant-logo {
    width: min(168px, 54vw);
  }

  .warrant-mark {
    width: 54px;
    height: 54px;
  }

  .testimonial {
    padding: 1.35rem;
  }

  .footer__bottom {
    flex-direction: column;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
