:root {
  --red: #c41e3a;
  --red-dark: #9b1830;
  --black: #0d0d0d;
  --ink: #1c1c1c;
  --muted: #5c5c5c;
  --white: #ffffff;
  --paper: #f6f4f1;
  --cream: #faf8f5;
  --border: #e6e1db;
  --max: 1200px;
  --header: 82px;
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", sans-serif;
  --font-label: "Manrope", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

a {
  color: var(--red);
  text-decoration: none;
}

a:hover {
  color: var(--red-dark);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--black);
  line-height: 1.12;
  font-weight: 600;
  margin: 0 0 0.45em;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1em;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--red);
  color: var(--white);
  padding: 8px 16px;
  z-index: 1000;
}

.skip-link:focus {
  left: 8px;
  top: 8px;
}

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

.topbar {
  background: var(--black);
  color: #d7d7d7;
  font-size: 13px;
  padding: 8px 0;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar a {
  color: #ececec;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 13, 13, 0.94);
  backdrop-filter: blur(12px);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.logo:hover {
  color: var(--white);
}

.logo-mark {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
}

.logo-text small {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #bdbdbd;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid #3a3a3a;
  color: var(--white);
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  position: relative;
  margin: 0 auto;
}

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

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

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

.site-nav a {
  color: #d8d8d8;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--white);
}

.site-nav a[aria-current="page"] {
  box-shadow: inset 0 -2px 0 var(--red);
  padding-bottom: 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 24px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-dark);
  color: var(--white);
}

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

.btn-ghost:hover {
  background: var(--white);
  color: var(--black);
}

.btn-outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}

.btn-outline:hover {
  background: var(--red);
  color: var(--white);
}

.hero {
  min-height: calc(100vh - 118px);
  display: grid;
  align-items: end;
  padding: 72px 0 64px;
  position: relative;
  color: var(--white);
  overflow: hidden;
  background: var(--black);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(18%) contrast(1.05);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.88) 0%, rgba(8, 8, 8, 0.55) 48%, rgba(196, 30, 58, 0.28) 100%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.2) 0%, rgba(8, 8, 8, 0.72) 100%);
}

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

.hero-kicker {
  color: #ffb3bf;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 18px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  max-width: 13ch;
  margin-bottom: 18px;
}

.hero p.lead {
  max-width: 40ch;
  font-size: 1.12rem;
  color: #ececec;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 180px));
  gap: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 22px;
}

.hero-stats strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--white);
}

.hero-stats span {
  color: #cfcfcf;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section {
  padding: 88px 0;
}

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

.section-head {
  margin-bottom: 40px;
  max-width: 640px;
}

.eyebrow {
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 10px;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.photo-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.02;
  min-height: 0;
}

.photo-main {
  position: absolute;
  left: 0;
  top: 0;
  width: 72%;
  height: 88%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.photo-float {
  position: absolute;
  width: 48%;
  height: 46%;
  object-fit: cover;
  object-position: center;
  right: 0;
  bottom: 0;
  z-index: 2;
  border: 8px solid var(--cream);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.photo-accent {
  position: absolute;
  left: -16px;
  top: 24px;
  width: 72px;
  height: 72px;
  background: var(--red);
  z-index: 0;
}

.grid-4,
.grid-3,
.grid-2 {
  display: grid;
  gap: 22px;
}

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

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

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

.card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 24px;
}

.card h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

.service-card {
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  object-position: center;
  filter: grayscale(20%);
  transition: transform 280ms ease, filter 280ms ease;
}

.service-card:hover img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.service-card div {
  padding: 20px;
}

.industry-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  aspect-ratio: 3 / 4;
  min-height: 240px;
  overflow: hidden;
  color: var(--white);
}

.industry-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(30%);
}

.industry-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.12), rgba(13, 13, 13, 0.78));
}

.industry-tile h3 {
  position: relative;
  z-index: 1;
  color: var(--white);
  margin: 0;
  padding: 24px;
  font-size: 1.7rem;
}

.process {
  counter-reset: step;
}

.process-item {
  padding: 28px 24px 24px;
  background: var(--white);
  border-top: 3px solid var(--red);
}

.process-item::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--red);
  margin-bottom: 8px;
}

.quote {
  background: var(--black);
  color: #ececec;
  padding: 32px;
}

.quote p {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  line-height: 1.35;
  color: var(--white);
  margin-bottom: 18px;
}

.quote cite {
  font-style: normal;
  color: #c9c9c9;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero {
  position: relative;
  color: var(--white);
  min-height: 280px;
  padding: 92px 0 64px;
  overflow: hidden;
  background: var(--black);
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(25%);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 8, 8, 0.86), rgba(196, 30, 58, 0.35));
}

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

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.breadcrumb {
  color: #d7d7d7;
  font-size: 14px;
  margin-bottom: 12px;
}

.breadcrumb a {
  color: #f3f4f6;
}

.cta-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding: 0;
}

.cta-copy {
  background: var(--red);
  padding: 48px 0;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cta-copy h2,
.cta-inner p {
  color: var(--white);
}

.values {
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.value-item {
  list-style: none;
  background: var(--white);
  border-left: 5px solid var(--red);
  padding: 18px 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
}

.form-row {
  margin-bottom: 16px;
}

label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--border);
  padding: 10px 12px;
  font: inherit;
  background: var(--white);
}

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

input:focus,
textarea:focus,
.btn:focus-visible,
.site-nav a:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}

[aria-invalid="true"] {
  border-color: var(--red);
}

.field-error {
  color: var(--red);
  font-size: 13px;
  min-height: 18px;
  margin-top: 4px;
}

.form-status {
  margin-top: 12px;
  font-weight: 700;
}

.form-status.is-error {
  color: var(--red);
}

.form-status.is-success {
  color: #166534;
}

.office-card {
  overflow: hidden;
}

.office-card img {
  display: block;
  width: calc(100% + 48px);
  max-width: none;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  object-position: center;
  margin: -24px -24px 16px;
}

.site-footer {
  background: var(--black);
  color: #cfcfcf;
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.site-footer h3 {
  color: var(--white);
  font-size: 1.2rem;
}

.site-footer a {
  color: #d7d7d7;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.copyright {
  border-top: 1px solid #2a2a2a;
  padding-top: 16px;
  font-size: 13px;
}

.prose {
  max-width: 72ch;
}

.prose h2 {
  margin-top: 1.5em;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
}

.team-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  object-position: center;
  margin-bottom: 0;
}

.team-card h3 {
  margin: 16px 18px 4px;
}

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

@media (max-width: 1024px) {
  .grid-4,
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .photo-stack {
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #0a0a0a;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px 24px;
    gap: 16px;
  }

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

  .header-inner {
    position: relative;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .footer-grid,
  .cta-inner,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    align-items: flex-start;
    display: grid;
  }

  .hero,
  .section {
    padding: 56px 0;
  }

  .hero {
    min-height: 86vh;
    align-items: center;
  }

  .photo-main {
    width: 78%;
    height: 82%;
  }

  .photo-float {
    width: 52%;
    height: 42%;
  }

  .industry-tile {
    aspect-ratio: 16 / 10;
    min-height: 200px;
  }
}

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

  * {
    animation: none !important;
    transition: none !important;
  }
}
