:root {
  --paper: #f5f5f1;
  --paper-deep: #e4e3dd;
  --ink: #12110f;
  --muted: #686763;
  --charcoal: #11100e;
  --charcoal-2: #191815;
  --white: #f9f8f2;
  --line: rgba(18, 17, 15, 0.14);
  --line-dark: rgba(249, 248, 242, 0.16);
  --orange-a: #ff5900;
  --orange-b: #ff5f1f;
  --orange-c: #ff7a33;
  --orange: var(--orange-b);
  --amber: var(--orange-c);
  --red: var(--orange-a);
  --orange-gradient: linear-gradient(90deg, var(--orange-a), var(--orange-b), var(--orange-c));
  --shadow: 0 28px 70px rgba(18, 17, 15, 0.18);
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Satoshi, "Cabinet Grotesk", Outfit, Arial, sans-serif;
  letter-spacing: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 74px;
  padding: 16px 38px;
  color: var(--white);
  background: rgba(17, 16, 14, 0.96);
  border-bottom: 1px solid rgba(249, 248, 242, 0.12);
  backdrop-filter: blur(18px);
  transition:
    min-height 220ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 220ms cubic-bezier(0.16, 1, 0.3, 1),
    background 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.is-scrolled {
  min-height: 64px;
  background: rgba(17, 16, 14, 0.98);
  box-shadow: 0 18px 40px rgba(18, 17, 15, 0.24);
}

.brand,
.header-cta,
.button,
.menu-toggle {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 11px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border-radius: 7px;
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
}

.brand-name {
  font-size: 16px;
  font-weight: 780;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: rgba(249, 248, 242, 0.78);
  font-size: 14px;
  font-weight: 680;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--orange-gradient);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: var(--white);
}

.header-cta {
  justify-content: center;
  gap: 9px;
  min-height: 40px;
  padding: 0 17px;
  color: var(--white);
  background: rgba(249, 248, 242, 0.04);
  border: 1px solid rgba(249, 248, 242, 0.28);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 780;
  white-space: nowrap;
  transition:
    transform 180ms cubic-bezier(0.16, 1, 0.3, 1),
    background 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.phone-icon {
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-34deg);
}

.menu-toggle {
  display: none;
  position: relative;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: var(--white);
  background: rgba(249, 248, 242, 0.08);
  border: 1px solid rgba(249, 248, 242, 0.26);
  border-radius: 999px;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 16px;
  height: 2px;
  content: "";
  background: currentColor;
  border-radius: 999px;
  transition:
    transform 180ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-toggle span::before {
  transform: translateY(-6px);
}

.menu-toggle span::after {
  transform: translateY(4px);
}

.mobile-menu {
  display: none;
}

.mobile-menu[hidden] {
  display: none;
}

.site-header.is-menu-open .menu-toggle span {
  background: transparent;
}

.site-header.is-menu-open .menu-toggle span::before {
  transform: translateY(1px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span::after {
  transform: translateY(-1px) rotate(-45deg);
}

.header-cta:hover,
.button:hover,
.header-cta:focus-visible,
.button:focus-visible,
.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: translateY(-2px);
}

.button:active,
.header-cta:active,
.menu-toggle:active {
  transform: translateY(1px) scale(0.99);
}

.hero {
  position: relative;
  min-height: calc(100dvh - 98px);
  overflow: hidden;
  padding: 34px 38px 0;
  background:
    radial-gradient(circle at 78% 54%, rgba(255, 122, 51, 0.44), transparent 28%),
    radial-gradient(circle at 4% 14%, rgba(255, 95, 31, 0.54), transparent 32%),
    linear-gradient(135deg, var(--orange-a) 0%, var(--orange-b) 48%, var(--orange-c) 100%);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  right: -12%;
  bottom: 18%;
  width: 60%;
  height: 70px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(18, 17, 15, 0.1), rgba(255, 122, 51, 0.74), rgba(255, 89, 0, 0.44), transparent);
  filter: blur(12px);
  transform: rotate(-10deg);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 0.92fr);
  gap: 44px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 12px;
}

.hero-subcopy {
  max-width: 380px;
  margin: 0 0 22px;
  color: rgba(18, 17, 15, 0.76);
  font-size: 15px;
  line-height: 1.45;
}

.hero h1 {
  max-width: 660px;
  margin: 0;
  font-size: 60px;
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-support {
  max-width: 500px;
  margin: 24px 0 0;
  color: rgba(18, 17, 15, 0.72);
  font-size: 16px;
  line-height: 1.55;
}

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

.button {
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 820;
  line-height: 1;
  transition:
    transform 180ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 180ms cubic-bezier(0.16, 1, 0.3, 1),
    background 180ms cubic-bezier(0.16, 1, 0.3, 1),
    color 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.button-primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 14px 34px rgba(18, 17, 15, 0.18);
}

.button-secondary {
  color: var(--ink);
  background: rgba(249, 248, 242, 0.18);
  border: 1px solid rgba(18, 17, 15, 0.32);
}

.button-core {
  width: 24px;
  height: 18px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(30, 0, 0, 0.34), transparent 18%),
    var(--orange-gradient);
}

.hero-media {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-width: 0;
  padding: 28px 0 64px;
}

.hero-photo {
  position: relative;
  overflow: hidden;
  height: min(58dvh, 500px);
  min-height: 400px;
  background: var(--charcoal);
  border-radius: var(--radius);
  box-shadow:
    0 32px 80px rgba(67, 21, 5, 0.28),
    0 0 0 1px rgba(249, 248, 242, 0.24);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 48%;
  filter: grayscale(0.22) contrast(1.1) saturate(0.82);
}

.hero-photo::after,
.quality-photo::after,
.process-photo-card::after,
.contact-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(18, 17, 15, 0.18), transparent 48%, rgba(18, 17, 15, 0.2)),
    linear-gradient(0deg, rgba(18, 17, 15, 0.34), transparent 48%);
  pointer-events: none;
}

.speed-line {
  position: absolute;
  left: -22%;
  z-index: 3;
  width: 142%;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 89, 0, 0.22) 22%, rgba(255, 122, 51, 0.9) 50%, rgba(255, 95, 31, 0.42) 70%, transparent 100%);
  filter: blur(5px);
  transform: rotate(-8deg);
  will-change: transform;
}

.speed-line-a {
  top: 52%;
  height: 22px;
  animation: slideLine 6.4s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.speed-line-b {
  top: 61%;
  height: 10px;
  opacity: 0.7;
  animation: slideLine 7.4s cubic-bezier(0.16, 1, 0.3, 1) 0.6s infinite;
}

@keyframes slideLine {
  0% {
    transform: translateX(-7%) rotate(-8deg);
  }
  50% {
    transform: translateX(7%) rotate(-8deg);
  }
  100% {
    transform: translateX(-7%) rotate(-8deg);
  }
}

.floating-service {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 4;
  width: 252px;
  padding: 20px;
  color: var(--white);
  background: rgba(17, 16, 14, 0.78);
  border: 1px solid rgba(249, 248, 242, 0.18);
  border-radius: var(--radius);
  box-shadow:
    inset 0 1px 0 rgba(249, 248, 242, 0.12),
    0 28px 70px rgba(18, 17, 15, 0.26);
  backdrop-filter: blur(18px);
}

.floating-service span,
.service-index,
.micro-label,
.process-photo-card span,
.process-steps span {
  color: var(--orange);
  background: var(--orange-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 12px;
  font-weight: 860;
  -webkit-text-fill-color: transparent;
}

.floating-service span {
  display: inline-flex;
  margin-bottom: 46px;
}

.floating-service strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1;
}

.floating-service p {
  margin: 0;
  color: rgba(249, 248, 242, 0.68);
  font-size: 12px;
  line-height: 1.4;
}

.hero-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1300px;
  margin: 0 auto;
  overflow: hidden;
  background: rgba(83, 26, 4, 0.2);
  border: 1px solid rgba(83, 26, 4, 0.22);
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: 0 18px 54px rgba(83, 26, 4, 0.16);
}

.hero-strip span {
  min-height: 66px;
  padding: 22px;
  background: rgba(249, 248, 242, 0.64);
  font-size: 14px;
  font-weight: 800;
}

.hero-word {
  position: absolute;
  left: -16px;
  bottom: 4px;
  z-index: 0;
  margin: 0;
  color: rgba(83, 26, 4, 0.09);
  font-size: 60px;
  font-weight: 900;
  line-height: 0.78;
  pointer-events: none;
  transform: scale(2.8);
  transform-origin: left bottom;
}

.services,
.quality,
.process,
.proof,
.contact {
  padding: 96px 38px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.44fr);
  gap: 40px;
  max-width: var(--max);
  margin: 0 auto 42px;
}

.section-heading h2,
.quality h2,
.proof h2,
.contact h2 {
  margin: 0;
  font-size: 52px;
  font-weight: 890;
  line-height: 0.98;
  letter-spacing: 0;
}

.section-heading p,
.quality-copy p,
.proof-copy p,
.contact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.86fr) minmax(0, 1fr);
  gap: 12px;
  max-width: var(--max);
  margin: 0 auto;
}

.service-feature,
.service-list article,
.proof-cards article,
.contact-card {
  border-radius: var(--radius);
}

.service-feature {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  color: var(--white);
  background: var(--charcoal);
}

.service-feature img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: 52% 58%;
  filter: grayscale(0.26) contrast(1.05) saturate(0.86);
}

.service-feature::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 28%, rgba(17, 16, 14, 0.86) 100%),
    linear-gradient(90deg, rgba(17, 16, 14, 0.24), transparent 70%);
}

.service-feature > div {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 2;
}

.service-feature h3,
.service-list h3,
.process-steps h3,
.process-photo-card h3 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0;
}

.service-feature p,
.service-list p,
.process-steps p {
  max-width: 420px;
  margin: 0;
  color: rgba(249, 248, 242, 0.68);
  font-size: 14px;
  line-height: 1.45;
}

.service-list {
  display: grid;
  grid-template-rows: 1fr 0.85fr 0.85fr;
  gap: 12px;
}

.service-list article {
  display: flex;
  min-height: 166px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: var(--paper-deep);
  border: 1px solid rgba(18, 17, 15, 0.08);
}

.service-list article:first-child {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 95, 31, 0.24), transparent 54%),
    var(--charcoal-2);
  border-color: rgba(249, 248, 242, 0.12);
}

.service-list article:not(:first-child) p {
  color: var(--muted);
}

.service-index {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 34px;
  padding: 5px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.quality,
.process {
  color: var(--white);
  background: var(--charcoal);
}

.quality-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(470px, 0.9fr);
  gap: 66px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.micro-label {
  margin: 0 0 18px;
}

.quality-copy p:not(.micro-label) {
  max-width: 520px;
  color: rgba(249, 248, 242, 0.66);
}

.quality h2 {
  max-width: 640px;
  margin-bottom: 24px;
}

.quality-stack {
  position: relative;
  min-height: 650px;
}

.quality-photo {
  position: absolute;
  overflow: hidden;
  margin: 0;
  background: var(--charcoal-2);
  border: 1px solid rgba(249, 248, 242, 0.12);
  border-radius: var(--radius);
}

.quality-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.48) contrast(1.18) saturate(0.76);
}

.quality-photo-large {
  inset: 0 76px 132px 0;
}

.quality-photo-small {
  right: 0;
  bottom: 260px;
  z-index: 2;
  width: 250px;
  height: 168px;
  box-shadow: 0 26px 60px rgba(18, 17, 15, 0.3);
}

.quality-list {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: grid;
  width: min(430px, 92%);
  margin: 0;
  padding: 24px;
  background: rgba(25, 24, 21, 0.84);
  border: 1px solid rgba(249, 248, 242, 0.16);
  border-radius: var(--radius);
  box-shadow:
    inset 0 1px 0 rgba(249, 248, 242, 0.1),
    0 30px 70px rgba(18, 17, 15, 0.26);
  backdrop-filter: blur(18px);
}

.quality-list div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  border-top: 1px solid rgba(249, 248, 242, 0.14);
}

.quality-list div:first-child {
  border-top: 0;
}

.quality-list dt {
  font-size: 24px;
  font-weight: 880;
}

.quality-list dd {
  margin: 0;
  color: rgba(249, 248, 242, 0.6);
  font-size: 13px;
  text-align: right;
}

.section-heading-dark p {
  color: rgba(249, 248, 242, 0.62);
}

.process-board {
  display: grid;
  grid-template-columns: minmax(430px, 0.92fr) minmax(0, 1fr);
  gap: 12px;
  max-width: var(--max);
  margin: 0 auto;
}

.process-photo-card {
  position: sticky;
  top: 94px;
  align-self: start;
  overflow: hidden;
  min-height: 560px;
  margin: 0;
  background: var(--charcoal-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

.process-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: 48% 52%;
  filter: grayscale(0.22) contrast(1.12) saturate(0.8);
}

.process-photo-card div {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 2;
}

.process-photo-card h3 {
  max-width: 360px;
}

.process-steps {
  display: grid;
  gap: 12px;
}

.process-steps article {
  min-height: 180px;
  padding: 24px;
  background: rgba(249, 248, 242, 0.055);
  border: 1px solid rgba(249, 248, 242, 0.1);
  border-radius: var(--radius);
}

.process-steps span {
  display: inline-flex;
  margin-bottom: 52px;
}

.process-steps p {
  color: rgba(249, 248, 242, 0.62);
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.72fr);
  gap: 64px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.proof-copy p {
  max-width: 480px;
  margin-top: 22px;
}

.proof-cards {
  display: grid;
  gap: 12px;
}

.proof-cards article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 86px;
  padding: 18px 20px;
  background: var(--paper-deep);
}

.proof-cards strong {
  font-size: 23px;
  line-height: 1;
}

.proof-cards span {
  max-width: 160px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.25;
  text-align: right;
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.58fr);
  gap: 42px;
  align-items: center;
  overflow: hidden;
  background: var(--paper-deep);
}

.contact::before {
  position: absolute;
  left: -12%;
  bottom: 7%;
  width: 78%;
  height: 52px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 89, 0, 0.18), rgba(255, 122, 51, 0.72), rgba(255, 95, 31, 0.28), transparent);
  filter: blur(9px);
  transform: rotate(-8deg);
}

.contact-visual {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  background: var(--charcoal);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-visual > img:first-child {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: 54% 62%;
  filter: grayscale(0.26) contrast(1.1) saturate(0.84);
}

.contact-logo {
  position: absolute;
  left: 36px;
  bottom: 36px;
  z-index: 3;
  width: 260px;
  padding: 24px;
  background: rgba(249, 248, 242, 0.86);
  border: 1px solid rgba(18, 17, 15, 0.08);
  border-radius: var(--radius);
}

.contact-light {
  position: absolute;
  right: 4%;
  bottom: 25%;
  z-index: 2;
  width: 42%;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--orange-a), var(--orange-c), transparent);
  filter: blur(9px);
  transform: rotate(-14deg);
}

.contact-card {
  position: relative;
  z-index: 2;
  padding: 34px;
  background: rgba(249, 248, 242, 0.9);
  border: 1px solid rgba(18, 17, 15, 0.08);
  box-shadow: 0 24px 70px rgba(18, 17, 15, 0.12);
}

.contact-card h2 {
  margin-bottom: 18px;
}

#contact-title {
  scroll-margin-top: 96px;
}

.contact-card address {
  margin-top: 28px;
  color: #53524d;
  font-size: 14px;
  font-style: normal;
  line-height: 1.55;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 38px;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 122, 51, 0.48), transparent 24%),
    linear-gradient(135deg, var(--orange-a) 0%, var(--orange-b) 44%, var(--orange-c) 100%);
  font-size: 13px;
  font-weight: 680;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

@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;
  }
}

@media (max-width: 1120px) {
  .hero-grid,
  .service-layout,
  .quality-grid,
  .process-board,
  .proof,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    max-width: 760px;
  }

  .hero-media,
  .service-feature,
  .quality-stack,
  .process-photo-card,
  .contact-visual {
    max-width: 760px;
  }

  .quality-stack {
    min-height: 620px;
  }

  .process-photo-card {
    position: relative;
    top: auto;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 18px;
    min-height: 68px;
    padding: 14px 20px;
  }

  .nav-links {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 20px;
    left: 20px;
    z-index: 30;
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    background: var(--charcoal);
    border: 1px solid rgba(249, 248, 242, 0.14);
    border-radius: var(--radius);
    box-shadow: 0 24px 64px rgba(18, 17, 15, 0.34);
  }

  .mobile-menu:not([hidden]) {
    display: grid;
  }

  .mobile-menu a {
    min-height: 52px;
    padding: 16px 18px;
    background: var(--charcoal);
    border-top: 1px solid rgba(249, 248, 242, 0.12);
    color: var(--white);
    font-size: 14px;
    font-weight: 820;
  }

  .mobile-menu a:first-child {
    border-top: 0;
  }

  .mobile-menu a:hover,
  .mobile-menu a:focus-visible {
    background: rgba(249, 248, 242, 0.08);
    color: var(--white);
  }

  .mobile-menu .mobile-phone {
    display: flex;
    align-items: center;
    color: var(--white);
    background: var(--charcoal-2);
  }

  .hero,
  .services,
  .quality,
  .process,
  .proof,
  .contact {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero {
    padding-top: 32px;
  }

  .hero h1 {
    font-size: 48px;
    line-height: 0.98;
  }

  .hero-photo {
    height: 420px;
    min-height: 420px;
  }

  .hero-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-word {
    font-size: 60px;
    transform: scale(1.84);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-heading h2,
  .quality h2,
  .proof h2,
  .contact h2 {
    font-size: 42px;
  }

  .services,
  .quality,
  .process,
  .proof,
  .contact {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .quality-stack {
    min-height: 560px;
  }

  .quality-photo-large {
    inset: 0 34px 132px 0;
  }

  .quality-photo-small {
    width: 210px;
    height: 142px;
  }
}

@media (max-width: 560px) {
  .brand-name {
    font-size: 14px;
  }

  .header-cta {
    display: none;
  }

  .phone-icon {
    flex: 0 0 auto;
  }

  .hero {
    padding-top: 22px;
  }

  .hero-grid {
    gap: 18px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-support {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.45;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-media {
    padding: 0;
  }

  .hero-photo {
    height: 230px;
    min-height: 230px;
  }

  .floating-service {
    right: 12px;
    bottom: 12px;
    width: 220px;
    padding: 14px;
  }

  .floating-service span {
    margin-bottom: 20px;
  }

  .floating-service strong {
    font-size: 18px;
  }

  .floating-service p {
    font-size: 11px;
  }

  .hero-strip {
    display: none;
  }

  .service-layout,
  .process-board {
    gap: 10px;
  }

  .service-feature,
  .service-feature img,
  .process-photo-card,
  .process-photo-card img,
  .contact-visual,
  .contact-visual > img:first-child {
    min-height: 390px;
  }

  .service-feature h3,
  .service-list h3,
  .process-steps h3,
  .process-photo-card h3 {
    font-size: 24px;
  }

  .service-list {
    display: flex;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }

  .service-list article {
    min-width: 258px;
    scroll-snap-align: start;
  }

  .quality-stack {
    min-height: 620px;
  }

  .quality-photo-large {
    inset: 0 0 238px 0;
  }

  .quality-photo-small {
    right: 18px;
    bottom: 260px;
    width: 168px;
    height: 112px;
  }

  .quality-list {
    left: 0;
    width: 100%;
  }

  .quality-list div {
    display: grid;
    gap: 5px;
  }

  .quality-list dd {
    text-align: left;
  }

  .proof-cards article {
    display: grid;
    gap: 10px;
  }

  .proof-cards span {
    max-width: none;
    text-align: left;
  }

  .contact-card {
    padding: 24px;
  }

  .contact-logo {
    left: 18px;
    bottom: 18px;
    width: 214px;
    padding: 18px;
  }

  .site-footer {
    flex-direction: column;
    padding: 24px 20px;
  }
}
