/* ============================================================
   DM SANS — auto-hébergée
   La feuille de Google Fonts bloquait le rendu 872 ms sur mobile
   (mesuré par Lighthouse), et envoyait l'adresse IP de chaque
   visiteur à Google, ce que la Loi 25 n'encourage pas. Deux fichiers
   variables, 54 Ko, servis depuis notre propre domaine.
   ============================================================ */
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/dm-sans-latin.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/dm-sans-latin-ext.woff2") format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Painting Solutions — shared design for the home and service pages. */
:root {
  --paper: #ffffff;
  --white: #fff;
  --ink: #172133;
  --muted: #526071;
  --red: #d92d20;
  --red-hover: #b32218;
  --blue: #1268d6;
  --yellow: #ffc83d;
  --line: #dce4ef;
  --surface-tint: #edf4ff;
  --display: "DM Sans", Arial, sans-serif;
  --sans: "DM Sans", Arial, sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
figure,
p,
h1,
h2,
h3 {
  margin: 0;
}
button {
  color: inherit;
}
button:disabled {
  cursor: wait;
  opacity: 0.65;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 5px;
}
::selection {
  background: #ffe1a0;
}
[hidden] {
  display: none !important;
}
.container {
  width: min(1280px, calc(100% - 96px));
  margin-inline: auto;
}
.section {
  padding-block: 100px;
}
h1,
h2 {
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.08;
  text-wrap: balance;
}
h1 {
  font-weight: 800;
  font-size: clamp(45px, 4.55vw, 68px);
}
h2 {
  font-size: clamp(36px, 3.35vw, 49px);
}
h3 {
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: -0.025em;
  font-weight: 600;
}
em {
  font-family: inherit;
  font-weight: inherit;
  font-style: normal;
  font-size: 1em;
  letter-spacing: -0.035em;
  color: var(--red);
}
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  line-height: 1.5;
}
.section .eyebrow,
.hero-copy > .eyebrow,
.contact-copy > .eyebrow {
  color: var(--red);
  margin-bottom: 24px;
}
.section-intro {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 44ch;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  margin-bottom: 44px;
}
.section-heading > .section-intro {
  max-width: 40ch;
  padding-bottom: 4px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 15px 22px;
  min-height: 50px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  border: 1px solid transparent;
  transition:
    background 0.18s,
    color 0.18s;
}
.btn span[aria-hidden] {
  font-size: 20px;
  line-height: 1;
}
.btn-primary {
  background: var(--red);
  color: white;
}
.btn-primary:hover {
  background: var(--red-hover);
}
.btn-text {
  padding-inline: 0;
  border-bottom: 1px solid var(--line);
}
.btn-text:hover {
  color: var(--red);
  border-color: var(--red);
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  background: var(--white);
  padding: 12px 20px;
  z-index: 200;
}
.skip-link:focus {
  top: 12px;
}
.topbar {
  background: var(--red);
  color: #ffffff;
  font-size: 11px;
  letter-spacing: 0.035em;
}
.topbar .container {
  height: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar a {
  font-size: 12px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}
.brand > span {
  font-size: 17px;
  line-height: 1.07;
  letter-spacing: 0.07em;
  font-weight: 700;
}
.brand b {
  font-size: 10px;
  letter-spacing: 0.17em;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 29px;
  font-size: 12px;
  font-weight: 500;
}
.desktop-nav a:hover {
  color: var(--red);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-actions > .btn {
  font-size: 11px;
  min-height: 45px;
  padding: 12px 16px;
  gap: 18px;
}
.language-switch {
  display: flex;
  align-items: center;
  font-size: 11px;
  color: #92958b;
  gap: 1px;
}
.language-switch button {
  padding: 10px 4px;
  border: 0;
  background: none;
  font-size: 11px;
  min-height: 44px;
  color: var(--muted);
}
.language-switch button[aria-pressed="true"] {
  font-weight: 700;
  color: var(--ink);
}
#menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: none;
}
#mobile-menu {
  padding: 16px 24px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  max-height: calc(100dvh - 80px);
  overflow-y: auto;
}
#mobile-menu > a {
  display: flex;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
#mobile-menu > .btn {
  margin-top: 12px;
  padding: 16px;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1.04fr;
  align-items: center;
  gap: 64px;
  padding-block: 54px 56px;
}
.hero-copy > .eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 23px;
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.hero h1 {
  margin-bottom: 24px;
}
.hero-description {
  color: var(--muted);
  max-width: 47ch;
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 29px;
}
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}
.hero-buttons .btn {
  font-size: 12px;
  gap: 16px;
}
.hero-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 21px;
}
.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 535px;
  overflow: hidden;
  background: #dadacc;
}
.hero-visual > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
}
.hero-visual > figcaption {
  position: absolute;
  bottom: 35px;
  left: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--paper);
  padding: 18px 20px;
  font-size: 12px;
  line-height: 1.6;
  max-width: 395px;
}
.caption-index {
  border-right: 1px solid var(--line);
  padding-right: 16px;
  color: var(--red);
  white-space: nowrap;
}
.image-label {
  position: absolute;
  bottom: 10px;
  left: 24px;
  padding: 2px 5px;
  background: rgba(37, 41, 35, 0.85);
  color: #fff;
  font-size: 9px;
  letter-spacing: 0.02em;
}
.trust-strip {
  border-block: 1px solid var(--line);
}
.trust-strip > .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: 24px;
}
.trust-strip .container > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  font-size: 12px;
  border-right: 1px solid var(--line);
}
.trust-strip .container > div:last-child {
  border: 0;
}
.trust-strip span[aria-hidden] {
  color: var(--red);
  font-size: 15px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px;
}
.service-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.13;
}
.service-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.service-card:hover img {
  transform: scale(1.035);
}
.card-arrow {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: var(--paper);
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  font-size: 23px;
  transition:
    background 0.18s,
    color 0.18s;
}
.service-card:hover .card-arrow {
  background: var(--red);
  color: white;
}
.service-text {
  padding-top: 22px;
}
.service-text .eyebrow {
  color: var(--muted);
  font-size: 9px;
  display: block;
  margin-bottom: 10px;
}
.service-text h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.service-text p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
}
.projects-section {
  background: #f7f9fc;
  border-top: 1px solid var(--line);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.project-card {
  min-width: 0;
  background: white;
  border: 1px solid var(--line);
}
.project-image {
  position: relative;
  background: var(--ink);
  overflow: hidden;
}
.project-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.project-play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding-left: 3px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 3px 20px #0003;
  font-size: 20px;
}
.project-platform {
  position: absolute;
  inset: auto 12px 12px auto;
  background: #172133ed;
  color: white;
  padding: 5px 10px;
  font-size: 10px;
  border-radius: 3px;
}
.project-copy {
  padding: 24px;
}
.project-copy .eyebrow {
  display: block;
  margin-bottom: 10px;
  font-size: 10px;
  color: var(--blue);
}
.project-copy h3 {
  font-size: 21px;
  min-height: 2.6em;
}
.project-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
}
.project-link > [aria-hidden] {
  font-size: 22px;
  line-height: 1;
}
.project-card:hover,
.project-card:focus-visible {
  border-color: var(--blue);
}
.project-card:hover .project-link,
.project-card:focus-visible .project-link {
  color: var(--blue);
}
.projects-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 28px;
  padding-top: 28px;
}
.projects-bottom p {
  color: var(--muted);
  font-size: 12px;
}
.contact-social {
  display: grid;
  gap: 4px;
  width: fit-content;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #ffffff40;
  font-size: 12px;
}
.contact-social strong {
  color: var(--yellow);
  font-size: 16px;
}
.contact-social:hover strong {
  text-decoration: underline;
}
@media (max-width: 900px) {
  .projects-grid {
    gap: 16px;
  }
  .project-copy {
    padding: 18px;
  }
  .project-copy h3 {
    font-size: 18px;
  }
}
@media (max-width: 650px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .project-image img {
    aspect-ratio: 4 / 5;
  }
  .project-copy h3 {
    min-height: 0;
    font-size: 22px;
  }
}
.inspiration {
  background: var(--surface-tint);
}
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.gallery-filters button {
  background: transparent;
  border: 1px solid #c5d5e9;
  padding: 10px 20px;
  font-size: 12px;
  min-height: 44px;
}
.gallery-filters button[aria-pressed="true"] {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.gallery-filters button:hover {
  border-color: var(--ink);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}
.gallery-card > img {
  width: 100%;
  aspect-ratio: 1.65;
  object-fit: cover;
}
.gallery-card figcaption {
  padding-top: 19px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.gallery-card .eyebrow {
  display: block;
  font-size: 9px;
  color: var(--muted);
  margin-bottom: 5px;
}
.gallery-card h3 {
  font-size: 20px;
}
.gallery-card figcaption > a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid #b3c9e3;
  font-size: 23px;
}
.gallery-card figcaption > a:hover {
  background: var(--ink);
  color: white;
}
.image-disclosure {
  font-size: 11px;
  line-height: 1.7;
  color: var(--muted);
  margin-top: 35px;
  max-width: 86ch;
}
.approach {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.approach h2 {
  margin-bottom: 26px;
}
.approach .section-intro {
  margin-bottom: 24px;
}
.paint-swatches {
  display: flex;
  margin-top: 36px;
  gap: 8px;
}
.paint-swatches span {
  width: 41px;
  height: 51px;
  display: block;
  background: #e4decd;
  border: 1px solid #d7d3c5;
}
.paint-swatches span:nth-child(2) {
  background: #b9bdac;
}
.paint-swatches span:nth-child(3) {
  background: #7b8265;
}
.paint-swatches span:nth-child(4) {
  background: #ad735a;
}
.paint-swatches span:nth-child(5) {
  background: #3d493d;
}
.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.process-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 24px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}
.process-list li:first-child {
  padding-top: 0;
}
.step-number {
  font-family: var(--display);
  color: var(--red);
  font-size: 28px;
  line-height: 1.25;
}
.process-list h3 {
  font-size: 19px;
  margin-bottom: 10px;
}
.process-list p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}
.calculator-section {
  padding: 65px 0;
  background: #f4f7fc;
  border-block: 1px solid var(--line);
}
.calculator-heading {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}
.calculator-heading .eyebrow {
  /* sur le fond #f4f7fc, --red tombe pile à 4,50:1 et Lighthouse le
     compte comme un échec ; le rouge foncé donne 6,19:1 */
  color: var(--red-hover);
  margin-bottom: 18px;
}
.calculator-heading h2 {
  margin-bottom: 18px;
}
.calculator-heading .section-intro {
  font-size: 14px;
}
.calculator {
  border: 1px solid #c6d4e7;
  background: var(--paper);
}
summary {
  cursor: pointer;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
.calculator > summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  gap: 20px;
  font-size: 14px;
  font-weight: 500;
  min-height: 76px;
}
.expand-icon {
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  display: inline-block;
  transition: transform 0.2s;
}
details[open] > summary > .expand-icon {
  transform: rotate(45deg);
}
.calculator-body {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.calc-fields,
.calc-result {
  padding: 24px;
}
.input-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.input-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  min-width: 0;
}
input,
select,
textarea {
  display: block;
  width: 100%;
  min-width: 0;
  background: #fff;
  border: 1px solid #c6d4e7;
  border-radius: 0;
  color: var(--ink);
  padding: 11px 12px;
  min-height: 44px;
  font-size: 15px;
}
textarea {
  resize: vertical;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
}
.calc-fields .input-grid {
  margin-bottom: 18px;
}
.calc-fields label {
  font-size: 10px;
}
.calc-fields input {
  padding: 8px;
  font-size: 15px;
}
.checkbox-label {
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.checkbox-label input {
  width: 17px;
  height: 17px;
  min-height: 0;
  accent-color: var(--red);
}
.coat-row {
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.coat-row > div {
  display: flex;
  gap: 4px;
}
.calc-coat {
  border: 1px solid var(--line);
  width: 40px;
  min-height: 44px;
  background: var(--paper);
}
.calc-coat-on {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}
.calc-result {
  background: var(--ink);
  color: var(--paper);
}
.calc-result > .eyebrow {
  color: #c7d8f0;
  margin-bottom: 10px;
  font-size: 9px;
}
.litres {
  font-family: var(--display);
  font-size: 65px;
  line-height: 1.1;
}
.litres > span + span {
  font-family: var(--sans);
  font-size: 16px;
  margin-left: 8px;
}
.calc-result > p:not(.litres) {
  font-size: 11px;
}
.calc-result dl {
  font-size: 10px;
  margin-bottom: 0;
}
.calc-result dl > div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 9px 0;
  border-bottom: 1px solid #40516b;
}
.calc-result dd {
  margin: 0;
  white-space: nowrap;
}
.calc-foot {
  grid-column: 1/-1;
  padding: 20px 24px;
}
.calc-foot p {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.calc-foot .btn {
  font-size: 11px;
  width: 100%;
}
.faq-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
.faq-list summary {
  padding: 23px 0;
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
}
.faq-list details > p {
  padding: 0 35px 24px 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}
.contact-section {
  background: var(--ink);
  padding: 86px 0 92px;
  color: var(--paper);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
}
.contact-copy {
  padding-top: 23px;
}
.contact-copy > .eyebrow {
  color: #ffc83d;
}
.contact-copy h2 {
  margin-bottom: 24px;
}
.contact-copy h2 em {
  color: #ffc83d;
}
.contact-copy .section-intro {
  color: #d1dded;
  font-size: 15px;
  margin-bottom: 35px;
}
.contact-phone {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 26px;
  letter-spacing: -0.03em;
  margin-bottom: 7px;
}
.contact-phone:hover,
.contact-email:hover {
  color: #ffc83d;
}
.contact-email {
  font-size: 13px;
  color: #d1dded;
  overflow-wrap: anywhere;
}
.service-area {
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid #40516b;
}
.service-area h3 {
  font-size: 14px;
  margin-bottom: 10px;
}
.service-area p {
  font-size: 12px;
  line-height: 2;
  max-width: 44ch;
  color: #d1dded;
}
.quote-card {
  background: var(--paper);
  color: var(--ink);
  padding: 34px;
}
.quote-card > h3 {
  font-size: 23px;
  margin-bottom: 6px;
}
.form-intro {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 25px;
}
.quote-card form > label {
  margin-top: 17px;
}
.quote-card form > .btn {
  width: 100%;
  margin-top: 21px;
  justify-content: space-between;
}
.form-note {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 14px;
}
.form-message {
  font-size: 13px;
  padding: 14px;
  margin-top: 15px;
  border: 1px solid;
}
.form-message.success {
  background: #e5ecd9;
  color: #344b20;
}
.form-message.error {
  background: #fae4dc;
  color: #8c2418;
}
.site-footer {
  background: var(--paper);
  padding: 65px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.8fr 1.2fr;
  gap: 45px;
  padding-bottom: 45px;
}
.footer-statement {
  font-size: 29px;
  letter-spacing: -0.04em;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 20px;
}
.footer-desc {
  font-size: 11px;
  line-height: 1.9;
  color: var(--muted);
}
.footer-grid h3 {
  font-size: 12px;
  margin-bottom: 21px;
}
.footer-grid a,
.footer-grid > div > p:not(.footer-statement):not(.footer-desc) {
  display: block;
  font-size: 11px;
  margin-bottom: 9px;
  color: var(--muted);
  overflow-wrap: anywhere;
}
.footer-grid a:hover {
  color: var(--red);
}
.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.footer-bottom > span:last-child {
  letter-spacing: 0.1em;
}
.mobile-contact {
  display: none;
}
.breadcrumb {
  padding-top: 30px;
  font-size: 11px;
  color: var(--muted);
  display: flex;
  gap: 13px;
  align-items: center;
}
.breadcrumb a:hover {
  color: var(--red);
}
.service-hero-grid {
  padding-top: 34px;
  gap: 60px;
}
.service-hero h1 {
  font-size: clamp(43px, 4.3vw, 64px);
}
.service-hero .hero-visual {
  min-height: 465px;
}
.scope-section {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.scope-section h2 {
  margin-bottom: 24px;
}
.scope-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.scope-list li {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 18px;
  font-size: 16px;
}
.scope-list li:before {
  content: "✓";
  color: var(--red);
}
.related-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.related-grid .service-image {
  aspect-ratio: 1.5;
}
@media (min-width: 1600px) {
  .hero-visual {
    min-height: 580px;
  }
  .hero {
    gap: 80px;
  }
}
@media (max-width: 1150px) {
  .container {
    width: calc(100% - 64px);
  }
  .desktop-nav {
    gap: 19px;
  }
  .header-actions {
    gap: 14px;
  }
  .header-actions > .btn {
    display: none;
  }
  .hero {
    gap: 36px;
  }
  .hero-visual {
    min-height: 490px;
  }
  .hero h1 {
    font-size: 53px;
  }
  .hero-buttons {
    gap: 13px;
  }
  .services-grid {
    gap: 18px;
  }
  .service-text h3 {
    font-size: 18px;
  }
  .approach,
  .contact-grid {
    gap: 55px;
  }
  .calculator-heading {
    gap: 35px;
    grid-template-columns: 0.65fr 1.35fr;
  }
  .footer-grid {
    gap: 25px;
  }
  .scope-section {
    gap: 60px;
  }
}
@media (max-width: 900px) {
  .container {
    width: calc(100% - 48px);
  }
  .desktop-nav {
    display: none;
  }
  .header-inner {
    height: 78px;
  }
  #menu-btn {
    display: flex;
  }
  .header-actions > .btn {
    display: inline-flex;
  }
  .hero {
    gap: 30px;
    padding-top: 38px;
  }
  .hero h1 {
    font-size: 43px;
  }
  .hero-description {
    font-size: 14px;
  }
  .hero-visual {
    min-height: 480px;
  }
  .hero-buttons {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .hero-note {
    margin-top: 13px;
  }
  .trust-strip .container > div {
    font-size: 10px;
    gap: 8px;
  }
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 35px 24px;
  }
  .service-image {
    aspect-ratio: 1.4;
  }
  .section {
    padding-block: 72px;
  }
  .section-heading {
    gap: 35px;
  }
  .section-heading > .section-intro {
    font-size: 14px;
    max-width: 32ch;
  }
  .approach,
  .faq-section {
    gap: 40px;
  }
  .approach h2 {
    font-size: 36px;
  }
  .process-list li {
    gap: 12px;
    grid-template-columns: 28px 1fr;
  }
  .process-list h3 {
    font-size: 17px;
  }
  .calculator-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .calculator-heading > .section-intro {
    max-width: none;
  }
  .calculator-body {
    grid-template-columns: 1fr 1fr;
  }
  .calc-fields label {
    font-size: 12px;
  }
  .contact-grid {
    gap: 30px;
    grid-template-columns: 0.9fr 1.1fr;
  }
  .contact-copy h2 {
    font-size: 35px;
  }
  .contact-phone {
    font-size: 22px;
  }
  .quote-card {
    padding: 25px;
  }
  .quote-card .input-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 55px;
  }
  .gallery-card h3 {
    font-size: 18px;
  }
  .scope-section {
    gap: 40px;
  }
  .service-hero .hero-visual {
    min-height: 420px;
  }
  .related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .related-grid h3 {
    font-size: 16px;
  }
}
@media (max-width: 620px) {
  html {
    scroll-padding-top: 87px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .topbar .container {
    height: 30px;
    font-size: 9px;
  }
  .topbar a {
    display: none;
  }
  .header-inner {
    height: 76px;
    gap: 12px;
  }
  .brand {
    gap: 9px;
  }
  .brand img {
    width: 44px;
    height: 44px;
  }
  .brand > span {
    font-size: 14px;
  }
  .brand b {
    font-size: 8px;
  }
  .header-actions {
    gap: 10px;
  }
  .header-actions > .btn {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 35px;
    padding-bottom: 30px;
    gap: 28px;
  }
  .hero-copy > .eyebrow {
    font-size: 9px;
    margin-bottom: 22px;
  }
  .hero h1 {
    font-size: 49px;
    max-width: 13ch;
    margin-bottom: 20px;
  }
  .hero-description {
    font-size: 14px;
    margin-bottom: 24px;
    max-width: 44ch;
  }
  .hero-buttons {
    flex-direction: row;
    align-items: center;
    gap: 15px;
  }
  .hero-buttons .btn {
    font-size: 11px;
    gap: 12px;
    padding: 13px 15px;
  }
  .hero-buttons .btn-text {
    padding-inline: 0;
  }
  .hero-note {
    font-size: 10px;
    margin-top: 17px;
  }
  .hero-visual {
    min-height: 350px;
  }
  .hero-visual > figcaption {
    left: 16px;
    right: 16px;
    bottom: 36px;
    padding: 14px;
    font-size: 11px;
    gap: 12px;
  }
  .image-label {
    left: 16px;
    font-size: 8px;
  }
  .trust-strip > .container {
    grid-template-columns: 1fr 1fr;
    padding-block: 9px;
  }
  .trust-strip .container > div {
    justify-content: flex-start;
    padding: 12px 0;
    font-size: 10px;
  }
  .trust-strip .container > div:nth-child(2) {
    border: 0;
  }
  .trust-strip .container > div:nth-child(3),
  .trust-strip .container > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }
  .trust-strip .container > div:nth-child(even) {
    padding-left: 15px;
  }
  .section {
    padding-block: 58px;
  }
  h2 {
    font-size: 36px;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading > .section-intro {
    max-width: 46ch;
    margin-top: 20px;
  }
  .section-heading > .btn {
    margin-top: 20px;
  }
  .section .eyebrow {
    margin-bottom: 17px;
  }
  .services-grid {
    gap: 29px 16px;
  }
  .service-image {
    aspect-ratio: 0.95;
  }
  .service-text {
    padding-top: 15px;
  }
  .service-text .eyebrow {
    font-size: 8px;
    letter-spacing: 0.09em;
    margin-bottom: 8px;
  }
  .service-text h3 {
    font-size: 17px;
    margin-bottom: 8px;
  }
  .service-text p {
    font-size: 12px;
    line-height: 1.7;
  }
  .card-arrow {
    width: 29px;
    height: 29px;
    right: 8px;
    bottom: 8px;
    font-size: 20px;
  }
  .gallery-filters {
    gap: 6px;
    margin-bottom: 24px;
  }
  .gallery-filters button {
    font-size: 10px;
    padding: 9px 13px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .gallery-card > img {
    aspect-ratio: 1.45;
  }
  .gallery-card figcaption {
    padding-top: 14px;
  }
  .gallery-card .eyebrow {
    margin-bottom: 7px;
  }
  .gallery-card h3 {
    font-size: 19px;
  }
  .image-disclosure {
    font-size: 10px;
    margin-top: 25px;
  }
  .approach,
  .faq-section,
  .contact-grid,
  .scope-section {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .approach h2 {
    font-size: 36px;
  }
  .approach .section-intro {
    font-size: 14px;
  }
  .paint-swatches {
    margin-top: 24px;
  }
  .paint-swatches span {
    width: 34px;
    height: 42px;
  }
  .process-list li {
    padding: 20px 0;
    gap: 18px;
    grid-template-columns: 30px 1fr;
  }
  .process-list h3 {
    font-size: 18px;
  }
  .process-list p {
    font-size: 13px;
  }
  .calculator-section {
    padding: 45px 0;
  }
  .calculator > summary {
    padding: 19px 17px;
    font-size: 13px;
  }
  .calculator-body {
    grid-template-columns: 1fr;
  }
  .calc-fields,
  .calc-result {
    padding: 20px;
  }
  .calc-fields label {
    font-size: 11px;
  }
  .calc-result {
    display: block;
  }
  .calc-result dl {
    font-size: 12px;
  }
  .calc-result > .eyebrow {
    font-size: 11px;
  }
  .calc-result > p:not(.litres) {
    font-size: 13px;
  }
  .calc-foot {
    padding: 20px;
  }
  .calc-foot .btn {
    font-size: 10px;
    gap: 12px;
    padding: 13px;
  }
  .faq-section {
    gap: 28px;
  }
  .faq-list summary {
    font-size: 13px;
    padding: 20px 0;
    gap: 20px;
  }
  .faq-list details > p {
    font-size: 13px;
    padding-right: 0;
  }
  .contact-section {
    padding: 55px 0;
  }
  .contact-copy {
    padding-top: 0;
  }
  .contact-copy h2 {
    font-size: 40px;
  }
  .contact-copy .section-intro {
    font-size: 14px;
  }
  .contact-phone {
    font-size: 26px;
  }
  .quote-card {
    padding: 25px 22px;
  }
  .quote-card > h3 {
    font-size: 21px;
  }
  .quote-card .input-grid {
    gap: 17px;
  }
  .quote-card input,
  .quote-card select,
  .quote-card textarea {
    font-size: 16px;
  }
  .quote-card label {
    font-size: 12px;
  }
  .site-footer {
    padding: 44px 0 95px;
  }
  .footer-grid {
    gap: 36px 20px;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
  .footer-grid > div:last-child {
    grid-column: 1/-1;
  }
  .footer-grid h3 {
    margin-bottom: 15px;
  }
  .footer-grid a {
    font-size: 12px;
  }
  .footer-statement {
    font-size: 30px;
  }
  .footer-bottom {
    align-items: flex-start;
    font-size: 9px;
  }
  .footer-bottom > span:last-child {
    display: none;
  }
  .mobile-contact {
    position: fixed;
    z-index: 25;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--paper);
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px calc(10px + env(safe-area-inset-bottom));
    gap: 15px;
    box-shadow: 0 -4px 16px #2529230a;
  }
  .mobile-contact > a:first-child {
    font-size: 12px;
    font-weight: 600;
  }
  .mobile-contact .btn {
    font-size: 11px;
    padding: 12px 15px;
    gap: 12px;
    min-height: 44px;
  }
  #mobile-menu {
    padding-bottom: 95px;
  }
  .breadcrumb {
    padding-top: 22px;
    flex-wrap: wrap;
    font-size: 10px;
  }
  .service-hero h1 {
    font-size: 46px;
  }
  .service-hero-grid {
    padding-top: 27px;
  }
  .service-hero .hero-visual {
    min-height: 350px;
  }
  .scope-section {
    gap: 25px;
  }
  .scope-section .section-intro {
    font-size: 14px;
  }
  .scope-list li {
    font-size: 14px;
    padding: 17px 0;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
  .related-grid .service-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
  }
  .related-grid .service-image {
    aspect-ratio: 0.9;
  }
  .related-grid .service-text {
    padding-top: 0;
  }
  .related-grid .service-text h3 {
    font-size: 18px;
  }
}
@media (max-width: 360px) {
  .container {
    width: calc(100% - 32px);
  }
  .brand > span {
    font-size: 12px;
  }
  .brand b {
    font-size: 7px;
  }
  .header-actions {
    gap: 5px;
  }
  .hero h1 {
    font-size: 44px;
  }
  .hero-buttons {
    gap: 8px;
  }
  .hero-buttons .btn {
    font-size: 10px;
  }
  .service-text h3 {
    font-size: 16px;
  }
  .mobile-contact {
    padding-inline: 16px;
  }
  .mobile-contact > a:first-child {
    font-size: 11px;
  }
  .mobile-contact .btn {
    font-size: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* Accepted vivid direction: red brand, blue accents, small yellow details. */
.hero-copy > .eyebrow,
.section-heading .eyebrow,
.step-number,
.trust-strip span[aria-hidden] {
  color: var(--blue);
}
.hero-note::after {
  content: "";
  display: block;
  width: 78px;
  height: 7px;
  margin-top: 22px;
  background: var(--yellow);
  transform: rotate(-2deg);
}
.hero-visual > img {
  object-position: 66% center;
}
.service-image > img[data-img="svc_industrial"] {
  object-position: 75% center;
}
.service-image > img[data-img="svc_exterior"] {
  object-position: 70% center;
}
.service-text .eyebrow {
  color: var(--blue);
}
.step-number {
  font-weight: 700;
  font-size: 22px;
}
.craft-photo {
  margin-top: 30px;
}
.craft-photo > img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.85;
  object-fit: cover;
  object-position: 45% 50%;
}
.craft-photo figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 12px;
}
.craft-photo figcaption strong {
  font-size: 12px;
  font-weight: 600;
}
.craft-photo figcaption > span {
  font-size: 10px;
  color: var(--muted);
}
.about-heading {
  max-width: 960px;
  margin-bottom: 42px;
}
.about-heading h2 {
  font-size: clamp(32px, 3.3vw, 46px);
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: start;
}
.about-story > p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 22px;
}
.about-story > .about-lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
}
.about-story > .about-commitment {
  padding: 20px 24px;
  border-left: 4px solid var(--red);
  background: #fff6db;
  color: var(--ink);
  line-height: 1.65;
}
.about-founding {
  border-top: 4px solid var(--blue);
  background: var(--surface-tint);
  padding: 24px 30px 28px;
}
.about-year {
  display: block;
  font-size: clamp(56px, 6vw, 82px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1.15;
  color: var(--blue);
}
.about-founding p {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
}
.about-visual .craft-photo {
  margin-top: 24px;
}
.about-visual .craft-photo > img {
  aspect-ratio: 1.3;
  object-position: 45% center;
}
.about-process {
  margin-top: 60px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.about-process > h3 {
  font-size: 24px;
  margin-bottom: 26px;
}
.about-process .process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}
.about-process .process-list li {
  display: block;
  padding: 0;
  border: 0;
}
.about-process .step-number {
  display: block;
  margin-bottom: 12px;
}
.about-process h4 {
  margin: 0 0 12px;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: -0.025em;
}
.about-process .process-list p {
  font-size: 13px;
}
@media (max-width: 1000px) {
  .about-story-grid {
    gap: 36px;
    grid-template-columns: 1.1fr 0.9fr;
  }
  .about-process .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 36px;
  }
}
@media (max-width: 700px) {
  .about-heading {
    margin-bottom: 30px;
  }
  .about-story-grid {
    grid-template-columns: 1fr;
  }
  .about-story > .about-lead {
    font-size: 17px;
  }
  .about-visual .craft-photo > img {
    aspect-ratio: 1.5;
  }
  .about-process {
    margin-top: 38px;
    padding-top: 28px;
  }
}
@media (max-width: 420px) {
  .about-process .process-list {
    grid-template-columns: 1fr;
  }
  .about-story > .about-commitment {
    padding: 18px;
  }
}
@media (max-width: 620px) {
  .hero h1 {
    font-size: clamp(36px, 10.5vw, 49px);
    max-width: none;
  }
  .hero-note::after {
    margin-top: 18px;
  }
  .craft-photo > img {
    aspect-ratio: 1.5;
  }
}

/* Photo-led direction inspired by the supplied construction-company reference. */
.btn:not(.btn-text) {
  border-radius: 999px;
}
.home-hero {
  position: relative;
  isolation: isolate;
  display: block;
  width: 100%;
  min-height: 660px;
  padding: 0;
  background: var(--ink);
  color: white;
}
.home-hero .hero-copy {
  position: relative;
  z-index: 2;
  padding-block: 100px 130px;
}
.home-hero .hero-copy > .eyebrow {
  width: fit-content;
  max-width: 100%;
  background: #ffffff17;
  border: 1px solid #ffffff50;
  border-radius: 999px;
  color: white;
  padding: 10px 17px;
  font-size: 11px;
  letter-spacing: 0.12em;
}
.home-hero .status-dot {
  background: var(--yellow);
}
.home-hero h1 {
  max-width: 850px;
  font-size: clamp(46px, 5.4vw, 76px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-wrap: auto;
}
.home-hero h1 em {
  color: var(--yellow);
}
.home-hero .hero-description {
  max-width: 51ch;
  font-size: 16px;
  color: #f0f4fa;
}
.home-hero .hero-note {
  color: #e2e9f3;
  font-size: 12px;
}
.home-hero .hero-buttons {
  gap: 16px;
  flex-direction: row;
  align-items: center;
}
.home-hero .hero-buttons .btn {
  min-height: 52px;
  font-size: 13px;
  padding-inline: 23px;
}
.btn-outline {
  border-color: #ffffffa6;
  color: white;
  background: #17213355;
}
.btn-outline:hover {
  background: white;
  color: var(--ink);
}
.home-hero .hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 0;
}
.home-hero .hero-visual > img {
  object-position: right top;
}
.home-hero .hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #101e32ef 0%,
    #101e32c7 40%,
    #101e3240 56%,
    #101e3200 68%
  );
}
.home-hero .image-label {
  z-index: 1;
  inset: auto 24px 18px auto;
  padding: 5px 9px;
  border-radius: 4px;
  font-size: 10px;
  background: #172133db;
}
.home-page #services .services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}
.home-page #services .service-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.home-page #services .service-image {
  aspect-ratio: 1.9;
}
.home-page #services .service-text {
  padding: 24px 28px 28px;
}
.home-page #services .service-text h3 {
  font-size: 26px;
}
.home-page #services .service-text p {
  font-size: 14px;
  max-width: 52ch;
}
.home-page #services .card-arrow {
  background: var(--red);
  color: white;
  border: 0;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  right: 18px;
  bottom: 18px;
}
.project-card {
  border-radius: 14px;
  overflow: hidden;
}
.about-founding,
.about-visual .craft-photo > img {
  border-radius: 14px;
}
.about-process .process-list li {
  padding: 24px;
  background: #f7f9fc;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.project-cta {
  background: var(--red);
  color: white;
  padding-block: 64px;
}
.project-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.project-cta h2 {
  max-width: 740px;
}
.project-cta h2 em {
  color: var(--yellow);
}
.project-cta p {
  margin-top: 22px;
  max-width: 58ch;
  font-size: 15px;
  line-height: 1.75;
}
.btn-light {
  background: white;
  color: var(--ink);
  flex-shrink: 0;
}
.btn-light:hover {
  background: var(--yellow);
}
.inspiration-collapsible {
  padding-block: 40px;
  border-bottom: 1px solid var(--line);
}
.inspiration-details > summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-block: 12px;
}
.inspiration-details > summary > span:first-child {
  display: grid;
  gap: 8px;
}
.inspiration-details summary strong {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.025em;
}
.inspiration-details summary span span {
  color: var(--muted);
  font-size: 13px;
}
.inspiration-details .expand-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid #a4b9d3;
  border-radius: 50%;
}
.inspiration-content {
  padding-block: 40px 20px;
}
@media (max-width: 900px) {
  .home-hero {
    min-height: 610px;
  }
  .home-hero .hero-copy {
    padding-block: 78px 100px;
  }
  .home-hero .hero-visual::after {
    background: linear-gradient(90deg, #101e32ed, #101e32b3 65%, #101e3273);
  }
  .project-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .home-page #services .service-text {
    padding: 20px;
  }
  .home-page #services .service-text h3 {
    font-size: 22px;
  }
}
@media (max-width: 620px) {
  .home-hero {
    min-height: 0;
  }
  .home-hero .hero-copy {
    padding-block: 64px 90px;
  }
  .home-hero h1 {
    font-size: clamp(37px, 10.6vw, 59px);
  }
  .home-hero .hero-copy > .eyebrow {
    font-size: 9px;
    padding: 9px 12px;
    letter-spacing: 0.09em;
  }
  .home-hero .hero-description {
    font-size: 14px;
    max-width: 39ch;
  }
  .home-hero .hero-buttons {
    align-items: stretch;
    flex-direction: column;
    max-width: 320px;
    gap: 12px;
  }
  .home-hero .hero-buttons .btn {
    justify-content: space-between;
    min-height: 48px;
    padding: 13px 20px;
    font-size: 12px;
  }
  .home-hero .hero-note {
    max-width: 35ch;
    font-size: 11px;
  }
  .home-hero .image-label {
    right: 16px;
    bottom: 12px;
    font-size: 9px;
  }
  .home-page #services .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .home-page #services .service-image {
    aspect-ratio: 1.65;
  }
  .project-cta {
    padding-block: 48px;
  }
  .project-cta h2 {
    font-size: 36px;
  }
  .inspiration-collapsible {
    padding-block: 25px;
  }
  .inspiration-details summary strong {
    font-size: 21px;
  }
  .about-process .process-list li {
    padding: 20px;
  }
}

/* Keep the approved in-image slogan unobstructed on smaller screens. */
@media (max-width: 900px) {
  .home-hero {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 0;
  }
  .home-hero .hero-visual {
    position: relative;
    inset: auto;
    order: -1;
    width: 100%;
    aspect-ratio: 3 / 2;
  }
  .home-hero .hero-visual::after {
    display: none;
  }
  .home-hero .hero-copy {
    padding-block: 46px 50px;
  }
}
@media (max-width: 620px) {
  .home-hero .hero-visual {
    aspect-ratio: 1;
  }
  .home-hero .hero-copy {
    padding-block: 36px 40px;
  }
}
