@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,600;0,700;0,800;1,700&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --ink: #151515;
  --ink-soft: #202020;
  --panel: #292929;
  --silver: #dedede;
  --silver-soft: #a8a8a8;
  --paper: #f2f2f0;
  --paper-dark: #e2e2df;
  --red: #ef182c;
  --red-dark: #bd0e20;
  --green: #25d366;
  --radius-lg: 1.4rem;
  --radius-md: 0.85rem;
  --radius-sm: 0.45rem;
  --max: 1240px;
  --gutter: clamp(1.25rem, 5vw, 4.5rem);
  --display: "Barlow Condensed", Impact, sans-serif;
  --body: "Inter", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 4.75rem;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-150%);
  padding: 0.65rem 0.9rem;
  background: white;
  color: black;
  font-weight: 700;
}

.skip-link:focus {
  transform: none;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  padding: 1rem var(--gutter);
  color: white;
  border-bottom: 1px solid rgb(255 255 255 / 14%);
}

.site-header nav {
  display: flex;
  gap: 1.5rem;
}

.site-header nav a {
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: min(35rem, 100svh);
  display: grid;
  align-items: start;
  overflow: hidden;
  color: white;
  background: var(--ink);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: -10%;
  bottom: -1.5rem;
  width: 70%;
  height: 5rem;
  background: var(--red);
  clip-path: polygon(11% 80%, 100% 0, 100% 100%, 0 100%);
  opacity: 0.92;
}

.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-photo {
  background: url("assets/hero-ace-red-car-mobile.webp") center top / cover no-repeat;
  transform: scale(1.02);
  animation: hero-in 1.4s cubic-bezier(.2,.7,.2,1) both;
}

.hero-shade {
  background:
    linear-gradient(180deg, rgb(10 10 10 / 78%) 0%, rgb(10 10 10 / 25%) 27%, rgb(10 10 10 / 62%) 51%, rgb(10 10 10 / 93%) 80%, var(--ink) 100%),
    linear-gradient(90deg, rgb(10 10 10 / 30%), rgb(10 10 10 / 5%) 50%, rgb(10 10 10 / 28%));
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(100%, var(--max));
  min-height: min(35rem, 100svh);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0.5rem 1rem 4.75rem;
  text-align: center;
}

.hero-logo {
  width: clamp(9.75rem, 43vw, 10.75rem);
  margin: -0.25rem auto -0.1rem;
}

.hero-copy .eyebrow {
  width: 100%;
  max-width: 20rem;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.hero-copy .eyebrow::after {
  content: "";
  width: 2.2rem;
  height: 2px;
  background: var(--red);
}

.hero-copy .eyebrow span { width: 2.2rem; }

.hero-location-title { display: none; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

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

h1,
h2 {
  margin-bottom: 1.25rem;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.88;
  text-transform: uppercase;
}

h1 {
  width: 100%;
  max-width: none;
  font-size: clamp(2.65rem, 12.5vw, 3.15rem);
}

h1 > span {
  display: block;
}

h2 {
  font-size: clamp(3.4rem, 14vw, 7.25rem);
}

h1 em,
h2 em {
  color: var(--red);
  font-style: italic;
  font-weight: 700;
}

.hero-intro {
  width: 100%;
  max-width: 21.5rem;
  margin-bottom: 1rem;
  color: #e0e0e0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-actions .text-link { font-size: 0.92rem; }

.button {
  display: inline-flex;
  min-height: 3.6rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.9rem 1.2rem;
  border: 0;
  border-radius: var(--radius-md);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.button-primary {
  color: #07180d;
  background: var(--green);
  box-shadow: 0 0.6rem 1.8rem rgb(37 211 102 / 24%);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #1fba59;
}

.button svg,
.floating-whatsapp svg {
  width: 1.3rem;
  height: 1.3rem;
  flex: 0 0 auto;
  fill: currentColor;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border-bottom: 1px solid currentColor;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.section {
  padding: 5.25rem var(--gutter);
}

.section-heading {
  display: grid;
  margin: 0 auto 2.5rem;
  max-width: var(--max);
}

.section-heading > p:last-child,
.services-header > p {
  max-width: 32rem;
  color: #555;
}

.job-gallery {
  display: grid;
  gap: 1.25rem;
  max-width: var(--max);
  margin: auto;
}

.empty-gallery {
  overflow: hidden;
  border: 1px solid #c7c7c4;
  border-radius: var(--radius-lg);
  background: #e9e9e6;
}

.empty-visual {
  position: relative;
  min-height: 20rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, transparent 24%, rgb(0 0 0 / 5%) 25%, rgb(0 0 0 / 5%) 26%, transparent 27%) 0 0 / 24px 24px,
    #d8d8d5;
  color: #888;
  font-family: var(--display);
  font-size: clamp(1.3rem, 6vw, 2.5rem);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.empty-visual::before,
.empty-visual::after {
  content: "";
  position: absolute;
  width: 15rem;
  height: 15rem;
  border: 2.25rem solid rgb(21 21 21 / 7%);
  border-radius: 50%;
}

.empty-visual::before { left: -5rem; }
.empty-visual::after { right: -5rem; }

.empty-divider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: var(--red);
}

.empty-copy {
  padding: 1.7rem;
  background: var(--ink);
  color: white;
}

.empty-kicker {
  margin-bottom: 0.55rem;
  color: var(--red);
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.empty-copy h3,
.service-layout h3,
.job-meta h3 {
  margin-bottom: 0.55rem;
  font-family: var(--display);
  font-size: 1.65rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.empty-copy p,
.empty-copy li {
  color: #bdbdbd;
}

.empty-copy ul {
  margin: 1.25rem 0 0;
  padding: 1.25rem 0 0 1.2rem;
  border-top: 1px solid #3c3c3c;
}

.comparison {
  --position: 50%;
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: #303030;
  touch-action: pan-y;
}

.comparison img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-after-wrap {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 0 var(--position));
}

.comparison-label {
  position: absolute;
  top: 1rem;
  z-index: 3;
  padding: 0.3rem 0.55rem;
  color: white;
  background: rgb(15 15 15 / 78%);
  border-radius: var(--radius-sm);
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.comparison-label-before { left: 1rem; }
.comparison-label-after { right: 1rem; }

.comparison-line {
  position: absolute;
  z-index: 3;
  top: 0;
  left: var(--position);
  width: 3px;
  height: 100%;
  display: grid;
  place-items: center;
  background: white;
  transform: translateX(-50%);
}

.comparison-line span {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: white;
  font-weight: 800;
}

.comparison-range {
  position: absolute;
  z-index: 4;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.comparison-range:focus-visible + * { outline: none; }
.comparison:has(.comparison-range:focus-visible) { outline: 4px solid var(--red); outline-offset: 4px; }

.job-meta {
  padding: 1.35rem;
  background: white;
}

.job-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: 0 0.8rem 2.5rem rgb(0 0 0 / 8%);
}

.job-meta p { margin: 0; }

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

.services-header {
  display: grid;
  max-width: var(--max);
  margin: 0 auto 3rem;
}

.services-header > p {
  color: #aaa;
}

.service-layout {
  display: grid;
  gap: 1rem;
  max-width: var(--max);
  margin: auto;
}

.service-feature,
.service-row,
.service-wide {
  display: grid;
  overflow: hidden;
  border: 1px solid #3b3b3b;
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 22%);
}

.service-media {
  position: relative;
  aspect-ratio: 3 / 2;
  margin: 0;
  overflow: hidden;
  background: #111;
}

.service-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(transparent, rgb(0 0 0 / 32%));
  pointer-events: none;
}

.service-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transition: transform 450ms cubic-bezier(.2,.7,.2,1);
}

.service-feature:hover .service-media img,
.service-row:hover .service-media img,
.service-wide:hover .service-media img {
  transform: scale(1.025);
}

.service-copy {
  padding: 1.5rem;
}

.service-wide {
  position: relative;
}

.service-wide::after {
  content: "CUSTOM";
  position: absolute;
  right: -0.25rem;
  bottom: -1.2rem;
  color: rgb(255 255 255 / 3%);
  font-family: var(--display);
  font-size: 6rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.service-layout h3 {
  font-size: clamp(1.8rem, 7vw, 3.2rem);
}

.service-layout p {
  max-width: 34rem;
  margin: 0;
  color: #aaa;
}

.service-imagery-note {
  max-width: var(--max);
  margin: 1rem auto 0;
  color: #858585;
  font-size: 0.78rem;
  line-height: 1.5;
}

.areas-section {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 92% 8%, rgb(239 24 44 / 18%), transparent 28rem),
    #1d1d1d;
  border-top: 1px solid #343434;
}

.areas-section::after {
  content: "SOUTH EAST";
  position: absolute;
  right: -0.15em;
  bottom: -0.26em;
  color: rgb(255 255 255 / 2.5%);
  font-family: var(--display);
  font-size: clamp(6rem, 18vw, 16rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}

.areas-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: auto;
}

.areas-header {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.areas-header h2 {
  margin-bottom: 0;
  font-size: clamp(3.2rem, 13vw, 6.25rem);
}

.areas-intro {
  align-self: end;
  max-width: 35rem;
  color: #c0c0c0;
}

.areas-intro p:last-child {
  margin-bottom: 0;
}

.area-grid {
  display: grid;
  gap: 0.85rem;
}

.area-group {
  padding: 1.35rem;
  border: 1px solid #3b3b3b;
  border-radius: var(--radius-md);
  background: rgb(255 255 255 / 5%);
}

.area-group h3 {
  margin-bottom: 0.9rem;
  color: white;
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1;
  text-transform: uppercase;
}

.area-group ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.area-group li {
  padding: 0.34rem 0.62rem;
  border-radius: 999px;
  color: #dedede;
  background: #2c2c2c;
  font-size: 0.82rem;
  line-height: 1.35;
}

.areas-cta {
  display: grid;
  gap: 1rem;
  align-items: center;
  margin-top: 1.25rem;
  padding: 1.25rem;
  border-left: 3px solid var(--red);
  border-radius: var(--radius-md);
  background: #292929;
}

.areas-cta p {
  margin: 0;
  color: #c9c9c9;
}

.areas-cta strong {
  color: white;
}

.areas-cta .button {
  width: 100%;
}

.contact-section {
  display: grid;
  gap: 3rem;
  max-width: calc(var(--max) + (var(--gutter) * 2));
  margin: auto;
}

.contact-intro > p:not(.eyebrow) {
  max-width: 34rem;
  color: #555;
}

.matt-photo {
  position: relative;
  margin: 0 0 1.75rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink);
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 13%);
}

.matt-photo picture {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.matt-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 61% 50%;
}

.matt-photo figcaption {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  display: grid;
  min-width: 10.5rem;
  padding: 0.7rem 0.85rem;
  border-left: 3px solid var(--red);
  color: white;
  background: rgb(15 15 15 / 88%);
  backdrop-filter: blur(0.35rem);
}

.matt-photo figcaption strong {
  font-family: var(--display);
  font-size: 1.2rem;
  line-height: 1;
  text-transform: uppercase;
}

.matt-photo figcaption span {
  color: #cfcfcf;
  font-size: 0.72rem;
}

.phone-link {
  display: inline-block;
  margin-top: 0.7rem;
  color: var(--red);
  font-family: var(--display);
  font-size: clamp(2rem, 9vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.quote-form {
  align-self: start;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: 0 1rem 4rem rgb(0 0 0 / 8%);
}

.field-row {
  margin-bottom: 1.35rem;
}

.field-row label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.35rem;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.field-row label > span:first-of-type:not(.optional) { color: var(--red); }

.optional {
  color: #777;
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.field-row input,
.field-row textarea {
  width: 100%;
  min-height: 3.35rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid #bdbdb8;
  border-radius: var(--radius-md);
  color: var(--ink);
  background: #f8f8f6;
}

.field-row textarea {
  min-height: 7.5rem;
  resize: vertical;
}

.field-row input:focus,
.field-row textarea:focus {
  border-color: var(--ink);
  outline: 3px solid rgb(239 24 44 / 22%);
}

.field-row input[aria-invalid="true"],
.field-row textarea[aria-invalid="true"] {
  border-color: var(--red);
}

.field-error {
  margin: 0.25rem 0 0;
  color: #b00020;
  font-size: 0.82rem;
}

.split-field {
  display: grid;
  gap: 1rem;
}

.form-note {
  padding: 0.9rem 1rem;
  border-left: 3px solid var(--red);
  border-radius: var(--radius-sm);
  color: #555;
  background: #f0f0ed;
  font-size: 0.87rem;
}

.form-submit { width: 100%; }
.form-status { margin: 0.8rem 0 0; font-size: 0.85rem; }

.site-footer {
  padding: 0 var(--gutter);
  border-top: 3px solid var(--red);
  color: #aaa;
  background: #101010;
  font-size: 0.85rem;
}

.footer-inner {
  display: grid;
  justify-items: center;
  gap: 1rem;
  width: 100%;
  max-width: var(--max);
  margin: auto;
  padding: 2rem 0 6rem;
  text-align: center;
}

.footer-inner > img { width: 8.5rem; }
.footer-copy p { margin-bottom: 0.35rem; }
.site-footer a { color: white; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.floating-whatsapp {
  position: fixed;
  z-index: 50;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  min-height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  color: #07180d;
  background: var(--green);
  box-shadow: 0 0.55rem 1.8rem rgb(0 0 0 / 32%);
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background: #1fba59;
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes hero-in {
  from { opacity: 0; transform: scale(1.08); }
  to { opacity: 1; transform: scale(1.02); }
}

@media (min-width: 360px) and (max-width: 759px) {
  .hero-logo { width: clamp(10.75rem, 46vw, 11.5rem); }
  .hero-copy .eyebrow { font-size: 0.86rem; }
  .hero-copy h1 { font-size: clamp(3.1rem, 13vw, 3.35rem); }
  .hero-intro { max-width: 22.5rem; font-size: 0.95rem; }
  .hero-actions .text-link { font-size: 0.98rem; }
}

@media (min-width: 540px) {
  .site-header { display: flex; }
  .split-field { grid-template-columns: 1fr 1fr; }
  .hero-actions { align-items: center; flex-direction: row; gap: 1.75rem; }
  .empty-copy { padding: 2.25rem; }
}

@media (min-width: 760px) {
  body { padding-bottom: 0; }
  .site-header { padding-block: 1.25rem; }
  .hero { min-height: 100svh; align-items: center; }
  .hero::after { width: 45%; height: 9rem; }
  .hero-photo { width: 100%; left: 0; background-position: center center; }
  .hero-photo { background-image: url("assets/hero-ace-red-car-desktop.webp"); }
  .hero-shade {
    background:
      linear-gradient(90deg, var(--ink) 0%, var(--ink) 38%, rgb(21 21 21 / 76%) 57%, rgb(21 21 21 / 5%) 84%),
      linear-gradient(180deg, rgb(0 0 0 / 45%), transparent 30%, rgb(0 0 0 / 45%));
  }
  .hero-copy {
    min-height: auto;
    display: block;
    padding-right: var(--gutter);
    padding-left: clamp(2.25rem, 3vw, 3rem);
    padding-top: 7rem;
    padding-bottom: 2.5rem;
    text-align: left;
  }
  .hero-logo { width: 17rem; margin: -3.5rem 0 -2.5rem -1rem; }
  .hero-copy .eyebrow { max-width: none; justify-content: flex-start; }
  .hero-copy .eyebrow::after { display: none; }
  .hero-location-title { display: inline; }
  h1 { max-width: 16ch; font-size: clamp(5rem, 6.2vw, 6.5rem); }
  h2 { font-size: clamp(4.25rem, 5.8vw, 6.25rem); }
  .hero-intro { font-size: 1.08rem; }
  .section { padding-block: 7rem; }
  .section-heading { grid-template-columns: 2fr 1fr; column-gap: 3rem; }
  .section-heading .eyebrow { grid-column: 1 / -1; }
  .section-heading h2 { margin-bottom: 0; }
  .section-heading > p:last-child { align-self: end; }
  .empty-gallery { display: grid; grid-template-columns: 1.45fr 1fr; }
  .job-gallery:has(.job-card) { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .job-gallery .empty-gallery { grid-column: 1 / -1; }
  .empty-visual { min-height: 30rem; }
  .services-header { grid-template-columns: 2fr 1fr; gap: 3rem; }
  .services-header > p { align-self: end; }
  .service-layout { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-feature,
  .service-wide {
    grid-column: 1 / -1;
    grid-template-columns: 1.15fr 0.85fr;
    min-height: 24rem;
  }
  .service-feature .service-media,
  .service-wide .service-media {
    min-height: 24rem;
    aspect-ratio: auto;
  }
  .service-feature .service-copy,
  .service-wide .service-copy { align-content: center; }
  .service-wide .service-media { order: 2; }
  .service-wide .service-copy { order: 1; }
  .areas-header { grid-template-columns: 1.4fr 1fr; gap: 3rem; }
  .area-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .areas-cta { grid-template-columns: minmax(0, 1fr) auto; padding: 1.4rem 1.5rem; }
  .areas-cta .button { width: auto; max-width: 27rem; }
  .contact-section {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 4vw, 4rem);
    padding-block: 3.5rem;
  }
  .contact-section h2 {
    margin-bottom: 1rem;
    font-size: clamp(3.75rem, 4.8vw, 4.75rem);
  }
  .contact-intro > p:not(.eyebrow) {
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .matt-photo { margin-bottom: 1rem; }
  .matt-photo picture { aspect-ratio: 16 / 9; }
  .matt-photo img { object-position: 50% 50%; }
  .phone-link { margin-top: 0.35rem; font-size: 2.5rem; }
  .quote-form { padding: 1.5rem; }
  .quote-form .field-row { margin-bottom: 1rem; }
  .quote-form .field-row input,
  .quote-form .field-row textarea {
    min-height: 3rem;
    padding: 0.6rem 0.75rem;
  }
  .quote-form .field-row textarea { min-height: 5.75rem; }
  .quote-form .form-note { margin-bottom: 0.85rem; padding: 0.75rem 0.85rem; }
  .quote-form .form-submit { min-height: 3.25rem; }
  .footer-inner {
    grid-template-columns: auto 1fr;
    justify-items: stretch;
    align-items: center;
    gap: 2rem;
    padding-block: 1.75rem 2.25rem;
    text-align: left;
  }
  .footer-copy { padding-bottom: 0.15rem; }
  .footer-links { justify-content: flex-start; }
  .floating-whatsapp {
    left: auto;
    right: 1.5rem;
    bottom: 1.5rem;
    width: auto;
    min-width: 18rem;
  }
}

@media (min-width: 1100px) {
  .hero-photo {
    right: -4%;
    left: 4%;
    width: auto;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, var(--ink) 0%, var(--ink) 32%, rgb(21 21 21 / 88%) 40%, rgb(21 21 21 / 18%) 50%, transparent 59%),
      linear-gradient(180deg, rgb(0 0 0 / 38%), transparent 30%, rgb(0 0 0 / 42%));
  }
  .hero-copy {
    margin-right: auto;
    margin-left: 0;
    padding-left: clamp(4.5rem, 5vw, 6.75rem);
  }
  .hero-copy h1 { font-size: clamp(4.1rem, 5.25vw, 6.5rem); }
  .hero-intro { max-width: 29rem; }
  .site-header nav { gap: 2.25rem; }
  .empty-copy { padding: 3rem; }
  .area-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 359px) {
  .site-header nav { display: none; }
  .hero-copy { padding-right: 1rem; padding-bottom: 6rem; padding-left: 1rem; }
  .hero-logo { width: 10.75rem; }
  h1 { font-size: 2.45rem; }
  h2 { font-size: 3rem; }
  .button { width: 100%; }
  .text-link { font-size: 0.9rem; }
  .floating-whatsapp { left: 0.5rem; right: 0.5rem; bottom: 0.5rem; font-size: 0.9rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
