/* ==========================================================================
   COLECTARE AUTO RABLE — Design system v2
   High-vis yellow + ink black · industrial · professional
   ========================================================================== */

:root {
  --ink: #0d0d0f;
  --ink-2: #19191c;
  --ink-3: #26262a;
  --paper: #f6f5f0;
  --white: #ffffff;
  --line: #e6e3da;
  --line-soft: #efede6;
  --mid: #4c4b45;
  --low: #837f74;
  --line-dark: rgba(255, 255, 255, 0.16);

  --acc: #ffd400;
  --acc-strong: #ffc300;
  --acc-ink: #0d0d0f;
  --danger: #c22b1d;

  --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: 3px;
}

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(--acc);
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--acc-strong);
  outline-offset: 2px;
}

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: 800;
  font-size: 14px;
  letter-spacing: 0.01em;
  line-height: 1;
  padding: 17px 28px;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.16s ease, color 0.16s ease, border-color 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.btn:active {
  transform: translateY(1px);
}
.btn svg {
  flex-shrink: 0;
}

/* Primary action: high-vis yellow, black text */
.btn--dark {
  background: var(--acc);
  color: var(--acc-ink);
  border-color: var(--acc);
  box-shadow: 3px 3px 0 var(--ink);
}
.btn--dark:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  box-shadow: 3px 3px 0 var(--acc);
  transform: translate(-1px, -1px);
}
.btn--dark:active {
  transform: translate(1px, 1px);
  box-shadow: 0 0 0 var(--ink);
}

.btn--light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.btn--light:hover {
  background: var(--acc);
  color: var(--ink);
  border-color: var(--acc);
}
.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--outline:hover {
  background: var(--ink);
  color: var(--acc);
  border-color: var(--ink);
}
.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.btn--outline-light:hover {
  background: var(--acc);
  color: var(--ink);
  border-color: var(--acc);
}
.btn--ghost {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}
.btn--ghost:hover {
  border-color: var(--ink);
}
.btn--lg {
  padding: 19px 34px;
  font-size: 15px;
}
@media (max-width: 560px) {
  .btn--block-mobile {
    width: 100%;
  }
}

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

/* Highlighter marker inside display headlines */
.hl {
  position: relative;
  display: inline-block;
  color: var(--acc-ink);
  background: var(--acc);
  padding: 0 0.12em;
  box-shadow: 0.09em 0.09em 0 var(--ink);
  line-height: 1.05;
}
.hl--skew {
  transform: rotate(-1.5deg);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.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 14px 34px -26px rgba(13, 13, 15, 0.6);
}
.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.9);
  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: 36px;
}
.topbar__left {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  overflow: hidden;
}
.topbar__dot {
  width: 8px;
  height: 8px;
  background: var(--acc);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
.topbar__msg strong {
  color: var(--acc);
  font-weight: 600;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}
.topbar__right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.topbar__right a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color 0.15s ease;
}
.topbar__right a:hover {
  color: var(--acc);
}
.topbar__right a svg {
  color: var(--acc);
}
@media (max-width: 860px) {
  .topbar__right .hide-sm,
  .topbar__msg span.msg-long {
    display: none;
  }
}

.header-bar {
  position: relative;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}
@media (max-width: 991px) {
  .header-inner {
    min-height: 68px;
  }
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand__mark {
  width: 46px;
  height: 46px;
  background: var(--acc);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.brand:hover .brand__mark {
  transform: translate(-1px, -1px) rotate(-3deg);
  box-shadow: 4px 4px 0 var(--ink);
}
.brand__mark svg {
  display: block;
}
.brand__name {
  font-family: var(--disp);
  font-weight: 900;
  font-size: 15.5px;
  line-height: 1.05;
  letter-spacing: 0.005em;
  color: var(--ink);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.brand__name em {
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.3em;
  font-size: 9px;
  color: var(--mid);
  border-left: 3px solid var(--acc);
  padding-left: 6px;
}

/* Nav */
.nav-main {
  display: flex;
  align-items: center;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-link {
  display: inline-block;
  padding: 11px 15px;
  font-family: var(--disp);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  transition: color 0.15s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 4px;
  height: 4px;
  background: var(--acc);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}
.nav-link:hover {
  color: var(--mid);
}
.nav-link.is-active {
  font-weight: 900;
}
.nav-link.is-active::after,
.nav-link:hover::after {
  transform: scaleX(1);
}
@media (max-width: 1080px) {
  .nav-link {
    padding: 10px 10px;
    font-size: 13.5px;
  }
  .nav-link::after {
    left: 10px;
    right: 10px;
  }
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-actions .btn--sm-phone {
  padding: 14px 20px;
  font-size: 13px;
  gap: 8px;
  box-shadow: none;
}
.header-actions .btn--sm-phone:hover {
  transform: none;
  box-shadow: 3px 3px 0 var(--acc);
}
.header-actions .wa-square {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  text-decoration: none;
  transition: all 0.18s ease;
  box-shadow: 2px 2px 0 var(--ink);
}
.header-actions .wa-square:hover {
  background: var(--acc);
  border-color: var(--ink);
  transform: translate(-1px, -1px);
}

/* Burger */
.burger {
  display: none;
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--ink);
  background: var(--white);
  border-radius: var(--radius);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: 2px 2px 0 var(--ink);
}
.burger span {
  width: 18px;
  height: 2.5px;
  background: var(--ink);
  display: block;
  transition: transform 0.25s ease, opacity 0.2s ease, background 0.2s ease;
}
.burger.is-open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.burger.is-open span:nth-child(2) {
  opacity: 0;
}
.burger.is-open span:nth-child(3) {
  transform: translateY(-7.5px) 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;
  }
}

/* Mobile slide-in menu (phone-optimized) */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 220;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  background: rgba(13, 13, 15, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
}
.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(88vw, 400px);
  background: var(--white);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  transform: translateX(102%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: -18px 0 44px rgba(13, 13, 15, 0.28);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.is-open .mobile-menu__panel {
  transform: translateX(0);
}
.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 62px;
  padding: 10px 18px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 2;
}
.mobile-menu__close {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  font-size: 17px;
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.mobile-menu__close:active {
  transform: scale(0.96);
}
.mobile-menu__brand {
  font-family: var(--disp);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: 14px;
  line-height: 1.15;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.mobile-menu__brand .mk {
  width: 34px;
  height: 34px;
  background: var(--acc);
  color: var(--ink);
  display: grid;
  place-items: center;
  border-radius: 2px;
  border: 1.5px solid var(--ink);
  flex-shrink: 0;
}
.mobile-menu__brand small {
  display: block;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 8px;
  color: var(--low);
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mobile-menu__quick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.mobile-menu__quick a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--disp);
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
  border-radius: var(--radius);
  padding: 12px 8px;
  border: 1.5px solid var(--ink);
}
.mobile-menu__quick .q-call {
  background: var(--acc);
  color: var(--ink);
}
.mobile-menu__quick .q-wa {
  background: #fff;
  color: var(--ink);
}
.mobile-menu__nav {
  list-style: none;
  margin: 0;
  padding: 6px 18px 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.mobile-menu__nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 54px;
  padding: 8px 2px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--disp);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.005em;
  border-bottom: 1px solid var(--line-soft);
  transition: color 0.15s ease;
}
.mobile-menu__nav a:active {
  color: var(--acc-strong);
}
.mobile-menu__nav a.is-active {
  color: var(--ink);
}
.mobile-menu__nav a.is-active::after {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--acc);
  border: 1.5px solid var(--ink);
  margin-left: auto;
  flex-shrink: 0;
}
.mobile-menu__nav .idx {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--low);
}
.mobile-menu__foot {
  margin-top: auto;
  padding: 14px 18px calc(18px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: var(--white);
}
.mobile-menu__meta {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--low);
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}
.mobile-menu__meta span strong {
  color: var(--ink);
  font-weight: 600;
}
.mobile-menu__meta a {
  color: var(--acc-strong);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ==========================================================================
   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.94);
    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: 900;
    font-size: 14px;
    border-radius: var(--radius);
    padding: 15px 10px;
  }
  .sticky-actions .sa-call {
    background: var(--acc);
    color: var(--ink);
    border: 1.5px solid var(--ink);
    box-shadow: 2px 2px 0 var(--ink);
  }
  .sticky-actions .sa-wa {
    border: 1.5px solid var(--ink);
    color: var(--ink);
    background: #fff;
  }
}

/* Hide bottom call bar while the slide-in menu is open */
body.menu-open .sticky-actions {
  display: none;
}

/* ==========================================================================
   Sections / base blocks
   ========================================================================== */
.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(27px, 3.6vw, 42px);
  line-height: 1.16;
  letter-spacing: -0.02em;
  margin: 12px 0 0;
  text-wrap: balance;
  max-width: 26ch;
}
.sec-title .thin {
  color: var(--low);
  font-weight: 600;
}
.sec-title--normal {
  letter-spacing: -0.02em;
}
.sec-intro {
  color: var(--mid);
  font-size: 16.5px;
  max-width: 46ch;
  margin: 0;
}
.sec--dark .sec-intro {
  color: rgba(255, 255, 255, 0.68);
}
.sec--dark .sec-title {
  color: #fff;
}
.sec--dark .sec-title .thin {
  color: var(--acc);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 12px;
  background: repeating-linear-gradient(-45deg, var(--acc) 0 18px, var(--ink) 18px 36px);
  z-index: 3;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
}
@media (min-width: 992px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  }
}
.hero__content {
  padding-block: clamp(48px, 7vw, 96px);
  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(40px, 6vw, 78px);
  line-height: 1;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin: 0 0 24px;
  text-wrap: balance;
}
.hero__title .thin {
  font-weight: 600;
  color: var(--low);
  letter-spacing: 0;
}
.hero__lead {
  font-size: 17px;
  line-height: 1.72;
  color: var(--mid);
  max-width: 54ch;
  margin: 0 0 32px;
}
.hero__lead strong {
  color: var(--ink);
  font-weight: 700;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero__note {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--low);
  margin: 22px 0 0;
  display: flex;
  align-items: center;
  gap: 9px;
}
.hero__note svg {
  color: var(--ink);
  background: var(--acc);
  padding: 2px;
  width: 15px;
  height: 15px;
  box-sizing: border-box;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(40px, 6vw, 62px);
  border: 1px solid var(--line);
  background: var(--white);
}
.hero__stat {
  padding: 18px 16px;
}
.hero__stat + .hero__stat {
  border-left: 1px solid var(--line);
}
.hero__stat .n {
  font-family: var(--disp);
  font-weight: 900;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1;
  color: var(--ink);
}
.hero__stat .n::before {
  content: "";
  display: block;
  width: 22px;
  height: 5px;
  background: var(--acc);
  margin-bottom: 10px;
  box-shadow: 2px 2px 0 var(--ink);
}
.hero__stat .t {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 9px;
}
.hero__media {
  position: relative;
  min-height: 320px;
}
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent 22%),
    linear-gradient(0deg, rgba(13, 13, 15, 0.24), transparent 32%);
  pointer-events: none;
}
.hero__tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: var(--acc);
  color: var(--ink);
  font-family: var(--mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 14px;
  border: 1.5px solid var(--ink);
  box-shadow: 3px 3px 0 rgba(13, 13, 15, 0.9);
  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;
  padding: 15px 0;
  position: relative;
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: marquee 36s 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: #fff;
  white-space: nowrap;
}
.ticker__item::after {
  content: "◆";
  font-size: 9px;
  color: var(--acc);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   Card grids
   ========================================================================== */
.card-grid {
  display: grid;
  gap: 14px;
  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: 1.5px solid var(--ink);
  border-radius: var(--radius);
  padding: clamp(22px, 2.4vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  box-shadow: 4px 4px 0 rgba(13, 13, 15, 0.06);
  transition: background-color 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}
@media (hover: hover) {
  .card--hover:hover {
    background: var(--ink);
    color: #fff;
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--acc);
  }
  .card--hover:hover .card__title,
  .card--hover:hover .card__txt {
    color: #fff;
  }
  .card--hover:hover .card__num {
    color: var(--ink);
    background: var(--acc);
    border-color: var(--acc);
  }
  .card--hover:hover .card__ico {
    background: #fff;
    color: var(--ink);
    border-color: #fff;
  }
  .card--hover:hover .link-more {
    color: var(--acc);
  }
}
.card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.card__num {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  background: var(--acc);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 2px 2px 0 var(--ink);
  transition: inherit;
}
.card__ico {
  width: 48px;
  height: 48px;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  transition: inherit;
}
.card__title {
  font-family: var(--disp);
  font-weight: 900;
  font-size: 18px;
  line-height: 1.18;
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 0;
  transition: inherit;
}
.card__title::after {
  content: "";
  display: block;
  width: 26px;
  height: 4px;
  background: var(--acc);
  margin-top: 10px;
  transition: inherit;
}
.card__txt {
  margin: 0;
  color: var(--mid);
  font-size: 14.5px;
  line-height: 1.68;
  transition: inherit;
}
.card__link {
  margin-top: auto;
  padding-top: 6px;
}

.link-more {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  border-bottom: 2px solid var(--acc);
  padding-bottom: 3px;
  transition: color 0.2s ease;
}
.link-more:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}
.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, 500px);
  object-fit: cover;
  border: 1.5px solid var(--ink);
  box-shadow: 8px 8px 0 var(--acc);
}
.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: 16px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--mid);
  text-transform: uppercase;
}
.split__cap .bar {
  width: 34px;
  height: 6px;
  background: var(--acc);
  box-shadow: 2px 2px 0 var(--ink);
}
.split__body .eyebrow {
  margin-bottom: 22px;
}
.split__body h2 {
  font-family: var(--disp);
  font-weight: 800;
  font-size: clamp(23px, 2.9vw, 34px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  text-wrap: balance;
  max-width: 24ch;
}
.split__body h2 .thin {
  font-weight: 600;
  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 30px;
  padding: 0;
  display: grid;
  gap: 0;
}
.check-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 13px 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: 24px;
  height: 24px;
  background: var(--acc);
  border: 1.5px solid var(--ink);
  color: var(--ink);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
  box-shadow: 2px 2px 0 var(--ink);
}
.check-list .tick svg {
  width: 13px;
  height: 13px;
}

/* ==========================================================================
   Steps
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 760px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}
.step {
  position: relative;
  background: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 38px) clamp(18px, 2.4vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease;
}
.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--acc);
  transform: scaleX(0.24);
  transform-origin: left;
  transition: transform 0.3s ease;
}
@media (hover: hover) {
  .step:hover {
    transform: translateY(-4px);
    border-color: var(--acc);
  }
  .step:hover::before {
    transform: scaleX(1);
  }
}
.step__num {
  font-family: var(--disp);
  font-weight: 900;
  font-size: clamp(46px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  background: var(--acc);
  width: max-content;
  min-width: 86px;
  padding: 10px 14px 8px;
  border-radius: var(--radius);
  border: 1px solid var(--ink);
  box-shadow: 4px 4px 0 #fff;
  margin-bottom: 6px;
}
.step h3 {
  font-family: var(--disp);
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 4px 0 0;
  color: #fff;
}
.step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14.5px;
  line-height: 1.68;
}
.step__cta {
  margin-top: auto;
  padding-top: 10px;
}
.step .tag-num {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--acc);
  text-transform: uppercase;
  display: block;
}

/* ==========================================================================
   Service rows
   ========================================================================== */
.service-list {
  border-top: 2px 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) 8px;
  border-bottom: 1.5px solid var(--line);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
@media (hover: hover) {
  .service-row:hover {
    background: var(--paper);
    border-bottom-color: var(--ink);
  }
}
.service-row__num {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  background: var(--acc);
  border: 1.5px solid var(--ink);
  padding: 8px 10px;
  border-radius: var(--radius);
  box-shadow: 2px 2px 0 var(--ink);
}
.service-row__title {
  font-family: var(--disp);
  font-weight: 900;
  font-size: clamp(19px, 2.6vw, 30px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.08;
  margin: 0;
}
.service-row__title::after {
  content: "";
  display: block;
  width: 30px;
  height: 5px;
  background: var(--acc);
  margin-top: 8px;
}
.service-row__desc {
  margin: 10px 0 0;
  color: var(--mid);
  font-size: 14.5px;
  max-width: 64ch;
}
.service-row__arrow {
  width: 50px;
  height: 50px;
  border: 1.5px solid var(--ink);
  background: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
  box-shadow: 2px 2px 0 var(--ink);
}
.service-row:hover .service-row__arrow {
  background: var(--acc);
  border-color: var(--ink);
  color: var(--ink);
  transform: translate(-1px, -1px) rotate(-45deg);
}
@media (max-width: 640px) {
  .service-row {
    grid-template-columns: auto 1fr;
  }
  .service-row__arrow {
    grid-column: 1 / -1;
    width: 100%;
    height: 46px;
    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: 1.5px solid var(--ink);
  background: #fff;
  padding: 9px 14px;
  border-radius: 999px;
  box-shadow: 2px 2px 0 rgba(13, 13, 15, 0.12);
}
.chip--off {
  color: var(--low);
  border-color: var(--line);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  box-shadow: none;
}

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}
.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 12px;
  background: repeating-linear-gradient(-45deg, var(--acc) 0 18px, var(--ink) 18px 36px);
  z-index: 2;
}
.cta-band::before {
  top: 0;
}
.cta-band::after {
  bottom: 0;
}
.cta-band__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-block: clamp(64px, 8vw, 110px);
}
@media (min-width: 900px) {
  .cta-band__grid {
    grid-template-columns: 1.3fr 1fr;
  }
}
.cta-band h2 {
  font-family: var(--disp);
  font-weight: 800;
  font-size: clamp(26px, 3.9vw, 46px);
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  text-wrap: balance;
}
.cta-band h2 .thin {
  color: var(--acc);
  font-weight: 600;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.68);
  max-width: 52ch;
  margin: 0 0 30px;
}
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cta-band__phone {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  border-left: 4px solid var(--acc);
  padding-left: 22px;
}
.cta-band__phone span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}
.cta-band__phone a {
  font-family: var(--disp);
  font-weight: 900;
  font-size: clamp(30px, 4.6vw, 52px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--acc);
  text-decoration: none;
  transition: color 0.2s ease;
}
.cta-band__phone a:hover {
  color: #fff;
}
.cta-band__gridlines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(90deg, transparent 0, transparent 96px, rgba(255, 255, 255, 0.04) 96px, rgba(255, 255, 255, 0.04) 97px);
  pointer-events: none;
}

/* ==========================================================================
   Page hero (interior)
   ========================================================================== */
.page-hero {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: relative;
  padding-block: clamp(44px, 6.5vw, 84px) clamp(32px, 5vw, 58px);
}
.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: repeating-linear-gradient(-45deg, var(--acc) 0 14px, var(--ink) 14px 28px);
  opacity: 0.9;
}
.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: 800;
  font-size: clamp(29px, 4.2vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 14px 0 0;
  text-wrap: balance;
  max-width: 22ch;
}
.page-hero h1 .thin {
  font-weight: 600;
  color: var(--low);
  letter-spacing: 0;
}
.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);
  font-weight: 600;
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb span[aria-hidden] {
  color: var(--acc-strong);
}

/* ==========================================================================
   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: 1.5px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 6px 6px 0 rgba(13, 13, 15, 0.08);
}
.form-card__head {
  padding: clamp(20px, 3vw, 30px);
  border-bottom: 1.5px solid var(--ink);
  background: var(--acc);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.form-card__head h2 {
  font-family: var(--disp);
  font-weight: 900;
  font-size: clamp(18px, 2.2vw, 24px);
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.005em;
}
.form-card__head .stamp {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  text-transform: uppercase;
  text-align: right;
  flex-shrink: 0;
  line-height: 1.8;
  border: 1px dashed var(--ink);
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.5);
}
.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(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 5px;
}
.field > label .req {
  color: var(--danger);
  font-size: 14px;
}
.input,
.textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1.5px solid #c9c7bf;
  background: #fff;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15.5px;
  padding: 14px 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: #a3a197;
}
.input:focus,
.textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 3px 3px 0 var(--acc);
}
.textarea {
  resize: vertical;
  min-height: 96px;
  line-height: 1.6;
}

/* Inputs stay 16px on phones so iOS does not zoom in while typing */
@media (max-width: 767px) {
  .input,
  .textarea,
  select.input {
    font-size: 16px;
  }
}
select.input {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230d0d0f' stroke-width='2' fill='none' stroke-linecap='square'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
  cursor: pointer;
}
.input--err {
  border-color: var(--danger);
}
.field-err {
  font-size: 12.5px;
  color: var(--danger);
  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: 3px 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;
}
.checkbox-field .cb-txt strong {
  color: var(--ink);
}
.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: 1.5px 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(--acc);
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}
.form-status--err {
  border-color: var(--danger);
  background: #fdeae7;
  color: #6f1a10;
}
.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(--white);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  padding: clamp(22px, 2.6vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 4px 4px 0 rgba(13, 13, 15, 0.07);
}
.info-card h3 {
  font-family: var(--disp);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.04em;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-card h3::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--acc);
  box-shadow: 2px 2px 0 var(--ink);
  flex-shrink: 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: 13px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14px;
}
.info-card li:last-child {
  border-bottom: 0;
}
.info-card li .ic {
  width: 38px;
  height: 38px;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.info-card li a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--acc-strong);
}
.info-card li a:hover {
  text-decoration-color: var(--ink);
}
.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;
}
.info-card .faq-a {
  color: var(--mid);
}

/* ==========================================================================
   Contact cards
   ========================================================================== */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 700px) {
  .contact-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
.contact-card {
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--white);
  text-decoration: none;
  box-shadow: 4px 4px 0 rgba(13, 13, 15, 0.07);
  transition: all 0.2s ease;
  color: var(--ink);
}
@media (hover: hover) {
  .contact-card:hover {
    background: var(--ink);
    color: #fff;
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--acc);
  }
  .contact-card:hover .contact-card__icon {
    background: var(--acc);
    color: var(--ink);
    border-color: var(--acc);
  }
  .contact-card:hover .contact-card__sub {
    color: rgba(255, 255, 255, 0.6);
  }
  .contact-card:hover .eyebrow {
    color: var(--acc);
  }
  .contact-card:hover .eyebrow::before {
    background: var(--acc);
    box-shadow: 2px 2px 0 rgba(255, 255, 255, 0.7);
  }
}
.contact-card__icon {
  width: 50px;
  height: 50px;
  background: var(--acc);
  border: 1.5px solid var(--ink);
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  margin-bottom: 8px;
  box-shadow: 2px 2px 0 var(--ink);
}
.contact-card__value {
  font-family: var(--disp);
  font-weight: 900;
  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: 2px solid var(--ink);
}
.faq-item {
  border-bottom: 1.5px 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: 800;
  font-size: clamp(16px, 1.8vw, 19px);
  letter-spacing: 0.005em;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary .pm {
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--ink);
  background: var(--acc);
  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: 15px;
  box-shadow: 2px 2px 0 var(--ink);
}
.faq-item[open] summary .pm {
  transform: rotate(45deg);
  background: var(--ink);
  color: var(--acc);
}
.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: 1.5px solid var(--ink);
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 3px 3px 0 rgba(13, 13, 15, 0.06);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
@media (hover: hover) {
  .doc-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 var(--acc);
  }
}
.doc-card__n {
  font-family: var(--disp);
  font-weight: 900;
  font-size: 34px;
  line-height: 1;
  color: var(--acc-ink);
  background: var(--acc);
  border: 1.5px solid var(--ink);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 2px 2px 0 var(--ink);
}
.doc-card h4 {
  font-family: var(--disp);
  font-weight: 800;
  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
   ========================================================================== */
.legal {
  max-width: 800px;
}
.legal h2 {
  font-family: var(--disp);
  font-weight: 900;
  font-size: clamp(21px, 2.6vw, 29px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 46px 0 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.legal h2::before {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--acc);
  box-shadow: 2px 2px 0 var(--ink);
  flex-shrink: 0;
  align-self: center;
}
.legal h2:first-of-type {
  margin-top: 8px;
  border-top: 0;
  padding-top: 0;
}
.legal h3 {
  font-family: var(--disp);
  font-weight: 800;
  font-size: 18px;
  margin: 30px 0 10px;
}
.legal p {
  color: #41403c;
  margin: 0 0 16px;
  line-height: 1.75;
}
.legal ul,
.legal ol {
  color: #41403c;
  line-height: 1.75;
  padding-left: 22px;
}
.legal li {
  margin-bottom: 8px;
}
.legal li::marker {
  color: var(--acc-strong);
  font-weight: 700;
}
.legal a {
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
  text-decoration-color: var(--acc-strong);
}
.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(--acc);
  font-family: var(--disp);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.legal .legal-note {
  border: 1.5px solid var(--ink);
  border-left: 6px solid var(--acc);
  padding: 16px 18px;
  background: var(--paper);
  font-size: 14px;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.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: 2px solid var(--ink);
}
.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: 900;
  font-size: clamp(24px, 3.4vw, 36px);
  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-top: 1.5px solid var(--ink);
}
.mapband iframe {
  display: block;
  width: 100%;
  height: 340px;
  border: 0;
  filter: grayscale(1) contrast(1.05);
  transition: filter 0.4s ease;
}
@media (hover: hover) {
  .mapband__frame:hover iframe {
    filter: grayscale(0) contrast(1);
  }
}
@media (min-width: 768px) {
  .mapband iframe {
    height: 420px;
  }
}
.mapband__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--acc);
  color: var(--ink);
  padding: 12px 16px;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--ink);
  box-shadow: 3px 3px 0 rgba(13, 13, 15, 0.85);
  max-width: calc(100% - 32px);
  line-height: 1.7;
  pointer-events: none;
}
.mapband__badge svg {
  color: var(--ink);
  flex-shrink: 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: repeating-linear-gradient(-45deg, var(--acc) 0 14px, var(--ink) 14px 28px);
}
.site-footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.15s ease;
}
.site-footer a:hover {
  color: var(--acc);
}
.footer-main {
  padding-block: clamp(52px, 7vw, 80px) clamp(28px, 4vw, 44px);
  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__name {
  color: #fff;
}
.footer-brand .brand__name em {
  color: rgba(255, 255, 255, 0.6);
}
.footer-brand .brand__mark {
  background: var(--acc);
  color: var(--ink);
  border-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 a:hover {
  color: var(--acc);
}
.footer-contact svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--acc);
}
.f-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 18px;
  font-weight: 600;
  border-left: 3px solid var(--acc);
  padding-left: 8px;
}
.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: "→";
  color: var(--acc);
  opacity: 0;
  width: 0;
  transition: opacity 0.2s ease;
}
.f-links a:hover::before {
  opacity: 1;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  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.55);
}
.footer-bottom .fb-legal a:hover {
  color: var(--acc);
}

/* ==========================================================================
   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 {
    margin-top: 0;
  }
  .step__num {
    font-size: 42px;
    min-width: 74px;
  }
  .mapband iframe {
    height: 300px;
  }
  .btn--dark,
  .btn--outline,
  .btn--ghost {
    box-shadow: 2px 2px 0 var(--ink);
  }
}

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

/* reveal animation (progressive enhancement) */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(16px);
    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;
  }
}

/* ==========================================================================
   Simple readable service list (used on /servicii)
   ========================================================================== */
.svc {
  padding: 30px 2px;
  border-bottom: 1px solid var(--line);
}
.svc-list {
  border-top: 1px solid var(--ink);
}
.svc__head {
  display: flex;
  align-items: baseline;
  gap: 18px;
}
.svc__no {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--low);
  flex-shrink: 0;
}
.svc__t {
  margin: 0;
  font-family: var(--disp);
  font-weight: 800;
  font-size: clamp(20px, 2.6vw, 28px);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.svc__d {
  margin: 10px 0 0;
  max-width: 80ch;
  color: var(--mid);
  font-size: 15.5px;
  line-height: 1.75;
}
.svc__d strong {
  color: var(--ink);
}
.svc__chips {
  margin-top: 14px;
}
.chips--soft .chip {
  box-shadow: none;
  border: 1px solid #d8d5cc;
  background: #fff;
  padding: 7px 13px;
  font-size: 11.5px;
  color: var(--mid);
}
@media (max-width: 640px) {
  .svc__head {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }
}

/* Simpler action row at the end of lists */
.simple-cta {
  margin-top: 30px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 5px solid var(--acc);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.simple-cta p {
  margin: 0;
  max-width: 60ch;
  font-size: 15.5px;
  line-height: 1.6;
}
.simple-cta p strong {
  color: var(--ink);
}

/* Medium desktop: keep nav + logo on one line */
@media (min-width: 992px) and (max-width: 1150px) {
  .header-actions .wa-square {
    display: none;
  }
}

/* Vertical check lists inside service items */
.svc-checks {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.svc-checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 0;
  font-size: 15px;
  color: var(--ink);
}
.svc-checks li + li {
  border-top: 1px dashed var(--line);
}
.svc-checks .sc {
  width: 24px;
  height: 24px;
  background: var(--acc);
  border: 1.5px solid var(--ink);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 2px 2px 0 rgba(13, 13, 15, 0.2);
}
.svc-checks .sc svg {
  width: 13px;
  height: 13px;
  color: var(--ink);
}
