:root {
  --bg: #0f151b;
  --bg-soft: #151c23;
  --surface: #18212a;
  --surface-2: #1f2a34;
  --surface-3: #243240;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #edf1f4;
  --muted: #b9c3cb;
  --muted-2: #8fa0ad;
  --accent: #d8a33b;
  --accent-strong: #f0bb54;
  --light-bg: #f1ede5;
  --light-surface: #fcfaf6;
  --light-line: rgba(16, 24, 31, 0.1);
  --light-text: #162029;
  --light-muted: #53606b;
  --shadow: 0 22px 56px rgba(0, 0, 0, 0.28);
  --radius: 22px;
  --radius-sm: 16px;
  --container: 1180px;
  --header-height: 112px;
}

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

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: "Aptos", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(216, 163, 59, 0.1), transparent 24%),
    linear-gradient(180deg, #162028 0%, #1b2630 100%);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.2;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

.site-shell {
  overflow: clip;
}

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

.site-header.is-scrolled {
  background: rgba(19, 29, 37, 0.9);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.topbar {
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar-inner,
.topbar-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.topbar-inner {
  min-height: 38px;
  justify-content: space-between;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.78rem;
  text-shadow: 0 3px 14px rgba(6, 10, 14, 0.82);
}

.topbar a:hover {
  color: var(--accent-strong);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-inline: 0.9rem;
  border-radius: 999px;
  background: rgba(12, 19, 25, 0.22);
  box-shadow: 0 16px 36px rgba(6, 10, 14, 0.32);
  backdrop-filter: blur(4px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  gap: 0.15rem;
}

.brand-name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.1;
  text-shadow: 0 4px 16px rgba(6, 10, 14, 0.84);
}

.brand-tag {
  color: var(--muted-2);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 3px 14px rgba(6, 10, 14, 0.8);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem;
  border-radius: 999px;
  background: rgba(12, 19, 25, 0.18);
  box-shadow: 0 14px 32px rgba(6, 10, 14, 0.28);
}

.site-nav a {
  padding: 0.65rem 0.85rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 999px;
  text-shadow: 0 3px 14px rgba(6, 10, 14, 0.84);
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

[data-nav-toggle] {
  display: none;
  min-width: 52px;
  min-height: 52px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 700;
  text-shadow: 0 3px 14px rgba(6, 10, 14, 0.84);
  box-shadow: 0 12px 26px rgba(6, 10, 14, 0.28);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.8rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

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

.btn-primary {
  color: #121820;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 10px 26px rgba(216, 163, 59, 0.28);
}

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

.btn-tertiary {
  color: var(--light-text);
  background: transparent;
  border-color: rgba(22, 32, 41, 0.16);
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 23, 30, 0.78) 0%, rgba(15, 23, 30, 0.62) 42%, rgba(15, 23, 30, 0.28) 100%),
    var(--hero-image) center center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(15, 21, 27, 0), rgba(15, 21, 27, 1));
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-home {
  min-height: 62svh;
  padding: calc(var(--header-height) + 38px) 0 60px;
}

.hero-page {
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-height) + 46px) 0 56px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 2rem;
  align-items: center;
}

.hero-layout-home {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 1.5rem;
}

.hero-home-brief::before {
  background:
    linear-gradient(90deg, rgba(20, 30, 38, 0.48) 0%, rgba(20, 30, 38, 0.28) 42%, rgba(20, 30, 38, 0.18) 100%),
    var(--hero-image) center center / cover no-repeat;
}

.hero-brief {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 1.5rem;
  align-items: end;
}

.hero-brief-card {
  padding: 2rem;
  border: 1px solid rgba(22, 32, 41, 0.12);
  border-radius: 28px;
  background: rgba(252, 250, 246, 0.96);
  color: var(--light-text);
  box-shadow: 0 24px 58px rgba(16, 24, 31, 0.2);
}

.hero-brief-card .hero-lede {
  color: var(--light-muted);
}

.hero-brief-card .btn-secondary {
  color: var(--light-text);
  border-color: rgba(22, 32, 41, 0.16);
}

.hero-brief-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.35rem;
}

.hero-brief-inline span {
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(22, 32, 41, 0.1);
  border-radius: 999px;
  background: rgba(22, 32, 41, 0.04);
  color: var(--light-text);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(16, 24, 31, 0.12);
}

.hero-brief-visual {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  border-radius: 28px;
  box-shadow: 0 28px 66px rgba(8, 12, 16, 0.34);
}

.hero-brief-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-brief-band {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: grid;
  gap: 0.85rem;
  padding: 1.05rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(20, 29, 36, 0.78);
  box-shadow: 0 20px 44px rgba(6, 10, 14, 0.4);
  backdrop-filter: blur(4px);
}

.hero-brief-band-copy strong {
  display: inline-block;
  margin-bottom: 0.35rem;
  color: var(--accent-strong);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 3px 14px rgba(6, 10, 14, 0.88);
}

.hero-brief-band-copy p {
  margin: 0;
  color: var(--text);
  font-size: 0.94rem;
  text-shadow: 0 3px 14px rgba(6, 10, 14, 0.9);
}

.hero-brief-band-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-brief-band-tags span {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
  text-shadow: 0 3px 12px rgba(6, 10, 14, 0.84);
  box-shadow: 0 10px 22px rgba(6, 10, 14, 0.26);
}

.hero-content {
  max-width: 43rem;
}

.kicker {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
.headline,
.service-card h3,
.sector-card h3,
.process-step h3,
.value-card h3,
.award-card h3,
.career-card h3,
.office-card h3,
.contact-card h3,
.footer-title {
  margin: 0;
  line-height: 1.18;
}

h1 {
  max-width: 12ch;
  font-size: clamp(2.15rem, 4vw, 3.5rem);
  letter-spacing: -0.03em;
}

.hero-content p,
.hero-lede {
  max-width: 40rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.65rem;
}

.hero-meta span,
.hero-badges span {
  display: block;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.9rem;
}

.hero-aside {
  display: grid;
  gap: 1rem;
}

.hero-copy {
  display: grid;
  gap: 1rem;
}

.hero-copy-card {
  position: relative;
  padding: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(23, 34, 43, 0.84), rgba(23, 34, 43, 0.68));
  box-shadow: var(--shadow);
}

.hero-copy-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 22px 0 0 22px;
  background: linear-gradient(180deg, var(--accent-strong), rgba(240, 187, 84, 0.1));
}

.hero-service-points {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 1.3rem 0 0;
  list-style: none;
}

.hero-service-points li {
  position: relative;
  padding-left: 1rem;
  color: var(--muted);
}

.hero-service-points li::before {
  content: "";
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 999px;
  background: var(--accent);
}

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

.hero-proof-card {
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
}

.hero-proof-card strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1.1;
}

.hero-proof-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  display: grid;
  gap: 0.95rem;
}

.hero-visual-main {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.hero-visual-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 20, 26, 0.04), rgba(14, 20, 26, 0.55));
}

.hero-visual-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual-note {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  width: min(320px, calc(100% - 2rem));
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(22, 32, 40, 0.84);
  backdrop-filter: blur(10px);
}

.hero-visual-note strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text);
  font-size: 0.96rem;
}

.hero-visual-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-visual-strip span {
  padding: 0.78rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
}

.hero-frame {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

.hero-frame img,
.feature-image img,
.gallery-image img,
.service-card img,
.award-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-panel,
.quote-panel,
.panel,
.service-card,
.sector-card,
.process-step,
.value-card,
.award-card,
.career-card,
.office-card,
.contact-card,
.contact-form,
.cta-block {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.hero-panel,
.quote-panel,
.panel,
.process-step,
.value-card,
.career-card,
.office-card,
.contact-card,
.contact-form,
.cta-block {
  padding: 1.5rem;
}

.hero-panel strong,
.quote-panel strong,
.cta-block strong {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-panel p,
.quote-panel p,
.card-copy,
.panel p,
.cta-block p,
.office-meta,
.contact-meta,
.subfooter,
.award-body p,
.footer-card p,
.footer-card span {
  color: var(--muted);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0;
  margin: 1.2rem 0 0;
  list-style: none;
  color: var(--muted-2);
  font-size: 0.88rem;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.45rem;
}

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

.section-dark {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
}

.section-slate {
  background: #dde4e8;
  color: var(--light-text);
}

.section-cream {
  background: var(--light-bg);
  color: var(--light-text);
}

.section-cream .kicker,
.section-slate .kicker {
  color: #8b641d;
}

.section-cream .panel,
.section-cream .service-card,
.section-cream .sector-card,
.section-cream .process-step,
.section-cream .value-card,
.section-cream .award-card,
.section-cream .career-card,
.section-cream .office-card,
.section-cream .contact-card,
.section-cream .contact-form,
.section-cream .cta-block,
.section-cream .quote-panel,
.section-cream .hero-panel,
.section-slate .panel,
.section-slate .service-card,
.section-slate .sector-card,
.section-slate .process-step,
.section-slate .value-card,
.section-slate .award-card,
.section-slate .career-card,
.section-slate .office-card,
.section-slate .contact-card,
.section-slate .contact-form,
.section-slate .cta-block,
.section-slate .quote-panel,
.section-slate .hero-panel {
  background: var(--light-surface);
  border-color: var(--light-line);
  box-shadow: 0 16px 42px rgba(40, 49, 56, 0.08);
}

.section-cream p,
.section-cream .card-copy,
.section-cream .lede,
.section-cream .award-body p,
.section-cream .contact-meta,
.section-cream .office-meta,
.section-cream .check-list li,
.section-cream .cta-block p,
.section-cream .quote-panel p,
.section-cream .panel p,
.section-slate p,
.section-slate .card-copy,
.section-slate .lede,
.section-slate .award-body p,
.section-slate .contact-meta,
.section-slate .office-meta,
.section-slate .check-list li,
.section-slate .cta-block p,
.section-slate .quote-panel p,
.section-slate .panel p {
  color: var(--light-muted);
}

.section-cream .btn-secondary,
.section-slate .btn-secondary {
  color: var(--light-text);
  border-color: rgba(22, 32, 41, 0.16);
}

.section-head {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.headline {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  letter-spacing: -0.03em;
}

.headline.long {
  max-width: 20ch;
}

.lede {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.split-layout.reverse > :first-child {
  order: 2;
}

.feature-image,
.gallery-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-image {
  min-height: 420px;
}

.prose p + p {
  margin-top: 0.85rem;
}

.service-card,
.award-card {
  overflow: hidden;
}

.service-card img {
  height: 220px;
}

.service-body,
.award-body {
  padding: 1.3rem 1.35rem 1.45rem;
}

.services-grid,
.values-grid,
.career-grid,
.award-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.services-grid .service-card:nth-child(n + 4) img {
  display: none;
}

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

.sector-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(180deg, rgba(11, 16, 21, 0.16), rgba(11, 16, 21, 0.88)),
    var(--card-image) center center / cover no-repeat;
}

.sector-body {
  padding: 1.4rem;
}

.card-label {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card h3,
.sector-card h3,
.process-step h3,
.value-card h3,
.award-card h3,
.career-card h3,
.office-card h3,
.contact-card h3 {
  font-size: 1.22rem;
}

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

.process-step {
  position: relative;
  padding-top: 4rem;
}

.process-number {
  position: absolute;
  top: 1.3rem;
  left: 1.35rem;
  color: rgba(216, 163, 59, 0.28);
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

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

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

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.6rem;
  left: 0;
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: var(--accent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 1rem;
}

.gallery-column {
  display: grid;
  gap: 1rem;
}

.gallery-image.large {
  min-height: 440px;
}

.gallery-image.medium {
  min-height: 212px;
}

.cta-block h3 {
  margin-top: 0;
  font-size: 1.55rem;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 1.25rem;
  padding: 0;
  margin: 1.1rem 0 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--muted);
}

.service-list li::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--accent);
}

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

.office-meta,
.contact-meta {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.8rem;
}

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

.field {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.field label,
.contact-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.88rem 0.95rem;
}

.section-cream .field input,
.section-cream .field textarea {
  background: #fff;
  border-color: rgba(22, 32, 41, 0.14);
  color: var(--light-text);
}

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

.form-actions {
  margin-top: 0.5rem;
}

.cut {
  clip-path: none;
}

.site-footer {
  padding: 78px 0 24px;
  background: #0b1117;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 1.5rem;
}

.footer-card {
  display: grid;
  align-content: start;
  gap: 0.7rem;
}

.footer-title {
  font-size: 1.05rem;
}

.footer-links {
  display: grid;
  gap: 0.5rem;
}

.footer-links a,
.footer-card a {
  color: var(--muted);
}

.footer-links a:hover,
.footer-card a:hover {
  color: var(--accent-strong);
}

.subfooter {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  margin-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.9rem;
}

.has-motion .reveal {
  transform: translateY(10px);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.has-motion .reveal.is-visible {
  transform: translateY(0);
}

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

  .has-motion .reveal {
    transform: none;
    transition: none;
  }
}

@media (max-width: 1080px) {
  .hero-layout,
  .split-layout,
  .gallery-grid,
  .office-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .values-grid,
  .career-grid,
  .award-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-content {
    max-width: none;
  }

  h1 {
    max-width: 14ch;
  }

  .hero-layout-home {
    grid-template-columns: 1fr;
  }

  .hero-brief {
    grid-template-columns: 1fr;
  }

  .hero-visual-main {
    min-height: 360px;
  }

  .hero-brief-visual {
    min-height: 380px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 94px;
  }

  .topbar {
    display: none;
  }

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

  [data-nav-toggle] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.65rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(12, 18, 24, 0.98);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    border-radius: 14px;
  }

  .hero-home {
    min-height: auto;
    padding-top: calc(var(--header-height) + 42px);
  }

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

  .hero-meta,
  .hero-proof,
  .services-grid,
  .values-grid,
  .career-grid,
  .award-grid,
  .process-grid,
  .sector-grid,
  .service-list,
  .field-row,
  .footer-grid,
  .subfooter {
    grid-template-columns: 1fr;
  }

  .subfooter {
    display: grid;
  }

  .feature-image {
    min-height: 300px;
  }

  .hero-copy-card {
    padding: 1.35rem;
  }

  .hero-brief-card {
    padding: 1.4rem;
  }

  .hero-visual-main {
    min-height: 280px;
  }

  .hero-brief-visual {
    min-height: 300px;
  }

  .hero-visual-note {
    position: static;
    width: auto;
    margin: 1rem;
  }

  .hero-brief-band {
    position: static;
    margin: 1rem;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 1.25rem));
  }

  h1 {
    font-size: 2rem;
  }

  .headline {
    font-size: 1.65rem;
  }

  .hero-content p,
  .hero-lede,
  .lede {
    font-size: 0.97rem;
  }

  .section {
    padding: 68px 0;
  }

  .hero-panel,
  .quote-panel,
  .panel,
  .service-body,
  .award-body,
  .process-step,
  .value-card,
  .career-card,
  .office-card,
  .contact-card,
  .contact-form,
  .cta-block {
    padding: 1.2rem;
  }
}
