:root {
    --plum: #5b3342;
    --plum-deep: #3c2230;
    --plum-soft: #7b4d60;
    --gold: #c0a126;
    --gold-light: #ead679;
    --sky: #bde8f3;
    --navy: #06194f;
    --ink: #1f1720;
    --muted: #6d6270;
    --paper: #f7f2f4;
    --paper-strong: #efe4e8;
    --white: #fff;
    --line: rgba(31, 23, 32, 0.14);
    --shadow: 0 22px 70px rgba(31, 23, 32, 0.18);
    --shadow-soft: 0 14px 42px rgba(31, 23, 32, 0.12);
    --max: 1180px;
}

* {
    box-sizing: border-box;
    letter-spacing: 0;
}

[hidden] {
    display: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
}

html.a11y-font-1 body {
    font-size: 17px;
}

html.a11y-font-2 body {
    font-size: 18px;
}

html.a11y-high-contrast {
    --plum: #341c27;
    --plum-deep: #180d13;
    --plum-soft: #5d3143;
    --gold: #8a7100;
    --gold-light: #fff0a6;
    --sky: #e9fbff;
    --navy: #000b35;
    --ink: #050505;
    --muted: #252525;
    --paper: #ffffff;
    --paper-strong: #f1f1f1;
    --line: rgba(0, 0, 0, 0.42);
}

html.a11y-high-contrast body {
    color: #050505;
    background: #ffffff;
}

html.a11y-high-contrast .hero,
html.a11y-high-contrast .cta-band {
    background-image:
        linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(35, 17, 27, 0.84)),
        var(--hero-image, var(--cta-image));
}

html.a11y-high-contrast a:not(.button):not(.brand),
html.a11y-high-contrast .text-link,
html.a11y-high-contrast .footer-button {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

html.a11y-reduce-motion *,
html.a11y-reduce-motion *::before,
html.a11y-reduce-motion *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

*:focus-visible {
    outline: 3px solid var(--sky);
    outline-offset: 3px;
}

::selection {
    color: var(--plum-deep);
    background: var(--sky);
}

.container {
    width: min(100% - 40px, var(--max));
    margin: 0 auto;
}

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

.skip-link:focus {
    z-index: 999;
    top: 14px;
    left: 14px;
    width: auto;
    height: auto;
    padding: 10px 14px;
    clip: auto;
    color: var(--white);
    background: var(--navy);
}

.icon {
    width: 1.1em;
    height: 1.1em;
    flex: 0 0 auto;
}

.icon-button {
    display: inline-grid;
    width: 40px;
    height: 40px;
    place-items: center;
    padding: 0;
    color: inherit;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: transparent;
    font-size: 1.5rem;
    line-height: 1;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    background: rgba(60, 34, 48, 0.9);
    backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
    color: var(--ink);
    border-bottom-color: var(--line);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 30px rgba(31, 23, 32, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-mark {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    flex: 0 0 auto;
    color: var(--gold-light);
    border: 1px solid rgba(234, 214, 121, 0.75);
    border-radius: 50%;
    background: radial-gradient(circle at 35% 24%, rgba(234, 214, 121, 0.3), rgba(6, 25, 79, 0.86));
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
    font-weight: 700;
}

.brand-copy {
    display: grid;
    line-height: 1.15;
}

.brand-copy strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
}

.brand-copy small {
    color: var(--sky);
    font-size: 0.78rem;
    text-transform: uppercase;
}

.site-header.is-scrolled .brand-copy small {
    color: var(--navy);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.site-nav a {
    padding: 10px 12px;
    border-bottom: 2px solid transparent;
    color: currentColor;
    font-size: 0.96rem;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
    color: var(--gold-light);
    border-bottom-color: var(--gold);
    outline: none;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible,
.site-header.is-scrolled .site-nav a[aria-current="page"] {
    color: var(--plum);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    place-items: center;
    padding: 0;
    color: currentColor;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 6px;
    background: transparent;
}

.nav-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    margin: 3px auto;
    background: currentColor;
}

.section {
    padding: 92px 0;
}

.section--paper {
    background: var(--paper);
}

.section--plum {
    color: var(--white);
    background: var(--plum);
}

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

.section-heading {
    max-width: 760px;
    margin: 0 0 42px;
}

.section-heading.center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--gold);
    font-weight: 700;
}

.section-heading h1,
.section-heading h2,
.split-copy h2,
.legal-content h1,
.contact-panel h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.08;
    font-weight: 700;
}

.section-heading h1 {
    font-size: 3.8rem;
}

.section-heading h2,
.split-copy h2,
.legal-content h1 {
    font-size: 2.8rem;
}

.section-heading p,
.split-copy p {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 1.08rem;
}

.section--plum .section-heading p,
.section--navy .section-heading p,
.section--plum .split-copy p,
.section--navy .split-copy p {
    color: rgba(255, 255, 255, 0.78);
}

.hero {
    position: relative;
    display: flex;
    min-height: 82svh;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background-image:
        linear-gradient(90deg, rgba(36, 20, 30, 0.92), rgba(91, 51, 66, 0.72) 46%, rgba(6, 25, 79, 0.38)),
        var(--hero-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hero--compact {
    min-height: 470px;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: center;
    gap: 60px;
    padding: 88px 0 72px;
}

.hero-content {
    max-width: 760px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: var(--sky);
    font-weight: 700;
}

.hero-title {
    max-width: 850px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 4.7rem;
    line-height: 0.98;
}

.hero-lead {
    max-width: 680px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.2rem;
}

.hero-actions,
.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    border: 1px solid var(--gold);
    border-radius: 6px;
    color: var(--plum-deep);
    background: var(--gold-light);
    font-weight: 800;
    line-height: 1.2;
    box-shadow: 0 12px 28px rgba(10, 12, 32, 0.18);
}

.button:hover,
.button:focus-visible {
    color: var(--white);
    background: var(--gold);
    outline: none;
}

.button--ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.52);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.button--ghost:hover,
.button--ghost:focus-visible {
    color: var(--plum-deep);
    background: var(--white);
}

.button--dark {
    color: var(--white);
    border-color: var(--navy);
    background: var(--navy);
}

.button--dark:hover,
.button--dark:focus-visible {
    color: var(--navy);
    background: var(--sky);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--plum);
    font-weight: 800;
}

.text-link:hover,
.text-link:focus-visible {
    color: var(--navy);
    outline: none;
}

.hero-seal {
    display: grid;
    width: 320px;
    aspect-ratio: 1;
    align-self: end;
    place-items: center;
    overflow: hidden;
    padding: 8px;
    border: 3px solid rgba(234, 214, 121, 0.9);
    border-radius: 50%;
    background: var(--plum);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

.hero-seal img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
    object-position: center;
    border-radius: 50%;
    transform: translateY(-2%);
}

.proof-rail {
    color: var(--white);
    background: var(--navy);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.18);
}

.proof-item {
    min-height: 116px;
    padding: 24px;
    background: var(--navy);
}

.proof-item strong {
    display: block;
    color: var(--gold-light);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    line-height: 1.1;
}

.proof-item span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.75);
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
    align-items: center;
    gap: 58px;
}

.split.reverse {
    grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1fr);
}

.split.reverse .split-media {
    order: 1;
}

.split.reverse .split-copy {
    order: 2;
}

.split-copy h2 {
    max-width: 720px;
}

.split-copy ul,
.check-list {
    display: grid;
    gap: 12px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.split-copy li,
.check-list li {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.split-copy li .icon,
.check-list li .icon {
    margin-top: 4px;
    color: var(--gold);
}

.photo-frame {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: var(--paper-strong);
    box-shadow: var(--shadow-soft);
}

.photo-frame img {
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.photo-frame.tall img {
    min-height: 520px;
}

.photo-frame::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(0deg, rgba(60, 34, 48, 0.66), transparent);
    pointer-events: none;
}

.image-pair {
    display: grid;
    grid-template-columns: 0.82fr 1fr;
    gap: 16px;
    align-items: end;
}

.image-pair .photo-frame:first-child {
    margin-bottom: 48px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

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

.feature-card,
.service-card,
.process-card,
.contact-card,
.value-card {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(31, 23, 32, 0.06);
}

.feature-card.dark,
.service-card.dark,
.process-card.dark {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
}

.feature-card .icon,
.service-card .icon,
.process-card .icon,
.contact-card .icon,
.value-card .icon {
    width: 36px;
    height: 36px;
    margin-bottom: 20px;
    color: var(--gold);
}

.feature-card h3,
.service-card h3,
.process-card h3,
.contact-card h3,
.value-card h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    line-height: 1.2;
}

.feature-card p,
.service-card p,
.process-card p,
.contact-card p,
.value-card p {
    margin: 14px 0 0;
    color: var(--muted);
}

.feature-card.dark p,
.service-card.dark p,
.process-card.dark p {
    color: rgba(255, 255, 255, 0.76);
}

.service-card figure {
    margin: -26px -26px 22px;
}

.service-card figure img {
    height: 220px;
    border-radius: 8px 8px 0 0;
    object-fit: cover;
}

.cta-band {
    padding: 62px 0;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(60, 34, 48, 0.96), rgba(6, 25, 79, 0.88)),
        var(--cta-image);
    background-position: center;
    background-size: cover;
}

.cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 30px;
    align-items: center;
}

.cta-inner h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.4rem;
    line-height: 1.12;
}

.cta-inner p {
    max-width: 720px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.78);
}

.image-strip {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 18px;
}

.image-strip img {
    height: 330px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

.image-strip img:nth-child(2) {
    margin-top: 46px;
}

.assetpilot {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
    gap: 44px;
    align-items: center;
}

.interface-shot {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: #101c3f;
    box-shadow: var(--shadow);
}

.interface-top {
    display: flex;
    gap: 8px;
    padding: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.interface-top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
}

.interface-body {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    min-height: 360px;
}

.interface-nav {
    padding: 18px;
    background: rgba(255, 255, 255, 0.05);
}

.interface-nav span,
.interface-line,
.interface-card {
    display: block;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.12);
}

.interface-nav span {
    height: 12px;
    margin-bottom: 14px;
}

.interface-content {
    display: grid;
    gap: 16px;
    padding: 20px;
}

.interface-line {
    height: 16px;
}

.interface-line.short {
    width: 62%;
}

.interface-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.interface-card {
    min-height: 118px;
    padding: 18px;
    background: rgba(189, 232, 243, 0.12);
}

.interface-card strong {
    display: block;
    color: var(--gold-light);
    font-size: 1.4rem;
}

.interface-card span {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.72);
}

.process-list {
    display: grid;
    gap: 16px;
}

.process-card {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.process-number {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    color: var(--plum-deep);
    border-radius: 50%;
    background: var(--gold-light);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    gap: 42px;
    align-items: start;
}

.contact-panel {
    padding: 34px;
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.contact-panel h2 {
    font-size: 2rem;
}

.contact-panel p {
    color: var(--muted);
}

.contact-list {
    display: grid;
    gap: 16px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.contact-list > li > a,
.contact-list > li > span {
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.contact-list > li > a span,
.contact-list > li > span span {
    min-width: 0;
}

.contact-list a[href^="tel"] span {
    white-space: nowrap;
}

.contact-list .icon {
    color: var(--gold);
}

.contact-card-image {
    margin-top: 30px;
    background: var(--plum);
}

.contact-card-image img {
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
}

.contact-card-image::after {
    display: none;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.field {
    display: grid;
    gap: 7px;
}

.field label {
    color: var(--ink);
    font-weight: 800;
}

.field small,
.privacy-note {
    color: var(--muted);
    font-size: 0.9rem;
}

.field input,
.field textarea,
.field select {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
}

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

.field input:focus,
.field textarea:focus,
.field select:focus {
    border-color: var(--gold);
    outline: 3px solid rgba(192, 161, 38, 0.18);
}

.field-trap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-status {
    padding: 14px 16px;
    border-radius: 8px;
    font-weight: 700;
}

.form-status.success {
    color: #183f2a;
    background: #e9f8ef;
}

.form-status.error {
    color: #631c24;
    background: #fde9ed;
}

.privacy-note a,
.legal-content a {
    color: var(--plum);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.legal-content {
    max-width: 900px;
}

.legal-content h1 {
    margin-bottom: 24px;
}

.legal-content h2 {
    margin: 34px 0 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
}

.legal-content p,
.legal-content li {
    color: var(--muted);
}

.site-footer {
    color: rgba(255, 255, 255, 0.78);
    background: var(--plum-deep);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 0.8fr;
    gap: 34px;
    padding: 58px 0 40px;
}

.footer-brand {
    color: var(--white);
}

.site-footer h2 {
    margin: 0 0 14px;
    color: var(--white);
    font-size: 1rem;
}

.site-footer p {
    max-width: 360px;
    margin: 18px 0 0;
}

.footer-links {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-button:hover,
.footer-button:focus-visible {
    color: var(--gold-light);
    outline: none;
}

.footer-button {
    padding: 0;
    color: inherit;
    border: 0;
    background: transparent;
    text-align: left;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-light);
    font-weight: 800;
}

.accessibility-widget {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 80;
}

.a11y-fab {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    color: var(--plum-deep);
    border: 1px solid var(--gold);
    border-radius: 50%;
    background: var(--gold-light);
    box-shadow: var(--shadow-soft);
}

.a11y-fab .icon {
    width: 24px;
    height: 24px;
}

.a11y-panel {
    position: absolute;
    right: 0;
    bottom: 66px;
    width: min(320px, calc(100vw - 32px));
    padding: 20px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.a11y-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.a11y-panel h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
}

.a11y-controls {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 16px;
}

.a11y-controls button {
    min-height: 42px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--paper);
    font-weight: 800;
}

.a11y-controls button:hover:not(:disabled),
.a11y-controls button:focus-visible {
    color: var(--plum-deep);
    border-color: var(--gold);
    background: var(--gold-light);
}

.a11y-controls button:disabled {
    cursor: not-allowed;
    opacity: 0.48;
}

.switch-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 44px;
    padding: 10px 0;
    border-top: 1px solid var(--line);
    color: var(--ink);
    font-weight: 800;
}

.switch-row input {
    width: 24px;
    height: 24px;
    accent-color: var(--plum);
}

.a11y-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: var(--plum);
    font-weight: 800;
}

.cookie-banner {
    position: fixed;
    right: 22px;
    bottom: 22px;
    left: 22px;
    z-index: 90;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    width: min(calc(100% - 44px), 980px);
    margin: 0 auto;
    padding: 22px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
}

.cookie-copy h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
}

.cookie-copy p {
    margin: 8px 0 0;
    color: var(--muted);
}

.cookie-copy .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 8px;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

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

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }

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

@media (max-width: 1040px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-seal {
        display: none;
    }

    .proof-grid,
    .card-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .split,
    .split.reverse,
    .assetpilot,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .split.reverse .split-media,
    .split.reverse .split-copy {
        order: initial;
    }
}

@media (max-width: 860px) {
    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: 76px;
        right: 20px;
        left: 20px;
        display: none;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 8px;
        color: var(--ink);
        background: var(--white);
        box-shadow: var(--shadow-soft);
    }

    .site-nav.is-open {
        display: grid;
    }

    .site-nav a {
        padding: 13px 12px;
        border-bottom: 1px solid var(--line);
    }

    .site-nav a:last-child {
        border-bottom: 0;
    }

    .hero {
        min-height: 76svh;
    }

    .hero-title {
        font-size: 3.3rem;
    }

    .section-heading h1 {
        font-size: 3rem;
    }

    .section-heading h2,
    .split-copy h2,
    .legal-content h1 {
        font-size: 2.25rem;
    }

    .image-strip,
    .form-grid,
    .card-grid.two,
    .interface-body,
    .cta-inner {
        grid-template-columns: 1fr;
    }

    .image-strip img,
    .image-strip img:nth-child(2) {
        height: 260px;
        margin-top: 0;
    }

    .cta-inner {
        align-items: start;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, var(--max));
    }

    .header-inner {
        min-height: 68px;
    }

    .brand-copy strong {
        font-size: 1rem;
    }

    .brand-copy small {
        font-size: 0.72rem;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .site-nav {
        top: 68px;
        right: 14px;
        left: 14px;
    }

    .section {
        padding: 66px 0;
    }

    .hero-inner {
        padding: 72px 0 56px;
    }

    .hero-title {
        font-size: 2.45rem;
    }

    .hero-lead {
        font-size: 1.05rem;
    }

    .section-heading h1 {
        font-size: 2.35rem;
    }

    .section-heading h2,
    .split-copy h2,
    .legal-content h1,
    .cta-inner h2 {
        font-size: 2rem;
    }

    .proof-grid,
    .card-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .proof-item {
        min-height: auto;
    }

    .image-pair {
        grid-template-columns: 1fr;
    }

    .image-pair .photo-frame:first-child {
        margin-bottom: 0;
    }

    .photo-frame img,
    .photo-frame.tall img {
        min-height: 280px;
    }

    .feature-card,
    .service-card,
    .process-card,
    .contact-card,
    .value-card,
    .contact-panel {
        padding: 22px;
    }

    .service-card figure {
        margin: -22px -22px 20px;
    }

    .process-card {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        display: grid;
    }

    .accessibility-widget {
        right: 14px;
        bottom: 14px;
    }

    .a11y-fab {
        width: 50px;
        height: 50px;
    }

    .a11y-panel {
        right: 0;
        bottom: 60px;
    }

    .cookie-banner {
        right: 14px;
        bottom: 14px;
        left: 14px;
        grid-template-columns: 1fr;
        width: auto;
        padding: 18px;
    }

    .cookie-actions {
        justify-content: flex-start;
    }
}
