:root {
  --red: #e1251b;
  --red-dark: #b91811;
  --ink: #111111;
  --ink-soft: #202020;
  --paper: #f2f0eb;
  --paper-warm: #e9e5dc;
  --white: #ffffff;
  --grey: #797979;
  --line: rgba(17, 17, 17, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow: 0 32px 90px rgba(10, 10, 10, 0.15);
  --shell: min(1440px, calc(100vw - 72px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

::selection {
  color: var(--white);
  background: var(--red);
}

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

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

button {
  cursor: pointer;
}

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

address {
  font-style: normal;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--red);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.icon {
  width: 1.1em;
  height: 1.1em;
  flex: 0 0 auto;
}

.contact-strip {
  position: relative;
  z-index: 52;
  color: var(--white);
  background: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
}

.contact-strip p {
  margin: 0;
}

.contact-strip__inner > div {
  display: flex;
  gap: 24px;
}

.contact-strip a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  width: 100%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  transition: box-shadow 240ms ease, background 240ms ease;
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 35px rgba(10, 10, 10, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  min-height: 88px;
  gap: 34px;
}

.site-logo {
  display: inline-flex;
  flex-shrink: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 242px;
  min-width: 242px;
  color: var(--ink);
}

.brand__logo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 926.22 / 145.492;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 34px);
  margin-left: auto;
}

.desktop-nav > a,
.nav-dropdown > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 33px 0 31px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.desktop-nav > a::after,
.nav-dropdown > a::after {
  position: absolute;
  right: 0;
  bottom: 23px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms var(--ease);
}

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

.nav-dropdown > a .icon {
  width: 13px;
}

.nav-dropdown__panel {
  position: absolute;
  z-index: 51;
  top: calc(100% - 4px);
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 0.8fr 2fr;
  gap: 70px;
  width: var(--shell);
  max-height: calc(100vh - 140px);
  margin: auto;
  padding: 48px;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
  opacity: 0;
  overflow: auto;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 220ms ease, transform 300ms var(--ease);
}

.nav-dropdown:hover .nav-dropdown__panel,
.nav-dropdown:focus-within .nav-dropdown__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-right: 1px solid var(--line-light);
}

.nav-dropdown__intro > span {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-dropdown__intro strong {
  max-width: 300px;
  margin-top: 22px;
  font-size: clamp(30px, 3vw, 50px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.nav-dropdown__intro a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  font-size: 13px;
  font-weight: 700;
}

.nav-dropdown__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.nav-dropdown__links a {
  display: flex;
  align-items: center;
  min-height: 68px;
  gap: 14px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line-light);
  transition: color 180ms ease, background 180ms ease;
}

.nav-dropdown__links a:hover {
  color: var(--white);
  background: var(--red);
}

.nav-dropdown__links span {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
}

.nav-dropdown__links a:hover span {
  color: var(--white);
}

.header-cta {
  flex-shrink: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  gap: 12px;
  padding: 0 25px;
  color: var(--white);
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.button:hover {
  color: var(--white);
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
}

.button--small {
  min-height: 46px;
  padding-inline: 19px;
  font-size: 12px;
}

.button--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

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

.button--dark:hover {
  background: var(--red);
  border-color: var(--red);
}

.button--light {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.button--light:hover {
  color: var(--white);
  background: transparent;
  border-color: var(--white);
}

.button--outline {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
}

.button--outline:hover {
  background: var(--ink);
  border-color: var(--ink);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 800;
}

.text-link .icon,
.button .icon,
.service-card__content .icon,
.editorial-card .icon,
.footer-column .icon {
  transition: transform 240ms var(--ease);
}

.text-link:hover .icon,
.button:hover .icon,
.service-card a:hover .service-card__content .icon,
.editorial-card:hover .icon,
.footer-column a:hover .icon {
  transform: translateX(5px);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--line);
}

.mobile-menu {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  width: 100%;
  height: 100svh;
  padding: 28px;
  color: var(--white);
  background: var(--ink);
  overflow: auto;
}

.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  color: #9b9b9b;
  border-bottom: 1px solid var(--line-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mobile-menu__head button {
  display: grid;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--line-light);
  place-items: center;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu nav > a,
.mobile-menu summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-light);
  font-size: clamp(26px, 7vw, 42px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu details[open] summary .icon {
  transform: rotate(180deg);
}

.mobile-menu details div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-light);
}

.mobile-menu details div a {
  display: flex;
  flex-direction: column;
  min-height: 84px;
  padding: 16px;
  background: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.mobile-menu details div span {
  color: var(--red);
  font-size: 10px;
}

.mobile-menu__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 36px;
}

.mobile-menu__contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #bcbcbc;
  font-size: 13px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  content: "";
  background: currentColor;
}

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

.section-pad {
  padding-block: clamp(90px, 10vw, 160px);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr;
  gap: 80px;
  align-items: end;
  margin-bottom: clamp(52px, 7vw, 94px);
}

.section-heading h2,
.heritage__copy h2,
.service-story h2,
.about-intro h2,
.document-header h1,
.empty-state h1,
.empty-state h2,
.contact-details h2 {
  margin: 0;
  font-size: clamp(48px, 6.2vw, 92px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.section-heading > p,
.section-heading > div:last-child > p {
  max-width: 450px;
  margin: 0;
  color: #5f5f5f;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
}

.section-heading > div:last-child .text-link {
  margin-top: 28px;
}

.home-hero {
  position: relative;
  min-height: calc(100svh - 122px);
  color: var(--white);
  background: var(--ink) var(--hero-image) center / cover no-repeat;
  isolation: isolate;
  overflow: hidden;
}

.home-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(6, 6, 6, 0.98) 0%, rgba(6, 6, 6, 0.82) 48%, rgba(6, 6, 6, 0.24) 100%),
    linear-gradient(0deg, rgba(6, 6, 6, 0.55), transparent 60%);
}

.home-hero::after {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 12vw;
  width: 1px;
  height: 100%;
  content: "";
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 15vw 0 0 rgba(255, 255, 255, 0.08), -15vw 0 0 rgba(255, 255, 255, 0.08);
}

.home-hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.09;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.48'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.home-hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  min-height: calc(100svh - 122px);
  align-items: center;
  gap: 50px;
  padding-block: 80px 100px;
}

.home-hero__copy {
  position: relative;
  z-index: 2;
  max-width: 1120px;
}

.home-hero h1 {
  margin: 0;
  font-size: clamp(74px, 10.2vw, 158px);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.home-hero h1 span {
  color: var(--red);
}

.home-hero__copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 44px 0 34px;
  color: #c8c8c8;
  font-size: clamp(17px, 1.45vw, 22px);
}

.home-hero__meta {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding-left: 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.home-hero__meta span {
  color: #b8b8b8;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-hero__meta strong {
  color: var(--red);
  font-size: 46px;
  line-height: 1;
  writing-mode: vertical-rl;
}

.home-hero__meta span:last-child {
  margin-top: auto;
  writing-mode: vertical-rl;
}

.scroll-cue {
  position: absolute;
  right: 36px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #b8b8b8;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: right bottom;
}

.scroll-cue i {
  width: 44px;
  height: 1px;
  background: var(--red);
}

.competencies {
  padding-block: clamp(90px, 10vw, 150px);
  background: var(--white);
}

.competency-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.competency-card {
  position: relative;
  min-height: 440px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.competency-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
  opacity: 0.18;
  transform: scale(1.05);
  transition: filter 500ms ease, opacity 500ms ease, transform 700ms var(--ease);
}

.competency-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(17, 17, 17, 0.85), transparent 68%);
  opacity: 0;
  transition: opacity 400ms ease;
}

.competency-card > div {
  position: absolute;
  z-index: 2;
  inset: auto 24px 26px;
}

.competency-card span {
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
}

.competency-card h3 {
  margin: 8px 0 0;
  font-size: clamp(20px, 2vw, 31px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.competency-card:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1);
}

.competency-card:hover::after {
  opacity: 1;
}

.competency-card:hover h3 {
  color: var(--white);
}

.services-preview,
.offers-intro,
.project-gallery {
  background: var(--paper);
}

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

.service-card {
  grid-column: span 4;
  min-height: 500px;
  background: var(--ink);
  overflow: hidden;
}

.service-card--wide {
  grid-column: span 8;
}

.service-card a {
  position: relative;
  display: block;
  height: 100%;
}

.service-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease), filter 500ms ease;
}

.service-card__legacy-icon {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 20px;
  width: 92px;
  height: 92px;
  padding: 12px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.88);
  opacity: 0.86;
  filter: grayscale(1);
  transition: opacity 250ms ease, transform 500ms var(--ease);
}

.service-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 7, 7, 0.9), rgba(7, 7, 7, 0.03) 68%);
}

.service-card__number {
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  width: 43px;
  height: 43px;
  color: var(--white);
  background: var(--red);
  font-size: 11px;
  font-weight: 900;
  place-items: center;
}

.service-card__content {
  position: absolute;
  right: 25px;
  bottom: 25px;
  left: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
}

.service-card__content strong {
  max-width: 100%;
  font-size: clamp(27px, 3vw, 48px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.service-card__content > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.service-card a:hover .service-card__image {
  transform: scale(1.055);
}

.service-card a:hover .service-card__legacy-icon {
  opacity: 1;
  transform: rotate(3deg) scale(1.04);
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 58px;
}

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

.heritage__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(50px, 9vw, 140px);
  align-items: center;
}

.heritage__visual {
  position: relative;
  min-height: 680px;
  background: #222;
  overflow: hidden;
}

.heritage__visual::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 7px;
  height: 38%;
  content: "";
  background: var(--red);
}

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

.heritage__visual > span {
  position: absolute;
  right: -4px;
  bottom: 0;
  padding: 14px 22px;
  color: var(--ink);
  background: var(--white);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.heritage__copy h2 {
  color: var(--white);
}

.heritage__copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 38px 0 30px;
  color: #b8b8b8;
  font-size: clamp(17px, 1.5vw, 21px);
}

.partner-logos {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-top: 60px;
  padding-top: 34px;
  border-top: 1px solid var(--line-light);
}

.partner-logos img {
  width: auto;
  max-width: 159px;
  max-height: 78px;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.partner-logos img:last-child {
  box-sizing: content-box;
  padding: 12px 14px;
  background: var(--white);
}

.quick-links {
  background: var(--white);
}

.quick-links__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quick-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 600px;
  padding: clamp(30px, 5vw, 70px);
  overflow: hidden;
}

.quick-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease);
}

.quick-card--download::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 48%, rgba(255, 255, 255, 0.05) 100%);
}

.quick-card > *:not(img) {
  position: relative;
  z-index: 2;
}

.quick-card > strong {
  margin-top: auto;
  font-size: clamp(38px, 5vw, 74px);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.quick-card > span:last-child {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 9px;
  margin-top: 32px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 800;
}

.quick-card--contact {
  color: var(--white);
  background: var(--red);
}

.quick-card--contact::after {
  position: absolute;
  top: 55px;
  right: 55px;
  width: 120px;
  height: 120px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  box-shadow: 0 0 0 35px rgba(255, 255, 255, 0.05), 0 0 0 70px rgba(255, 255, 255, 0.03);
}

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

.page-hero {
  position: relative;
  min-height: clamp(620px, 72svh, 880px);
  color: var(--white);
  background: var(--ink) var(--hero-image) center / cover no-repeat;
  isolation: isolate;
  overflow: hidden;
}

.page-hero__scrim {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 7, 7, 0.95), rgba(7, 7, 7, 0.66) 55%, rgba(7, 7, 7, 0.14));
}

.page-hero__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: inherit;
  gap: 40px;
  padding-block: 100px 76px;
}

.page-hero__copy {
  width: 100%;
  min-width: 0;
  max-width: 1040px;
}

.page-hero h1 {
  margin: 0;
  max-width: 1120px;
  font-size: clamp(66px, 9vw, 142px);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.075em;
  hyphens: manual;
  overflow-wrap: normal;
}

.accent-dot {
  color: var(--red);
}

.page-hero__copy > p:not(.eyebrow) {
  max-width: 760px;
  margin: 42px 0 0;
  color: #d0d0d0;
  font-size: clamp(17px, 1.5vw, 22px);
}

.page-hero__index {
  flex-shrink: 0;
  padding-left: 20px;
  color: #a8a8a8;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
}

.extra-offers {
  color: var(--white);
  background: var(--ink);
}

.extra-offers__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 12px;
}

.editorial-card {
  position: relative;
  height: clamp(560px, 42vw, 700px);
  overflow: hidden;
  background: #090909;
}

.editorial-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transition: transform 900ms var(--ease);
}

.editorial-card--news img {
  top: 54px;
  right: 0;
  bottom: auto;
  left: 0;
  width: min(68%, 320px);
  height: auto;
  margin-inline: auto;
  object-fit: contain;
  object-position: center;
}

.editorial-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 7, 7, 0.9), rgba(7, 7, 7, 0.06) 70%);
}

.editorial-card > div {
  position: absolute;
  right: clamp(28px, 4vw, 58px);
  bottom: clamp(28px, 4vw, 58px);
  left: clamp(28px, 4vw, 58px);
}

.editorial-card h2 {
  margin: 0 0 26px;
  font-size: clamp(42px, 5vw, 78px);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.editorial-card > div > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
}

.editorial-card:hover img {
  transform: scale(1.05);
}

.service-story {
  background: var(--white);
}

.service-story__grid,
.about-intro__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(60px, 10vw, 150px);
}

.service-story h2,
.about-intro h2 {
  position: sticky;
  top: 170px;
}

.service-lead {
  margin: 0;
  font-size: clamp(27px, 3.1vw, 48px);
  font-weight: 650;
  line-height: 1.15;
  letter-spacing: -0.045em;
}

.process-list {
  margin: 58px 0;
  border-top: 1px solid var(--line);
}

.process-list > div {
  display: grid;
  grid-template-columns: 80px 1fr;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.process-list span {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
}

.process-list strong {
  font-size: 18px;
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 250px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  padding: 0;
  background: #d9d6cf;
  border: 0;
  overflow: hidden;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease), filter 400ms ease;
}

.gallery-item > span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--red);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 250ms ease, transform 300ms var(--ease);
  place-items: center;
}

.gallery-item:hover img {
  filter: brightness(0.82);
  transform: scale(1.045);
}

.gallery-item:hover > span {
  opacity: 1;
  transform: translateY(0);
}

.cta-band {
  color: var(--white);
  background: var(--red);
}

.cta-band .shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  min-height: 520px;
  padding-block: clamp(80px, 10vw, 140px);
  overflow: hidden;
}

.cta-band .eyebrow {
  grid-column: 1 / -1;
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(70px, 10vw, 150px);
  line-height: 0.78;
  letter-spacing: -0.075em;
}

.cta-band .button {
  position: relative;
  z-index: 2;
}

.cta-band .shell::after {
  position: absolute;
  top: -80px;
  right: 15%;
  width: 360px;
  height: 360px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255, 255, 255, 0.035), 0 0 0 180px rgba(255, 255, 255, 0.025);
}

.about-intro {
  background: var(--white);
}

.about-intro__grid > div:last-child > p:not(.service-lead) {
  max-width: 690px;
  margin: 32px 0 0;
  color: #666;
  font-size: 18px;
}

.fact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--line);
}

.fact-row > div {
  min-height: 150px;
  padding: 25px 20px 20px 0;
  border-right: 1px solid var(--line);
}

.fact-row strong {
  display: block;
  color: var(--red);
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1;
}

.fact-row span {
  display: block;
  max-width: 140px;
  margin-top: 13px;
  color: #626262;
  font-size: 12px;
}

.team-section {
  background: var(--paper);
}

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

.team-section--alternate .section-heading h2 {
  color: var(--white);
}

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

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

.person-card > div {
  position: relative;
  aspect-ratio: 0.82;
  margin-bottom: 20px;
  background: #d6d2c9;
  overflow: hidden;
}

.person-card > div::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(7, 7, 7, 0.25), transparent 35%);
}

.person-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 700ms var(--ease);
}

.person-card:hover img {
  transform: scale(1.035);
}

.person-card > span {
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.person-card h3 {
  margin: 7px 0 0;
  font-size: clamp(24px, 2.6vw, 39px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.document-header {
  padding-block: clamp(90px, 9vw, 140px);
  background: var(--white);
}

.document-header .back-link {
  display: inline-block;
  margin-bottom: 80px;
  color: #676767;
  font-size: 13px;
}

.document-header h1 {
  max-width: 1100px;
}

.document-header > .shell > p:not(.eyebrow) {
  max-width: 650px;
  margin: 36px 0;
  color: #606060;
  font-size: 19px;
}

.document-viewer {
  background: #d8d4cc;
}

.document-stack {
  display: grid;
  gap: 36px;
  max-width: 1040px;
}

.document-page {
  margin: 0;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(17, 17, 17, 0.16);
}

.document-page img {
  width: 100%;
}

.document-page figcaption {
  padding: 13px 18px;
  color: #6a6a6a;
  border-top: 1px solid var(--line);
  font-size: 11px;
  text-align: center;
}

.document-note {
  padding: 30px;
  color: #c4c4c4;
  background: var(--ink);
  text-align: center;
}

.document-note p {
  margin: 0;
}

.guidelines {
  background: var(--white);
}

.guideline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.guideline-grid article {
  min-height: 280px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.guideline-grid article > span {
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
}

.guideline-grid h3 {
  margin: 36px 0 14px;
  font-size: 23px;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.guideline-grid p {
  margin: 0;
  color: #626262;
  font-size: 14px;
}

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

.download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.download-card {
  position: relative;
  min-height: 640px;
  padding: clamp(28px, 4vw, 60px);
  color: var(--ink);
  background: var(--paper-warm);
  overflow: hidden;
}

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

.download-card > span {
  position: absolute;
  top: 35px;
  right: 35px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
}

.download-card > div {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.download-card > div > .icon {
  width: 64px;
  height: 64px;
  margin-bottom: auto;
  color: var(--red);
}

.download-card h2 {
  margin: 0;
  font-size: clamp(39px, 5vw, 72px);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.download-card p:not(.eyebrow) {
  max-width: 480px;
  margin: 25px 0 30px;
  color: #686868;
}

.download-card--dark p:not(.eyebrow) {
  color: #b6b6b6;
}

.download-card strong {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 9px;
  font-size: 12px;
  border-bottom: 1px solid currentColor;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(60px, 9vw, 140px);
}

.contact-details h2 {
  margin-bottom: 58px;
}

.contact-detail-list {
  border-top: 1px solid var(--line);
}

.contact-detail-list > a {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 20px;
  align-items: center;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.contact-detail-list > a > .icon {
  width: 27px;
  height: 27px;
  color: var(--red);
}

.contact-detail-list span {
  display: flex;
  flex-direction: column;
}

.contact-detail-list small {
  margin-bottom: 3px;
  color: #757575;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-detail-list strong {
  font-size: 18px;
  line-height: 1.35;
}

.opening-hours {
  margin-top: 62px;
}

.opening-hours > div {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.opening-hours > p:last-child {
  color: #737373;
  font-size: 13px;
}

.contact-form {
  padding: clamp(28px, 5vw, 68px);
  color: var(--white);
  background: var(--ink);
}

.form-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 56px;
  padding-bottom: 18px;
  color: #a6a6a6;
  border-bottom: 1px solid var(--line-light);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.form-head strong {
  color: var(--red);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.field {
  position: relative;
  margin-bottom: 30px;
}

.field label {
  display: block;
  margin-bottom: 9px;
  color: #b1b1b1;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  padding: 13px 0 15px;
  color: var(--white);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0;
  outline: 0;
  resize: vertical;
  transition: border-color 200ms ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #696969;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--red);
}

.field.is-invalid input,
.field.is-invalid textarea {
  border-color: var(--red);
}

.field-error {
  display: none;
  margin-top: 6px;
  color: #ff746d;
  font-size: 11px;
}

.field.is-invalid .field-error {
  display: block;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 28px;
  color: #a5a5a5;
  font-size: 12px;
}

.privacy-check input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--red);
}

.privacy-check.is-invalid {
  color: #ff746d;
}

.button--submit {
  width: 100%;
  background: var(--red);
  border-color: var(--red);
}

.form-hint,
.form-success {
  margin: 15px 0 0;
  color: #8b8b8b;
  font-size: 11px;
  text-align: center;
}

.form-success {
  color: #8fd79a;
}

.empty-state {
  display: flex;
  min-height: 700px;
  padding-block: clamp(100px, 13vw, 190px);
  background: var(--white);
}

.empty-state .shell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.empty-state .shell > span {
  margin-bottom: 28px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.empty-state h1,
.empty-state h2 {
  max-width: 1000px;
}

.empty-state p {
  max-width: 680px;
  margin: 36px 0;
  color: #626262;
  font-size: 18px;
}

.empty-state--blank,
.empty-state--404 {
  color: var(--white);
  background: var(--ink);
}

.empty-state--blank p,
.empty-state--404 p {
  color: #aaa;
}

.site-footer {
  color: var(--white);
  background: #0b0b0b;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.8fr 1fr;
  gap: clamp(35px, 6vw, 90px);
  padding-block: clamp(80px, 9vw, 130px);
}

.brand--footer {
  color: var(--white);
}

.footer-brand > p {
  max-width: 380px;
  margin: 34px 0;
  color: #919191;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-light);
  transition: background 200ms ease, border-color 200ms ease;
  place-items: center;
}

.social-links a:hover {
  background: var(--red);
  border-color: var(--red);
}

.footer-column,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-column--offset {
  padding-top: 44px;
}

.footer-column > a,
.footer-contact > a:not(.text-link) {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #aaa;
  font-size: 13px;
  transition: color 160ms ease;
}

.footer-column > a:hover,
.footer-contact > a:hover {
  color: var(--white);
}

.footer-contact address {
  margin-bottom: 10px;
  color: #aaa;
  font-size: 13px;
}

.footer-contact .text-link {
  margin-top: 18px;
  color: var(--white);
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  padding-block: 24px;
  color: #767676;
  border-top: 1px solid var(--line-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-footer__bottom > div {
  display: flex;
  gap: 20px;
}

.site-footer__bottom > a {
  justify-self: end;
}

.lightbox {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: grid;
  grid-template-columns: 74px 1fr 74px;
  align-items: center;
  padding: 30px;
  color: var(--white);
  background: rgba(5, 5, 5, 0.96);
  backdrop-filter: blur(18px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  max-height: calc(100vh - 60px);
  margin: 0;
}

.lightbox figure img {
  max-width: 100%;
  max-height: calc(100vh - 115px);
  object-fit: contain;
}

.lightbox figcaption {
  margin-top: 14px;
  color: #aaa;
  font-size: 12px;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  display: grid;
  width: 52px;
  height: 52px;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--line-light);
  place-items: center;
}

.lightbox__close {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 22px;
}

.lightbox__next {
  justify-self: end;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 850ms var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 48px, 1180px);
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

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

  .competency-grid {
    grid-template-columns: repeat(5, minmax(220px, 1fr));
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .competency-card {
    min-height: 390px;
    scroll-snap-align: start;
  }

  .service-card,
  .service-card--wide {
    grid-column: span 6;
  }

  .site-footer__top {
    grid-template-columns: 1.4fr 0.7fr 0.8fr;
  }

  .footer-contact {
    grid-column: 2 / -1;
    padding-top: 20px;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: calc(100% - 36px);
  }

  .contact-strip p {
    display: none;
  }

  .contact-strip__inner {
    justify-content: flex-end;
  }

  .contact-strip__inner > div a:first-child {
    display: none;
  }

  .site-header__inner {
    min-height: 76px;
  }

  .brand {
    width: 205px;
    min-width: 0;
  }

  .home-hero,
  .home-hero__inner {
    min-height: calc(100svh - 110px);
  }

  .home-hero__inner {
    grid-template-columns: 1fr;
    padding-block: 70px 85px;
  }

  .home-hero h1 {
    font-size: clamp(58px, 17.5vw, 116px);
    line-height: 0.82;
  }

  .home-hero__meta {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-card,
  .service-card--wide {
    grid-column: span 12;
    min-height: 470px;
  }

  .heritage__grid,
  .quick-links__grid,
  .extra-offers__grid,
  .service-story__grid,
  .about-intro__grid,
  .download-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .heritage__visual {
    min-height: 540px;
  }

  .quick-card,
  .editorial-card,
  .download-card {
    min-height: 520px;
  }

  .editorial-card {
    height: 560px;
  }

  .editorial-card--news img {
    top: 42px;
    width: min(58%, 280px);
  }

  .page-hero__inner {
    padding-block: 80px 56px;
  }

  .page-hero h1 {
    font-size: clamp(58px, 13.5vw, 105px);
  }

  .service-story h2,
  .about-intro h2 {
    position: static;
  }

  .gallery-grid {
    grid-auto-rows: 220px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-band .shell {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 35px;
  }

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

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

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .site-footer__bottom {
    grid-template-columns: 1fr auto;
  }

  .site-footer__bottom > div {
    grid-row: 2;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .contact-strip__inner > div {
    gap: 10px;
  }

  .brand {
    width: 188px;
  }

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

  .mobile-menu {
    padding: 20px;
  }

  .mobile-menu details div {
    grid-template-columns: 1fr;
  }

  .home-hero::before {
    background: linear-gradient(90deg, rgba(6, 6, 6, 0.94), rgba(6, 6, 6, 0.68));
  }

  .home-hero h1 {
    font-size: clamp(50px, 17vw, 84px);
  }

  .home-hero__copy > p:not(.eyebrow) {
    margin-top: 32px;
  }

  .button-row .button {
    width: 100%;
  }

  .section-heading h2,
  .heritage__copy h2,
  .service-story h2,
  .about-intro h2,
  .document-header h1,
  .empty-state h1,
  .empty-state h2,
  .contact-details h2 {
    font-size: clamp(42px, 13vw, 66px);
  }

  .service-card,
  .service-card--wide {
    min-height: 420px;
  }

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

  .service-card__content strong {
    max-width: 100%;
  }

  .heritage__visual {
    min-height: 430px;
  }

  .partner-logos {
    flex-wrap: wrap;
  }

  .quick-card,
  .editorial-card,
  .download-card {
    min-height: 460px;
  }

  .editorial-card {
    height: 460px;
  }

  .editorial-card--news img {
    top: 36px;
    width: min(58%, 240px);
  }

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

  .page-hero h1 {
    font-size: clamp(43px, 12vw, 66px);
    line-height: 0.88;
  }

  .page-hero__copy > p:not(.eyebrow) {
    margin-top: 28px;
    font-size: 16px;
  }

  .page-hero__index {
    display: none;
  }

  .service-lead {
    font-size: 27px;
  }

  .gallery-grid {
    grid-auto-rows: 180px;
  }

  .gallery-item--wide {
    grid-column: span 2;
  }

  .gallery-item > span {
    display: none;
  }

  .cta-band h2 {
    font-size: clamp(58px, 17vw, 90px);
  }

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

  .fact-row > div {
    min-height: 115px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .team-grid,
  .team-grid--four {
    grid-template-columns: 1fr;
  }

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

  .guideline-grid article {
    min-height: 0;
  }

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

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-column--offset {
    padding-top: 44px;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom > a {
    justify-self: start;
  }

  .lightbox {
    grid-template-columns: 48px 1fr 48px;
    padding: 14px;
  }

  .lightbox__prev,
  .lightbox__next {
    width: 40px;
    height: 40px;
  }
}

@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;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .contact-strip,
  .site-header,
  .site-footer,
  .document-header .button-row,
  .back-link,
  .lightbox {
    display: none !important;
  }

  body,
  .document-viewer {
    background: white;
  }

  .document-header {
    padding: 20px 0;
  }

  .document-page {
    box-shadow: none;
    break-after: page;
  }

  .document-page figcaption {
    display: none;
  }
}
