@font-face {
  font-family: "Barlow";
  src: url("/assets/fonts/Barlow-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Barlow";
  src: url("/assets/fonts/Barlow-SemiBold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Barlow";
  src: url("/assets/fonts/Barlow-Bold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("/assets/fonts/BarlowCondensed-Black.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 900;
}

:root {
  --red: #bd2733;
  --red-dark: #98202a;
  --charcoal: #252829;
  --ink: #111315;
  --grey: #c9cdcf;
  --steel: #f0f2f2;
  --white: #fff;
  --shell: 74rem;
  --gutter: clamp(1rem, 3vw, 2rem);
  --section: clamp(4rem, 8vw, 7rem);
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Barlow", "Helvetica Neue", Arial, Helvetica, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

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

.shell {
  width: min(100% - (2 * var(--gutter)), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 1rem;
  transform: translateY(-180%);
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3.5rem, 5.2vw, 4.25rem);
}

h1 em {
  color: var(--red);
  font-style: normal;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 5vw, 4.25rem);
}

h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 4px;
  height: 1.65rem;
  background: var(--red);
}

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

.eyebrow--light > span {
  background: var(--grey);
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 3px;
  padding: 0.78rem 1.35rem;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

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

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

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

.button--secondary:hover {
  background: var(--steel);
}

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

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

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

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

.action-row--end {
  justify-content: flex-end;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  text-underline-offset: 0.25rem;
}

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

/* Header and navigation */

.site-header {
  position: relative;
  z-index: 100;
  border-bottom: 1px solid var(--grey);
  background: var(--white);
}

.site-header__inner {
  display: grid;
  min-height: 7.25rem;
  grid-template-columns: minmax(11rem, 14.5rem) 1fr auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
}

.brand {
  display: inline-block;
  width: min(100%, 14.5rem);
}

.brand img {
  width: 100%;
}

.primary-nav {
  justify-self: center;
}

.primary-nav__links {
  display: flex;
  gap: clamp(1rem, 3vw, 2.25rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav__links a {
  position: relative;
  display: block;
  padding: 0.75rem 0;
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
}

.primary-nav__links a::after {
  position: absolute;
  right: 0;
  bottom: 0.35rem;
  left: 0;
  height: 3px;
  transform: scaleX(0);
  background: var(--red);
  content: "";
}

.primary-nav__links a:hover::after,
.primary-nav__links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.primary-nav__mobile-actions,
.menu-toggle {
  display: none;
}

.header-call {
  display: flex;
  flex-direction: column;
  padding-left: 1rem;
  line-height: 1.25;
  text-decoration: none;
}

.header-call span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.header-call strong {
  color: var(--red);
  font-size: 1.2rem;
}

.header-call:hover strong {
  color: var(--red);
}

/* Main layouts */

.hero {
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(3.5rem, 7vw, 6rem);
}

.hero__grid,
.contact-hero__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
}

.hero__lede,
.page-intro__grid > div > p,
.contact-hero__copy > p {
  max-width: 39rem;
  color: #414649;
  font-size: clamp(1.08rem, 2vw, 1.25rem);
  line-height: 1.55;
}

.hero__media,
.service-row__media,
.contact-hero__media {
  margin: 0;
}

.hero__media img,
.service-row__media img,
.contact-hero__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--steel);
  object-fit: cover;
  object-position: center;
}

.hero__media figcaption,
.service-row__media figcaption,
.contact-hero__media figcaption,
.detail-pair figcaption {
  margin-top: 0.65rem;
  color: #5b6063;
  font-size: 0.78rem;
}

.scaffold-frame {
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
}

.scaffold-frame__picture {
  position: relative;
  z-index: 1;
}

.scaffold-frame__brace,
.scaffold-frame__joint {
  display: none;
}

.hero .scaffold-frame {
  padding: 0.7rem 0 0 0.7rem;
}

.hero .scaffold-frame::before {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 42%;
  height: 27%;
  border-top: 0.65rem solid var(--red);
  border-left: 0.65rem solid var(--red);
  content: "";
}

.hero .scaffold-frame img {
  aspect-ratio: 1;
  object-position: center;
}

.hero__coverage {
  margin: 0.9rem 0 0;
  color: #626362;
  font-size: 0.82rem;
}

.section,
.service-row,
.contact-hero,
.not-found {
  padding-block: var(--section);
}

.section--rule,
.service-row.section--rule {
  border-top: 1px solid var(--grey);
}

.section--steel,
.service-row--steel {
  background: var(--steel);
}

.audience-section {
  padding-block: clamp(3.5rem, 6vw, 5rem);
}

.audience-section__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.audience-section__heading h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
}

.audience-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

.audience-links a {
  border-bottom: 2px solid var(--grey);
  padding-block: 0.4rem;
  font-weight: 800;
  text-decoration: none;
}

.audience-links a:hover {
  border-color: var(--red);
  color: var(--red-dark);
}

.section-heading--split,
.page-intro__grid,
.details-grid {
  display: grid;
  grid-template-columns: minmax(10rem, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(2rem, 6vw, 6rem);
}

.section-heading--split {
  align-items: start;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading--split h2,
.section-heading--split p {
  max-width: 43rem;
}

.offer-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--grey);
  border-bottom: 1px solid var(--grey);
}

.offer-item {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 1px solid var(--grey);
}

.offer-item:first-child {
  border-left: 0;
}

.offer-item p {
  min-height: 6rem;
}

.work-gallery {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: repeat(2, minmax(14rem, 19rem));
  gap: 1rem;
}

.work-gallery figure,
.detail-pair figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--charcoal);
}

.work-gallery__feature {
  grid-row: 1 / 3;
}

.work-gallery img,
.detail-pair img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.work-gallery figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 1.25rem 1rem;
  background: linear-gradient(transparent, rgb(17 19 21 / 88%));
  color: var(--white);
}

.work-gallery figcaption span {
  color: var(--grey);
  font-size: 0.75rem;
  text-align: right;
}

.coverage-callout {
  padding-block: var(--section);
  background: var(--charcoal);
  color: var(--white);
}

.coverage-callout__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 7rem);
}

.coverage-callout h2 {
  margin: 0;
  color: var(--white);
}

.coverage-callout h2 span {
  color: var(--grey);
}

.coverage-callout__copy p {
  max-width: 34rem;
  margin-bottom: 1.5rem;
  font-size: 1.08rem;
}

.contact-strip {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}

.contact-strip__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
}

.contact-strip h2 {
  margin-bottom: 0.75rem;
}

.contact-strip p:last-child {
  margin-bottom: 0;
}

.page-intro {
  padding-block: clamp(3.5rem, 8vw, 7rem);
  border-bottom: 1px solid var(--grey);
}

.page-intro h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 5vw, 4rem);
}

.service-row__grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.75fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
}

.service-row__grid--reverse .service-row__media {
  order: 2;
}

.service-row__media--landscape img {
  aspect-ratio: 5 / 4;
}

.service-row__copy h2 {
  max-width: 10ch;
}

.service-row__copy > p {
  max-width: 38rem;
}

.lined-list {
  max-width: 40rem;
  margin: 2rem 0;
  padding: 0;
  border-top: 1px solid var(--grey);
  list-style: none;
}

.lined-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--grey);
  font-weight: 700;
}

.service-row__note {
  padding-left: 1rem;
  border-left: 3px solid var(--red);
  color: #4e5356;
}

.detail-pair {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.detail-pair figure {
  background: transparent;
}

.detail-pair img {
  aspect-ratio: 4 / 3;
}

.contact-hero {
  padding-top: clamp(3.5rem, 8vw, 7rem);
}

.contact-actions {
  display: grid;
  max-width: 44rem;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.25rem;
}

.contact-action {
  display: flex;
  min-height: 11rem;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid var(--charcoal);
  padding: 1.25rem;
  text-decoration: none;
}

.contact-action:hover {
  background: var(--steel);
}

.contact-action--call {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.contact-action--call:hover {
  background: var(--red-dark);
}

.contact-action__label,
.contact-action__prompt {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-action strong {
  font-family: var(--display);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1;
}

.contact-hero__small {
  margin-top: 1rem;
  color: #5b6063;
  font-size: 0.8rem;
}

.detail-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--grey);
  list-style: none;
}

.detail-list li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--grey);
}

.detail-list li > span {
  color: var(--red);
  font-family: var(--display);
  font-weight: 800;
}

.detail-list strong {
  font-size: 1.05rem;
}

.detail-list p {
  margin: 0.25rem 0 0;
  color: #4e5356;
}

.not-found {
  min-height: 65vh;
  display: grid;
  align-items: center;
}

.not-found__grid {
  display: grid;
  grid-template-columns: minmax(14rem, 0.65fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 8vw, 7rem);
}

.not-found__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  font-family: var(--display);
  font-size: clamp(6rem, 17vw, 13rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}

.not-found__mark i {
  width: 0.22em;
  height: 1.1em;
  margin-inline: 0.08em;
  background: var(--red);
}

.not-found__copy p {
  max-width: 39rem;
}

.not-found__contact {
  margin-top: 2rem;
}

.not-found__contact a {
  font-weight: 800;
}

/* Privacy page hooks */

.privacy-content {
  max-width: 56rem;
}

.privacy-section {
  padding-block: clamp(1.5rem, 4vw, 2.5rem);
  border-top: 1px solid var(--grey);
}

.privacy-section:first-child {
  border-top: 0;
  padding-top: 0;
}

.privacy-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
}

.privacy-section p:last-child {
  margin-bottom: 0;
}

.privacy-section code {
  padding: 0.12rem 0.3rem;
  background: var(--steel);
  font-size: 0.9em;
  overflow-wrap: anywhere;
}

.privacy-choice {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding-inline: clamp(1rem, 3vw, 2rem);
  background: var(--steel);
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--grey);
  background: var(--white);
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(10rem, 13rem) minmax(15rem, 1fr) auto;
  align-items: center;
  gap: clamp(1.5rem, 5vw, 5rem);
  padding-block: 3rem;
}

.site-footer__top > p {
  max-width: 31rem;
  margin: 0;
  color: #4e5356;
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-weight: 800;
}

.site-footer__contact a:first-child {
  font-family: var(--display);
  font-size: 1.5rem;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.25rem;
  border-top: 1px solid var(--grey);
  color: #5b6063;
  font-size: 0.78rem;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
}

.site-footer__bottom button {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.mobile-contact-bar {
  display: none;
}

@media (max-width: 58rem) {
  .site-header__inner {
    min-height: 5rem;
    grid-template-columns: minmax(9rem, 11rem) 1fr auto;
  }

  .header-call {
    display: none;
  }

  .js .menu-toggle {
    display: inline-flex;
    grid-column: 3;
    align-items: center;
    gap: 0.65rem;
    border: 0;
    padding: 0.6rem 0;
    background: transparent;
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 800;
    cursor: pointer;
  }

  .menu-toggle__icon {
    display: grid;
    width: 1.5rem;
    gap: 0.35rem;
  }

  .menu-toggle__icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
  }

  .primary-nav {
    grid-column: 2 / 4;
    justify-self: end;
  }

  .js .primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    border-top: 1px solid var(--grey);
    border-bottom: 1px solid var(--grey);
    padding: 1rem var(--gutter) 1.5rem;
    background: var(--white);
    box-shadow: 0 1rem 2rem rgb(17 19 21 / 12%);
  }

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

  .primary-nav__links {
    justify-content: flex-end;
  }

  .js .primary-nav__links {
    display: block;
  }

  .js .primary-nav__links a {
    border-bottom: 1px solid var(--grey);
    padding: 0.9rem 0;
  }

  .js .primary-nav__links a::after {
    display: none;
  }

  .js .primary-nav__mobile-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
  }

  .hero__grid,
  .contact-hero__grid,
  .service-row__grid,
  .coverage-callout__inner {
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.72fr);
    gap: 2.5rem;
  }

  .service-row__grid--reverse .service-row__media {
    order: initial;
  }

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

  .action-row--end {
    justify-content: flex-start;
  }

  .site-footer__top {
    grid-template-columns: minmax(9rem, 11rem) 1fr;
  }

  .site-footer__contact {
    grid-column: 2;
    align-items: flex-start;
  }

  .mobile-contact-bar {
    position: fixed;
    z-index: 900;
    right: max(0.65rem, env(safe-area-inset-right));
    bottom: max(0.65rem, env(safe-area-inset-bottom));
    left: max(0.65rem, env(safe-area-inset-left));
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 0.45rem;
    padding: 0.45rem;
    transform: translateY(calc(100% + 2rem));
    border: 1px solid var(--grey);
    border-radius: 4px;
    background: var(--white);
    box-shadow: 0 0.75rem 2rem rgb(17 19 21 / 18%);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .mobile-contact-bar.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-contact-bar a {
    display: flex;
    min-height: 3rem;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--red);
    border-radius: 3px;
    color: var(--red-dark);
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
  }

  .mobile-contact-bar a:first-child {
    background: var(--red);
    color: var(--white);
  }

  .mobile-contact-bar a span {
    margin-left: 0.25rem;
  }

  body.has-mobile-contact-bar {
    padding-bottom: calc(5rem + env(safe-area-inset-bottom));
  }

  body.has-mobile-contact-bar .consent-settings {
    right: max(0.75rem, env(safe-area-inset-right));
    bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px)) !important;
  }
}

@media (max-width: 44rem) {
  :root {
    --section: 3.75rem;
  }

  h1 {
    font-size: clamp(2.55rem, 11vw, 3.3rem);
  }

  .hero {
    padding-top: 3rem;
  }

  .hero__grid {
    gap: 2.5rem;
  }

  .hero__copy .action-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__copy .button {
    width: 100%;
  }

  .hero__grid,
  .contact-hero__grid,
  .service-row__grid,
  .section-heading--split,
  .page-intro__grid,
  .details-grid,
  .coverage-callout__inner,
  .not-found__grid {
    grid-template-columns: 1fr;
  }

  .hero__media,
  .service-row__media,
  .contact-hero__media {
    max-width: 31rem;
  }

  .page-intro__grid,
  .section-heading--split {
    gap: 1rem;
  }

  .offer-list {
    grid-template-columns: 1fr;
  }

  .offer-item,
  .offer-item:first-child {
    border-top: 1px solid var(--grey);
    border-left: 0;
  }

  .offer-item:first-child {
    border-top: 0;
  }

  .offer-item p {
    min-height: 0;
  }

  .work-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, minmax(17rem, 70vw));
  }

  .work-gallery__feature {
    grid-row: auto;
  }

  .contact-actions,
  .detail-pair {
    grid-template-columns: 1fr;
  }

  .contact-action {
    min-height: 9.5rem;
  }

  .coverage-callout__inner {
    align-items: start;
  }

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

  .audience-links {
    justify-content: flex-start;
  }

  .privacy-choice {
    grid-template-columns: 1fr;
  }

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

  .brand--footer {
    width: 11rem;
  }

  .site-footer__contact {
    grid-column: auto;
  }

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

  .site-footer__bottom nav {
    justify-content: flex-start;
  }
}

@media (max-width: 28rem) {
  .site-header__inner {
    grid-template-columns: minmax(8rem, 10rem) 1fr auto;
  }

  .menu-toggle__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .js .primary-nav__mobile-actions,
  .contact-actions {
    grid-template-columns: 1fr;
  }

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

  .work-gallery figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.15rem;
  }

  .work-gallery figcaption span {
    text-align: left;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* The consent UI injects its own late stylesheet. Keep its persistent control
   clear of the mobile contact bar even when that stylesheet loads last. */
@media (max-width: 58rem) {
  body.has-mobile-contact-bar {
    --consent-settings-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
  }

  body.has-mobile-contact-bar button.consent-settings {
    right: max(0.75rem, env(safe-area-inset-right, 0px)) !important;
    bottom: var(--consent-settings-bottom) !important;
  }

  body.primary-actions-visible > button.consent-settings {
    display: none !important;
  }
}

.consent-banner .consent-banner__close[hidden] {
  display: none !important;
}

/* C — Strong & practical --------------------------------------------------- */

:root {
  --red: #c8273b;
  --red-dark: #a91f31;
  --charcoal: #252829;
  --ink: #202425;
  --grey: #d7d9da;
  --steel: #f2f3f3;
  --muted: #6a6f71;
  --shell: 74rem;
  --gutter: clamp(1.25rem, 3vw, 2rem);
}

body {
  color: var(--ink);
  font-family: var(--body);
}

:focus-visible {
  outline-color: #f8d34a;
  box-shadow: 0 0 0 2px var(--charcoal);
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 0.005em;
  line-height: 0.96;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3.5rem, 6vw, 5rem);
}

h2 {
  font-size: clamp(2.75rem, 5vw, 4.25rem);
}

h3 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.eyebrow {
  gap: 0;
  margin-bottom: 1.25rem;
  color: var(--red);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.045em;
}

.eyebrow > span {
  display: none;
}

.hero--home .eyebrow,
.page-intro .eyebrow,
.contact-hero .eyebrow,
.not-found .eyebrow {
  color: #f26372;
}

.button {
  min-height: 3.75rem;
  gap: 0.75rem;
  border-radius: 4px;
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
}

.button[data-contact-type]::before,
.header-call::before,
.mobile-contact-bar a::before {
  width: 1.4rem;
  height: 1.4rem;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.button[data-contact-type="call"]::before,
.header-call::before,
.mobile-contact-bar a[data-contact-type="call"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79a15.5 15.5 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.02-.24c1.12.37 2.33.57 3.57.57a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1C10.61 21 3 13.39 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.25.2 2.45.57 3.57a1 1 0 0 1-.25 1.02l-2.2 2.2Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79a15.5 15.5 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.02-.24c1.12.37 2.33.57 3.57.57a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1C10.61 21 3 13.39 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.25.2 2.45.57 3.57a1 1 0 0 1-.25 1.02l-2.2 2.2Z'/%3E%3C/svg%3E");
}

.button[data-contact-type="whatsapp"]::before,
.mobile-contact-bar a[data-contact-type="whatsapp"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.9' d='M20.5 11.8a8.45 8.45 0 0 1-12.47 7.42L3 20.55l1.35-4.88A8.44 8.44 0 1 1 20.5 11.8Zm-11.8-4c.2-.45.42-.46.8-.47h.37c.14 0 .35.05.53.45.18.4.62 1.51.68 1.62.05.11.09.24.01.38-.07.15-.11.24-.22.37-.11.13-.24.29-.34.39-.11.11-.22.23-.1.45.12.22.54.88 1.15 1.43.79.7 1.45.92 1.67 1.03.21.11.34.1.46-.06.13-.14.55-.64.69-.87.15-.21.29-.18.49-.11.2.07 1.28.61 1.5.72.22.11.37.16.42.25.06.09.06.53-.13 1.04-.18.51-1.08.98-1.48 1.04-.38.06-.87.09-1.41-.09-.33-.1-.77-.24-1.32-.48-.58-.25-2.54-.93-4.32-3.35-.5-.67-.84-1.42-.93-1.66-.1-.24-1-2.39.1-3.61Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.9' d='M20.5 11.8a8.45 8.45 0 0 1-12.47 7.42L3 20.55l1.35-4.88A8.44 8.44 0 1 1 20.5 11.8Zm-11.8-4c.2-.45.42-.46.8-.47h.37c.14 0 .35.05.53.45.18.4.62 1.51.68 1.62.05.11.09.24.01.38-.07.15-.11.24-.22.37-.11.13-.24.29-.34.39-.11.11-.22.23-.1.45.12.22.54.88 1.15 1.43.79.7 1.45.92 1.67 1.03.21.11.34.1.46-.06.13-.14.55-.64.69-.87.15-.21.29-.18.49-.11.2.07 1.28.61 1.5.72.22.11.37.16.42.25.06.09.06.53-.13 1.04-.18.51-1.08.98-1.48 1.04-.38.06-.87.09-1.41-.09-.33-.1-.77-.24-1.32-.48-.58-.25-2.54-.93-4.32-3.35-.5-.67-.84-1.42-.93-1.66-.1-.24-1-2.39.1-3.61Z'/%3E%3C/svg%3E");
}

.site-header {
  border-bottom: 0;
  box-shadow: 0 1px 0 rgb(37 40 41 / 10%);
}

.site-header__inner {
  min-height: 6.35rem;
  grid-template-columns: minmax(15rem, 17.5rem) 1fr auto;
  gap: clamp(1.5rem, 4vw, 3.25rem);
}

.brand {
  width: min(100%, 17.5rem);
}

.primary-nav__links {
  gap: clamp(1.4rem, 3vw, 2.6rem);
}

.primary-nav__links a {
  font-weight: 600;
}

.header-call {
  min-height: 3rem;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  border-left: 1px solid var(--grey);
  padding-left: clamp(1rem, 2.5vw, 2rem);
}

.header-call::before {
  color: var(--red);
}

.header-call strong {
  color: var(--charcoal);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 700;
}

.header-call:hover strong {
  color: var(--red-dark);
}

/* Homepage hero: one continuous charcoal-and-photo structure. */

.hero--home {
  padding: 0;
}

.hero--home .hero__grid {
  width: min(100%, var(--shell));
  min-height: 34rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
}

.hero--home .hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 4vw, 3.5rem);
  background: var(--charcoal);
  color: var(--white);
}

.hero--home .hero__copy h1 {
  max-width: none;
  margin-bottom: 1.1rem;
  color: var(--white);
  font-size: 4rem;
  line-height: 0.93;
}

.hero--home .hero__lede {
  max-width: 31rem;
  margin-bottom: 0;
  color: #f1f2f2;
  font-size: clamp(1.1rem, 2vw, 1.28rem);
  line-height: 1.42;
}

.hero--home .action-row {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 0.75rem;
  margin-top: 1.7rem;
}

.hero--home .button {
  min-height: 4.1rem;
  padding-inline: 1rem;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

.hero--home .button--secondary,
.page-intro .button--secondary {
  border-color: var(--white);
  background: transparent;
  color: var(--white);
}

.hero--home .button--secondary:hover,
.page-intro .button--secondary:hover {
  background: var(--white);
  color: var(--charcoal);
}

.hero--home .button[data-contact-type="whatsapp"] {
  border-color: #128c4a;
  background: #25d366;
  color: #0b321b;
}

.hero--home .button[data-contact-type="whatsapp"]:hover {
  border-color: #0f753e;
  background: #20bd5a;
  color: #082d17;
}

.hero--home .hero__coverage {
  margin-top: 0.95rem;
  color: #e5e7e7;
  font-size: 0.9rem;
}

.hero--home .hero__media {
  min-height: 34rem;
}

.hero--home .scaffold-frame {
  position: relative;
  padding: 0;
}

.hero--home .scaffold-frame::before {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0.42rem;
  height: auto;
  border: 0;
  background: var(--red);
  content: "";
}

.hero--home .scaffold-frame__picture,
.hero--home .scaffold-frame__picture img {
  width: 100%;
  height: 100%;
}

.hero--home .scaffold-frame__picture img {
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center center;
}

.hero--home .scaffold-frame__joint--top-left,
.hero--home .scaffold-frame__joint--bottom-left {
  position: absolute;
  z-index: 4;
  left: -1.05rem;
  display: block;
  width: 2.4rem;
  height: 0.42rem;
  background: var(--red);
}

.hero--home .scaffold-frame__joint--top-left {
  top: 2.7rem;
}

.hero--home .scaffold-frame__joint--bottom-left {
  bottom: 2.7rem;
}

.hero--home .scaffold-frame__joint--top-right,
.hero--home .scaffold-frame__joint--bottom-right,
.hero--home .scaffold-frame__brace {
  display: none;
}

/* The first service block mirrors the clean white reference panel. */

.audience-section {
  padding-block: clamp(2.5rem, 5vw, 4.25rem);
  background: var(--white);
}

.audience-section__heading {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(12rem, 1fr);
  align-items: start;
  gap: 1.75rem 3rem;
}

.audience-section__heading h2 {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  padding-bottom: 1.25rem;
  font-size: clamp(3rem, 5vw, 4rem);
}

.audience-section__heading h2::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3.5rem;
  height: 0.25rem;
  background: var(--red);
  content: "";
}

.audience-links {
  display: grid;
  grid-column: 1;
  grid-row: 2;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: stretch;
  gap: 0;
}

.audience-links a {
  position: relative;
  min-height: 5.75rem;
  border: 0;
  border-left: 1px solid var(--grey);
  padding: 1.2rem 1.5rem 1.8rem;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  font-weight: 900;
  line-height: 1;
  text-transform: none;
}

.audience-links a:first-child {
  border-left: 0;
  padding-left: 0;
}

.audience-links a::after {
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  width: 3rem;
  height: 0.2rem;
  background: var(--red);
  content: "";
}

.audience-links a:first-child::after {
  left: 0;
}

.audience-section__media {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: stretch;
  margin: 0;
}

.audience-section__media img {
  width: 100%;
  height: 100%;
  min-height: 12rem;
  object-fit: cover;
}

.audience-section .offer-list {
  margin-top: 3rem;
}

.offer-item h3,
.service-row__copy h2,
.contact-strip h2,
.coverage-callout h2,
.section-heading h2 {
  letter-spacing: 0.005em;
}

/* Inner pages carry the charcoal/red C system with quieter proportions. */

.page-intro {
  padding-block: clamp(3.5rem, 7vw, 6rem);
  border-bottom: 0;
  background: var(--charcoal);
  color: var(--white);
}

.page-intro h1 {
  max-width: 10ch;
  color: var(--white);
  font-size: clamp(3.5rem, 6vw, 5.2rem);
}

.page-intro__grid > div > p {
  color: #eef0f0;
}

.service-row .scaffold-frame {
  padding: 0;
  border-left: 0.4rem solid var(--red);
}

.service-row .scaffold-frame::before {
  display: none;
}

.contact-hero {
  padding: 0;
  background: var(--charcoal);
  color: var(--white);
}

.contact-hero__grid {
  width: min(100%, var(--shell));
  min-height: 34rem;
  align-items: stretch;
  gap: 0;
}

.contact-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 4rem);
}

.contact-hero__copy h1 {
  color: var(--white);
  font-size: clamp(3.75rem, 6vw, 5rem);
}

.contact-hero__copy > p {
  color: #eef0f0;
}

.contact-hero__media {
  position: relative;
  border-left: 0.4rem solid var(--red);
}

.contact-hero__media img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

.contact-hero__media figcaption {
  position: absolute;
  right: 1rem;
  bottom: 0.75rem;
  left: 1rem;
  margin: 0;
  color: var(--white);
  text-shadow: 0 1px 4px rgb(0 0 0 / 70%);
}

.contact-action {
  min-height: 10rem;
  border-color: var(--white);
  color: var(--white);
}

.contact-action:hover {
  background: var(--white);
  color: var(--charcoal);
}

.contact-action--call {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.contact-action strong {
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  font-weight: 900;
  text-transform: uppercase;
}

.coverage-callout {
  border-top: 0.4rem solid var(--red);
}

.contact-strip .button,
.coverage-callout .button {
  min-height: 3.75rem;
}

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

.contact-strip .button--primary:hover {
  border-color: var(--charcoal);
  background: var(--charcoal);
}

.contact-strip .button[data-contact-type="whatsapp"] {
  border-color: #128c4a;
  background: #25d366;
  color: #0b321b;
}

.contact-strip .button[data-contact-type="whatsapp"]:hover {
  border-color: #0f753e;
  background: #20bd5a;
  color: #082d17;
}

.not-found {
  background: var(--charcoal);
  color: var(--white);
}

.not-found__mark {
  color: var(--white);
}

.not-found__copy h1,
.not-found__copy p {
  color: var(--white);
}

.not-found .button--secondary {
  border-color: var(--white);
  background: transparent;
  color: var(--white);
}

.site-footer__contact a:first-child {
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 900;
}

@media (max-width: 68rem) and (min-width: 58.01rem) {
  .site-header__inner {
    grid-template-columns: minmax(15rem, 17.5rem) 1fr auto;
    gap: 1.25rem;
  }

  .brand {
    width: 17.5rem;
  }

  .hero--home .hero__copy {
    padding: 2.5rem;
  }

  .hero--home .hero__copy h1 {
    font-size: 4rem;
  }

  .hero--home .button {
    font-size: 1rem;
  }
}

@media (max-width: 58rem) {
  .site-header__inner {
    min-height: 5.35rem;
    grid-template-columns: minmax(11rem, 13.5rem) 1fr auto;
    gap: 0.5rem;
  }

  .brand {
    width: min(100%, 13.5rem);
  }

  .menu-toggle__icon {
    width: 1.8rem;
    gap: 0.42rem;
  }

  .menu-toggle__icon span {
    height: 3px;
  }

  .mobile-contact-bar {
    right: 0;
    bottom: 0;
    left: 0;
    grid-template-columns: 1.15fr 1fr;
    gap: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: 0 -0.4rem 1.4rem rgb(17 19 21 / 18%);
  }

  .mobile-contact-bar a {
    min-height: 4.75rem;
    gap: 0.55rem;
    border: 0;
    border-radius: 0;
    color: var(--charcoal);
    font-size: 0.95rem;
  }

  .mobile-contact-bar a:first-child {
    color: var(--white);
  }

  .mobile-contact-bar a::before {
    width: 1.35rem;
    height: 1.35rem;
  }

  body.has-mobile-contact-bar {
    padding-bottom: calc(4.75rem + env(safe-area-inset-bottom));
  }
}

@media (max-width: 44rem) {
  .menu-toggle {
    min-width: 3rem;
    min-height: 3rem;
  }

  .menu-toggle__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

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

  .hero--home .hero__copy {
    padding: 2rem 1.25rem 1.75rem;
  }

  .hero--home .hero__copy h1 {
    margin-bottom: 0.9rem;
    font-size: clamp(2.625rem, 12.25vw, 3.3rem);
    line-height: 0.94;
  }

  .hero--home .hero__lede {
    font-size: 1.05rem;
  }

  .hero--home .action-row {
    grid-template-columns: 1fr;
    margin-top: 1.4rem;
  }

  .hero--home .button {
    min-height: 3.65rem;
  }

  .hero--home .hero__media {
    width: 100%;
    max-width: none;
    min-height: 0;
    aspect-ratio: 343 / 329;
    border: 0;
  }

  .hero--home .scaffold-frame::before,
  .hero--home .scaffold-frame__joint {
    display: none;
  }

  .audience-section__heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .audience-section__heading h2 {
    font-size: 3rem;
  }

  .audience-links {
    grid-template-columns: 1fr;
  }

  .audience-links a,
  .audience-links a:first-child {
    min-height: 0;
    border-top: 1px solid var(--grey);
    border-left: 0;
    padding: 1rem 0 1.75rem;
  }

  .audience-links a::after,
  .audience-links a:first-child::after {
    bottom: 0.85rem;
    left: 0;
  }

  .audience-section__media {
    grid-row: auto;
    grid-column: auto;
    aspect-ratio: 4 / 3;
  }

  .audience-section .offer-list {
    margin-top: 2.25rem;
  }

  .page-intro h1 {
    font-size: clamp(3rem, 14vw, 4rem);
  }

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

  .contact-hero__copy {
    padding: 2.5rem 1.25rem;
  }

  .contact-hero__copy h1 {
    font-size: clamp(3rem, 14vw, 4rem);
  }

  .contact-hero__media {
    width: 100%;
    max-width: none;
    border-top: 0.35rem solid var(--red);
    border-left: 0;
  }

  .contact-hero__media img {
    aspect-ratio: 1 / 0.9;
  }

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

  .contact-action {
    min-height: 8.5rem;
  }
}

@media (max-width: 19.99rem) {
  .site-header__inner {
    min-height: 4.75rem;
    grid-template-columns: minmax(9.5rem, 11.5rem) 1fr auto;
  }

  .brand {
    width: 11.5rem;
  }

  .hero--home .hero__copy h1 {
    font-size: clamp(2.55rem, 13.2vw, 2.85rem);
  }

  .hero--home .hero__lede {
    font-size: 1rem;
  }

  .mobile-contact-bar a {
    flex-direction: column;
    gap: 0.15rem;
    font-size: 0.82rem;
  }

  .mobile-contact-bar a span {
    margin-left: 0;
  }
}
