/* ═══════════════════════════════════════════════════
   Sparkle Touch — cleaning services landing page
   ═══════════════════════════════════════════════════ */

:root {
  --cream:       #fbf8e3;
  --white:       #ffffff;
  --green:       #16653a;
  --green-dark:  #0b3b21;
  --green-soft:  #e7f0e6;
  --orange:      #f0913c;
  --tan:         #e2a063;
  --yellow:      #f5d04e;
  --ink:         #101418;
  --ink-soft:    #23302a;
  --body:        #6e7275;
  --grey-bg:     #f3f3ef;
  --line:        #e3e3dc;

  --container: 1268px;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { margin: 0; color: var(--ink); letter-spacing: -.02em; }
p  { margin: 0; }
button { font: inherit; }

.container { width: min(var(--container), 100% - 48px); margin-inline: auto; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

:where(a, button, input):focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── shared: two-weight section heading ── */
.thin, .bold { display: block; }
.thin { font-weight: 300; font-size: 55px; line-height: 1.2; color: var(--ink-soft); }
.bold { font-weight: 800; font-size: 58px; line-height: 1.2; color: var(--ink); }

/* ── buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; line-height: 1;
  padding: 16px 30px; border: 0; border-radius: 999px;
  cursor: pointer; white-space: nowrap;
  transition: background-color .25s var(--ease), color .25s var(--ease),
              box-shadow .25s var(--ease), transform .25s var(--ease);
}
.btn svg { width: 16px; height: 16px; }

.btn--outline {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 1.4px #1d1f22;
  padding: 14px 26px;
}
.btn--outline:hover { background: var(--ink); color: #fff; box-shadow: inset 0 0 0 1.4px var(--ink); }

.btn--green { background: var(--green); color: #fff; }
.btn--green:hover { background: #0f5330; box-shadow: 0 10px 24px -12px rgba(22,101,58,.8); }

.btn--white { background: #fff; color: var(--ink); padding: 15px 26px; }
.btn--white:hover { background: var(--cream); }

/* ── decorative 4-point sparkles ── */
.deco {
  position: absolute; width: 20px; height: 20px;
  fill: var(--green); opacity: .85; pointer-events: none;
  animation: twinkle 4s var(--ease) infinite;
}
@keyframes twinkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: .85; }
  50%      { transform: scale(1.18) rotate(12deg); opacity: .45; }
}

/* ── dotted grids ── */
.dots {
  display: block;
  background-image: radial-gradient(#b3b6ae 1.8px, transparent 1.9px);
  background-size: 14px 14px;
}

/* ═══════════ header ═══════════ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  transition: box-shadow .3s var(--ease);
}
.site-header.is-stuck { box-shadow: 0 6px 24px -18px rgba(0,0,0,.5); }

.header__inner {
  display: flex; align-items: center; gap: 40px;
  height: 74px;
}

.logo {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 17px; font-weight: 700; color: var(--ink); letter-spacing: -.02em;
}
.logo__spark { width: 15px; height: 15px; fill: var(--green); }

.nav { display: flex; gap: 30px; margin-inline: auto; }
.nav a {
  font-size: 14px; font-weight: 500; color: #33383c;
  transition: color .2s var(--ease);
}
.nav a:hover { color: var(--green); }

.burger { display: none; }

/* ═══════════ hero ═══════════ */
.hero {
  position: relative;
  background: var(--cream);
  overflow: hidden;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 30px;
  min-height: 728px;
  padding-top: 70px;
}

.hero__copy { padding-bottom: 40px; }

.hero__title { font-size: 56px; line-height: 1.2; }
.hero__title-1 { display: block; font-weight: 300; color: var(--ink-soft); }
.hero__title-2 { display: block; position: relative; font-weight: 800; color: var(--ink); }
.hero__title-spark {
  position: absolute; left: -34px; top: 18px;
  width: 18px; height: 18px; fill: var(--ink);
}

.hero__text {
  margin-top: 24px; max-width: 565px;
  font-size: 15px; line-height: 1.92; color: var(--body);
}

.hero__actions { display: flex; align-items: center; gap: 26px; margin-top: 32px; }

.video-link {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 600; color: var(--ink);
}
.video-link__dot {
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange); color: #fff;
  transition: transform .25s var(--ease);
}
.video-link__dot svg { width: 17px; height: 17px; }
.video-link:hover .video-link__dot { transform: translateX(4px); }

.hero__gallery {
  position: relative;
  display: flex; gap: 11px;
  margin-top: 124px; padding-left: 92px;
}
.dots--hero {
  position: absolute; left: 0; top: 38px;
  width: 96px; height: 84px;
}
.hero__thumb {
  margin: 0; width: 174px; height: 158px;
  border-radius: 10px; overflow: hidden;
}
.hero__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.hero__thumb:hover img { transform: scale(1.06); }

/* right visual */
.hero__visual { position: relative; align-self: end; }
.blob {
  position: absolute; right: -42px; bottom: 0;
  width: 418px; height: 476px;
  background: var(--tan);
  border-radius: 206px 206px 18px 18px;
}
.hero__person {
  position: relative; z-index: 2;
  width: 404px; height: auto;
  margin-left: auto; margin-right: -14px;
  display: block;
  filter: drop-shadow(-14px 12px 22px rgba(80,45,10,.16));
}

.stat-card {
  position: absolute; z-index: 3; left: -34px; top: 168px;
  background: #fff; border-radius: 14px;
  padding: 13px 17px 15px;
  box-shadow: 0 18px 40px -22px rgba(20,30,20,.35);
}
.stat-card__arrow { position: absolute; right: -34px; top: -14px; width: 46px; height: 40px; }
.stat-card__num { font-size: 16px; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.stat-card__label { font-size: 10.5px; color: #8a8d8f; margin-top: 1px; }

.avatars { display: flex; margin-top: 9px; }
.avatars img {
  width: 29px; height: 29px; border-radius: 50%;
  border: 2px solid #fff; object-fit: cover;
}
.avatars img + img { margin-left: -10px; }

/* hero sparkle placement */
.deco--h1 { right: 96px;  top: 74px;  width: 15px; height: 15px; fill: var(--ink); }
.deco--h2 { right: 22px;  top: 148px; width: 20px; height: 20px; fill: #4c5a4f; }
.deco--h3 { left: 714px;  top: 104px; width: 14px; height: 14px; fill: var(--green); }
.deco--h4 { left: 34px;   top: 300px; width: 14px; height: 14px; fill: var(--green); }

/* ═══════════ why choose us ═══════════ */
.why { padding: 84px 0 96px; background: #fff; }

.section-head { position: relative; max-width: 700px; margin: 0 auto 54px; text-align: center; }
.section-head h2 { font-size: 56px; font-weight: 800; }
.section-head p { margin-top: 18px; font-size: 13.5px; line-height: 1.95; color: var(--body); }

.why__vacuum {
  position: absolute; right: -118px; top: -20px;
  width: 88px; height: 84px;
  color: #2c3238; opacity: .9;
  transform: rotate(-5deg);
}
.deco--w1 { left: -46px; top: 26px; width: 14px; height: 14px; }
.deco--w2 { right: -132px; top: 86px; width: 13px; height: 13px; fill: var(--ink); }

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 22px;
}

.feature { padding: 4px 6px 0 0; }
.feature__icon {
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 13px;
  margin-bottom: 18px;
}
.feature__icon svg { width: 23px; height: 23px; }
.feature__icon--green  { background: #dff0e4; color: #1f7a45; }
.feature__icon--leaf   { background: #e2f2dd; color: #3f8f2f; }
.feature__icon--amber  { background: #fdf0d5; color: #d99518; }
.feature__icon--orange { background: #fde8d8; color: #e07b28; }

.feature h3 { font-size: 15px; font-weight: 700; line-height: 1.35; }
.feature p { margin-top: 10px; font-size: 12.5px; line-height: 1.85; color: var(--body); }

.why__pic { margin: 0; height: 218px; border-radius: 12px; overflow: hidden; }
.why__pic img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 28%;
  transition: transform .6s var(--ease);
}
.why__pic:hover img { transform: scale(1.07); }

/* keep faces in frame when the portrait sources are cropped to landscape cells */
.why__grid figure:nth-of-type(1) img { object-position: center 13%; }
.why__grid figure:nth-of-type(2) img { object-position: center 30%; }
.why__grid figure:nth-of-type(3) img { object-position: center 19%; }
.why__grid figure:nth-of-type(4) img { object-position: center 30%; }

/* ═══════════ we make places clean & bright ═══════════ */
.bright { padding: 88px 0 92px; background: var(--cream); }
.bright__inner {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 60px;
  align-items: start;
}

.collage { position: relative; height: 616px; }
.collage figure { margin: 0; border-radius: 12px; overflow: hidden; position: absolute; }
.collage img { width: 100%; height: 100%; object-fit: cover; }
.collage__a { left: 26px;  top: 0;    width: 178px; height: 250px; }
.collage__b { left: 212px; top: 46px; width: 214px; height: 306px; z-index: 1; }
.collage__c { left: 0;     top: 280px; width: 252px; height: 332px; z-index: 2; }
.dots--bright { position: absolute; left: 266px; top: 376px; width: 100px; height: 86px; }
.deco--b1 { left: 4px; top: 258px; width: 15px; height: 15px; }
.deco--b2 { left: 268px; bottom: 34px; width: 17px; height: 17px; fill: var(--ink); }

.bright__copy { padding-top: 8px; }
.bright__copy > p {
  margin-top: 20px; max-width: 470px;
  font-size: 13.5px; line-height: 1.95;
}

.ticks {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px 26px; margin-top: 26px; max-width: 500px;
}
.ticks li {
  position: relative; padding-left: 17px;
  font-size: 13px; font-weight: 500; color: #2f3a33;
}
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 6px; height: 6px; border-radius: 2px;
  background: var(--green); transform: rotate(45deg);
}

.video-card {
  position: relative; margin: 34px 0 0; width: 340px; height: 176px;
  border-radius: 13px; overflow: hidden;
}
.video-card img { width: 100%; height: 100%; object-fit: cover; }
.play {
  position: absolute; inset: 0; margin: auto;
  width: 48px; height: 48px; border: 0; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: grid; place-items: center; cursor: pointer;
  transition: transform .25s var(--ease), background-color .25s var(--ease);
}
.play svg { width: 20px; height: 20px; margin-left: 2px; }
.play:hover { transform: scale(1.08); background: #e07f26; }

/* ═══════════ popular services ═══════════ */
.services { padding: 90px 0 34px; background: #fff; }

.services__head {
  position: relative;
  display: flex; align-items: flex-end; gap: 46px;
  margin-bottom: 40px;
}
.services__head .btn { padding: 18px 42px; margin-bottom: 10px; }
.deco--s1 { left: 640px; bottom: 62px; width: 14px; height: 14px; }

.services__body {
  display: grid; grid-template-columns: 1fr 300px; gap: 40px;
  align-items: start;
}
/* grid items default to min-width:auto, which lets the photo's intrinsic
   ratio push the track wider than the container on narrow screens */
.services__main, .services__stack { min-width: 0; }

/* 1.91:1 like the reference — a shallower band loses too much of a portrait source */
.services__photo {
  margin: 0; aspect-ratio: 1.91; border-radius: 14px; overflow: hidden;
}
.services__photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 42%;
  transition: transform .7s var(--ease);
}
.services__photo:hover img { transform: scale(1.05); }

.services__row {
  display: grid; grid-template-columns: 218px minmax(0, 1fr) auto;
  align-items: center; gap: 30px;
  margin-top: 22px; padding-top: 24px;
  border-top: 1px solid var(--line);
}
.services__row p { max-width: 430px; }
.services__row h3 { font-size: 17px; font-weight: 700; }
.services__row p { font-size: 12.5px; line-height: 1.9; }

.circle-btn {
  width: 46px; height: 46px; border-radius: 50%;
  background: #fff; color: var(--ink);
  border: 1.3px solid #d8d8d1;
  display: grid; place-items: center; cursor: pointer;
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.circle-btn svg { width: 17px; height: 17px; }
.circle-btn:hover { background: var(--green); color: #fff; border-color: var(--green); }

.services__stack { position: relative; height: 566px; margin-top: -72px; }
.tilt {
  position: absolute; right: 0; margin: 0;
  width: 250px; height: 172px;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 16px 34px -24px rgba(20,25,20,.5);
  transition: transform .35s var(--ease);
}
.tilt img { width: 100%; height: 100%; object-fit: cover; object-position: center 32%; }
.tilt--1 { top: 0;    right: 42px; transform: rotate(-5deg); }
.tilt--2 { top: 132px; right: 0;   transform: rotate(3.5deg); }
.tilt--3 { top: 264px; right: 46px; transform: rotate(-4.5deg); }
.tilt--4 { top: 392px; right: 4px;  transform: rotate(4deg); }
.tilt:hover { transform: rotate(0deg) scale(1.03); z-index: 3; }

/* ═══════════ client success ═══════════ */
.reviews { position: relative; padding-top: 84px; background: #fff; }
.reviews__inner { position: relative; min-height: 470px; }

/* she stands in front of the section but behind the green stats band */
.reviews__person {
  position: absolute; left: -14px; bottom: -72px; z-index: 1;
  width: 348px; height: auto;
}

.reviews__content {
  position: relative;
  width: min(806px, 100%);
  margin-left: 318px;
  text-align: center;
}
.deco--r1 { left: -20px; top: 34px; width: 15px; height: 15px; }

.quote {
  position: relative; margin: 38px auto 0; max-width: 640px;
  padding: 6px 58px 0 4px;
  text-align: left;
}
.quote__stars { display: flex; align-items: center; gap: 3px; }
.quote__stars svg { width: 13px; height: 13px; fill: var(--orange); }
.quote__stars b { margin-left: 7px; font-size: 12px; font-weight: 700; color: var(--ink); }

.quote blockquote {
  margin: 12px 0 0; font-size: 13px; line-height: 1.95; color: #5f6467;
}
.quote figcaption { display: flex; align-items: center; gap: 11px; margin-top: 18px; }
.quote figcaption img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; }
.quote figcaption b { font-size: 12.5px; font-weight: 700; color: var(--ink); }
.quote figcaption em { font-size: 10.5px; font-style: normal; color: #93979a; }

.quote__mark {
  position: absolute; right: 0; bottom: 10px;
  font-size: 84px; line-height: 1; font-weight: 800;
  color: var(--green); opacity: .85;
}

.bubbles { position: absolute; inset: 0; pointer-events: none; }
.bubble { position: absolute; }
.bubble img {
  width: 68px; height: 68px; border-radius: 50%;
  object-fit: cover; border: 3px solid #fff;
  box-shadow: 0 12px 26px -14px rgba(20,25,20,.55);
}
.bubble b {
  position: absolute; right: -19px; top: 3px;
  display: inline-flex; align-items: center; gap: 3px;
  background: #fff; border-radius: 999px; padding: 4px 8px;
  font-size: 10px; font-weight: 700; color: var(--ink);
  box-shadow: 0 6px 16px -8px rgba(20,25,20,.5);
}
.bubble b svg { width: 9px; height: 9px; fill: var(--orange); }
.bubble--1 { right: 4px;   top: 34px; }
.bubble--2 { right: -26px; top: 152px; }
.bubble--3 { right: 62px;  top: 262px; }

/* stats band — painted over the cutout so she is cropped by it, as in the design */
.stats { margin-top: 4px; background: var(--green); position: relative; z-index: 2; overflow: hidden; }
.stats::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 46%;
  background: repeating-linear-gradient(115deg, rgba(255,255,255,.055) 0 1px, transparent 1px 13px);
}
.stats__inner {
  position: relative;
  display: flex; justify-content: flex-end; gap: 96px;
  padding: 36px 42px 38px 0;
}
.stat { text-align: center; min-width: 112px; }
.stat b { display: block; font-size: 38px; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.stat span { display: block; margin-top: 5px; font-size: 12px; color: rgba(255,255,255,.72); }

/* ═══════════ promo banner ═══════════ */
.promo { padding: 74px 0 62px; background: #fff; }
.promo__card {
  position: relative; height: 232px;
  border-radius: 16px; overflow: hidden;
  display: grid; place-items: center;
}
.promo__card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 52%;
}
.promo__card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(92deg, rgba(9,42,24,.86) 0%, rgba(9,42,24,.66) 52%, rgba(9,42,24,.3) 100%);
}
.promo__body { position: relative; z-index: 2; text-align: center; padding: 0 20px; }
.promo__body h2 {
  font-size: 30px; font-weight: 700; line-height: 1.42; color: #fff;
}
.promo__body h2 span { color: var(--yellow); }
.promo__body .btn { margin-top: 22px; }

/* ═══════════ logos ═══════════ */
.logos { padding: 18px 0 66px; background: #fff; }
.logos__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; flex-wrap: wrap;
}
.logoipsum {
  width: 170px; height: 30px;
  fill: #b7bbb7;
  opacity: .95;
  transition: fill .25s var(--ease);
}
.logoipsum text { font-size: 15.5px; font-weight: 700; fill: inherit; font-family: inherit; }
.logoipsum--italic text { font-style: italic; }
.logoipsum--blue { fill: #2f6be5; }
.logoipsum:hover { fill: #7f8580; }
.logoipsum--blue:hover { fill: #2f6be5; }

/* ═══════════ footer ═══════════ */
.footer { background: var(--grey-bg); padding-top: 52px; }

.newsletter {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
  padding-bottom: 46px;
}
.newsletter h2 { font-size: 25px; font-weight: 800; }
.newsletter p { margin-top: 8px; font-size: 12.5px; color: var(--body); }
.newsletter__form { display: flex; gap: 8px; }
.newsletter__form input {
  width: 262px; height: 46px; padding: 0 18px;
  border: 1px solid #e2e2db; border-radius: 7px;
  background: #fff; font-size: 12.5px; color: var(--ink);
}
.newsletter__form input::placeholder { color: #a9adab; }
.newsletter__form .btn { border-radius: 7px; padding: 0 24px; height: 46px; }

.footer__cols {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px; padding: 44px 0 52px;
  border-top: 1px solid #e5e5de;
}
.footer__col h3 { font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.footer__col p { font-size: 12.5px; line-height: 1.95; color: var(--body); max-width: 240px; }

.footer__list li,
.footer__contact li { font-size: 12.5px; line-height: 1.9; color: var(--body); }
.footer__list li { position: relative; padding-left: 14px; }
.footer__list a:hover { color: var(--green); }
.footer__list li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 5px; height: 5px; border-radius: 1px;
  background: #9aa09b; transform: rotate(45deg);
}
.footer__list li + li, .footer__contact li + li { margin-top: 7px; }
.footer__contact li { display: flex; align-items: center; gap: 9px; }
.footer__contact svg { flex: none; width: 15px; height: 15px; color: #4a5450; }
.footer__contact a:hover { color: var(--green); }

.copybar { background: var(--green-dark); }
.copybar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; padding: 15px 0;
}
.copybar p { font-size: 11.5px; color: rgba(255,255,255,.78); }
.socials { display: flex; gap: 9px; }
.socials a {
  display: grid; place-items: center;
  width: 29px; height: 29px; border-radius: 50%;
  background: rgba(255,255,255,.13); color: #fff;
  transition: background-color .25s var(--ease);
}
.socials a svg { width: 13px; height: 13px; fill: currentColor; }
.socials a:hover { background: rgba(255,255,255,.3); }

/* ═══════════ scroll reveal ═══════════ */
.reveal { opacity: 0; transform: translateY(26px); }
.reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal[data-delay="1"].is-in { transition-delay: .09s; }
.reveal[data-delay="2"].is-in { transition-delay: .18s; }
.reveal[data-delay="3"].is-in { transition-delay: .27s; }
.reveal[data-delay="4"].is-in { transition-delay: .36s; }

/* ═══════════ responsive ═══════════ */
@media (max-width: 1180px) {
  .hero__inner { grid-template-columns: 1fr 420px; }
  .blob { width: 360px; height: 410px; }
  .hero__person { width: 320px; }
  .bright__inner { grid-template-columns: 420px 1fr; gap: 36px; }
  .reviews__person { width: 250px; }
  .reviews__content { margin-left: 210px; }
  .why__vacuum, .deco--w1, .deco--w2 { display: none; }
}

@media (max-width: 1000px) {
  .hero__title { font-size: 40px; }
  .thin { font-size: 32px; } .bold { font-size: 34px; }
  .section-head h2 { font-size: 32px; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .services__body { grid-template-columns: 1fr; }
  .services__stack { margin-top: 8px; height: 470px; }
  .tilt { right: auto; left: 50%; margin-left: -123px; }
  .bright__inner { grid-template-columns: 1fr; }
  .collage { max-width: 440px; }
}

@media (max-width: 860px) {
  .nav, .header__cta { display: none; }
  .burger {
    display: grid; gap: 5px; margin-left: auto;
    background: none; border: 0; cursor: pointer; padding: 6px;
  }
  .burger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

  .nav.is-open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; left: 0; right: 0; top: 74px;
    margin: 0; padding: 8px 24px 18px;
    background: #fff; box-shadow: 0 14px 30px -22px rgba(0,0,0,.6);
  }
  .nav.is-open a { padding: 12px 0; border-bottom: 1px solid var(--line); }

  .hero__inner { grid-template-columns: 1fr; min-height: 0; padding-top: 44px; }
  .hero__copy { padding-bottom: 26px; }
  .hero__visual { max-width: 420px; margin-inline: auto; }
  .hero__person { margin-inline: auto; }
  .blob { right: 50%; transform: translateX(50%); }
  .stat-card { left: -12px; }
  .deco--h1, .deco--h2, .deco--h3, .deco--h4 { display: none; }

  .reviews__inner { min-height: 0; }
  .reviews__person { position: static; width: 210px; margin: 0 auto -10px; }
  .reviews__content { margin-left: 0; }
  .bubbles { display: none; }
  .stats__inner { justify-content: center; gap: 34px; padding: 26px 0; flex-wrap: wrap; }
  .stat { min-width: 88px; }
  .stat b { font-size: 27px; }

  .footer__cols { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .newsletter { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .container { width: 100% - 32px; width: min(var(--container), 100% - 32px); }
  .hero__title { font-size: 32px; }
  .hero__title-spark { display: none; }
  .thin { font-size: 26px; } .bold { font-size: 28px; }
  .section-head h2 { font-size: 27px; }
  .hero__actions { flex-wrap: wrap; gap: 16px; }
  .hero__gallery { padding-left: 0; margin-top: 36px; }
  .dots--hero { display: none; }
  .hero__thumb { width: 50%; height: 128px; }
  .why__grid { grid-template-columns: 1fr; }
  .why__pic { height: 190px; }
  .collage { height: 430px; }
  .collage__a { width: 132px; height: 164px; left: 8px; }
  .collage__b { width: 150px; height: 224px; left: 156px; top: 26px; }
  .collage__c { width: 150px; height: 204px; top: 182px; left: 0; }
  .dots--bright { left: 168px; top: 268px; width: 66px; height: 56px; }
  .ticks { grid-template-columns: 1fr; }
  .video-card { width: 100%; }
  .services__head { flex-direction: column; align-items: flex-start; gap: 22px; }
  .deco--s1, .deco--r1, .deco--b1, .deco--b2 { display: none; }
  .services__photo { aspect-ratio: 1.4; height: auto; }
  .services__row { grid-template-columns: 1fr; gap: 14px; }
  .tilt { width: 210px; height: 145px; margin-left: -105px; }
  .services__stack { height: 430px; }
  .promo__card { height: auto; padding: 42px 0; }
  .promo__body h2 { font-size: 22px; }
  .newsletter__form { width: 100%; }
  .newsletter__form input { width: 100%; }
  .footer__cols { grid-template-columns: 1fr; }
  .copybar__inner { justify-content: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
