@charset "UTF-8";
/* ==========================================================================
   Mobilny Mechanik — design system
   Direction: night shift. Asphalt ground, one hazard-amber accent, a
   condensed industrial display face. The phone number is the hero.
   Everything is built to be read at 3 a.m. on a phone, in the rain.
   ========================================================================== */

:root {
  --bg:      #0E0F11;   /* asphalt */
  --bg-2:    #15171A;   /* raised panel */
  --bg-3:    #1C1F23;   /* card */
  --line:    #2A2E33;   /* hairline */
  --line-2:  #3A3F46;
  --text:    #F2EFE8;   /* warm white */
  --text-2:  #B8B4AB;   /* secondary */
  --muted:   #7E7A72;
  --amber:   #FFB020;   /* hazard light */
  --amber-2: #FFC85C;
  --amber-d: #B77800;
  --amber-g: rgba(255, 176, 32, 0.18);
  --ok:      #62D48A;

  --display: "Big Shoulders Display", "Archivo Narrow", "Arial Narrow", Impact, sans-serif;
  --body:    "Archivo", "Helvetica Neue", Arial, sans-serif;

  --t-h1:  clamp(3rem, 1.6rem + 6.2vw, 7rem);
  --t-h2:  clamp(2.2rem, 1.3rem + 3.2vw, 4.2rem);
  --t-h3:  clamp(1.25rem, 1.05rem + 0.7vw, 1.6rem);
  --t-lead: clamp(1.05rem, 0.98rem + 0.35vw, 1.22rem);

  --gutter: clamp(1.15rem, 4.5vw, 4rem);
  --maxw: 1280px;
  --r: 4px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* --------------------------------------------------------------------------
   reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; background: var(--bg); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: var(--body); font-size: 1.04rem; line-height: 1.6;
  font-variation-settings: "wdth" 96;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; }
h1, h2, h3, h4, p, figure, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
::selection { background: var(--amber); color: #0E0F11; }
:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }

.skip { position: absolute; left: 0; top: 0; z-index: 200; padding: .75rem 1.2rem; background: var(--amber); color: #0E0F11; font-weight: 700; transform: translateY(-120%); }
.skip:focus { transform: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* --------------------------------------------------------------------------
   type
   -------------------------------------------------------------------------- */
.h1, .h2, .h3 { font-family: var(--display); text-transform: uppercase; letter-spacing: .005em; }
.h1 { font-size: var(--t-h1); font-weight: 800; line-height: .92; }
.h1 em { font-style: normal; color: var(--amber); }
.h2 { font-size: var(--t-h2); font-weight: 700; line-height: .95; max-width: 16ch; margin-top: .8rem; }
.h3 { font-size: var(--t-h3); font-weight: 700; line-height: 1.05; }
.kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .74rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--amber);
}
.kicker::before {
  content: ""; width: 26px; height: 8px;
  background: repeating-linear-gradient(135deg, var(--amber) 0 5px, transparent 5px 10px);
}
.lead { font-size: var(--t-lead); line-height: 1.55; color: var(--text-2); margin-top: 1.1rem; max-width: 52ch; }
.muted { color: var(--muted); }
.small { font-size: .92rem; }

/* --------------------------------------------------------------------------
   layout
   -------------------------------------------------------------------------- */
[id] { scroll-margin-top: 84px; }
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.sec { padding-block: clamp(4rem, 8vw, 7.5rem); }
.sec-panel { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.head { max-width: 58rem; margin-bottom: clamp(2.2rem, 4.5vw, 3.75rem); }

/* --------------------------------------------------------------------------
   buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .6em; white-space: nowrap;
  padding: .85em 1.35em; border-radius: var(--r);
  font-family: var(--display); font-size: 1.15rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  text-decoration: none; border: 1.5px solid transparent;
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn-amber { background: var(--amber); color: #0E0F11; box-shadow: 0 0 0 0 var(--amber-g); }
.btn-amber:hover { background: var(--amber-2); transform: translateY(-1px); box-shadow: 0 10px 30px rgba(255, 176, 32, .28); }
.btn-line { border-color: var(--line-2); color: var(--text); }
.btn-line:hover { border-color: var(--text); }
.btn-xl { font-size: 1.5rem; padding: .8em 1.4em; }
.btn:active { transform: translateY(1px); }

/* --------------------------------------------------------------------------
   header
   -------------------------------------------------------------------------- */
.hdr {
  position: sticky; top: 0; z-index: 60;
  background: rgba(14, 15, 17, .82); backdrop-filter: blur(12px) saturate(130%);
  border-bottom: 1px solid var(--line);
}
.hdr-in { display: flex; align-items: center; gap: 1.5rem; min-height: 72px; }
.logo { display: flex; align-items: center; gap: .7rem; text-decoration: none; margin-right: auto; color: var(--amber); }
.logo svg { width: 34px; height: 34px; flex: none; }
.logo b { display: block; font-family: var(--display); font-size: 1.35rem; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; color: var(--text); line-height: 1; }
.logo small { display: block; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: .25rem; }

.nav { display: flex; gap: .2rem; }
.nav a { padding: .5rem .8rem; font-size: .95rem; font-weight: 600; color: var(--text-2); text-decoration: none; border-radius: var(--r); transition: color .15s, background-color .15s; }
.nav a:hover { color: var(--text); background: var(--bg-3); }

.burger { display: none; width: 44px; height: 44px; padding: 0; background: none; border: 1px solid var(--line-2); border-radius: var(--r); cursor: pointer; }
.burger svg { width: 20px; height: 20px; margin-inline: auto; }
.drawer { display: none; background: var(--bg-2); border-bottom: 1px solid var(--line); }
.drawer[data-open="true"] { display: block; }
.drawer a { display: block; padding: 1rem var(--gutter); font-family: var(--display); font-size: 1.4rem; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; text-decoration: none; border-top: 1px solid var(--line); }
.drawer a:last-child { color: var(--amber); }

@media (max-width: 1000px) { .nav { display: none; } .burger { display: block; } }
@media (max-width: 560px) { .hdr .btn { display: none; } .logo small { display: none; } }

/* --------------------------------------------------------------------------
   hero — the headlight, the phone number
   -------------------------------------------------------------------------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: min(92svh, 900px);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-top: clamp(4rem, 10vw, 8rem);
}
.hero-img { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; object-position: 62% 40%; filter: saturate(.85) contrast(1.05); }
.hero-shade {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right, rgba(14,15,17,.96) 0%, rgba(14,15,17,.86) 38%, rgba(14,15,17,.35) 70%, rgba(14,15,17,.15) 100%),
    linear-gradient(to top, rgba(14,15,17,1) 0%, rgba(14,15,17,.2) 45%, rgba(14,15,17,0) 100%);
}
.hero-in { position: relative; z-index: 2; padding-bottom: clamp(2.5rem, 6vw, 5rem); }
.status {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .45rem .9rem .45rem .7rem; border: 1px solid rgba(98, 212, 138, .35); border-radius: 999px;
  font-size: .82rem; font-weight: 600; letter-spacing: .04em; color: var(--ok); background: rgba(98, 212, 138, .08);
}
.status i { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 0 rgba(98,212,138,.6); animation: ping 2.2s ease-out infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(98,212,138,.55); } 70% { box-shadow: 0 0 0 10px rgba(98,212,138,0); } 100% { box-shadow: 0 0 0 0 rgba(98,212,138,0); } }
.hero .h1 { margin-top: 1.4rem; max-width: 12ch; }
.hero .lead { max-width: 46ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero-note { margin-top: 1.1rem; font-size: .92rem; color: var(--muted); }
.hero-note a { color: var(--text-2); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--line-2); }

.hero-facts {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  background: rgba(14,15,17,.6); backdrop-filter: blur(8px);
}
.hero-facts li { padding: 1.3rem var(--gutter); border-right: 1px solid var(--line); display: grid; gap: .15rem; }
.hero-facts li:last-child { border-right: 0; }
.hero-facts b { font-family: var(--display); font-size: clamp(2rem, 3.2vw, 2.8rem); font-weight: 800; line-height: 1; color: var(--amber); letter-spacing: .01em; }
.hero-facts b small { font-size: .45em; font-weight: 700; margin-left: .15em; color: var(--amber-2); }
.hero-facts span { font-size: .86rem; color: var(--text-2); }
@media (max-width: 900px) {
  .hero-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-facts li:nth-child(2) { border-right: 0; }
  .hero-facts li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .hero-img { object-position: 70% 30%; }
}
@media (max-width: 520px) {
  .hero .btn-xl { font-size: 1.25rem; width: 100%; justify-content: center; }
}

/* the headlight settles in */
@media (prefers-reduced-motion: no-preference) {
  .js .hero-img { animation: settle 2.6s var(--ease) both; }
  @keyframes settle { from { transform: scale(1.06); opacity: .6; } to { transform: scale(1); opacity: 1; } }
}

/* --------------------------------------------------------------------------
   services — a numbered work order
   -------------------------------------------------------------------------- */
.svc { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line-2); }
.svc li {
  display: grid; grid-template-columns: 3.4rem minmax(0, 1fr) auto; gap: .3rem 1.2rem; align-items: start;
  padding: 1.6rem 1.4rem 1.6rem 0; border-bottom: 1px solid var(--line);
  transition: background-color .25s var(--ease);
}
.svc li:nth-child(odd) { padding-right: 2.5rem; border-right: 1px solid var(--line); }
.svc li:nth-child(even) { padding-left: 2.5rem; }
.svc li:hover { background: var(--bg-2); }
.svc-n { font-family: var(--display); font-size: 2.1rem; font-weight: 700; color: var(--amber); line-height: 1; letter-spacing: .02em; }
.svc p { color: var(--text-2); font-size: .98rem; margin-top: .35rem; max-width: 40ch; }
.svc-tag { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--line-2); padding: .3rem .55rem; border-radius: 999px; white-space: nowrap; margin-top: .25rem; }
@media (max-width: 800px) {
  .svc { grid-template-columns: minmax(0, 1fr); }
  .svc li, .svc li:nth-child(odd), .svc li:nth-child(even) { padding: 1.3rem 0; border-right: 0; }
  .svc li { grid-template-columns: 3rem minmax(0, 1fr); }
  .svc-tag { grid-column: 2; justify-self: start; }
}

/* --------------------------------------------------------------------------
   coverage
   -------------------------------------------------------------------------- */
.cover { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.dist { margin-top: 1.8rem; max-width: 28rem; border-top: 1px solid var(--line-2); }
.dist li { display: flex; align-items: baseline; gap: .8rem; padding: .8rem 0; border-bottom: 1px solid var(--line); }
.dist i { flex: 1; border-bottom: 1px dotted var(--line-2); transform: translateY(-.3em); }
.dist b { font-family: var(--display); font-size: 1.35rem; font-weight: 700; color: var(--amber); letter-spacing: .02em; }
.cover .muted { margin-top: 1.1rem; max-width: 44ch; }

.mapfig { justify-self: end; width: min(100%, 520px); }
.map { width: 100%; height: auto; }
.map-river { fill: none; stroke: #2E3A48; stroke-width: 9; stroke-linecap: round; }
.map-ring { fill: none; stroke: var(--line-2); stroke-width: 1; stroke-dasharray: 3 5; }
.map-ring-o { stroke: var(--amber-d); stroke-dasharray: none; stroke-width: 1.2; opacity: .8; }
.map-lbl { font: 700 10px var(--body); letter-spacing: .1em; fill: var(--muted); }
.map-town { font: 600 11.5px var(--body); fill: var(--text-2); }
.map-town-b { fill: var(--amber); font-weight: 700; }
.map-dot { fill: var(--text); }
.map-base { fill: var(--amber); }
.map-pulse { fill: none; stroke: var(--amber); stroke-width: 2; transform-origin: 230px 220px; animation: mappulse 2.4s ease-out infinite; }
@keyframes mappulse { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(4); opacity: 0; } }
.mapfig figcaption { margin-top: .8rem; font-size: .86rem; color: var(--muted); text-align: right; }
@media (max-width: 860px) { .cover { grid-template-columns: minmax(0, 1fr); } .mapfig { justify-self: start; } .mapfig figcaption { text-align: left; } }

/* --------------------------------------------------------------------------
   process — a timeline with times
   -------------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--line-2); }
.steps li { position: relative; padding: 1.75rem 1.75rem 1.75rem 0; }
.steps li + li { padding-left: 1.75rem; border-left: 1px solid var(--line); }
.steps li::before { content: ""; position: absolute; top: -1px; left: 0; width: 3rem; height: 3px; background: var(--amber); }
.steps li + li::before { left: 1.75rem; }
.step-t { display: block; font-family: var(--display); font-size: 2.2rem; font-weight: 800; color: var(--amber); letter-spacing: .02em; line-height: 1; margin-bottom: 1rem; }
.steps p { color: var(--text-2); font-size: .98rem; margin-top: .6rem; }
@media (max-width: 800px) {
  .steps { grid-template-columns: minmax(0, 1fr); }
  .steps li, .steps li + li { padding: 1.5rem 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .steps li + li::before { left: 0; }
}

/* --------------------------------------------------------------------------
   pricing — a ledger
   -------------------------------------------------------------------------- */
.price-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.price-intro { position: sticky; top: 96px; }
.price-intro .muted { margin-top: 1rem; max-width: 40ch; }
.price-intro .btn { margin-top: 1.75rem; }
.ledger { background: var(--bg); border: 1px solid var(--line-2); border-radius: var(--r); overflow: hidden; }
.ledger-hd, .ledger-row, .ledger-ft { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: .95rem 1.25rem; }
.ledger-hd { font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid var(--line-2); background: var(--bg-2); }
.ledger-row { border-bottom: 1px solid var(--line); transition: background-color .2s; }
.ledger-row:hover { background: var(--bg-2); }
.ledger-row b, .ledger-ft b { font-family: var(--display); font-size: 1.5rem; font-weight: 700; letter-spacing: .02em; color: var(--text); font-variant-numeric: tabular-nums; }
.ledger-ft { background: var(--amber); color: #0E0F11; font-weight: 700; }
.ledger-ft b { color: #0E0F11; }
@media (max-width: 860px) { .price-grid { grid-template-columns: minmax(0, 1fr); } }

/* --------------------------------------------------------------------------
   reviews
   -------------------------------------------------------------------------- */
.rev { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.rev-big { display: grid; gap: .5rem; }
.rev-big b { font-family: var(--display); font-size: clamp(6rem, 14vw, 12rem); font-weight: 800; line-height: .85; color: var(--amber); letter-spacing: -.01em; }
.rev-big span { color: var(--text-2); font-size: 1rem; line-height: 1.5; }
.rev-big em { font-style: normal; font-weight: 700; color: var(--ok); }
@media (max-width: 760px) { .rev { grid-template-columns: minmax(0, 1fr); } }

/* --------------------------------------------------------------------------
   contact
   -------------------------------------------------------------------------- */
.sec-contact { background: var(--bg-2); border-top: 1px solid var(--line); }
.chans { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.chan { display: grid; gap: .3rem; padding: 1.5rem 1.4rem 1.6rem; background: var(--bg-2); text-decoration: none; transition: background-color .2s var(--ease); }
.chan:hover { background: var(--bg-3); }
.chan span { font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.chan b { font-family: var(--display); font-size: 2rem; font-weight: 800; letter-spacing: .02em; line-height: 1; margin-top: .3rem; word-break: break-word; }
.chan b.sm { font-size: 1.15rem; font-family: var(--body); font-weight: 600; letter-spacing: 0; }
.chan em { font-style: normal; font-size: .9rem; color: var(--text-2); }
.chan-main { background: var(--amber); color: #0E0F11; }
.chan-main:hover { background: var(--amber-2); }
.chan-main span, .chan-main em { color: rgba(14,15,17,.7); }
.chan-main b { font-size: 2.4rem; }
@media (max-width: 860px) { .chans { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .chans { grid-template-columns: minmax(0, 1fr); } }

/* --------------------------------------------------------------------------
   footer + sticky call bar
   -------------------------------------------------------------------------- */
.foot { border-top: 1px solid var(--line); padding-block: clamp(3rem, 6vw, 5rem) 6rem; color: var(--text-2); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
.foot h4 { font-family: var(--display); font-size: 1.2rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--text); margin-bottom: .9rem; }
.foot p { font-size: .95rem; max-width: 34ch; }
.foot li + li { margin-top: .5rem; }
.foot a { text-decoration: none; font-size: .95rem; }
.foot a:hover { color: var(--amber); }
.foot-bar { display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; justify-content: space-between; margin-top: 3rem; padding-top: 1.25rem; border-top: 1px solid var(--line); font-size: .82rem; color: var(--muted); }
@media (max-width: 860px) { .foot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px) { .foot-grid { grid-template-columns: minmax(0, 1fr); } }

.callbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; padding: .7rem var(--gutter) calc(.7rem + env(safe-area-inset-bottom)); background: rgba(14,15,17,.9); backdrop-filter: blur(10px); border-top: 1px solid var(--line); display: none; }
.callbar .btn { width: 100%; justify-content: center; }
@media (max-width: 760px) { .callbar { display: block; } }
@media (min-width: 761px) { .foot { padding-bottom: 2rem; } }

/* --------------------------------------------------------------------------
   entrance
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  .js .rise > * { opacity: 0; transform: translateY(16px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: calc(var(--i, 0) * 90ms); }
  .js .rise.on > * { opacity: 1; transform: none; }
}
