:root {
  --ink: #101112;
  --charcoal: #1a1b1d;
  --muted: #62656a;
  --line: #d9d8d4;
  --paper: #f4f2ed;
  --white: #ffffff;
  --red: #d7192d;
  --red-dark: #b80f20;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

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

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

img {
  display: block;
}

:focus-visible {
  outline: 3px solid #ff8090;
  outline-offset: 3px;
}

.site-shell {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.concept-note {
  background: var(--ink);
  color: #d7d7d7;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.concept-note-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.concept-note strong {
  color: var(--white);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.concept-note strong::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-left: 14px;
  border-radius: 50%;
  background: var(--red);
  vertical-align: middle;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(16, 17, 18, 0.12);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-logo {
  width: 58px;
  height: 58px;
  overflow: hidden;
  border: 1px solid #d5d5d5;
  border-radius: 50%;
  background: var(--white);
}

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

.brand-copy {
  display: grid;
  gap: 2px;
  text-transform: uppercase;
}

.brand-copy strong {
  font-size: 17px;
  letter-spacing: 0.07em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding-block: 10px;
  color: #343537;
  font-size: 13px;
  font-weight: 700;
}

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

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  min-height: 52px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

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

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

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--white);
}

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

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 52%) minmax(0, 48%);
  background: var(--ink);
  color: var(--white);
}

.hero-copy {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 96px 7vw 96px 24px;
  background:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    var(--ink);
  background-size: 64px 64px;
}

.hero-copy-inner {
  width: min(620px, 100%);
}

.eyebrow {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d8d8d8;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 30px;
  height: 2px;
  background: var(--red);
}

.eyebrow-dark {
  color: #54575b;
}

.hero h1,
.section h2,
.contact-section h2 {
  margin: 0;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(51px, 5.8vw, 84px);
  font-weight: 850;
}

.hero h1::after {
  content: ".";
  color: var(--red);
}

.hero-lead {
  max-width: 600px;
  margin: 30px 0 0;
  color: #c8c9cb;
  font-size: 17px;
  line-height: 1.72;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.rating-line {
  margin-top: 38px;
  padding-top: 25px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.16);
  color: #aeb0b3;
  font-size: 13px;
}

.rating-line strong {
  color: var(--white);
  font-size: 15px;
}

.stars {
  color: var(--red);
  letter-spacing: 0.08em;
}

.hero-media {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #343434;
}

.hero-media > .source-crop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}

.hero-media > .source-crop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16,17,18,0.32), transparent 38%), linear-gradient(0deg, rgba(16,17,18,0.45), transparent 42%);
}

.hero-media .crop-wide img {
  width: auto;
  height: 138.7%;
  left: -19.4%;
  top: -20.6%;
}

.hero-media-card {
  position: absolute;
  right: 32px;
  bottom: 35px;
  z-index: 2;
  min-width: 284px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255,255,255,0.94);
  color: var(--ink);
  box-shadow: 0 24px 60px rgba(0,0,0,0.2);
}

.media-card-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: var(--white);
  font-size: 21px;
  font-weight: 900;
}

.hero-media-card div {
  display: grid;
  gap: 4px;
}

.hero-media-card strong {
  font-size: 14px;
}

.hero-media-card div span {
  color: var(--muted);
  font-size: 11px;
}

.photo-label {
  position: absolute;
  left: 24px;
  bottom: 20px;
  z-index: 2;
  margin: 0;
  color: rgba(255,255,255,0.76);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

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

.trust-item {
  min-height: 112px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  border-right: 1px solid var(--line);
}

.trust-item:first-child {
  border-left: 1px solid var(--line);
}

.trust-item strong {
  font-size: 14px;
}

.trust-item span {
  color: var(--muted);
  font-size: 11px;
}

.section {
  padding-block: 120px;
}

.section-heading {
  margin-bottom: 58px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 80px;
  align-items: end;
}

.section h2,
.contact-section h2 {
  font-size: clamp(40px, 5vw, 67px);
  font-weight: 850;
}

.split-heading > p,
.work-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #c8c7c2;
  border-left: 1px solid #c8c7c2;
}

.service-card {
  min-height: 348px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #c8c7c2;
  border-bottom: 1px solid #c8c7c2;
  background: rgba(255,255,255,0.3);
  transition: background 200ms ease, transform 200ms ease;
}

.service-card:hover {
  position: relative;
  z-index: 2;
  background: var(--white);
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(16,17,18,0.09);
}

.service-number {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.service-card h3 {
  max-width: 330px;
  margin: 56px 0 16px;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.service-card a {
  margin-top: auto;
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #deddd8;
  color: #303134;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card a span {
  color: var(--red);
  font-size: 17px;
}

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

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(60px, 8vw, 112px);
  align-items: center;
}

.about-gallery {
  position: relative;
  min-height: 680px;
}

.source-crop {
  position: relative;
  overflow: hidden;
  background: #d7d4cd;
}

.source-crop img {
  position: absolute;
  max-width: none;
}

.crop-four-three {
  aspect-ratio: 4 / 3;
}

.crop-four-three img {
  width: 184.6%;
  left: -41.2%;
  top: -19.9%;
}

.crop-wide {
  aspect-ratio: 16 / 9;
}

.crop-wide img {
  width: 138.9%;
  left: -18.2%;
  top: -14.9%;
}

.about-photo-main {
  width: 78%;
  box-shadow: 0 25px 70px rgba(16,17,18,0.15);
}

.about-photo-secondary {
  position: absolute;
  right: 0;
  bottom: 10px;
  width: 51%;
  border: 10px solid var(--white);
  box-shadow: 0 20px 45px rgba(16,17,18,0.16);
}

.experience-card {
  position: absolute;
  left: 8%;
  bottom: 3px;
  z-index: 3;
  width: 235px;
  padding: 24px;
  display: grid;
  gap: 8px;
  background: var(--red);
  color: var(--white);
}

.experience-card strong {
  font-size: 18px;
}

.experience-card span {
  color: rgba(255,255,255,0.78);
  font-size: 12px;
  line-height: 1.5;
}

.about-copy .large-copy {
  margin: 32px 0 20px;
  color: #292a2d;
  font-size: 19px;
  line-height: 1.6;
}

.about-copy > p:not(.eyebrow):not(.large-copy) {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
}

.quality-list {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.quality-list div {
  padding: 18px 8px 18px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
}

.quality-list div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.quality-list div:nth-child(even) {
  padding-left: 18px;
}

.quality-list span {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 10px;
}

.work-section {
  background: var(--charcoal);
  color: var(--white);
}

.work-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.5fr);
  gap: 80px;
  align-items: end;
}

.work-heading > p {
  color: #aaaeb1;
}

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

.work-card {
  margin: 0;
  background: #242527;
}

.work-card-large {
  grid-row: span 2;
}

.work-card-large .source-crop {
  height: calc(100% - 62px);
  aspect-ratio: auto;
}

.work-card-large .source-crop img {
  width: auto;
  height: 138%;
  left: -57%;
  top: -20%;
}

.work-card figcaption {
  min-height: 62px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #dedfe0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-card figcaption span {
  color: var(--red);
}

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

.centered-heading {
  max-width: 790px;
  margin-inline: auto;
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
}

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

.process-step {
  position: relative;
  min-height: 310px;
  padding: 38px;
  border-top: 1px solid #bebdb9;
  border-right: 1px solid #bebdb9;
  border-bottom: 1px solid #bebdb9;
}

.process-step:first-child {
  border-left: 1px solid #bebdb9;
}

.process-step::after {
  content: "→";
  position: absolute;
  top: 38px;
  right: -15px;
  z-index: 2;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
}

.process-step:last-child::after {
  display: none;
}

.process-step > span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.process-step h3 {
  margin: 72px 0 15px;
  font-size: 23px;
  letter-spacing: -0.03em;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.reviews-section {
  background: var(--red);
  color: var(--white);
}

.reviews-header {
  margin-bottom: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 80px;
  align-items: end;
}

.reviews-header .eyebrow {
  color: rgba(255,255,255,0.72);
}

.reviews-header .eyebrow span {
  background: var(--white);
}

.reviews-header h2 {
  max-width: 820px;
}

.reviews-score {
  width: 185px;
  padding-left: 25px;
  display: grid;
  border-left: 1px solid rgba(255,255,255,0.35);
}

.reviews-score .stars {
  color: var(--white);
  font-size: 12px;
}

.reviews-score strong {
  margin-top: 7px;
  font-size: 54px;
  letter-spacing: -0.05em;
}

.reviews-score span:last-child {
  color: rgba(255,255,255,0.75);
  font-size: 11px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.36);
  border-left: 1px solid rgba(255,255,255,0.36);
}

.review-card {
  min-height: 360px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255,255,255,0.36);
  border-bottom: 1px solid rgba(255,255,255,0.36);
}

.quote-mark {
  color: rgba(255,255,255,0.5);
  font-family: Georgia, serif;
  font-size: 70px;
  line-height: 0.8;
}

.review-card > p {
  margin: 46px 0 40px;
  font-size: 19px;
  line-height: 1.55;
}

.review-card > div {
  margin-top: auto;
  padding-top: 20px;
  display: grid;
  gap: 5px;
  border-top: 1px solid rgba(255,255,255,0.25);
}

.review-card strong {
  font-size: 12px;
}

.review-card div span {
  color: rgba(255,255,255,0.7);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-disclaimer {
  margin: 18px 0 0;
  color: rgba(255,255,255,0.7);
  font-size: 10px;
}

.contact-section {
  padding-block: 120px;
  background: var(--ink);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(500px, 1.12fr);
  gap: clamp(60px, 8vw, 112px);
  align-items: center;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 28px 0 0;
  color: #b9bbbe;
  font-size: 16px;
  line-height: 1.75;
}

.contact-details {
  margin-top: 42px;
  border-top: 1px solid rgba(255,255,255,0.16);
}

.contact-details div {
  min-height: 70px;
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.16);
}

.contact-details span {
  color: #85888c;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-details strong {
  font-size: 13px;
}

.quote-card {
  padding: clamp(28px, 4vw, 48px);
  background: var(--white);
  color: var(--ink);
}

.quote-card-header {
  margin-bottom: 34px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
}

.quote-card-header > div {
  display: grid;
  gap: 7px;
}

.quote-card-header > div > span {
  color: var(--red);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.quote-card h3 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.form-status {
  padding: 7px 9px;
  border: 1px solid #d5d5d2;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.form-grid label {
  display: grid;
  gap: 9px;
  color: #4a4c50;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.full-field {
  grid-column: 1 / -1;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid #d1d1cf;
  border-radius: 0;
  background: #faf9f7;
  color: var(--ink);
  font-size: 13px;
  text-transform: none;
}

.form-grid input,
.form-grid select {
  height: 49px;
  padding: 0 14px;
}

.form-grid textarea {
  min-height: 115px;
  padding: 14px;
  resize: vertical;
}

.form-button {
  width: 100%;
  margin-top: 20px;
}

.form-button:disabled {
  cursor: not-allowed;
  opacity: 0.9;
}

.form-button:disabled:hover {
  transform: none;
}

.form-feedback {
  margin: 12px 0 0;
  padding: 12px 14px;
  border: 1px solid currentColor;
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.form-feedback.is-success {
  background: #eef8f0;
  color: #226535;
}

.form-feedback.is-error {
  background: #fff0f0;
  color: #9d1f1f;
}

.site-footer {
  padding-top: 72px;
  border-top: 1px solid #333537;
  background: #0b0c0d;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 0.6fr 1fr;
  gap: 70px;
  padding-bottom: 62px;
}

.brand-footer .brand-logo {
  border-color: #444;
}

.brand-footer .brand-copy small {
  color: #96999d;
}

.footer-brand p {
  max-width: 350px;
  margin: 22px 0 0;
  color: #93969a;
  font-size: 13px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #929599;
  font-size: 12px;
}

.footer-links strong {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.footer-bottom {
  min-height: 74px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  border-top: 1px solid #2a2b2d;
  color: #6f7276;
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 690px;
    justify-content: flex-start;
    padding-inline: max(24px, calc((100vw - 960px) / 2));
  }

  .hero-copy-inner {
    width: min(760px, 100%);
  }

  .hero-media {
    min-height: 620px;
  }

  .hero-media .crop-wide img {
    width: 138.9%;
    height: auto;
    left: -18.2%;
    top: -14.9%;
  }

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

  .about-gallery {
    width: min(760px, 100%);
  }

  .about-copy,
  .contact-copy {
    max-width: 760px;
  }

  .contact-grid {
    gap: 65px;
  }

  .quote-card {
    max-width: 760px;
  }
}

@media (max-width: 820px) {
  .site-shell {
    width: min(100% - 32px, 700px);
  }

  .concept-note-inner {
    min-height: 42px;
    flex-wrap: wrap;
    padding-block: 8px;
  }

  .concept-note strong::after {
    display: none;
  }

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

  .desktop-nav {
    display: none;
  }

  .header-inner > .button {
    display: none;
  }

  .brand-logo {
    width: 49px;
    height: 49px;
  }

  .hero-copy {
    min-height: auto;
    padding: 76px 20px 72px;
  }

  .hero-media {
    min-height: 490px;
  }

  .hero-media-card {
    right: 18px;
    bottom: 30px;
    min-width: 260px;
  }

  .photo-label {
    left: 18px;
    bottom: 12px;
    max-width: 220px;
  }

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

  .trust-item:nth-child(odd) {
    border-left: 1px solid var(--line);
  }

  .trust-item:last-child {
    grid-column: 1 / -1;
  }

  .section,
  .contact-section {
    padding-block: 84px;
  }

  .split-heading,
  .work-heading,
  .reviews-header {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .service-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 315px;
  }

  .about-gallery {
    min-height: 590px;
  }

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

  .process-step {
    min-height: 250px;
    border-left: 1px solid #bebdb9;
    border-top: 0;
  }

  .process-step:first-child {
    border-top: 1px solid #bebdb9;
  }

  .process-step::after {
    top: auto;
    right: 30px;
    bottom: -15px;
    transform: rotate(90deg);
  }

  .process-step h3 {
    margin-top: 45px;
  }

  .reviews-score {
    width: auto;
    padding: 22px 0 0;
    border-top: 1px solid rgba(255,255,255,0.35);
    border-left: 0;
  }

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

  .work-card-large {
    grid-row: auto;
  }

  .work-card-large .source-crop {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .work-card-large .source-crop img {
    width: 184.6%;
    height: auto;
    left: -41.2%;
    top: -19.9%;
  }

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

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 20px;
  }
}

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

  .concept-note span {
    display: none;
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .rating-line {
    align-items: flex-start;
  }

  .hero-media {
    min-height: 370px;
  }

  .hero-media .crop-wide img {
    width: auto;
    height: 138%;
    left: -58%;
    top: -19%;
  }

  .hero-media-card {
    right: 12px;
    bottom: 26px;
    min-width: 0;
    width: calc(100% - 24px);
  }

  .photo-label {
    display: none;
  }

  .trust-grid {
    width: 100%;
  }

  .trust-item {
    min-height: 94px;
    padding: 20px 16px;
  }

  .section h2,
  .contact-section h2 {
    font-size: 39px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .service-card {
    min-height: 300px;
    padding: 27px;
  }

  .service-card h3 {
    margin-top: 44px;
  }

  .about-gallery {
    min-height: 465px;
  }

  .about-photo-main {
    width: 91%;
  }

  .about-photo-secondary {
    width: 54%;
    border-width: 6px;
  }

  .experience-card {
    left: 0;
    width: 210px;
    padding: 18px;
  }

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

  .quality-list div:nth-child(odd) {
    border-right: 0;
  }

  .quality-list div:nth-child(even) {
    padding-left: 0;
  }

  .process-step {
    padding: 30px;
  }

  .review-card {
    min-height: 330px;
    padding: 28px;
  }

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

  .full-field {
    grid-column: auto;
  }

  .contact-details div {
    grid-template-columns: 76px 1fr;
  }

  .quote-card-header {
    align-items: flex-start;
    flex-direction: column-reverse;
  }

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

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

  .mobile-action-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 40;
    min-height: 66px;
    display: grid;
    grid-template-columns: 0.75fr 1.2fr 0.75fr;
    box-shadow: 0 -10px 35px rgba(0,0,0,0.18);
  }

  .mobile-action-bar a {
    display: grid;
    place-items: center;
    border-right: 1px solid #353638;
    background: var(--ink);
    color: var(--white);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-align: center;
    text-transform: uppercase;
  }

  .mobile-action-bar a:nth-child(2) {
    background: var(--red);
  }
}

/* The production assets are now tightly cropped project photos, so no browser
   screenshot area can appear at any viewport size. */
.source-crop img,
.crop-four-three img,
.crop-wide img,
.hero-media .crop-wide img,
.work-card-large .source-crop img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media .crop-wide img {
  object-position: 64% center;
}

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

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