/* ==========================================================================
   Holmswood Asset Finance — design system
   --------------------------------------------------------------------------
   Palette is fixed by the brand: #083749 navy, #366f82 teal, #ffffff white.
   Neutrals are derived from the navy so greys read cool, never muddy.
   One accent only — a hi-vis-derived amber taken from PPE and plant livery —
   reserved for primary calls to action and small index markers.
   ========================================================================== */

:root {
  /* Brand */
  --navy: #083749;
  --teal: #366f82;
  --teal-lift: #4b8698;
  --white: #ffffff;

  /* Derived neutrals */
  --ink: #06222d;
  --slate: #4f6a74;
  --slate-soft: #5a737d;
  --mist: #f1f5f6;
  --mist-deep: #e4ecee;
  --line: #d5e0e3;
  --line-strong: #b9cbd1;

  /* Accent — used sparingly, by design */
  --signal: #e39a2b;
  --signal-lift: #f2ab3c;
  --signal-deep: #96600f;

  /* Type */
  --display: 'Archivo', 'Archivo Expanded', 'Helvetica Neue', Arial, sans-serif;
  --body: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', Consolas, monospace;

  /* Spacing scale */
  --s1: 0.25rem;
  --s2: 0.5rem;
  --s3: 0.75rem;
  --s4: 1rem;
  --s5: 1.5rem;
  --s6: 2rem;
  --s7: 3rem;
  --s8: 4rem;
  --s9: 6rem;
  --s10: 8rem;

  --shell: 1180px;
  --radius: 3px;
  --radius-lg: 6px;

  --shadow-sm: 0 1px 2px rgba(6, 34, 45, 0.06), 0 2px 8px rgba(6, 34, 45, 0.05);
  --shadow-md: 0 2px 6px rgba(6, 34, 45, 0.07), 0 12px 32px rgba(6, 34, 45, 0.09);
  --shadow-lg: 0 4px 12px rgba(6, 34, 45, 0.08), 0 24px 60px rgba(6, 34, 45, 0.14);

  --ease: cubic-bezier(0.2, 0.7, 0.3, 1);
}

/* --------------------------------------------------------------- base ---- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-feature-settings: 'kern' 1, 'liga' 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img,
svg,
picture {
  max-width: 100%;
  display: block;
}

img {
  height: auto;
}

a {
  color: var(--teal);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--navy);
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 600;
  font-stretch: 112%;
  color: var(--navy);
  margin: 0 0 var(--s4);
  letter-spacing: -0.02em;
  line-height: 1.06;
  text-wrap: balance;
}

p {
  margin: 0 0 var(--s4);
  text-wrap: pretty;
}

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

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: var(--s6) 0;
}

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--navy);
  color: var(--white);
  padding: var(--s3) var(--s5);
  font-family: var(--mono);
  font-size: 0.8rem;
}

.skip-link:focus {
  left: var(--s4);
  top: var(--s4);
  color: var(--white);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ------------------------------------------------------------ layout ----- */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--s5);
}

.shell--narrow {
  max-width: 760px;
}

.band {
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

.band--tight {
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
}

.band--mist {
  background: var(--mist);
}

.band--navy {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
}

.band--navy h2,
.band--navy h3,
.band--navy h4 {
  color: var(--white);
}

.band--navy a {
  color: var(--white);
}

.band--gradient {
  background: linear-gradient(135deg, var(--navy) 0%, #0d4a5f 48%, var(--teal) 100%);
  color: rgba(255, 255, 255, 0.86);
}

.band--gradient h2,
.band--gradient h3 {
  color: var(--white);
}

/* ------------------------------------------------------------- type ------ */

.label {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 var(--s4);
  display: flex;
  align-items: center;
  gap: var(--s3);
}

.label::before {
  content: '';
  width: 1.6rem;
  height: 2px;
  background: var(--signal);
  flex: none;
}

.band--navy .label,
.band--gradient .label {
  color: rgba(255, 255, 255, 0.72);
}

.display {
  font-size: clamp(2.5rem, 6.2vw, 4.3rem);
  line-height: 0.99;
  letter-spacing: -0.03em;
  margin-bottom: var(--s5);
}

h2 {
  font-size: clamp(1.85rem, 3.6vw, 2.7rem);
  margin-bottom: var(--s5);
}

h3 {
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: var(--s3);
}

h4 {
  font-size: 1rem;
  margin-bottom: var(--s2);
}

.lede {
  font-size: clamp(1.1rem, 1.6vw, 1.28rem);
  line-height: 1.55;
  color: var(--slate);
  max-width: 42ch;
}

.band--navy .lede,
.band--gradient .lede {
  color: rgba(255, 255, 255, 0.78);
}

.prose {
  max-width: 68ch;
}

.prose h3 {
  margin-top: var(--s6);
}

.prose h3:first-child {
  margin-top: 0;
}

.section-head {
  max-width: 60ch;
  margin-bottom: var(--s7);
}

.section-head .lede {
  max-width: 56ch;
}

.text-center {
  text-align: center;
}

.text-center .label {
  justify-content: center;
}

.text-center .lede,
.text-center .section-head {
  margin-inline: auto;
}

/* ---------------------------------------------------------- buttons ------ */

.btn {
  --btn-bg: var(--signal);
  --btn-fg: var(--navy);
  --btn-bd: var(--signal);
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  padding: 0.85rem 1.4rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1.5px solid var(--btn-bd);
  border-radius: var(--radius);
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  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(--signal-lift);
  --btn-bd: var(--signal-lift);
  color: var(--navy);
  transform: translateY(-1px);
}

.btn svg {
  width: 1.05em;
  height: 1.05em;
  flex: none;
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--navy);
  --btn-bd: var(--line-strong);
}

.btn--ghost:hover {
  --btn-bg: var(--mist);
  --btn-bd: var(--navy);
  color: var(--navy);
}

.btn--solid {
  --btn-bg: var(--navy);
  --btn-fg: var(--white);
  --btn-bd: var(--navy);
}

.btn--solid:hover {
  --btn-bg: #0b4a63;
  --btn-bd: #0b4a63;
  color: var(--white);
}

.btn--on-dark {
  --btn-bg: transparent;
  --btn-fg: var(--white);
  --btn-bd: rgba(255, 255, 255, 0.34);
}

.btn--on-dark:hover {
  --btn-bg: rgba(255, 255, 255, 0.1);
  --btn-bd: var(--white);
  color: var(--white);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
  align-items: center;
}

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  font-size: 0.95rem;
}

.textlink::after {
  content: '→';
  transition: transform 0.18s var(--ease);
}

.textlink:hover {
  color: var(--navy);
}

.textlink:hover::after {
  transform: translateX(3px);
}

/* ----------------------------------------------------------- header ------ */

.masthead {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.masthead__inner {
  display: flex;
  align-items: center;
  gap: var(--s5);
  min-height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex: none;
  margin-right: auto;
  min-width: 0;
}

/* The client's monogram and wordmark, side by side. The stacked master lockup
   renders its wordmark about nine pixels tall at header height, so the header
   uses the two halves horizontally instead. */
.brand__mark {
  height: 36px;
  width: auto;
  flex: none;
}

.brand__word {
  height: 14px;
  width: auto;
  flex: none;
  margin-bottom: 1px;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--s2);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.55rem 0.7rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: color 0.15s var(--ease), background 0.15s var(--ease);
}

.nav__link:hover {
  color: var(--navy);
  background: var(--mist);
}

.nav__link[aria-current='page'],
.nav__item--active > .nav__link {
  color: var(--navy);
  font-weight: 600;
  box-shadow: inset 0 -2px 0 var(--signal);
}

.nav__caret {
  width: 0.6rem;
  height: 0.6rem;
  transition: transform 0.18s var(--ease);
}

.nav__item:hover .nav__caret,
.nav__item:focus-within .nav__caret {
  transform: rotate(180deg);
}

.nav__menu {
  position: absolute;
  top: calc(100% + 6px);
  left: -0.3rem;
  min-width: 250px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--s2);
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.16s var(--ease), transform 0.16s var(--ease),
    visibility 0.16s;
}

.nav__item:hover .nav__menu,
.nav__item:focus-within .nav__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__menu a {
  display: block;
  padding: 0.5rem 0.7rem;
  font-size: 0.9rem;
  color: var(--ink);
  text-decoration: none;
  border-radius: var(--radius);
}

.nav__menu a:hover,
.nav__menu a[aria-current='page'] {
  background: var(--mist);
  color: var(--navy);
}

.masthead__cta {
  display: flex;
  align-items: center;
  gap: var(--s3);
  flex: none;
}

.masthead__phone {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.masthead__phone:hover {
  color: var(--teal);
}

.masthead__phone svg {
  width: 0.85rem;
  height: 0.85rem;
  opacity: 0.6;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  flex: none;
}

.burger span {
  display: block;
  position: relative;
  width: 18px;
  height: 1.5px;
  background: var(--navy);
  transition: background 0.15s var(--ease);
}

.burger span::before,
.burger span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: var(--navy);
  transition: transform 0.2s var(--ease);
}

.burger span::before {
  top: -6px;
}

.burger span::after {
  top: 6px;
}

body.nav-open .burger span {
  background: transparent;
}

body.nav-open .burger span::before {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .burger span::after {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 74px 0 0;
  z-index: 99;
  background: var(--white);
  overflow-y: auto;
  padding: var(--s5) 0 var(--s8);
}

body.nav-open .mobile-nav {
  display: block;
}

body.nav-open {
  overflow: hidden;
}

.mobile-nav a {
  display: block;
  padding: 0.85rem 0;
  font-family: var(--display);
  font-stretch: 112%;
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.mobile-nav .mobile-nav__sub a {
  font-family: var(--body);
  font-stretch: normal;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--slate);
  padding: 0.6rem 0 0.6rem var(--s4);
  border-bottom: 1px dashed var(--line);
}

.mobile-nav__cta {
  margin-top: var(--s6);
  display: grid;
  gap: var(--s3);
}

.mobile-nav__cta .btn {
  justify-content: center;
}

/* ------------------------------------------------------------- hero ------ */

.hero {
  position: relative;
  padding-block: clamp(3rem, 6vw, 5rem) clamp(3.5rem, 7vw, 5.5rem);
  background:
    radial-gradient(1100px 520px at 88% -10%, rgba(54, 111, 130, 0.12), transparent 62%),
    linear-gradient(180deg, var(--mist) 0%, var(--white) 78%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero__copy .display {
  margin-bottom: var(--s5);
}

.hero__lede {
  font-size: clamp(1.08rem, 1.5vw, 1.24rem);
  line-height: 1.6;
  color: var(--slate);
  max-width: 46ch;
  margin-bottom: var(--s6);
}

.hero__figure {
  position: relative;
}

/* The offset navy block behind the image echoes the angular monogram. */
.hero__figure::before {
  content: '';
  position: absolute;
  inset: 1.5rem -1.5rem -1.5rem 1.5rem;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  border-radius: var(--radius-lg);
  z-index: 0;
}

/* A 3:2 box with object-fit means a supplied photograph is cropped to the
   design rather than distorting it or shifting the layout — generated images
   are often square, and the client is adding these themselves. */
.hero__figure img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero__figure picture {
  display: block;
}

.hero--compact {
  padding-block: clamp(2.5rem, 5vw, 3.5rem) clamp(2.5rem, 5vw, 4rem);
}

.hero--compact .hero__grid {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
}

.hero--compact .display {
  font-size: clamp(2.1rem, 4.4vw, 3.3rem);
}

/* Trust strip beneath the hero copy */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2) var(--s5);
  margin-top: var(--s6);
  padding-top: var(--s5);
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--slate);
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-strip span::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--signal);
  transform: rotate(45deg);
  flex: none;
}

/* ------------------------------------------------- breadcrumbs ----------- */

.crumbs {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--slate-soft);
  padding-block: var(--s4) 0;
}

.crumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.crumbs a {
  color: var(--teal);
  text-decoration: none;
}

.crumbs a:hover {
  text-decoration: underline;
}

.crumbs li:not(:last-child)::after {
  content: '/';
  margin-left: 0.45rem;
  color: var(--line-strong);
}

/* ------------------------------------------- SIGNATURE: the spec plate --- */
/*
   Modelled on the riveted rating plate bolted to every van, truck and
   excavator. It carries the five facts an operator actually compares between
   finance products, in the same order, on every page.
*/

.plate {
  background: var(--white);
  border: 1.5px solid var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: relative;
}

.plate__head {
  background: linear-gradient(120deg, var(--navy), #14556e);
  color: var(--white);
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s4);
  position: relative;
}

/* Rivets — two per corner pair, the detail that makes it read as a plate. */
.plate__head::before,
.plate__head::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.35);
  transform: translateY(-50%);
}

.plate__head::before {
  left: 0.5rem;
}

.plate__head::after {
  right: 0.5rem;
}

.plate__title {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 0 0 0.75rem;
  color: var(--white);
}

.plate__ref {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  color: rgba(255, 255, 255, 0.55);
  margin-right: 0.75rem;
  white-space: nowrap;
}

.plate__rows {
  margin: 0;
  padding: 0;
}

.plate__row {
  display: grid;
  grid-template-columns: 12.5rem 1fr;
  gap: var(--s4);
  padding: 0.7rem 1.1rem;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.plate__row:last-child {
  border-bottom: 0;
}

.plate__row:nth-child(odd) {
  background: #fafcfc;
}

.plate__row dt {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--slate);
  margin: 0;
}

.plate__row dd {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
}

.plate__foot {
  padding: 0.65rem 1.1rem;
  background: var(--mist);
  border-top: 1px solid var(--line);
  font-size: 0.76rem;
  color: var(--slate);
  line-height: 1.5;
}

/* Comparison view of every plate, on the hub page */
.plate-table-wrap {
  overflow-x: auto;
  border: 1.5px solid var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  -webkit-overflow-scrolling: touch;
}

.plate-table {
  width: 100%;
  min-width: 940px;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.9rem;
}

.plate-table th,
.plate-table td {
  text-align: left;
  padding: 0.8rem 0.95rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.plate-table thead th {
  background: linear-gradient(120deg, var(--navy), #14556e);
  color: var(--white);
  font-family: var(--mono);
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  position: sticky;
  top: 0;
}

.plate-table tbody tr:nth-child(even) {
  background: #fafcfc;
}

.plate-table tbody tr:last-child th,
.plate-table tbody tr:last-child td {
  border-bottom: 0;
}

.plate-table tbody th {
  font-family: var(--display);
  font-stretch: 112%;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  white-space: nowrap;
}

.plate-table tbody th a {
  color: var(--navy);
  text-decoration: none;
  box-shadow: inset 0 -1px 0 var(--line-strong);
}

.plate-table tbody th a:hover {
  color: var(--teal);
  box-shadow: inset 0 -1px 0 var(--teal);
}

.table-hint {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--slate-soft);
  margin-top: var(--s3);
}

/* ------------------------------------------------------------ cards ------ */

.grid {
  display: grid;
  gap: var(--s5);
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid--products {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--s4);
}


.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--s5);
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease),
    transform 0.18s var(--ease);
}

.card p {
  color: var(--slate);
  font-size: 0.95rem;
}

.card--link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.card--link:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card--link:hover h3 {
  color: var(--teal);
}

/* Closing card in the product grid — inverted, so it reads as the next step
   rather than an eighth product. Must be declared after .card to win on order. */
.card--closer {
  background: var(--navy);
  border-color: var(--navy);
}

.card--closer h3 {
  color: var(--white);
}

.card--closer p,
.card--closer .card__meta {
  color: rgba(255, 255, 255, 0.66);
}

.card--closer .card__foot {
  color: var(--signal);
}

.card--closer:hover {
  border-color: var(--signal);
}

.card--closer:hover h3 {
  color: var(--signal);
}

.card__meta {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-soft);
  margin-bottom: var(--s3);
  display: block;
}

.card__foot {
  margin-top: auto;
  padding-top: var(--s4);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.card__foot::after {
  content: '→';
  transition: transform 0.18s var(--ease);
}

.card--link:hover .card__foot::after {
  transform: translateX(3px);
}

/* USP band on dark */
.usp {
  border-top: 2px solid rgba(255, 255, 255, 0.18);
  padding-top: var(--s4);
}

.usp h3 {
  font-size: 1.05rem;
  margin-bottom: var(--s2);
}

.usp p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

/* Asset category chips */
.assets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.asset {
  background: var(--white);
  padding: var(--s5);
}

.asset h3 {
  font-size: 1rem;
  margin-bottom: var(--s2);
}

.asset p {
  font-size: 0.9rem;
  color: var(--slate);
  margin: 0;
}

.asset__icon {
  width: 30px;
  height: 30px;
  color: var(--teal);
  margin-bottom: var(--s3);
}

/* ------------------------------------------------------------ steps ------ */
/* Numbered because the order is real: these three things happen in sequence. */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
  counter-reset: step;
}

.step {
  position: relative;
  padding-top: var(--s5);
  border-top: 2px solid var(--line);
  counter-increment: step;
}

.step::before {
  content: '0' counter(step);
  position: absolute;
  top: -0.85rem;
  left: 0;
  background: var(--white);
  padding-right: 0.6rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--signal-deep);
  font-weight: 600;
}

.band--mist .step::before {
  background: var(--mist);
}

.step h3 {
  font-size: 1.1rem;
}

.step p {
  font-size: 0.94rem;
  color: var(--slate);
  margin: 0;
}

/* -------------------------------------------------------- checklist ------ */

.ticks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--s3);
}

.ticks li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.97rem;
  color: var(--slate);
}

.ticks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.7rem;
  height: 0.42rem;
  border-left: 2px solid var(--signal);
  border-bottom: 2px solid var(--signal);
  transform: rotate(-45deg);
}

.ticks strong {
  color: var(--ink);
  font-weight: 600;
}

.band--navy .ticks li,
.band--gradient .ticks li {
  color: rgba(255, 255, 255, 0.78);
}

.band--navy .ticks strong,
.band--gradient .ticks strong {
  color: var(--white);
}

/* --------------------------------------------------------- split --------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.split--wide-left {
  grid-template-columns: 1.15fr 0.85fr;
}

.split--wide-right {
  grid-template-columns: 0.85fr 1.15fr;
}

.split__figure img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.split__figure picture {
  display: block;
}

figure {
  margin: 0;
}

figcaption {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-soft);
  margin-top: var(--s3);
}

/* ---------------------------------------------------------- callout ------ */

.callout {
  border-left: 3px solid var(--signal);
  background: var(--mist);
  padding: var(--s5);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.callout p {
  font-size: 0.95rem;
  color: var(--slate);
}

.callout strong {
  color: var(--navy);
}

/* -------------------------------------------------------------- FAQ ------ */

.faq {
  border-top: 1px solid var(--line);
}

.faq__item {
  border-bottom: 1px solid var(--line);
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--s4);
  padding: var(--s5) 0;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--display);
  font-stretch: 112%;
  font-weight: 600;
  font-size: 1.08rem;
  line-height: 1.3;
  color: var(--navy);
}

.faq__q:hover {
  color: var(--teal);
}

.faq__sign {
  flex: none;
  width: 1.4rem;
  height: 1.4rem;
  position: relative;
  margin-top: 0.15rem;
}

.faq__sign::before,
.faq__sign::after {
  content: '';
  position: absolute;
  background: var(--signal-deep);
  transition: transform 0.22s var(--ease), opacity 0.22s var(--ease);
}

.faq__sign::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.faq__sign::after {
  left: 50%;
  top: 0;
  height: 100%;
  width: 2px;
  transform: translateX(-50%);
}

.faq__q[aria-expanded='true'] .faq__sign::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq__a {
  display: none;
  padding-bottom: var(--s5);
  max-width: 68ch;
  color: var(--slate);
  font-size: 0.97rem;
}

.faq__item.is-open .faq__a {
  display: block;
}

/* ------------------------------------------------------------- CTA ------- */

.cta-deck {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s4);
}

.cta-card {
  display: flex;
  gap: var(--s4);
  align-items: flex-start;
  padding: var(--s5);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--white);
  transition: background 0.18s var(--ease), border-color 0.18s var(--ease),
    transform 0.18s var(--ease);
}

.cta-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  color: var(--white);
}

.cta-card--lead {
  grid-column: 1 / -1;
  background: var(--signal);
  border-color: var(--signal);
  color: var(--navy);
}

.cta-card--lead:hover {
  background: var(--signal-lift);
  border-color: var(--signal-lift);
  color: var(--navy);
}

.cta-card__icon {
  width: 2.4rem;
  height: 2.4rem;
  flex: none;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  opacity: 0.75;
}

.cta-card__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.cta-card__rank {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.62;
  display: block;
  margin-bottom: 0.25rem;
}

.cta-card__label {
  font-family: var(--display);
  font-stretch: 112%;
  font-weight: 600;
  font-size: 1.12rem;
  line-height: 1.2;
  display: block;
  margin-bottom: 0.3rem;
}

.cta-card--lead .cta-card__label {
  font-size: 1.32rem;
}

.cta-card__hint {
  font-size: 0.88rem;
  opacity: 0.78;
  line-height: 1.5;
  display: block;
}

/* Related-pages strip */
.related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
}

.related a {
  display: block;
  padding: var(--s4) var(--s5);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-decoration: none;
  background: var(--white);
  transition: border-color 0.18s var(--ease), transform 0.18s var(--ease);
}

.related a:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
}

.related__kicker {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate-soft);
  display: block;
  margin-bottom: 0.3rem;
}

.related__title {
  font-family: var(--display);
  font-stretch: 112%;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--navy);
  display: block;
  margin-bottom: 0.25rem;
}

.related__why {
  font-size: 0.87rem;
  color: var(--slate);
  line-height: 1.45;
  display: block;
}

/* ------------------------------------------------------------- form ------ */

.form-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-md);
}

.field {
  margin-bottom: var(--s4);
}

.field label {
  display: block;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.4rem;
}

.field .req {
  color: var(--signal-deep);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  font-family: var(--body);
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius);
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(54, 111, 130, 0.16);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
}

.field-consent {
  display: flex;
  gap: var(--s3);
  align-items: flex-start;
  margin-bottom: var(--s5);
  font-size: 0.86rem;
  color: var(--slate);
  line-height: 1.5;
}

.field-consent input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
  flex: none;
  accent-color: var(--teal);
}

.form-note {
  font-size: 0.8rem;
  color: var(--slate-soft);
  margin-top: var(--s4);
  line-height: 1.5;
}

.form-status {
  display: none;
  padding: var(--s4);
  border-radius: var(--radius);
  font-size: 0.92rem;
  margin-bottom: var(--s4);
}

.form-status.is-visible {
  display: block;
}

.form-status--ok {
  background: #e8f3ee;
  border-left: 3px solid #2f7d5b;
  color: #1d5540;
}

.form-status--err {
  background: #fdefe6;
  border-left: 3px solid var(--signal-deep);
  color: #8c520f;
}

/* Honeypot — hidden from people, visible to bots */
.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

/* ----------------------------------------------------------- footer ------ */

.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.66);
  padding-block: var(--s8) var(--s5);
  font-size: 0.92rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--s6);
  padding-bottom: var(--s7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

/* The footer has vertical room, so it carries the full stacked lockup — in the
   reversed variant, since the supplied mark is navy on a navy band. */
.footer__logo {
  width: 190px;
  max-width: 100%;
  height: auto;
  margin-bottom: var(--s5);
  opacity: 0.92;
}

.footer__tagline {
  font-family: var(--display);
  font-stretch: 112%;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: var(--s3);
}

.footer h4 {
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  margin-bottom: var(--s4);
  font-stretch: normal;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.footer__cta-list li {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.footer__rank {
  font-family: var(--mono);
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.38);
  flex: none;
}

.footer__legal {
  padding-top: var(--s5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3) var(--s6);
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.footer__legal p {
  margin: 0;
  max-width: 70ch;
}

.footer__regs {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2) var(--s5);
  margin-top: var(--s3);
}

.tbc {
  color: var(--signal);
  border-bottom: 1px dotted var(--signal);
}

/* ------------------------------------------------------- reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* --------------------------------------------------- responsive ---------- */

@media (max-width: 1040px) {
  .brand__word {
    display: none;
  }

  .nav {
    display: none;
  }

  .burger {
    display: flex;
  }

  .masthead__cta .btn {
    display: none;
  }

  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: var(--s6) var(--s5);
  }
}

@media (max-width: 900px) {
  .hero__grid,
  .hero--compact .hero__grid,
  .split,
  .split--wide-left,
  .split--wide-right {
    grid-template-columns: 1fr;
  }

  .hero__figure {
    order: -1;
    margin-bottom: var(--s4);
  }

  .hero__figure::before {
    inset: 1rem -1rem -1rem 1rem;
  }

  .grid--3,
  .grid--2,
  .grid--products,
  .assets,
  .steps,
  .related,
  .cta-deck {
    grid-template-columns: 1fr;
  }

  .steps {
    gap: var(--s5);
  }

  .cta-deck {
    gap: var(--s3);
  }

  .lede,
  .hero__lede {
    max-width: none;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 1rem;
  }

  .shell {
    padding-inline: var(--s4);
  }

  .grid--4 {
    grid-template-columns: 1fr;
  }

  .plate__row {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr;
  }

  .masthead__phone span {
    display: none;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .btn-row {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .masthead,
  .footer,
  .mobile-nav,
  .cta-deck,
  .burger {
    display: none !important;
  }

  body {
    color: #000;
  }
}
