@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}
@font-face {
  font-family: "Oswald";
  src: url("assets/fonts/oswald-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Oswald";
  src: url("assets/fonts/oswald-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Oswald";
  src: url("assets/fonts/oswald-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
:root {
  --yellow: #ffbd0a;
  --ink: #20242b;
  --muted: #686c70;
  --line: #e8e8e6;
  --cream: #f7f2ea;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font:
    14px Manrope,
    Arial,
    sans-serif;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  width: 100%;
}
.wrap {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
}
header {
  height: 72px;
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
}
.nav {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 245px;
}
.logo i {
  font-style: normal;
  border: 3px solid var(--yellow);
  border-radius: 4px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-size: 25px;
}
.logo b,
.logo small {
  display: block;
}
.logo b {
  font: 700 23px Oswald, "Arial Narrow", sans-serif;
  letter-spacing: 0.01em;
}
.logo small {
  font-size: 9px;
}
.nav nav {
  margin-left: auto;
  display: flex;
  gap: 24px;
  font-size: 10px;
}
.phone {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 190px;
}
.phone > i {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-style: normal;
}
.phone b,
.phone small {
  display: block;
}
.phone b {
  font-size: 12px;
}
.phone small {
  font-size: 8px;
}
.arrival {
  background: var(--yellow);
  padding: 8px 13px;
  border-radius: 7px;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.35;
}
.burger {
  display: none;
}
.hero {
  min-height: 950px;
  background: var(--cream) var(--master-hero-image, url("assets/hero-v2.png")) center top/cover no-repeat;
  position: relative;
  padding-top: 72px;
}
.hero-inner {
  height: 760px;
  display: flex;
  align-items: center;
}
.hero-copy {
  width: 470px;
}
.hero h1 {
  font: 700 56px/1.06 Oswald, "Arial Narrow", sans-serif;
  margin: 0 0 28px;
  letter-spacing: -0.015em;
}
.hero h1 em,
.cta h2 em {
  font-style: normal;
  color: var(--yellow);
}
.hero-copy > p {
  font-size: 13px;
  line-height: 1.7;
}
.hero-note {
  width: 230px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 9px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 36px;
  box-shadow: 0 10px 30px #5f55451a;
}
.hero-note > i {
  font-style: normal;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--yellow);
  display: grid;
  place-items: center;
}
.hero-note b,
.hero-note small {
  display: block;
  font-size: 10px;
}
.hero-note small {
  font-size: 8px;
  color: var(--muted);
  margin-top: 4px;
}
.hero-actions {
  display: grid;
  width: 265px;
  gap: 10px;
}
.btn {
  height: 54px;
  padding: 0 26px;
  border: 0;
  border-radius: 8px;
  background: var(--yellow);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 15px #d397001f;
  transition: 0.22s;
}
.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}
.btn b {
  font-size: 20px;
  margin-left: 12px;
}
.btn.secondary {
  background: #fff;
  border: 1px solid #d9d9d9;
  box-shadow: none;
}
.benefits {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.benefits article {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 14px;
  padding: 22px 18px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: 0 8px 25px #604f3320;
}
.benefits i,
.services i,
.principles i {
  font-style: normal;
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--yellow);
  display: grid;
  place-items: center;
  font-size: 24px;
}
.benefits b,
.benefits small {
  display: block;
}
.benefits b {
  font-size: 13px;
  line-height: 1.25;
}
.benefits small {
  font-size: 8px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.5;
}
.section {
  padding-top: 65px;
}
.section h2,
.recommend h2 {
  font: 700 33px Oswald, "Arial Narrow", sans-serif;
  margin: 0 0 25px;
}
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.services article {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 7px 18px #0000000a;
  transition: 0.25s;
}
.services article:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px #00000012;
}
.services img {
  height: 205px;
  object-fit: cover;
}
.services article:nth-child(1) img {
  object-position: left;
}
.services article > div {
  position: relative;
  padding: 18px;
}
.services i {
  position: absolute;
  left: 13px;
  top: -29px;
  width: 47px;
  height: 47px;
  border: 4px solid #fff;
  font-size: 19px;
}
.services h3 {
  font-size: 15px;
  margin: 0 0 9px;
}
.services p {
  font-size: 9px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  max-width: 300px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 35px;
}
.steps article {
  position: relative;
  text-align: center;
  padding-top: 7px;
}
.steps article:not(:last-child):after {
  content: "╌╌╌→";
  position: absolute;
  top: 38px;
  right: -42px;
  color: #8f9192;
}
.steps span {
  position: absolute;
  top: 0;
  left: 8px;
  background: var(--yellow);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 800;
}
.steps i {
  margin: auto;
  width: 70px;
  height: 70px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 31px;
  box-shadow: 0 5px 20px #0000000b;
}
.steps b {
  display: block;
  font-size: 11px;
  margin-top: 28px;
}
.steps p {
  font-size: 8px;
  color: var(--muted);
  line-height: 1.5;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.work-photo {
  height: 175px;
  border: 5px solid #fff;
  border-radius: 10px;
  box-shadow: 0 0 0 1px #ddd;
  display: flex;
  justify-content: space-between;
  padding: 9px;
  background-size: cover;
  background-position: center;
}
.work-photo span {
  height: 25px;
  padding: 5px 11px;
  background: #fff;
  border-radius: 15px;
  font-size: 8px;
}
.w1 {
  background-image: url("assets/plumbing-room.png");
}
.w2 {
  background-image: url("assets/living-room.png");
}
.w3 {
  background-image: url("assets/master-hero.png");
}
.w4 {
  background-image: url("assets/plumbing-room.png");
  background-position: left;
}
.works {
  text-align: left;
}
.works > .btn {
  display: flex;
  width: 285px;
  margin: 28px auto 0;
  height: 43px;
}
.recommend {
  margin-top: 70px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 32px 35px;
  box-shadow: 0 7px 20px #0000000a;
}
.recommend h2 {
  font-size: 27px;
  margin-bottom: 20px;
}
.recommend > div {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 1.5fr 1.1fr;
}
.recommend article {
  padding: 0 30px;
  display: flex;
  gap: 15px;
  align-items: center;
  border-right: 1px solid var(--line);
}
.recommend article:last-child {
  border: 0;
}
.recommend strong {
  background: linear-gradient(#ffe390, #ffca2b);
  border-radius: 15px;
  padding: 15px;
  font-size: 22px;
}
.recommend strong small {
  display: block;
  font-size: 7px;
  text-align: center;
}
.recommend p {
  font-size: 8px;
  line-height: 1.5;
}
.stars {
  color: var(--yellow);
  font-size: 25px;
  letter-spacing: 2px;
}
.faces {
  letter-spacing: -8px;
  font-size: 23px;
}
.recommend article > b:not(.stars) {
  font-size: 23px;
}
.principles > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 1.2fr;
  gap: 5px;
  align-items: center;
}
.principles article {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
}
.principles i {
  width: 45px;
  height: 45px;
  font-size: 18px;
}
.principles p b,
.principles p small {
  display: block;
}
.principles p b {
  font-size: 10px;
}
.principles p small {
  font-size: 7px;
  color: var(--muted);
}
.principles aside {
  background: #ffe59d;
  border-radius: 18px;
  padding: 18px;
}
.principles aside b {
  font-size: 10px;
  display: block;
  margin-bottom: 12px;
}
.principles .btn {
  height: 36px;
  font-size: 9px;
  padding: 0 15px;
}
.faq {
  padding-bottom: 50px;
}
.faq > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.faq details {
  padding: 12px 16px;
  border: 1px solid var(--line);
}
.faq summary {
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}
.faq summary:after {
  content: "+";
  float: right;
  font-size: 18px;
}
.faq details[open] summary:after {
  content: "−";
}
.faq p {
  font-size: 8px;
  color: var(--muted);
}
.cta {
  min-height: 385px;
  background: #f4eee6 url("assets/hero-v2.png") center 45% / cover no-repeat;
  border-radius: 20px 20px 0 0;
}
.cta-inner {
  min-height: 385px;
  display: grid;
  grid-template-columns: 1fr 330px;
  align-items: center;
}
.cta h2 {
  font: 700 45px/1.07 Oswald, "Arial Narrow", sans-serif;
  margin: 0 0 15px;
}
.cta p {
  font-size: 11px;
  line-height: 1.6;
}
.cta-mini {
  display: flex;
  gap: 35px;
  margin-top: 32px;
}
.cta-mini span {
  color: var(--yellow);
  font-size: 18px;
  text-align: center;
}
.cta-mini small {
  display: block;
  color: var(--ink);
  font-size: 7px;
  margin-top: 6px;
}
.cta form {
  background: rgba(255, 255, 255, 0.9);
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 12px 30px #0002;
  display: grid;
  gap: 12px;
}
.cta form h3 {
  font: 700 25px Oswald, "Arial Narrow", sans-serif;
  margin: 0;
}
.cta input {
  height: 43px;
  border: 1px solid var(--line);
  padding: 0 13px;
  font-size: 10px;
}
.cta form .btn {
  height: 44px;
}
.cta form small {
  font-size: 7px;
  color: var(--muted);
  text-align: center;
}
footer {
  background: #1b2028;
  color: #fff;
  padding: 32px 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1fr 0.8fr;
  gap: 40px;
}
.footer-inner .logo i {
  color: var(--yellow);
  border-color: #fff;
}
.footer-inner .logo b {
  font-size: 17px;
}
.footer-inner > div {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 8px;
  color: #acb0b5;
}
.footer-inner > div > b {
  font-size: 9px;
  color: #fff;
}
.footer-phone b {
  font-size: 16px !important;
}
.footer-phone strong {
  color: #20d66b;
  font-size: 17px;
}
.toast {
  position: fixed;
  z-index: 20;
  right: 25px;
  bottom: 25px;
  background: var(--yellow);
  padding: 17px 24px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 11px;
  transform: translateY(150%);
  transition: 0.3s;
}
.toast.show {
  transform: none;
}
@media (max-width: 900px) {
  header {
    position: relative;
    background: #fff;
  }
  .nav nav,
  .phone,
  .arrival {
    display: none;
  }
  .burger {
    display: block;
    margin-left: auto;
    border: 0;
    background: none;
    font-size: 23px;
  }
  .nav nav.open {
    position: absolute;
    z-index: 20;
    top: 64px;
    right: 12px;
    display: flex;
    width: min(280px, calc(100vw - 24px));
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, .98);
    padding: 8px;
    box-shadow: 0 20px 50px #20242b24;
  }
  .nav nav.open a {
    border-radius: 9px;
    padding: 12px 14px;
    font-size: 13px;
    font-weight: 700;
  }
  .nav nav.open a:hover {
    background: #fff6d8;
  }
  .hero {
    min-height: 850px;
    background-position: 58% top;
  }
  .hero-inner {
    height: 660px;
  }
  .hero-copy {
    width: 390px;
  }
  .hero h1 {
    font-size: 45px;
  }
  .benefits {
    grid-template-columns: 1fr 1fr;
  }
  .services {
    grid-template-columns: 1fr 1fr;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .steps article:not(:last-child):after {
    display: none;
  }
  .work-grid {
    grid-template-columns: 1fr 1fr;
  }
  .recommend > div {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  .recommend article {
    border: 0;
  }
  .principles > div {
    grid-template-columns: 1fr 1fr;
  }
  .principles aside {
    grid-column: span 2;
  }
  .cta-inner {
    grid-template-columns: 1fr 300px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-inner > .logo {
    grid-column: span 2;
  }
}
@media (max-width: 560px) {
  .wrap {
    width: min(100% - 24px, 1180px);
  }
  .logo {
    min-width: 0;
  }
  .logo b {
    font-size: 18px;
  }
  .logo small {
    font-size: 7px;
  }
  .hero {
    min-height: 1090px;
    background-position: 61% top;
  }
  .hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      90deg,
      rgba(248, 244, 238, 0.97),
      rgba(248, 244, 238, 0.35)
    );
  }
  .hero-inner {
    position: relative;
    height: 690px;
  }
  .hero-copy {
    width: 100%;
  }
  .hero h1 {
    font-size: 39px;
  }
  .hero-copy > p {
    font-size: 11px;
  }
  .benefits {
    grid-template-columns: 1fr;
    bottom: 20px;
  }
  .benefits article {
    padding: 13px 18px;
  }
  .benefits i {
    width: 39px;
    height: 39px;
  }
  .section {
    padding-top: 48px;
  }
  .section h2 {
    font-size: 28px;
  }
  .services,
  .steps,
  .work-grid,
  .recommend > div,
  .principles > div,
  .faq > div {
    grid-template-columns: 1fr;
  }
  .services img {
    height: 210px;
  }
  .steps {
    gap: 28px;
  }
  .work-photo {
    height: 210px;
  }
  .principles aside {
    grid-column: auto;
  }
  .cta {
    background-position: 62% center;
  }
  .cta-inner {
    grid-template-columns: 1fr;
    padding: 45px 0;
    gap: 30px;
  }
  .cta h2 {
    font-size: 38px;
  }
  .cta form {
    width: 100%;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-inner > .logo {
    grid-column: auto;
  }
  .recommend article {
    padding: 10px;
  }
  .cta-mini {
    gap: 15px;
  }
}

/* Precision pass: vector icon system, buttons, work comparisons and avatars */
.btn {
  height: 52px;
  padding: 0 28px;
  border-radius: 9px;
  background: linear-gradient(180deg, #ffc928 0%, #ffb900 100%);
  font-size: 11px;
  letter-spacing: 0.01em;
  box-shadow: 0 7px 14px #d3970026, inset 0 1px #fff8;
}
.btn.secondary {
  height: 48px;
  background: #fff;
  border-color: #d5d7d9;
  color: #32363b;
  box-shadow: 0 3px 8px #0000000b;
}
.benefits svg,
.hero-note svg,
.services svg,
.steps svg,
.principles svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.steps svg { width: 31px; height: 31px; stroke: #454b51; stroke-width: 1.55; }
.section h2,
.recommend h2 { font-weight: 600; letter-spacing: -0.015em; }
.work-photo {
  height: 175px;
  position: relative;
  border: 5px solid #fff;
  box-shadow: 0 0 0 1px #d8dadb, 0 5px 16px #00000012;
  overflow: hidden;
  background: none !important;
}
.work-photo::before,
.work-photo::after {
  content: "";
  position: absolute;
  inset: 0 50% 0 0;
  background-size: cover;
  background-position: center;
}
.work-photo::before { filter: saturate(.5) brightness(.86); }
.work-photo::after { inset: 0 0 0 50%; filter: saturate(1.08) brightness(1.04); border-left: 2px solid #fff; }
.w1::before { background-image: url('assets/plumbing-room.png'); background-position: left center; }
.w1::after { background-image: url('assets/plumbing-room.png'); background-position: 18% center; }
.w2::before { background-image: url('assets/living-room.png'); background-position: left center; }
.w2::after { background-image: url('assets/living-room.png'); background-position: right center; }
.w3::before { background-image: url('assets/master-hero.png'); background-position: left center; }
.w3::after { background-image: url('assets/plumbing-room.png'); background-position: right center; }
.w4::before { background-image: url('assets/plumbing-room.png'); background-position: 2% center; }
.w4::after { background-image: url('assets/plumbing-room.png'); background-position: 28% center; }
.work-photo span { position: relative; z-index: 2; }
.work-photo span:last-child::before {
  content: "↔";
  position: absolute;
  right: calc(50% + 93px);
  top: 126px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  color: #5d6266;
  font-weight: 800;
  box-shadow: 0 2px 8px #0003;
}
.faces { display: flex; min-width: 115px; }
.faces span {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  border: 3px solid #fff;
  background-image: url('assets/customer-avatars.png');
  background-size: 500% auto;
  background-position-y: center;
  box-shadow: 0 2px 7px #0002;
  margin-left: -9px;
}
.faces span:first-child { margin-left: 0; background-position-x: 0; }
.faces span:nth-child(2) { background-position-x: 25%; }
.faces span:nth-child(3) { background-position-x: 50%; }
.faces span:nth-child(4) { background-position-x: 75%; }
.faces span:nth-child(5) { background-position-x: 100%; }

/* Reference-aligned content photography */
.services article::before { content: ""; display: block; height: 205px; background-image: url('assets/services-v2.png'); background-size: 300% 200%; background-repeat: no-repeat; }
.services article > img { display: none; }
.services article:nth-child(1)::before { background-position: 0 0; }
.services article:nth-child(2)::before { background-position: 50% 0; }
.services article:nth-child(3)::before { background-position: 100% 0; }
.services article:nth-child(4)::before { background-position: 0 100%; }
.services article:nth-child(5)::before { background-position: 50% 100%; }
.services article:nth-child(6)::before { background-position: 100% 100%; }
.work-photo::before, .work-photo::after { background-image: var(--master-works-image, url('assets/work-comparisons.png')) !important; background-size: 400% 200%; filter: none; }
.w1::before { background-position: 0 0; }.w1::after { background-position: 0 100%; }
.w2::before { background-position: 33.333% 0; }.w2::after { background-position: 33.333% 100%; }
.w3::before { background-position: 66.667% 0; }.w3::after { background-position: 66.667% 100%; }
.w4::before { background-position: 100% 0; }.w4::after { background-position: 100% 100%; }
.services h3 { font-size: 16px; }.services p { font-size: 10px; line-height: 1.55; }
.steps b { font-size: 12px; }.steps p { font-size: 9px; max-width: 185px; margin-left: auto; margin-right: auto; }
.recommend { padding-top: 31px; padding-bottom: 38px; }.recommend p { font-size: 9px; }
.principles p b { font-size: 11px; }.principles p small { font-size: 8px; }
.faq summary { font-size: 11px; }.faq p { font-size: 9px; line-height: 1.5; }
.cta form { padding: 30px; }.cta form h3 { font-size: 27px; }

/* Final local-file and scale pass */
.services article::before { display: none; }
.services article > img { display: block; width: 100%; height: 220px; object-fit: cover; image-rendering: auto; }
.benefits i img, .services i img, .hero-note i img, .principles i img { width: 23px; height: 23px; }
.hero-note i img { width: 20px; height: 20px; }
.steps i img { width: 31px; height: 31px; }
.nav nav { font-size: 11px; }
.arrival { font-size: 10px; padding: 9px 14px; }
.hero-copy > p { font-size: 14px; line-height: 1.65; }
.hero-note { width: 245px; padding: 15px; }
.hero-note b { font-size: 11px; }.hero-note small { font-size: 9px; }
.hero-actions { width: 285px; gap: 11px; }
.btn { height: 56px; padding: 0 31px; font-size: 13px; }
.btn.secondary { height: 51px; font-size: 12px; }
.benefits b { font-size: 14px; }.benefits small { font-size: 9px; }
.services article > div { padding: 20px 19px 22px; }
.services h3 { font-size: 17px; margin-bottom: 10px; }
.services p { font-size: 11px; line-height: 1.55; }
.steps { gap: 28px; }.steps span { width: 44px; height: 44px; font-size: 21px; }
.steps b { font-size: 13px; }.steps p { font-size: 10px; line-height: 1.55; }
.work-grid { gap: 18px; }.work-grid figure { margin: 0; }
.work-photo { height: 205px; }
.work-photo span { font-size: 9px; padding: 6px 12px; }
.work-photo span:last-child::before { top: 155px; }
.works > .btn { width: 315px; height: 49px; font-size: 12px; }
.recommend h2 { font-size: 29px; }.recommend p { font-size: 10px; }.recommend article > b:not(.stars) { font-size: 25px; }
.principles article { padding: 15px 10px; }.principles p b { font-size: 12px; }.principles p small { font-size: 9px; }
.principles aside b { font-size: 11px; line-height: 1.45; }.principles .btn { height: 40px; font-size: 10px; }
.faq details { min-height: 49px; padding: 15px 18px; }.faq summary { font-size: 12px; }.faq p { font-size: 10px; }
.cta p { font-size: 12px; }.cta form input { font-size: 11px; }.cta form small { font-size: 8px; }
.footer-inner > div { font-size: 9px; }.footer-inner > div > b { font-size: 10px; }
.scribble { position: absolute; z-index: 3; color: #fff; font: 500 18px/1.25 "Segoe Print", cursive; transform: rotate(-7deg); text-align: center; text-shadow: 0 1px 4px #0003; }
.scribble-right { top: 155px; right: max(8vw, 95px); }.scribble-right::after { content: "↙"; display: block; font-size: 30px; line-height: 1; }
.scribble-left { top: 545px; left: calc(50% - 290px); }.scribble-left::after { content: "↘"; display: block; font-size: 28px; line-height: 1; }
.cta { background-image: var(--master-cta-image, url('assets/cta-master-v2.png')); background-position: center; }
.principles p b { font-size: 13px; }.principles p small { font-size: 10px; }
.toast { opacity: 0; visibility: hidden; pointer-events: none; }
.toast.show { opacity: 1; visibility: visible; pointer-events: auto; }
.btn:focus-visible,
.burger:focus-visible,
input:focus-visible,
summary:focus-visible,
a:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--yellow) 76%, #fff);
  outline-offset: 3px;
}
.btn:disabled {
  cursor: wait;
  opacity: .68;
}
@media (max-width: 560px) {
  .services article > img { height: 230px; }
  .work-photo { height: 230px; }
  .work-photo span:last-child::before { top: 180px; }
  .btn { font-size: 12px; }
  .scribble { display: none; }
}
