:root {
    --gold: #c79a2b;
    --gold-dark: #9c761d;
    --gold-soft: #f5e8bd;
    --cream: #fffaf0;
    --white: #ffffff;
    --ink: #161514;
    --charcoal: #25221f;
    --muted: #6d665c;
    --line: #e7decd;
    --sage: #446f5f;
    --sage-soft: #e7f0eb;
    --danger: #9f2f24;
    --success: #2f6f4a;
    --shadow: 0 20px 60px rgba(22, 21, 20, 0.12);
    --heading-font: "Bookman Old Style", Bookman, Georgia, "Times New Roman", serif;
    --subheading-font: "Times New Roman", Times, serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--cream);
    font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    transition: background-color 460ms ease, color 460ms ease;
}

body.theme-dark {
    background: var(--ink);
}

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

a {
    color: inherit;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 48px;
    border-bottom: 1px solid rgba(231, 222, 205, 0.86);
    background: rgba(255, 250, 240, 0.94);
    backdrop-filter: blur(18px);
    transition: background-color 360ms ease, border-color 360ms ease, box-shadow 360ms ease;
}

body.theme-dark .site-header {
    border-color: rgba(231, 222, 205, 0.86);
    background: rgba(255, 250, 240, 0.94);
    box-shadow: none;
}

body.theme-dark .site-nav a {
    color: var(--charcoal);
}

body.theme-dark .site-nav a:hover,
body.theme-dark .site-nav a.active {
    color: var(--ink);
}

body.theme-dark .menu-toggle {
    border-color: var(--line);
    background: var(--white);
}

body.theme-dark .menu-lines,
body.theme-dark .menu-lines::before,
body.theme-dark .menu-lines::after {
    background: var(--ink);
}

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    min-width: 0;
}

body.theme-dark .brand {
    background: transparent;
}

.brand-logo {
    display: block;
    width: 236px;
    max-width: 54vw;
    height: auto;
}

.menu-shell {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 14px;
    margin-bottom: -14px;
}

.site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    min-width: 286px;
    padding: 12px;
    border: 1px solid rgba(199, 154, 43, 0.28);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 250, 240, 0.98), rgba(255, 255, 255, 0.98)),
        var(--white);
    box-shadow: 0 24px 60px rgba(22, 21, 20, 0.18);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 170ms ease, transform 170ms ease, visibility 170ms ease;
}

.site-nav::before {
    position: absolute;
    top: -7px;
    right: 15px;
    width: 14px;
    height: 14px;
    border-top: 1px solid rgba(199, 154, 43, 0.28);
    border-left: 1px solid rgba(199, 154, 43, 0.28);
    background: rgba(255, 250, 240, 0.98);
    content: "";
    transform: rotate(45deg);
}

.menu-shell:hover .site-nav,
.site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
}

.site-nav a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: var(--charcoal);
    font-size: 15px;
    font-weight: 760;
    text-decoration: none;
    padding: 14px 14px 14px 16px;
    border-radius: 6px;
    transition: background-color 170ms ease, color 170ms ease, transform 170ms ease;
}

.site-nav a + a {
    margin-top: 2px;
}

.site-nav a::after {
    color: var(--gold-dark);
    content: ">";
    font-size: 13px;
    font-weight: 900;
    opacity: 0.48;
    transform: translateX(-3px);
    transition: opacity 170ms ease, transform 170ms ease;
}

.site-nav a:hover,
.site-nav a.active {
    background: var(--gold-soft);
    color: var(--ink);
    transform: translateX(2px);
}

.site-nav a:hover::after,
.site-nav a.active::after {
    opacity: 1;
    transform: translateX(0);
}

.menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    cursor: pointer;
    transition: border-color 170ms ease, box-shadow 170ms ease, transform 170ms ease;
}

.menu-shell:hover .menu-toggle,
.menu-toggle:focus-visible,
.menu-toggle[aria-expanded="true"] {
    border-color: var(--gold);
    box-shadow: 0 10px 26px rgba(199, 154, 43, 0.22);
    transform: translateY(-1px);
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
    content: "";
}

.menu-lines {
    position: relative;
}

.menu-lines::before,
.menu-lines::after {
    position: absolute;
    left: 0;
}

.menu-lines::before {
    top: -7px;
}

.menu-lines::after {
    top: 7px;
}

.section-band {
    padding: 104px 48px;
}

.section-inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(34px);
    transition:
        opacity 820ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

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

.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 520px;
    padding: 56px 48px;
    overflow: hidden;
    background: var(--ink);
    color: var(--white);
}

.hero::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(22, 21, 20, 0.88), rgba(22, 21, 20, 0.56), rgba(22, 21, 20, 0.22));
    content: "";
}

.hero-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.split-layout,
.process-grid,
.enquiry-grid,
.saas-grid,
.two-column-text {
    display: grid;
    gap: 64px;
    align-items: center;
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--ink);
    font-family: var(--heading-font);
    line-height: 1.06;
    letter-spacing: 0;
}

h1 {
    max-width: 860px;
    margin-bottom: 26px;
    font-size: 72px;
    font-weight: 850;
}

h2 {
    margin-bottom: 22px;
    font-size: 48px;
    font-weight: 820;
}

h3 {
    margin-bottom: 12px;
    font-size: 24px;
    font-weight: 760;
}

.lead {
    color: var(--charcoal);
    font-family: var(--subheading-font);
    font-size: 21px;
    line-height: 1.65;
}

.manifesto-section p:not(.eyebrow),
.phase-heading p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.split-copy > p,
.saas-copy > p,
.enquiry-copy > p,
.service-overview-copy p,
.service-process-intro p:not(.eyebrow),
.service-ready-panel p,
.legal-hero .lead {
    font-family: var(--subheading-font);
}

.hero h1 {
    color: var(--white);
}

.hero .lead {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.82);
}

.hero .eyebrow {
    color: var(--gold-soft);
}

.scroll-cue {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 34px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
    text-transform: uppercase;
}

.scroll-cue span:last-child {
    position: relative;
    display: inline-block;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 50%;
}

.scroll-cue span:last-child::before {
    position: absolute;
    top: 9px;
    left: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--gold-soft);
    border-bottom: 2px solid var(--gold-soft);
    content: "";
    transform: translateX(-50%) rotate(45deg);
    animation: cueDrop 1.65s ease-in-out infinite;
}

@keyframes cueDrop {
    0%,
    100% {
        opacity: 0.42;
        transform: translate(-50%, 0) rotate(45deg);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, 6px) rotate(45deg);
    }
}

.hero-actions,
.footer-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 20px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.button-primary {
    background: var(--gold);
    color: var(--ink);
    border-color: var(--gold);
}

.button-primary:hover {
    background: var(--gold-dark);
    color: var(--white);
    border-color: var(--gold-dark);
}

.button-secondary {
    background: var(--white);
    color: var(--ink);
    border-color: var(--line);
}

.button-secondary:hover {
    border-color: var(--gold);
}

.button-light {
    background: var(--white);
    color: var(--ink);
}

.trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
    margin: 28px 0 0;
    list-style: none;
}

.trust-list li {
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.62);
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.split-media,
.saas-grid > img {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.hero .trust-list li {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.82);
}

.intro-strip {
    padding: 26px 48px;
    background: var(--charcoal);
    color: var(--white);
}

.manifesto-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: var(--white);
    color: var(--ink);
}

.manifesto-inner {
    max-width: 1120px;
}

.manifesto-section .eyebrow {
    color: var(--gold-dark);
}

.manifesto-section h2 {
    max-width: 980px;
    color: var(--ink);
    font-size: 64px;
    line-height: 1.02;
    font-weight: 900;
}

.manifesto-section p:not(.eyebrow) {
    max-width: 830px;
    margin-top: 34px;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.55;
}

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

.phase-heading {
    max-width: 900px;
    margin-bottom: 48px;
}

.phase-heading h2 {
    max-width: 780px;
    font-size: 62px;
    line-height: 1;
}

.phase-heading p:not(.eyebrow) {
    max-width: 820px;
    margin-top: 22px;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.55;
}

.phase-visual-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 32px;
}

.phase-visual-grid img {
    width: 100%;
    min-height: 180px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.phase-label-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 42px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.phase-label-grid article {
    padding: 24px 18px;
    border-right: 1px solid var(--line);
}

.phase-label-grid article:last-child {
    border-right: 0;
}

.phase-label-grid span,
.phase-detail-grid span {
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 900;
}

.phase-label-grid h3 {
    margin: 12px 0 0;
    font-size: 20px;
    line-height: 1.15;
}

.phase-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.phase-detail-grid article {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--cream);
}

.phase-detail-grid h3 {
    margin: 18px 0 12px;
    font-size: 26px;
    line-height: 1.15;
}

.phase-detail-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.58;
}

.strip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.strip-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 48px;
}

.section-heading p:not(.eyebrow) {
    color: var(--muted);
    font-size: 19px;
}

.section-heading.narrow {
    max-width: 640px;
}

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

.service-image-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 34px;
}

.service-image-strip img {
    width: 100%;
    min-height: 220px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.service-card,
.mapping-grid article,
.process-list article,
.saas-points article,
.faq-item {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.service-card {
    display: flex;
    flex-direction: column;
    min-height: 300px;
    padding: 30px;
    color: inherit;
    text-decoration: none;
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.service-card:hover,
.service-card:focus-visible {
    border-color: rgba(199, 154, 43, 0.72);
    box-shadow: var(--shadow);
    outline: 0;
    transform: translateY(-3px);
}

.service-card h3 {
    min-height: 54px;
}

.service-card p {
    flex: 1;
}

.card-number {
    display: inline-flex;
    margin-bottom: 36px;
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 850;
}

.card-link {
    display: inline-flex;
    align-items: center;
    margin-top: 28px;
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
}

.card-link::after {
    margin-left: 10px;
    content: "->";
}

.service-card p,
.detail-list p,
.mapping-grid p,
.process-list p,
.saas-points p,
.faq-panel p,
.legal-content p,
.split-copy p,
.saas-copy p,
.enquiry-copy p {
    color: var(--muted);
}

.dark-band {
    background: var(--ink);
    color: var(--white);
}

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

.dark-band .eyebrow {
    color: var(--gold-soft);
}

.dark-band p {
    color: rgba(255, 255, 255, 0.72);
}

.process-grid {
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
}

.process-copy img {
    margin-top: 36px;
    border-radius: 8px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

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

.process-list article {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 12px 22px;
    padding: 26px;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.16);
}

.process-list span {
    grid-row: span 2;
    color: var(--gold-soft);
    font-weight: 850;
}

.process-list h3,
.process-list p {
    margin-bottom: 0;
}

.split-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.split-layout.reverse {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.split-media img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.split-media.tall img {
    aspect-ratio: 4 / 5;
}

.split-media.wide img {
    aspect-ratio: 16 / 9;
    min-height: 380px;
}

.detail-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 34px;
}

.detail-list article {
    padding-top: 22px;
    border-top: 2px solid var(--gold);
}

.detail-list h3 {
    font-size: 20px;
}

.local-section,
.calm-band {
    background: var(--white);
}

.two-column-text {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
}

.mapping-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 42px;
}

.mapping-grid article,
.saas-points article {
    padding: 24px;
}

.mapping-grid h3,
.saas-points h3 {
    font-size: 20px;
}

.check-list {
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 30px 0 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 34px;
    color: var(--charcoal);
}

.check-list li::before {
    position: absolute;
    left: 0;
    top: 4px;
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    background: var(--gold-soft);
    color: var(--gold-dark);
    content: "";
}

.check-list li::after {
    position: absolute;
    left: 6px;
    top: 8px;
    width: 7px;
    height: 10px;
    border-right: 2px solid var(--gold-dark);
    border-bottom: 2px solid var(--gold-dark);
    content: "";
    transform: rotate(45deg);
}

.saas-section {
    background: var(--sage-soft);
}

.saas-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.9fr) minmax(0, 0.75fr);
    align-items: stretch;
}

.saas-grid > img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.saas-points {
    display: grid;
    gap: 16px;
}

.service-hero-page {
    position: relative;
    padding: 116px 48px 96px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 250, 240, 0.94), rgba(255, 255, 255, 0.94)),
        repeating-linear-gradient(135deg, rgba(199, 154, 43, 0.12) 0 1px, transparent 1px 34px),
        linear-gradient(90deg, rgba(68, 111, 95, 0.12), rgba(199, 154, 43, 0.1));
}

.service-hero-page::before,
.service-hero-page::after,
.service-overview-section::before,
.service-process-section::before,
.service-ready-panel::before {
    position: absolute;
    content: "";
    pointer-events: none;
}

.service-hero-page::before {
    right: -8%;
    top: 12%;
    width: 42%;
    height: 58%;
    border: 1px solid rgba(199, 154, 43, 0.28);
    background:
        linear-gradient(45deg, transparent 48%, rgba(199, 154, 43, 0.2) 49%, rgba(199, 154, 43, 0.2) 51%, transparent 52%),
        linear-gradient(135deg, transparent 48%, rgba(68, 111, 95, 0.16) 49%, rgba(68, 111, 95, 0.16) 51%, transparent 52%);
    clip-path: polygon(0 18%, 100% 0, 82% 100%, 12% 82%);
}

.service-hero-page::after {
    left: -140px;
    bottom: -120px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(68, 111, 95, 0.22);
    background: repeating-linear-gradient(90deg, rgba(68, 111, 95, 0.1) 0 1px, transparent 1px 22px);
    clip-path: polygon(0 0, 100% 20%, 70% 100%, 14% 72%);
}

.service-hero-layout,
.service-overview-grid,
.service-process-layout,
.service-examples-layout,
.service-ready-panel {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 64px;
    align-items: center;
}

.service-hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
}

.service-hero-copy h1 {
    font-size: 72px;
}

.service-hero-copy .lead {
    max-width: 760px;
}

.back-link {
    display: inline-flex;
    margin-bottom: 28px;
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
    text-transform: uppercase;
}

.back-link::before {
    margin-right: 10px;
    content: "<-";
}

.service-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.service-hero-media {
    position: relative;
}

.service-hero-media img {
    width: 100%;
    min-height: 540px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.service-focus-card {
    position: absolute;
    right: 24px;
    bottom: 24px;
    max-width: min(280px, calc(100% - 48px));
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 40px rgba(22, 21, 20, 0.16);
}

.service-focus-card span {
    display: block;
    margin-bottom: 8px;
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

.service-focus-card strong {
    color: var(--ink);
    font-size: 18px;
    line-height: 1.25;
}

.service-overview-section {
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.service-overview-section::before {
    right: 0;
    top: 0;
    width: 46%;
    height: 100%;
    opacity: 0.55;
    background:
        linear-gradient(120deg, transparent 0 48%, rgba(199, 154, 43, 0.14) 48% 52%, transparent 52%),
        repeating-linear-gradient(0deg, rgba(68, 111, 95, 0.08) 0 1px, transparent 1px 30px);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 82%);
}

.service-overview-grid,
.service-examples-layout,
.service-ready-panel {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
}

.service-overview-copy p {
    color: var(--muted);
    font-size: 20px;
    line-height: 1.65;
}

.service-overview-copy p:last-child {
    margin-bottom: 0;
}

.service-includes-section,
.service-examples-section {
    background: var(--cream);
}

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

.service-feature-grid article {
    min-height: 176px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.service-feature-grid span,
.service-process-list span {
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 850;
}

.service-feature-grid p {
    margin: 22px 0 0;
    color: var(--charcoal);
    font-size: 18px;
}

.service-process-section {
    position: relative;
    overflow: hidden;
    background: var(--ink);
    color: var(--white);
}

.service-process-section::before {
    inset: 0;
    opacity: 0.22;
    background:
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 38px),
        linear-gradient(45deg, transparent 0 48%, rgba(199, 154, 43, 0.34) 48% 50%, transparent 50%);
}

.service-process-layout {
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
    align-items: start;
}

.service-process-section h2,
.service-process-section h3 {
    color: var(--white);
}

.service-process-section .eyebrow,
.service-process-list span {
    color: var(--gold-soft);
}

.service-process-intro p:not(.eyebrow),
.service-process-list p {
    color: rgba(255, 255, 255, 0.72);
}

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

.service-process-list article {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 20px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
}

.service-process-list h3,
.service-process-list p {
    margin-bottom: 0;
}

.service-process-list h3 {
    font-size: 24px;
}

.service-example-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.service-example-list p {
    margin: 0;
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-left: 4px solid var(--gold);
    border-radius: 8px;
    background: var(--white);
    color: var(--charcoal);
    font-weight: 700;
}

.service-ready-section {
    background: var(--white);
}

.service-ready-panel {
    position: relative;
    overflow: hidden;
    padding: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(255, 255, 255, 0.96)),
        repeating-linear-gradient(45deg, rgba(199, 154, 43, 0.13) 0 1px, transparent 1px 28px);
}

.service-ready-panel::before {
    right: -70px;
    top: -70px;
    width: 240px;
    height: 240px;
    border: 1px solid rgba(199, 154, 43, 0.26);
    clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.service-ready-panel p {
    color: var(--muted);
    font-size: 19px;
}

.expectation-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.expectation-list p {
    margin: 0;
    padding: 18px;
    border-left: 4px solid var(--gold);
    background: var(--cream);
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    overflow: hidden;
}

.faq-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 22px 24px;
    border: 0;
    background: var(--white);
    color: var(--ink);
    font-size: 20px;
    font-weight: 760;
    text-align: left;
    cursor: pointer;
}

.faq-button span:last-child {
    display: grid;
    place-items: center;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: var(--gold-soft);
    color: var(--gold-dark);
}

.faq-panel {
    display: none;
    padding: 0 24px 24px;
}

.faq-item.is-open .faq-panel {
    display: block;
}

.faq-item.is-open .faq-button span:last-child {
    background: var(--gold);
    color: var(--ink);
}

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

.enquiry-section h2,
.enquiry-section label,
.enquiry-section legend {
    color: var(--white);
}

.enquiry-section .eyebrow {
    color: var(--gold-soft);
}

.enquiry-grid {
    grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.02fr);
    align-items: start;
}

.privacy-note {
    margin-top: 30px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
}

.privacy-note strong,
.privacy-note a {
    color: var(--white);
}

.privacy-note p {
    margin: 8px 0 10px;
}

.registration-note {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    line-height: 1.6;
}

.enquiry-form {
    display: grid;
    gap: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.form-row {
    display: grid;
    gap: 8px;
}

.two-fields {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.two-fields > div {
    display: grid;
    gap: 8px;
}

label,
legend {
    font-size: 14px;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: var(--white);
    color: var(--ink);
    outline: 0;
}

input,
select {
    height: 48px;
    padding: 0 14px;
}

textarea {
    min-height: 170px;
    padding: 14px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(199, 154, 43, 0.18);
}

.service-options {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 0;
    border: 0;
}

.service-options legend {
    margin-bottom: 2px;
}

.service-options label,
.consent-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 650;
}

.service-options input,
.consent-row input {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--gold);
}

.field-error,
.form-error {
    color: #ffd2cc;
    font-size: 14px;
    font-weight: 700;
}

.form-error,
.form-success {
    padding: 16px;
    border-radius: 8px;
}

.form-error {
    background: rgba(159, 47, 36, 0.22);
}

.form-success {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(47, 111, 74, 0.28);
    color: var(--white);
}

.form-success p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.78);
}

.form-submit {
    width: 100%;
}

.site-footer {
    background: var(--ink);
    color: var(--white);
}

.footer-cta {
    max-width: 1180px;
    margin: 0 auto;
    padding: 72px 48px;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-cta h2 {
    max-width: 760px;
    margin: 0;
    color: var(--white);
    font-size: 38px;
}

.footer-cta .eyebrow {
    width: 100%;
    margin-bottom: 0;
    color: var(--gold-soft);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 24px 48px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom nav {
    display: flex;
    gap: 18px;
}

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

.footer-bottom a:hover {
    color: var(--gold-soft);
}

.footer-directory {
    display: grid;
    grid-template-columns: minmax(240px, 1.15fr) repeat(4, minmax(140px, 0.72fr));
    gap: 34px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 54px 48px 42px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-block p,
.footer-locations,
.footer-column a {
    color: rgba(255, 255, 255, 0.72);
}

.footer-wordmark {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 30px;
    font-weight: 850;
    line-height: 1;
    text-decoration: none;
}

.footer-brand-block p {
    max-width: 300px;
    margin-bottom: 28px;
}

.footer-brand-block .registration-note {
    margin: -12px 0 28px;
}

.footer-locations {
    display: grid;
    gap: 4px;
    font-style: normal;
}

.footer-locations strong {
    margin-top: 14px;
    color: var(--white);
    font-size: 15px;
}

.footer-locations strong:first-child {
    margin-top: 0;
}

.footer-locations a,
.footer-column a {
    text-decoration: none;
}

.footer-locations a:hover,
.footer-column a:hover {
    color: var(--gold-soft);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column h3 {
    margin-bottom: 8px;
    color: var(--white);
    font-size: 20px;
}

.footer-column a {
    font-size: 15px;
    line-height: 1.35;
}

.legal-hero {
    background: var(--white);
}

.narrow-text {
    max-width: 820px;
}

.legal-content {
    background: var(--cream);
    padding-top: 72px;
}

.legal-content h2 {
    margin: 42px 0 12px;
    font-size: 28px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content a {
    color: var(--gold-dark);
    font-weight: 800;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .scroll-cue span:last-child::before {
        animation: none;
    }
}

@media (max-width: 1080px) {
    .site-header {
        padding: 16px 28px;
    }

    .section-band {
        padding: 82px 28px;
    }

    .split-layout,
    .split-layout.reverse,
    .process-grid,
    .enquiry-grid,
    .saas-grid,
    .two-column-text {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 56px;
    }

    h2 {
        font-size: 40px;
    }

    .manifesto-section h2 {
        font-size: 48px;
    }

    .phase-heading h2 {
        font-size: 54px;
    }

    .manifesto-section p:not(.eyebrow) {
        font-size: 18px;
    }

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

    .phase-label-grid article:nth-child(2) {
        border-right: 0;
    }

    .phase-label-grid article:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .hero {
        min-height: 520px;
        padding: 60px 28px;
    }

    .saas-grid > img {
        min-height: 460px;
    }

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

    .service-hero-layout,
    .service-overview-grid,
    .service-process-layout,
    .service-examples-layout,
    .service-ready-panel {
        grid-template-columns: 1fr;
    }

    .service-hero-copy h1 {
        font-size: 56px;
    }

    .service-hero-media img {
        min-height: 420px;
        aspect-ratio: 16 / 10;
    }

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

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

@media (max-width: 820px) {
    .site-nav {
        right: 0;
        left: auto;
        display: flex;
        min-width: min(280px, calc(100vw - 36px));
    }

    .site-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
        transform: translateY(0);
    }

    .strip-grid,
    .service-grid,
    .service-image-strip,
    .detail-list,
    .service-feature-grid,
    .service-example-list {
        grid-template-columns: 1fr;
    }

    .intro-strip {
        padding: 24px 28px;
    }

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

    .process-list span {
        grid-row: auto;
    }

    .two-fields {
        grid-template-columns: 1fr;
    }

    .footer-cta,
    .footer-directory,
    .footer-bottom {
        padding-right: 28px;
        padding-left: 28px;
    }

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

    .footer-brand-block {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .site-header {
        padding: 14px 18px;
    }

    .brand-logo {
        width: 178px;
        max-width: 62vw;
    }

    .section-band {
        padding: 66px 18px;
    }

    .hero {
        min-height: 500px;
        padding: 50px 18px;
    }

    .hero::after {
        background: linear-gradient(90deg, rgba(22, 21, 20, 0.9), rgba(22, 21, 20, 0.68));
    }

    h1 {
        font-size: 42px;
    }

    h2,
    .footer-cta h2 {
        font-size: 32px;
    }

    .manifesto-section {
        min-height: auto;
    }

    .manifesto-section h2 {
        font-size: 34px;
        line-height: 1.04;
    }

    .phase-heading h2 {
        font-size: 36px;
    }

    .manifesto-section p:not(.eyebrow),
    .phase-heading p:not(.eyebrow),
    .phase-detail-grid p {
        font-size: 17px;
    }

    .phase-visual-grid,
    .phase-label-grid,
    .phase-detail-grid {
        grid-template-columns: 1fr;
    }

    .phase-label-grid article {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .phase-label-grid article:last-child {
        border-bottom: 0;
    }

    .phase-detail-grid article {
        padding: 24px;
    }

    h3 {
        font-size: 21px;
    }

    .lead {
        font-size: 18px;
    }

    .split-media img,
    .split-media.wide img,
    .saas-grid > img {
        min-height: 340px;
    }

    .service-card {
        min-height: auto;
        padding: 24px;
    }

    .service-image-strip img {
        min-height: 190px;
    }

    .service-card h3 {
        min-height: 0;
    }

    .service-hero-page {
        padding: 76px 18px 66px;
    }

    .service-hero-page::before,
    .service-hero-page::after {
        opacity: 0.45;
    }

    .service-hero-copy h1 {
        font-size: 42px;
    }

    .service-hero-media img {
        min-height: 340px;
        aspect-ratio: 4 / 3;
    }

    .service-focus-card {
        position: static;
        max-width: none;
        margin-top: 14px;
    }

    .service-hero-actions,
    .service-hero-actions .button,
    .service-ready-panel .button {
        width: 100%;
    }

    .service-overview-copy p,
    .service-ready-panel p {
        font-size: 17px;
    }

    .service-feature-grid article,
    .service-process-list article {
        padding: 24px;
    }

    .service-process-list article {
        grid-template-columns: 1fr;
    }

    .service-ready-panel {
        padding: 26px;
    }

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

    .faq-button {
        align-items: flex-start;
        padding: 18px;
        font-size: 18px;
    }

    .faq-panel {
        padding: 0 18px 18px;
    }

    .enquiry-form {
        padding: 22px;
    }

    .hero-actions,
    .hero-actions .button,
    .footer-cta .button {
        width: 100%;
    }

    .footer-directory {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}
