:root {
  --red: #a9232d;
  --red-dark: #771820;
  --red-bright: #c22d38;
  --ink: #171717;
  --charcoal: #242326;
  --stone: #6c6967;
  --paper: #f6f3ee;
  --paper-dark: #ebe4da;
  --white: #fff;
  --line: rgba(23, 23, 23, 0.14);
  --shadow: 0 22px 60px rgba(27, 20, 18, 0.14);
  --display: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

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

.topbar {
  position: relative;
  z-index: 40;
  color: rgba(255, 255, 255, 0.9);
  background: var(--charcoal);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.topbar-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar-proof {
  color: rgba(255, 255, 255, 0.62);
}

.topbar-links {
  display: flex;
  gap: 22px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 28px rgba(23, 23, 23, 0.04);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  width: 255px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: 64px;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-left: auto;
}

.primary-nav > a,
.nav-dropdown > button {
  position: relative;
  border: 0;
  background: transparent;
  padding: 13px 12px;
  font-size: 0.86rem;
  font-weight: 750;
  cursor: pointer;
}

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

.primary-nav > a:hover::after,
.primary-nav > a.active::after,
.nav-dropdown > button:hover::after,
.nav-dropdown > button.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  width: 238px;
  padding: 12px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: 180ms ease;
}

.dropdown-menu::before {
  position: absolute;
  inset: -18px 0 auto;
  height: 18px;
  content: "";
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 2px;
  font-size: 0.87rem;
  font-weight: 700;
}

.dropdown-menu a:hover {
  color: var(--red);
  background: var(--paper);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.menu-button {
  display: none;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 2px solid var(--red);
  background: var(--red);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition: 180ms ease;
}

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

.button-small {
  min-height: 44px;
  padding-inline: 18px;
  white-space: nowrap;
}

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

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

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

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

.full-button {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--red);
  font-size: 1.3em;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.light-link,
.light-link span {
  color: var(--white);
}

.eyebrow {
  display: block;
  margin-bottom: 17px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.68);
}

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

h1,
h2 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(3.6rem, 6.8vw, 7.3rem);
}

h2 {
  font-size: clamp(2.7rem, 4.5vw, 5.1rem);
}

h3 {
  line-height: 1.25;
}

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

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 94px 0 116px;
  background:
    radial-gradient(circle at 7% 10%, rgba(169, 35, 45, 0.08), transparent 25%),
    linear-gradient(125deg, #fbfaf8 0%, var(--paper) 100%);
}

.home-hero::after {
  position: absolute;
  right: -120px;
  bottom: -300px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(169, 35, 45, 0.14);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 86px;
}

.hero-copy h1 {
  max-width: 700px;
  margin-bottom: 28px;
}

.hero-copy h1 em {
  color: var(--red);
  font-weight: inherit;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 34px;
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.hero-proof {
  margin-top: 52px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: var(--red);
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1;
}

.hero-proof span {
  margin-top: 6px;
  color: var(--stone);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-main {
  position: absolute;
  inset: 0 0 70px 100px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-main::after,
.image-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(20, 18, 18, 0.16));
  content: "";
  pointer-events: none;
}

.hero-main img,
.hero-detail img,
.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-detail {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 250px;
  height: 310px;
  border: 9px solid var(--paper);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-badge {
  position: absolute;
  right: -25px;
  bottom: 20px;
  width: 156px;
  height: 156px;
  border: 6px solid var(--paper);
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow);
}

.hero-badge span,
.hero-badge small {
  font-size: 0.61rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-badge strong {
  display: block;
  margin: 3px 0;
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 500;
}

.trust-ribbon {
  padding: 23px 0;
  color: rgba(255, 255, 255, 0.82);
  background: var(--charcoal);
}

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

.trust-ribbon span {
  position: relative;
  padding: 2px 26px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.trust-ribbon span + span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red-bright);
  content: "";
  transform: translateY(-50%);
}

.section,
.content-section {
  padding: 120px 0;
}

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

.section-heading,
.project-heading,
.gallery-intro,
.split-heading {
  margin-bottom: 58px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 90px;
}

.section-heading h2,
.project-heading h2,
.gallery-intro h2,
.split-heading h2 {
  margin-bottom: 0;
}

.section-heading > p,
.gallery-intro > p,
.split-heading > p,
.split-heading > div:last-child {
  margin-bottom: 6px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 28px;
}

.service-card {
  border-bottom: 1px solid var(--line);
  padding-bottom: 28px;
}

.card-image {
  position: relative;
  height: 278px;
  display: block;
  overflow: hidden;
  background: var(--paper);
}

.card-image::after {
  position: absolute;
  inset: 0;
  border: 0 solid var(--red);
  content: "";
  transition: 180ms ease;
}

.card-image:hover::after {
  border-width: 6px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(.2,.7,.2,1);
}

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

.card-image > span {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  min-width: 48px;
  padding: 8px 10px;
  color: var(--white);
  background: var(--red);
  font-size: 0.7rem;
  font-weight: 900;
  text-align: center;
}

.card-body {
  padding-top: 24px;
}

.card-body h3 {
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 500;
}

.card-body h3 a:hover {
  color: var(--red);
}

.card-body p {
  min-height: 77px;
  margin-bottom: 18px;
  font-size: 0.91rem;
}

.minor-service {
  margin-top: 52px;
  padding: 32px 36px;
  border-left: 5px solid var(--red);
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.minor-service .eyebrow {
  margin-bottom: 8px;
}

.minor-service h3 {
  max-width: 700px;
  margin-bottom: 0;
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 500;
}

.story-section {
  padding: 120px 0;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
  gap: 90px;
}

.story-images {
  position: relative;
  min-height: 620px;
}

.story-large {
  position: absolute;
  inset: 0 80px 90px 0;
  width: calc(100% - 80px);
  height: calc(100% - 90px);
  object-fit: cover;
}

.story-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 250px;
  height: 270px;
  border: 8px solid var(--charcoal);
  object-fit: cover;
}

.story-copy h2 {
  margin-bottom: 32px;
}

.story-copy p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
}

.story-copy .button {
  margin-top: 18px;
}

.project-heading {
  align-items: end;
}

.project-heading > a {
  justify-self: end;
  margin-bottom: 12px;
}

.project-showcase {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.95fr;
  grid-template-rows: 290px 290px;
  gap: 10px;
}

.project-showcase button,
.gallery-strip button,
.masonry-gallery button {
  position: relative;
  border: 0;
  overflow: hidden;
  background: var(--paper);
  cursor: zoom-in;
}

.project-showcase button:first-child {
  grid-row: 1 / 3;
}

.project-showcase button:nth-child(2) {
  grid-row: 1 / 3;
}

.project-showcase img,
.gallery-strip img,
.masonry-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.project-showcase button:hover img,
.gallery-strip button:hover img,
.masonry-gallery button:hover img {
  transform: scale(1.045);
}

.certifications {
  background: var(--paper);
}

.centered-heading {
  max-width: 830px;
  margin: 0 auto 52px;
  text-align: center;
}

.centered-heading h2 {
  margin-bottom: 0;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: 18px;
}

.logo-row > div {
  height: 122px;
  padding: 19px;
  background: var(--white);
  display: grid;
  place-items: center;
}

.logo-row img {
  max-width: 100%;
  max-height: 84px;
  object-fit: contain;
}

.page-hero {
  padding: 95px 0 105px;
  overflow: hidden;
  background:
    radial-gradient(circle at 0 0, rgba(169, 35, 45, 0.08), transparent 26%),
    var(--paper);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 86px;
}

.page-hero-copy h1 {
  max-width: 650px;
  margin-bottom: 28px;
  font-size: clamp(3.7rem, 5.8vw, 6.2rem);
}

.page-hero-copy > p {
  max-width: 590px;
  margin-bottom: 32px;
  font-size: 1.08rem;
}

.page-hero-media {
  position: relative;
  height: 560px;
  box-shadow: var(--shadow);
}

.page-hero-media::before {
  position: absolute;
  z-index: 1;
  right: -25px;
  bottom: -25px;
  width: 120px;
  height: 120px;
  border-right: 10px solid var(--red);
  border-bottom: 10px solid var(--red);
  content: "";
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 0.74fr;
  align-items: start;
  gap: 100px;
}

.prose {
  font-size: 1.02rem;
}

.prose p {
  margin-bottom: 24px;
}

.prose p:first-child {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.65rem;
  line-height: 1.45;
}

.highlight-card {
  padding: 42px;
  border-top: 5px solid var(--red);
  background: var(--paper);
  box-shadow: 0 14px 40px rgba(26, 22, 20, 0.08);
}

.highlight-card h2 {
  margin-bottom: 26px;
  font-size: 2.6rem;
}

.highlight-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.highlight-card li {
  display: flex;
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  font-size: 0.91rem;
  font-weight: 750;
}

.highlight-card li span {
  color: var(--red);
}

.feature-section {
  padding: 100px 0;
  background: var(--charcoal);
}

.feature-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: 90px;
}

.feature-logo {
  min-height: 310px;
  padding: 55px;
  background: var(--white);
  display: grid;
  place-items: center;
}

.feature-logo img {
  max-height: 200px;
  object-fit: contain;
}

.feature-copy h2 {
  color: var(--white);
  font-size: clamp(2.8rem, 4vw, 4.7rem);
}

.feature-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.partner-logo {
  max-width: 215px;
  max-height: 80px;
  margin-top: 25px;
  padding: 14px 20px;
  background: var(--white);
  object-fit: contain;
}

.lead {
  font-size: 1.08rem;
  line-height: 1.85;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-strip button {
  height: 330px;
}

.trust-strip {
  padding: 37px 0;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

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

.trust-items > div {
  padding: 8px 30px;
  border-left: 1px solid var(--line);
}

.trust-items > div:last-child {
  border-right: 1px solid var(--line);
}

.trust-items strong,
.trust-items span {
  display: block;
}

.trust-items strong {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 500;
}

.trust-items span {
  color: var(--stone);
  font-size: 0.72rem;
  font-weight: 750;
  text-transform: uppercase;
}

.team-section {
  padding: 30px 0 120px;
}

.team-card {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 500px;
  background: var(--paper);
}

.team-card.reverse {
  grid-template-columns: 1.2fr 0.8fr;
}

.team-card.reverse .team-image {
  order: 2;
}

.team-image img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.team-image.portrait img {
  object-position: center 25%;
}

.team-copy {
  align-self: center;
  padding: 65px 75px;
}

.team-copy h2 {
  margin-bottom: 25px;
  font-size: 3.9rem;
}

.values-section {
  padding: 100px 0;
  color: var(--white);
  background: var(--red);
}

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

.values-grid article {
  min-height: 245px;
  padding: 10px 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.values-grid article:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.values-grid span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.values-grid h3 {
  margin: 62px 0 13px;
  font-family: var(--display);
  font-size: 2.1rem;
  font-weight: 500;
}

.values-grid p {
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.88rem;
}

.projects-hero {
  padding: 120px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(23, 23, 23, 0.92), rgba(23, 23, 23, 0.45)),
    url("images/hero-home.jpg") center 42% / cover;
}

.projects-hero h1 {
  max-width: 900px;
  margin-bottom: 25px;
}

.projects-hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
}

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

.masonry-gallery {
  columns: 3;
  column-gap: 16px;
}

.masonry-gallery button {
  width: 100%;
  margin: 0 0 16px;
  display: block;
  break-inside: avoid;
}

.masonry-gallery img {
  width: 100%;
  height: auto;
}

.masonry-gallery button > span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 42px 18px 16px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(17, 17, 17, 0.76));
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-align: left;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 180ms ease;
}

.masonry-gallery button:hover > span {
  opacity: 1;
}

.contact-hero {
  padding: 110px 0;
  background: var(--charcoal);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  align-items: center;
  gap: 100px;
}

.contact-copy {
  color: var(--white);
}

.contact-copy h1 {
  margin-bottom: 30px;
}

.contact-copy > p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.08rem;
}

.contact-methods {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-methods a {
  padding: 23px 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 180ms ease;
}

.contact-methods a:hover {
  background: rgba(255, 255, 255, 0.06);
}

.contact-methods span,
.contact-methods strong {
  display: block;
}

.contact-methods span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-methods strong {
  margin-top: 7px;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 500;
}

.contact-card {
  padding: 50px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  margin-bottom: 23px;
  font-size: 3.1rem;
}

.contact-card ul {
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.contact-card li {
  padding: 9px 0 9px 26px;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-card li::before {
  margin-left: -25px;
  margin-right: 10px;
  color: var(--red);
  content: "✓";
}

.contact-card small {
  margin-top: 16px;
  display: block;
  color: var(--stone);
  text-align: center;
}

.contact-card small a {
  color: var(--red);
  font-weight: 800;
}

.service-area {
  padding: 120px 0;
}

.area-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.area-tags span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-proof {
  padding: 45px 0;
  background: var(--paper);
}

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

.contact-proof div > div {
  padding: 10px 40px;
  border-left: 1px solid var(--line);
}

.contact-proof div > div:last-child {
  border-right: 1px solid var(--line);
}

.contact-proof strong,
.contact-proof span {
  display: block;
}

.contact-proof strong {
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 500;
}

.contact-proof span {
  color: var(--stone);
  font-size: 0.73rem;
  font-weight: 750;
  text-transform: uppercase;
}

.cta-band {
  padding: 78px 0;
  color: var(--white);
  background: var(--red);
}

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

.cta-band h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2.4rem, 4vw, 4.3rem);
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 0 0 auto;
}

.site-footer {
  padding: 80px 0 28px;
  color: rgba(255, 255, 255, 0.75);
  background: #171617;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.9fr 1.05fr;
  gap: 70px;
}

.footer-brand img {
  width: 290px;
  height: 95px;
  padding: 12px;
  background: var(--white);
  object-fit: contain;
}

.footer-brand p {
  max-width: 350px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
}

.footer-grid h3 {
  margin-bottom: 21px;
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid > div:not(:first-child) > a {
  margin: 0 0 9px;
  display: block;
  font-size: 0.84rem;
}

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

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

.social-links a {
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.78rem;
  font-weight: 750;
}

.footer-trust strong {
  display: block;
  margin-bottom: 15px;
  color: var(--white);
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.3;
}

.footer-trust p {
  margin: 7px 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
}

.footer-bottom {
  margin-top: 65px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.68rem;
}

.mobile-call {
  display: none;
}

.lightbox {
  width: min(1150px, 94vw);
  max-width: none;
  height: min(820px, 90vh);
  max-height: none;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: #111;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(6px);
}

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

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  z-index: 1;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(0, 0, 0, 0.62);
  cursor: pointer;
}

.lightbox-close {
  top: 16px;
  right: 16px;
  font-size: 1.7rem;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  font-size: 2rem;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 16px;
}

.lightbox-next {
  right: 16px;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

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

@media (max-width: 1100px) {
  :root {
    --container: min(100% - 38px, 980px);
  }

  .brand {
    width: 215px;
  }

  .header-inner {
    gap: 18px;
  }

  .primary-nav > a,
  .nav-dropdown > button {
    padding-inline: 8px;
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .page-hero-grid {
    gap: 45px;
  }

  .hero-grid {
    grid-template-columns: 0.92fr 1.08fr;
  }

  .hero-main {
    left: 60px;
  }

  .story-grid,
  .editorial-grid,
  .feature-grid,
  .contact-grid {
    gap: 55px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.7fr 0.85fr;
    gap: 50px;
  }

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

@media (max-width: 920px) {
  body {
    padding-bottom: 66px;
  }

  .topbar-proof,
  .topbar-links a:first-child {
    display: none;
  }

  .site-header {
    top: 0;
  }

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

  .brand {
    width: 220px;
  }

  .brand img {
    height: 54px;
  }

  .menu-button {
    width: 50px;
    height: 50px;
    margin-left: auto;
    padding: 12px;
    border: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
  }

  .menu-button span {
    width: 24px;
    height: 2px;
    display: block;
    background: var(--ink);
  }

  .menu-button b {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    max-height: calc(100vh - 112px);
    margin: 0;
    padding: 16px 20px 25px;
    border-top: 1px solid var(--line);
    background: var(--white);
    display: none;
    overflow: auto;
    box-shadow: 0 18px 30px rgba(23, 23, 23, 0.12);
  }

  .primary-nav.open {
    display: block;
  }

  .primary-nav > a,
  .nav-dropdown > button {
    width: 100%;
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    display: block;
    text-align: left;
  }

  .primary-nav > a::after,
  .nav-dropdown > button::after {
    display: none;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    padding: 4px 0 7px 14px;
    border: 0;
    box-shadow: none;
    display: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    transform: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  .home-hero {
    padding: 72px 0 90px;
  }

  .hero-grid,
  .page-hero-grid,
  .editorial-grid,
  .feature-grid,
  .story-grid,
  .contact-grid,
  .team-card,
  .team-card.reverse {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 560px;
  }

  .hero-main {
    left: 90px;
  }

  .trust-ribbon-inner,
  .trust-items,
  .values-grid,
  .contact-proof .container {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-ribbon span:nth-child(3)::before {
    display: none;
  }

  .section-heading,
  .project-heading,
  .gallery-intro,
  .split-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
  }

  .project-heading > a {
    justify-self: start;
  }

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

  .story-images {
    min-height: 560px;
  }

  .story-copy {
    max-width: 680px;
  }

  .project-showcase {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 300px;
  }

  .project-showcase button:first-child {
    grid-row: 1 / 3;
  }

  .project-showcase button:nth-child(2) {
    grid-row: auto;
  }

  .project-showcase button:nth-child(4) {
    display: none;
  }

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

  .page-hero-media {
    height: 500px;
  }

  .feature-logo {
    min-height: 230px;
  }

  .feature-logo img {
    max-height: 140px;
  }

  .team-card.reverse .team-image {
    order: 0;
  }

  .team-card,
  .team-card.reverse {
    max-width: 760px;
  }

  .values-grid article:nth-child(3) {
    border-left: 0;
  }

  .masonry-gallery {
    columns: 2;
  }

  .cta-band-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-trust {
    grid-column: auto;
  }

  .mobile-call {
    position: fixed;
    z-index: 50;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 66px;
    padding: 10px 20px;
    color: var(--white);
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.16);
  }

  .mobile-call span {
    font-size: 0.67rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .mobile-call strong {
    font-family: var(--display);
    font-size: 1.3rem;
  }
}

@media (max-width: 620px) {
  :root {
    --container: calc(100% - 30px);
  }

  .topbar {
    font-size: 0.67rem;
  }

  .topbar-inner {
    min-height: 32px;
  }

  .brand {
    width: 190px;
  }

  .home-hero,
  .page-hero {
    padding: 58px 0 76px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

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

  .hero-proof > div:last-child {
    grid-column: 1 / -1;
  }

  .hero-visual {
    min-height: 450px;
  }

  .hero-main {
    inset: 0 0 45px 38px;
  }

  .hero-detail {
    width: 160px;
    height: 205px;
    border-width: 6px;
  }

  .hero-badge {
    right: -7px;
    width: 125px;
    height: 125px;
    border-width: 4px;
  }

  .trust-ribbon-inner,
  .service-grid,
  .trust-items,
  .values-grid,
  .contact-proof .container {
    grid-template-columns: 1fr;
  }

  .trust-ribbon span {
    padding: 11px 8px;
  }

  .trust-ribbon span + span::before {
    top: 0;
    left: 50%;
  }

  .trust-ribbon span:nth-child(3)::before {
    display: block;
  }

  .section,
  .content-section,
  .story-section,
  .service-area {
    padding: 80px 0;
  }

  .card-image {
    height: 255px;
  }

  .card-body p {
    min-height: 0;
  }

  .minor-service {
    padding: 28px;
    align-items: flex-start;
    flex-direction: column;
  }

  .story-images {
    min-height: 440px;
  }

  .story-large {
    right: 35px;
    bottom: 65px;
    width: calc(100% - 35px);
    height: calc(100% - 65px);
  }

  .story-small {
    width: 165px;
    height: 190px;
  }

  .project-showcase {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 280px);
  }

  .project-showcase button:first-child,
  .project-showcase button:nth-child(2) {
    grid-row: auto;
  }

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

  .page-hero-media {
    height: 390px;
  }

  .editorial-grid {
    gap: 40px;
  }

  .highlight-card,
  .contact-card {
    padding: 34px 26px;
  }

  .feature-section {
    padding: 80px 0;
  }

  .feature-logo {
    padding: 35px;
  }

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

  .gallery-strip button {
    height: 285px;
  }

  .trust-items > div,
  .trust-items > div:last-child {
    padding: 18px 6px;
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .team-card {
    margin-top: 35px;
  }

  .team-image img {
    min-height: 360px;
  }

  .team-copy {
    padding: 45px 28px;
  }

  .team-copy h2 {
    font-size: 3.15rem;
  }

  .values-grid article,
  .values-grid article:last-child,
  .values-grid article:nth-child(3) {
    min-height: 0;
    padding: 28px 8px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  }

  .values-grid h3 {
    margin: 10px 0;
  }

  .projects-hero {
    padding: 85px 0;
  }

  .masonry-gallery {
    columns: 1;
  }

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

  .contact-proof div > div,
  .contact-proof div > div:last-child {
    padding: 20px 5px;
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .cta-band {
    padding: 65px 0;
  }

  .cta-actions {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .lightbox {
    width: 100vw;
    height: 100vh;
  }
}
