:root {
  --yellow: #fad604;
  --yellow-strong: #fad604;
  --ink: #101113;
  --ink-soft: #1d1f22;
  --paper: #f8f5ec;
  --paper-strong: #fffdf6;
  --muted: #666b72;
  --line: rgba(16, 17, 19, 0.12);
  --green: #1f8a70;
  --teal: #164e63;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(16, 17, 19, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 8px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--yellow);
  padding: 10px 14px;
  border-radius: 8px;
}

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

.page-top-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(16, 17, 19, 0.96);
  color: var(--white);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(250, 214, 4, 0.2);
  transition: box-shadow 220ms ease, background 220ms ease;
}

body.is-scrolled .site-header {
  background: rgba(16, 17, 19, 0.98);
  box-shadow: 0 14px 32px rgba(16, 17, 19, 0.24);
}

.top-bar {
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 800;
}

.top-bar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-shell > *,
.hero__copy,
.why-copy,
.contact__copy,
.section-heading,
.service-card,
.process-step,
.review-card {
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 210px;
}

.brand__logo {
  width: 204px;
  height: 54px;
  object-fit: contain;
  border-radius: 6px;
  background: var(--yellow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.brand:hover .brand__logo,
.brand:focus-visible .brand__logo {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(250, 214, 4, 0.22);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  color: #e8e8e8;
  padding: 8px 0;
  transition: color 160ms ease;
}

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

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--yellow);
}

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

.header-actions,
.hero__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.header-actions {
  flex-shrink: 0;
}

.btn {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 900;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -30% auto -30% -70%;
  width: 54%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(16, 17, 19, 0.18);
}

.btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.btn:hover::after,
.btn:focus-visible::after {
  animation: button-sheen 720ms ease;
}

.btn__ripple {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  animation: button-ripple 620ms ease-out;
  z-index: 0;
}

.btn svg,
.menu-toggle svg,
.service-strip svg,
.contact-links svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
}

.btn--primary {
  background: var(--yellow);
  color: var(--ink);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(250, 214, 4, 0.35);
}

.btn--dark {
  background: var(--ink);
  color: var(--yellow);
}

.btn--outline-dark {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border: 1px solid rgba(250, 214, 4, 0.35);
  border-radius: 8px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.hero {
  background:
    radial-gradient(circle at 70% 24%, rgba(255, 255, 255, 0.38) 0 12%, rgba(255, 255, 255, 0) 38%),
    linear-gradient(115deg, rgba(250, 214, 4, 0.96) 0%, rgba(250, 214, 4, 0.96) 56%, rgba(248, 245, 236, 0.96) 56%),
    var(--yellow);
  color: var(--ink);
  overflow: hidden;
}

.hero__grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, 0.98fr);
  align-items: center;
  gap: 52px;
  padding: 56px 0 60px;
}

.eyebrow,
.section-kicker {
  width: fit-content;
  margin: 0 0 18px;
  color: var(--yellow);
  background: var(--ink);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-kicker {
  background: rgba(250, 214, 4, 0.14);
  color: var(--yellow);
}

.section-kicker--dark {
  background: var(--ink);
  color: var(--yellow);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.25rem, 8vw, 6.8rem);
  line-height: 0.9;
  font-weight: 1000;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 640px;
  margin: 22px 0 30px;
  color: #202225;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 0;
}

.stat {
  margin: 0;
  padding: 18px 14px;
  border: 1px solid rgba(16, 17, 19, 0.14);
  border-radius: 8px;
  background: rgba(255, 253, 246, 0.76);
  box-shadow: 0 14px 32px rgba(16, 17, 19, 0.1);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.stat:hover {
  transform: translateY(-4px);
  background: rgba(255, 253, 246, 0.94);
  box-shadow: 0 20px 38px rgba(16, 17, 19, 0.15);
}

.stat dt {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 1000;
  line-height: 1;
}

.stat dd {
  margin: 8px 0 0;
  color: #34373c;
  font-size: 0.84rem;
  font-weight: 800;
}

.hero__media {
  position: relative;
}

.hero__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero__media--character {
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero__media--character::before {
  content: "";
  position: absolute;
  inset: 5% 0 12%;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.52) 0 20%, rgba(255, 255, 255, 0) 58%),
    radial-gradient(circle at 56% 74%, rgba(16, 17, 19, 0.08) 0 12%, rgba(16, 17, 19, 0) 34%);
  filter: blur(4px);
  z-index: 0;
}

.hero__media--character::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 14px;
  width: min(74%, 440px);
  height: 62px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(16, 17, 19, 0.24), rgba(16, 17, 19, 0) 68%);
  transform: translateX(-50%);
  z-index: 0;
}

.hero__media--character img {
  position: relative;
  z-index: 1;
  width: auto;
  height: min(610px, 74vh);
  max-width: 96%;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 28px 28px rgba(16, 17, 19, 0.22));
  mix-blend-mode: normal;
  transform-origin: 50% 100%;
  animation: mascot-float 5.8s ease-in-out infinite;
  transition: transform 220ms ease, filter 220ms ease;
}

.hero__media--character:hover img {
  transform: translateY(-8px) rotate(-1deg);
  filter: drop-shadow(0 34px 34px rgba(16, 17, 19, 0.24));
}

.hero__badge {
  position: absolute;
  left: 50%;
  bottom: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: calc(100% - 24px);
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(16, 17, 19, 0.9);
  font-weight: 900;
  transform: translateX(-50%);
  box-shadow: 0 16px 32px rgba(16, 17, 19, 0.2);
  transition: transform 180ms ease, background 180ms ease;
  z-index: 2;
}

.hero__media--character:hover .hero__badge {
  transform: translateX(-50%) translateY(-4px);
  background: rgba(16, 17, 19, 0.95);
}

.hero__badge svg {
  width: 18px;
  height: 18px;
  color: var(--yellow);
}

.service-strip {
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid rgba(250, 214, 4, 0.18);
  border-bottom: 1px solid rgba(250, 214, 4, 0.18);
}

.service-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(250, 214, 4, 0.18);
}

.service-strip__grid div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 84px;
  background: var(--ink);
  color: #f5f5f5;
  font-weight: 850;
  text-align: center;
  transition: background 180ms ease, color 180ms ease;
}

.service-strip__grid div:hover {
  background: #17191c;
  color: var(--yellow);
}

.service-strip svg {
  color: var(--yellow);
}

.section {
  padding: 86px 0;
}

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

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

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

.section-heading {
  max-width: 740px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading--left {
  margin-left: 0;
  text-align: left;
}

.section-heading .section-kicker,
.section-heading--left .section-kicker {
  margin-left: auto;
  margin-right: auto;
}

.section-heading--left .section-kicker {
  margin-left: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1;
  font-weight: 1000;
  letter-spacing: 0;
}

.section-heading p:not(.section-kicker) {
  margin: 18px auto 0;
  color: #b7bcc5;
  font-size: 1.06rem;
}

.section--light .section-heading p:not(.section-kicker) {
  color: var(--muted);
}

.service-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.review-card,
.process-step {
  border-radius: 8px;
}

.service-card {
  position: relative;
  padding: 28px;
  background: #17191c;
  border: 1px solid rgba(250, 214, 4, 0.18);
  overflow: hidden;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(250, 214, 4, 0.12), transparent 34%);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(250, 214, 4, 0.8);
  box-shadow: 0 18px 50px rgba(250, 214, 4, 0.12);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card svg {
  width: 38px;
  height: 38px;
  color: var(--yellow);
  transition: transform 180ms ease;
}

.service-card:hover svg {
  transform: rotate(-6deg) scale(1.08);
}

.service-card h3,
.process-step h3 {
  margin: 20px 0 10px;
  font-size: 1.3rem;
  line-height: 1.15;
}

.service-card p,
.process-step p,
.review-card blockquote {
  margin: 0;
  color: #c7cbd2;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 56px;
}

.brand-panel {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 42px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: rgba(255, 253, 246, 0.68);
  box-shadow: 16px 16px 0 var(--ink);
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.brand-panel:hover {
  transform: translate(-4px, -4px);
  box-shadow: 20px 20px 0 var(--ink);
}

.brand-panel img {
  width: min(360px, 96%);
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(16, 17, 19, 0.12);
}

.brand-panel p {
  max-width: 320px;
  margin: 0;
  font-weight: 900;
}

.why-copy h2 {
  max-width: 660px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.check-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 13px 16px;
  border: 1px solid rgba(16, 17, 19, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 246, 0.62);
  font-weight: 850;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.check-list div:hover {
  transform: translateX(6px);
  background: rgba(255, 253, 246, 0.86);
  box-shadow: 0 12px 28px rgba(16, 17, 19, 0.1);
}

.check-list span {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--yellow);
  font-weight: 1000;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.process-step {
  position: relative;
  padding: 28px;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.process-step::after {
  content: "";
  position: absolute;
  inset: auto -20% -42% -20%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(31, 138, 112, 0.12), transparent 68%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.process-step:hover {
  transform: translateY(-5px);
  border-color: rgba(31, 138, 112, 0.28);
  box-shadow: 0 18px 38px rgba(16, 17, 19, 0.1);
}

.process-step:hover::after {
  opacity: 1;
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-weight: 1000;
}

.process-step p {
  color: var(--muted);
}

.review-card {
  margin: 0;
  padding: 28px;
  background: #17191c;
  border: 1px solid rgba(250, 214, 4, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(250, 214, 4, 0.62);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.rating {
  width: fit-content;
  margin-bottom: 18px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(250, 214, 4, 0.15);
  color: var(--yellow);
  font-weight: 1000;
}

.review-card blockquote {
  font-size: 1.04rem;
}

.review-card figcaption {
  margin-top: 22px;
  color: var(--yellow);
  font-weight: 900;
}

.contact {
  background: var(--yellow);
  color: var(--ink);
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: 48px;
  align-items: start;
}

.contact__copy p:not(.section-kicker) {
  max-width: 600px;
  color: #35383d;
  font-size: 1.06rem;
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  font-weight: 900;
  transition: transform 180ms ease, color 180ms ease;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  color: var(--teal);
  transform: translateX(5px);
}

.contact-links svg {
  color: var(--teal);
}

.inspection-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border-radius: 8px;
  background: var(--paper-strong);
  border: 2px solid var(--ink);
  box-shadow: 14px 14px 0 var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.inspection-form:focus-within {
  transform: translate(-3px, -3px);
  box-shadow: 17px 17px 0 var(--ink);
}

.inspection-form label {
  display: grid;
  gap: 7px;
  color: #303236;
  font-weight: 850;
}

.inspection-form input,
.inspection-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(16, 17, 19, 0.24);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 10px 12px;
}

.inspection-form input:focus,
.inspection-form select:focus {
  outline: 3px solid rgba(31, 138, 112, 0.24);
  border-color: var(--green);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 850;
}

.form-status:not(:empty) {
  animation: status-pop 360ms ease;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  background: var(--ink);
  color: #d7d9dc;
}

.footer__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__inner p {
  margin: 0;
}

.footer__inner a {
  color: var(--yellow);
  font-weight: 900;
}

@keyframes mascot-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(0.6deg);
  }
}

@keyframes button-sheen {
  0% {
    left: -70%;
    opacity: 0;
  }
  28% {
    opacity: 1;
  }
  100% {
    left: 118%;
    opacity: 0;
  }
}

@keyframes button-ripple {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(28);
  }
}

@keyframes status-pop {
  0% {
    opacity: 0;
    transform: translateY(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .nav-shell {
    min-height: 70px;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ink);
    border-top: 1px solid rgba(250, 214, 4, 0.18);
  }

  body.menu-open .main-nav {
    display: flex;
  }

  .main-nav a {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(250, 214, 4, 0.12);
  }

  .header-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .hero {
    background: var(--yellow);
  }

  .hero__grid,
  .split,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    min-height: auto;
    gap: 34px;
    padding-top: 40px;
  }

  .hero__media img {
    aspect-ratio: 16 / 10;
  }

  .hero__media--character {
    min-height: 500px;
  }

  .hero__media--character img {
    width: auto;
    height: min(460px, 62vh);
    max-width: 76%;
    aspect-ratio: auto;
  }

  .service-strip__grid,
  .service-grid,
  .process-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .top-bar__inner {
    gap: 8px 14px;
    justify-content: flex-start;
    padding: 7px 0;
  }

  .brand {
    min-width: auto;
  }

  .brand__logo {
    width: 150px;
    height: 44px;
  }

  .hero__grid {
    padding: 30px 0 42px;
  }

  h1 {
    font-size: clamp(2.55rem, 13.5vw, 3.4rem);
  }

  .hero__actions,
  .header-actions {
    width: auto;
  }

  .hero__actions .btn {
    width: 100%;
  }

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

  .stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .stat {
    padding: 12px 9px;
  }

  .stat dt {
    font-size: 1.5rem;
  }

  .stat dd {
    font-size: 0.72rem;
  }

  .stat dd {
    margin-top: 8px;
    text-align: left;
  }

  .section {
    padding: 64px 0;
  }

  .hero__media--character {
    min-height: 440px;
  }

  .hero__media--character img {
    width: auto;
    height: 410px;
    max-width: 86%;
  }

  .brand-panel,
  .inspection-form {
    box-shadow: 8px 8px 0 var(--ink);
  }

  .contact__grid {
    gap: 30px;
  }
}
