/* ============================================================
   MURO — Remonty i wykończenia premium
   ============================================================ */

:root {
  /* Ink / graphite */
  --ink:        #1F2937;
  --ink-900:    #161D27;
  --ink-700:    #2B3543;
  --ink-500:    #586577;
  --ink-400:    #8A95A4;

  /* Surfaces — warm neutrals */
  --paper:      #FFFFFF;
  --paper-soft: #FAF8F5;
  --paper-2:    #F2EFEA;
  --line:       #E5E0D8;
  --line-soft:  #EEEAE3;

  /* Accent — ciepłe złamane złoto / mosiądz */
  --accent:       #C0883B;
  --accent-soft:  #D8A659;
  --accent-deep:  #9E6E2C;
  --accent-tint:  #F6EEDF;

  /* On-dark */
  --on-dark:      #F4F2EE;
  --on-dark-dim:  #AEB6C1;

  /* Type */
  --font-display: "Bricolage Grotesque", Georgia, serif;
  --font-sans:    "Hanken Grotesk", system-ui, sans-serif;
  --font-mono:    "Space Mono", ui-monospace, monospace;

  /* Geometry */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --maxw: 1240px;
  --gut: clamp(20px, 5vw, 64px);

  --shadow-sm: 0 1px 2px rgba(31,41,55,.05), 0 4px 16px rgba(31,41,55,.05);
  --shadow-md: 0 8px 30px rgba(31,41,55,.08), 0 2px 6px rgba(31,41,55,.05);
  --shadow-lg: 0 24px 60px rgba(31,41,55,.16), 0 6px 18px rgba(31,41,55,.08);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 84px; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
address { font-style: normal; }
::selection { background: var(--accent); color: #fff; }

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(64px, 10vw, 132px); position: relative; }
.section--soft { background: var(--paper-soft); }
.section--dark { background: var(--ink); color: var(--on-dark); }

/* ---------- typography ---------- */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.04; letter-spacing: -0.02em; color: var(--ink); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--on-dark); }

.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 12.5px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--accent-deep);
}
.section--dark .kicker { color: var(--accent-soft); }
.kicker::before { content: ""; width: 28px; height: 1.5px; background: currentColor; opacity: .7; }
.kicker--center::after { content: ""; width: 28px; height: 1.5px; background: currentColor; opacity: .7; }

.section-head { max-width: 760px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-title {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  margin-top: 22px;
  text-wrap: balance;
}
.lede { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--ink-500); margin-top: 22px; max-width: 60ch; line-height: 1.6; }
.section--dark .lede { color: var(--on-dark-dim); }
.section-head--center .lede { margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px; border-radius: 999px;
  font-family: var(--font-sans); font-weight: 600; font-size: 15.5px; letter-spacing: .005em;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap; cursor: pointer; border: 1.5px solid transparent;
}
.btn svg { width: 17px; height: 17px; }
.btn--accent { background: var(--accent); color: #fff; box-shadow: 0 8px 24px -8px var(--accent); }
.btn--accent:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 14px 30px -10px var(--accent); }
.btn--dark { background: var(--ink); color: var(--on-dark); }
.btn--dark:hover { background: var(--ink-900); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.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-md); }
.btn--outline-light { border-color: rgba(255,255,255,.4); color: #fff; }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); transform: translateY(-2px); }
.btn--lg { padding: 18px 34px; font-size: 16.5px; }
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 84px; transition: height .35s var(--ease); }
.nav.scrolled { background: rgba(255,255,255,.88); backdrop-filter: saturate(150%) blur(14px); -webkit-backdrop-filter: saturate(150%) blur(14px); border-bottom-color: var(--line-soft); box-shadow: 0 4px 24px rgba(31,41,55,.05); }
.nav.scrolled .nav__inner { height: 70px; }

.brand { display: inline-flex; align-items: baseline; gap: 2px; font-family: var(--font-display); font-weight: 700; font-size: 25px; letter-spacing: .02em; color: #fff; transition: color .35s var(--ease); }
.brand .dot { color: var(--accent-soft); }
.nav.scrolled .brand { color: var(--ink); }
.brand small { font-family: var(--font-mono); font-size: 9px; letter-spacing: .28em; font-weight: 700; text-transform: uppercase; align-self: flex-end; margin-bottom: 5px; opacity: .65; }

.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a { font-size: 14.5px; font-weight: 500; color: rgba(255,255,255,.9); transition: color .25s; position: relative; }
.nav.scrolled .nav__links a { color: var(--ink-700); }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--accent); transition: width .28s var(--ease); }
.nav__links a:hover { color: var(--accent); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__phone { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-weight: 700; font-size: 14.5px; color: #fff; transition: color .25s; white-space: nowrap; }
.nav.scrolled .nav__phone { color: var(--ink); }
.nav__phone:hover { color: var(--accent); }
.nav__phone svg { width: 16px; height: 16px; }

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

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0 0 0 auto; width: min(86vw, 380px); z-index: 99;
  background: var(--ink); color: var(--on-dark);
  transform: translateX(100%); transition: transform .4s var(--ease);
  display: flex; flex-direction: column; padding: 110px var(--gut) 40px;
  box-shadow: -30px 0 60px rgba(0,0,0,.3);
}
.nav.open ~ .mobile-menu { transform: translateX(0); }
.mobile-menu a { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); color: var(--on-dark); }
.mobile-menu a:hover { color: var(--accent-soft); }
.mobile-menu .btn { margin-top: 28px; }
.scrim { position: fixed; inset: 0; background: rgba(15,20,28,.5); backdrop-filter: blur(2px); z-index: 98; opacity: 0; visibility: hidden; transition: .4s; }
.nav.open ~ .scrim { opacity: 1; visibility: visible; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,20,28,.62) 0%, rgba(15,20,28,.3) 32%, rgba(15,20,28,.46) 60%, rgba(15,20,28,.86) 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding-top: 104px; padding-bottom: 88px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono);
  font-size: 12.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: #fff; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22);
  padding: 9px 16px; border-radius: 999px; backdrop-filter: blur(6px);
}
.hero__eyebrow b { color: var(--accent-soft); }
.hero h1 { font-size: clamp(2.6rem, 6.6vw, 5.4rem); color: #fff; margin-top: 26px; max-width: 16ch; text-wrap: balance; line-height: .98; }
.hero__sub { font-size: clamp(1.1rem, 2vw, 1.4rem); color: rgba(255,255,255,.86); margin-top: 26px; max-width: 52ch; line-height: 1.5; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }

.hero__stats {
  display: grid; grid-template-columns: repeat(3, auto); gap: clamp(28px, 6vw, 80px);
  margin-top: clamp(34px, 4vw, 54px); padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.2); width: fit-content;
}
.stat__num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1; color: #fff; letter-spacing: -.02em; }
.stat__num b { color: var(--accent-soft); font-weight: 700; }
.stat__label { font-size: 13.5px; color: rgba(255,255,255,.72); margin-top: 8px; max-width: 18ch; line-height: 1.35; }

.scroll-hint { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 10px; letter-spacing: .25em; text-transform: uppercase; color: rgba(255,255,255,.7); }
.scroll-hint i { width: 1px; height: 36px; background: linear-gradient(rgba(255,255,255,.7), rgba(255,255,255,0)); animation: scrollLine 2.2s var(--ease) infinite; }
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 88px); align-items: center; }
.about__media { position: relative; width: min(500px, 100%); }
.about__media img { width: 100%; height: 100%; border-radius: var(--r-md); object-fit: cover; }
.about__badge {
  position: absolute; bottom: -24px; left: -24px; background: var(--ink); color: #fff;
  padding: 22px 26px; border-radius: var(--r-md); box-shadow: var(--shadow-lg); max-width: 230px;
}
.about__badge .n { font-family: var(--font-display); font-weight: 700; font-size: 2.4rem; line-height: 1; color: var(--accent-soft); }
.about__badge .t { font-size: 13px; color: rgba(255,255,255,.8); margin-top: 7px; line-height: 1.35; }

.feat-list { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 38px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.feat { background: var(--paper-soft); padding: 24px; }
.feat__h { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; }
.feat__h .mk { width: 9px; height: 9px; background: var(--accent); transform: rotate(45deg); flex: none; }
.feat__p { font-size: 14.5px; color: var(--ink-500); margin-top: 9px; line-height: 1.5; }

/* ============================================================
   SERVICES
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 56px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.svc {
  background: var(--paper); padding: 34px 30px 40px; position: relative;
  transition: background .3s var(--ease), color .3s var(--ease);
  display: flex; flex-direction: column; min-height: 232px;
}
.svc:hover { background: var(--ink); color: var(--on-dark); }
.svc__no { font-family: var(--font-mono); font-size: 12px; font-weight: 700; letter-spacing: .15em; color: var(--accent-deep); }
.svc:hover .svc__no { color: var(--accent-soft); }
.svc__mk { width: 14px; height: 14px; border: 2px solid var(--accent); transform: rotate(45deg); margin: 26px 0 auto; transition: .3s; }
.svc:hover .svc__mk { background: var(--accent); border-color: var(--accent); }
.svc__title { font-family: var(--font-display); font-weight: 600; font-size: 1.28rem; margin-top: 22px; letter-spacing: -.01em; }
.svc__desc { font-size: 14px; color: var(--ink-500); margin-top: 10px; line-height: 1.5; }
.svc:hover .svc__desc { color: var(--on-dark-dim); }

/* ============================================================
   REALIZACJE
   ============================================================ */
.ba {
  position: relative; aspect-ratio: 16/9; border-radius: var(--r-lg); overflow: hidden;
  margin-top: 56px; box-shadow: var(--shadow-lg); user-select: none; cursor: ew-resize;
}
.ba__layer { position: absolute; inset: 0; }
.ba__layer img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba__after { clip-path: inset(0 0 0 50%); }
.ba__label { position: absolute; top: 20px; font-family: var(--font-mono); font-size: 11.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; padding: 8px 14px; border-radius: 999px; background: rgba(15,20,28,.62); color: #fff; backdrop-filter: blur(6px); z-index: 4; }
.ba__label--before { left: 20px; }
.ba__label--after { right: 20px; background: var(--accent); }
.ba__handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; z-index: 5; transform: translateX(-50%); box-shadow: 0 0 0 1px rgba(0,0,0,.08); }
.ba__grip { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 50px; height: 50px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-md); display: flex; align-items: center; justify-content: center; gap: 4px; }
.ba__grip i { width: 0; height: 0; border-top: 5px solid transparent; border-bottom: 5px solid transparent; }
.ba__grip .l { border-right: 7px solid var(--ink); }
.ba__grip .r { border-left: 7px solid var(--ink); }

.proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 36px; }
.proj { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.proj:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.proj__media { aspect-ratio: 4/3; position: relative; overflow: hidden; }
.proj__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.proj:hover .proj__media img { transform: scale(1.05); }
.proj__loc { position: absolute; top: 14px; left: 14px; z-index: 2; font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; background: rgba(255,255,255,.92); color: var(--ink); padding: 6px 11px; border-radius: 999px; }
.proj__body { padding: 24px 24px 26px; }
.proj__title { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; }
.proj__scope { font-size: 14px; color: var(--ink-500); margin-top: 8px; line-height: 1.5; }
.proj__meta { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line); font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em; color: var(--ink-500); }
.proj__meta b { color: var(--accent-deep); }

/* ============================================================
   PROCES
   ============================================================ */
.proc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 56px; background: rgba(255,255,255,.12); border-radius: var(--r-md); overflow: hidden; }
.proc { background: var(--ink); padding: 40px 32px 44px; position: relative; }
.proc__no { font-family: var(--font-display); font-weight: 700; font-size: 3.4rem; line-height: 1; color: rgba(255,255,255,.14); letter-spacing: -.02em; }
.proc.in .proc__no { color: var(--accent-soft); transition: color .6s var(--ease) .15s; }
.proc__title { font-family: var(--font-display); font-weight: 600; font-size: 1.32rem; margin-top: 18px; color: #fff; }
.proc__desc { font-size: 14.5px; color: var(--on-dark-dim); margin-top: 12px; line-height: 1.55; }
.proc__tick { position: absolute; top: 46px; right: 30px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; color: var(--accent-soft); }

/* ============================================================
   OPINIE
   ============================================================ */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
.tst { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); padding: 34px 32px 30px; display: flex; flex-direction: column; }
.tst__stars { color: var(--accent); font-size: 17px; letter-spacing: 3px; }
.tst__quote { font-family: var(--font-display); font-weight: 500; font-size: 1.18rem; line-height: 1.42; letter-spacing: -.01em; margin-top: 20px; color: var(--ink); }
.tst__person { display: flex; align-items: center; gap: 14px; margin-top: auto; padding-top: 26px; }
.avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; flex: none; }
.avatar.a2 { background: var(--accent-deep); }
.avatar.a3 { background: var(--ink-500); }
.tst__name { display: block; font-weight: 700; font-size: 15px; }
.tst__role { display: block; font-size: 13px; color: var(--ink-500); font-family: var(--font-mono); letter-spacing: .03em; margin-top: 2px; }

/* ============================================================
   CTA BAND
   ============================================================ */
.ctaband { position: relative; overflow: hidden; }
.ctaband__bg { position: absolute; inset: 0; z-index: 0; }
.ctaband__bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ctaband__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(20,26,36,.95) 30%, rgba(20,26,36,.74) 100%); }
.ctaband__inner { position: relative; z-index: 2; text-align: center; max-width: 740px; margin-inline: auto; }
.ctaband h2 { font-size: clamp(2.1rem, 5vw, 3.6rem); color: #fff; text-wrap: balance; }
.ctaband p { font-size: clamp(1.05rem, 1.8vw, 1.32rem); color: rgba(255,255,255,.85); margin-top: 22px; }
.ctaband__btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 38px; }
.ctaband__note { font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-soft); margin-top: 26px; }

/* ============================================================
   KONTAKT
   ============================================================ */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.form { display: grid; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label { font-family: var(--font-mono); font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-500); }
.field input, .field textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--paper); font-size: 16px; transition: border-color .25s, box-shadow .25s; resize: vertical;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-tint); }
.field input[aria-invalid="true"] { border-color: #c0392b; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form__submit { margin-top: 6px; }
.form__msg { font-size: 14px; font-weight: 600; min-height: 1.4em; }
.form__msg.success { color: var(--accent-deep); }
.form__msg.error { color: #c0392b; }
.form__hint { font-size: 12.5px; color: var(--ink-400); font-family: var(--font-mono); }

/* Honeypot */
.field-hp { display: none; }

.contact__info { display: flex; flex-direction: column; gap: 4px; }
.cinfo-row { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.cinfo-row:first-child { padding-top: 0; }
.cinfo-row .mk { width: 10px; height: 10px; background: var(--accent); transform: rotate(45deg); margin-top: 7px; flex: none; }
.cinfo-row .k { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-400); }
.cinfo-row .v { font-size: 17px; font-weight: 600; margin-top: 3px; }
.cinfo-row .v a:hover { color: var(--accent); }
.cinfo-row .v.small { font-size: 15px; font-weight: 500; }
.map { position: relative; margin-top: 26px; border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--line); height: 260px; }
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 1; filter: grayscale(.35) contrast(1.02); }
.map__ph {
  position: absolute; inset: 0; z-index: 0; background: var(--paper-2);
  background-image:
    linear-gradient(rgba(31,41,55,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,41,55,.05) 1px, transparent 1px),
    linear-gradient(120deg, var(--accent-tint), transparent 60%);
  background-size: 34px 34px, 34px 34px, 100% 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
}
.map__pin { width: 20px; height: 20px; border-radius: 50% 50% 50% 0; background: var(--accent); transform: rotate(-45deg); box-shadow: 0 6px 14px -4px var(--accent); position: relative; }
.map__pin::after { content: ""; position: absolute; inset: 6px; background: #fff; border-radius: 50%; }
.map__addr { font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; color: var(--ink-500); text-transform: uppercase; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink-900); color: var(--on-dark); padding-block: clamp(56px, 7vw, 84px) 30px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer .brand { color: #fff; font-size: 28px; }
.footer__about { font-size: 14.5px; color: var(--on-dark-dim); margin-top: 18px; max-width: 34ch; line-height: 1.6; }
.footer__socials { display: flex; gap: 10px; margin-top: 22px; }
.footer__socials a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: .04em; transition: .25s; }
.footer__socials a:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-2px); }
.footer__col h4 { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-soft); font-weight: 700; }
.footer__col ul { list-style: none; padding: 0; margin-top: 18px; display: grid; gap: 11px; }
.footer__col a, .footer__col li { font-size: 14.5px; color: var(--on-dark-dim); transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 54px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; color: var(--ink-400); }
.footer__bottom .legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__bottom a:hover { color: var(--on-dark-dim); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .scroll-hint i { animation: none; }
}

/* floating phone (mobile) */
.fab { position: fixed; right: 18px; bottom: 18px; z-index: 90; display: none; width: 58px; height: 58px; border-radius: 50%; background: var(--accent); color: #fff; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); animation: fabPulse 2.6s infinite; }
.fab svg { width: 24px; height: 24px; }
@keyframes fabPulse {
  0%,100% { box-shadow: var(--shadow-lg), 0 0 0 0 rgba(192,136,59,.5); }
  50% { box-shadow: var(--shadow-lg), 0 0 0 14px rgba(192,136,59,0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .proc-grid { grid-template-columns: repeat(2, 1fr); }
  .proj-grid { grid-template-columns: repeat(2, 1fr); }
  .tst-grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 1080px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
}
@media (max-width: 880px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 480px; }
  .about__badge { left: auto; right: -10px; }
  .contact__grid { grid-template-columns: 1fr; }
  .fab { display: flex; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .svc-grid, .proj-grid, .proc-grid { grid-template-columns: 1fr; }
  .feat-list { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: 1fr 1fr; gap: 26px 30px; }
  .footer__top { grid-template-columns: 1fr; }
  .about__badge { position: static; margin-top: 16px; max-width: none; }
  .hero__cta .btn, .ctaband__btns .btn { flex: 1 1 auto; }
  .brand small { display: none; }
}
