:root {
  --brand: #ff7f50;
  --brand-deep: #ff6a31;
  --ink: #24303f;
  --muted: #6b7480;
  --light: #ffffff;
  --shell: #f6f2ed;
  --topbar: #f6f1ea;
  --shadow: 0 22px 60px rgba(36, 48, 63, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--ink);
  background: #e8edf2;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}

.page-shell {
  min-height: 100vh;
  background: linear-gradient(180deg, #f8fbfe 0%, #eef3f8 100%);
}

.topbar {
  background: var(--topbar);
  border-bottom: 1px solid rgba(36, 48, 63, 0.07);
  font-size: 12px;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  color: #495361;
}

.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.topbar__item i {
  color: var(--brand);
}

.navbar {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(36, 48, 63, 0.08);
  position: sticky;
  top: 0;
  z-index: 20;
}

.navbar__inner {
  min-height: 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand__logo {
  width: 66px;
  max-width: 100%;
  height: auto;
  display: block;
  transform: scale(2.4);
  transform-origin: left center;
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin: 0;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 800;
  padding: 2px 6px;
  color: #2d3b49;
  position: relative;
  transition: color 0.25s ease;
}

.nav__link:hover,
.nav__link.active {
  color: var(--brand);
}

.nav__link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: var(--brand);
  border-radius: 999px;
}

.socials {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-self: end;
}

.socials a {
  width: 20px;
  height: 20px;
  border-radius: 8px;
  background: #fff4ee;
  color: var(--brand);
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px rgba(255, 127, 80, 0.08);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.socials a:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 12px;
  background: #fff4ee;
  box-shadow: inset 0 0 0 1px rgba(255, 127, 80, 0.08);
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--brand);
  margin: 3px auto;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  position: relative;
  min-height: calc(100vh - 122px);
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #0b1620;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  filter: brightness(1.06) contrast(1.18) saturate(1.08);
}

.hero__overlay,
.hero__texture,
.hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero__art {
  z-index: 1;
}

.hero__overlay {
  background:
    linear-gradient(180deg, rgba(6, 17, 27, 0.16), rgba(6, 17, 27, 0.34)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 35%, rgba(255, 255, 255, 0.06) 70%, transparent 100%);
}

.hero__texture {
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 5px 5px;
  opacity: 0.28;
  mix-blend-mode: soft-light;
}

.hero__glow--left {
  width: 560px;
  height: 560px;
  left: -180px;
  top: 6%;
  background: radial-gradient(circle, rgba(111, 208, 232, 0.25) 0%, rgba(111, 208, 232, 0.08) 35%, transparent 70%);
  filter: blur(10px);
}

.hero__glow--right {
  width: 520px;
  height: 520px;
  right: -180px;
  bottom: -140px;
  background: radial-gradient(circle, rgba(255, 134, 90, 0.2) 0%, rgba(255, 134, 90, 0.06) 35%, transparent 70%);
  filter: blur(10px);
}

.hero__art {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__panel {
  position: absolute;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
  transform: rotate(-18deg);
  border-radius: 24px;
  opacity: 0.75;
}

.hero__panel--one {
  width: 74vw;
  height: 220px;
  left: -8vw;
  top: 12%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.09);
}

.hero__panel--two {
  width: 72vw;
  height: 170px;
  right: -16vw;
  top: 18%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
}

.hero__panel--three {
  width: 68vw;
  height: 200px;
  right: -18vw;
  bottom: 8%;
  transform: rotate(-15deg);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.paint-roller {
  position: absolute;
  left: 50%;
  top: 58%;
  width: min(70vw, 1100px);
  height: 320px;
  transform: translate(-50%, -50%) rotate(18deg);
  opacity: 0.95;
  filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.3));
}

.paint-roller__handle {
  position: absolute;
  right: 16%;
  top: 44%;
  width: 220px;
  height: 54px;
  background: linear-gradient(180deg, #2a2a32, #11131a);
  border-radius: 999px;
  transform: rotate(10deg);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.paint-roller__head {
  position: absolute;
  right: 14.4%;
  top: 35%;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 52% 52%, #fff 0 42%, transparent 43%),
    conic-gradient(from 18deg, #ffa63f 0 20%, #ff7f50 20% 40%, #ef4b72 40% 55%, #4364e2 55% 70%, #26b6f7 70% 84%, #ffa63f 84% 100%);
  box-shadow: 0 0 50px rgba(255, 179, 80, 0.7);
}

.paint-roller__brush {
  position: absolute;
  right: 26%;
  top: 48%;
  width: 104px;
  height: 24px;
  background: linear-gradient(180deg, #22242d, #090a10);
  border-radius: 12px;
  transform: rotate(10deg);
}

.paint-roller__brush::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 100%;
  width: 10px;
  height: 16px;
  background: #ffffff;
  border-radius: 0 0 6px 6px;
}

.paint-roller__brush::after {
  content: "";
  position: absolute;
  left: -2px;
  top: 98%;
  width: 90px;
  height: 58px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.14));
  clip-path: polygon(0 0, 100% 0, 100% 20%, 80% 100%, 20% 100%, 0 20%);
  filter: blur(0.5px);
}

.paint-roller__trail {
  position: absolute;
  right: 24%;
  top: 47%;
  width: 56%;
  height: 16px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.22));
  border-radius: 999px;
  transform: rotate(4deg);
  filter: blur(0.6px);
  opacity: 0.75;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 88px 0 82px;
  max-width: 1080px;
  animation: rise 1s ease both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.eyebrow span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.06);
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.25rem, 8vw, 7.25rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-wrap: balance;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.22);
}

.hero__copy {
  width: min(760px, 90%);
  margin: 22px auto 0;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.86);
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  min-width: 185px;
  height: 58px;
  padding: 0 26px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(180deg, #38d27c, #22bf67);
  color: #fff;
  box-shadow: 0 16px 35px rgba(34, 191, 103, 0.35);
}

.btn--secondary {
  background: linear-gradient(180deg, #ff8a55, #ff7a44);
  color: #fff;
  box-shadow: 0 16px 35px rgba(255, 122, 68, 0.35);
}

.about {
  background: #ffffff;
  padding: 110px 0;
}

.about__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 86px;
  align-items: center;
}

.about__media {
  position: relative;
  min-height: 560px;
}

.about__media-bg {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(36, 48, 63, 0.92), rgba(36, 48, 63, 0.28));
  clip-path: polygon(0 0, 86% 0, 100% 50%, 86% 100%, 0 100%);
  box-shadow: 0 28px 70px rgba(36, 48, 63, 0.16);
}

.about__image {
  position: absolute;
  display: block;
  object-fit: cover;
}

.about__image--main {
  left: 0;
  top: 0;
  width: 86%;
  height: 100%;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(36, 48, 63, 0.16);
}

.about__image--circle {
  right: 0;
  top: 50%;
  width: min(340px, 48%);
  aspect-ratio: 1 / 1;
  height: auto;
  transform: translate(8%, -50%);
  border-radius: 50%;
  border: 14px solid #ffffff;
  box-shadow: 0 22px 60px rgba(36, 48, 63, 0.18);
  animation: about-float 7s ease-in-out infinite;
}

.about__accent {
  position: absolute;
  left: -18px;
  bottom: -18px;
  width: 132px;
  height: 132px;
  border-left: 8px solid rgba(255, 127, 80, 0.95);
  border-bottom: 8px solid rgba(255, 127, 80, 0.95);
  border-radius: 18px;
  filter: drop-shadow(0 20px 40px rgba(36, 48, 63, 0.12));
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
}

.section-kicker::before {
  content: "";
  width: 38px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
}

.about__title {
  margin: 0;
  font-size: clamp(2.35rem, 4.1vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #2b3946;
}

.about__title span {
  color: var(--brand);
}

.about__lead {
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.75;
  color: #3d4b59;
}

.about__text {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(36, 48, 63, 0.7);
}

.about__list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 12px;
}

.about__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(36, 48, 63, 0.78);
}

.about__list i {
  width: 26px;
  height: 26px;
  border-radius: 9px;
  background: rgba(255, 127, 80, 0.12);
  color: var(--brand);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  box-shadow: inset 0 0 0 1px rgba(255, 127, 80, 0.14);
}

.about__meta {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(36, 48, 63, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.about__person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.about__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(255, 127, 80, 0.16), rgba(255, 127, 80, 0.06));
  color: var(--brand);
  box-shadow: inset 0 0 0 1px rgba(255, 127, 80, 0.18);
}

.about__name {
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #2b3946;
}

.about__role {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(36, 48, 63, 0.6);
}

.services {
  background: #f6f6f6;
  padding: 110px 0;
}

.services__inner {
  display: grid;
  grid-template-columns: minmax(360px, 560px) 1fr;
  gap: 92px;
  align-items: start;
}

.services__content {
  padding-top: 6px;
}

.services__title {
  margin: 0;
  font-size: clamp(2.6rem, 4.5vw, 4.25rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
  font-weight: 700;
  color: #2b3946;
}

.services__title span {
  display: block;
}

.services__list {
  margin-top: 42px;
  display: grid;
}

.service {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 26px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(36, 48, 63, 0.14);
}

.service:first-child {
  padding-top: 0;
}

.service:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.service__icon {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 40px rgba(36, 48, 63, 0.08);
  border: 1px solid rgba(36, 48, 63, 0.06);
  color: var(--brand);
  font-size: 28px;
}

.service__body h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #2b3946;
}

.service__body p {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(36, 48, 63, 0.68);
}

.services__media {
  position: relative;
  overflow: hidden;
  background: #e9eef3;
  margin-right: 0;
  width: min(448px, 100%);
  justify-self: end;
  min-height: 368px;
  border-radius: 28px;
}

.services__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: none;
}

.offer {
  position: relative;
  padding: 96px 0 110px;
  background: linear-gradient(180deg, rgba(255, 127, 80, 0.86) 0%, rgba(255, 127, 80, 0.9) 55%, var(--light) 55%, var(--light) 100%);
  overflow: hidden;
}

.offer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.14), transparent 42%),
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.12), transparent 46%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.offer__header {
  position: relative;
  text-align: center;
  color: #ffffff;
  max-width: 980px;
}

.offer__kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.offer__kicker::before,
.offer__kicker::after {
  content: "";
  width: 44px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
}

.offer__title {
  margin: 22px auto 0;
  font-size: clamp(2.7rem, 5vw, 4.3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 700;
  text-wrap: balance;
}

.offer__grid {
  position: relative;
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  align-items: stretch;
}

.offer-card {
  border-radius: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.offer-card__media {
  height: 260px;
  overflow: hidden;
}

.offer-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.offer-card__body {
  position: relative;
  background: #ffffff;
  padding: 62px 34px 34px;
  text-align: center;
  box-shadow: 0 22px 60px rgba(36, 48, 63, 0.12);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.offer-card__icon {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
  border-radius: 10px;
  background: var(--brand);
  color: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 40px rgba(255, 127, 80, 0.38);
}

.offer-card__icon i {
  font-size: 22px;
}

.offer-card__body h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #2b3946;
  text-transform: capitalize;
}

.offer-card__body p {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(36, 48, 63, 0.62);
  flex: 1;
}

.offer-card__link {
  display: inline-flex;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #22bf67;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.offer-card:hover .offer-card__media img {
  transform: scale(1.06);
}

.offer-card:hover .offer-card__link {
  transform: translateY(-1px);
  opacity: 0.95;
}

.skills {
  position: relative;
  padding: 110px 0 120px;
  background: #ffffff;
  overflow: hidden;
}

.skills::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 520px;
  background:
    radial-gradient(circle at 20% 40%, rgba(36, 48, 63, 0.04) 0 42%, transparent 43%),
    radial-gradient(circle at 56% 32%, rgba(36, 48, 63, 0.035) 0 44%, transparent 45%),
    radial-gradient(circle at 84% 42%, rgba(36, 48, 63, 0.03) 0 40%, transparent 41%);
  pointer-events: none;
}

.skills__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
}

.skills__title {
  margin: 0;
  font-size: clamp(2.8rem, 4.6vw, 4.25rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  color: #2b3946;
}

.skills__text {
  margin: 26px 0 0;
  padding-left: 22px;
  border-left: 3px solid rgba(255, 127, 80, 0.75);
  font-size: 15px;
  line-height: 1.9;
  color: rgba(36, 48, 63, 0.68);
  max-width: 520px;
}

.skills__cta {
  margin-top: 34px;
}

.skills__meters {
  display: grid;
  gap: 48px;
}

.meter {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 28px;
  align-items: center;
}

.meter__ring {
  --p: 0;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--ring) calc(var(--p) * 1%), rgba(36, 48, 63, 0.12) 0);
  position: relative;
  box-shadow: 0 18px 45px rgba(36, 48, 63, 0.08);
}

.meter__ring::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: inset 0 0 0 6px rgba(36, 48, 63, 0.04);
}

.meter__value {
  position: relative;
  z-index: 1;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #2b3946;
}

.meter__info h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #2b3946;
}

.meter__info p {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(36, 48, 63, 0.62);
}

.skills__gallery {
  position: relative;
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.gallery__item {
  margin: 0;
  overflow: hidden;
  background: #f4f6f8;
  box-shadow: 0 22px 60px rgba(36, 48, 63, 0.08);
}

.gallery__item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item--wide img {
  height: 320px;
}

.gallery__item:hover img {
  transform: scale(1.06);
}

.testimonials {
  position: relative;
  padding: 110px 0 120px;
  background: #ffffff;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 520px;
  background:
    radial-gradient(circle at 16% 42%, rgba(36, 48, 63, 0.035) 0 44%, transparent 45%),
    radial-gradient(circle at 50% 28%, rgba(36, 48, 63, 0.03) 0 46%, transparent 47%),
    radial-gradient(circle at 84% 48%, rgba(36, 48, 63, 0.028) 0 42%, transparent 43%);
  pointer-events: none;
}

.testimonials__header {
  position: relative;
  text-align: center;
  max-width: 920px;
}

.testimonials__kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
}

.testimonials__kicker::before,
.testimonials__kicker::after {
  content: "";
  width: 44px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 127, 80, 0.9);
}

.testimonials__title {
  margin: 22px 0 0;
  font-size: clamp(2.7rem, 4.5vw, 4.1rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  font-weight: 700;
  color: #2b3946;
}

.testimonials__grid {
  position: relative;
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  align-items: stretch;
}

.testimonial {
  background: #f8f2ea;
  border-radius: 16px;
  padding: 52px 38px 42px;
  text-align: center;
  box-shadow: 0 20px 55px rgba(36, 48, 63, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(36, 48, 63, 0.12);
}

.testimonial__avatarWrap {
  position: relative;
  width: 150px;
  height: 98px;
  margin: 0 auto 18px;
}

.testimonial__avatarWrap::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 140px;
  height: 70px;
  transform: translateX(-50%);
  border: 10px solid rgba(255, 127, 80, 0.95);
  border-bottom: 0;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
}

.testimonial__avatar {
  position: absolute;
  left: 50%;
  top: 62px;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(36, 48, 63, 0.06), rgba(36, 48, 63, 0.02));
  border: 6px solid #f8f2ea;
  box-shadow: 0 18px 45px rgba(36, 48, 63, 0.12);
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #2b3946;
}

.testimonial__quote {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(36, 48, 63, 0.62);
  flex: 1;
}

.testimonial__name {
  margin: 26px 0 0;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #2b3946;
}

.testimonial__name span {
  margin-left: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--brand);
  white-space: nowrap;
}

.contact {
  position: relative;
  padding: 120px 0 130px;
  background: linear-gradient(180deg, rgba(255, 127, 80, 0.94), rgba(255, 127, 80, 0.92));
  color: rgba(255, 255, 255, 0.96);
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 42%, rgba(255, 255, 255, 0.12) 0 40%, transparent 41%),
    radial-gradient(circle at 62% 28%, rgba(255, 255, 255, 0.09) 0 44%, transparent 45%),
    radial-gradient(circle at 86% 58%, rgba(255, 255, 255, 0.08) 0 40%, transparent 41%),
    linear-gradient(0deg, rgba(36, 48, 63, 0.08), rgba(36, 48, 63, 0.08));
  opacity: 0.55;
  pointer-events: none;
}

.contact::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 7px 7px;
  opacity: 0.18;
  mix-blend-mode: soft-light;
  -webkit-mask-image:
    radial-gradient(circle at 38% 54%, rgba(0, 0, 0, 1) 0 36%, transparent 60%),
    radial-gradient(circle at 74% 38%, rgba(0, 0, 0, 1) 0 28%, transparent 56%),
    radial-gradient(circle at 60% 74%, rgba(0, 0, 0, 1) 0 26%, transparent 54%);
  mask-image:
    radial-gradient(circle at 38% 54%, rgba(0, 0, 0, 1) 0 36%, transparent 60%),
    radial-gradient(circle at 74% 38%, rgba(0, 0, 0, 1) 0 28%, transparent 56%),
    radial-gradient(circle at 60% 74%, rgba(0, 0, 0, 1) 0 26%, transparent 54%);
  pointer-events: none;
}

.contact__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 86px;
  align-items: start;
}

.contact__content {
  max-width: 640px;
}

.contact__kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
}

.contact__kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
}

.contact__title {
  margin: 18px 0 0;
  font-size: clamp(2.7rem, 5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  font-weight: 700;
  text-wrap: balance;
  color: #ffffff;
}

.contact__form {
  margin-top: 44px;
  width: min(600px, 100%);
  display: grid;
  gap: 20px;
}

.contact__field {
  position: relative;
}

.contact__field input,
.contact__field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.98);
  padding: 22px 58px 22px 26px;
  border-radius: 10px;
  outline: none;
  font-size: 16px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    0 18px 40px rgba(36, 48, 63, 0.12);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact__field input {
  height: 72px;
}

.contact__field textarea {
  min-height: 170px;
  resize: vertical;
}

.contact__field input::placeholder,
.contact__field textarea::placeholder {
  color: rgba(255, 255, 255, 0.88);
}

.contact__field i {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  pointer-events: none;
}

.contact__field--message i {
  top: 30px;
  transform: none;
}

.contact__field input:focus,
.contact__field textarea:focus {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.22),
    0 0 0 4px rgba(255, 255, 255, 0.14),
    0 22px 60px rgba(36, 48, 63, 0.18);
}

.contact__btn {
  margin-top: 8px;
  width: min(360px, 100%);
  height: 70px;
  border: 0;
  border-radius: 12px;
  background: #ffffff;
  color: rgba(255, 127, 80, 0.98);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 20px 50px rgba(36, 48, 63, 0.22);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  justify-self: start;
}

.contact__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 70px rgba(36, 48, 63, 0.26);
}

.contact__media {
  position: relative;
  display: grid;
  gap: 26px;
  justify-items: start;
  align-content: start;
  padding-top: 10px;
}

.contact__photo {
  margin: 0;
  width: min(280px, 100%);
  background: rgba(255, 255, 255, 0.92);
  padding: 8px;
  box-shadow: 0 26px 70px rgba(36, 48, 63, 0.3);
  border-radius: 6px;
}

.contact__photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.contact__photo--top {
  transform: rotate(-9deg);
  transform-origin: center;
  margin-right: 12px;
  animation: contact-float 7s ease-in-out infinite;
}

.contact__photo--bottom {
  width: min(300px, 100%);
}

@keyframes contact-float {
  0%,
  100% {
    transform: rotate(-9deg) translateY(0);
  }
  50% {
    transform: rotate(-9deg) translateY(-10px);
  }
}

.footer {
  position: relative;
  padding: 96px 0 46px;
  background: linear-gradient(180deg, #2f3e49 0%, #273540 100%);
  color: rgba(210, 232, 246, 0.82);
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 16%, rgba(255, 255, 255, 0.06), transparent 46%),
    radial-gradient(circle at 86% 36%, rgba(255, 255, 255, 0.04), transparent 52%),
    radial-gradient(circle at 48% 92%, rgba(255, 255, 255, 0.035), transparent 58%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 38%);
  pointer-events: none;
  opacity: 0.75;
}

.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 8px 8px;
  opacity: 0.08;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.footer__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.footer__title {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.96);
}

.footer__rule {
  margin-top: 18px;
  height: 2px;
  width: min(360px, 100%);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

.footer__text {
  margin: 24px 0 0;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(200, 226, 242, 0.78);
}

.footer__brand {
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer__logo {
  width: calc(60px * 1.5);
  height: calc(60px * 1.5);
  display: block;
  object-fit: contain;
  transform: scale(3);
  transform-origin: left center;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.25));
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.footer__links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(200, 226, 242, 0.84);
  transition: color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.footer__links a:hover {
  color: rgba(255, 255, 255, 0.96);
  transform: translateX(2px);
}

.footer__contact {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 22px;
}

.footer__contact li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  align-items: start;
}

.footer__contact i {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--brand);
  background: rgba(255, 127, 80, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 127, 80, 0.18);
  margin-top: 2px;
}

.footer__contactLabel {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.95);
}

.footer__contactValue {
  margin-top: 4px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(200, 226, 242, 0.78);
}

.footer__newsletter {
  margin-top: 28px;
  display: grid;
  gap: 16px;
  width: min(420px, 100%);
}

.footer__newsletter input {
  width: 100%;
  height: 66px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.94);
  padding: 0 18px;
  outline: none;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 18px 50px rgba(0, 0, 0, 0.22);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.footer__newsletter input:focus {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 22px 60px rgba(0, 0, 0, 0.28);
}

.footer__newsletter input::placeholder {
  color: rgba(190, 214, 230, 0.82);
}

.footer__newsletter button {
  height: 66px;
  width: min(260px, 100%);
  border: 0;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 138, 85, 1), rgba(255, 127, 80, 1));
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.26);
  transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
  justify-self: start;
}

.footer__newsletter button:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}

.footer__bottom {
  position: relative;
  margin-top: 72px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__social a {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(190, 214, 230, 0.9);
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.footer__social a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.96);
}

.footer__copy {
  font-size: 16px;
  color: rgba(200, 226, 242, 0.78);
}

.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(47, 62, 73, 0.82);
  color: rgba(255, 255, 255, 0.92);
  display: grid;
  place-items: center;
  box-shadow: 0 22px 60px rgba(36, 48, 63, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-decoration: none;
  z-index: 30;
  transition: transform 0.2s ease, background 0.2s ease;
}

.to-top:hover {
  transform: translateY(-2px);
  background: rgba(47, 62, 73, 0.92);
}

@keyframes about-float {
  0%,
  100% {
    transform: translate(8%, -50%) scale(1);
  }
  50% {
    transform: translate(8%, calc(-50% - 10px)) scale(1.01);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about__image--circle {
    animation: none;
  }

  .contact__photo--top {
    animation: none;
  }
}


@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .nav {
    gap: 12px;
  }

  .socials {
    display: none;
  }
}

@media (max-width: 960px) {
  .topbar__inner {
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px 0;
    gap: 10px 20px;
  }

  .navbar__inner {
    position: relative;
    min-height: 24px;
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    margin-left: auto;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin: 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid rgba(36, 48, 63, 0.08);
    box-shadow: 0 18px 40px rgba(36, 48, 63, 0.12);
    display: grid;
    gap: 16px;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .nav.is-open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__link.active::after {
    bottom: -6px;
  }

  .hero {
    min-height: calc(100vh - 136px);
  }

  .hero__content {
    padding: 120px 0 92px;
  }

  .paint-roller {
    top: 52%;
    transform: translate(-50%, -50%) rotate(12deg) scale(0.92);
  }

  .about {
    padding: 92px 0;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .about__media {
    min-height: 520px;
  }

  .about__image--circle {
    width: min(320px, 56%);
    transform: translate(6%, -50%);
  }

  .services {
    padding: 92px 0;
  }

  .services__inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .services__media {
    order: 2;
    margin-right: 0;
    width: 100%;
    justify-self: stretch;
    min-height: 368px;
  }

  .offer {
    padding: 86px 0 92px;
    background: linear-gradient(180deg, rgba(255, 127, 80, 0.88) 0%, rgba(255, 127, 80, 0.92) 48%, var(--light) 48%, var(--light) 100%);
  }

  .offer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .skills {
    padding: 92px 0 98px;
  }

  .skills__inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .skills__meters {
    gap: 34px;
  }

  .skills__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .gallery__item img {
    height: 240px;
  }

  .gallery__item--wide {
    grid-column: span 2;
  }

  .testimonials {
    padding: 92px 0 98px;
  }

  .testimonials__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
  }

  .contact {
    padding: 98px 0 108px;
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .contact__media {
    justify-items: center;
    gap: 22px;
    padding-top: 0;
  }

  .contact__photo--top {
    transform: rotate(-6deg);
  }

  .footer {
    padding: 86px 0 42px;
  }

  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 46px 44px;
  }

  .footer__bottom {
    margin-top: 56px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, 1280px);
  }

  .brand__logo {
    width: 76px;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 6px 0 2px;
    gap: 12px;
  }

  .socials {
    justify-self: end;
  }

  .topbar {
    font-size: 13px;
  }

  .topbar__item {
    gap: 8px;
  }

  .hero {
    min-height: calc(100vh - 146px);
    align-items: stretch;
  }

  .hero__content {
    padding: 108px 0 90px;
  }

  .eyebrow {
    font-size: 13px;
    gap: 12px;
  }

  .eyebrow span {
    width: 7px;
    height: 7px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }

  .hero__copy {
    font-size: 15px;
    line-height: 1.7;
  }

  .btn {
    width: 100%;
    min-width: 0;
  }

  .hero__actions {
    width: min(420px, 100%);
    margin-left: auto;
    margin-right: auto;
  }

  .about {
    padding: 82px 0;
  }

  .about__media {
    min-height: 420px;
  }

  .about__image--main {
    width: 100%;
  }

  .about__image--circle {
    width: min(260px, 64%);
    transform: translate(0, -50%);
    right: 10px;
    border-width: 12px;
  }

  .about__accent {
    left: -10px;
    bottom: -10px;
    width: 110px;
    height: 110px;
  }

  .services {
    padding: 82px 0;
  }

  .service {
    grid-template-columns: 74px 1fr;
    gap: 18px;
  }

  .service__icon {
    width: 62px;
    height: 62px;
    font-size: 22px;
  }

  .service__body h3 {
    font-size: 20px;
  }

  .services__media {
    min-height: 272px;
  }

  .services__image {
    height: 272px;
  }

  .offer {
    padding: 76px 0 86px;
    background: linear-gradient(180deg, rgba(255, 127, 80, 0.9) 0%, rgba(255, 127, 80, 0.94) 40%, var(--light) 40%, var(--light) 100%);
  }

  .offer__title {
    font-size: clamp(2.25rem, 10vw, 3.1rem);
  }

  .offer__grid {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 46px;
  }

  .offer-card__media {
    height: 230px;
  }

  .offer-card__body {
    padding: 58px 26px 28px;
  }

  .skills {
    padding: 82px 0 92px;
  }

  .skills__text {
    padding-left: 18px;
  }

  .meter {
    grid-template-columns: 118px 1fr;
    gap: 20px;
  }

  .meter__ring {
    width: 106px;
    height: 106px;
  }

  .meter__value {
    font-size: 22px;
  }

  .meter__info h3 {
    font-size: 22px;
  }

  .skills__gallery {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .gallery__item--wide {
    grid-column: auto;
  }

  .gallery__item img,
  .gallery__item--wide img {
    height: 240px;
  }

  .testimonials {
    padding: 82px 0 92px;
  }

  .contact {
    padding: 88px 0 96px;
  }

  .contact__title {
    font-size: clamp(2.25rem, 10vw, 3.2rem);
  }

  .contact__form {
    margin-top: 32px;
    gap: 16px;
  }

  .contact__field input {
    height: 66px;
  }

  .contact__field input,
  .contact__field textarea {
    padding: 20px 54px 20px 20px;
    border-radius: 10px;
  }

  .contact__btn {
    width: 100%;
  }

  .contact__media {
    gap: 18px;
  }

  .contact__photo {
    padding: 10px;
  }

  .footer {
    padding: 76px 0 40px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__brand {
    font-size: 36px;
  }

  .footer__bottom {
    justify-content: center;
    text-align: center;
  }

  .footer__copy {
    width: 100%;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 46px;
  }

  .testimonial {
    padding: 48px 28px 38px;
  }

}

@media (max-width: 520px) {
  .topbar__inner {
    justify-content: flex-start;
  }

  .topbar__item {
    white-space: normal;
  }

  .hero__content {
    padding: 92px 0 82px;
  }

  .hero__art {
    opacity: 0.85;
  }

  .hero__panel--one {
    width: 92vw;
    left: -18vw;
    top: 14%;
  }

  .hero__panel--two {
    width: 95vw;
    right: -28vw;
    top: 22%;
  }

  .hero__panel--three {
    width: 96vw;
    right: -30vw;
    bottom: 14%;
  }

  .paint-roller {
    width: 92vw;
    top: 54%;
    transform: translate(-50%, -50%) rotate(10deg) scale(0.82);
  }

}
