:root {
    --ink: #050505;
    --paper: #fff7ed;
    --white: #ffffff;
    --pink: #e91655;
    --pink-dark: #be0f40;
    --purple: #9d63ff;
    --violet: #b183ff;
    --yellow: #ffe100;
    --cyan: #18d5ee;
    --green: #33e68b;
    --orange: #ff7900;
    --hot-pink: #ff69bb;
    --cream: #fff4e3;
    --line: #050505;
    --shadow: 6px 7px 0 rgba(5, 5, 5, 0.9), 0 18px 36px rgba(5, 5, 5, 0.2);
    --shadow-small: 4px 5px 0 rgba(5, 5, 5, 0.9), 0 10px 18px rgba(5, 5, 5, 0.16);
    --shadow-hover: 7px 8px 0 rgba(5, 5, 5, 0.92), 0 18px 28px rgba(5, 5, 5, 0.18);
    --max: 1180px;
    --body: "Inter", Arial, sans-serif;
    --display: "Barlow Condensed", "Arial Black", Impact, sans-serif;
    --friendly: "Bricolage Grotesque", "Inter", Arial, sans-serif;
    --condensed: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 8% 12%, rgba(24, 213, 238, 0.16) 0 2px, transparent 2px 13px),
        radial-gradient(circle at 92% 18%, rgba(255, 105, 187, 0.18) 0 2px, transparent 2px 14px),
        var(--paper);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.62;
    overflow-x: hidden;
}

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

a {
    color: var(--ink);
    text-decoration-color: var(--pink);
    text-decoration-thickness: 3px;
    text-underline-offset: 0.18em;
}

a:hover,
a:focus-visible {
    color: var(--pink-dark);
}

p,
h1,
h2,
h3 {
    margin-top: 0;
    overflow-wrap: break-word;
}

p {
    margin-bottom: 1rem;
}

ul,
ol {
    padding-left: 1.25rem;
}

li + li {
    margin-top: 0.45rem;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -5rem;
    z-index: 200;
    padding: 0.75rem 1rem;
    border: 3px solid var(--ink);
    border-radius: 6px;
    background: var(--yellow);
    color: var(--ink);
    font-weight: 900;
    box-shadow: var(--shadow-small);
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 1rem;
}

.container {
    width: min(var(--max), calc(100% - 32px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--ink);
    background: rgba(233, 22, 85, 0.96);
    backdrop-filter: blur(12px);
}

.nav {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand,
.brand-card {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-width: 168px;
    padding: 0.42rem 0.65rem;
    border: 4px solid var(--ink);
    border-radius: 6px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow-small);
    font-family: var(--display);
    font-size: 1.28rem;
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.brand-card {
    display: grid;
    min-width: 138px;
    padding: 0.42rem 2.2rem 0.42rem 0.55rem;
    gap: 0;
    line-height: 0.86;
}

.brand-card span,
.brand-card strong {
    display: block;
    font-size: 1.28rem;
    letter-spacing: 0;
}

.brand-card i {
    position: absolute;
    top: 0.38rem;
    right: 0.48rem;
    width: 1.35rem;
    height: 2.6rem;
    border: 3px solid var(--ink);
    background: var(--yellow);
    clip-path: polygon(45% 0, 100% 0, 67% 39%, 100% 39%, 33% 100%, 50% 53%, 8% 53%);
    transform: rotate(8deg);
}

.brand:hover,
.brand:focus-visible,
.brand-card:hover,
.brand-card:focus-visible {
    color: var(--ink);
    transform: rotate(-1.5deg) translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.brand img {
    width: 42px;
    height: 42px;
    border: 3px solid var(--ink);
    border-radius: 4px;
    object-fit: cover;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.1rem;
    color: var(--white);
    font-family: var(--condensed);
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
}

.nav-links a {
    padding: 0.5rem 0;
    color: var(--white);
    text-decoration: none;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.25);
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
    color: var(--yellow);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.nav-toggle,
.menu-button {
    display: none;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--ink);
    border-radius: 6px;
    background: var(--pink);
    box-shadow: var(--shadow-small);
    color: var(--white);
    cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after,
.menu-button span,
.menu-button span::before,
.menu-button span::after {
    display: block;
    width: 22px;
    height: 3px;
    background: currentColor;
    box-shadow: 2px 2px 0 var(--ink);
    content: "";
}

.nav-toggle span,
.menu-button span {
    position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after,
.menu-button span::before,
.menu-button span::after {
    position: absolute;
    left: 0;
}

.nav-toggle span::before,
.menu-button span::before {
    top: -8px;
}

.nav-toggle span::after,
.menu-button span::after {
    top: 8px;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.85rem 1.15rem;
    border: 3px solid var(--ink);
    border-radius: 6px;
    background: var(--yellow);
    color: var(--ink);
    font-family: var(--condensed);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: var(--shadow-small);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.button:hover,
.button:focus-visible {
    color: var(--ink);
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-hover);
}

.button.secondary {
    background: linear-gradient(135deg, #a56dff, #f08cff);
}

.eyebrow {
    display: inline-flex;
    width: max-content;
    max-width: 100%;
    align-items: center;
    margin-bottom: 0.75rem;
    padding: 0.18rem 0.55rem 0.12rem;
    border: 3px solid var(--ink);
    border-radius: 6px;
    background: var(--yellow);
    color: var(--ink);
    box-shadow: 3px 3px 0 var(--ink);
    font-family: var(--condensed);
    font-size: 0.9rem;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
}

.eyebrow::before {
    display: none;
}

.hero {
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--ink);
    background:
        linear-gradient(135deg, rgba(233, 22, 85, 0.9), rgba(207, 14, 72, 0.92)),
        url("../images/british-blitz-office-lounge.jpg") center / cover no-repeat;
    color: var(--white);
}

.hero::before {
    position: absolute;
    right: 7%;
    top: 20%;
    width: 180px;
    height: 180px;
    background-image: radial-gradient(var(--ink) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    content: "";
    opacity: 0.2;
    pointer-events: none;
}

.hero::after {
    position: absolute;
    left: -44px;
    bottom: -32px;
    width: 92px;
    height: 92px;
    border: 3px solid var(--ink);
    background: var(--hot-pink);
    clip-path: polygon(50% 0, 60% 36%, 98% 20%, 72% 50%, 98% 78%, 61% 66%, 50% 100%, 39% 66%, 2% 78%, 28% 50%, 2% 20%, 40% 36%);
    content: "";
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
    min-height: 640px;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.58fr);
    align-items: center;
    gap: 3rem;
    padding-block: 4.8rem 4.2rem;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1.15rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    font-weight: 800;
}

.breadcrumbs a {
    color: var(--white);
    text-decoration-color: var(--yellow);
}

h1,
h2 {
    font-family: var(--display);
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1 {
    max-width: 820px;
    margin-bottom: 1.1rem;
    color: var(--white);
    font-size: 6.2rem;
    line-height: 0.9;
    -webkit-text-stroke: 1.6px var(--ink);
    text-shadow: 3px 4px 0 var(--ink);
}

.hero-lede {
    max-width: 720px;
    margin-bottom: 1.45rem;
    color: var(--white);
    font-size: 1.18rem;
    font-weight: 800;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.proof-panel {
    border: 4px solid var(--ink);
    border-radius: 16px 16px 8px 8px;
    background: var(--cream);
    color: var(--ink);
    box-shadow: 10px 12px 0 rgba(5, 5, 5, 0.92), 0 28px 46px rgba(5, 5, 5, 0.24);
    overflow: hidden;
    transform: rotate(1.5deg);
}

.proof-panel dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin: 0;
}

.proof-panel div {
    min-height: 110px;
    padding: 1rem;
    border-right: 3px solid var(--ink);
    border-bottom: 3px solid var(--ink);
    background: var(--white);
}

.proof-panel div:nth-child(2),
.proof-panel div:nth-child(3) {
    background: var(--cyan);
}

.proof-panel div:nth-child(4) {
    background: var(--yellow);
}

.proof-panel dt {
    font-family: var(--condensed);
    font-size: 0.88rem;
    font-weight: 900;
    text-transform: uppercase;
}

.proof-panel dd {
    margin: 0.18rem 0 0;
    font-family: var(--display);
    font-size: 1.55rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.section {
    position: relative;
    padding-block: clamp(3rem, 7vw, 6rem);
    border-bottom: 3px solid var(--ink);
}

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

.section.dark {
    background:
        radial-gradient(circle at 9% 82%, var(--ink) 1.5px, transparent 1.5px),
        linear-gradient(135deg, #e91655 0%, #c90f47 100%);
    background-size: 14px 14px, auto;
    color: var(--white);
}

.section-heading {
    max-width: 840px;
    margin-bottom: 2rem;
}

h2 {
    margin-bottom: 0.85rem;
    font-size: 4rem;
    line-height: 0.92;
}

h3 {
    margin-bottom: 0.55rem;
    font-family: var(--friendly);
    font-size: 1.45rem;
    line-height: 1.18;
    letter-spacing: 0;
}

.lead {
    color: #363636;
    font-size: 1.08rem;
    font-weight: 700;
}

.dark .lead,
.dark p {
    color: rgba(255, 255, 255, 0.9);
}

.toc {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.25rem;
}

.toc a {
    padding: 0.45rem 0.7rem;
    border: 3px solid var(--ink);
    border-radius: 6px;
    background: var(--yellow);
    color: var(--ink);
    box-shadow: 3px 3px 0 var(--ink);
    font-family: var(--condensed);
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
}

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

.two-col {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.42fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
}

.card,
.feature,
.step,
.faq-list details,
.note-panel,
.benefit,
.service-item,
.link-grid a {
    border: 4px solid var(--ink);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow-small);
}

.card,
.feature,
.benefit {
    padding: 1.2rem;
}

.card:nth-child(3n + 1),
.benefit:nth-child(2n + 1) {
    background: var(--yellow);
}

.card:nth-child(3n + 2),
.benefit:nth-child(2n + 2) {
    background: var(--cyan);
}

.card:nth-child(3n) {
    background: #ffd3e7;
}

.card p,
.feature p,
.step p,
.note-panel p,
.benefit p,
.service-item p {
    color: #262626;
    font-weight: 650;
}

.card a {
    font-weight: 900;
}

.article-flow {
    max-width: 850px;
}

.article-flow > * + * {
    margin-top: 1.45rem;
}

.article-flow h2 {
    margin-top: 2.7rem;
}

.article-flow h3 {
    margin-top: 1.8rem;
}

.quote {
    margin: 1.6rem 0;
    padding: 1.15rem 1.3rem;
    border: 4px solid var(--ink);
    border-left-width: 10px;
    border-radius: 8px;
    background: var(--green);
    color: var(--ink);
    box-shadow: var(--shadow-small);
    font-family: var(--friendly);
    font-size: 1.08rem;
    font-weight: 800;
}

.aside-stack {
    position: sticky;
    top: 100px;
    display: grid;
    gap: 1rem;
}

.note-panel {
    padding: 1rem;
    background: var(--yellow);
}

.note-panel ul {
    margin-bottom: 0;
    font-weight: 750;
}

.image-frame {
    overflow: hidden;
    border: 4px solid var(--ink);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
    transform: rotate(-1deg);
}

.image-frame img {
    aspect-ratio: 4 / 3;
    width: 100%;
    object-fit: cover;
}

.services-list {
    display: grid;
    gap: 1rem;
}

.service-item {
    padding: 1.25rem;
    background: var(--cream);
}

.service-item:nth-child(2n) {
    background: var(--white);
}

.service-item h3 {
    display: inline;
    padding: 0.08rem 0.35rem;
    background: linear-gradient(transparent 54%, var(--yellow) 54%);
}

.service-item p:first-of-type {
    margin-top: 0.9rem;
}

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

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.process {
    counter-reset: process;
    display: grid;
    gap: 0.85rem;
}

.step {
    position: relative;
    padding: 1rem 1rem 1rem 4.3rem;
    background: var(--cream);
}

.step::before {
    position: absolute;
    left: 1rem;
    top: 1rem;
    width: 2.15rem;
    height: 2.15rem;
    display: grid;
    place-items: center;
    border: 3px solid var(--ink);
    border-radius: 50%;
    background: var(--yellow);
    color: var(--ink);
    box-shadow: 3px 3px 0 var(--ink);
    counter-increment: process;
    content: counter(process);
    font-family: var(--display);
    font-size: 1.35rem;
    font-weight: 900;
}

.faq-list {
    display: grid;
    gap: 0.8rem;
}

.faq-list details {
    padding: 1rem 1.1rem;
    background: var(--cream);
}

.faq-list details:nth-child(2n) {
    background: var(--white);
}

.faq-list summary {
    cursor: pointer;
    font-family: var(--friendly);
    font-weight: 900;
}

.faq-list p {
    margin: 0.75rem 0 0;
    color: #262626;
    font-weight: 650;
}

.cta {
    padding: clamp(2rem, 5vw, 4rem);
    border: 4px solid var(--ink);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(233, 22, 85, 0.92), rgba(157, 99, 255, 0.88)),
        url("../images/british-blitz-workspace.jpg") center / cover no-repeat;
    color: var(--white);
    box-shadow: var(--shadow);
}

.cta h2 {
    color: var(--white);
    -webkit-text-stroke: 1px var(--ink);
    text-shadow: 3px 3px 0 var(--ink);
}

.cta p {
    max-width: 760px;
    color: var(--white);
    font-weight: 800;
}

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

.link-grid a {
    display: block;
    padding: 1rem;
    background: var(--yellow);
    font-family: var(--friendly);
    font-weight: 900;
    text-decoration: none;
}

.link-grid a:nth-child(2n) {
    background: var(--cyan);
}

.site-footer {
    padding-block: 2rem;
    border-top: 3px solid var(--ink);
    background: var(--ink);
    color: rgba(255, 255, 255, 0.82);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-family: var(--condensed);
    font-weight: 900;
    text-transform: uppercase;
}

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

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--yellow);
}

@media (max-width: 940px) {
    .nav-toggle,
    .menu-button {
        display: inline-flex;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 3px);
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.8rem;
        border: 3px solid var(--ink);
        border-radius: 6px;
        background: var(--pink);
        box-shadow: var(--shadow);
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-links a {
        padding: 0.85rem 0.8rem;
        border-radius: 6px;
    }

    .nav-actions .button {
        display: none;
    }

    .hero .container,
    .two-col {
        grid-template-columns: 1fr;
    }

    .hero .container {
        min-height: auto;
    }

    h1 {
        font-size: 4.6rem;
    }

    h2 {
        font-size: 3.25rem;
    }

    .proof-panel,
    .image-frame {
        transform: none;
    }

    .aside-stack {
        position: static;
    }

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

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

    .brand,
    .brand-card {
        min-width: 0;
        font-size: 1.08rem;
    }

    .hero-actions,
    .footer-inner {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .grid,
    .benefit-grid,
    .link-grid,
    .proof-panel dl {
        grid-template-columns: 1fr;
    }

    .section {
        padding-block: 3rem;
    }

    h1 {
        font-size: 3.35rem;
    }

    h2 {
        font-size: 2.55rem;
    }

    h3 {
        font-size: 1.25rem;
    }
}
