/* =========================================================================
   StoneBase Paving & Landscaping — stylesheet
   Art direction: calm, gallery-clean surfaces (Apple-inspired restraint) with
   the StoneBase brand kept intact — disciplined crimson accent, charcoal ink,
   a whisper of warm stone. Type: Archivo (display) / Hanken Grotesk (body).
   Generous whitespace, hairline structure, soft light, quiet motion.
   ========================================================================= */

/* ---------------------------------------------------------------- tokens */
:root {
  /* brand */
  --brand: #d81e1e;
  --brand-600: #c11a1a;
  --brand-700: #a11414;
  --brand-tint: rgba(216, 30, 30, 0.08);

  /* ink / charcoal (brand dark) */
  --ink: #131417;
  --ink-2: #1b1d21;
  --ink-3: #26282d;

  /* neutrals — near-white with a faint warm-stone cast */
  --paper: #ffffff;
  --surface: #f6f5f2;      /* light section band */
  --surface-2: #efede8;    /* insets, chips */
  --surface-3: #e7e4dd;

  /* text */
  --text: #1a1b1e;
  --muted: #6a6a70;
  --muted-2: #8d8d93;
  --on-ink: #f5f4f1;
  --on-ink-muted: #a6a5a1;

  /* lines — hairlines */
  --line: rgba(20, 20, 24, 0.08);
  --line-strong: rgba(20, 20, 24, 0.14);
  --line-ink: rgba(255, 255, 255, 0.11);

  /* soft, low light */
  --shadow-sm: 0 1px 2px rgba(20, 20, 24, 0.05);
  --shadow-md: 0 14px 40px -20px rgba(20, 20, 24, 0.22);
  --shadow-lg: 0 34px 70px -30px rgba(20, 20, 24, 0.30);

  --font-display: "Archivo", system-ui, -apple-system, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  --container: 1180px;
  --container-wide: 1320px;
  --gutter: clamp(1.25rem, 4vw, 2.75rem);
  --radius: 12px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --header-h: 66px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --section-pad: clamp(4.5rem, 10vw, 9rem);
}

/* ---------------------------------------------------------------- reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.62;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.028em;
}
ul { list-style: none; padding: 0; }

::selection { background: var(--brand); color: #fff; }

.skip-link {
  position: fixed; top: -60px; left: 12px; z-index: 2000;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px;
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; }
:focus-visible { outline: 2.5px solid var(--brand); outline-offset: 3px; border-radius: 4px; }

/* ---------------------------------------------------------------- layout */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: var(--section-pad) 0; position: relative; }
.section--stone { background: var(--surface); }
.section--ink { background: var(--ink); color: var(--on-ink); }
.section--ink h2 { color: #fff; }

.text-brand { color: var(--brand); }
.link { color: var(--brand); font-weight: 600; text-decoration: none; box-shadow: inset 0 -1px 0 rgba(216,30,30,0.4); transition: box-shadow 0.2s; }
.link:hover { box-shadow: inset 0 -2px 0 var(--brand); }

/* eyebrow — quiet, uppercase kicker */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-display); font-weight: 700; font-size: 0.74rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--brand);
  margin-bottom: 1.15rem;
}
.eyebrow__rule { width: 22px; height: 2px; background: var(--brand); display: inline-block; border-radius: 2px; }
.eyebrow--light { color: rgba(255, 255, 255, 0.92); }
.eyebrow--light .eyebrow__rule { background: var(--brand); }

/* section heads */
.section-head { max-width: 760px; margin-bottom: clamp(2.75rem, 5vw, 4.25rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head h2, .section h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
.section-head__lead { margin-top: 1.15rem; color: var(--muted); font-size: 1.15rem; max-width: 62ch; }
.section--center .section-head__lead, .section-head--center .section-head__lead { margin-inline: auto; }
.section--ink .section-head__lead { color: var(--on-ink-muted); }
.lead { font-size: 1.18rem; color: var(--muted); line-height: 1.6; }
.section--ink .lead { color: var(--on-ink-muted); }

/* ---------------------------------------------------------------- buttons */
.btn {
  --btn-bg: var(--ink); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--btn-bg); color: var(--btn-fg);
  font-family: var(--font-display); font-weight: 700; font-size: 0.94rem;
  letter-spacing: 0.005em;
  padding: 0.82rem 1.55rem; border-radius: var(--radius-pill);
  transition: transform 0.3s var(--ease), background 0.25s, box-shadow 0.3s, color 0.25s, border-color 0.25s;
  position: relative; white-space: nowrap;
}
.btn .icon { width: 1.1em; height: 1.1em; transition: transform 0.3s var(--ease); }
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:hover .icon { transform: translateX(2px); }
.btn:active { transform: translateY(0); }
.btn--primary { --btn-bg: var(--brand); --btn-fg: #fff; }
.btn--primary:hover { background: var(--brand-600); }
.btn--dark { --btn-bg: var(--ink); --btn-fg: #fff; }
.btn--dark:hover { background: var(--ink-3); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); border: 1.5px solid var(--line-strong); }
.btn--ghost:hover { --btn-bg: var(--ink); --btn-fg: #fff; border-color: var(--ink); box-shadow: none; }
.btn--glass {
  --btn-bg: rgba(255, 255, 255, 0.10); --btn-fg: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.30); backdrop-filter: blur(8px);
}
.btn--glass:hover { --btn-bg: #fff; --btn-fg: var(--ink); border-color: #fff; }
.btn--lg { padding: 1rem 2rem; font-size: 1rem; }
.btn--sm { padding: 0.58rem 1.15rem; font-size: 0.86rem; }
.btn--block { width: 100%; }
.btn .icon path { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.has-icon .icon path { stroke-width: 1.8; }
.has-icon:hover .icon { transform: none; }

/* svg icon defaults */
.icon { width: 1.2rem; height: 1.2rem; }

/* ---------------------------------------------------------------- preloader (removed visual; kept safe if present) */
.preloader { display: none !important; }

/* ---------------------------------------------------------------- header */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 900; height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: height 0.35s var(--ease), background 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; max-width: var(--container-wide); margin-inline: auto; padding-inline: var(--gutter); }
.site-header.is-scrolled {
  height: 58px;
  background: rgba(255, 255, 255, 0.82);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(20,20,24,0.03), 0 10px 30px -24px rgba(20,20,24,0.4);
}

.brand { display: inline-flex; align-items: center; gap: 0.65rem; }
/* The logo PNG has a baked-in dark background, so we round it into a tidy
   dark "chip" — deliberate on the light header, and invisibly blended on the
   dark footer. */
.brand__mark { width: 40px; height: auto; border-radius: 8px; }
.site-header .brand__mark { box-shadow: 0 1px 3px rgba(20,20,24,0.18); }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__text strong { font-family: var(--font-display); font-weight: 800; font-size: 1.02rem; color: var(--ink); letter-spacing: -0.02em; }
.brand__text em { font-style: normal; font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); font-weight: 700; margin-top: 1px; }

.nav { display: flex; align-items: center; gap: 0.35rem; }
.nav a { font-size: 0.9rem; font-weight: 600; color: var(--muted); position: relative; padding: 0.45rem 0.75rem; border-radius: var(--radius-pill); transition: color 0.2s, background 0.2s; }
.nav a:hover { color: var(--ink); background: var(--surface-2); }
.nav a.is-active { color: var(--brand); }

.site-header__actions { display: flex; align-items: center; gap: 0.6rem; }
.site-header .btn--ghost { --btn-fg: var(--ink); border-color: var(--line-strong); }
.site-header .btn--ghost .icon path { stroke: currentColor; }
.site-header .btn--ghost:hover { --btn-bg: var(--ink); --btn-fg: #fff; border-color: var(--ink); }

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

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 899; background: var(--ink);
  display: flex; flex-direction: column; justify-content: center; gap: 2rem;
  padding: 6rem var(--gutter) 3rem;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu__nav { display: flex; flex-direction: column; gap: 0.1rem; }
.mobile-menu__nav a { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.55rem, 7vw, 2.1rem); color: #fff; padding: 0.4rem 0; border-bottom: 1px solid var(--line-ink); transition: color 0.2s, padding-left 0.3s var(--ease); }
.mobile-menu__nav a:hover { color: var(--brand); padding-left: 0.5rem; }
.mobile-menu__cta { display: grid; gap: 0.7rem; }

/* ---------------------------------------------------------------- hero */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-top: var(--header-h); overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { position: absolute; inset: 0; width: 100%; height: 112%; object-fit: cover; will-change: transform; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 16, 18, 0.35) 0%, rgba(15, 16, 18, 0.10) 40%, rgba(15, 16, 18, 0.68) 100%),
    linear-gradient(90deg, rgba(15, 16, 18, 0.72) 0%, rgba(15, 16, 18, 0.28) 55%, rgba(15, 16, 18, 0.04) 100%);
}
.hero__grid { display: none; }
.hero__inner { position: relative; z-index: 2; color: #fff; max-width: 820px; padding-block: 4rem; }
.hero .eyebrow { color: #fff; }
.hero .eyebrow__rule { background: var(--brand); }
.hero__title { font-size: clamp(2.9rem, 8.2vw, 5.9rem); font-weight: 900; letter-spacing: -0.04em; line-height: 1.02; text-shadow: 0 2px 40px rgba(0, 0, 0, 0.28); }
.hero__lead { margin-top: 1.5rem; font-size: clamp(1.08rem, 2vw, 1.35rem); max-width: 50ch; color: rgba(255, 255, 255, 0.92); font-weight: 400; }
.hero__actions { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 0.85rem; }
.hero__trust { margin-top: 3rem; display: flex; flex-wrap: wrap; gap: 0.7rem 1.8rem; }
.hero__trust li { display: inline-flex; align-items: center; gap: 0.55rem; font-size: 0.92rem; font-weight: 500; color: rgba(255, 255, 255, 0.94); }
.hero__trust .icon { width: 1.15rem; height: 1.15rem; color: #fff; }
.hero__trust .icon path { stroke: var(--brand); stroke-width: 3; fill: none; }

.hero__scroll { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 3; width: 26px; height: 42px; border: 1.5px solid rgba(255, 255, 255, 0.45); border-radius: 14px; display: grid; justify-items: center; padding-top: 8px; }
.hero__scroll-dot { width: 4px; height: 8px; border-radius: 3px; background: #fff; animation: scrolldot 1.7s var(--ease) infinite; }
@keyframes scrolldot { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(13px); opacity: 0; } 100% { opacity: 0; } }

/* ---------------------------------------------------------------- stats */
.stats { background: var(--paper); padding: clamp(3rem, 6vw, 4.5rem) 0; border-bottom: 1px solid var(--line); position: relative; z-index: 5; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.55rem; padding: 0.5rem 0.75rem; position: relative; }
.stat:not(:last-child)::after { content: ""; position: absolute; right: -0.75rem; top: 12%; height: 76%; width: 1px; background: var(--line); }
.stat__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.6rem, 5.2vw, 3.7rem); line-height: 1; color: var(--ink); letter-spacing: -0.03em; }
.stat__label { font-size: 0.9rem; color: var(--muted); line-height: 1.4; }
.stat__label small { color: var(--brand); font-weight: 600; }

/* ---------------------------------------------------------------- about */
.about__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center; }
.about__media { position: relative; }
.about__media-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 5; }
.about__media-main img { width: 100%; height: 100%; object-fit: cover; }
.about__media-sub { position: absolute; right: -7%; bottom: -9%; width: 46%; border-radius: calc(var(--radius-lg) - 6px); overflow: hidden; box-shadow: var(--shadow-lg); border: 6px solid var(--paper); aspect-ratio: 4 / 3; }
.about__media-sub img { width: 100%; height: 100%; object-fit: cover; }
.about__badge {
  position: absolute; left: -5%; top: 7%; background: var(--brand); color: #fff;
  border-radius: 14px; padding: 0.9rem 1.15rem; box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; line-height: 1; text-align: left;
}
.about__badge-num { font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; }
.about__badge-txt { font-size: 0.7rem; font-weight: 600; margin-top: 0.4rem; letter-spacing: 0.04em; }

.about__points { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem 1.6rem; margin: 2.25rem 0; }
.about__points li { display: flex; gap: 0.85rem; align-items: flex-start; }
.about__points .icon { width: 2.1rem; height: 2.1rem; flex: none; color: var(--brand); }
.about__points .icon path, .about__points .icon circle { fill: none; stroke: var(--brand); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.about__points strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1rem; margin-bottom: 0.15rem; }
.about__points span { font-size: 0.9rem; color: var(--muted); }

/* ---------------------------------------------------------------- services */
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.svc-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem 1.7rem; position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.svc-card__icon { width: 52px; height: 52px; border-radius: 14px; background: var(--surface); display: grid; place-items: center; margin-bottom: 1.4rem; transition: background 0.4s var(--ease); }
.svc-card__icon svg { width: 28px; height: 28px; }
.svc-card__icon svg path, .svc-card__icon svg rect, .svc-card__icon svg circle { fill: none; stroke: var(--ink); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.4s var(--ease); }
.svc-card:hover .svc-card__icon { background: var(--brand-tint); }
.svc-card:hover .svc-card__icon svg path, .svc-card:hover .svc-card__icon svg rect, .svc-card:hover .svc-card__icon svg circle { stroke: var(--brand); }
.svc-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.svc-card p { font-size: 0.94rem; color: var(--muted); }

/* ---------------------------------------------------------------- why (dark statement band) */
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.why-card { border: 1px solid var(--line-ink); border-radius: var(--radius-lg); padding: 2.1rem 1.7rem; background: rgba(255,255,255,0.02); transition: transform 0.4s var(--ease), border-color 0.4s, background 0.4s; }
.why-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); }
.why-card__no { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--brand); display: block; margin-bottom: 1rem; letter-spacing: 0.02em; }
.why-card h3 { color: #fff; font-size: 1.18rem; margin-bottom: 0.6rem; letter-spacing: -0.02em; }
.why-card p { color: var(--on-ink-muted); font-size: 0.94rem; }

/* ---------------------------------------------------------------- portfolio */
.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.25rem; }
.filter { font-family: var(--font-display); font-weight: 600; font-size: 0.88rem; padding: 0.5rem 1.15rem; border-radius: var(--radius-pill); border: 1.5px solid var(--line-strong); color: var(--muted); transition: all 0.25s; }
.filter:hover { border-color: var(--ink); color: var(--ink); }
.filter.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }

.masonry { columns: 3; column-gap: 1rem; }
.tile { break-inside: avoid; margin-bottom: 1rem; position: relative; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; box-shadow: var(--shadow-sm); transition: transform 0.5s var(--ease), box-shadow 0.5s, opacity 0.4s; }
.tile img { width: 100%; height: auto; transition: transform 0.7s var(--ease); }
.tile figcaption { position: absolute; inset: auto 0 0 0; padding: 1.5rem 1.2rem 1.1rem; display: flex; flex-direction: column; gap: 0.35rem; color: #fff; background: linear-gradient(0deg, rgba(15,16,18,0.82), transparent); transform: translateY(8px); opacity: 0; transition: transform 0.4s var(--ease), opacity 0.4s; }
.tile figcaption span:last-child { font-family: var(--font-display); font-weight: 700; font-size: 1rem; }
.tile__real { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; background: var(--brand); align-self: flex-start; padding: 0.2rem 0.55rem; border-radius: 5px; }
.tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.tile:hover img { transform: scale(1.05); }
.tile:hover figcaption { transform: none; opacity: 1; }
.tile::after { content: ""; position: absolute; top: 0.9rem; right: 0.9rem; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.92); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316171a' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M8 3H5a2 2 0 0 0-2 2v3M16 3h3a2 2 0 0 1 2 2v3M8 21H5a2 2 0 0 1-2-2v-3M16 21h3a2 2 0 0 0 2-2v-3'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: 18px; opacity: 0; transform: scale(0.8); transition: opacity 0.3s, transform 0.3s var(--ease); }
.tile:hover::after { opacity: 1; transform: none; }
.tile.is-hidden { display: none; }

/* ---------------------------------------------------------------- before/after */
.ba__stage { max-width: 980px; margin-inline: auto; }
.ba-slider { position: relative; width: 100%; aspect-ratio: 3 / 2; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); user-select: none; touch-action: pan-y; cursor: ew-resize; }
.ba-slider__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-slider__before { clip-path: inset(0 50% 0 0); will-change: clip-path; }
.ba-slider__tag { position: absolute; top: 1rem; font-family: var(--font-display); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.32rem 0.72rem; border-radius: var(--radius-pill); color: #fff; backdrop-filter: blur(4px); }
.ba-slider__tag--before { left: 1rem; background: rgba(22,23,26,0.68); }
.ba-slider__tag--after { right: 1rem; background: var(--brand); }
.ba-slider__handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: #fff; transform: translateX(-50%); box-shadow: 0 0 0 1px rgba(0,0,0,0.08); }
.ba-slider__handle svg { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 46px; height: 46px; background: #fff; border-radius: 50%; padding: 10px; box-shadow: var(--shadow-md); }
.ba-slider__handle svg path { fill: none; stroke: var(--ink); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ba__note { text-align: center; margin-top: 1.15rem; font-size: 0.88rem; color: var(--muted-2); }

/* ---------------------------------------------------------------- process */
.timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem; position: relative; }
.timeline::before { content: ""; position: absolute; top: 25px; left: 4%; right: 4%; height: 2px; background: repeating-linear-gradient(90deg, var(--line-strong) 0 7px, transparent 7px 15px); }
.timeline__step { position: relative; }
.timeline__no { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: var(--paper); border: 1.5px solid var(--ink); font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; margin-bottom: 1.2rem; position: relative; z-index: 1; transition: background 0.4s var(--ease), color 0.4s, border-color 0.4s; }
.timeline__step:hover .timeline__no { background: var(--brand); color: #fff; border-color: var(--brand); }
.timeline__step h3 { font-size: 1.05rem; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.timeline__step p { font-size: 0.92rem; color: var(--muted); }
.timeline__cta { display: none; }
@media (max-width: 1080px) {
  .timeline__cta {
    display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
    background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: 1.8rem;
  }
  .timeline__cta h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: #fff; margin-bottom: 0.5rem; }
  .timeline__cta p { color: var(--on-ink-muted); font-size: 0.9rem; margin-bottom: 1.15rem; }
}

/* ---------------------------------------------------------------- reviews (dark) */
.reviews__head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 3rem; }
.reviews__score { display: flex; flex-direction: column; gap: 0.45rem; align-items: flex-start; }
.reviews__stars, .review__stars { display: inline-flex; gap: 2px; }
.reviews__stars svg, .review__stars svg { width: 22px; height: 22px; }
.reviews__stars svg path, .review__stars svg path { fill: #f5b301; stroke: none; }
.reviews__score span { color: var(--on-ink-muted); font-size: 0.95rem; }
.reviews__score strong { color: #fff; }

.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; align-items: stretch; }
.review { background: rgba(255,255,255,0.03); border: 1px solid var(--line-ink); border-radius: var(--radius-lg); padding: 2rem; display: flex; flex-direction: column; gap: 1.1rem; transition: transform 0.4s var(--ease), border-color 0.4s, background 0.4s; }
.review:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.05); }
.review__stars svg { width: 18px; height: 18px; }
.review p { color: #fff; font-size: 1.08rem; line-height: 1.6; flex: 1; font-weight: 400; }
.review footer { display: flex; align-items: center; gap: 0.8rem; }
.review__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; }
.review footer strong { display: block; color: #fff; font-family: var(--font-display); }
.review footer em { font-style: normal; font-size: 0.85rem; color: var(--on-ink-muted); }
.review--cta { align-items: flex-start; justify-content: center; background: var(--brand-tint); border-color: rgba(216,30,30,0.32); }
.review__mark { width: 38px; height: 38px; }
.review__mark path { fill: none; stroke: var(--brand); stroke-width: 2; }
.review--cta p { flex: 0; color: var(--on-ink); font-size: 1.05rem; }

/* ---------------------------------------------------------------- areas */
.areas__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.areas__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem; }
.areas__list li { display: flex; align-items: center; gap: 0.6rem; padding: 0.95rem 1.05rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); font-family: var(--font-display); font-weight: 600; font-size: 0.94rem; transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s; }
.areas__list li::before { content: ""; width: 8px; height: 8px; border-radius: 2px; background: var(--brand); transform: rotate(45deg); flex: none; transition: transform 0.3s var(--ease); }
.areas__list li:hover { transform: translateX(3px); border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.areas__list li:hover::before { transform: rotate(135deg); }

/* ---------------------------------------------------------------- faq */
.faq__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start; }
.faq__head { position: sticky; top: 110px; }
.accordion { display: grid; gap: 0.65rem; }
.acc-item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color 0.3s, box-shadow 0.3s; }
.acc-item.is-open { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.acc-item__head { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.2rem 1.35rem; text-align: left; font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; letter-spacing: -0.01em; }
.acc-item__chev { width: 22px; height: 22px; flex: none; transition: transform 0.35s var(--ease); }
.acc-item__chev path { fill: none; stroke: var(--brand); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.acc-item.is-open .acc-item__chev { transform: rotate(180deg); }
.acc-item__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s var(--ease); }
.acc-item__body > p { overflow: hidden; padding: 0 1.35rem; color: var(--muted); font-size: 0.98rem; }
.acc-item.is-open .acc-item__body { grid-template-rows: 1fr; }
.acc-item.is-open .acc-item__body > p { padding-bottom: 1.3rem; }

/* ---------------------------------------------------------------- cta band (dark) */
.cta-band { position: relative; padding: clamp(4.5rem, 9vw, 7rem) 0; color: #fff; overflow: hidden; background: var(--ink); }
.cta-band__bg { position: absolute; inset: 0; background: radial-gradient(110% 130% at 82% 0%, rgba(216,30,30,0.20), transparent 52%); }
.cta-band__bg::after { display: none; }
.cta-band__inner { position: relative; text-align: center; max-width: 720px; margin-inline: auto; }
.cta-band h2 { font-size: clamp(2.1rem, 5vw, 3.4rem); color: #fff; letter-spacing: -0.03em; }
.cta-band p { margin-top: 1rem; color: var(--on-ink-muted); font-size: 1.18rem; }
.cta-band__actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; }

/* ---------------------------------------------------------------- contact */
.contact__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.contact__methods { display: grid; gap: 1.2rem; margin: 2.25rem 0; }
.contact__methods li { display: flex; align-items: center; gap: 1rem; }
.contact__ic { width: 48px; height: 48px; border-radius: 14px; background: var(--surface); border: 1px solid var(--line); display: grid; place-items: center; flex: none; }
.contact__ic .icon { width: 22px; height: 22px; }
.contact__ic .icon path, .contact__ic .icon rect, .contact__ic .icon circle { fill: none; stroke: var(--ink); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.contact__methods small { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-2); margin-bottom: 0.1rem; }
.contact__methods a, .contact__methods strong { font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; }
.contact__methods a:hover { color: var(--brand); }
.contact__trust { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.contact__trust span { font-size: 0.82rem; font-weight: 600; padding: 0.4rem 0.85rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-pill); color: var(--muted); }

.contact__form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow-md); }
/* honeypot — visually hidden, off-screen, ignored by real users */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.field { margin-bottom: 1.15rem; display: flex; flex-direction: column; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: 0.84rem; margin-bottom: 0.45rem; color: var(--text); }
.field input, .field textarea, .select-wrap select {
  width: 100%; padding: 0.85rem 1rem; border: 1.5px solid var(--line-strong); border-radius: var(--radius);
  background: var(--surface); transition: border-color 0.25s, box-shadow 0.25s, background 0.25s; font-size: 1rem;
}
.field input:focus, .field textarea:focus, .select-wrap select:focus { outline: none; border-color: var(--brand); background: var(--paper); box-shadow: 0 0 0 4px var(--brand-tint); }
.field textarea { resize: vertical; }
.select-wrap { position: relative; }
.select-wrap select { appearance: none; cursor: pointer; }
.select-wrap .icon { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; pointer-events: none; }
.select-wrap .icon path { fill: none; stroke: var(--muted); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.field.has-error input, .field.has-error textarea { border-color: var(--brand); background: var(--brand-tint); }
.field__error { display: none; color: var(--brand); font-size: 0.82rem; font-weight: 600; margin-top: 0.4rem; }
.field.has-error .field__error { display: block; }
.contact__form-note { font-size: 0.8rem; color: var(--muted-2); margin-top: 0.95rem; text-align: center; }
.form-success { display: flex; align-items: center; gap: 0.9rem; margin-top: 1.15rem; padding: 1rem 1.15rem; background: rgba(30,160,80,0.09); border: 1px solid rgba(30,160,80,0.32); border-radius: var(--radius); }
.form-success svg { width: 34px; height: 34px; flex: none; background: #1ea050; border-radius: 50%; padding: 7px; }
.form-success svg path { fill: none; stroke: #fff; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.form-success strong { display: block; font-family: var(--font-display); }
.form-success span { font-size: 0.88rem; color: var(--muted); }
.form-success.is-error { background: var(--brand-tint); border-color: rgba(216,30,30,0.36); }
.form-success.is-error svg { background: var(--brand); }

/* ---------------------------------------------------------------- footer */
.site-footer { background: var(--ink); color: var(--on-ink-muted); padding-top: clamp(3.5rem, 6vw, 5rem); }
.site-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3.5rem; }
.brand--footer { margin-bottom: 1.15rem; }
.brand--footer .brand__text strong { color: #fff; }
.brand--footer .brand__text em { color: var(--brand); }
.site-footer__brand p { font-size: 0.94rem; max-width: 40ch; margin-bottom: 1.3rem; }
.site-footer__badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.site-footer__badges span { font-size: 0.76rem; font-weight: 600; padding: 0.32rem 0.72rem; border: 1px solid var(--line-ink); border-radius: var(--radius-pill); color: var(--on-ink); }
.site-footer__col h4 { color: #fff; font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.2rem; }
.site-footer__col ul { display: grid; gap: 0.65rem; margin-bottom: 1.3rem; }
.site-footer__col a { font-size: 0.94rem; transition: color 0.2s; }
.site-footer__col a:hover { color: #fff; }
.site-footer__bar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; padding-block: 1.6rem; border-top: 1px solid var(--line-ink); font-size: 0.85rem; }
.site-footer__bar a { color: var(--on-ink); box-shadow: inset 0 -1px 0 rgba(255,255,255,0.25); }

/* ---------------------------------------------------------------- mobile bar + to-top */
.mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 850; display: none; grid-template-columns: 1fr 1.4fr; gap: 0; background: rgba(19,20,23,0.92); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border-top: 1px solid var(--line-ink); box-shadow: 0 -8px 24px -12px rgba(0,0,0,0.5); transform: translateY(100%); transition: transform 0.4s var(--ease); }
.mobile-bar.is-visible { transform: none; }
.mobile-bar a { display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 1rem; font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; }
.mobile-bar__call { color: #fff; border-right: 1px solid var(--line-ink); }
.mobile-bar__call .icon { width: 1.1rem; height: 1.1rem; }
.mobile-bar__call .icon path { fill: none; stroke: #fff; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.mobile-bar__quote { background: var(--brand); color: #fff; }

.to-top { position: fixed; right: 22px; bottom: 22px; z-index: 840; width: 44px; height: 44px; border-radius: 50%; background: rgba(19,20,23,0.9); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); box-shadow: var(--shadow-md); display: grid; place-items: center; opacity: 0; transform: translateY(14px) scale(0.9); pointer-events: none; transition: opacity 0.35s, transform 0.35s var(--ease), background 0.25s; }
.to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--brand); }
.to-top svg { width: 22px; height: 22px; }
.to-top svg path { fill: none; stroke: #fff; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------------------------------------------------------------- lightbox */
.lightbox { position: fixed; inset: 0; z-index: 2500; display: flex; align-items: center; justify-content: center; padding: clamp(1rem, 5vw, 3rem); background: rgba(12,12,14,0.94); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); opacity: 0; visibility: hidden; transition: opacity 0.35s; }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__figure { max-width: 1000px; max-height: 86vh; display: flex; flex-direction: column; gap: 0.75rem; }
.lightbox__figure img { max-height: 78vh; width: auto; border-radius: 12px; object-fit: contain; box-shadow: var(--shadow-lg); }
.lightbox__figure figcaption { text-align: center; color: #fff; font-family: var(--font-display); font-weight: 600; }
.lightbox__close { position: absolute; top: 18px; right: 22px; color: #fff; font-size: 2.4rem; line-height: 1; width: 44px; height: 44px; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.22); display: grid; place-items: center; transition: background 0.25s; }
.lightbox__nav:hover { background: var(--brand); border-color: var(--brand); }
.lightbox__nav svg { width: 26px; height: 26px; }
.lightbox__nav svg path { fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.lightbox__prev { left: 18px; }
.lightbox__next { right: 18px; }

/* ---------------------------------------------------------------- reveal anim */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-reveal-delay="1"] { transition-delay: 0.07s; }
.reveal[data-reveal-delay="2"] { transition-delay: 0.14s; }
.reveal[data-reveal-delay="3"] { transition-delay: 0.21s; }
.reveal[data-reveal-delay="4"] { transition-delay: 0.28s; }

/* ---------------------------------------------------------------- responsive */
@media (max-width: 1080px) {
  .services__grid, .why__grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
  .timeline::before { display: none; }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .review--cta { grid-column: 1 / -1; flex-direction: row; align-items: center; flex-wrap: wrap; }
  .masonry { columns: 2; }
}
@media (max-width: 900px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .site-header__actions .btn--ghost, .site-header__actions .btn--primary { display: none; }
  .about__grid, .areas__grid, .faq__grid, .contact__grid { grid-template-columns: 1fr; }
  .hero { align-items: flex-start; min-height: auto; }
  .hero__inner { padding-block: 2rem 3.5rem; padding-top: calc(var(--header-h) + 1.5rem); }
  .hero__trust { margin-top: 2.25rem; }
  .about__media { max-width: 480px; margin-inline: auto; margin-bottom: 2.5rem; }
  .faq__head { position: static; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .stat:nth-child(2)::after { display: none; }
}
@media (max-width: 620px) {
  :root { --header-h: 58px; }
  body { font-size: 1rem; }
  .services__grid, .why__grid, .areas__list { grid-template-columns: 1fr; }
  .about__points { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .reviews__grid { grid-template-columns: 1fr; }
  .masonry { columns: 1; }
  .review--cta { flex-direction: column; align-items: flex-start; }
  .mobile-bar { display: grid; }
  .to-top { bottom: 78px; }
  .hero__actions .btn { flex: 1; }
  .site-footer { padding-bottom: 70px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 400px) {
  .site-footer__grid { grid-template-columns: 1fr; }
  .areas__list { grid-template-columns: 1fr 1fr; }
}

/* ---------------------------------------------------------------- reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero__media img { height: 100% !important; transform: none !important; }
}
