/* ============================================================
   H&M SOLUTIONS — Design System
   Premium black & white · Tiling · Painting · Melbourne
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Monochrome scale */
  --ink:        #0A0A0A;   /* near-black — text, headings, buttons */
  --ink-2:      #1C1C1E;   /* charcoal */
  --graphite:   #2E2F33;
  --slate:      #55565B;   /* body text */
  --slate-2:    #86878C;   /* meta / captions */
  --line:       #E6E6E8;   /* hairline borders */
  --line-2:     #D6D6D9;
  --paper:      #FFFFFF;
  --mist:       #F6F6F7;   /* soft section wash */
  --mist-2:     #EFEFF1;
  --cream:      #FAFAF9;

  /* On-dark accents */
  --on-dark:    #F5F5F6;
  --on-dark-2:  #A9AAB0;

  /* Type */
  --f-head: "Barlow Condensed", "Arial Narrow", sans-serif;
  --f-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Rhythm */
  --wrap: 1200px;
  --gap: 24px;
  --radius: 4px;
  --radius-sm: 3px;
  --shadow: 0 12px 34px rgba(10,10,10,.08);
  --shadow-lg: 0 30px 70px rgba(10,10,10,.16);
  --ease: cubic-bezier(.22,.7,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.68;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--f-head);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0.005em;
  color: var(--ink);
  text-transform: uppercase;
}
h1 { font-size: clamp(2.7rem, 6.2vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4.6vw, 3.3rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.75rem); }
h4 { font-size: 1.16rem; letter-spacing: 0.02em; }
p  { color: var(--slate); }
.lead { font-size: 1.2rem; color: var(--ink-2); line-height: 1.62; }

.eyebrow {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 1.5px;
  background: var(--ink);
  display: inline-block;
}

/* ---------- Layout ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(66px, 9vw, 128px) 0; }
.section--mist { background: var(--mist); }
.section--cream { background: var(--cream); }
.section--ink { background: var(--ink); color: var(--on-dark); }
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }
.section--ink p { color: var(--on-dark-2); }
.section--ink .eyebrow { color: #fff; }
.section--ink .eyebrow::before { background: #fff; }
.center { text-align: center; }
.section-head { max-width: 730px; margin-bottom: 58px; }
.section-head.center { margin-left: auto; margin-right: auto; }
.section-head p { margin-top: 18px; font-size: 1.12rem; }

.grid { display: grid; gap: var(--gap); }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--f-body); font-weight: 600; font-size: 0.98rem; letter-spacing: .01em;
  padding: 15px 30px; border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow); background: #000; }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line-2); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.3); }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.06); transform: translateY(-2px); }
.btn--lg { padding: 18px 36px; font-size: 1.04rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Logo ---------- */
.logo { display: inline-flex; align-items: center; color: var(--ink); }
.logo svg { height: 44px; width: auto; display: block; }
.footer .logo, .section--ink .logo { color: #fff; }
.footer .logo svg { height: 52px; }

/* ---------- Header ---------- */
.topbar { background: var(--ink); color: var(--on-dark-2); font-size: 0.84rem; }
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; height: 42px; gap: 20px; }
.topbar a { color: var(--on-dark-2); transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar__left { display: flex; gap: 28px; }
.topbar__left span { display: inline-flex; align-items: center; gap: 8px; }
.topbar__left svg { width: 15px; height: 15px; color: #fff; }
.topbar__right { display: flex; gap: 16px; align-items: center; }
.topbar__right .soc { display: inline-flex; gap: 12px; }
.topbar__right svg { width: 15px; height: 15px; }

.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: 0 4px 22px rgba(10,10,10,.06); }
.header .wrap { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-weight: 500; font-size: 0.95rem; color: var(--slate);
  padding: 10px 16px; border-radius: 6px; position: relative;
  transition: color .2s;
}
.nav a:hover, .nav a.active { color: var(--ink); }
.nav a.active::after {
  content:""; position:absolute; left:16px; right:16px; bottom:6px; height:1.5px;
  background: var(--ink);
}
.header__cta { display: flex; align-items: center; gap: 18px; }
.header__phone { font-family: var(--f-head); font-size: 1.4rem; font-weight: 700; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; letter-spacing: .01em; }
.header__phone svg { width: 19px; height: 19px; }

.burger { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 5px; align-items: center; }
.burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.burger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2){ opacity: 0; }
.burger.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--ink); color: #fff; overflow: hidden; }
.hero::before {
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(1100px 620px at 82% -20%, rgba(255,255,255,.08), transparent 60%),
    linear-gradient(180deg, #0A0A0A 0%, #131316 100%);
}
.hero__grid { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; gap: 54px; align-items: center; padding: clamp(58px, 8vw, 104px) 0; }
.hero h1 { color: #fff; }
.hero h1 em { font-style: normal; color: #fff; position: relative; }
.hero h1 em::after { content:""; position:absolute; left:0; right:0; bottom:.06em; height:3px; background:#fff; }
.hero p { color: #C6C7CC; font-size: 1.18rem; margin: 24px 0 32px; max-width: 520px; }
.hero .eyebrow { color: #fff; }
.hero .eyebrow::before { background: #fff; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero__badge { display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); padding: 9px 16px; border-radius: 999px; font-size: 0.88rem; color: #E7E7EA; }
.hero__badge svg { width: 16px; height: 16px; color: #fff; }

.hero__card { position: relative; background: #fff; color: var(--ink); border-radius: 8px; padding: 32px; box-shadow: var(--shadow-lg); }
.hero__card h3 { margin-bottom: 6px; }
.hero__card .muted { color: var(--slate); font-size: 0.95rem; margin-bottom: 22px; }
.hero__card .field { margin-bottom: 14px; }
.hero__card label { display:block; font-size: 0.8rem; font-weight: 600; color: var(--ink-2); margin-bottom: 6px; }
.hero__card input, .hero__card select {
  width: 100%; padding: 13px 14px; border: 1.5px solid var(--line-2); border-radius: 5px;
  font-family: inherit; font-size: 0.98rem; color: var(--ink); background: #fff; transition: border .2s;
}
.hero__card input:focus, .hero__card select:focus { outline: none; border-color: var(--ink); }
.hero__card .btn { width: 100%; }
.hero__card .fineprint { text-align:center; font-size: 0.8rem; color: var(--slate-2); margin-top: 14px; }
.hero__floating {
  position: absolute; top: -16px; right: -12px;
  background: #fff; color: var(--ink); font-family: var(--f-head); font-weight: 700;
  padding: 10px 18px; border-radius: 999px; font-size: 0.98rem; box-shadow: var(--shadow); letter-spacing:.03em;
  border: 1px solid var(--line);
}

/* ---------- Trust strip ---------- */
.trust { background: var(--ink-2); color: #fff; border-top: 1px solid rgba(255,255,255,.08); }
.trust .wrap { display: grid; grid-template-columns: repeat(4,1fr); padding: 30px 24px; }
.trust__item { text-align: center; padding: 4px 10px; border-right: 1px solid rgba(255,255,255,.1); }
.trust__item:last-child { border-right: none; }
.trust__item .num { font-family: var(--f-head); font-size: 2.5rem; font-weight: 700; color: #fff; line-height: 1; }
.trust__item .lbl { font-size: 0.82rem; color: var(--on-dark-2); margin-top: 8px; letter-spacing: .06em; text-transform: uppercase; }

/* ---------- Service cards ---------- */
.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s;
  display: flex; flex-direction: column; height: 100%;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--line-2); }
.svc-card__icon {
  width: 60px; height: 60px; border-radius: 6px; display: grid; place-items: center;
  background: var(--ink); color: #fff; margin-bottom: 22px;
}
.svc-card__icon svg { width: 28px; height: 28px; }
.svc-card h3 { margin-bottom: 12px; }
.svc-card p { margin-bottom: 20px; flex: 1; }
.svc-card ul { margin-bottom: 24px; }
.svc-card ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.95rem; color: var(--ink-2); padding: 5px 0; }
.svc-card ul li svg { width: 18px; height: 18px; color: var(--ink); flex-shrink: 0; margin-top: 3px; }
.svc-card .link { font-weight: 600; color: var(--ink); display: inline-flex; align-items: center; gap: 9px; margin-top: auto; transition: gap .2s; }
.svc-card .link svg { width: 18px; height: 18px; transition: transform .2s; }
.svc-card:hover .link svg { transform: translateX(5px); }

/* ---------- Feature / Why ---------- */
.feature { display: flex; gap: 18px; align-items: flex-start; }
.feature__ic { width: 52px; height: 52px; border-radius: 6px; background: var(--mist); border: 1px solid var(--line); color: var(--ink); display: grid; place-items: center; flex-shrink: 0; }
.section--ink .feature__ic { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); color:#fff; }
.feature__ic svg { width: 24px; height: 24px; }
.feature h4 { margin-bottom: 7px; }
.feature p { font-size: 0.98rem; }

/* ---------- Split (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 72px); align-items: center; }
.split__media { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 440px; box-shadow: var(--shadow); background: var(--mist-2); }
.split__media img { width: 100%; height: 100%; object-fit: cover; position:absolute; inset:0; }
.split__badge {
  position: absolute; bottom: 20px; left: 20px; background: #fff; border-radius: 4px; padding: 16px 22px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 15px; z-index:2;
}
.split__badge .n { font-family: var(--f-head); font-size: 2.3rem; font-weight: 700; color: var(--ink); line-height: 1; }
.split__badge .t { font-size: 0.85rem; color: var(--slate); }
.ticklist li { display: flex; gap: 13px; align-items: flex-start; padding: 10px 0; color: var(--ink-2); }
.ticklist li svg { width: 22px; height: 22px; color: var(--ink); flex-shrink: 0; margin-top: 2px; }
.section--ink .ticklist li { color: var(--on-dark); }
.section--ink .ticklist li svg { color: #fff; }
.ticklist li strong { color: var(--ink); }
.section--ink .ticklist li strong { color: #fff; }

/* Image fallback pattern (shows if a photo file is missing) */
.imgwrap { position: relative; background:
  repeating-linear-gradient(45deg,#EDEDEF 0 24px,#E4E4E7 24px 48px); overflow:hidden; }
.imgwrap img { position: relative; z-index:1; }
.imgwrap::after { content: attr(data-label); position:absolute; inset:0; z-index:0; display:grid; place-items:center;
  font-family: var(--f-head); text-transform:uppercase; letter-spacing:.12em; color:#B4B4B8; font-size:.9rem; text-align:center; padding:12px; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery__item { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; background: var(--mist-2); }
.gallery__item.wide { grid-column: span 2; aspect-ratio: 8/5; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 18px 16px; color: #fff;
  background: linear-gradient(to top, rgba(10,10,10,.72), transparent); font-size: .84rem; letter-spacing: .04em; opacity: 0; transform: translateY(8px); transition: .3s; }
.gallery__item:hover .cap { opacity: 1; transform: none; }
@media (max-width: 720px){ .gallery { grid-template-columns: repeat(2,1fr); } .gallery__item.wide { grid-column: span 2; } }

/* ---------- Work cards (balanced 3-service showcase) ---------- */
.work-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; height: 100%; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.work-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.work-card__img { aspect-ratio: 4/3; overflow: hidden; background: var(--mist-2); }
.work-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.work-card:hover .work-card__img img { transform: scale(1.05); }
.work-card__body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.work-card h3 { margin-bottom: 10px; }
.work-card p { font-size: 0.96rem; margin-bottom: 18px; flex: 1; }
.work-card .link { font-weight: 600; color: var(--ink); display: inline-flex; align-items: center; gap: 9px; margin-top: auto; }
.work-card .link svg { width: 18px; height: 18px; transition: transform .2s; }
.work-card:hover .link svg { transform: translateX(5px); }

/* ---------- Process steps ---------- */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 80px; padding-bottom: 42px; }
.step:last-child { padding-bottom: 0; }
.step::before {
  counter-increment: step; content: counter(step,decimal-leading-zero);
  position: absolute; left: 0; top: -6px;
  font-family: var(--f-head); font-weight: 700; font-size: 2.3rem; color: var(--ink);
  width: 58px; text-align: center;
}
.section--ink .step::before { color: #fff; }
.step::after { content:""; position:absolute; left: 28px; top: 46px; bottom: 6px; width: 1.5px; background: var(--line-2); }
.section--ink .step::after { background: rgba(255,255,255,.16); }
.step:last-child::after { display: none; }
.step h4 { margin-bottom: 7px; }
.step p { font-size: 0.98rem; }

/* ---------- Testimonials ---------- */
.quote-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; height: 100%; display: flex; flex-direction: column; }
.quote-card .stars { display: flex; gap: 3px; margin-bottom: 18px; }
.quote-card .stars svg { width: 17px; height: 17px; color: var(--ink); }
.quote-card blockquote { font-size: 1.05rem; color: var(--ink-2); line-height: 1.62; flex: 1; }
.quote-card .who { display: flex; align-items: center; gap: 13px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.quote-card .who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; font-family: var(--f-head); font-weight: 700; font-size: 1.2rem; }
.quote-card .who .nm { font-weight: 600; color: var(--ink); font-size: 0.95rem; }
.quote-card .who .lo { font-size: 0.82rem; color: var(--slate-2); }

/* ---------- Areas ---------- */
.areas-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.area-pill { background: #fff; border: 1px solid var(--line); border-radius: 4px; padding: 13px 16px; font-size: 0.92rem; color: var(--ink-2); display: flex; align-items: center; gap: 10px; transition: .2s; }
.area-pill:hover { border-color: var(--ink); }
.area-pill svg { width: 14px; height: 14px; color: var(--ink); flex-shrink: 0; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink); color: #fff; }
.cta-band .wrap { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 60px 24px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; }
.cta-band p { color: var(--on-dark-2); margin-top: 10px; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 0; font-family: var(--f-head); font-size: 1.3rem; font-weight: 600; color: var(--ink); text-transform: uppercase; letter-spacing: .01em; }
.faq-q .ic { width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--line-2); display: grid; place-items: center; flex-shrink: 0; transition: .3s; }
.faq-q .ic svg { width: 15px; height: 15px; transition: transform .3s; }
.faq-item.open .faq-q .ic { background: var(--ink); border-color: var(--ink); color: #fff; }
.faq-item.open .faq-q .ic svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding: 0 0 24px; max-width: 780px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; background: var(--ink); color: #fff; padding: clamp(52px,7vw,92px) 0 clamp(58px,7vw,94px); overflow: hidden; }
.page-hero::before { content:""; position:absolute; inset:0; background: radial-gradient(900px 460px at 82% -30%, rgba(255,255,255,.07), transparent 60%); }
.page-hero.has-img::after { content:""; position:absolute; inset:0; background: linear-gradient(90deg, rgba(10,10,10,.94) 0%, rgba(10,10,10,.7) 55%, rgba(10,10,10,.4) 100%); z-index:1; }
.page-hero .bgimg { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:.5; }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; max-width: 840px; }
.page-hero p { color: #C6C7CC; font-size: 1.16rem; max-width: 640px; margin-top: 20px; }
.breadcrumb { display: flex; gap: 9px; align-items: center; font-size: 0.84rem; color: var(--on-dark-2); margin-bottom: 22px; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: #fff; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; }
.contact-info .ci-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-info .ci-item:last-child { border-bottom: none; }
.contact-info .ci-ic { width: 48px; height: 48px; border-radius: 6px; background: var(--ink); color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.contact-info .ci-ic svg { width: 21px; height: 21px; }
.contact-info h4 { margin-bottom: 4px; }
.contact-info p, .contact-info a { color: var(--slate); font-size: 1rem; }
.contact-info a:hover { color: var(--ink); }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display:block; font-size: 0.84rem; font-weight: 600; color: var(--ink-2); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line-2); border-radius: 5px;
  font-family: inherit; font-size: 1rem; color: var(--ink); background: #fff; transition: border .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(10,10,10,.08); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--on-dark-2); padding: 72px 0 0; }
.footer__top { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 42px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.09); }
.footer p { color: var(--on-dark-2); font-size: 0.95rem; }
.footer h5 { font-family: var(--f-head); text-transform: uppercase; font-size: 1.15rem; letter-spacing: .05em; color: #fff; margin-bottom: 20px; }
.footer a { color: var(--on-dark-2); transition: color .2s; }
.footer a:hover { color: #fff; }
.footer__links li { padding: 6px 0; }
.footer__links a { display: inline-flex; align-items: center; gap: 8px; }
.footer__contact li { display: flex; gap: 12px; align-items: flex-start; padding: 8px 0; font-size: 0.95rem; }
.footer__contact svg { width: 17px; height: 17px; color: #fff; flex-shrink: 0; margin-top: 3px; }
.footer__soc { display: flex; gap: 12px; margin-top: 22px; }
.footer__soc a { width: 40px; height: 40px; border-radius: 6px; background: rgba(255,255,255,.06); display: grid; place-items: center; transition: .2s; }
.footer__soc a:hover { background: #fff; color: var(--ink); }
.footer__soc svg { width: 17px; height: 17px; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding: 26px 0; font-size: 0.85rem; flex-wrap: wrap; gap: 10px; }
.footer__bottom .lic { color: #74757B; }

/* ---------- Before / After slider ---------- */
.ba-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.ba-block h4 { margin-top: 18px; }
.ba-block .meta { font-size: .9rem; color: var(--slate-2); margin-top: 2px; }
.ba {
  --pos: 50%;
  position: relative; width: 100%; aspect-ratio: 3/2; overflow: hidden;
  border-radius: var(--radius); cursor: ew-resize; user-select: none; touch-action: none;
  background: var(--mist-2); box-shadow: var(--shadow);
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba__before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba__handle { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; background: #fff; transform: translateX(-1px); pointer-events: none; box-shadow: 0 0 0 1px rgba(10,10,10,.18); }
.ba__grip { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 46px; height: 46px; border-radius: 50%; background: #fff; display: grid; place-items: center; box-shadow: var(--shadow); }
.ba__grip svg { width: 22px; height: 22px; color: var(--ink); }
.ba__tag { position: absolute; top: 14px; padding: 5px 12px; border-radius: 999px; font-family: var(--f-body); font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #fff; background: rgba(10,10,10,.62); backdrop-filter: blur(4px); pointer-events: none; }
.ba__tag--before { left: 14px; }
.ba__tag--after { right: 14px; }
.ba--wide { max-width: 760px; margin: 0 auto; }
@media (max-width: 980px){ .ba-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity:1; transform:none; transition:none; } }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .g-4 { grid-template-columns: repeat(2,1fr); }
  .g-3 { grid-template-columns: repeat(2,1fr); }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__card { max-width: 460px; }
  .split { grid-template-columns: 1fr; }
  .split__media { min-height: 340px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .areas-grid { grid-template-columns: repeat(3,1fr); }
  .trust .wrap { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .trust__item:nth-child(2) { border-right: none; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .topbar { display: none; }
  .nav, .header__phone { display: none; }
  .burger { display: flex; }
  .nav {
    position: fixed; top: 80px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; padding: 16px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    transform: translateY(-140%); transition: transform .35s var(--ease); z-index: 90;
  }
  .nav.open { transform: none; display: flex; }
  .nav a { padding: 14px 16px; font-size: 1.05rem; }
  .nav a.active::after { display: none; }
  .g-2, .g-3, .g-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2,1fr); }
  .trust .wrap { grid-template-columns: repeat(2,1fr); }
  .cta-band .wrap { flex-direction: column; text-align: center; }
}
