:root {
  --black: #051018;
  --charcoal: #0f2438;
  --ink: #0f2d47;
  --purple: #1e5a8a;
  --violet: #0f3554;
  --lavender: #5a9fd4;
  --lavender-soft: #eef6fc;
  --pink: #3d7ab0;
  --pink-soft: #eef6fc;
  --white: #ffffff;
  --paper: #f4f8fc;
  --muted: #5a7085;
  --line: rgba(15, 45, 71, 0.14);
  --shadow: 0 18px 42px rgba(5, 16, 24, 0.2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.is-hidden { display: none !important; }
.container { width: min(1120px, calc(100% - 34px)); margin: 0 auto; }

.topbar {
  background: var(--black);
  color: rgba(255,255,255,.78);
  font-size: 11px;
  font-weight: 800;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar__inner { min-height: 28px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 5px solid var(--lavender);
  box-shadow: 0 12px 28px rgba(5,3,5,.12);
}
.nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  min-height: 92px;
  gap: 22px;
}
.nav__links { grid-column: 1; }
.brand { grid-column: 2; }
.nav__cta { grid-column: 3; }
.brand {
  position: relative;
  display: grid;
  place-items: center;
  width: auto;
  height: auto;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}
.brand img {
  position: relative;
  z-index: 1;
  width: auto;
  height: 68px;
  max-width: min(200px, 32vw);
  object-fit: contain;
  object-position: center;
  display: block;
}
.nav__links,
.nav__cta {
  display: flex;
  align-items: center;
  gap: 28px;
  width: 100%;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav__links a,
.nav__cta a {
  white-space: nowrap;
}
.nav__links { justify-content: flex-start; }
.nav__cta { justify-content: flex-end; }
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
}
.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  border-radius: 999px;
}
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(5,3,5,.56);
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 200;
  display: grid;
  align-content: start;
  gap: 22px;
  width: min(330px, 86vw);
  height: 100dvh;
  padding: 28px;
  color: #fff;
  background: var(--black);
  border-left: 5px solid var(--lavender);
  box-shadow: -20px 0 45px rgba(5,3,5,.34);
  transform: translateX(105%);
  transition: transform .28s ease;
}
.mobile-menu img {
  width: 160px;
  height: auto;
  padding: 0;
  background: transparent;
  border-radius: 0;
}
.mobile-menu nav {
  display: grid;
  gap: 4px;
}
.mobile-menu nav a {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.mobile-menu__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  color: #fff;
  background: transparent;
  font-size: 28px;
  line-height: 1;
}
.mobile-menu__phone {
  color: var(--lavender);
  font-size: 18px;
  font-weight: 900;
}
.mobile-menu__social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-menu__social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: var(--purple);
  border-radius: 50%;
  font-size: 15px;
}
body.menu-open {
  overflow: hidden;
}
body.menu-open .menu-overlay {
  opacity: 1;
  pointer-events: auto;
}
body.menu-open .mobile-menu {
  transform: translateX(0);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--purple);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.btn--small { min-height: 36px; padding-inline: 15px; }
.btn--dark { background: var(--black); }
.btn--outline {
  color: var(--black);
  background: #fff;
  border: 1px solid var(--line);
}

.section-dark,
.section-light,
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.section-dark {
  color: #fff;
  padding: 88px 0;
  background-color: rgba(5,3,5,.96);
  background-blend-mode: multiply;
}
.section-light {
  padding: 82px 0;
  background-color: rgba(255,255,255,.93);
  background-blend-mode: lighten;
}
.image-kitchen { background-image: url("./assets/images/kitchen-cleaning.webp"); background-size: cover; background-position: center 42%; }
.image-window { background-image: url("./assets/images/IMG_0728.webp"); background-size: cover; background-position: center; }
.image-driveway { background-image: url("./assets/images/IMG_0734.webp"); background-size: cover; background-position: center; }
.image-owner { background-image: url("./assets/images/IMG_0708.webp"); background-size: cover; background-position: center; }
.image-soft { background-image: url("./assets/images/IMG_0705.webp"); background-size: cover; background-position: center; }

.section-dark::before,
.section-light::before,
.section-dark::after,
.section-light::after {
  display: none;
}
.section-dark .container,
.section-light .container,
.hero .container,
.quote-form {
  position: relative;
  z-index: 2;
}

.hero {
  z-index: auto;
  isolation: auto;
  overflow: visible;
  min-height: 455px;
  padding: 24px 0 42px;
  color: #fff;
  background-color: rgba(5,3,5,.52);
  background-blend-mode: multiply;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: end;
  min-height: 375px;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--pink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
h1,h2,h3,p { margin-top: 0; }
h1 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(43px, 5.6vw, 72px);
  line-height: .92;
  letter-spacing: -.055em;
  text-transform: uppercase;
}
h1 span {
  display: block;
  width: max-content;
  max-width: 100%;
  margin-top: 14px;
  padding: 9px 16px;
  color: var(--ink);
  background: rgba(255,255,255,.9);
  border-left: 5px solid var(--lavender);
  border-radius: 7px;
  font-size: .34em;
  line-height: 1.15;
  letter-spacing: .02em;
  white-space: nowrap;
}
.desktop-break { display: inline; }
h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.02;
  letter-spacing: -.04em;
  text-transform: uppercase;
}
h3 { margin-bottom: 8px; font-size: 18px; line-height: 1.15; }
p { color: var(--muted); font-size: 14px; line-height: 1.62; }
.section-dark p,
.hero p { color: rgba(255,255,255,.76); }
.hero p {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.55;
}
.hero__copy .eyebrow,
.hero__copy h1,
.hero__copy > p,
.hero .rating-card,
.hero__subject img,
.quote-form {
  transition:
    opacity .8s ease,
    transform .9s cubic-bezier(.2,.72,.18,1);
}
.hero__copy .eyebrow,
.hero__copy h1,
.hero__copy > p {
  opacity: 0;
  transform: translateY(18px);
}
.hero .rating-card {
  opacity: 0;
  transform: translateY(16px);
}
.hero .rating-card:nth-child(2) {
  transition-delay: .08s;
}
.hero__subject img {
  opacity: 0;
  transform: translateY(30px) scaleX(-1);
  transition-delay: .18s;
}
.quote-form {
  opacity: 0;
  transform: translate(-50%, 22px);
  transition-delay: .28s;
}
.hero-loaded .hero__copy .eyebrow,
.hero-loaded .hero__copy h1,
.hero-loaded .hero__copy > p,
.hero-loaded .hero .rating-card {
  opacity: 1;
  transform: translateY(0);
}
.hero-loaded .hero__copy h1 {
  transition-delay: .06s;
}
.hero-loaded .hero__copy > p {
  transition-delay: .12s;
}
.hero-loaded .hero__subject img {
  opacity: 1;
  transform: translateY(0) scaleX(-1);
}
.hero-loaded .quote-form {
  opacity: 1;
  transform: translate(-50%, 0);
}

.rating-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 190px));
  gap: 10px;
  margin-top: 24px;
}
.rating-card {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 58px;
  padding: 10px 13px;
  color: #fff;
  background: #fff;
  border-left: 7px solid var(--lavender);
  border-radius: 4px;
  box-shadow: var(--shadow);
}
.rating-card b {
  display: block;
  color: var(--violet);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.rating-card strong {
  display: block;
  color: #c07a00;
  font-size: 11px;
  letter-spacing: .06em;
}
.review-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #fff;
  background: var(--purple);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
}
.review-mark--facebook {
  background: #1877f2;
  font-size: 18px;
}
.review-mark--google {
  color: #4285f4;
  background: #fff;
  border: 2px solid #4285f4;
}
.review-mark--bbb {
  overflow: hidden;
  background: #00658a;
}
.review-mark--bbb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__subject {
  position: relative;
  min-height: 500px;
  overflow: visible;
  pointer-events: none;
}
.hero__subject img {
  position: absolute;
  right: 155px;
  bottom: -620px;
  z-index: 1;
  width: min(680px, 145%);
  max-height: none;
  object-fit: contain;
  transform: scaleX(-1);
  filter: none;
  clip-path: inset(0 4px 0 4px);
}
.quote-form {
  position: absolute;
  left: 50%;
  bottom: -104px;
  z-index: 50;
  display: block;
  width: min(1180px, calc(100% - 34px));
  padding: 16px;
  transform: translateX(-50%);
  background: #fff;
  border: 3px solid var(--lavender);
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.quote-form--embed > div {
  width: 100%;
}
.quote-form__mobile {
  display: none;
}
.quote-form--embed iframe {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
}
.quote-form strong {
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}
.quote-form input,
.quote-form select {
  width: 100%;
  height: 48px;
  border: 1px solid #d8d0dc;
  border-radius: 8px;
  padding: 0 16px;
  color: var(--ink);
  background: #fff;
}
.quote-form .btn {
  min-height: 48px;
}
.quote-form .btn,
.final-cta .btn,
.mobile-menu .btn {
  color: #fff;
  background: var(--purple);
}

.contact-page {
  background:
    linear-gradient(rgba(255,255,255,.95), rgba(255,255,255,.95)),
    url("./assets/images/leilany-brand-mark-corner.webp") center top/cover no-repeat;
}
.contact-hero {
  padding: 0 0 46px;
}
.contact-banner {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 320px;
  overflow: hidden;
  border-top: 1px solid rgba(90,159,212,.42);
  border-bottom: 1px solid rgba(90,159,212,.42);
  box-shadow: 0 18px 44px rgba(5,3,5,.12);
}
.contact-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,3,5,.58), rgba(5,3,5,.16));
}
.contact-banner img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
}
.contact-banner__copy {
  position: absolute;
  bottom: 34px;
  left: max(24px, calc((100vw - 1120px) / 2 + 17px));
  z-index: 1;
  max-width: 560px;
  color: #fff;
}
.contact-banner__copy h1 {
  margin-bottom: 8px;
  font-size: clamp(36px, 5vw, 58px);
}
.contact-banner__copy p:not(.eyebrow) {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 17px;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: -22px;
  position: relative;
  z-index: 2;
}
.contact-cards article {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 172px;
  padding: 30px 18px;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(90,159,212,.34);
  border-top: 5px solid var(--lavender);
  border-radius: 10px;
  box-shadow: 0 20px 42px rgba(5,3,5,.08);
}
.contact-cards i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--purple);
  border-radius: 50%;
  font-size: 17px;
}
.contact-cards h2 {
  margin: 0;
  font-size: 17px;
  line-height: 1.15;
}
.contact-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.service-request {
  padding: 34px 0 86px;
}
.request-form {
  display: grid;
  gap: 18px;
  width: min(980px, 100%);
  margin: 0 auto;
}
.request-form--embed,
.request-form--embed > div,
.request-form--embed iframe {
  width: 100% !important;
  max-width: 100% !important;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.request-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.request-form label span {
  color: var(--purple);
}
.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid rgba(28,23,32,.18);
  border-radius: 4px;
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(255,255,255,.9);
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(5,3,5,.03);
}
.request-form textarea {
  resize: vertical;
}
.consent-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  font-weight: 500 !important;
  line-height: 1.45;
}
.consent-row input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}
.request-form .btn {
  justify-self: start;
  margin-top: 10px;
}
.contact-map-block {
  padding: 0 0 82px;
}
.contact-map-card {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: stretch;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(90,159,212,.4);
  border-radius: 14px;
  box-shadow: 0 24px 50px rgba(5,3,5,.12);
}
.contact-map-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
}
.contact-map-card > div {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: 22px 18px;
}
.contact-map-card h2 {
  max-width: 520px;
  margin-bottom: 10px;
  font-size: clamp(26px, 3vw, 38px);
}
.contact-map-card p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 18px;
}
.legal-page {
  background:
    linear-gradient(rgba(255,255,255,.96), rgba(255,255,255,.96)),
    url("./assets/images/leilany-brand-mark-corner.webp") center top/cover no-repeat;
}
.legal-hero {
  padding: 68px 0 34px;
  text-align: center;
}
.legal-hero h1 {
  margin-bottom: 10px;
  font-size: clamp(36px, 5vw, 58px);
}
.legal-hero p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}
.legal-content {
  padding: 0 0 74px;
}
.legal-card {
  width: min(920px, calc(100% - 34px));
  padding: 42px;
  background: #fff;
  border: 1px solid rgba(90,159,212,.42);
  border-top: 7px solid var(--lavender);
  border-radius: 14px;
  box-shadow: 0 22px 50px rgba(5,3,5,.1);
}
.legal-card h2 {
  margin: 30px 0 10px;
  font-size: 22px;
  line-height: 1.18;
}
.legal-card p {
  margin-bottom: 0;
}
.legal-card a {
  color: var(--purple);
  font-weight: 800;
}
.services-page {
  background: #fff;
}
.services-page-hero {
  padding: 0;
}
.services-breadcrumb img {
  object-position: center 55%;
}
.services-breadcrumb::after {
  background: linear-gradient(90deg, rgba(5,3,5,.62), rgba(5,3,5,.2));
}
.services-catalog {
  padding: 62px 0 86px;
}
.service-filter-bar {
  display: flex;
  gap: 0;
  align-items: center;
  margin-bottom: 54px;
  padding: 10px;
  background: rgba(251,240,252,.58);
  border: 1px solid rgba(90,159,212,.2);
  border-radius: 999px;
}
.service-filter-bar a {
  min-width: 86px;
  padding: 12px 18px;
  color: var(--muted);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}
.service-filter-bar a.is-active {
  color: #fff;
  background: var(--purple);
}
.services-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 68px 34px;
}
.services-card {
  display: grid;
  align-content: start;
}
.services-card img {
  width: 100%;
  height: 225px;
  object-fit: cover;
  border: 1px solid rgba(90,159,212,.32);
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(5,3,5,.1);
}
.services-card__type {
  margin: 18px 0 4px;
  color: var(--lavender);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}
.services-card h2 {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.12;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.services-card p:not(.services-card__type) {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}
.services-card a {
  width: fit-content;
  margin-top: 18px;
  color: var(--purple);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
}
.service-cta {
  padding: 34px 0;
  color: #fff;
  background: #0d090d;
}
.service-cta__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.service-cta__card h2 {
  margin-bottom: 8px;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: .14em;
}
.service-cta__card p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255,255,255,.72);
}
.airbnb-emergency {
  padding: 68px 0 72px;
  background: #0d090d;
}
.airbnb-emergency__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 42px;
  align-items: center;
  width: min(1160px, calc(100% - 34px));
  margin-inline: auto;
}
.airbnb-emergency__grid--compact {
  grid-template-columns: minmax(0, 1fr);
  max-width: 760px;
}
.airbnb-emergency .eyebrow {
  color: var(--pink);
}
.airbnb-emergency__copy h2 {
  max-width: 620px;
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.06;
}
.airbnb-emergency__copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 24px;
  color: rgba(255,255,255,.76);
  font-size: 15px;
  line-height: 1.65;
}
.airbnb-emergency__list {
  display: grid;
  gap: 12px;
  max-width: 620px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}
.airbnb-emergency__list li {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  background: rgba(27,21,29,.9);
  border: 1px solid rgba(90,159,212,.52);
  border-radius: 10px;
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
}
.airbnb-emergency__list strong {
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.airbnb-emergency__list span {
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.55;
}
.airbnb-emergency__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn--outline-light {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255,255,255,.42);
}
.airbnb-emergency__media {
  overflow: hidden;
  border: 6px solid var(--lavender);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.airbnb-emergency__media img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}
.services .section-heading {
  margin-bottom: 18px;
}
.reviews-embed {
  max-width: 1040px;
}
.reviews {
  position: relative;
  z-index: 10;
  padding-top: 118px;
}

.owner {
  padding: 86px 0 76px;
  background:
    linear-gradient(rgba(5,3,5,.90), rgba(5,3,5,.90)),
    url("./assets/images/IMG_0718.webp") center 28%/cover no-repeat;
}
.owner .eyebrow {
  color: #fff;
}
.owner__chapter {
  display: grid;
  gap: 0;
}
.owner__intro {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 48px;
  align-items: center;
}
.owner__photo {
  overflow: hidden;
  border: 6px solid var(--lavender);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.owner__photo img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
}
.owner__copy p {
  max-width: 680px;
  margin-bottom: 18px;
}
.owner__copy p:first-of-type {
  color: rgba(255,255,255,.86);
}
.owner__trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 680px;
  margin-top: 26px;
}
.owner__trust-list span {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}
.owner__trust-list svg {
  width: 22px;
  height: 22px;
  color: var(--pink);
}
.owner__trust-list svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.owner__statement {
  margin-top: 24px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -.02em;
}
.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 58px;
  align-items: center;
}
.split--services { grid-template-columns: 1.05fr .95fr; }
.media-frame {
  padding: 8px;
  background: var(--lavender);
  border-radius: 30px 30px 8px 30px;
}
.media-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 24px 24px 5px 24px;
}
.accordion-list,
.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}
.accordion-list button,
.faq-list summary {
  width: 100%;
  cursor: pointer;
  border: 0;
  border-radius: 7px;
  padding: 14px 16px;
  color: var(--ink);
  background: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
  text-align: left;
  text-transform: uppercase;
}
.services__inner {
  display: grid;
  justify-items: center;
}
.services-work-band {
  background:
    linear-gradient(rgba(255,255,255,.94), rgba(255,255,255,.94)),
    url("./assets/images/leilany-brand-mark-corner.webp") center/cover no-repeat;
}
.services {
  position: relative;
  padding: 74px 0 34px;
  background: transparent;
}
.services::after {
  display: none;
}
.services::before {
  display: none;
}
.services .container {
  position: relative;
  z-index: 1;
}
.service-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 18px;
  align-items: center;
  width: min(1160px, 100%);
}
.service-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 20px;
}
.service-dots button {
  width: 12px;
  height: 6px;
  padding: 0;
  border: 1px solid rgba(90,159,212,.8);
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
}
.service-dots button.is-active {
  width: 30px;
  background: var(--purple);
  border-radius: 2px;
}
.service-arrow {
  position: relative;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(90,159,212,.65);
  border-radius: 6px;
  color: #fff;
  background: var(--purple);
  cursor: pointer;
  font-size: 31px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(5,3,5,.16);
}
.service-showcase {
  position: relative;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  overflow: hidden;
  transition: height .35s ease;
}
.service-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: stretch;
  width: 100%;
  min-height: 0;
  overflow: hidden;
  background: var(--black);
  border: 2px solid var(--lavender);
  border-radius: 18px;
  box-shadow: 0 10px 22px rgba(5,3,5,.14);
  opacity: .26;
  pointer-events: none;
  transform: translateX(0) scale(.86);
  transition: opacity .32s ease, transform .42s ease;
}
.service-block.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}
.service-block:not(.is-active),
.service-block.is-prev,
.service-block.is-next {
  position: absolute;
  inset: 0;
}
.service-block.is-prev {
  opacity: .36;
  transform: translateX(-72%) scale(.84);
}
.service-block.is-next {
  opacity: .36;
  transform: translateX(72%) scale(.84);
}
.service-block__copy {
  position: relative;
  padding: 22px 24px;
  color: #fff;
  background: rgba(5,3,5,.88);
}
.service-block__copy > * {
  position: relative;
  z-index: 1;
}
.service-block__icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
  overflow: hidden;
  color: var(--black);
  background: #fff;
  border: 1px solid rgba(90,159,212,.58);
  border-radius: 50%;
  font-size: 27px;
  font-weight: 900;
}
.service-block__icon > img {
  display: block;
  width: 27px;
  height: 27px;
  object-fit: contain;
}
.service-block h3 {
  max-width: 520px;
  margin-bottom: 12px;
  color: #fff;
  font-size: 20px;
  line-height: 1.08;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.service-block ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-block li {
  position: relative;
  padding: 0 0 0 18px;
  border: 0;
  border-radius: 0;
  color: rgba(255,255,255,.86);
  background: transparent;
  font-size: 10.5px;
  font-weight: 800;
  line-height: 1.35;
}
.service-block li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: -.02em;
  color: var(--lavender);
  font-weight: 900;
}
.service-block__media {
  position: relative;
  min-height: 0;
  overflow: hidden;
}
.service-block__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.work {
  position: relative;
  padding-top: 22px;
  padding-bottom: 56px;
  padding-inline: 0;
  background: transparent;
}
.work::before {
  content: "";
  display: block;
  width: min(1040px, calc(100% - 34px));
  height: 4px;
  margin: 0 auto 28px;
  background: var(--lavender);
  border-radius: 999px;
}
.work .section-heading,
.portfolio-grid {
  position: relative;
  z-index: 1;
}
.work-row {
  display: grid;
  grid-template-columns: .75fr 1.3fr .75fr;
  gap: 24px;
  align-items: center;
  width: min(1240px, calc(100% - 30px));
  margin: 0 auto;
}
.work-row img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.work-row img:nth-child(2) { height: 450px; }
.portfolio-grid {
  display: grid;
  grid-template-columns: 1.12fr .94fr .94fr;
  gap: 14px;
  width: min(1160px, calc(100% - 34px));
  margin: 0 auto;
}
.portfolio-card {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 2px solid rgba(90,159,212,.62);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.portfolio-card:first-child { grid-row: span 2; }
.portfolio-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.portfolio-card:first-child img { height: 474px; }
.leilanys-way {
  padding: 64px 0 76px;
  background:
    linear-gradient(rgba(255,255,255,.94), rgba(255,255,255,.94)),
    url("./assets/images/leilany-brand-mark-corner.webp") center/cover no-repeat;
}
.leilanys-way__grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 48px;
  align-items: center;
  width: min(1160px, calc(100% - 34px));
}
.leilanys-way__media {
  overflow: hidden;
  border: 6px solid var(--lavender);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.leilanys-way__media img {
  display: block;
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.leilanys-way .eyebrow {
  color: var(--pink);
}
.leilanys-way__copy h2 {
  max-width: 680px;
  margin-bottom: 16px;
  color: var(--black);
  font-size: 38px;
  line-height: 1.04;
}
.leilanys-way__copy > p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 22px;
  color: var(--muted);
}
.way-list {
  display: grid;
  gap: 10px;
  max-width: 680px;
  border-top: 0;
}
.way-list div {
  display: grid;
  grid-template-columns: 42px 150px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  background: rgba(27,21,29,.9);
  border: 1px solid rgba(90,159,212,.52);
  border-radius: 10px;
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
}
.way-list span {
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
}
.way-list strong {
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}
.way-list p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.5;
}
.process {
  padding: 68px 0 72px;
  background: #0d090d;
}
.process__inner {
  display: grid;
  gap: 22px;
  width: min(1160px, calc(100% - 34px));
}
.process .section-heading {
  margin-bottom: 0;
}
.process .section-heading h2 {
  max-width: 760px;
  margin-inline: auto;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -.025em;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.process-steps article {
  position: relative;
  display: grid;
  grid-template-columns: 34px auto 1fr;
  gap: 0 10px;
  align-items: center;
  grid-column: auto;
  min-height: 0;
  padding: 20px 18px 22px;
  background: rgba(27,21,29,.86);
  border: 1px solid rgba(90,159,212,.5);
  border-top: 7px solid var(--lavender);
  border-radius: 12px;
  box-shadow: 0 18px 38px rgba(0,0,0,.28);
}
.process-steps i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 0;
  color: var(--black);
  background: var(--pink);
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 8px;
  font-style: normal;
}
.process-steps svg {
  width: 17px;
  height: 17px;
}
.process-steps svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.process-steps span {
  display: inline-block;
  margin-bottom: 0;
  color: var(--pink);
  background: transparent;
  border-radius: 0;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.process-steps h3 {
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.05;
  text-transform: uppercase;
}
.process-steps p {
  grid-column: 1 / -1;
  margin: 12px 0 0;
  color: rgba(255,255,255,.76);
  font-size: 13px;
  line-height: 1.48;
}
.faq-list {
  max-width: 1040px;
  margin-inline: auto;
  margin-top: 16px;
}
.faq {
  position: relative;
  background-color: #fff;
  padding: 48px 0;
}
.faq-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  width: min(1160px, calc(100% - 34px));
  align-items: start;
}
.faq__media {
  position: relative;
  isolation: isolate;
  border: 2px solid rgba(90,159,212,.58);
  border-radius: 14px;
  box-shadow: 0 16px 30px rgba(5,3,5,.16);
}
.faq__media::before {
  content: "";
  position: absolute;
  right: -24px;
  top: 20px;
  bottom: -18px;
  z-index: -1;
  width: 34%;
  background: url("./assets/images/faq-photo-texture.webp") center/cover no-repeat;
  border: 3px solid var(--lavender);
  border-radius: 0 18px 18px 0;
  opacity: .9;
}
.faq__media::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -18px;
  left: 20px;
  z-index: -1;
  height: 34%;
  background: url("./assets/images/faq-photo-texture.webp") center/cover no-repeat;
  border: 3px solid var(--lavender);
  border-radius: 0 0 18px 18px;
  opacity: .9;
}
.faq__media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 360px;
  min-height: 360px;
  object-fit: cover;
  border-radius: 12px;
}
.faq__content .section-heading {
  margin-bottom: 12px;
}
.faq-list details {
  background: #fff;
  border: 1px solid rgba(90,159,212,.58);
  border-left: 6px solid var(--lavender);
  border-radius: 10px;
  box-shadow: 0 14px 30px rgba(5,3,5,.08);
}
.faq-list summary {
  padding: 16px 20px;
  font-size: 13px;
}
.faq-list p {
  margin: 0;
  padding: 0 20px 18px;
}
.service-area {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 58px 0;
  min-height: 430px;
}
.service-area::before {
  display: none;
}
.service-area::after {
  display: none;
}
.service-area__panel {
  position: relative;
  z-index: 1;
  display: block;
  width: min(1160px, calc(100% - 34px));
  margin-inline: auto;
}
.service-area__copy,
.map-card {
  transform: translateY(0);
}
.service-area__copy {
  position: relative;
  z-index: 2;
  width: min(500px, 100%);
  display: grid;
  align-content: center;
  margin-inline: 0;
  padding: 22px 26px;
  background: #fff;
  border: 1px solid rgba(90,159,212,.58);
  border-top: 8px solid var(--lavender);
  border-radius: 10px;
  box-shadow: 0 20px 45px rgba(5,3,5,.1);
}
.service-area__copy h2 {
  max-width: 440px;
  font-size: 27px;
  line-height: 1.05;
}
.service-area__copy > p:not(.eyebrow) {
  max-width: 440px;
  color: var(--muted);
}
.map-card {
  position: absolute;
  inset: -58px calc((100vw - 100%) / -2);
  z-index: 0;
  display: block;
  overflow: hidden;
  min-height: calc(100% + 116px);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.map-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
}
.area-pills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 8px 18px;
  margin-top: 14px;
}
.area-pills span {
  position: relative;
  padding: 0 0 0 16px;
  color: var(--black);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.area-pills span::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--purple);
}
.final-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  width: min(1180px, calc(100% - 34px));
  padding: 46px;
  background: #fff;
  border: 2px solid rgba(90,159,212,.68);
  border-top: 8px solid var(--lavender);
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0,0,0,.32);
}
.final-cta {
  background-color: rgba(5,3,5,.48);
}
.final-grid h2 {
  color: var(--ink);
}
.final-grid p {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
}
.contact-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.contact-phone {
  display: block;
  color: var(--ink);
  font-size: 26px;
  font-weight: 900;
}
.final-actions {
  display: grid;
  gap: 12px;
  justify-items: end;
}
.site-footer {
  padding: 78px 0 34px;
  color: var(--ink);
  background: #fff;
  border-top: 8px solid var(--lavender);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .85fr .95fr 1fr;
  gap: 38px;
}
.footer-grid > div:first-child img {
  display: block;
  width: 175px;
  height: auto;
  margin-bottom: 18px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  object-fit: contain;
}
.site-footer p,
.site-footer a,
.site-footer span { color: var(--muted); }
.site-footer a {
  width: fit-content;
}
.site-footer nav,
.footer-grid > div:last-child {
  display: grid;
  gap: 10px;
  align-content: start;
}
.site-footer strong {
  color: var(--ink);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(28,23,32,.12);
}
.footer-bottom p {
  margin: 0;
  font-size: 12px;
}
.footer-links-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 12px;
}
.footer-legal,
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-legal {
  white-space: nowrap;
}
.footer-bottom .footer-social {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 8px;
}
.footer-social a {
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  padding: 0;
  color: #fff;
  background: var(--purple);
  border: 1px solid rgba(30,90,138,.22);
  border-radius: 50%;
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(30,90,138,.18);
}
.footer-social a i {
  display: inline-grid;
  place-items: center;
  width: 1em;
  height: 1em;
  line-height: 1;
  text-align: center;
  transform: translateY(.5px);
}
.cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 300;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(620px, calc(100vw - 44px));
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(90,159,212,.62);
  border-top: 6px solid var(--lavender);
  border-radius: 14px;
  box-shadow: 0 22px 54px rgba(5,3,5,.22);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .28s ease, transform .28s ease;
}
.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner__copy strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}
.cookie-banner__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.cookie-banner__copy a {
  color: var(--purple);
  font-weight: 900;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
}
.cookie-banner__button {
  min-height: 38px;
  padding: 0 16px;
  color: #fff;
  background: var(--purple);
  border: 1px solid var(--purple);
  border-radius: 999px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.cookie-banner__button--ghost {
  color: var(--ink);
  background: #fff;
  border-color: rgba(28,23,32,.18);
}

@media (min-width: 701px) {
  .hero__copy {
    position: relative;
    z-index: 5;
  }
  .service-carousel {
    display: block;
    width: min(1160px, 100%);
  }
  .service-arrow,
  .service-dots {
    display: none;
  }
  .service-showcase {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: none;
    height: auto !important;
    overflow: visible;
  }
  .service-block,
  .service-block.is-active,
  .service-block.is-prev,
  .service-block.is-next,
  .service-block:not(.is-active) {
    position: static;
    inset: auto;
    display: flex;
    flex-direction: column-reverse;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .service-block__copy {
    flex: 1;
  }
  .service-block__media {
    min-height: 230px;
  }
  .service-block__media img {
    position: static;
    height: 230px;
  }
}

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

  .brand img {
    height: 56px;
    max-width: min(175px, 42vw);
  }

  .nav__links {
    display: none;
  }
  .nav__cta {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    gap: 10px;
  }
  .nav__cta > a {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .hero__grid,
  .split,
  .owner__intro,
  .final-grid,
  .contact-map-card { grid-template-columns: 1fr; }
  .services-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-cta__card {
    grid-template-columns: 1fr;
  }
  .contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-map-card img {
    height: 240px;
  }
  .contact-map-card > div {
    padding: 8px 6px 12px;
  }
  .hero { min-height: auto; }
  .hero__grid { min-height: 0; }
  .hero__subject { min-height: 440px; }
  .hero__subject img {
    right: 50%;
    bottom: -90px;
    width: min(410px, 78vw);
    transform: translateX(50%) scaleX(-1);
  }
  .quote-form {
    position: static;
    transform: none;
    grid-template-columns: 1fr 1fr;
    margin: 28px auto 0;
    padding: 18px;
  }
  .owner__intro { gap: 34px; }
  .owner__photo img { height: 500px; }
  .leilanys-way__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .leilanys-way__media img {
    height: 420px;
  }
  .way-list div {
    grid-template-columns: 42px 1fr;
  }
  .way-list p {
    grid-column: 2;
  }
  .service-area__panel {
    grid-template-columns: 1fr;
  }
  .faq-panel {
    grid-template-columns: 1fr;
    width: min(100% - 24px, 520px);
    gap: 12px;
  }
  .faq__media {
    min-height: 220px;
  }
  .faq__media::before {
    right: -10px;
    top: 14px;
    bottom: -10px;
    width: 26%;
    border-width: 2px;
    border-radius: 0 14px 14px 0;
  }
  .faq__media::after {
    right: -10px;
    bottom: -10px;
    left: 14px;
    height: 28%;
    border-width: 2px;
    border-radius: 0 0 14px 14px;
  }
  .faq__media img {
    min-height: 220px;
    height: 220px;
  }
  .faq__content .section-heading {
    margin-bottom: 12px;
  }
  .faq {
    padding: 38px 0;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .process-steps article { grid-column: auto; }
  .service-block {
    grid-template-columns: 1fr;
    height: auto;
  }
  .service-block__media { min-height: 230px; }
  .service-block__media img { position: static; height: 230px; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 24px, 1120px); }
  .topbar { font-size: 10px; }
  .nav { min-height: 62px; }
  .brand img {
    height: 46px;
    max-width: min(155px, 44vw);
  }
  .btn { min-height: 36px; padding: 0 13px; font-size: 10px; }
  .hero { z-index: 20; padding: 34px 0 52px; overflow: visible; }
  .hero__grid {
    position: relative;
    display: block;
    min-height: 0;
  }
  .reviews {
    padding-top: 62px;
  }
  .section-dark,
  .section-light { padding: 56px 0; }
  .services-page-hero .contact-banner__copy h1 {
    font-size: 34px;
    line-height: .96;
  }
  .services-catalog {
    padding: 34px 0 52px;
  }
  .service-filter-bar {
    overflow-x: auto;
    justify-content: flex-start;
    margin-bottom: 34px;
    border-radius: 14px;
  }
  .service-filter-bar a {
    flex: 0 0 auto;
  }
  .services-card-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .services-card img {
    height: 220px;
  }
  .service-cta {
    padding: 30px 0;
  }
  .contact-hero {
    padding: 0 0 26px;
  }
  .contact-banner {
    min-height: 250px;
  }
  .contact-banner img {
    height: 250px;
  }
  .contact-banner__copy {
    right: 22px;
    bottom: 24px;
    left: 22px;
  }
  .contact-banner__copy h1 {
    font-size: 32px;
    line-height: .96;
  }
  .contact-cards,
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-cards {
    gap: 14px;
    margin-top: 16px;
  }
  .contact-cards article {
    min-height: 0;
    gap: 7px;
    padding: 16px 14px;
  }
  .contact-cards i {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }
  .contact-cards h2 {
    font-size: 15px;
  }
  .contact-cards p {
    font-size: 13px;
    line-height: 1.4;
  }
  .service-request {
    padding: 28px 0 52px;
  }
  .request-form {
    gap: 14px;
  }
  .contact-map-block {
    padding-bottom: 48px;
  }
  .contact-map-card {
    gap: 14px;
    padding: 12px;
  }
  .contact-map-card img {
    height: 210px;
  }
  .legal-hero {
    padding: 42px 0 24px;
  }
  .legal-card {
    width: min(100% - 24px, 920px);
    padding: 26px 18px;
  }
  .legal-card h2 {
    margin-top: 24px;
    font-size: 19px;
  }
  .legal-content {
    padding-bottom: 48px;
  }
  .process {
    padding: 46px 0 50px;
  }
  .process__inner {
    gap: 18px;
  }
  .process .section-heading h2 {
    font-size: 25px;
    line-height: 1.08;
  }
  .services { padding: 52px 0 24px; }
  .owner { padding: 60px 0 56px; }
  .owner__chapter { gap: 34px; }
  .owner__photo { border-width: 5px; border-radius: 18px; }
  .owner__photo img { height: 350px; }
  .leilanys-way {
    padding: 44px 0 54px;
  }
  .work {
    padding-top: 18px;
    padding-bottom: 30px;
  }
  .leilanys-way__media img {
    height: 320px;
  }
  .leilanys-way__copy h2 {
    font-size: 27px;
  }
  .owner__trust-list {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 22px;
  }
  .owner__trust-list span {
    font-size: 11px;
  }
  .service-area__panel {
    width: 100%;
    gap: 16px;
  }
  .service-area__copy {
    padding: 20px 16px;
  }
  .area-pills {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .faq-panel {
    width: min(100% - 24px, 520px);
    padding: 30px 16px;
  }
  .faq-panel .section-heading {
    margin-bottom: 22px;
  }
  .map-card {
    inset: -58px calc((100vw - 100%) / -2);
    min-height: calc(100% + 116px);
    height: auto;
  }
  .map-card img {
    min-height: 280px;
    height: auto;
    object-fit: cover;
  }
  h1 { font-size: 34px; line-height: .96; }
  .desktop-break { display: none; }
  h1 span {
    width: auto;
    white-space: normal;
  }
  h2 { font-size: 27px; line-height: 1.05; }
  p,
  .hero p { font-size: 14px; }
  .rating-row,
  .quote-form,
  .footer-grid { grid-template-columns: 1fr; }
  .site-footer {
    padding-top: 38px;
  }
  .footer-grid {
    gap: 26px;
  }
  .footer-grid > div:first-child img {
    width: 150px;
    height: auto;
    margin-bottom: 12px;
    padding: 0;
    background: transparent;
    border: 0;
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .process-steps article {
    display: grid;
    grid-template-columns: 34px auto 1fr;
    gap: 0 10px;
    align-items: center;
    min-height: 0;
    padding: 18px;
  }
  .process-steps i,
  .process-steps span {
    margin-bottom: 0;
  }
  .process-steps h3 {
    margin: 0;
    font-size: 16px;
  }
  .process-steps p {
    grid-column: 1 / -1;
    margin-top: 12px;
  }
  .final-grid {
    grid-template-columns: 1fr;
    padding: 24px;
    text-align: left;
  }
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 34px;
  }
  .footer-links-social {
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 10px;
  }
  .footer-legal,
  .footer-social {
    gap: 10px;
  }
  .footer-social a {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
    font-size: 13px;
  }
  .cookie-banner {
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
    width: calc(100vw - 24px);
    padding: 16px;
  }
  .cookie-banner__actions {
    justify-content: stretch;
  }
  .cookie-banner__button {
    flex: 1;
  }
  .rating-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: fit-content;
    max-width: 100%;
    gap: 9px;
    margin-top: 18px;
  }
  .rating-card--bbb { order: 1; }
  .rating-card--facebook { order: 2; }
  .rating-card {
    width: min(255px, calc(100vw - 44px));
    min-height: 54px;
    padding: 9px 12px;
  }
  .rating-card b { font-size: 12px; }
  .rating-card strong { font-size: 10px; }
  .service-tabs {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }
  .service-carousel {
    position: relative;
    display: block;
    width: min(100% - 12px, 620px);
    margin-inline: auto;
  }
  .service-showcase {
    max-width: none;
  }
  .service-arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 30px;
    height: 30px;
    border-color: rgba(255,255,255,.48);
    background: rgba(36,28,36,.36);
    font-size: 20px;
    transform: translateY(-50%);
    backdrop-filter: blur(8px);
  }
  .service-arrow:hover {
    background: rgba(30,90,138,.78);
  }
  .service-arrow--prev { left: calc((100vw - 100%) / -2); }
  .service-arrow--next { right: calc((100vw - 100%) / -2); }
  .service-block:not(.is-active) { display: none; }
  .service-block__copy { padding: 22px 18px; }
  .service-block h3 { font-size: 20px; }
  .service-block ul { grid-template-columns: 1fr; }
  .service-block__media { min-height: 220px; }
  .service-block__media img { height: 220px; }
  .hero__subject {
    position: absolute;
    right: 0;
    top: 175px;
    z-index: 2;
    width: min(340px, 80vw);
    height: 565px;
    min-height: 0;
    margin-top: 0;
    overflow: hidden;
  }
  .hero__subject img {
    right: 0;
    top: 0;
    bottom: auto;
    width: 100%;
    max-height: none;
    transform: scaleX(-1);
    clip-path: none;
  }
  .quote-form {
    position: relative;
    left: auto;
    bottom: auto;
    z-index: 200;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 24px 0 0;
    padding: 22px 18px 14px;
    background: #fff;
    overflow: visible;
    transform: none !important;
  }
  .quote-form__desktop {
    display: none;
  }
  .quote-form__mobile {
    display: block;
    width: 100%;
    max-width: 100%;
    padding-inline: 0;
    overflow: visible;
  }
  .quote-form__mobile > div,
  .quote-form--embed iframe {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
  .quote-form__mobile iframe {
    min-height: 470px !important;
  }
  .quote-form strong { color: var(--ink); }
  .quote-form input,
  .quote-form select {
    color: var(--ink);
    background: #fff;
    border-color: #d8d0dc;
  }
  .quote-form strong { text-align: left; }
  .media-frame img { height: 320px; }
  .work-row { grid-template-columns: 1fr; }
  .work-row img,
  .work-row img:nth-child(2) { height: 255px; }
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    width: min(100% - 24px, 520px);
  }
  .portfolio-card:first-child { grid-row: auto; }
  .portfolio-card img,
  .portfolio-card:first-child img { height: 255px; }
}

@media (max-width: 420px) {
  .quote-form {
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
    padding: 16px 12px 12px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }

  .motion-ready .section-heading,
  .motion-ready .rating-card,
  .motion-ready .owner__photo,
  .motion-ready .owner__copy,
  .motion-ready .service-block,
  .motion-ready .process-steps article,
  .motion-ready .leilanys-way__media,
  .motion-ready .leilanys-way__copy,
  .motion-ready .portfolio-card,
  .motion-ready .service-area__copy {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .7s ease, transform .7s ease;
  }

  .motion-ready .section-heading.is-visible,
  .motion-ready .rating-card.is-visible,
  .motion-ready .owner__photo.is-visible,
  .motion-ready .owner__copy.is-visible,
  .motion-ready .service-block.is-visible,
  .motion-ready .process-steps article.is-visible,
  .motion-ready .leilanys-way__media.is-visible,
  .motion-ready .leilanys-way__copy.is-visible,
  .motion-ready .portfolio-card.is-visible,
  .motion-ready .service-area__copy.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .rating-card,
  .service-block,
  .process-steps article,
  .leilanys-way__media,
  .portfolio-card,
  .btn,
  .service-arrow,
  .nav__links a,
  .nav__cta a:not(.btn),
  .mobile-menu nav a,
  .site-footer a {
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background-color .28s ease;
  }

  .rating-card:hover,
  .service-block.is-active:hover,
  .process-steps article:hover,
  .leilanys-way__media:hover,
  .portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 34px rgba(5,3,5,.16);
  }

  .btn:hover,
  .service-arrow:hover {
    transform: translateY(-2px);
  }

  .nav__links a,
  .nav__cta a:not(.btn),
  .mobile-menu nav a,
  .site-footer a:not(.footer-social a) {
    position: relative;
    display: inline-block;
  }

  .nav__links a::after,
  .nav__cta a:not(.btn)::after,
  .mobile-menu nav a::after,
  .site-footer a:not(.footer-social a)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -5px;
    left: 0;
    height: 2px;
    background: var(--purple);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .28s ease;
  }

  .nav__links a:hover,
  .nav__cta a:not(.btn):hover,
  .mobile-menu nav a:hover,
  .site-footer a:not(.footer-social a):hover {
    transform: translateY(-2px);
  }

  .nav__links a:hover::after,
  .nav__cta a:not(.btn):hover::after,
  .mobile-menu nav a:hover::after,
  .site-footer a:not(.footer-social a):hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .portfolio-card img,
  .leilanys-way__media img,
  .service-block__media img {
    transition: transform .6s ease;
  }

  .portfolio-card:hover img,
  .leilanys-way__media:hover img,
  .service-block.is-active:hover .service-block__media img {
    transform: scale(1.035);
  }

  .rating-card,
  .process-steps article,
  .portfolio-card {
    position: relative;
  }

  .rating-card::after,
  .process-steps article::after,
  .portfolio-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(90,159,212,.22), transparent 34%);
    opacity: 0;
    transition: opacity .28s ease;
  }

  .rating-card:hover::after,
  .process-steps article:hover::after,
  .portfolio-card:hover::after {
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .nav {
    grid-template-columns: auto 1fr auto;
  }
  .brand {
    grid-column: 1;
    justify-self: start;
  }
  .nav__cta {
    grid-column: 3;
    justify-self: end;
  }
  .nav__cta > a,
  .nav__cta a:not(.btn) {
    display: none !important;
  }
  .nav__cta .btn.btn--small {
    display: inline-flex !important;
  }
  .nav__cta {
    display: flex !important;
    justify-content: flex-end;
    width: 100%;
  }
  .menu-toggle {
    display: block !important;
    justify-self: end;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__copy .eyebrow,
  .hero__copy h1,
  .hero__copy > p,
  .hero .rating-card,
  .hero__subject img,
  .quote-form {
    opacity: 1;
    transition: none;
  }
  .hero__copy .eyebrow,
  .hero__copy h1,
  .hero__copy > p,
  .hero .rating-card {
    transform: none;
  }
  .hero__subject img {
    transform: scaleX(-1);
  }
  .quote-form {
    transform: translateX(-50%);
  }
}
