/* Start custom CSS for html, class: .elementor-element-123f3c3 */:root {
    --ink: #0F1419;
    --ink-soft: #1A2029;
    --white: #FFFFFF;
    --paper: #F5F6F8;
    --paper-2: #EEF0F4;
    --blue: #0E4DA4;
    --blue-deep: #072D65;
    --blue-bright: #1D6BD8;
    --yellow: #F5B800;
    --body: #374151;
    --muted: #4B5563;
    --steel: #6B7280;
    --line: #E5E7EB;
    --error: #E0556B;
    --bg-1: #FAFBFC;
    --bg-2: #F4F5F8;

    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
    --display: 'Space Grotesk', 'Inter', sans-serif;
    --hand: 'Caveat', cursive;

    --wrap: 1880px;
    --gutter: clamp(1.25rem, 3.5vw, 4rem);
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
    -webkit-text-size-adjust: 100%;
    background-color: var(--blue);
    overscroll-behavior-y: none;
}

body {
    margin: 0;
    background-color: var(--white);
    color: var(--ink);
    font-family: var(--sans);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    overscroll-behavior-y: none;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9000;
    pointer-events: none;
    opacity: 0.028;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3, h4, p, figure, dl, dd, dt, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg, iframe { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; padding: 0; color: inherit; }

:focus-visible {
    outline: 2px solid var(--blue-bright);
    outline-offset: 3px;
    border-radius: 1px;
}

::selection { background-color: var(--blue); color: var(--white); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: var(--gutter); }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 1.25rem;
}
.eyebrow::before {
    content: "";
    width: 40px;
    height: 2px;
    background-color: var(--blue);
}

.hand {
    font-family: var(--hand);
    font-weight: 700;
    color: var(--blue);
    display: inline-block;
    transform: rotate(-2deg);
    letter-spacing: -0.005em;
    line-height: 0.9;
}

.reveal-on [data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    filter: blur(10px);
    transition: opacity 0.7s ease, transform 0.8s var(--ease), filter 0.7s ease;
}
.reveal-on [data-reveal].in { opacity: 1; transform: none; filter: blur(0); }
.reveal-on [data-reveal][data-reveal="2"] { transition-delay: 0.08s; }
.reveal-on [data-reveal][data-reveal="3"] { transition-delay: 0.16s; }
.reveal-on [data-reveal][data-reveal="4"] { transition-delay: 0.24s; }

.reveal-on [data-reveal][data-anim="left"] { transform: translateX(-44px); filter: blur(8px); }
.reveal-on [data-reveal][data-anim="right"] { transform: translateX(44px); filter: blur(8px); }
.reveal-on [data-reveal][data-anim="scale"] { transform: scale(0.93); }
.reveal-on [data-reveal][data-anim="fade"] { transform: none; }
.reveal-on [data-reveal][data-anim].in { transform: none; filter: blur(0); }

.skip-link {
    position: fixed;
    top: -120px;
    left: 1rem;
    z-index: 400;
    padding: 0.75rem 1.25rem;
    background-color: var(--blue);
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
    transition: top 200ms ease;
}
.skip-link:focus { top: 1rem; }

.scroll-bar {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 100%;
    transform: scaleX(0);
    transform-origin: left center;
    background: linear-gradient(90deg, var(--blue), var(--blue-bright));
    z-index: 300;
    pointer-events: none;
}

.nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 120;
    color: var(--white);
    pointer-events: none;
}
.nav a, .nav button { pointer-events: auto; }

.nav__utility {
    pointer-events: auto;
    background-color: var(--ink);
    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    max-height: 46px;
    overflow: hidden;
    transition: max-height 320ms ease, opacity 260ms ease;
}
.nav.scrolled .nav__utility { max-height: 0; opacity: 0; }
.nav__utility .wrap {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    align-items: center;
    padding-block: 0.55rem;
}
.nav__util-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.82);
    transition: color 180ms;
}
.nav__util-item:nth-child(2) { justify-self: center; }
.nav__util-item:nth-child(3) { justify-self: end; }
.nav__util-item svg { width: 12px; height: 12px; color: var(--blue-bright); flex-shrink: 0; }
.nav__util-item:hover { color: var(--blue-bright); }

.nav__bar {
    pointer-events: auto;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    transition: background-color 320ms ease, border-color 320ms ease, backdrop-filter 320ms ease;
}
.nav.scrolled .nav__bar {
    background-color: rgba(14, 77, 164, 0.96);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border-bottom-color: rgba(255, 255, 255, 0.12);
}
.nav__bar .wrap {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: clamp(1rem, 3vw, 2rem);
    padding-block: 1rem;
}
.nav__brand {
    display: inline-flex;
    align-items: center;
    color: var(--white);
}
.nav__brand-name {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: -0.01em;
}
.nav__brand-name span {
    font-family: var(--mono);
    font-size: 0.64rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.6;
    margin-top: 3px;
}

.nav__inline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(1rem, 2.4vw, 2rem);
}
.nav__inline li { position: relative; }
.nav__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--white);
    padding: 0.4rem 0;
    position: relative;
    transition: color 180ms, opacity 180ms;
}
.nav__link::after {
    content: "";
    position: absolute;
    left: 0; right: 100%; bottom: 0;
    height: 1.5px;
    background-color: var(--blue-bright);
    transition: right 320ms var(--ease);
}
.nav__link:hover, .nav__link.active { color: var(--blue-bright); }
.nav.scrolled .nav__link:hover, .nav.scrolled .nav__link.active { color: var(--white); opacity: 0.9; }
.nav__link:hover::after, .nav__link.active::after { right: 0; }
.nav__caret { width: 10px; height: 10px; transition: transform 260ms ease; }
.nav__drop-trigger[aria-expanded="true"] .nav__caret { transform: rotate(90deg); }

.nav__drop {
    position: absolute;
    top: calc(100% + 0.9rem);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: min(720px, 90vw);
    background-color: rgba(15, 20, 25, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 240ms ease, transform 240ms ease, visibility 240ms;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}
.nav__drop-trigger[aria-expanded="true"] + .nav__drop {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav__drop-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 0.85rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.nav__drop-head span {
    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--blue-bright);
}
.nav__drop-all {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 180ms;
}
.nav__drop-all:hover { color: var(--white); }
.nav__drop-all svg { width: 10px; height: 10px; }
.nav__drop-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.2rem 1.5rem;
}
.nav__drop-item {
    display: flex;
    align-items: baseline;
    gap: 0.7rem;
    padding: 0.55rem 0.5rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.88rem;
    font-weight: 500;
    border-left: 2px solid transparent;
    transition: color 180ms, background-color 180ms, transform 180ms, border-color 180ms;
}
.nav__drop-item:hover {
    color: var(--white);
    background-color: rgba(29, 107, 216, 0.14);
    border-left-color: var(--blue-bright);
    transform: translateX(2px);
}
.nav__drop-item b {
    font-family: var(--mono);
    font-weight: 500;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.45);
    min-width: 1.6rem;
    letter-spacing: 0.1em;
}

.nav__menu {
    display: none;
    align-items: center;
    gap: 0.9rem;
    padding: 0.6rem 1rem 0.6rem 1.25rem;
    border: 1px solid currentColor;
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background-color 260ms var(--ease), color 260ms var(--ease), border-color 260ms;
}
.nav__menu:hover { background-color: var(--white); color: var(--blue); border-color: var(--white); }
.nav__menu-lines { display: inline-flex; flex-direction: column; gap: 4px; width: 18px; }
.nav__menu-lines span { display: block; height: 1.5px; background-color: currentColor; transition: width 320ms var(--ease); }
.nav__menu-lines span:nth-child(2) { width: 65%; align-self: flex-end; }
.nav__menu:hover .nav__menu-lines span:nth-child(2) { width: 100%; }

.nav__actions { display: inline-flex; align-items: center; gap: 0.85rem; justify-self: end; }
.nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.72rem 1.3rem;
    border-radius: var(--radius);
    background-color: var(--blue);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: background-color 240ms var(--ease), color 240ms, transform 240ms var(--ease);
}
.nav__cta svg { width: 15px; height: 15px; }
.nav__cta:hover { background-color: var(--blue-bright); transform: translateY(-1px); }
.nav.scrolled .nav__cta { background-color: var(--white); color: var(--blue); }
.nav.scrolled .nav__cta:hover { background-color: rgba(255, 255, 255, 0.88); transform: translateY(-1px); }

.nav__overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background-color: var(--ink);
    color: var(--white);
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition: opacity 320ms ease, visibility 0s 320ms;
}
.nav__overlay.open {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    transition: opacity 320ms ease;
}
.nav__overlay-inner {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: clamp(1.5rem, 4vw, 2.5rem) var(--gutter);
    height: 100%;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: clamp(1.5rem, 3.5vw, 3rem);
    overflow-y: auto;
}
.nav__overlay-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.nav__overlay-label {
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}
.nav__overlay-label::before { content: ""; width: 40px; height: 1px; background-color: var(--blue-bright); }
.nav__close {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background-color 260ms, color 260ms, border-color 260ms;
}
.nav__close:hover { background-color: var(--white); color: var(--ink); border-color: var(--white); }
.nav__close-x { position: relative; width: 14px; height: 14px; }
.nav__close-x::before, .nav__close-x::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0; right: 0;
    height: 1.5px;
    background-color: currentColor;
}
.nav__close-x::before { transform: rotate(45deg); }
.nav__close-x::after { transform: rotate(-45deg); }

.nav__overlay-main {
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: safe center;
    gap: clamp(1.5rem, 4vw, 2.5rem);
}
.nav__menu-list { display: flex; flex-direction: column; gap: 0.15rem; }
.nav__overlay-quote {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.5rem;
    background-color: var(--blue);
    color: var(--white);
    border-radius: var(--radius);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    flex-shrink: 0;
    transition: background-color 240ms, transform 240ms;
}
.nav__overlay-quote svg { width: 18px; height: 18px; }
.nav__overlay-quote:hover, .nav__overlay-quote:active { background-color: var(--blue-bright); transform: translateY(-1px); }
@media (hover: none) {
    .nav__item-arrow { opacity: 0.4; transform: none; }
}
.nav__item {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: baseline;
    gap: clamp(1rem, 2vw, 2rem);
    padding: clamp(0.5rem, 1vw, 0.85rem) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white);
    text-align: left;
    width: 100%;
    transition: border-color 320ms;
}
.nav__item:hover { border-bottom-color: var(--blue-bright); }
.nav__item b {
    font-family: var(--mono);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--blue-bright);
    min-width: 2.5rem;
}
.nav__item-text {
    font-weight: 600;
    font-size: clamp(1.75rem, 1.2rem + 2.2vw, 3.75rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    transition: transform 520ms var(--ease), color 320ms;
}
.nav__item:hover .nav__item-text { transform: translateX(clamp(0.5rem, 1.5vw, 1.25rem)); color: var(--blue-bright); }
.nav__item-arrow {
    opacity: 0;
    transform: translateX(-12px);
    transition: opacity 320ms var(--ease), transform 320ms var(--ease);
    color: var(--blue-bright);
    display: inline-flex;
}
.nav__item:hover .nav__item-arrow { opacity: 1; transform: translateX(0); }
.nav__item-arrow svg { width: 24px; height: 24px; }

.nav__sub {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.3rem 1.5rem;
    max-height: 0;
    overflow: hidden;
    padding-left: clamp(3rem, 4vw, 4.5rem);
    transition: max-height 420ms var(--ease), margin 320ms;
}
.nav__item[aria-expanded="true"] + .nav__sub { max-height: 640px; margin: 0.5rem 0 1rem; }
.nav__sub a {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    padding: 0.4rem 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    font-weight: 500;
    transition: color 180ms, transform 180ms;
}
.nav__sub a:hover { color: var(--blue-bright); transform: translateX(3px); }
.nav__sub a b {
    font-family: var(--mono);
    font-weight: 500;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.1em;
}

.nav__foot {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.nav__foot-block { display: flex; flex-direction: column; gap: 0.35rem; }
.nav__foot-block span:first-child {
    font-family: var(--mono);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.25rem;
}
.nav__foot-block p { font-size: 0.95rem; color: rgba(255, 255, 255, 0.85); line-height: 1.5; }
.nav__foot-block a { transition: color 180ms; }
.nav__foot-block a:hover { color: var(--blue-bright); }

body.menu-open { overflow: hidden; }

.hero {
    position: relative;
    min-height: clamp(600px, 84vh, 860px);
    background-color: var(--ink);
    color: var(--white);
    overflow: hidden;
    isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(15, 20, 25, 0.6) 0%, rgba(15, 20, 25, 0.45) 40%, rgba(15, 20, 25, 0.95) 100%),
        linear-gradient(90deg, rgba(15, 20, 25, 0.9) 0%, rgba(15, 20, 25, 0.55) 45%, rgba(15, 20, 25, 0.12) 85%, transparent 100%);
}
.hero::after {
    content: "HJB";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(10%, -50%);
    font-weight: 900;
    font-size: clamp(18rem, 38vw, 46rem);
    line-height: 0.85;
    color: rgba(255, 255, 255, 0.05);
    letter-spacing: -0.06em;
    pointer-events: none;
    user-select: none;
    z-index: -1;
    white-space: nowrap;
}
.hero__grid {
    position: relative;
    z-index: 1;
    max-width: var(--wrap);
    margin: 0 auto;
    padding: clamp(5.5rem, 9vw, 8rem) var(--gutter) clamp(2.25rem, 4vw, 3.25rem);
    display: grid;
    grid-template-rows: 1fr auto;
    gap: clamp(2rem, 4.5vw, 4rem);
    min-height: inherit;
}
.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--mono);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blue-bright);
    margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}
.hero__eyebrow::before { content: ""; width: 40px; height: 2px; background-color: var(--blue-bright); }
.hero__title {
    font-weight: 800;
    font-size: clamp(2.6rem, 1.8rem + 5vw, 6.5rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
    max-width: 18ch;
}
.hero__title span { display: block; }
.hero__title .hand { font-size: 1.08em; color: var(--blue-bright); padding: 0.06em 0; }
.hero__lede {
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.2rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
    max-width: 54ch;
    margin-top: clamp(1.5rem, 3vw, 2rem);
}
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: clamp(2rem, 4vw, 2.75rem);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.05rem 1.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    position: relative;
    overflow: hidden;
    transition: transform 280ms var(--ease), background-color 280ms, color 280ms, border-color 280ms;
}
.btn svg { width: 16px; height: 16px; }
.btn > * { position: relative; z-index: 1; }
.btn--primary { background-color: var(--blue); color: var(--white); }
.btn--primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--blue-bright);
    transform: translateY(101%);
    transition: transform 420ms var(--ease);
}
.btn--primary:hover { transform: translateY(-2px); }
.btn--primary:hover::before { transform: translateY(0); }
.btn--ghost { color: var(--white); border: 1px solid rgba(255, 255, 255, 0.32); }
.btn--ghost:hover { border-color: var(--white); background-color: rgba(255, 255, 255, 0.08); }

.hero__footer {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    padding-top: clamp(1.5rem, 3vw, 2.25rem);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.hero__mark { display: flex; flex-direction: column; }
.hero__mark b {
    font-weight: 700;
    font-size: clamp(1.65rem, 1.2rem + 1.3vw, 2.4rem);
    line-height: 1;
    letter-spacing: -0.025em;
}
.hero__mark span, .hero__stat dt {
    font-family: var(--mono);
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.65rem;
    line-height: 1.35;
}
.hero__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.25rem, 2vw, 2rem);
}
.hero__stat { display: flex; flex-direction: column; }
.hero__stat dd {
    font-weight: 700;
    font-size: clamp(1.65rem, 1.2rem + 1.3vw, 2.4rem);
    line-height: 1;
    letter-spacing: -0.025em;
}

.section { padding-block: clamp(2.75rem, 4vw, 4.5rem); }
.section__head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: clamp(1.75rem, 3vw, 2.75rem);
    padding-bottom: clamp(1.5rem, 2.5vw, 2.25rem);
    border-bottom: 1px solid var(--line);
}
.section__title {
    font-weight: 700;
    font-size: clamp(2rem, 1.4rem + 3vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    max-width: 22ch;
}
.section__title .hand { font-size: 1.12em; }
.section__title em { font-style: normal; color: var(--blue); }
.section__note {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--body);
    max-width: 48ch;
}
.section__note strong { color: var(--ink); font-weight: 600; }

.about {
    background-color: var(--white);
}
.about .wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: center;
}
.about__media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background-color: var(--paper-2);
}
.about__media img { width: 100%; height: 100%; object-fit: cover; }
.about__media figcaption {
    position: absolute;
    left: 0; bottom: 0;
    padding: 1.25rem 1.5rem;
    background-color: var(--blue);
    color: var(--white);
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    max-width: 80%;
}
.about__media figcaption strong {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.65rem;
    margin-bottom: 0.3rem;
    font-weight: 500;
}
.about__content { display: flex; flex-direction: column; gap: clamp(1.25rem, 2.5vw, 2rem); }
.about__content .section__title { max-width: 20ch; }
.about__lede {
    font-size: clamp(1rem, 0.9rem + 0.4vw, 1.2rem);
    line-height: 1.6;
    color: var(--body);
    max-width: 54ch;
}
.about__body {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--muted);
    max-width: 56ch;
}
.about__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1.5rem;
    margin-top: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}
.about__stat { display: flex; flex-direction: column; }
.about__stat dd {
    font-weight: 700;
    font-size: clamp(1.9rem, 1.3rem + 1.4vw, 2.6rem);
    line-height: 1;
    letter-spacing: -0.03em;
}
.about__stat dt {
    font-family: var(--mono);
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--steel);
    margin-top: 0.7rem;
    line-height: 1.35;
}
.about__meta { display: flex; flex-wrap: wrap; gap: 2rem; padding-top: 1.5rem; }
.about__meta-item { display: flex; flex-direction: column; gap: 0.2rem; }
.about__meta-item span:first-child {
    font-family: var(--mono);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--steel);
}
.about__meta-item span:last-child { color: var(--ink); font-weight: 600; }

.services { background-color: var(--bg-1); padding-top: clamp(2.75rem, 4vw, 3.75rem); padding-bottom: clamp(2.25rem, 3vw, 2.75rem); }
.services .section__head { align-items: end; }
.services .section__note { max-width: 56ch; font-size: 1.05rem; }
.tindex {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1rem, 2vw, 1.5rem);
}
.tindex__group {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(1.35rem, 2.2vw, 1.85rem) clamp(1.1rem, 1.8vw, 1.5rem) clamp(0.6rem, 1.2vw, 0.85rem);
    box-shadow: 0 6px 18px -14px rgba(15, 20, 25, 0.16);
    transition: transform 420ms var(--ease), border-color 360ms ease, box-shadow 420ms var(--ease);
}
.tindex__group::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue-bright));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 460ms var(--ease);
    z-index: 1;
}
.tindex__group:hover {
    transform: translateY(-4px);
    border-color: rgba(14, 77, 164, 0.22);
    box-shadow: 0 18px 40px -26px rgba(15, 20, 25, 0.2);
}
.tindex__group:hover::before { transform: scaleX(1); }
.tindex__label {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0 0.5rem 1rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid var(--line);
}
.tindex__label .n {
    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--white);
    background-color: var(--blue);
    padding: 0.28rem 0.5rem;
    border-radius: 4px;
}
.tindex__label .t {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.015em;
    color: var(--ink);
}
.tindex__label .c {
    margin-left: auto;
    font-family: var(--mono);
    font-size: 0.64rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--steel);
}
.tindex__row {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.8rem 0.6rem;
    border-radius: var(--radius);
    transition: background-color 220ms var(--ease);
}
.tindex__row + .tindex__row { box-shadow: 0 -1px 0 0 var(--line); }
.tindex__row:hover { background-color: var(--bg-1); box-shadow: none; }
.tindex__row:hover + .tindex__row { box-shadow: none; }
.tindex__icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: var(--radius);
    background-color: var(--bg-2);
    color: var(--blue);
    display: grid;
    place-items: center;
    transition: background-color 220ms, color 220ms, transform 260ms var(--ease);
}
.tindex__icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.tindex__row:hover .tindex__icon { background-color: var(--blue); color: var(--white); transform: translateY(-2px); }
.tindex__text { flex: 1; min-width: 0; }
.tindex__name {
    display: block;
    font-weight: 600;
    font-size: 1.02rem;
    letter-spacing: -0.01em;
    color: var(--ink);
    transition: color 200ms;
}
.tindex__row:hover .tindex__name { color: var(--blue); }
.tindex__desc {
    display: block;
    font-size: 0.84rem;
    line-height: 1.4;
    color: var(--muted);
    margin-top: 0.1rem;
}
.tindex__arrow {
    flex-shrink: 0;
    display: inline-flex;
    color: var(--blue);
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 240ms var(--ease), transform 240ms var(--ease);
}
.tindex__row:hover .tindex__arrow { opacity: 1; transform: translateX(0); }
.tindex__arrow svg { width: 18px; height: 18px; }
@media (hover: none) { .tindex__arrow { opacity: 0.4; transform: none; } }
@keyframes tindex-wave { from { background-position-x: 0; } to { background-position-x: -1200px; } }
@media (min-width: 860px) {
    .tindex { grid-template-columns: 1fr 1fr; gap: clamp(1.25rem, 2vw, 1.75rem); }
    .tindex__group:first-child::after {
        content: "";
        position: absolute;
        left: 0; right: 0; bottom: 0;
        height: 84px;
        z-index: -1;
        pointer-events: none;
        background-repeat: repeat-x;
        background-position: bottom left;
        background-size: 1200px 84px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='84' viewBox='0 0 1200 84' preserveAspectRatio='none'%3E%3Cpath d='M0,42 C100,26 200,26 300,42 C400,58 500,58 600,42 C700,26 800,26 900,42 C1000,58 1100,58 1200,42 L1200,84 L0,84 Z' fill='%231D6BD8' fill-opacity='0.08'/%3E%3Cpath d='M0,52 C100,36 200,36 300,52 C400,68 500,68 600,52 C700,36 800,36 900,52 C1000,68 1100,68 1200,52 L1200,84 L0,84 Z' fill='%230E4DA4' fill-opacity='0.12'/%3E%3C/svg%3E");
        animation: tindex-wave 26s linear infinite;
    }
}

.services__cta {
    position: relative;
    margin-top: clamp(2.5rem, 4vw, 3.5rem);
    padding: clamp(1.75rem, 3vw, 2.5rem);
    background-color: var(--ink);
    color: var(--white);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    overflow: hidden;
    transition: background-color 320ms;
}
.services__cta:hover { background-color: var(--blue); }
.services__cta > a {
    position: absolute;
    inset: 0;
    z-index: 1;
    font-size: 0;
}
.services__cta-text { flex: 1 1 320px; display: flex; flex-direction: column; gap: 0.35rem; }
.services__cta-text span {
    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}
.services__cta-text h3 {
    font-weight: 700;
    font-size: clamp(1.3rem, 1rem + 0.9vw, 1.65rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
}
.services__cta-text p { font-size: 0.95rem; line-height: 1.5; color: rgba(255, 255, 255, 0.8); }
.services__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.95rem 1.4rem;
    background-color: var(--blue-bright);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: background-color 260ms, color 260ms;
}
.services__cta:hover .services__cta-btn { background-color: var(--white); color: var(--blue); }
.services__cta-btn svg { width: 14px; height: 14px; }

.marquee {
    background-color: var(--ink);
    color: var(--white);
    padding-block: clamp(1.5rem, 2.75vw, 2.5rem);
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.marquee__track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    width: max-content;
    animation: marquee 42s linear infinite;
    will-change: transform;
}
.marquee__track > * { margin-right: clamp(2rem, 4vw, 4rem); }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.marquee__word {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(3.5rem, 2.4rem + 4.5vw, 7.5rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
}
.marquee__word--accent { color: var(--blue-bright); }
.marquee__word--outline {
    color: transparent;
    letter-spacing: 0.05em;
    -webkit-text-stroke-width: clamp(1.8px, 0.2vw, 3px);
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.55);
    text-stroke-width: clamp(1.8px, 0.2vw, 3px);
    text-stroke-color: rgba(255, 255, 255, 0.55);
    paint-order: stroke fill;
}
@supports not (-webkit-text-stroke-width: 2px) {
    .marquee__word--outline { color: rgba(255, 255, 255, 0.4); }
}
.marquee__dot {
    width: clamp(14px, 1.2vw, 20px);
    height: clamp(14px, 1.2vw, 20px);
    background-color: var(--blue-bright);
    flex-shrink: 0;
}

.process { background-color: var(--white); padding-bottom: clamp(2rem, 3vw, 2.75rem); position: relative; isolation: isolate; }
.process__watermark {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}
.process__watermark span {
    position: absolute;
    left: -0.4rem;
    bottom: clamp(-3.5rem, -4.5vw, -5.5rem);
    font-weight: 900;
    font-size: clamp(7rem, 16vw, 16rem);
    line-height: 0.8;
    letter-spacing: -0.06em;
    color: rgba(15, 20, 25, 0.055);
    white-space: nowrap;
    user-select: none;
}
.process .section__head { align-items: end; }
.process .section__note { max-width: 48ch; }
.process__steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(0.85rem, 2vw, 1.5rem);
}
.pstep {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: clamp(1.5rem, 2.4vw, 2rem) clamp(1.4rem, 2vw, 1.75rem) clamp(1.6rem, 2.4vw, 2.1rem);
    background-color: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 6px 18px -14px rgba(15, 20, 25, 0.16);
    transition: transform 420ms var(--ease), border-color 360ms ease, box-shadow 420ms var(--ease);
}
.pstep::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue-bright));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 460ms var(--ease);
    z-index: 1;
}
.pstep:hover {
    transform: translateY(-4px);
    border-color: rgba(14, 77, 164, 0.22);
    box-shadow: 0 18px 40px -26px rgba(15, 20, 25, 0.2);
}
.pstep:hover::before { transform: scaleX(1); }
.pstep__bignum {
    position: absolute;
    top: -0.7rem;
    right: 0.4rem;
    z-index: -1;
    font-weight: 800;
    font-size: 6.5rem;
    line-height: 1;
    letter-spacing: -0.05em;
    color: rgba(14, 77, 164, 0.06);
    pointer-events: none;
    transition: color 360ms, transform 520ms var(--ease);
}
.pstep:hover .pstep__bignum { color: rgba(14, 77, 164, 0.1); transform: translateY(4px); }
.pstep__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    background-color: var(--bg-2);
    color: var(--blue);
    display: grid;
    place-items: center;
    margin-bottom: 0.55rem;
    transition: background-color 260ms, color 260ms, transform 260ms var(--ease);
}
.pstep__icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.pstep:hover .pstep__icon { background-color: var(--blue); color: var(--white); transform: translateY(-2px); }
.pstep__tag {
    font-family: var(--mono);
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
}
.pstep__title { font-weight: 700; font-size: clamp(1.15rem, 1rem + 0.4vw, 1.35rem); line-height: 1.15; letter-spacing: -0.015em; }
.pstep__desc { font-size: 0.92rem; line-height: 1.6; color: var(--muted); }
.process__cta {
    margin-top: clamp(2.25rem, 4vw, 3rem);
    padding-top: clamp(2.25rem, 4vw, 3rem);
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
}
.process__cta-title { font-weight: 700; font-size: clamp(1.25rem, 1rem + 0.7vw, 1.6rem); line-height: 1.15; letter-spacing: -0.02em; color: var(--ink); }
.process__cta-sub { font-size: 0.96rem; line-height: 1.55; color: var(--muted); margin-top: 0.35rem; max-width: 48ch; }
.process__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    padding: 0.95rem 1.5rem;
    background-color: var(--blue);
    color: var(--white);
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: background-color 260ms, transform 260ms;
}
.process__cta-btn:hover { background-color: var(--blue-bright); transform: translateY(-2px); }
.process__cta-btn svg { width: 14px; height: 14px; }
@media (min-width: 600px) { .process__steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 720px) { .process__cta { flex-direction: row; align-items: center; justify-content: space-between; gap: 2rem; } }
@media (min-width: 1000px) { .process__steps { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.principles {
    position: relative;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background-color: var(--bg-1);
}
.principles .section__head { align-items: end; }
.principles .section__note { max-width: 44ch; }
.principles__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(0.85rem, 2vw, 1.5rem);
}
.principle {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background-color: var(--ink-soft);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: clamp(1.6rem, 2.6vw, 2.1rem);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    transition: transform 420ms var(--ease), border-color 360ms ease, background-color 360ms, box-shadow 420ms var(--ease);
}
.principle::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue-bright));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 460ms var(--ease);
    z-index: 1;
}
.principle:hover {
    transform: translateY(-4px);
    background-color: #20262F;
    border-color: rgba(29, 107, 216, 0.5);
    box-shadow: 0 26px 50px -30px rgba(0, 0, 0, 0.7);
}
.principle:hover::before { transform: scaleX(1); }
.principle__icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius);
    background-color: rgba(29, 107, 216, 0.16);
    color: var(--blue-bright);
    display: grid;
    place-items: center;
    margin-bottom: 0.5rem;
    transition: background-color 280ms, color 280ms, transform 280ms var(--ease);
}
.principle__icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.principle:hover .principle__icon { background-color: var(--blue); color: var(--white); transform: translateY(-2px); }
.principle h3 { font-weight: 700; font-size: clamp(1.15rem, 1rem + 0.35vw, 1.35rem); line-height: 1.2; letter-spacing: -0.015em; color: var(--white); }
.principle p { font-size: 0.94rem; line-height: 1.6; color: rgba(255, 255, 255, 0.68); }

.projects {
    background-color: var(--bg-1);
    padding-top: clamp(2.5rem, 3.5vw, 3.25rem);
}
.projects__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: stretch;
}
.projects__intro {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: clamp(1.75rem, 3vw, 2.5rem);
    padding-inline: var(--gutter);
}
.projects__intro-text { display: flex; flex-direction: column; gap: 1.1rem; }
.projects__intro .section__title { max-width: 16ch; }
.pmarquee { min-width: 0; }
.projects__intro .btn { background-color: var(--blue); color: var(--white); align-self: flex-start; }
.projects__intro .btn::before { display: none; }
.projects__intro .btn:hover { background-color: var(--blue-bright); transform: translateY(-2px); }
@media (min-width: 980px) {
    .projects__layout {
        grid-template-columns: minmax(0, 26rem) minmax(0, 1fr);
        column-gap: clamp(2rem, 3vw, 3.5rem);
        padding-left: max(var(--gutter), calc((100vw - var(--wrap)) / 2 + var(--gutter)));
    }
    .projects__intro { padding-inline: 0; padding-right: 0.5rem; padding-block: clamp(0.5rem, 2vw, 1.5rem); }
}
.pmarquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 93%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 93%, transparent);
}
.pmarquee__track { display: flex; width: max-content; height: 100%; }
.pmarquee .project-card {
    flex-shrink: 0;
    width: clamp(280px, 78vw, 340px);
    margin-right: clamp(1rem, 1.5vw, 1.4rem);
}
@media (hover: hover) {
    .pmarquee__track { animation: pmarquee 60s linear infinite; will-change: transform; }
    .pmarquee:hover .pmarquee__track { animation-play-state: paused; }
}
@media (hover: none) {
    .pmarquee {
        overflow-x: auto;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -webkit-mask-image: none;
        mask-image: none;
    }
    .pmarquee::-webkit-scrollbar { display: none; }
    .pmarquee .project-card { scroll-snap-align: center; }
    .pmarquee .project-card[aria-hidden="true"] { display: none; }
}
@keyframes pmarquee { to { transform: translateX(-50%); } }
.project-card {
    position: relative;
    display: block;
    height: 100%;
    min-height: clamp(380px, 52vh, 540px);
    overflow: hidden;
    border-radius: var(--radius);
    isolation: isolate;
    color: var(--white);
    background-color: var(--ink);
}
.project-card__img { position: absolute; inset: 0; z-index: -2; }
.project-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 760ms var(--ease); }
.project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(15, 20, 25, 0.06) 0%, rgba(15, 20, 25, 0.16) 42%, rgba(15, 20, 25, 0.88) 100%);
    transition: background 360ms;
}
.project-card:hover .project-card__img img { transform: scale(1.05); }
.project-card:hover::after { background: linear-gradient(180deg, rgba(14, 77, 164, 0.22) 0%, rgba(15, 20, 25, 0.32) 42%, rgba(15, 20, 25, 0.92) 100%); }
.project-card__tag {
    position: absolute;
    top: 1rem; left: 1rem;
    background-color: var(--blue);
    color: var(--white);
    padding: 0.4rem 0.7rem;
    border-radius: 3px;
    font-family: var(--mono);
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.project-card__body {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: clamp(1.3rem, 2vw, 1.7rem);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.project-card__body h3 { font-weight: 700; font-size: clamp(1.2rem, 1.05rem + 0.45vw, 1.5rem); line-height: 1.18; letter-spacing: -0.015em; color: var(--white); }
.project-card__body p { display: none; }
.project-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.5rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
}
.project-card__meta > div { display: flex; flex-direction: column; }
.project-card__meta dt {
    font-family: var(--mono);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}
.project-card__meta dd { font-size: 0.85rem; font-weight: 600; color: var(--white); margin-top: 0.2rem; }

.reviews { background-color: var(--bg-2); }
.reviews .section__head { align-items: end; }
.reviews .section__note { max-width: 44ch; }
.reviews__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1rem, 1.6vw, 1.5rem);
}
.review {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.05rem;
    background-color: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(1.6rem, 2.4vw, 2.1rem);
    box-shadow: 0 6px 18px -14px rgba(15, 20, 25, 0.16);
    transition: transform 360ms var(--ease), box-shadow 360ms var(--ease), border-color 320ms ease;
}
.review:hover {
    transform: translateY(-4px);
    border-color: rgba(14, 77, 164, 0.22);
    box-shadow: 0 18px 40px -26px rgba(15, 20, 25, 0.2);
}
.review::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue-bright));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 460ms var(--ease);
    z-index: 2;
}
.review:hover::before { transform: scaleX(1); }
.review__mark {
    position: absolute;
    top: 0.1rem; right: 1rem;
    z-index: -1;
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 700;
    font-size: 5.5rem;
    line-height: 1;
    color: rgba(14, 77, 164, 0.09);
    pointer-events: none;
}
.review__stars { display: inline-flex; gap: 3px; color: var(--yellow); }
.review__stars svg { width: 16px; height: 16px; }
.review blockquote { font-size: 1rem; line-height: 1.65; color: var(--body); flex-grow: 1; }
.review__by {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding-top: 1.05rem;
    border-top: 1px solid rgba(14, 77, 164, 0.12);
}
.review__avatar {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-bright), var(--blue-deep));
    color: var(--white);
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    overflow: hidden;
}
.review__avatar img { width: 100%; height: 100%; object-fit: cover; }
.review__by-text { display: flex; flex-direction: column; gap: 0.12rem; min-width: 0; }
.review__by-text b { font-weight: 700; font-size: 0.98rem; letter-spacing: -0.01em; color: var(--ink); }
.review__by-text span {
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
    opacity: 0.85;
}
.review--featured {
    background-color: var(--ink);
    background-image:
        radial-gradient(120% 95% at 8% 6%, rgba(29, 107, 216, 0.32), transparent 52%),
        radial-gradient(90% 80% at 100% 100%, rgba(14, 77, 164, 0.24), transparent 60%);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    gap: 1.5rem;
    justify-content: flex-start;
    padding: clamp(2rem, 3vw, 3rem);
}
.review--featured::before { display: none; }
.review--featured::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 38px 38px;
    -webkit-mask-image: radial-gradient(78% 70% at 82% 82%, #000, transparent 74%);
    mask-image: radial-gradient(78% 70% at 82% 82%, #000, transparent 74%);
    z-index: -1;
    pointer-events: none;
}
.review--featured:hover {
    transform: translateY(-4px);
    border-color: rgba(29, 107, 216, 0.5);
    box-shadow: 0 28px 56px -30px rgba(0, 0, 0, 0.6);
}
.review--featured blockquote {
    color: var(--white);
    font-size: clamp(1.35rem, 1rem + 1.05vw, 2.1rem);
    line-height: 1.32;
    font-weight: 500;
    letter-spacing: -0.015em;
    max-width: 44ch;
    flex-grow: 0;
}
.review--featured .review__mark {
    top: auto;
    bottom: -2.8rem;
    right: 0.4rem;
    font-size: 15rem;
    color: rgba(29, 107, 216, 0.18);
}
.review--featured .review__by { margin-top: auto; border-top-color: rgba(255, 255, 255, 0.18); }
.review--featured .review__by-text b { color: var(--white); font-size: 1.05rem; }
.review--featured .review__by-text span { color: var(--blue-bright); opacity: 1; font-size: 0.66rem; }
.review--featured .review__avatar { width: 56px; height: 56px; font-size: 1rem; background: linear-gradient(135deg, var(--blue-bright), var(--blue)); }
@media (min-width: 680px) {
    .reviews__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .review--featured { grid-column: span 2; }
}
@media (min-width: 1000px) {
    .reviews__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: 1fr; }
    .review--featured { grid-column: span 2; grid-row: span 2; }
}

.coverage {
    background-color: var(--bg-1);
}
.coverage .section__head { align-items: end; }
.coverage__layout { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 3vw, 2.5rem); }
.coverage__panel {
    background-color: var(--white);
    border: 1px solid var(--line);
    padding: clamp(1.5rem, 2.5vw, 2.25rem);
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}
.coverage__panel-head { display: flex; flex-direction: column; gap: 0.35rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--line); }
.coverage__panel-head span {
    font-family: var(--mono);
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
}
.coverage__panel-head h3 { font-weight: 700; font-size: 1.1rem; letter-spacing: -0.015em; }
.coverage__group > span {
    display: block;
    margin-bottom: 0.75rem;
    font-family: var(--mono);
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
}
.coverage__postcodes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.65rem; }
.postcode {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    padding: 0.75rem 0.9rem;
    background-color: var(--paper);
    border: 1px solid var(--line);
    transition: background-color 260ms, border-color 260ms, transform 260ms;
}
.postcode:hover { background-color: var(--paper-2); border-color: var(--blue); transform: translateY(-1px); }
.postcode b { font-family: var(--mono); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; color: var(--blue); min-width: 1.75rem; }
.postcode span { font-size: 0.88rem; font-weight: 600; }
.coverage__towns { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.town {
    font-size: 0.78rem;
    font-weight: 500;
    padding: 0.35rem 0.75rem;
    background-color: var(--paper-2);
    color: var(--body);
    border-radius: 999px;
    transition: background-color 180ms, color 180ms;
}
.town:hover { background-color: var(--blue); color: var(--white); }
.coverage__cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
    padding: 1rem 1.25rem;
    background-color: var(--blue);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: background-color 260ms, transform 260ms;
}
.coverage__cta:hover { background-color: var(--blue-bright); transform: translateY(-2px); }
.coverage__cta svg { width: 14px; height: 14px; margin-left: auto; }
.coverage__map {
    position: relative;
    background-color: var(--white);
    border: 1px solid var(--line);
    min-height: clamp(360px, 55vw, 560px);
    overflow: hidden;
}
.coverage__mapcanvas { position: absolute; inset: 0; z-index: 0; background-color: #e9eef3; }
.coverage__map .leaflet-container { font-family: inherit; background-color: #e9eef3; }
.coverage__map .leaflet-control-zoom { border: none; box-shadow: 0 4px 14px -4px rgba(15, 20, 25, 0.3); margin: 0.9rem; }
.coverage__map .leaflet-control-zoom a {
    width: 32px; height: 32px; line-height: 32px;
    color: var(--ink); background-color: var(--white);
    border: 1px solid var(--line); font-weight: 600;
}
.coverage__map .leaflet-control-zoom a:first-child { border-radius: var(--radius) var(--radius) 0 0; }
.coverage__map .leaflet-control-zoom a:last-child { border-radius: 0 0 var(--radius) var(--radius); border-top: none; }
.coverage__map .leaflet-control-zoom a:hover { background-color: var(--paper-2); color: var(--blue); }
.coverage__map .leaflet-control-attribution {
    font-size: 0.58rem;
    background-color: rgba(255, 255, 255, 0.86);
    color: var(--steel);
    padding: 0.1rem 0.5rem;
}
.coverage__map .leaflet-control-attribution a { color: var(--blue); }
.coverage__map .leaflet-tooltip {
    background-color: var(--ink);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-family: var(--mono);
    font-size: 0.64rem;
    letter-spacing: 0.04em;
    padding: 0.4rem 0.65rem;
    box-shadow: 0 8px 22px -10px rgba(15, 20, 25, 0.5);
}
.coverage__map .leaflet-tooltip-top::before { border-top-color: var(--ink); }
.hjb-pin { position: relative; display: block; width: 18px; height: 18px; }
.hjb-pin::before {
    content: "";
    position: absolute; inset: 0; margin: auto;
    width: 16px; height: 16px;
    border-radius: 50%;
    background-color: var(--blue);
    border: 3px solid var(--white);
    box-shadow: 0 2px 7px rgba(15, 20, 25, 0.45);
    z-index: 2;
}
.hjb-pin::after {
    content: "";
    position: absolute; inset: 0; margin: auto;
    width: 16px; height: 16px;
    border-radius: 50%;
    background-color: rgba(14, 77, 164, 0.5);
    animation: hjbPulse 2.4s ease-out infinite;
}
@keyframes hjbPulse {
    0% { transform: scale(1); opacity: 0.55; }
    70% { transform: scale(3.2); opacity: 0; }
    100% { transform: scale(3.2); opacity: 0; }
}
.coverage__map-badge {
    position: absolute;
    top: 1rem; left: 1rem;
    z-index: 2;
    background-color: var(--ink);
    color: var(--white);
    padding: 0.65rem 0.9rem;
    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}
.coverage__map-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: var(--blue);
    border-radius: 50%;
    animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(14, 77, 164, 0.5); }
    70% { box-shadow: 0 0 0 10px rgba(14, 77, 164, 0); }
    100% { box-shadow: 0 0 0 0 rgba(14, 77, 164, 0); }
}
.coverage__map-credit {
    position: absolute;
    bottom: 0.5rem; left: 0.5rem;
    z-index: 3;
    font-family: var(--mono);
    font-size: 0.6rem;
    color: rgba(15, 20, 25, 0.7);
    background-color: rgba(255, 255, 255, 0.92);
    padding: 0.25rem 0.55rem;
    border-radius: var(--radius);
    box-shadow: 0 2px 8px -4px rgba(15, 20, 25, 0.3);
}
.coverage__map-credit:hover { color: var(--blue); }
.coverage__stats {
    margin-top: clamp(2rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background-color: var(--line);
    border: 1px solid var(--line);
}
.coverage__stat { background-color: var(--white); padding: 1.25rem 1.5rem; display: flex; flex-direction: column; gap: 0.35rem; }
.coverage__stat b { font-weight: 700; font-size: clamp(1.4rem, 1.1rem + 0.9vw, 1.9rem); line-height: 1; letter-spacing: -0.025em; }
.coverage__stat span {
    font-family: var(--mono);
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--steel);
}

.enquiry {
    background-color: var(--bg-2);
}
.enquiry .wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 5vw, 4rem);
    align-items: stretch;
}
.enquiry__intro { display: flex; flex-direction: column; }
.enquiry__intro h2 {
    font-weight: 700;
    font-size: clamp(2rem, 1.4rem + 2.5vw, 3.75rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}
.enquiry__intro h2 em { font-style: normal; color: var(--blue); }
.enquiry__lede { font-size: 1.05rem; line-height: 1.6; color: var(--body); margin-bottom: 2rem; max-width: 46ch; }
.enquiry__steps { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 2rem; }
.enquiry__step { display: flex; align-items: flex-start; gap: 1rem; padding: 0.85rem 0; }
.enquiry__step + .enquiry__step { border-top: 1px solid var(--line); }
.enquiry__step-num {
    flex-shrink: 0;
    width: 30px; height: 30px;
    border-radius: 50%;
    background-color: var(--bg-2);
    color: var(--blue);
    display: grid;
    place-items: center;
    font-family: var(--mono);
    font-size: 0.82rem;
    font-weight: 600;
    margin-top: 0.1rem;
}
.enquiry__step b { display: block; font-size: 1rem; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
.enquiry__step span { display: block; font-size: 0.9rem; line-height: 1.5; color: var(--muted); margin-top: 0.15rem; }
.enquiry__contact { display: grid; gap: 0.75rem; margin-top: auto; padding-top: 2rem; border-top: 1px solid var(--line); }
.enquiry__contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.15rem;
    background-color: var(--white);
    border: 1px solid var(--line);
    transition: border-color 260ms, transform 260ms, box-shadow 260ms;
}
.enquiry__contact-item:hover { border-color: rgba(14, 77, 164, 0.4); transform: translateY(-2px); box-shadow: 0 14px 30px -22px rgba(15, 20, 25, 0.3); }
.enquiry__contact-icon {
    width: 44px; height: 44px;
    flex-shrink: 0;
    border-radius: var(--radius);
    background-color: var(--bg-2);
    color: var(--blue);
    display: grid;
    place-items: center;
    transition: background-color 260ms, color 260ms;
}
.enquiry__contact-item:hover .enquiry__contact-icon { background-color: var(--blue); color: var(--white); }
.enquiry__contact-icon svg { width: 19px; height: 19px; }
.enquiry__contact-item > div > span:first-child {
    display: block;
    font-family: var(--mono);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--steel);
    margin-bottom: 0.3rem;
}
.enquiry__contact-value { display: block; font-size: 1.05rem; font-weight: 600; letter-spacing: -0.01em; transition: color 180ms; }
a.enquiry__contact-value:hover { color: var(--blue); }

.enquiry__form {
    position: relative;
    background-color: var(--ink);
    color: var(--white);
    padding: clamp(1.75rem, 3.5vw, 3rem);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.field--grow { flex: 1 1 auto; }
.field--grow textarea { flex: 1 1 auto; }
.enquiry__form::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue-bright));
}
.enquiry__form-head { margin-bottom: 0.5rem; padding-bottom: 1.25rem; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.enquiry__form-head span {
    display: block;
    font-family: var(--mono);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue-bright);
    margin-bottom: 0.3rem;
}
.enquiry__form-head b { font-size: 1.1rem; font-weight: 600; }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field label {
    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}
.field label i { font-style: normal; color: var(--blue-bright); }
.field input, .field select, .field textarea {
    width: 100%;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 0;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 260ms;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255, 255, 255, 0.35); }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-bottom-color: var(--blue-bright); }
.field input:user-invalid, .field textarea:user-invalid { border-bottom-color: var(--error); }
.field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231D6BD8' stroke-width='1.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.25rem center;
    padding-right: 2rem;
}
.field select option { background-color: var(--ink); color: var(--white); }
.field textarea { min-height: 120px; resize: vertical; }
.enquiry__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.1rem 1.75rem;
    background-color: var(--blue);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-top: 0.5rem;
    transition: background-color 260ms, transform 260ms;
}
.enquiry__submit:hover { background-color: var(--blue-bright); transform: translateY(-2px); }
.enquiry__submit svg { width: 16px; height: 16px; }
.enquiry__consent { font-size: 0.78rem; color: rgba(255, 255, 255, 0.55); line-height: 1.5; }
.enquiry__note {
    display: none;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1rem;
    background-color: rgba(29, 107, 216, 0.16);
    border: 1px solid rgba(29, 107, 216, 0.45);
    font-size: 0.9rem;
    color: var(--white);
}
.enquiry__note.show { display: flex; }
.enquiry__note svg { width: 16px; height: 16px; color: var(--blue-bright); flex-shrink: 0; }

.footer {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background-color: var(--ink);
    color: var(--white);
    padding: clamp(3.5rem, 6vw, 5.5rem) var(--gutter) clamp(2rem, 3vw, 2.5rem);
}
.footer::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--blue-bright), transparent);
    z-index: 2;
}
.footer__wordmark {
    position: absolute;
    top: clamp(0.5rem, 2vw, 1.75rem);
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(2.6rem, 9.5vw, 9.5rem);
    line-height: 1;
    letter-spacing: -0.025em;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.04);
    pointer-events: none;
    user-select: none;
}
.footer__inner { position: relative; z-index: 1; max-width: var(--wrap); margin: 0 auto; display: flex; flex-direction: column; gap: clamp(3rem, 5vw, 4.5rem); }
.footer__hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: clamp(2.5rem, 4vw, 3.5rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    align-items: center;
}
.footer__hero-label {
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue-bright);
    margin-bottom: 1rem;
    display: inline-block;
}
.footer__hero h2 {
    font-weight: 700;
    font-size: clamp(2rem, 1.4rem + 2.5vw, 3.4rem);
    line-height: 1.08;
    letter-spacing: -0.025em;
    max-width: 16ch;
}
.footer__hero h2 em { font-style: normal; color: var(--blue-bright); }
.footer__hero p { font-size: 0.98rem; line-height: 1.65; color: rgba(255, 255, 255, 0.75); margin-top: 1rem; max-width: 46ch; }
.footer__hero-actions { display: flex; flex-direction: column; gap: 0.75rem; width: clamp(260px, 24vw, 340px); }
.footer__hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background-color: var(--blue);
    color: var(--white);
    width: 100%;
    transition: background-color 260ms, transform 260ms;
}
.footer__hero-btn:hover { background-color: var(--blue-bright); transform: translateY(-2px); }
.footer__hero-btn--ghost { background-color: transparent; border: 1px solid rgba(255, 255, 255, 0.3); }
.footer__hero-btn--ghost:hover { background-color: rgba(255, 255, 255, 0.08); border-color: var(--white); }
.footer__hero-btn span { display: flex; flex-direction: column; align-items: flex-start; gap: 0.2rem; }
.footer__hero-btn span i {
    font-style: normal;
    font-family: var(--mono);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}
.footer__hero-btn span b { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em; }
.footer__hero-btn svg { width: 16px; height: 16px; margin-left: auto; }

.footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.footer__brand { display: flex; flex-direction: column; gap: 1rem; }
.footer__brand-name { font-weight: 700; font-size: 1.15rem; letter-spacing: -0.015em; display: flex; flex-direction: column; }
.footer__brand-name span {
    font-family: var(--mono);
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 0.25rem;
}
.footer__brand p { font-size: 0.9rem; line-height: 1.65; color: rgba(255, 255, 255, 0.7); max-width: 36ch; }
.footer__col h3 {
    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue-bright);
    margin-bottom: 1.1rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__col ul a { font-size: 0.92rem; color: rgba(255, 255, 255, 0.78); display: inline-block; transition: color 180ms, transform 180ms; }
.footer__col ul a:hover { color: var(--blue-bright); transform: translateX(3px); }
.footer__contact { display: flex; flex-direction: column; gap: 0.9rem; }
.footer__contact-item { display: flex; flex-direction: column; gap: 0.2rem; }
.footer__contact-item span:first-child {
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}
.footer__contact-value { font-size: 0.95rem; font-weight: 600; color: var(--white); transition: color 180ms; }
a.footer__contact-value:hover { color: var(--blue-bright); }
.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}
.footer__bottom a { transition: color 180ms; }
.footer__bottom a:hover { color: var(--blue-bright); }
.footer__bottom { flex-direction: column; align-items: stretch; gap: 1.25rem; }
.footer__legal {
    font-family: var(--mono);
    font-size: 0.64rem;
    line-height: 1.7;
    letter-spacing: 0.04em;
    text-transform: none;
    color: rgba(255, 255, 255, 0.42);
    max-width: 82ch;
}
.footer__bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.85rem 1.5rem;
}
.footer__legal-links { display: inline-flex; flex-wrap: wrap; gap: 1.25rem; }

.footer--lite { padding-top: clamp(2.5rem, 4vw, 3.5rem); }
.footer--lite .footer__hero { display: none; }
.footer--lite .footer__col:not(.footer__contact) { display: none; }
.footer--lite .footer__inner { gap: clamp(1.75rem, 3.5vw, 2.5rem); }
.footer--lite .footer__grid { grid-template-columns: 1fr; gap: 1.75rem; }
@media (min-width: 700px) {
    .footer--lite .footer__grid { grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 4rem); }
}

.callbar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 90;
    display: none;
    grid-template-columns: 1fr 1fr;
    background-color: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    transform: translateY(110%);
    transition: transform 360ms var(--ease);
}
.callbar.up { transform: translateY(0); }
.callbar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 1rem;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.callbar a svg { width: 16px; height: 16px; }
.callbar a:first-child { border-right: 1px solid rgba(255, 255, 255, 0.12); }
.callbar a:last-child { background-color: var(--blue); }
.callbar a:last-child:active { background-color: var(--blue-bright); }

@media (min-width: 540px) {
    .field-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
    .field-row { grid-template-columns: 1fr; }
}

@media (min-width: 620px) {
    .about__stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 640px) {
    .nav__util-item { font-size: 0.7rem; }
    .principles__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 680px) {
    .hero__stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 720px) {
    .nav__sub { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .coverage__stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 760px) {
    .nav__foot { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 880px) {
    .principles .section__head, .coverage .section__head, .process .section__head {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
        gap: 4rem;
    }
    .reviews .section__head {
        grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
        gap: clamp(1.75rem, 3vw, 3rem);
    }
}
@media (min-width: 900px) {
    .hero__footer { grid-template-columns: minmax(0, 1fr) minmax(0, 2.6fr); }
}
@media (min-width: 960px) {
    .about .wrap { grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); }
    .services .section__head {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
        gap: 4rem;
    }
    .coverage__layout { grid-template-columns: minmax(0, 1fr) minmax(0, 1.65fr); gap: 3rem; align-items: stretch; }
    .enquiry .wrap { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); }
    .footer__hero { grid-template-columns: minmax(0, 1fr) auto; gap: clamp(2rem, 5vw, 4.5rem); }
}
@media (min-width: 980px) {
    .footer__grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
}
@media (min-width: 1020px) {
    .principles__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1240px) {
    .nav__drop-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1020px) {
    .nav__inline { display: none; }
    .nav__menu { display: inline-flex; }
    .nav__cta { display: none; }
}
@media (max-width: 820px) {
    .nav__utility .wrap { grid-template-columns: 1fr 1fr; }
    .nav__util-item:nth-child(2) { display: none; }
}
@media (max-width: 720px) {
    html { scroll-padding-top: 64px; }
    .hero::after { display: none; }
    .footer__hero-btn { min-width: 0; flex: 1 1 100%; }
    .nav__utility { display: none; }
}
@media (max-width: 520px) {
    .nav__utility .wrap { grid-template-columns: 1fr; }
    .nav__util-item:nth-child(1) { display: none; }
    .nav__util-item:nth-child(3) { justify-self: center; }
    .about__stats { gap: 1.5rem 1rem; }
    .hero__actions .btn { flex: 1 1 100%; justify-content: center; }
}

.hero__reassure {
    margin-top: 1.1rem;
    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}
.hero__reassure svg { width: 14px; height: 14px; color: var(--blue-bright); }

.trust {
    background-color: var(--white);
    border-bottom: 1px solid var(--line);
}
.trust .wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.9rem 2.25rem;
    padding-block: 1.1rem;
}
.trust__item {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.005em;
}
.trust__item svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; }
.trust__call {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--blue);
    letter-spacing: -0.01em;
    transition: color 180ms;
}
.trust__call:hover { color: var(--blue-bright); }
.trust__call span {
    font-family: var(--mono);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--steel);
}
.trust__call svg { width: 16px; height: 16px; }

.principles {
    background-color: var(--ink);
    background-image:
        radial-gradient(110% 90% at 12% -5%, rgba(29, 107, 216, 0.18), transparent 58%),
        radial-gradient(90% 80% at 92% 108%, rgba(29, 107, 216, 0.1), transparent 60%),
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: auto, auto, 64px 64px, 64px 64px;
    background-repeat: no-repeat, no-repeat, repeat, repeat;
    border-top: 0;
    border-bottom: 0;
    color: var(--white);
}
.principles .eyebrow { color: var(--blue-bright); }
.principles .eyebrow::before { background-color: var(--blue-bright); }
.principles .section__head { border-bottom-color: rgba(255, 255, 255, 0.14); }
.principles .section__title { color: var(--white); }
.principles .section__title .hand { color: var(--blue-bright); }
.principles .section__note { color: rgba(255, 255, 255, 0.74); }
.principles .section__note strong { color: var(--white); }

.field label em {
    font-style: normal;
    text-transform: none;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.92em;
}

@media (max-width: 640px) {
    .trust__call { margin-left: 0; width: 100%; padding-top: 0.6rem; border-top: 1px solid var(--line); }
    .trust .wrap { gap: 0.7rem 1.5rem; }
}

:root { --radius: 5px; --radius-lg: 9px; }

.btn,
.nav__menu,
.nav__close,
.trust__call,
.services__cta,
.services__cta-btn,
.coverage__cta,
.enquiry__submit,
.enquiry__note,
.footer__hero-btn,
.project-card,
.review,
.coverage__panel,
.coverage__map,
.enquiry__form,
.enquiry__contact-item,
.about__media,
.postcode,
.enquiry__contact-icon {
    border-radius: var(--radius);
}
.principles__grid,
.coverage__stats {
    border-radius: var(--radius);
    overflow: hidden;
}
.nav__drop { border-radius: var(--radius-lg); }
.project-card__tag,
.coverage__map-badge,
.svc-hero__icon { border-radius: 3px; }

.about__signoff {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--muted);
    padding-left: 1.1rem;
    border-left: 3px solid var(--blue);
}
.about__signoff strong { color: var(--ink); font-weight: 600; }
.about__signoff .hand {
    display: block;
    margin-top: 0.65rem;
    font-size: 1.7rem;
    line-height: 1;
    color: var(--blue);
}

@media (max-width: 720px) {
    .nav__menu { padding-block: 0.72rem; }
}

.about, .services, .process, .projects, .reviews, .coverage, .enquiry {
    background-image:
        radial-gradient(130% 100% at 50% -8%, rgba(14, 77, 164, 0.07), transparent 56%),
        linear-gradient(rgba(15, 20, 25, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 20, 25, 0.03) 1px, transparent 1px);
    background-size: auto, 64px 64px, 64px 64px;
    background-repeat: no-repeat, repeat, repeat;
}
.projects, .process {
    background-image:
        linear-gradient(rgba(15, 20, 25, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 20, 25, 0.03) 1px, transparent 1px);
    background-size: 64px 64px;
    background-repeat: repeat;
}
.reviews {
    background-image:
        radial-gradient(46% 60% at 14% 30%, rgba(14, 77, 164, 0.14), transparent 64%),
        radial-gradient(40% 52% at 92% 88%, rgba(29, 107, 216, 0.1), transparent 62%),
        radial-gradient(130% 80% at 50% 0%, rgba(7, 45, 101, 0.05), transparent 60%),
        linear-gradient(rgba(15, 20, 25, 0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 20, 25, 0.022) 1px, transparent 1px);
    background-size: auto, auto, auto, 64px 64px, 64px 64px;
    background-repeat: no-repeat, no-repeat, no-repeat, repeat, repeat;
}

@media (max-width: 640px) {
    .trust__call { margin-left: 0; width: 100%; padding-top: 0.6rem; border-top: 1px solid var(--line); }
    .trust .wrap { gap: 0.7rem 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .marquee__track { animation: none; }
    .pmarquee__track { animation: none; }
    .pmarquee { overflow-x: auto; scrollbar-width: none; -webkit-mask-image: none; mask-image: none; }
    .pmarquee::-webkit-scrollbar { display: none; }
    .coverage__map-badge::before { animation: none; }
    .hjb-pin::after { animation: none; }
    .tindex__group:first-child::after { animation: none; }
    .reveal-on [data-reveal] { opacity: 1 !important; transform: none !important; filter: none !important; transition: none; }
    * { scroll-behavior: auto !important; }
}

@media (max-width: 1239px) {
    .trust .wrap {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem 1.5rem;
        align-items: center;
    }
    .trust__item { display: flex; justify-content: flex-start; }
    .trust__call {
        grid-column: 1 / -1;
        justify-content: center;
        margin-left: 0;
        width: auto;
        margin-top: 0.1rem;
        padding-top: 0.9rem;
        border-top: 1px solid var(--line);
    }
}

@media (max-width: 900px) {
    .footer__hero {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: clamp(1.5rem, 4vw, 3rem);
        align-items: center;
    }
    .footer__hero-actions { width: clamp(210px, 32vw, 290px); }
}

@media (min-width: 560px) and (max-width: 979px) {
    .footer__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 679px) {
    .reviews__grid .review:nth-child(n+4) { display: none; }
}

@media (max-width: 640px) {
    .trust .wrap { gap: 1.35rem 0.75rem; }
    .trust__item { flex-direction: column; align-items: center; text-align: center; gap: 0.5rem; font-size: 0.76rem; line-height: 1.3; }
    .trust__item svg { width: 22px; height: 22px; }
    .section__head { text-align: center; }
    .section__title { max-width: 100%; font-size: clamp(1.55rem, 1.1rem + 2.2vw, 2.15rem); overflow-wrap: break-word; }
    .section__note { max-width: 100%; }
    .hero__grid { padding-top: 6.75rem; padding-bottom: 3.5rem; gap: 2.5rem; }
    .footer { padding-top: 2.75rem; }
    .footer__inner { gap: 2.25rem; }
    .footer__hero { grid-template-columns: 1fr; padding-bottom: 2rem; }
    .footer__hero-actions { width: 100%; }
    .footer__grid { gap: 1.75rem; }
    .footer__bottom { padding-top: 1.5rem; }
}

@media (max-width: 380px) {
    .trust .wrap { grid-template-columns: 1fr; }
    .trust__item { flex-direction: row; }
    .process__steps, .principles__grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: no-preference) {
    @keyframes hjb-rise { from { opacity: 0; transform: translateY(24px); filter: blur(8px); } to { opacity: 1; transform: none; filter: blur(0); } }
    @keyframes hjb-fade { from { opacity: 0; } to { opacity: 1; } }
    @keyframes hjb-drop { from { opacity: 0; transform: translateY(-14px); } to { opacity: 1; transform: none; } }
    @keyframes hjb-zoom { from { transform: scale(1.08); } to { transform: scale(1); } }

    .nav__utility { animation: hjb-fade 0.8s ease both; }
    .nav__bar { animation: hjb-drop 0.7s var(--ease) both; }
    .hero__media img { animation: hjb-zoom 8s var(--ease) both; will-change: transform; }

    .hero__eyebrow,
    .hero__title span,
    .hero__lede,
    .hero__actions,
    .hero__reassure,
    .hero__footer {
        opacity: 0;
        animation: hjb-rise 0.85s var(--ease) forwards;
    }
    .hero__eyebrow { animation-delay: 0.15s; }
    .hero__title span:nth-child(1) { animation-delay: 0.28s; }
    .hero__title span:nth-child(2) { animation-delay: 0.4s; }
    .hero__title span:nth-child(3) { animation-delay: 0.52s; }
    .hero__lede { animation-delay: 0.66s; }
    .hero__actions { animation-delay: 0.78s; }
    .hero__reassure { animation-delay: 0.88s; }
    .hero__footer { animation-delay: 0.6s; }
}

.coverage__panel { container-type: inline-size; }
.postcode { min-width: 0; }
.postcode span { min-width: 0; overflow-wrap: anywhere; }
@container (max-width: 360px) {
    .coverage__postcodes { grid-template-columns: 1fr; }
}

.footer__hero-btn { min-width: 0; }
.footer__hero-btn span { min-width: 0; flex: 1; }
.footer__hero-btn span b { overflow-wrap: anywhere; line-height: 1.3; }
.footer__hero-btn--ghost span b { font-size: clamp(0.58rem, 0.42rem + 0.6vw, 0.82rem); letter-spacing: -0.02em; }
.footer__hero-btn--ghost span { min-width: 0; flex: 1; }
.footer__hero-btn--ghost svg { flex-shrink: 0; }

button.nav__link,
button.nav__drop-trigger {
    border: 0 !important;
    background-color: transparent !important;
    border-radius: 0 !important;
    color: var(--white);
}
button.nav__drop-trigger:hover,
button.nav__drop-trigger:focus { background-color: transparent !important; }

button.nav__menu {
    border: 1px solid currentColor !important;
    background-color: transparent !important;
    border-radius: var(--radius) !important;
}
button.nav__menu:hover { background-color: var(--white) !important; color: var(--blue) !important; }

button.nav__close {
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    background-color: transparent !important;
    border-radius: var(--radius) !important;
}
button.nav__close:hover { background-color: var(--white) !important; color: var(--ink) !important; }

button.nav__item {
    border: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    background-color: transparent !important;
    border-radius: 0 !important;
}

button.enquiry__submit {
    border: 0 !important;
    background-color: var(--blue) !important;
    color: var(--white) !important;
    border-radius: var(--radius) !important;
}
button.enquiry__submit:hover,
button.enquiry__submit:focus { background-color: var(--blue-bright) !important; }

.btn,
.btn--primary,
.btn--ghost,
.projects__intro .btn,
.coverage__cta,
.process__cta-btn,
.footer__hero-btn,
.nav__overlay-quote,
.callbar a {
    color: var(--white) !important;
}
.btn--primary:hover,
.btn--ghost:hover,
.coverage__cta:hover,
.process__cta-btn:hover,
.footer__hero-btn:hover,
.nav__overlay-quote:hover { color: var(--white) !important; }

.nav__cta { color: var(--white) !important; }
.nav.scrolled .nav__cta { color: var(--blue) !important; }

.services__cta-btn { color: var(--white) !important; }
.services__cta:hover .services__cta-btn { color: var(--blue) !important; }

@media (max-width: 559px) {
    .footer__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.85rem 0.75rem;
        text-align: center;
    }
    .footer__brand { grid-column: 1 / -1; align-items: center; }
    .footer__brand-name { align-items: center; }
    .footer__brand p { max-width: 42ch; }
    .footer__col h3 { margin-bottom: 0.9rem; }
    .footer__col ul { align-items: center; }
    .footer__col ul a { font-size: 0.82rem; }
    .footer__col ul a:hover { transform: none; }
    .footer__contact { align-items: center; }
    .footer__contact-item { align-items: center; }
    .footer__contact-value { font-size: 0.82rem; overflow-wrap: anywhere; }
    .footer__bottom { flex-direction: column; justify-content: center; text-align: center; gap: 0.75rem; }
}

@media (max-width: 720px) {
    .nav__bar {
        padding-top: env(safe-area-inset-top, 0px);
        background-color: var(--blue);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    .nav.scrolled .nav__bar {
        background-color: var(--blue);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

@supports (-webkit-touch-callout: none) {
    @media (max-width: 720px) {
        .nav__bar,
        .nav.scrolled .nav__bar {
            background-color: transparent !important;
            backdrop-filter: none !important;
            -webkit-backdrop-filter: none !important;
            border-bottom-color: transparent !important;
        }
        .nav__brand-name,
        .nav__brand-name span { transition: color 250ms ease; }
        .nav__brand-name { text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55); }
        .nav--light .nav__brand-name,
        .nav--light .nav__brand-name span {
            color: var(--blue) !important;
            text-shadow: none;
        }
        button.nav__menu {
            background-color: var(--blue) !important;
            border-color: var(--blue) !important;
            color: var(--white) !important;
        }
    }
}


:root { --wrap: 1200px; }

.svc-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--ink);
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.svc-nav .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 0.9rem;
}
.svc-nav__brand { display: inline-flex; flex-direction: column; line-height: 1.1; font-weight: 700; font-size: 1rem; letter-spacing: -0.01em; color: var(--white); }
.svc-nav__brand span {
    font-family: var(--mono);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.6;
    margin-top: 3px;
}
.svc-nav__right { display: inline-flex; align-items: center; gap: clamp(1rem, 2.4vw, 1.75rem); }
.svc-nav__links { display: inline-flex; align-items: center; gap: clamp(1rem, 2.4vw, 1.75rem); }
.svc-nav__link { font-size: 0.85rem; font-weight: 500; color: rgba(255, 255, 255, 0.82); transition: color 180ms; }
.svc-nav__link:hover { color: var(--blue-bright); }
.svc-nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.62rem 1.1rem;
    border-radius: var(--radius);
    background-color: var(--blue);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: background-color 220ms, transform 220ms;
}
.svc-nav__cta:hover { background-color: var(--blue-bright); transform: translateY(-1px); }
.svc-nav__cta svg { width: 14px; height: 14px; }

.svc-nav__cta,
.svc-nav__cta:hover,
.svc-nav__cta:focus,
.svc-hero__ghost,
.svc-hero__ghost:hover,
.svc-cta__btn,
.svc-cta__btn:hover,
.svc-cta__btn--ghost,
.svc-cta__btn--ghost:hover,
.svc-aside__cta,
.svc-aside__cta:hover { color: var(--white) !important; }
.svc-hero__cta { color: var(--white) !important; }
.svc-hero__cta:hover,
.svc-hero__cta:focus { color: var(--blue) !important; }
@media (max-width: 720px) { .svc-nav__links { display: none; } }

.svc-hero {
    position: relative;
    background-color: var(--ink);
    background-image:
        radial-gradient(115% 90% at 12% 6%, rgba(29, 107, 216, 0.22), transparent 60%),
        radial-gradient(80% 70% at 100% 100%, rgba(14, 77, 164, 0.14), transparent 62%),
        linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
    background-size: auto, auto, 54px 54px, 54px 54px;
    color: var(--white);
    overflow: hidden;
    isolation: isolate;
    display: flex;
    align-items: center;
    padding-block: clamp(3.25rem, 7vw, 5.5rem);
}
.svc-hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
    overflow: hidden;
}
.svc-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.svc-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(15, 20, 25, 0.5) 0%, rgba(15, 20, 25, 0.3) 38%, rgba(15, 20, 25, 0.92) 100%),
        linear-gradient(90deg, rgba(15, 20, 25, 0.9) 0%, rgba(15, 20, 25, 0.52) 46%, rgba(15, 20, 25, 0.1) 82%, transparent 100%);
}
.svc-hero .wrap { position: relative; z-index: 1; width: 100%; }

.svc-hero--full { min-height: clamp(460px, 62vh, 620px); align-items: flex-end; }

.svc-hero--split { min-height: clamp(440px, 58vh, 580px); align-items: center; }
.svc-hero--split .svc-hero__media {
    left: auto; right: 0; width: 47%;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 24%);
    mask-image: linear-gradient(90deg, transparent, #000 24%);
}
.svc-hero--split::before { background: linear-gradient(180deg, rgba(15, 20, 25, 0.28), rgba(15, 20, 25, 0.72)); }
.svc-hero--split .wrap { padding-right: 46%; }

.svc-hero--band { display: block; align-items: stretch; min-height: 0; padding-top: 0; }
.svc-hero--band .svc-hero__media {
    position: relative; inset: auto; width: 100%;
    height: clamp(260px, 34vw, 460px);
    -webkit-mask-image: none;
    mask-image: none;
}
.svc-hero--band .svc-hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 20, 25, 0) 45%, rgba(15, 20, 25, 0.55) 78%, var(--ink) 100%);
}
.svc-hero--band::before { display: none; }
.svc-hero--band .wrap { padding-top: clamp(2rem, 4.5vw, 3.25rem); padding-bottom: clamp(0.5rem, 2vw, 1.5rem); }

.svc-hero--plain { padding-block: clamp(4rem, 9vw, 7rem); }
.svc-hero--plain::before { display: none; }
.svc-hero--plain .svc-hero__lede { max-width: 58ch; }

@media (max-width: 760px) {
    .svc-hero { display: block; min-height: 0; padding-top: 0; padding-bottom: clamp(2.25rem, 8vw, 3rem); }
    .svc-hero .svc-hero__media {
        position: relative; inset: auto; z-index: 0;
        width: 100%; height: clamp(190px, 48vw, 280px);
        -webkit-mask-image: linear-gradient(180deg, #000 66%, transparent);
        mask-image: linear-gradient(180deg, #000 66%, transparent);
    }
    .svc-hero::before { display: none; }
    .svc-hero .wrap { width: 100%; padding-right: var(--gutter); padding-top: clamp(1.5rem, 6vw, 2rem); }
    .svc-hero--plain { padding-top: clamp(2rem, 8vw, 3rem); padding-bottom: clamp(2.25rem, 8vw, 3.25rem); }
    .svc-hero--plain .wrap { padding-top: 0; }
}
.svc-crumbs {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1.5rem;
}
.svc-crumbs a { color: rgba(255, 255, 255, 0.55); transition: color 180ms; }
.svc-crumbs a:hover { color: var(--blue-bright); }
.svc-crumbs svg { width: 10px; height: 10px; color: var(--blue-bright); }
.svc-hero__icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius);
    display: grid;
    place-items: center;
    background-color: var(--blue);
    color: var(--white);
    margin-bottom: 1.4rem;
}
.svc-hero__icon svg { width: 32px; height: 32px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.svc-hero__num {
    display: block;
    font-family: var(--mono);
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--blue-bright);
    margin-bottom: 1rem;
}
.svc-hero__title {
    font-weight: 800;
    font-size: clamp(2.4rem, 1.8rem + 3.6vw, 4.75rem);
    line-height: 1.02;
    letter-spacing: -0.035em;
    margin-bottom: 1.25rem;
    max-width: 16ch;
}
.svc-hero__title em { font-style: normal; color: var(--blue-bright); }
.svc-hero__title .hand { font-family: var(--hand); font-weight: 700; color: var(--blue-bright); font-size: 1.1em; }
.svc-hero__lede {
    font-size: clamp(1rem, 0.92rem + 0.45vw, 1.2rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
    max-width: 56ch;
}
.svc-hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.svc-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.6rem;
    border-radius: var(--radius);
    background-color: var(--blue-bright);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: background-color 260ms, color 260ms, transform 260ms;
}
.svc-hero__cta:hover { background-color: var(--white); color: var(--blue); transform: translateY(-2px); }
.svc-hero__cta svg { width: 15px; height: 15px; }
.svc-hero__ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    transition: background-color 220ms, border-color 220ms;
}
.svc-hero__ghost:hover { background-color: rgba(255, 255, 255, 0.08); border-color: var(--white); }
.svc-hero__facts { display: flex; flex-wrap: wrap; gap: 1.75rem 2.5rem; margin-top: 2.25rem; padding-top: 1.75rem; border-top: 1px solid rgba(255, 255, 255, 0.14); }
.svc-hero__fact b { display: block; font-weight: 700; font-size: clamp(1.4rem, 1.1rem + 1vw, 2rem); line-height: 1; letter-spacing: -0.02em; }
.svc-hero__fact span {
    display: block;
    margin-top: 0.55rem;
    font-family: var(--mono);
    font-size: 0.64rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.svc-band { padding-block: clamp(3rem, 6vw, 5rem); }
.svc-band--paper { background-color: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.svc-band--ink { background-color: var(--ink); color: var(--white); }
.svc-band--grid {
    background-image:
        radial-gradient(120% 90% at 50% -10%, rgba(14, 77, 164, 0.06), transparent 55%),
        linear-gradient(rgba(15, 20, 25, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 20, 25, 0.03) 1px, transparent 1px);
    background-size: auto, 64px 64px, 64px 64px;
}
.svc-head { max-width: 60ch; margin-bottom: clamp(1.75rem, 3vw, 2.5rem); }
.svc-head--center { margin-inline: auto; text-align: center; }
.svc-head--spaced { margin-top: clamp(2.25rem, 4vw, 3rem); }
.eyebrow.svc-eyebrow--light { color: var(--blue-bright); }
.svc-head h2 {
    font-weight: 700;
    font-size: clamp(1.7rem, 1.3rem + 1.8vw, 2.6rem);
    line-height: 1.08;
    letter-spacing: -0.025em;
}
.svc-head h2 em { font-style: normal; color: var(--blue); }
.svc-band--ink .svc-head h2 em { color: var(--blue-bright); }
.svc-head h2 .hand { font-family: var(--hand); font-weight: 700; color: var(--blue); font-size: 1.12em; }
.svc-head p { margin-top: 1rem; font-size: 1.02rem; line-height: 1.65; color: var(--body); }
.svc-band--ink .svc-head p { color: rgba(255, 255, 255, 0.78); }

.svc-prose { max-width: 64ch; }
.svc-prose p { font-size: 1.02rem; line-height: 1.75; color: var(--body); }
.svc-prose p + p { margin-top: 1.1rem; }
.svc-prose strong { color: var(--ink); font-weight: 600; }
.svc-prose--center { margin-inline: auto; }

.svc-check { display: grid; gap: 0.7rem; }
.svc-check li { display: flex; align-items: flex-start; gap: 0.8rem; font-size: 0.98rem; line-height: 1.5; color: var(--body); }
.svc-check li::before {
    content: "";
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 1px;
    border-radius: 999px;
    background-color: rgba(14, 77, 164, 0.1);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230E4DA4' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}
.svc-check--two { grid-template-columns: 1fr; }
@media (min-width: 600px) { .svc-check--two { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.7rem 2rem; } }
.svc-band--ink .svc-check li,
.svc-panel--ink .svc-check li { color: rgba(255, 255, 255, 0.85); }
.svc-band--ink .svc-check li::before,
.svc-panel--ink .svc-check li::before {
    background-color: rgba(255, 255, 255, 0.16);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231D6BD8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

.svc-cards { display: grid; grid-template-columns: 1fr; gap: clamp(0.85rem, 1.6vw, 1.25rem); }
.svc-card {
    position: relative;
    overflow: hidden;
    background-color: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(1.4rem, 2.2vw, 1.85rem);
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    box-shadow: 0 6px 18px -14px rgba(15, 20, 25, 0.16);
    transition: transform 360ms var(--ease), border-color 320ms ease, box-shadow 360ms var(--ease);
}
.svc-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue-bright));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 460ms var(--ease);
}
.svc-card:hover { transform: translateY(-4px); border-color: rgba(14, 77, 164, 0.22); box-shadow: 0 18px 40px -26px rgba(15, 20, 25, 0.2); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card__no { font-family: var(--mono); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em; color: var(--blue); }
.svc-card__icon {
    width: 46px; height: 46px;
    border-radius: var(--radius);
    background-color: var(--bg-2);
    color: var(--blue);
    display: grid;
    place-items: center;
    margin-bottom: 0.3rem;
}
.svc-card__icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.svc-card h3 { font-weight: 700; font-size: 1.1rem; letter-spacing: -0.015em; color: var(--ink); }
.svc-card p { font-size: 0.94rem; line-height: 1.55; color: var(--muted); }
@media (min-width: 600px) { .svc-cards--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 760px) { .svc-cards--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 980px) { .svc-cards--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.svc-steps { display: grid; grid-template-columns: 1fr; gap: clamp(0.85rem, 1.6vw, 1.25rem); counter-reset: svcstep; }
.svc-step {
    position: relative;
    background-color: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(1.4rem, 2.2vw, 1.85rem);
}
.svc-step__no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem; height: 2.4rem;
    border-radius: 999px;
    background-color: var(--ink);
    color: var(--white);
    font-family: var(--mono);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.9rem;
}
.svc-step h3 { font-weight: 700; font-size: 1.08rem; letter-spacing: -0.015em; margin-bottom: 0.4rem; }
.svc-step p { font-size: 0.94rem; line-height: 1.55; color: var(--muted); }
@media (min-width: 640px) { .svc-steps--row { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .svc-steps--row { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.svc-split { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
@media (min-width: 900px) { .svc-split { grid-template-columns: repeat(2, minmax(0, 1fr)); } .svc-split--wideleft { grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); } }
.svc-panel {
    background-color: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(1.6rem, 2.6vw, 2.25rem);
}
.svc-panel--ink { background-color: var(--ink); color: var(--white); border-color: rgba(255, 255, 255, 0.1); }
.svc-panel h3 { font-weight: 700; font-size: 1.2rem; letter-spacing: -0.015em; margin-bottom: 0.9rem; }
.svc-panel p { font-size: 0.96rem; line-height: 1.65; color: var(--body); }
.svc-panel--ink p { color: rgba(255, 255, 255, 0.8); }

.svc-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background-color: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}
.svc-stat { background-color: var(--white); padding: clamp(1.25rem, 2.4vw, 1.85rem); display: flex; flex-direction: column; gap: 0.4rem; }
.svc-stat b { font-weight: 700; font-size: clamp(1.5rem, 1.1rem + 1.2vw, 2.25rem); line-height: 1; letter-spacing: -0.025em; }
.svc-stat span { font-family: var(--mono); font-size: 0.66rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--steel); }
@media (min-width: 760px) { .svc-stats--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.svc-compare { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background-color: var(--white); }
.svc-compare__row { display: grid; grid-template-columns: 1fr; gap: 0.25rem; padding: clamp(1.1rem, 2vw, 1.5rem); }
.svc-compare__row + .svc-compare__row { border-top: 1px solid var(--line); }
.svc-compare__row:hover { background-color: var(--bg-1); }
.svc-compare__name { display: flex; align-items: baseline; gap: 0.7rem; font-weight: 700; font-size: 1.05rem; letter-spacing: -0.01em; color: var(--ink); }
.svc-compare__name b { font-family: var(--mono); font-size: 0.72rem; font-weight: 500; color: var(--blue); }
.svc-compare__row p { font-size: 0.94rem; line-height: 1.55; color: var(--muted); }
@media (min-width: 760px) { .svc-compare__row { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr); gap: 1.5rem; align-items: center; } }

.svc-quote {
    position: relative;
    max-width: 46ch;
    margin-inline: auto;
    text-align: center;
}
.svc-quote blockquote { font-weight: 500; font-size: clamp(1.3rem, 1rem + 1.1vw, 1.95rem); line-height: 1.35; letter-spacing: -0.015em; color: var(--ink); }
.svc-band--ink .svc-quote blockquote { color: var(--white); }
.svc-quote cite { display: block; margin-top: 1.25rem; font-family: var(--mono); font-size: 0.7rem; font-style: normal; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); }
.svc-band--ink .svc-quote cite { color: var(--blue-bright); }
.svc-quote::before {
    content: "\201C";
    display: block;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 4rem;
    line-height: 0.6;
    color: rgba(14, 77, 164, 0.18);
    margin-bottom: 0.5rem;
}
.svc-band--ink .svc-quote::before { color: rgba(29, 107, 216, 0.4); }

.svc-faq { display: grid; gap: 0.75rem; max-width: 70ch; }
.svc-faq details {
    background-color: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0 clamp(1.1rem, 2vw, 1.5rem);
    transition: border-color 240ms;
}
.svc-faq details[open] { border-color: rgba(14, 77, 164, 0.3); }
.svc-faq summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 1.1rem;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: -0.01em;
    color: var(--ink);
}
.svc-faq summary::-webkit-details-marker { display: none; }
.svc-faq summary::after {
    content: "";
    flex-shrink: 0;
    width: 18px; height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%230E4DA4' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    transition: transform 280ms var(--ease);
}
.svc-faq details[open] summary::after { transform: rotate(45deg); }
.svc-faq p { padding-bottom: 1.2rem; font-size: 0.96rem; line-height: 1.65; color: var(--body); max-width: 62ch; }

.svc-aside {
    background-color: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(1.5rem, 2.5vw, 2rem);
    align-self: start;
    position: sticky;
    top: 6rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
.svc-aside > span { font-family: var(--mono); font-size: 0.66rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); }
.svc-aside h3 { font-weight: 700; font-size: 1.2rem; line-height: 1.2; letter-spacing: -0.015em; }
.svc-aside p { font-size: 0.95rem; line-height: 1.6; color: var(--body); }
.svc-aside__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.95rem 1.25rem;
    border-radius: var(--radius);
    background-color: var(--blue);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: background-color 240ms, transform 240ms;
}
.svc-aside__cta:hover { background-color: var(--blue-bright); transform: translateY(-1px); }
.svc-aside__cta svg { width: 14px; height: 14px; }
.svc-aside__row { display: flex; flex-direction: column; gap: 0.25rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.svc-aside__row span:first-child { font-family: var(--mono); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--steel); }
.svc-aside__row span:last-child { font-size: 0.95rem; font-weight: 600; }

.svc-cta {
    position: relative;
    overflow: hidden;
    background-color: var(--ink);
    color: var(--white);
    border-radius: var(--radius);
    padding: clamp(2rem, 4vw, 3.25rem);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem 2.5rem;
}
.svc-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(120% 120% at 100% 0%, rgba(29, 107, 216, 0.32), transparent 55%);
    pointer-events: none;
}
.svc-cta > * { position: relative; }
.svc-cta__text { max-width: 40ch; }
.svc-cta__text span { font-family: var(--mono); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-bright); }
.svc-cta__text h2 { margin-top: 0.6rem; font-weight: 700; font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.1rem); line-height: 1.1; letter-spacing: -0.02em; }
.svc-cta__text p { margin-top: 0.75rem; font-size: 0.96rem; line-height: 1.6; color: rgba(255, 255, 255, 0.78); }
.svc-cta__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.svc-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.6rem;
    border-radius: var(--radius);
    background-color: var(--blue);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: background-color 240ms, transform 240ms;
}
.svc-cta__btn:hover { background-color: var(--blue-bright); transform: translateY(-2px); }
.svc-cta__btn svg { width: 15px; height: 15px; }
.svc-cta__btn--ghost { background-color: transparent; border: 1px solid rgba(255, 255, 255, 0.3); }
.svc-cta__btn--ghost:hover { background-color: rgba(255, 255, 255, 0.08); border-color: var(--white); transform: translateY(-2px); }

.svc-related__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background-color: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}
.svc-tile {
    background-color: var(--white);
    padding: 1.2rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    transition: background-color 240ms, color 240ms;
}
.svc-tile:hover { background-color: var(--blue); color: var(--white); }
.svc-tile b { font-family: var(--mono); font-weight: 500; font-size: 0.72rem; letter-spacing: 0.1em; color: var(--steel); min-width: 1.7rem; }
.svc-tile:hover b { color: rgba(255, 255, 255, 0.65); }
.svc-tile span { font-weight: 600; font-size: 0.94rem; line-height: 1.25; }
.svc-tile svg { width: 16px; height: 16px; margin-left: auto; opacity: 0; transform: translateX(-6px); transition: opacity 240ms, transform 240ms; }
.svc-tile:hover svg { opacity: 1; transform: translateX(0); }
@media (min-width: 640px) { .svc-related__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .svc-related__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.svc-bodygrid { display: grid; grid-template-columns: 1fr; gap: clamp(2.5rem, 5vw, 4rem); }
@media (min-width: 920px) { .svc-bodygrid { grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr); } }

.svc-figure {
    position: relative;
    align-self: stretch;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    background-color: var(--paper-2);
    box-shadow: 0 20px 46px -30px rgba(15, 20, 25, 0.4);
    min-height: 260px;
}
.svc-figure img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4 / 3; }
.svc-figure figcaption {
    position: absolute;
    left: 0; bottom: 0;
    max-width: 85%;
    padding: 0.6rem 0.9rem;
    background-color: var(--blue);
    color: var(--white);
    font-family: var(--mono);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.svc-lead { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 4vw, 3.25rem); align-items: center; }
.svc-lead.svc-lead--plain { grid-template-columns: 1fr; align-items: start; gap: clamp(1.5rem, 3vw, 2.25rem); }
.svc-lead--plain .svc-head { max-width: 68ch; margin-bottom: 0; }
@media (min-width: 620px) {
    .svc-lead--plain .svc-check { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.7rem 2.25rem; }
}

.legal-hero {
    position: relative;
    background-color: var(--ink);
    background-image:
        radial-gradient(115% 90% at 12% 6%, rgba(29, 107, 216, 0.22), transparent 60%),
        linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
    background-size: auto, 54px 54px, 54px 54px;
    color: var(--white);
    padding-block: clamp(2.5rem, 6vw, 4rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.legal-hero h1 {
    font-weight: 800;
    font-size: clamp(2rem, 1.5rem + 2.5vw, 3.25rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-top: 0.9rem;
}
.legal-hero__updated {
    display: block;
    margin-top: 1rem;
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}
.legal { background-color: var(--bg-1); padding-block: clamp(2.75rem, 6vw, 4.5rem); }
.legal .wrap { max-width: 820px; }
.legal__intro { font-size: 1.08rem; line-height: 1.7; color: var(--body); margin-bottom: 2rem; }
.legal h2 {
    font-weight: 700;
    font-size: clamp(1.3rem, 1.1rem + 0.8vw, 1.6rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-top: 2.5rem;
    margin-bottom: 0.85rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}
.legal h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.legal h3 { font-weight: 700; font-size: 1.05rem; color: var(--ink); margin-top: 1.5rem; margin-bottom: 0.5rem; }
.legal p, .legal li { font-size: 1rem; line-height: 1.75; color: var(--body); }
.legal p { margin-bottom: 1rem; }
.legal ul { list-style: disc; padding-left: 1.35rem; margin: 0 0 1.25rem; display: grid; gap: 0.45rem; }
.legal li { padding-left: 0.2rem; }
.legal a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { color: var(--blue-bright); }
.legal strong { color: var(--ink); font-weight: 600; }
.legal__note {
    margin-top: 2.5rem;
    padding: 1.15rem 1.35rem;
    background-color: var(--paper-2);
    border-left: 3px solid var(--blue);
    border-radius: var(--radius);
    font-size: 0.94rem;
    color: var(--muted);
}
.legal__contact {
    margin-top: 2rem;
    padding: 1.35rem 1.5rem;
    background-color: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}
.legal__contact p { margin-bottom: 0.35rem; }
@media (min-width: 900px) { .svc-lead { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }
@media (max-width: 899px) { .svc-lead--textfirst > figure { order: 2; } }

@media (max-width: 600px) {
    .svc-head { text-align: center; margin-inline: auto; }
    .svc-head p { margin-inline: auto; }
}

@media (max-width: 560px) {
    .svc-nav .wrap { gap: 0.65rem; padding-block: 0.75rem; }
    .svc-nav__brand { font-size: 0.88rem; }
    .svc-nav__brand span { font-size: 0.56rem; }
    .svc-nav__cta { padding: 0.52rem 0.85rem; font-size: 0.72rem; }

    .svc-crumbs { font-size: 0.62rem; letter-spacing: 0.1em; margin-bottom: 1.2rem; }
    .svc-hero__title { font-size: clamp(1.95rem, 1.4rem + 3.6vw, 2.6rem); max-width: 100%; overflow-wrap: break-word; }
    .svc-hero__lede { max-width: 100%; }
    .svc-hero__actions { gap: 0.6rem; margin-top: 1.75rem; }
    .svc-hero__cta, .svc-hero__ghost { flex: 1 1 100%; justify-content: center; }
    .svc-hero__facts { gap: 1.25rem 2rem; margin-top: 2rem; padding-top: 1.5rem; }

    .svc-band { padding-block: clamp(2.5rem, 9vw, 3.25rem); }
    .svc-head h2 { font-size: clamp(1.5rem, 1.15rem + 2.6vw, 2rem); overflow-wrap: break-word; }
    .svc-lead { gap: 1.75rem; }
    .svc-figure { min-height: 200px; }

    .svc-cta { padding: clamp(1.6rem, 7vw, 2.1rem); gap: 1.25rem; }
    .svc-cta__text { max-width: 100%; }
    .svc-cta__text h2 { overflow-wrap: break-word; }
    .svc-cta__actions { width: 100%; gap: 0.6rem; }
    .svc-cta__btn, .svc-cta__btn--ghost { flex: 1 1 100%; justify-content: center; }
}/* End custom CSS */