/* ==========================================================================
   G&A Solidworks Ltd — site styles
   Single stylesheet. Sections: fonts, tokens, reset, layout, components.
   ========================================================================== */

/* ----------------------------------------------------------------- fonts
   Self-hosted rather than loaded from Google Fonts: faster (no extra DNS
   lookup or connection), and no visitor IP addresses are sent to Google,
   which keeps the site clean under UK GDPR.
   Files live in assets/fonts/ — see IMAGES.md if you ever change them.
   ---------------------------------------------------------------------- */
@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/barlow-condensed-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/barlow-condensed-latin-700-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/barlow-condensed-latin-800-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/inter-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/inter-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/inter-latin-700-normal.woff2") format("woff2");
}

/* ---------------------------------------------------------------- tokens */
:root {
  /* Brand — taken from the G&A logo */
  --red: #e01a22;
  --red-600: #c31219;
  --red-700: #a30f15;
  --red-tint: rgba(224, 26, 34, 0.1);

  --ink: #0b0d10;
  --ink-800: #111418;
  --ink-700: #171c22;
  --ink-600: #1f262e;
  --ink-500: #2b333d;

  --steel-400: #5a6673;
  --steel-300: #8d99a6;
  --steel-200: #c3cbd4;
  --steel-100: #e6eaee;
  --steel-50: #f4f6f8;
  --white: #fff;

  --text: #171c22;
  --text-muted: #5a6673;
  --text-invert: #fff;
  --text-invert-muted: #a8b2bd;

  --bg: #fff;
  --bg-alt: #f4f6f8;
  --border: #e2e7ec;

  /* Type */
  --font-display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;

  /* Space + shape */
  --wrap: 1200px;
  --wrap-narrow: 820px;
  --gutter: 24px;
  --radius: 3px;
  --shadow-sm: 0 1px 2px rgba(11, 13, 16, 0.06),
    0 2px 8px rgba(11, 13, 16, 0.05);
  --shadow-md: 0 4px 12px rgba(11, 13, 16, 0.08),
    0 12px 32px rgba(11, 13, 16, 0.1);
  --shadow-lg: 0 8px 20px rgba(11, 13, 16, 0.1),
    0 24px 60px rgba(11, 13, 16, 0.14);

  --header-h: 76px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ----------------------------------------------------------------- reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

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

a {
  color: var(--red-600);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover {
  color: var(--red-700);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0.005em;
  margin: 0 0 0.45em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.9rem, 7.2vw, 5.2rem);
}
h2 {
  font-size: clamp(2.1rem, 4.6vw, 3.3rem);
}
h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
}
h4 {
  font-size: 1.15rem;
}

p {
  margin: 0 0 1.1em;
}
p:last-child {
  margin-bottom: 0;
}

ul,
ol {
  margin: 0 0 1.1em;
  padding-left: 1.25em;
}
li {
  margin-bottom: 0.4em;
}

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 2px;
}

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

.wrap--narrow {
  max-width: var(--wrap-narrow);
}

.section {
  padding-block: clamp(64px, 9vw, 112px);
}

.section--tight {
  padding-block: clamp(48px, 6vw, 72px);
}

.section--alt {
  background: var(--bg-alt);
}

.section--dark {
  background: var(--ink);
  color: var(--text-invert);
}
.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: var(--white);
}
.section--dark p {
  color: var(--text-invert-muted);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--red);
  color: #fff;
  padding: 12px 20px;
  font-weight: 700;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  color: #fff;
}

/* ------------------------------------------------------------ typography */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--red);
}
.section--dark .eyebrow {
  color: #ff5c62;
}
.section--dark .eyebrow::before {
  background: var(--red);
}

.lede {
  font-size: clamp(1.06rem, 1.7vw, 1.24rem);
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 62ch;
}
.section--dark .lede {
  color: var(--text-invert-muted);
}

.section-head {
  max-width: 66ch;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}
.section-head--center .eyebrow {
  justify-content: center;
}

/* --------------------------------------------------------------- buttons */
.btn {
  --btn-bg: var(--red);
  --btn-fg: #fff;
  --btn-bd: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 2px solid var(--btn-bd);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s var(--ease), border-color 0.18s var(--ease),
    color 0.18s var(--ease), transform 0.18s var(--ease);
}
.btn:hover {
  --btn-bg: var(--red-600);
  --btn-bd: var(--red-600);
  color: #fff;
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  --btn-bd: var(--steel-200);
}
.btn--ghost:hover {
  --btn-bg: var(--ink);
  --btn-bd: var(--ink);
  color: #fff;
}

.btn--ghost-invert {
  --btn-bg: transparent;
  --btn-fg: #fff;
  --btn-bd: rgba(255, 255, 255, 0.34);
}
.btn--ghost-invert:hover {
  --btn-bg: #fff;
  --btn-bd: #fff;
  color: var(--ink);
}

/* WhatsApp buttons keep WhatsApp's own green — people recognise it instantly,
   and it reads as a distinct channel rather than another brand-red button. */
.btn--wa {
  --btn-bg: #25d366;
  --btn-fg: #0b2e18;
  --btn-bd: #25d366;
}
.btn--wa:hover {
  --btn-bg: #1eb855;
  --btn-bd: #1eb855;
  color: #06230f;
}

.btn--lg {
  padding: 18px 38px;
  font-size: 1rem;
}

.btn[disabled],
.btn[aria-disabled="true"] {
  opacity: 0.55;
  pointer-events: none;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--red-600);
}
.arrow-link svg {
  transition: transform 0.18s var(--ease);
}
.arrow-link:hover svg {
  transform: translateX(4px);
}

/* ---------------------------------------------------------------- header */
.topbar {
  background: var(--ink);
  color: var(--text-invert-muted);
  font-size: 0.83rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 40px;
  padding-block: 8px;
}
.topbar__note {
  display: flex;
  align-items: center;
  gap: 9px;
}
.topbar__note svg {
  flex: none;
  color: var(--red);
}
.topbar__links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.topbar a {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.topbar a:hover {
  color: #ff8b8f;
}
.topbar a svg {
  color: var(--red);
  flex: none;
}
.topbar a.topbar__wa svg {
  color: #25d366;
}
@media (max-width: 860px) {
  .topbar__note {
    display: none;
  }
  .topbar__inner {
    justify-content: center;
  }
  .topbar__links {
    gap: 18px;
    font-size: 0.8rem;
  }
}
@media (max-width: 720px) {
  .topbar__links .topbar__wa {
    display: none;
  }
}
@media (max-width: 460px) {
  .topbar__links .topbar__email {
    display: none;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(1.6) blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s var(--ease);
}
.site-header.is-stuck {
  box-shadow: var(--shadow-sm);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  color: var(--ink);
  flex: none;
}
.brand__mark {
  width: 78px;
  height: auto;
  flex: none;
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.42rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand__name em {
  font-style: normal;
  color: var(--red);
}
.brand__tag {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel-400);
  margin-top: 5px;
}
@media (max-width: 400px) {
  .brand__mark {
    width: 62px;
  }
  .brand__name {
    font-size: 1.2rem;
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.nav a {
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--ink-700);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.16s var(--ease), background 0.16s var(--ease);
}
.nav a:hover {
  color: var(--red-600);
  background: var(--red-tint);
}
.nav a[aria-current="page"] {
  color: var(--red-600);
}
.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  background: var(--red);
}

/* The quote button inside the nav is for the mobile drawer only — on desktop
   the standalone .header-cta is shown instead, so hide this one. */
.nav > .btn {
  display: none;
}

.header-cta {
  flex: none;
  margin-left: 8px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  margin-left: auto;
}
.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle__bars {
  position: relative;
}
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle__bars::before {
  top: -6px;
}
.nav-toggle__bars::after {
  top: 6px;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars {
  background: transparent;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }
  .header-cta {
    display: none;
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 8px var(--gutter) 20px;
    display: none;
  }
  .nav.is-open {
    display: flex;
  }
  .nav a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
  }
  .nav a[aria-current="page"]::after {
    display: none;
  }
  .nav > .btn {
    display: inline-flex;
    margin-top: 18px;
  }
}

/* ------------------------------------------------------------------ hero */
.hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
      100deg,
      rgba(11, 13, 16, 0.95) 0%,
      rgba(11, 13, 16, 0.86) 42%,
      rgba(11, 13, 16, 0.5) 100%
    ),
    linear-gradient(to top, rgba(11, 13, 16, 0.9), rgba(11, 13, 16, 0) 55%);
}
.hero__inner {
  padding-block: clamp(76px, 12vw, 152px);
  max-width: 46rem;
}
.hero h1 {
  color: #fff;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--red);
}
.hero__lede {
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  color: #d6dce3;
  max-width: 42rem;
  line-height: 1.6;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  list-style: none;
  padding-left: 0;
}
.hero__badges li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #c3cbd4;
  margin: 0;
}
.hero__badges svg {
  color: var(--red);
  flex: none;
}

/* Compact hero for interior pages */
.page-hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    95deg,
    rgba(11, 13, 16, 0.96),
    rgba(11, 13, 16, 0.72)
  );
}
.page-hero__inner {
  padding-block: clamp(56px, 8vw, 96px);
  max-width: 46rem;
}
.page-hero h1 {
  color: #fff;
  margin-bottom: 18px;
}
.page-hero p {
  color: #c3cbd4;
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
  max-width: 46ch;
}

.crumbs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0 0 20px;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #8d99a6;
}
.crumbs li {
  margin: 0;
}
.crumbs li + li::before {
  content: "/";
  margin-right: 8px;
  color: #5a6673;
}
.crumbs a {
  color: #c3cbd4;
  text-decoration: none;
}
.crumbs a:hover {
  color: #fff;
}

/* ------------------------------------------------------------- trust bar */
.trustbar {
  background: var(--ink-800);
  border-top: 3px solid var(--red);
}
.trustbar__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.trustbar__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 26px 22px;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.trustbar__item:last-child {
  border-right: 0;
}
.trustbar__item svg {
  color: var(--red);
  flex: none;
}
.trustbar__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.12rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.trustbar__item span {
  font-size: 0.8rem;
  color: var(--text-invert-muted);
}
@media (max-width: 680px) {
  .trustbar__item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 4px;
  }
}

/* ----------------------------------------------------------------- cards */
.grid {
  display: grid;
  gap: 26px;
}
.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
}
.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}
.grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease),
    border-color 0.22s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--steel-200);
}
.card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--ink-700);
  overflow: hidden;
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.card:hover .card__media img {
  transform: scale(1.05);
}
.card__body {
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card__body h3 {
  margin-bottom: 12px;
}
.card__body p {
  color: var(--text-muted);
  font-size: 0.96rem;
}
.card__body .arrow-link {
  margin-top: auto;
  padding-top: 18px;
}

.card__tag {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 14px;
}

/* Numbered feature list */
.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.steps li {
  counter-increment: step;
  position: relative;
  padding-top: 26px;
  border-top: 3px solid var(--ink-600);
  margin: 0;
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--red);
  margin-bottom: 12px;
}
.steps h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.steps p {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.section--dark .steps li {
  border-top-color: rgba(255, 255, 255, 0.18);
}
.section--dark .steps p {
  color: var(--text-invert-muted);
}

/* Tick list */
.ticks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.ticks li {
  position: relative;
  padding-left: 32px;
  margin: 0;
  font-size: 0.99rem;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 16px;
  height: 9px;
  border-left: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  transform: rotate(-45deg);
}
.ticks--2 {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 12px 30px;
}

/* Split content block */
.split {
  display: grid;
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.split__media {
  position: relative;
}
.split__media img {
  width: 100%;
  border-radius: var(--radius);
}
.split__media::after {
  content: "";
  position: absolute;
  left: -14px;
  bottom: -14px;
  width: 96px;
  height: 96px;
  border-left: 5px solid var(--red);
  border-bottom: 5px solid var(--red);
  pointer-events: none;
}
.split--reverse .split__media {
  order: 2;
}
@media (max-width: 720px) {
  .split--reverse .split__media {
    order: 0;
  }
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.stats__item {
  background: var(--ink);
  padding: 30px 24px;
}
.stats__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
}
.stats__num span {
  color: var(--red);
}
.stats__label {
  display: block;
  margin-top: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-invert-muted);
}

/* CTA band */
.cta-band {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.cta-band__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.cta-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(11, 13, 16, 0.84);
}
.cta-band .wrap {
  padding-block: clamp(60px, 8vw, 96px);
}
.cta-band h2 {
  color: #fff;
}
.cta-band p {
  color: #c3cbd4;
  margin-inline: auto;
  max-width: 54ch;
}
.cta-band .btn-row {
  justify-content: center;
}

/* Accordion (FAQ) */
.faq {
  border-top: 1px solid var(--border);
}
.faq details {
  border-bottom: 1px solid var(--border);
}
.faq summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 700;
  text-transform: uppercase;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "";
  flex: none;
  width: 14px;
  height: 14px;
  margin-top: 6px;
  border-right: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  transform: rotate(45deg);
  transition: transform 0.2s var(--ease);
}
.faq details[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 11px;
}
.faq details > div {
  padding-bottom: 24px;
  color: var(--text-muted);
  max-width: 72ch;
}

/* ------------------------------------------------------------------ form */
.form-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 4px solid var(--red);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 42px);
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.field--full {
  grid-column: 1 / -1;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field label {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-700);
}
.field label .req {
  color: var(--red);
}
.field .hint {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  font: inherit;
  font-size: 1rem;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--steel-200);
  border-radius: var(--radius);
  transition: border-color 0.16s var(--ease), box-shadow 0.16s var(--ease);
}
.field textarea {
  min-height: 148px;
  resize: vertical;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%235a6673' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-tint);
}
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: var(--red);
  background: #fff7f7;
}

.field__error {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--red-700);
  min-height: 0;
}
.field__error:empty {
  display: none;
}

/* Honeypot — hidden from humans, visible to naive bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.consent input {
  width: 19px;
  height: 19px;
  margin-top: 3px;
  flex: none;
  accent-color: var(--red);
}

.form-status {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 500;
  display: none;
}
.form-status.is-visible {
  display: block;
}
.form-status--ok {
  background: #edf9f0;
  border: 1px solid #a9dcb8;
  color: #14663a;
}
.form-status--err {
  background: #fdf0f0;
  border: 1px solid #f3b9bb;
  color: var(--red-700);
}

.btn__spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}
.btn.is-loading .btn__spinner {
  display: block;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ------------------------------------------------------------ contact UI */
.contact-layout {
  display: grid;
  gap: clamp(32px, 5vw, 56px);
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  align-items: start;
}
@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.contact-cards {
  display: grid;
  gap: 18px;
}
.contact-card {
  display: flex;
  gap: 16px;
  padding: 24px 22px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
}
.contact-card svg {
  flex: none;
  color: var(--red);
  margin-top: 3px;
}
.contact-card h3 {
  font-size: 1.06rem;
  margin-bottom: 6px;
  color: #fff;
}
.contact-card a {
  color: #fff;
  font-size: 1.12rem;
  font-weight: 600;
  text-decoration: none;
  word-break: break-word;
}
.contact-card a:hover {
  color: #ff8b8f;
}
.contact-card p {
  color: var(--text-invert-muted);
  font-size: 0.9rem;
  margin: 4px 0 0;
}
.contact-card--wa svg {
  color: #25d366;
}
.contact-card--wa a:hover {
  color: #25d366;
}

.contact-card--light {
  background: var(--bg-alt);
  color: var(--text);
  border: 1px solid var(--border);
}
.contact-card--light h3 {
  color: var(--ink);
}
.contact-card--light a {
  color: var(--ink);
}
.contact-card--light p {
  color: var(--text-muted);
}

.hours {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  font-size: 0.92rem;
}
.hours li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 0;
  border-bottom: 1px dashed var(--border);
  margin: 0;
}
.hours li:last-child {
  border-bottom: 0;
}
.hours span:last-child {
  font-weight: 600;
  color: var(--ink);
}

/* ---------------------------------------------------------------- footer */
.site-footer {
  background: var(--ink);
  color: var(--text-invert-muted);
  font-size: 0.94rem;
  border-top: 4px solid var(--red);
}
.site-footer__grid {
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1.5fr) repeat(auto-fit, minmax(160px, 1fr));
  padding-block: clamp(48px, 6vw, 72px);
}
.site-footer h4 {
  color: #fff;
  font-size: 1.02rem;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer li {
  margin-bottom: 10px;
}
.site-footer a {
  color: var(--text-invert-muted);
  text-decoration: none;
}
.site-footer a:hover {
  color: #fff;
}
.footer-brand .brand,
.footer-brand .brand:hover {
  color: #fff;
  margin-bottom: 18px;
}
.footer-brand .brand__tag {
  color: var(--steel-400);
}
.footer-brand p {
  max-width: 38ch;
  font-size: 0.93rem;
}
.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.footer-contact svg {
  flex: none;
  color: var(--red);
  margin-top: 4px;
}
.footer-contact li:nth-child(2) svg {
  color: #25d366;
}

.site-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer__bar .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  justify-content: space-between;
  align-items: center;
  padding-block: 22px;
  font-size: 0.85rem;
}
.site-footer__bar nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Sticky mobile call bar */
.callbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: none;
  background: var(--ink);
  border-top: 2px solid var(--red);
  padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
  gap: 7px;
}
.callbar a {
  flex: 1;
  padding: 13px 6px;
  font-size: 0.78rem;
  gap: 7px;
  letter-spacing: 0.03em;
}
.callbar a svg {
  flex: none;
}
@media (max-width: 700px) {
  .callbar {
    display: flex;
  }
  body {
    padding-bottom: 74px;
  }
}

/* -------------------------------------------------------------- utilities */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.text-center {
  text-align: center;
}
.mt-0 {
  margin-top: 0;
}
.mt-24 {
  margin-top: 24px;
}
.mt-40 {
  margin-top: 40px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---------------------------------------------------------------- print */
@media print {
  .site-header,
  .topbar,
  .callbar,
  .cta-band,
  .btn-row {
    display: none !important;
  }
  body {
    padding-bottom: 0;
  }
}
