/* ==========================================================================
   COLECTARE AUTO RABLE — Monochrome design system
   Industrial · editorial · black & white · mobile-first aware
   ========================================================================== */

:root {
  --ink: #0b0b0d;
  --ink-2: #161619;
  --ink-3: #222226;
  --paper: #f5f5f3;
  --white: #ffffff;
  --line: #e2e2de;
  --line-soft: #ececea;
  --mid: #55555b;
  --low: #8f8f96;
  --line-dark: rgba(255, 255, 255, 0.16);
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --disp: "Archivo", "Inter", system-ui, sans-serif;
  --container: 1200px;
  --gutter: clamp(18px, 3vw, 28px);
  --radius: 2px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

#main-content {
  min-height: 40vh;
  outline: none;
}

@media (max-width: 767px) {
  body.has-sticky-actions {
    padding-bottom: calc(66px + env(safe-area-inset-bottom));
  }
}

::selection {
  background: var(--ink);
  color: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

/* ------------------------------------------------------------------ container */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ------------------------------------------------------------------ buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--disp);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  line-height: 1;
  padding: 16px 26px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.btn:active {
  transform: translateY(1px);
}
.btn svg {
  flex-shrink: 0;
}
.btn--dark {
  background: var(--ink);
  color: var(--white);
}
.btn--dark:hover {
  background: var(--white);
  color: var(--ink);
}
.btn--light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.btn--light:hover {
  background: transparent;
  color: var(--white);
}
.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--outline:hover {
  background: var(--ink);
  color: var(--white);
}
.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.btn--outline-light:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.btn--ghost {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}
.btn--ghost:hover {
  border-color: var(--ink);
}
.btn--block-mobile {
  width: auto;
}
.btn--lg {
  padding: 19px 34px;
  font-size: 15px;
}
@media (max-width: 520px) {
  .btn--block-mobile {
    width: 100%;
  }
}

.btn-whatsapp {
  background: #0b0b0d;
  color: #fff;
  border-color: #0b0b0d;
}
.btn-whatsapp:hover {
  background: #fff;
  color: #0b0b0d;
}

/* ------------------------------------------------------------------ kicker */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--ink);
  display: inline-block;
}
.eyebrow--dark {
  color: rgba(255, 255, 255, 0.6);
}
.eyebrow--dark::before {
  background: var(--white);
}

/* ==========================================================================
   HEADER (Header.vue)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 12px 30px -24px rgba(0, 0, 0, 0.55);
}
.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 34px;
}
.topbar__left {
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  overflow: hidden;
}
.topbar__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white);
  flex-shrink: 0;
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}
.topbar__right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.topbar__right a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color 0.15s ease;
}
.topbar__right a:hover {
  color: #fff;
}
@media (max-width: 860px) {
  .topbar__right .hide-sm,
  .topbar__msg {
    display: none;
  }
}

.header-bar {
  position: relative;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 74px;
}
@media (max-width: 991px) {
  .header-inner {
    min-height: 66px;
  }
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand__mark {
  width: 44px;
  height: 44px;
  background: var(--ink);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--white);
  transition: transform 0.25s ease;
}
.brand:hover .brand__mark {
  transform: rotate(-4deg);
}
.brand__mark svg {
  display: block;
}
.brand__name {
  font-family: var(--disp);
  font-weight: 800;
  font-size: 15.5px;
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.brand__name em {
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.32em;
  font-size: 9.5px;
  color: var(--mid);
}

/* Nav */
.nav-main {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-link {
  display: inline-block;
  padding: 10px 14px;
  font-family: var(--disp);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.nav-link:hover {
  color: var(--mid);
}
.nav-link.is-active {
  border-bottom-color: var(--ink);
  font-weight: 700;
}
@media (max-width: 1080px) {
  .nav-link {
    padding: 10px 9px;
    font-size: 13.5px;
  }
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
@media (min-width: 992px) {
  .header-actions {
    margin-left: 0;
  }
}
.header-actions .btn--sm-phone {
  padding: 13px 20px;
  font-size: 13px;
  gap: 8px;
}
.header-actions .wa-square {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  text-decoration: none;
  transition: all 0.18s ease;
}
.header-actions .wa-square:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* Burger */
.burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.burger span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  display: block;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.is-open span:nth-child(2) {
  opacity: 0;
}
.burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 991px) {
  .burger {
    display: inline-flex;
    margin-left: auto;
  }
  .nav-main {
    display: none;
  }
  .header-actions {
    margin-left: 0;
  }
  .header-actions .wa-square,
  .header-actions .btn--sm-phone {
    display: none;
  }
}
@media (min-width: 992px) {
  .nav-main {
    display: flex;
  }
}

/* Mobile full-screen menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--white);
  display: flex;
  flex-direction: column;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
}
.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  border-bottom: 1px solid var(--line-dark);
  padding-inline: var(--gutter);
}
.mobile-menu__close {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
  border-radius: var(--radius);
  font-size: 22px;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.mobile-menu__brand {
  font-family: var(--disp);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 15px;
  line-height: 1.1;
}
.mobile-menu__brand small {
  display: block;
  font-weight: 500;
  letter-spacing: 0.3em;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.55);
}
.mobile-menu__nav {
  list-style: none;
  margin: 0;
  padding: clamp(18px, 4vh, 40px) var(--gutter);
  display: flex;
  flex-direction: column;
}
.mobile-menu__nav a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 9px 0;
  text-decoration: none;
  color: #fff;
  font-family: var(--disp);
  font-weight: 800;
  font-size: clamp(30px, 8vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  border-bottom: 1px solid var(--line-dark);
  transition: transform 0.2s ease, color 0.2s ease;
}
.mobile-menu__nav a:hover,
.mobile-menu__nav a.is-active {
  color: rgba(255, 255, 255, 0.55);
}
.mobile-menu__nav .idx {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  transform: translateY(-12px);
}
.mobile-menu__foot {
  margin-top: auto;
  padding: 20px var(--gutter) calc(24px + env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.mobile-menu__meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  padding: 20px var(--gutter) 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  grid-column: 1 / -1;
}
.mobile-menu__meta a {
  color: #fff;
  text-decoration: none;
}

/* ==========================================================================
   Sticky mobile call bar
   ========================================================================== */
.sticky-actions {
  display: none;
}
@media (max-width: 767px) {
  .sticky-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 150;
    gap: 8px;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
  }
  .sticky-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-family: var(--disp);
    font-weight: 800;
    font-size: 14px;
    border-radius: var(--radius);
    padding: 15px 10px;
  }
  .sticky-actions .sa-call {
    background: var(--ink);
    color: #fff;
  }
  .sticky-actions .sa-wa {
    border: 1px solid var(--ink);
    color: var(--ink);
    background: #fff;
  }
}

/* ==========================================================================
   SECTIONS / base blocks (used by content pages)
   ========================================================================== */
.sec {
  padding-block: clamp(64px, 9vw, 110px);
}
.sec--paper {
  background: var(--paper);
  border-block: 1px solid var(--line);
}
.sec--dark {
  background: var(--ink);
  color: var(--white);
}
.sec--tight {
  padding-block: clamp(40px, 6vw, 72px);
}

.sec-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: clamp(34px, 5vw, 56px);
}
.sec-head--split {
  align-items: end;
}
@media (min-width: 800px) {
  .sec-head--split {
    grid-template-columns: 1.25fr 1fr;
  }
  .sec-head--split .sec-intro {
    padding-bottom: 8px;
  }
}
.sec-title {
  font-family: var(--disp);
  font-weight: 800;
  font-size: clamp(30px, 4.6vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 14px 0 0;
  text-wrap: balance;
  text-transform: uppercase;
}
.sec-title--normal {
  text-transform: none;
  letter-spacing: -0.025em;
}
.sec-intro {
  color: var(--mid);
  font-size: 16.5px;
  max-width: 46ch;
  margin: 0;
}
.sec--dark .sec-intro {
  color: rgba(255, 255, 255, 0.66);
}
.sec--dark .sec-title {
  color: #fff;
}

/* ==========================================================================
   HERO (home)
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
}
@media (min-width: 992px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  }
}
.hero__content {
  padding-block: clamp(52px, 8vw, 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__kicker {
  margin-bottom: 26px;
}
.hero__title {
  font-family: var(--disp);
  font-weight: 900;
  font-size: clamp(42px, 6.4vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0 0 26px;
  text-wrap: balance;
}
.hero__title .thin {
  font-weight: 500;
  color: var(--low);
}
.hero__title .outline {
  -webkit-text-stroke: 1.6px var(--ink);
  color: transparent;
}
.hero__lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--mid);
  max-width: 52ch;
  margin: 0 0 34px;
}
.hero__lead strong {
  color: var(--ink);
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.hero__note {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--low);
  margin: 20px 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__note svg {
  color: var(--ink);
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  margin-top: clamp(40px, 6vw, 64px);
}
.hero__stat {
  padding: 20px 18px 0 0;
  border-right: 1px solid var(--line);
}
.hero__stat:last-child {
  border-right: 0;
}
.hero__stat .n {
  font-family: var(--disp);
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1;
}
.hero__stat .t {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 8px;
}
.hero__media {
  position: relative;
  min-height: 320px;
}
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(0deg, rgba(11, 11, 13, 0.28), transparent 30%);
  pointer-events: none;
}
.hero__tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: var(--ink);
  color: #fff;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 14px;
  z-index: 2;
}
@media (max-width: 991px) {
  .hero__media {
    min-height: 300px;
    order: -1;
  }
  .hero__media img {
    position: relative;
    height: 300px;
  }
}

/* ==========================================================================
   Marquee ticker
   ========================================================================== */
.ticker {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.ticker:hover .ticker__track {
  animation-play-state: paused;
}
.ticker__item {
  display: flex;
  align-items: center;
  gap: 26px;
  padding-right: 26px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}
.ticker__item::after {
  content: "◆";
  font-size: 8px;
  color: rgba(255, 255, 255, 0.5);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   Cards grid
   ========================================================================== */
.card-grid {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1020px) {
  .card-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .card-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(22px, 2.6vw, 34px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}
@media (hover: hover) {
  .card--hover:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
    transform: translateY(-3px);
  }
  .card--hover:hover .card__title,
  .card--hover:hover .card__txt {
    color: #fff;
  }
  .card--hover:hover .card__num {
    color: rgba(255, 255, 255, 0.55);
    border-color: rgba(255, 255, 255, 0.35);
  }
  .card--hover:hover .card__ico {
    background: #fff;
    color: var(--ink);
  }
}
.card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.card__num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--low);
  border: 1px solid var(--line);
  border-radius: 999px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: inherit;
}
.card__ico {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  transition: inherit;
}
.card__title {
  font-family: var(--disp);
  font-weight: 800;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
  transition: inherit;
}
.card__txt {
  margin: 0;
  color: var(--mid);
  font-size: 14.5px;
  line-height: 1.65;
  transition: inherit;
}
.card__link {
  margin-top: auto;
  padding-top: 6px;
}

.link-more {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  border-bottom: 1px solid transparent;
}
.link-more:hover {
  border-bottom-color: currentColor;
}
.link-more svg {
  transition: transform 0.2s ease;
}
.link-more:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
   Split media + text
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
}
@media (min-width: 940px) {
  .split {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }
  .split--rev .split__media {
    order: 2;
  }
}
.split__media {
  position: relative;
}
.split__media img {
  width: 100%;
  height: clamp(280px, 46vw, 520px);
  object-fit: cover;
  filter: grayscale(1) contrast(1.04);
}
.split__media .frame-note {
  position: absolute;
  left: -14px;
  top: -14px;
  border: 1px solid var(--ink);
  width: 44px;
  height: 44px;
  display: none;
}
.split__cap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--low);
  text-transform: uppercase;
}
.split__cap .bar {
  width: 34px;
  height: 1px;
  background: var(--ink);
}
.split__body .eyebrow {
  margin-bottom: 22px;
}
.split__body h2 {
  font-family: var(--disp);
  font-weight: 800;
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  text-transform: uppercase;
  text-wrap: balance;
}
.split__body h2 .thin {
  font-weight: 400;
  color: var(--low);
}
.split__body p {
  color: var(--mid);
  margin: 0 0 26px;
  max-width: 60ch;
}
.split__body p:last-child {
  margin-bottom: 0;
}

.check-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 0;
}
.check-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
}
.check-list li:last-child {
  border-bottom: 0;
}
.check-list .tick {
  width: 22px;
  height: 22px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-list .tick svg {
  width: 12px;
  height: 12px;
}

/* ==========================================================================
   Steps (proces)
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  counter-reset: step;
}
@media (min-width: 760px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}
.step {
  position: relative;
  padding: clamp(24px, 3vw, 40px) clamp(18px, 2.4vw, 34px);
  border: 1px solid var(--line);
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 760px) {
  .steps .step + .step {
    border-left: 0;
  }
}
@media (max-width: 759px) {
  .steps .step + .step {
    border-top: 0;
  }
}
@media (min-width: 760px) and (max-width: 1019px) {
  .steps .step:nth-child(3) {
    border-left: 0;
  }
  .steps .step:nth-child(n + 4) {
    display: none;
  }
  .steps .step:nth-child(2) {
    border-right: 0;
  }
}
.step__num {
  font-family: var(--disp);
  font-weight: 900;
  font-size: clamp(44px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--low);
  opacity: 0.85;
}
.step h3 {
  font-family: var(--disp);
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 4px 0 0;
}
.step p {
  margin: 0;
  color: var(--mid);
  font-size: 14.5px;
  line-height: 1.65;
}
.step__cta {
  margin-top: auto;
  padding-top: 10px;
}
.step .tag-num {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--low);
  text-transform: uppercase;
  display: block;
}

/* ==========================================================================
   Service rows
   ========================================================================== */
.service-list {
  border-top: 1px solid var(--ink);
}
.service-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(14px, 3vw, 40px);
  padding: clamp(18px, 3vw, 30px) 6px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background-color 0.2s ease;
}
@media (hover: hover) {
  .service-row:hover {
    background: var(--paper);
  }
}
.service-row__num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--low);
}
.service-row__title {
  font-family: var(--disp);
  font-weight: 800;
  font-size: clamp(19px, 2.6vw, 30px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0;
}
.service-row__desc {
  margin: 8px 0 0;
  color: var(--mid);
  font-size: 14.5px;
  max-width: 64ch;
}
.service-row__arrow {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
}
.service-row:hover .service-row__arrow {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
@media (max-width: 640px) {
  .service-row {
    grid-template-columns: auto 1fr;
  }
  .service-row__arrow {
    grid-column: 1 / -1;
    width: 100%;
    height: 44px;
    border-radius: var(--radius);
  }
}

/* chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.chip {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 9px 14px;
  border-radius: 999px;
  background: transparent;
}
.chip--off {
  color: var(--low);
  border-color: var(--line);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}
.cta-band__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-block: clamp(56px, 8vw, 100px);
}
@media (min-width: 900px) {
  .cta-band__grid {
    grid-template-columns: 1.3fr 1fr;
  }
}
.cta-band h2 {
  font-family: var(--disp);
  font-weight: 900;
  font-size: clamp(34px, 5.4vw, 66px);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  text-wrap: balance;
}
.cta-band h2 .thin {
  color: rgba(255, 255, 255, 0.42);
  font-weight: 500;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.66);
  max-width: 52ch;
  margin: 0 0 28px;
}
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cta-band__phone {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}
.cta-band__phone span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
}
.cta-band__phone a {
  font-family: var(--disp);
  font-weight: 800;
  font-size: clamp(30px, 4.6vw, 54px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}
.cta-band__phone a:hover {
  color: rgba(255, 255, 255, 0.6);
}
.cta-band__gridlines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(90deg, transparent 0, transparent 96px, rgba(255,255,255,0.05) 96px, rgba(255,255,255,0.05) 97px);
  pointer-events: none;
}

/* ==========================================================================
   Page hero (interior)
   ========================================================================== */
.page-hero {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(48px, 7vw, 88px) clamp(34px, 5vw, 60px);
}
.page-hero__grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 860px) {
  .page-hero__grid {
    grid-template-columns: 1.5fr 1fr;
    align-items: end;
  }
}
.page-hero h1 {
  font-family: var(--disp);
  font-weight: 900;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 16px 0 0;
  text-wrap: balance;
}
.page-hero h1 .thin {
  font-weight: 500;
  color: var(--low);
}
.page-hero__intro {
  color: var(--mid);
  margin: 0;
  font-size: 16px;
  max-width: 52ch;
}
.page-hero__side {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.breadcrumb {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--low);
  display: flex;
  gap: 8px;
  align-items: center;
}
.breadcrumb a {
  color: var(--ink);
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Forms
   ========================================================================== */
.form-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}
@media (min-width: 900px) {
  .form-shell {
    grid-template-columns: 1.25fr 0.75fr;
  }
}
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
}
.form-card__head {
  padding: clamp(20px, 3vw, 30px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.form-card__head h2 {
  font-family: var(--disp);
  font-weight: 800;
  font-size: clamp(19px, 2.2vw, 24px);
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.01em;
}
.form-card__head .stamp {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--low);
  text-transform: uppercase;
  text-align: right;
  flex-shrink: 0;
  line-height: 1.7;
}
.form-body {
  padding: clamp(20px, 3vw, 34px);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-grid .span-2 {
    grid-column: 1 / -1;
  }
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field > label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 6px;
}
.field > label .req {
  color: var(--ink);
}
.input,
.textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #cfcfcb;
  background: #fff;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15.5px;
  padding: 13px 15px;
  border-radius: var(--radius);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  appearance: none;
  -webkit-appearance: none;
}
.input::placeholder,
.textarea::placeholder {
  color: #b3b3b8;
}
.input:focus,
.textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(11, 11, 13, 0.07);
}
.textarea {
  resize: vertical;
  min-height: 118px;
  line-height: 1.6;
}
select.input {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%230b0b0d' stroke-width='1.6' fill='none' stroke-linecap='square'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
  cursor: pointer;
}
.input--err {
  border-color: #b3261e;
}
.field-err {
  font-size: 12.5px;
  color: #b3261e;
  margin: 0;
  display: none;
}
.field-err.is-visible {
  display: block;
}
.checkbox-field {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
}
.checkbox-field input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--ink);
  flex-shrink: 0;
}
.checkbox-field .cb-txt {
  font-size: 13px;
  line-height: 1.6;
  color: var(--mid);
}
.checkbox-field .cb-txt a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}
.form-foot {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.form-foot .btn {
  align-self: flex-start;
}
@media (max-width: 520px) {
  .form-foot .btn {
    width: 100%;
  }
}
.form-status {
  display: none;
  margin-top: 18px;
  border: 1px solid;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.55;
  border-radius: var(--radius);
}
.form-status.is-visible {
  display: block;
}
.form-status--ok {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}
.form-status--err {
  border-color: #b3261e;
  background: #fdecea;
  color: #7c1c16;
}
.form-status strong {
  font-family: var(--disp);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.06em;
}
.form-status p {
  margin: 4px 0 0;
}

/* Side info card */
.info-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(22px, 2.6vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.info-card h3 {
  font-family: var(--disp);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.06em;
  margin: 0;
}
.info-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.info-card li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14px;
}
.info-card li:last-child {
  border-bottom: 0;
}
.info-card li .ic {
  width: 36px;
  height: 36px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: #fff;
}
.info-card li a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}
.info-card li a:hover {
  text-decoration: underline;
}
.info-card li .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--low);
  display: block;
  margin-bottom: 2px;
}

/* ==========================================================================
   Contact cards
   ========================================================================== */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 700px) {
  .contact-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
.contact-card {
  border: 1px solid var(--line);
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--white);
  text-decoration: none;
  transition: all 0.2s ease;
  color: var(--ink);
}
@media (min-width: 700px) {
  .contact-cards .contact-card + .contact-card {
    border-left: 0;
  }
}
@media (hover: hover) {
  .contact-card:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
  }
  .contact-card:hover .contact-card__icon {
    background: #fff;
    color: var(--ink);
    border-color: #fff;
  }
  .contact-card:hover .contact-card__sub,
  .contact-card:hover .eyebrow {
    color: rgba(255, 255, 255, 0.6);
  }
  .contact-card:hover .eyebrow::before {
    background: #fff;
  }
}
.contact-card__icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  margin-bottom: 8px;
}
.contact-card__value {
  font-family: var(--disp);
  font-weight: 800;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.25;
  word-break: break-word;
}
.contact-card__sub {
  font-size: 13.5px;
  color: var(--mid);
  margin: 0;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list {
  border-top: 1px solid var(--ink);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 4px;
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(16px, 1.8vw, 19px);
  letter-spacing: 0.005em;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary .pm {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.25s ease, background-color 0.2s ease, color 0.2s ease;
  font-family: var(--mono);
  font-size: 14px;
}
.faq-item[open] summary .pm {
  transform: rotate(45deg);
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.faq-item .faq-a {
  padding: 0 4px 22px;
  color: var(--mid);
  max-width: 76ch;
}
.faq-item .faq-a p {
  margin: 0 0 12px;
}
.faq-item .faq-a p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Docs block (acte necesare)
   ========================================================================== */
.docs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 620px) {
  .docs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .docs-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.doc-card {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 20px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
@media (hover: hover) {
  .doc-card:hover {
    border-color: var(--ink);
    transform: translateY(-2px);
  }
}
.doc-card__n {
  font-family: var(--disp);
  font-weight: 900;
  font-size: 34px;
  line-height: 1;
  -webkit-text-stroke: 1.2px var(--ink);
  color: transparent;
}
.doc-card h4 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  margin: 2px 0 6px;
}
.doc-card p {
  margin: 0;
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
}

/* ==========================================================================
   Legal prose pages
   ========================================================================== */
.legal {
  max-width: 800px;
}
.legal h2 {
  font-family: var(--disp);
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 30px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 46px 0 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.legal h2:first-of-type {
  margin-top: 8px;
  border-top: 0;
  padding-top: 0;
}
.legal h3 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 18px;
  margin: 30px 0 10px;
}
.legal p {
  color: #3c3c41;
  margin: 0 0 16px;
  line-height: 1.75;
}
.legal ul,
.legal ol {
  color: #3c3c41;
  line-height: 1.75;
  padding-left: 22px;
}
.legal li {
  margin-bottom: 8px;
}
.legal a {
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}
.legal table {
  border-collapse: collapse;
  width: 100%;
  margin: 18px 0;
  font-size: 14px;
}
.legal th,
.legal td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
}
.legal th {
  background: var(--paper);
  font-family: var(--disp);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.legal .legal-note {
  border: 1px solid var(--line);
  border-left: 3px solid var(--ink);
  padding: 16px 18px;
  background: var(--paper);
  font-size: 14px;
}
.legal .meta-line {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--low);
  letter-spacing: 0.04em;
  margin-bottom: 34px;
}

/* ==========================================================================
   Map band (above footer)
   ========================================================================== */
.mapband {
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.mapband__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: clamp(28px, 4vw, 44px) 0 22px;
}
.mapband__head h2 {
  font-family: var(--disp);
  font-weight: 800;
  font-size: clamp(24px, 3.4vw, 38px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0;
}
.mapband__head p {
  margin: 0;
  color: var(--mid);
  max-width: 60ch;
}
.mapband__frame {
  position: relative;
  border-block: 1px solid var(--line);
}
.mapband iframe {
  display: block;
  width: 100%;
  height: 340px;
  border: 0;
  filter: grayscale(1) contrast(1.06);
  transition: filter 0.4s ease;
}
@media (hover: hover) {
  .mapband__frame:hover iframe {
    filter: grayscale(0.2) contrast(1);
  }
}
@media (min-width: 768px) {
  .mapband iframe {
    height: 420px;
  }
}
.mapband__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--ink);
  color: #fff;
  padding: 12px 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100% - 32px);
  line-height: 1.7;
  pointer-events: none;
}

/* ==========================================================================
   FOOTER (Footer.vue)
   ========================================================================== */
.site-footer {
  background: var(--ink);
  color: #fff;
  font-size: 14px;
}
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.15s ease;
}
.site-footer a:hover {
  color: #fff;
}
.footer-main {
  padding-block: clamp(52px, 7vw, 84px) clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 4vw, 60px);
}
@media (min-width: 820px) {
  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}
.footer-brand .brand {
  color: #fff;
}
.footer-brand .brand__name {
  color: #fff;
}
.footer-brand .brand__mark {
  background: var(--white);
  color: var(--ink);
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 40ch;
  margin: 18px 0 0;
  font-size: 13.5px;
  line-height: 1.7;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 22px;
}
.footer-contact a,
.footer-contact span {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  line-height: 1.6;
}
.footer-contact svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: rgba(255, 255, 255, 0.5);
}
.f-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 18px;
  font-weight: 500;
}
.f-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.f-links a {
  font-size: 13.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.f-links a::before {
  content: "";
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.2s ease;
}
.f-links a:hover::before {
  width: 14px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0 calc(20px + env(safe-area-inset-bottom));
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  font-family: var(--mono);
  letter-spacing: 0.04em;
}
.footer-bottom .fb-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-bottom .fb-legal a {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom .fb-legal a:hover {
  color: #fff;
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.mono {
  font-family: var(--mono);
}
.disp {
  font-family: var(--disp);
}
.center {
  text-align: center;
}
.mx-auto {
  margin-inline: auto;
}
.mt-0 { margin-top: 0; }
.num-big {
  font-family: var(--disp);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}

.img-grayscale {
  filter: grayscale(1) contrast(1.05);
}

/* Two-column prose */
.two-col {
  columns: 1;
  column-gap: 44px;
}
@media (min-width: 780px) {
  .two-col {
    columns: 2;
  }
}
.two-col h2 {
  break-after: avoid;
}

/* Full-width action buttons on small phones */
@media (max-width: 560px) {
  .hero__cta .btn,
  .cta-band__actions .btn,
  .page-hero__side .btn,
  .sec--dark > .container > p .btn {
    width: 100%;
  }
  .hero__note {
    flex-wrap: wrap;
  }
  .card-grid .card + .card {
    border-top: 0;
  }
  .contact-cards .contact-card + .contact-card {
    border-top: 0;
  }
  .step__num {
    font-size: 40px;
  }
  .mapband iframe {
    height: 300px;
  }
}

/* skip-link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  z-index: 300;
  font-size: 13px;
}
.skip-link:focus {
  left: 0;
}

/* reveal animation (progressive enhancement) */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.is-in {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .ticker__track {
    animation: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
