/* ==================================================================
   Asset Recovery Limited — design system + components
   Palette : ink navy / warm paper / brass
   Type    : Fraunces (display serif) + Inter (UI sans)
   ================================================================== */

/* ------------------------------------------------------------------
   1. TOKENS
   ------------------------------------------------------------------ */
:root {
  --ink-900: #080f17;
  --ink-800: #0c1620;
  --ink-700: #12212f;
  --ink-600: #1b3145;
  --ink-500: #2c4a68;
  --ink-400: #4a6a8c;
  --ink-300: #7b93ab;
  --ink-200: #b3c2d0;

  --paper:   #fbfaf7;
  --paper-2: #f4f1ea;
  --paper-3: #eae5db;
  --white:   #ffffff;

  --brass-700: #7d5f2f;
  --brass-600: #9a7740;
  --brass:     #b08a4f;
  --brass-400: #c9a76f;
  --brass-300: #ddc396;
  --brass-100: #f2e8d5;

  --success: #1f6f5c;
  --danger:  #9b2c2c;

  --line:        rgba(12, 22, 32, .11);
  --line-strong: rgba(12, 22, 32, .20);
  --line-ink:    rgba(255, 255, 255, .12);
  --line-ink-2:  rgba(255, 255, 255, .22);

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --fs-xs:   .75rem;
  --fs-sm:   .8125rem;
  --fs-base: .9375rem;
  --fs-md:   1rem;
  --fs-lg:   1.0625rem;

  --fs-d1: clamp(2.6rem, 1.35rem + 4.6vw, 5.25rem);
  --fs-d2: clamp(2.1rem, 1.25rem + 3.1vw, 3.75rem);
  --fs-d3: clamp(1.65rem, 1.15rem + 1.9vw, 2.6rem);
  --fs-d4: clamp(1.28rem, 1.06rem + .82vw, 1.7rem);

  --gutter: clamp(1.25rem, .75rem + 2vw, 2.5rem);
  --section-y: clamp(4.5rem, 3rem + 6.5vw, 9rem);
  --maxw: 1240px;
  --maxw-text: 68ch;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

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

  --shadow-sm: 0 1px 2px rgba(8, 15, 23, .05), 0 2px 8px rgba(8, 15, 23, .04);
  --shadow-md: 0 2px 6px rgba(8, 15, 23, .06), 0 12px 34px -8px rgba(8, 15, 23, .12);
  --shadow-lg: 0 4px 12px rgba(8, 15, 23, .07), 0 28px 64px -16px rgba(8, 15, 23, .20);

  --header-h: 78px;
}

/* ------------------------------------------------------------------
   2. RESET
   ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

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

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; }

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

::selection { background: var(--brass-300); color: var(--ink-900); }

/* ------------------------------------------------------------------
   3. LAYOUT PRIMITIVES
   ------------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 880px; }

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(3rem, 2rem + 4vw, 5.5rem); }
.section--paper-2 { background: var(--paper-2); }

.section--ink { background: var(--ink-800); color: var(--ink-200); }
.section--ink h2, .section--ink h3, .section--ink h4 { color: var(--white); }

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  background: var(--ink-800);
  color: var(--white);
  padding: .7rem 1.1rem;
  border-radius: var(--radius);
  font-size: var(--fs-sm);
  font-weight: 600;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ------------------------------------------------------------------
   4. TYPOGRAPHY
   ------------------------------------------------------------------ */
.display, h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "SOFT" 0, "WONK" 0;
  color: var(--ink-900);
  letter-spacing: -.018em;
  line-height: 1.08;
  text-wrap: balance;
}

h1, .h1 { font-size: var(--fs-d1); line-height: 1.03; letter-spacing: -.028em; }
h2, .h2 { font-size: var(--fs-d2); line-height: 1.08; letter-spacing: -.022em; }
h3, .h3 { font-size: var(--fs-d3); line-height: 1.16; }
h4, .h4 {
  font-family: var(--font-sans);
  font-size: var(--fs-d4);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -.011em;
  color: var(--ink-900);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brass-600);
  margin-bottom: 1.15rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: .55;
}
.section--ink .eyebrow { color: var(--brass-300); }

.lede {
  font-size: clamp(1.05rem, .98rem + .35vw, 1.28rem);
  line-height: 1.62;
  color: var(--ink-500);
  max-width: 62ch;
}
.section--ink .lede { color: var(--ink-200); }

.section-head { max-width: 60ch; margin-bottom: clamp(2.5rem, 1.5rem + 3vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head p { margin-top: 1.15rem; }

.prose { max-width: var(--maxw-text); }
.prose > * + * { margin-top: 1.15em; }
.prose h2 { margin-top: 2.6em; font-size: var(--fs-d3); }
.prose h3 {
  margin-top: 2em;
  font-family: var(--font-sans);
  font-weight: 650;
  font-size: 1.12rem;
  letter-spacing: -.008em;
}
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--ink-500); }
.prose ul, .prose ol { padding-left: 1.35rem; }
.prose li { margin-top: .5em; }
.prose ul li { list-style: none; position: relative; }
.prose ul li::before {
  content: "";
  position: absolute;
  left: -1.05rem;
  top: .72em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--brass);
}
.prose ol { list-style: decimal; }
.prose ol li::marker { color: var(--brass-600); font-weight: 600; }
.prose a {
  color: var(--ink-800);
  text-decoration: underline;
  text-decoration-color: var(--brass-300);
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  transition: text-decoration-color .2s var(--ease);
}
.prose a:hover { text-decoration-color: var(--brass); }
.prose strong { color: var(--ink-800); font-weight: 620; }
.prose table { width: 100%; border-collapse: collapse; font-size: var(--fs-base); }
.prose th, .prose td { text-align: left; padding: .8rem .9rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { font-weight: 650; color: var(--ink-800); background: var(--paper-2); }
.prose td { color: var(--ink-500); }
.table-wrap { overflow-x: auto; }

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

/* ------------------------------------------------------------------
   5. BUTTONS
   ------------------------------------------------------------------ */
.btn {
  --btn-bg: var(--ink-800);
  --btn-fg: var(--white);
  --btn-bd: var(--ink-800);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 1.6rem;
  font-size: var(--fs-base);
  font-weight: 600;
  line-height: 1;
  border: 1px solid var(--btn-bd);
  border-radius: var(--radius);
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out),
              background-color .3s var(--ease), color .3s var(--ease),
              border-color .3s var(--ease);
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--brass);
  transform: translateY(101%);
  transition: transform .45s var(--ease-out);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:hover::after { transform: translateY(0); }
.btn:active { transform: translateY(0); }
.btn svg { width: 17px; height: 17px; flex: none; }
.btn .arr { transition: transform .35s var(--ease-out); }
.btn:hover .arr { transform: translateX(4px); }

.btn--brass { --btn-bg: var(--brass); --btn-bd: var(--brass); --btn-fg: var(--ink-900); }
.btn--brass::after { background: var(--ink-800); }
.btn--brass:hover { color: var(--white); }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink-800); --btn-bd: var(--line-strong); }
.btn--ghost::after { background: var(--ink-800); }
.btn--ghost:hover { color: var(--white); border-color: var(--ink-800); }

.btn--ghost-ink { --btn-bg: transparent; --btn-fg: var(--white); --btn-bd: var(--line-ink-2); }
.btn--ghost-ink::after { background: var(--white); }
.btn--ghost-ink:hover { color: var(--ink-900); border-color: var(--white); }

.btn--lg { padding: 1.1rem 2rem; font-size: var(--fs-lg); }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .55; pointer-events: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--ink-800);
  padding-bottom: 3px;
  background-image: linear-gradient(var(--brass), var(--brass));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1.5px;
  transition: background-size .4s var(--ease-out), color .3s var(--ease);
}
.link-arrow:hover { background-size: 100% 1.5px; }
.link-arrow svg { width: 15px; height: 15px; transition: transform .35s var(--ease-out); }
.link-arrow:hover svg { transform: translateX(4px); }
.section--ink .link-arrow { color: var(--white); }

/* ------------------------------------------------------------------
   6. HEADER / NAV
   ------------------------------------------------------------------ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background-color .45s var(--ease), box-shadow .45s var(--ease),
              height .45s var(--ease), border-color .45s var(--ease);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
}

.site-header[data-mode="over"] { background: transparent; }
.site-header[data-mode="over"] .brand__text { color: var(--white); }
.site-header[data-mode="over"] .brand__sub { color: var(--ink-300); }
.site-header[data-mode="over"] .nav__link { color: rgba(255,255,255,.82); }
.site-header[data-mode="over"] .nav__link:hover,
.site-header[data-mode="over"] .nav__link[aria-current="page"] { color: var(--white); }
.site-header[data-mode="over"] .burger span { background: var(--white); }
.site-header[data-mode="over"] .brand__mark { --mark-ink: var(--white); --mark-brass: var(--brass-400); }
.site-header[data-mode="over"] .btn--ghost { --btn-fg: var(--white); --btn-bd: var(--line-ink-2); }
.site-header[data-mode="over"] .btn--ghost::after { background: var(--white); }
.site-header[data-mode="over"] .btn--ghost:hover { color: var(--ink-900); border-color: var(--white); }

.site-header[data-mode="solid"] {
  background: rgba(251, 250, 247, .88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
  height: 68px;
}

.brand { display: inline-flex; align-items: center; gap: .78rem; flex: none; }
.brand__mark { --mark-ink: var(--ink-800); --mark-brass: var(--brass); width: 38px; height: 38px; flex: none; }
.brand__text {
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 500;
  letter-spacing: -.017em;
  line-height: 1.1;
  color: var(--ink-900);
  white-space: nowrap;
}
.brand__sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--ink-300);
  margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: 2.35rem; }
.nav__list { display: flex; align-items: center; gap: 2.1rem; list-style: none; }
.nav__link {
  position: relative;
  font-size: var(--fs-base);
  font-weight: 500;
  color: var(--ink-500);
  padding-block: .4rem;
  transition: color .3s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease-out);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--ink-900); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 0; border: 0; background: none; cursor: pointer;
}
.burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink-800);
  margin-inline: auto;
  transition: transform .4s var(--ease-out), opacity .25s var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--ink-800);
  padding: calc(var(--header-h) + 2.5rem) var(--gutter) 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .4s var(--ease), transform .5s var(--ease-out), visibility .4s;
  overflow-y: auto;
}
.mobile-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-nav__list { list-style: none; display: flex; flex-direction: column; }
.mobile-nav__list li { border-bottom: 1px solid var(--line-ink); }
.mobile-nav__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 0;
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--white);
  letter-spacing: -.02em;
}
.mobile-nav__list a span {
  color: var(--brass-400);
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 600;
}
.mobile-nav__foot { margin-top: auto; color: var(--ink-300); font-size: var(--fs-sm); }
.mobile-nav__foot a { color: var(--brass-300); }
body.nav-open { overflow: hidden; }

@media (max-width: 900px) {
  .nav__list { display: none; }
  .nav > .btn { display: none; }
  .burger { display: flex; }
}

/* ------------------------------------------------------------------
   7. HERO
   ------------------------------------------------------------------ */
.hero {
  position: relative;
  background: var(--ink-900);
  color: var(--white);
  padding-top: calc(var(--header-h) + clamp(3.5rem, 2rem + 7vw, 7rem));
  padding-bottom: clamp(4rem, 2.5rem + 6vw, 7.5rem);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__bg::before {
  content: "";
  position: absolute;
  width: 130vmax; height: 130vmax;
  top: -62vmax; right: -48vmax;
  background: radial-gradient(circle at center,
              rgba(176, 138, 79, .17) 0%,
              rgba(176, 138, 79, .07) 32%,
              transparent 62%);
  animation: drift 26s var(--ease) infinite alternate;
}
.hero__bg::after {
  content: "";
  position: absolute;
  width: 90vmax; height: 90vmax;
  bottom: -52vmax; left: -30vmax;
  background: radial-gradient(circle at center, rgba(44, 74, 104, .5) 0%, transparent 60%);
}
@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(-5%, 4%, 0) scale(1.1); }
}

.hero__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: clamp(60px, 8vw, 104px) clamp(60px, 8vw, 104px);
  mask-image: radial-gradient(ellipse 90% 75% at 50% 35%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 75% at 50% 35%, #000 20%, transparent 78%);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(0, .68fr);
  gap: clamp(2.5rem, 1rem + 3.6vw, 4rem);
  align-items: center;
}
@media (max-width: 1120px) {
  .hero__inner { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); }
}
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 3rem; }
}

/* Sized so the headline settles on 2–3 lines in the wider column
   rather than the 4–5 the global display scale would produce. */
.hero h1 {
  color: var(--white);
  font-size: clamp(2.45rem, 1.5rem + 3.4vw, 4.3rem);
  line-height: 1.06;
  letter-spacing: -.03em;
}
.hero h1 em {
  font-style: italic;
  font-variation-settings: "SOFT" 8, "WONK" 1;
  color: var(--brass-400);
}
.hero__lede { margin-top: 1.6rem; color: rgba(255,255,255,.72); max-width: 54ch; }
.hero .btn-row { margin-top: 2.4rem; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .48rem .95rem .48rem .55rem;
  border: 1px solid var(--line-ink-2);
  border-radius: 100px;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.04);
  margin-bottom: 1.9rem;
  backdrop-filter: blur(6px);
}
.hero__badge b {
  display: inline-block;
  padding: .22rem .5rem;
  border-radius: 100px;
  background: var(--brass);
  color: var(--ink-900);
  font-size: 10px;
  letter-spacing: .06em;
}

.hero__meta {
  margin: 3.2rem 0 0;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line-ink);
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
}
.hero__meta dt {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--ink-300);
  margin-bottom: .38rem;
}
.hero__meta dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.22rem;
  color: var(--white);
  letter-spacing: -.012em;
}

.hero__visual { position: relative; }
.vault {
  position: relative;
  border: 1px solid var(--line-ink-2);
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, rgba(255,255,255,.075), rgba(255,255,255,.015) 55%);
  backdrop-filter: blur(10px);
  padding: clamp(1.5rem, 1rem + 1.6vw, 2.35rem);
  box-shadow: var(--shadow-lg);
}
.vault__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--line-ink);
}
.vault__title {
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 650;
  color: var(--white);
}
.vault__dot {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--brass-300);
}
.vault__dot i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brass-400);
  animation: pulse 2.6s var(--ease) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(201,167,111,.55); }
  70%  { box-shadow: 0 0 0 9px rgba(201,167,111,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,167,111,0); }
}

.vault__rows { list-style: none; }
.vault__rows li {
  display: flex;
  align-items: center;
  gap: .95rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line-ink);
}
.vault__rows li:last-child { border-bottom: 0; padding-bottom: 0; }
.vault__ico {
  flex: none;
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-ink-2);
  border-radius: var(--radius);
  color: var(--brass-300);
  background: rgba(255,255,255,.04);
}
.vault__ico svg { width: 18px; height: 18px; }
.vault__rows li > span:last-child { display: block; min-width: 0; }
.vault__label {
  display: block;
  font-size: var(--fs-base);
  font-weight: 550;
  color: var(--white);
  line-height: 1.35;
}
.vault__note {
  display: block;
  font-size: var(--fs-sm);
  color: var(--ink-300);
  line-height: 1.45;
  margin-top: 2px;
}

/* ------------------------------------------------------------------
   8. PAGE HEADER (interior pages)
   ------------------------------------------------------------------ */
.page-head {
  position: relative;
  background: var(--ink-900);
  color: var(--white);
  padding-top: calc(var(--header-h) + clamp(3rem, 2rem + 4.5vw, 5.5rem));
  padding-bottom: clamp(3rem, 2rem + 4vw, 5rem);
  overflow: hidden;
  isolation: isolate;
}
.page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 120% at 88% 10%, rgba(176,138,79,.16), transparent 62%),
    linear-gradient(to right, rgba(255,255,255,.04) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(to bottom, rgba(255,255,255,.04) 1px, transparent 1px) 0 0 / 96px 96px;
  mask-image: radial-gradient(ellipse 100% 100% at 60% 30%, #000 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 100% 100% at 60% 30%, #000 30%, transparent 85%);
}
.page-head h1 { color: var(--white); font-size: var(--fs-d2); }
.page-head .lede { margin-top: 1.25rem; color: rgba(255,255,255,.7); }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem;
  list-style: none;
  font-size: var(--fs-sm);
  color: var(--ink-300);
  margin-bottom: 1.6rem;
}
.breadcrumb a { color: var(--ink-200); transition: color .25s var(--ease); }
.breadcrumb a:hover { color: var(--brass-300); }
.breadcrumb li + li::before { content: "/"; margin-right: .55rem; opacity: .45; }
.breadcrumb [aria-current] { color: var(--brass-300); }

/* ------------------------------------------------------------------
   9. SERVICE CARDS
   ------------------------------------------------------------------ */
.grid-services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.svc {
  position: relative;
  background: var(--paper);
  padding: clamp(1.5rem, .95rem + 1.15vw, 2.1rem);
  display: flex;
  flex-direction: column;
  gap: .85rem;
  transition: background-color .4s var(--ease);
  overflow: hidden;
  isolation: isolate;
}

/* Four across on desktop, two on tablet, one on phone. */
@media (max-width: 1080px) {
  .grid-services { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .grid-services { grid-template-columns: 1fr; }
}
.svc::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 2px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease-out);
}
.svc:hover { background: var(--white); }
.svc:hover::before { transform: scaleX(1); }
.svc__num {
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 500;
  color: var(--brass-600);
  letter-spacing: .04em;
}
.svc__ico {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--brass-600);
  background: var(--paper-2);
  margin-bottom: .2rem;
  transition: background-color .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.svc__ico svg { width: 19px; height: 19px; }
.svc:hover .svc__ico { background: var(--ink-800); color: var(--brass-300); border-color: var(--ink-800); }
.svc h3 {
  font-size: clamp(1.1rem, .95rem + .45vw, 1.3rem);
  letter-spacing: -.014em;
  text-wrap: balance;
}
.svc p { color: var(--ink-500); font-size: var(--fs-sm); line-height: 1.62; }
.svc__list { list-style: none; margin-top: auto; padding-top: .55rem; }
.svc__list li {
  position: relative;
  padding-left: 1.2rem;
  font-size: var(--fs-sm);
  line-height: 1.5;
  color: var(--ink-500);
  margin-top: .5rem;
}
/* Proper tick: unequal arms, rotated 45deg. */
.svc__list li::before {
  content: "";
  position: absolute;
  left: 1px; top: .32em;
  width: 5px; height: 9px;
  border-right: 1.5px solid var(--brass);
  border-bottom: 1.5px solid var(--brass);
  transform: rotate(45deg);
}

/* ------------------------------------------------------------------
   10. SPLIT / FEATURE
   ------------------------------------------------------------------ */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(2.5rem, 1.5rem + 4vw, 5rem);
  align-items: center;
}
.split--start { align-items: start; }

.figure-panel {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--ink-800);
  padding: clamp(1.75rem, 1.2rem + 2vw, 3rem);
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
}
.figure-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 90% 70% at 15% 0%, rgba(176,138,79,.22), transparent 60%),
    linear-gradient(to right, rgba(255,255,255,.05) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(to bottom, rgba(255,255,255,.05) 1px, transparent 1px) 0 0 / 64px 64px;
}
.figure-panel h3 { color: var(--white); }

/* ------------------------------------------------------------------
   11. PROCESS / STEPS
   ------------------------------------------------------------------ */
.steps { list-style: none; counter-reset: step; display: grid; gap: 0; }
.step {
  counter-increment: step;
  position: relative;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: clamp(1rem, .5rem + 1.5vw, 2.25rem);
  padding: clamp(1.75rem, 1.2rem + 1.5vw, 2.5rem) 0;
  border-top: 1px solid var(--line-ink);
}
.step:last-child { border-bottom: 1px solid var(--line-ink); }
.step__num {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 1.6rem + 1.6vw, 3.1rem);
  line-height: 1;
  color: var(--brass);
  opacity: .85;
  letter-spacing: -.03em;
}
.step__num::before { content: counter(step, decimal-leading-zero); }
.step h3 { font-size: 1.42rem; margin-bottom: .6rem; }
.step p { color: var(--ink-200); max-width: 58ch; font-size: var(--fs-base); }
@media (max-width: 640px) {
  .step { grid-template-columns: 1fr; gap: .75rem; }
}

/* ------------------------------------------------------------------
   12. STATS
   ------------------------------------------------------------------ */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(1.5rem, 1rem + 2vw, 3rem);
  list-style: none;
}
.stat { border-top: 1px solid var(--line); padding-top: 1.35rem; }
.section--ink .stat { border-top-color: var(--line-ink); }
.stat__val {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 1.6rem + 2.2vw, 3.4rem);
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--ink-900);
  display: block;
}
.section--ink .stat__val { color: var(--white); }
.stat__lbl {
  display: block;
  margin-top: .7rem;
  font-size: var(--fs-base);
  color: var(--ink-400);
  max-width: 26ch;
}
.section--ink .stat__lbl { color: var(--ink-300); }

/* ------------------------------------------------------------------
   13. PEOPLE
   ------------------------------------------------------------------ */
.people {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.25rem, .75rem + 1.5vw, 2rem);
  list-style: none;
}
.person {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: clamp(1.5rem, 1rem + 1.4vw, 2.25rem);
  transition: box-shadow .4s var(--ease), transform .4s var(--ease-out), border-color .4s var(--ease);
}
.person:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--line-strong);
}
.person__top { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.4rem; }
.person__avatar {
  flex: none;
  width: 58px; height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink-800);
  color: var(--brass-300);
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: .02em;
}
.person__name { font-family: var(--font-display); font-size: 1.4rem; color: var(--ink-900); letter-spacing: -.018em; line-height: 1.2; }
.person__role { font-size: var(--fs-sm); color: var(--brass-600); font-weight: 600; margin-top: .25rem; }
.person__facts { list-style: none; }
.person__facts > li,
.person__facts > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .62rem 0;
  border-top: 1px solid var(--line);
  font-size: var(--fs-base);
}
.person__facts dt, .person__facts .k { color: var(--ink-400); }
.person__facts dd, .person__facts .v { margin: 0; color: var(--ink-800); font-weight: 550; text-align: right; }

/* ------------------------------------------------------------------
   14. VALUES / ICON LIST
   ------------------------------------------------------------------ */
.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1.75rem, 1rem + 2.5vw, 3.25rem);
  list-style: none;
}
.value__ico {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  border: 1px solid var(--line-ink-2);
  color: var(--brass-300);
  margin-bottom: 1.1rem;
}
.value__ico svg { width: 19px; height: 19px; }
.value h4 { margin-bottom: .55rem; font-size: 1.12rem; }
.value p { font-size: var(--fs-base); color: var(--ink-300); }

/* ------------------------------------------------------------------
   15. FAQ / ACCORDION
   ------------------------------------------------------------------ */
.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: 1.5rem;
  padding: 1.5rem 0;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink-900);
  letter-spacing: -.008em;
  transition: color .3s var(--ease);
}
.faq__q:hover { color: var(--brass-700); }
.faq__sign {
  flex: none;
  position: relative;
  width: 20px; height: 20px;
  margin-top: 3px;
}
.faq__sign::before, .faq__sign::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--brass);
  transform: translate(-50%, -50%);
  transition: transform .4s var(--ease-out), opacity .3s var(--ease);
}
.faq__sign::before { width: 14px; height: 1.5px; }
.faq__sign::after { width: 1.5px; height: 14px; }
.faq__q[aria-expanded="true"] .faq__sign::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .45s var(--ease-out);
}
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p {
  padding-bottom: 1.6rem;
  color: var(--ink-500);
  max-width: 68ch;
  font-size: var(--fs-base);
}
.faq__a p + p { padding-top: .9rem; }

/* ------------------------------------------------------------------
   16. NOTICE / CALLOUT
   ------------------------------------------------------------------ */
.notice {
  display: flex;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  border: 1px solid var(--line);
  border-left: 3px solid var(--brass);
  border-radius: var(--radius);
  background: var(--brass-100);
  font-size: var(--fs-base);
  color: var(--ink-600);
}
.notice svg { width: 20px; height: 20px; flex: none; color: var(--brass-700); margin-top: 2px; }
.notice strong { color: var(--ink-800); }
.notice--ink {
  background: rgba(255,255,255,.045);
  border-color: var(--line-ink);
  border-left-color: var(--brass);
  color: var(--ink-200);
}
.notice--ink svg { color: var(--brass-300); }
.notice--ink strong { color: var(--white); }
.notice a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }

/* ------------------------------------------------------------------
   17. CTA BAND
   ------------------------------------------------------------------ */
.cta {
  position: relative;
  background: var(--ink-900);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse 60% 100% at 80% 50%, rgba(176,138,79,.2), transparent 62%);
}
.cta h2 { color: var(--white); }
.cta p { color: rgba(255,255,255,.72); margin-top: 1.15rem; }
.cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(2rem, 1rem + 3vw, 4rem);
}
.cta__inner > div { min-width: min(100%, 380px); flex: 1 1 420px; }

/* ------------------------------------------------------------------
   18. FORMS
   ------------------------------------------------------------------ */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 1.1rem + 1.8vw, 2.75rem);
  box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.15rem; }
.field--full { grid-column: 1 / -1; }
@media (max-width: 620px) {
  .form-grid { grid-template-columns: 1fr; }
}

.field { display: flex; flex-direction: column; gap: .45rem; }
.field label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink-700);
  letter-spacing: .005em;
}
.field label .req { color: var(--brass-700); margin-left: 2px; }
.field .hint { font-size: var(--fs-xs); color: var(--ink-400); font-weight: 400; }

.input, .select, .textarea {
  width: 100%;
  padding: .82rem .95rem;
  font-size: var(--fs-base);
  color: var(--ink-800);
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease);
  appearance: none;
}
.textarea { min-height: 148px; resize: vertical; line-height: 1.6; }
.input::placeholder, .textarea::placeholder { color: var(--ink-300); }
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(176,138,79,.16);
}
.select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%234a6a8c' stroke-width='1.6'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px 8px;
  padding-right: 2.6rem;
  cursor: pointer;
}
.field.has-error .input,
.field.has-error .select,
.field.has-error .textarea { border-color: var(--danger); }
.field .err { font-size: var(--fs-xs); color: var(--danger); font-weight: 500; min-height: 1em; }

.check { display: flex; align-items: flex-start; gap: .7rem; cursor: pointer; }
.check input { flex: none; width: 18px; height: 18px; margin-top: 2px; accent-color: var(--brass); cursor: pointer; }
.check span { font-size: var(--fs-sm); color: var(--ink-500); line-height: 1.55; }
.check a { color: var(--ink-800); text-decoration: underline; text-underline-offset: 2px; }

.hp-field {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

[hidden] { display: none !important; }

.alert {
  display: flex;
  gap: .85rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  font-size: var(--fs-base);
  margin-bottom: 1.6rem;
  border: 1px solid;
}
.alert svg { width: 19px; height: 19px; flex: none; margin-top: 2px; }
.alert--ok { background: #eef6f3; border-color: #bcdcd2; color: #175646; }
.alert--err { background: #fdf0f0; border-color: #f0cccc; color: #8a2727; }
.alert strong { display: block; margin-bottom: .15rem; }

/* Contact detail list */
.contact-list { list-style: none; display: grid; gap: 1.6rem; }
.contact-list li { display: flex; gap: 1rem; }
.contact-list__ico {
  flex: none;
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
  color: var(--brass-600);
}
.contact-list__ico svg { width: 19px; height: 19px; }
.contact-list dt {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-bottom: .3rem;
}
.contact-list dd { margin: 0; color: var(--ink-800); font-size: var(--fs-lg); font-weight: 550; line-height: 1.45; }
.contact-list dd a { transition: color .25s var(--ease); }
.contact-list dd a:hover { color: var(--brass-700); }
.contact-list dd small { display: block; font-size: var(--fs-sm); font-weight: 400; color: var(--ink-400); margin-top: .2rem; }

/* ------------------------------------------------------------------
   19. FOOTER
   ------------------------------------------------------------------ */
.site-footer { background: var(--ink-900); color: var(--ink-300); padding-top: clamp(3.5rem, 2.5rem + 4vw, 5.5rem); }
.site-footer h5 {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.35rem;
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 1rem + 3vw, 3.5rem);
  padding-bottom: 3rem;
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }

.footer-brand .brand { margin-bottom: 1.35rem; }
.footer-brand .brand__text { color: var(--white); }
.footer-brand .brand__mark { --mark-ink: var(--white); --mark-brass: var(--brass-400); }
.footer-brand p { font-size: var(--fs-base); color: var(--ink-300); max-width: 42ch; }

.footer-list { list-style: none; display: grid; gap: .72rem; }
.footer-list a {
  font-size: var(--fs-base);
  color: var(--ink-300);
  transition: color .25s var(--ease);
  display: inline-block;
}
.footer-list a:hover { color: var(--brass-300); }
.footer-list address { font-style: normal; font-size: var(--fs-base); color: var(--ink-300); line-height: 1.7; }

.footer-legal {
  border-top: 1px solid var(--line-ink);
  padding-block: 1.75rem 2.25rem;
  font-size: var(--fs-sm);
  color: var(--ink-400);
}
.footer-legal p + p { margin-top: .7rem; }
.footer-legal__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-ink);
}
.footer-legal__bar nav { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer-legal__bar a { transition: color .25s var(--ease); }
.footer-legal__bar a:hover { color: var(--brass-300); }

/* ------------------------------------------------------------------
   20. COOKIE BANNER
   ------------------------------------------------------------------ */
.cookie-bar {
  position: fixed;
  left: var(--gutter);
  bottom: var(--gutter);
  z-index: 120;
  max-width: 430px;
  background: var(--ink-800);
  color: var(--ink-200);
  border: 1px solid var(--line-ink-2);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-lg);
  font-size: var(--fs-base);
  transform: translateY(140%);
  transition: transform .6s var(--ease-out);
}
.cookie-bar.is-visible { transform: translateY(0); }
.cookie-bar h5 {
  font-size: var(--fs-sm);
  font-weight: 650;
  color: var(--white);
  margin-bottom: .5rem;
  letter-spacing: .01em;
}
.cookie-bar a { color: var(--brass-300); text-decoration: underline; text-underline-offset: 2px; }
.cookie-bar .btn-row { margin-top: 1.15rem; }
.cookie-bar .btn { padding: .68rem 1.15rem; font-size: var(--fs-sm); }
@media (max-width: 560px) {
  .cookie-bar { left: 12px; right: 12px; bottom: 12px; max-width: none; }
}

/* ------------------------------------------------------------------
   21. SCROLL REVEAL
   ------------------------------------------------------------------ */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
}

/* ------------------------------------------------------------------
   22. UTILITIES
   ------------------------------------------------------------------ */
.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;
}
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }
.section--ink .rule { background: var(--line-ink); }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 1.25rem; }
.mt-3 { margin-top: 2rem; }
.mt-4 { margin-top: 3rem; }
