:root {
    --ink: #0d1020;
    --ink-soft: #171a2d;
    --paper: #f6f4f1;
    --white: #ffffff;
    --text: #232537;
    --muted: #686a78;
    --line: #dedbe0;
    --purple: #5b2782;
    --pink: #dd1f70;
    --accent: #cf1d69;
    --accent-dark: #99134f;
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 30px;
    --shadow: 0 24px 70px rgba(13, 16, 32, .14);
    --wrap: min(1220px, calc(100% - 48px));
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--text);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.wrap { width: var(--wrap); margin-inline: auto; }

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    transform: translateY(-160%);
}

.skip-link:focus { transform: none; }

:focus-visible { outline: 3px solid #ffb0d2; outline-offset: 4px; }

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,.19);
    color: var(--white);
}

.site-header__inner { display: flex; align-items: center; gap: 24px; min-height: 94px; }

.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 190px; height: auto; }

.primary-nav { display: flex; align-items: stretch; gap: 6px; margin-left: auto; }
.nav-group { position: relative; display: flex; }
.nav-group__trigger { position: relative; display: flex; align-items: center; gap: 7px; min-height: 94px; padding: 0 10px; border: 0; background: transparent; color: inherit; font: inherit; font-size: .85rem; font-weight: 750; cursor: pointer; }
.nav-group__trigger svg { width: 10px; transition: transform .2s ease; }
.nav-group__trigger::after { content: ""; position: absolute; right: 10px; bottom: 25px; left: 10px; height: 2px; background: var(--pink); transform: scaleX(0); transform-origin: right; transition: transform .2s ease; }
.nav-group__trigger:hover::after, .nav-group__trigger:focus-visible::after, .nav-group__trigger[data-active="true"]::after, .nav-group.is-open .nav-group__trigger::after { transform: scaleX(1); transform-origin: left; }
.nav-group.is-open .nav-group__trigger svg { transform: rotate(180deg); }
.nav-dropdown { position: absolute; top: calc(100% - 8px); left: 50%; z-index: 30; display: grid; width: 340px; padding: 10px; border: 1px solid rgba(21,24,50,.09); border-radius: 16px; background: rgba(255,255,255,.99); color: var(--ink); box-shadow: 0 24px 65px rgba(8,10,25,.25); opacity: 0; visibility: hidden; transform: translate(-50%, 10px); transition: opacity .18s ease, transform .18s ease, visibility .18s ease; }
.nav-group:nth-last-child(-n+2) .nav-dropdown { right: 0; left: auto; transform: translate(0, 10px); }
.nav-group.is-open .nav-dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav-group:nth-last-child(-n+2).is-open .nav-dropdown { transform: translate(0, 0); }
.nav-dropdown__heading { display: grid; gap: 2px; margin: 3px 5px 8px; padding: 7px 10px 13px; border-bottom: 1px solid var(--line); }
.nav-dropdown__heading > span { color: var(--purple); font-size: .72rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.nav-dropdown__heading small { color: var(--muted); font-size: .72rem; }
.nav-dropdown a { display: grid; gap: 3px; min-height: 64px; padding: 11px 12px; border-radius: 10px; text-decoration: none; transition: background .16s ease, color .16s ease; }
.nav-dropdown a:hover, .nav-dropdown a:focus-visible, .nav-dropdown a[aria-current="page"] { background: #f6f3fb; }
.nav-dropdown a strong { color: var(--ink); font-size: .86rem; }
.nav-dropdown a span { color: var(--muted); font-size: .7rem; font-weight: 500; line-height: 1.4; }
.nav-dropdown a[aria-current="page"] strong { color: var(--purple); }

@media (hover: hover) and (min-width: 821px) {
    .nav-group:hover .nav-dropdown, .nav-group:focus-within .nav-dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
    .nav-group:nth-last-child(-n+2):hover .nav-dropdown, .nav-group:nth-last-child(-n+2):focus-within .nav-dropdown { transform: translate(0, 0); }
    .nav-group:hover .nav-group__trigger svg, .nav-group:focus-within .nav-group__trigger svg { transform: rotate(180deg); }
}

.header-call { display: flex; flex-direction: column; min-width: 150px; padding-left: 24px; border-left: 1px solid rgba(255,255,255,.2); line-height: 1.3; text-decoration: none; }
.header-call span { opacity: .67; font-size: .72rem; }
.header-call strong { font-size: .96rem; }

.menu-toggle { display: none; min-width: 48px; min-height: 48px; padding: 0; border: 0; background: transparent; color: var(--white); }
.menu-toggle__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.menu-toggle__icon { display: grid; gap: 7px; width: 25px; margin: auto; }
.menu-toggle__icon i { display: block; height: 2px; background: currentColor; transition: transform .2s ease; }

.hero { position: relative; min-height: 820px; overflow: hidden; background: var(--ink); color: var(--white); }
.hero__image, .hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__image { object-fit: cover; object-position: 58% center; filter: saturate(.82); }
.hero__shade { background: linear-gradient(90deg, rgba(9,10,24,.98) 0%, rgba(10,11,26,.91) 43%, rgba(10,11,26,.52) 72%, rgba(10,11,26,.72) 100%), linear-gradient(0deg, rgba(8,9,20,.55), transparent 55%); }
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, 390px); align-items: center; gap: 72px; min-height: 820px; padding-top: 136px; padding-bottom: 86px; }
.hero__content { min-width: 0; }

.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 20px; color: var(--purple); font-size: .75rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow span { width: 34px; height: 2px; background: linear-gradient(90deg, var(--purple), var(--pink)); }
.eyebrow .eyebrow__brand { flex: 0 0 auto; width: 34px; height: 34px; margin-block: -7px; color: var(--pink); background: none; }
.eyebrow--light { color: #f8c5dd; }
.eyebrow--light .eyebrow__brand { color: #ff78b4; }

.hero h1, .section h2, .contact-panel h2 {
    margin: 0;
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 720;
    letter-spacing: -.042em;
    line-height: 1.04;
}

.hero h1 { max-width: 760px; font-size: clamp(3.7rem, 5.7vw, 5.8rem); }
.hero h1 strong { color: #f06da9; font-weight: inherit; }
.hero__intro { max-width: 650px; margin: 28px 0 24px; color: rgba(255,255,255,.82); font-size: clamp(1.05rem, 1.6vw, 1.25rem); line-height: 1.55; }
.hero__proof { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 0 0 34px; padding: 0; list-style: none; }
.hero__proof li { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.77); font-size: .84rem; font-weight: 700; }
.hero__proof li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #f06da9; box-shadow: 0 0 0 4px rgba(240,109,169,.14); }

.button-row { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 16px; min-height: 54px; padding: 14px 24px; border: 1px solid transparent; border-radius: 999px; font-size: .88rem; font-weight: 800; text-decoration: none; transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.button svg, .text-link svg, .round-arrow svg { width: 19px; height: 19px; flex: 0 0 auto; }
.button:hover { transform: translateY(-2px); }
.button--primary { background: linear-gradient(100deg, var(--purple), var(--pink)); color: var(--white); box-shadow: 0 12px 30px rgba(218, 24, 111, .26); }
.button--primary:hover { background: linear-gradient(100deg, #6f2ba1, #f12b84); }
.button--quiet { border-color: rgba(255,255,255,.38); background: rgba(9,10,24,.24); color: var(--white); backdrop-filter: blur(8px); }
.button--quiet:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.button--ink { background: var(--ink); color: var(--white); box-shadow: 0 12px 30px rgba(13,16,32,.16); }
.button--ink:hover { background: #252941; }

.fibre-checker { padding: 32px; border: 1px solid rgba(255,255,255,.52); border-radius: var(--radius-md); background: rgba(255,255,255,.97); box-shadow: 0 28px 80px rgba(3,5,17,.36); color: var(--text); }
.fibre-checker__kicker { margin: 0 0 10px; color: var(--purple); font-size: .72rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.fibre-checker h2 { margin: 0; color: var(--ink); font-size: clamp(1.75rem, 2.4vw, 2.25rem); font-weight: 750; letter-spacing: -.035em; line-height: 1.08; }
.fibre-checker > p:not(.fibre-checker__kicker) { margin: 14px 0 22px; color: var(--muted); font-size: .9rem; line-height: 1.55; }
.fibre-form { display: grid; gap: 14px; }
.fibre-form .form-field { gap: 5px; }
.fibre-form .form-field input, .fibre-form .form-field select { min-height: 48px; background: var(--white); }
.fibre-form .button { margin-top: 3px; }
.fibre-checker .fibre-checker__note { margin: -2px 0 0; color: var(--muted); font-size: .7rem; line-height: 1.45; text-align: center; }
.fibre-checker .form-status { margin: 0; color: var(--purple); }

.trust-strip { background: var(--white); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { display: flex; align-items: center; gap: 16px; min-height: 126px; padding: 24px 30px; border-right: 1px solid var(--line); }
.trust-item:first-child { border-left: 1px solid var(--line); }
.trust-item strong { flex: 0 0 auto; color: var(--purple); font-size: 1.75rem; font-weight: 750; letter-spacing: -.035em; }
.trust-item span { max-width: 150px; color: var(--muted); font-size: .78rem; line-height: 1.4; }

.section { padding: 120px 0; }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr); align-items: end; gap: 80px; margin-bottom: 58px; }
.section-heading h2, .fibre-focus h2, .expertise h2, .case-study h2, .contact-panel h2 { font-size: clamp(2.65rem, 4.5vw, 4.65rem); }
.section-heading > p { max-width: 500px; margin: 0 0 8px; color: var(--muted); font-size: 1.06rem; }

.fibre-focus { background: var(--white); }
.fibre-focus__grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 92px; }
.fibre-focus__visual { position: relative; min-height: 610px; }
.fibre-focus__visual img { width: 100%; height: 100%; min-height: 610px; border-radius: var(--radius-lg); object-fit: cover; box-shadow: var(--shadow); }
.fibre-focus__caption { position: absolute; right: -24px; bottom: 28px; display: grid; max-width: 270px; padding: 20px 24px; border-radius: var(--radius-sm); background: var(--ink); color: var(--white); box-shadow: 0 18px 45px rgba(13,16,32,.2); }
.fibre-focus__caption strong { font-size: .92rem; }
.fibre-focus__caption span { margin-top: 3px; color: rgba(255,255,255,.62); font-size: .74rem; }
.fibre-focus__copy > p:not(.eyebrow) { max-width: 620px; margin: 28px 0; color: var(--muted); font-size: 1.05rem; }
.fibre-benefits { display: grid; margin: 34px 0; border-top: 1px solid var(--line); }
.fibre-benefits > div { display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.fibre-benefits > div > span { color: var(--pink); font-size: .72rem; font-weight: 850; letter-spacing: .1em; }
.fibre-benefits p { margin: 0; color: var(--muted); font-size: .86rem; }
.fibre-benefits strong { display: block; margin-bottom: 2px; color: var(--ink); font-size: .95rem; }

.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.service-card { overflow: hidden; border-radius: var(--radius-md); background: var(--white); box-shadow: 0 1px 0 rgba(13,16,32,.05); transition: transform .22s ease, box-shadow .22s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card > a { display: block; text-decoration: none; }
.service-card__image { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #d6d1d7; }
.service-card__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(13,16,32,.45), transparent 45%); }
.service-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service-card:hover .service-card__image img { transform: scale(1.035); }
.service-card__image > span { position: absolute; right: 22px; bottom: 15px; z-index: 1; color: var(--white); font-size: 2rem; font-weight: 760; }
.service-card__body { display: flex; align-items: end; justify-content: space-between; gap: 24px; min-height: 172px; padding: 28px 30px 30px; }
.service-card h3 { margin: 0 0 8px; color: var(--ink); font-size: 1.55rem; font-weight: 750; letter-spacing: -.025em; }
.service-card p { max-width: 440px; margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.6; }
.round-arrow { display: grid; place-items: center; flex: 0 0 auto; width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 50%; color: var(--purple); transition: background .2s ease, color .2s ease, border-color .2s ease; }
.service-card:hover .round-arrow { border-color: var(--purple); background: var(--purple); color: var(--white); }

.expertise { overflow: hidden; background: var(--ink); color: var(--white); }
.expertise__grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 100px; }
.expertise__copy > p:not(.eyebrow) { max-width: 570px; margin: 30px 0; color: rgba(255,255,255,.68); font-size: 1.05rem; }
.check-list { display: grid; gap: 14px; margin: 34px 0 40px; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 14px; align-items: center; color: rgba(255,255,255,.88); }
.check-list span { display: grid; place-items: center; width: 25px; height: 25px; border-radius: 50%; background: rgba(233,30,120,.15); color: #ff82b9; font-size: .76rem; }
.text-link { display: inline-flex; align-items: center; gap: 14px; color: #ff82b9; font-size: .82rem; font-weight: 800; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.text-link svg { transition: transform .2s ease; }
.text-link:hover svg { transform: translateX(5px); }
.expertise__visual { position: relative; min-height: 620px; }
.expertise__visual::before { content: ""; position: absolute; top: -120px; right: -210px; width: 500px; height: 500px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.expertise__visual img { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: var(--radius-lg); object-fit: cover; }
.expertise__badge { position: absolute; bottom: -1px; left: -1px; display: grid; width: 210px; padding: 27px 30px; border-radius: 0 var(--radius-md) 0 var(--radius-lg); background: var(--paper); color: var(--ink); }
.expertise__badge strong { color: var(--purple); font-size: 2.8rem; font-weight: 760; letter-spacing: -.04em; line-height: 1; }
.expertise__badge span { margin-top: 7px; color: var(--muted); font-size: .76rem; }

.case-study { background: var(--white); }
.case-study__panel { display: grid; grid-template-columns: 1.1fr .9fr; overflow: hidden; border-radius: var(--radius-lg); background: #f0ece8; }
.case-study__image { min-height: 650px; }
.case-study__image img { width: 100%; height: 100%; object-fit: cover; }
.case-study__content { display: flex; flex-direction: column; justify-content: center; padding: 70px; }
.case-study__type { margin: 0 0 22px; color: var(--muted); font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.case-study__content > p:not(.eyebrow, .case-study__type) { margin: 28px 0; color: var(--muted); }
.case-study__metrics { display: grid; grid-template-columns: repeat(2, 1fr); margin: 8px 0 38px; border-block: 1px solid #d8d2cd; }
.case-study__metrics div { display: grid; padding: 22px 10px 22px 0; }
.case-study__metrics div + div { padding-left: 24px; border-left: 1px solid #d8d2cd; }
.case-study__metrics strong { color: var(--purple); font-size: 2.25rem; font-weight: 760; letter-spacing: -.04em; line-height: 1; }
.case-study__metrics span { margin-top: 7px; color: var(--muted); font-size: .75rem; }
.text-link--dark { color: var(--purple); }

.process { background: var(--paper); }
.section-heading--compact { margin-bottom: 74px; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 0; padding: 0; list-style: none; counter-reset: process; }
.process-grid li { min-height: 265px; padding: 32px 38px; border-top: 1px solid var(--line); border-right: 1px solid var(--line); }
.process-grid li:first-child { border-left: 1px solid var(--line); }
.process-grid li > span { color: var(--pink); font-size: .76rem; font-weight: 800; letter-spacing: .12em; }
.process-grid h3 { margin: 58px 0 12px; font-size: 1.4rem; font-weight: 750; letter-spacing: -.02em; }
.process-grid p { margin: 0; color: var(--muted); font-size: .9rem; }

.contact-panel { padding: 120px 0; background: linear-gradient(115deg, #401d70 0%, #721f77 48%, #bf155f 100%); color: var(--white); }
.contact-panel__grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: start; gap: 100px; }
.contact-panel__copy > p:not(.eyebrow) { max-width: 520px; margin: 30px 0; color: rgba(255,255,255,.74); }
.contact-details { display: grid; gap: 18px; margin-top: 60px; }
.contact-details a { display: grid; width: fit-content; line-height: 1.4; text-decoration: none; }
.contact-details small { color: rgba(255,255,255,.6); }
.contact-details strong { font-size: 1.05rem; }
.enquiry-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; padding: 42px; border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow); color: var(--text); }
.form-field { display: grid; gap: 7px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { color: var(--ink); font-size: .78rem; font-weight: 800; }
.form-field input, .form-field select, .form-field textarea { width: 100%; min-height: 50px; padding: 11px 14px; border: 1px solid #cbc7cf; border-radius: var(--radius-sm); background: #fbfafb; color: var(--ink); }
.form-field textarea { min-height: 110px; resize: vertical; }
.form-field input:hover, .form-field select:hover, .form-field textarea:hover { border-color: #9d97a3; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--purple); outline: 3px solid rgba(95,36,140,.14); }
.button--submit { width: 100%; border: 0; cursor: pointer; }
.form-note { margin: 10px 0 0; color: var(--muted); font-size: .72rem; text-align: center; }
.form-status { min-height: 1.3em; margin: 6px 0 0; color: var(--purple); font-size: .82rem; font-weight: 800; text-align: center; }

.site-footer { padding: 74px 0 24px; background: var(--ink); color: var(--white); }
.site-footer__top { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: start; gap: 50px; padding-bottom: 65px; }
.brand--footer img { width: 190px; }
.site-footer__top p, .site-footer address { margin: 0; color: rgba(255,255,255,.55); font-size: .9rem; font-style: normal; }
.site-footer address { text-align: right; }
.site-footer__top address a { color: rgba(255,255,255,.86); text-decoration: none; }
.site-footer__directory { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 44px; padding: 0 0 58px; }
.site-footer__directory div { display: grid; align-content: start; gap: 8px; }
.site-footer__directory strong { margin-bottom: 8px; color: var(--white); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }
.site-footer__directory a { color: rgba(255,255,255,.56); font-size: .78rem; text-decoration: none; }
.site-footer__directory a:hover { color: #ff82b9; }
.site-footer__bottom { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.45); font-size: .72rem; }
.site-footer__bottom nav { display: flex; justify-content: center; gap: 22px; }
.site-footer__bottom a { color: rgba(255,255,255,.7); text-decoration: none; }
.site-footer__bottom > span:last-child { text-align: right; }
.mobile-actions { display: none; }

/* Fibre and broadband content-page template */

.page-hero { position: relative; overflow: hidden; background: var(--ink); color: var(--white); }
.page-hero__glow { position: absolute; inset: 0; background: radial-gradient(circle at 74% 42%, rgba(64,117,208,.28), transparent 27%), radial-gradient(circle at 12% 82%, rgba(221,31,112,.18), transparent 31%); }
.page-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(360px, .7fr); align-items: center; gap: 88px; min-height: 790px; padding-top: 134px; padding-bottom: 82px; }
.breadcrumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 9px; margin-bottom: 52px; color: rgba(255,255,255,.54); font-size: .76rem; }
.breadcrumbs a { color: rgba(255,255,255,.8); text-decoration: none; }
.breadcrumbs a:hover { color: var(--white); }
.page-hero h1 { max-width: 790px; margin: 0; font-size: clamp(3.6rem, 5.8vw, 5.6rem); font-weight: 740; letter-spacing: -.05em; line-height: 1.01; }
.page-hero__intro { max-width: 720px; margin: 30px 0 36px; color: rgba(255,255,255,.75); font-size: clamp(1.05rem, 1.5vw, 1.24rem); line-height: 1.65; }
.page-hero__meta { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 690px; margin: 54px 0 0; padding: 24px 0 0; border-top: 1px solid rgba(255,255,255,.16); list-style: none; }
.page-hero__meta li { display: grid; gap: 2px; padding-right: 24px; }
.page-hero__meta strong { font-size: .86rem; }
.page-hero__meta span { color: rgba(255,255,255,.52); font-size: .73rem; }
.page-hero__visual { position: relative; min-height: 590px; }
.page-hero__brand { position: absolute; top: -76px; right: -76px; width: 260px; color: #ff78b4; opacity: .48; transform: rotate(8deg); }
.page-hero__visual img { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: var(--radius-lg); object-fit: cover; box-shadow: 0 32px 90px rgba(0,0,0,.34); }
.page-hero__badge { position: absolute; right: -22px; bottom: 26px; display: grid; max-width: 290px; padding: 22px 26px; border-radius: var(--radius-sm); background: var(--white); color: var(--ink); box-shadow: var(--shadow); }
.page-hero__badge span { color: var(--purple); font-size: .7rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.page-hero__badge strong { margin-top: 5px; font-size: .88rem; line-height: 1.45; }

.content-shell { background: var(--white); }
.content-shell__grid { display: grid; grid-template-columns: 230px minmax(0, 1fr); align-items: start; gap: 76px; }
.content-nav { position: sticky; top: 24px; margin: 84px 0; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #faf9f8; }
.content-nav > p { margin: 0 0 12px; color: var(--ink); font-size: .72rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.content-nav nav { display: grid; }
.content-nav nav a { display: flex; align-items: center; min-height: 44px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .82rem; text-decoration: none; }
.content-nav nav a:hover { color: var(--purple); }
.content-nav__call { display: grid; gap: 3px; margin-top: 24px; padding: 18px; border-radius: var(--radius-sm); background: var(--ink); color: var(--white); }
.content-nav__call small, .content-nav__call span { color: rgba(255,255,255,.56); font-size: .7rem; }
.content-nav__call a { font-size: 1.05rem; font-weight: 800; text-decoration: none; }
.service-content { min-width: 0; }
.content-section { padding: 100px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 24px; }
.content-section h2, .availability-panel h2 { max-width: 850px; margin: 0; color: var(--ink); font-size: clamp(2.5rem, 4.3vw, 4.25rem); font-weight: 740; letter-spacing: -.045em; line-height: 1.06; }
.content-section .lede { max-width: 840px; margin: 28px 0; color: var(--text); font-size: 1.28rem; line-height: 1.65; }
.content-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 44px; margin-top: 34px; }
.content-columns p, .section-intro { margin: 0; color: var(--muted); }
.section-intro { max-width: 720px; margin-top: 26px; font-size: 1.04rem; }
.brand-dot-c { display: block; }
.brand-promise { position: relative; display: grid; grid-template-columns: 104px minmax(0, 1fr); align-items: center; gap: 30px; overflow: hidden; margin: 52px 0 0; padding: 27px 40px 27px 26px; border-radius: var(--radius-md); background: var(--ink); color: var(--white); }
.brand-promise::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 0 100%, rgba(221,31,112,.26), transparent 42%); }
.brand-promise__mark { position: relative; z-index: 1; width: 98px; color: #ff75b3; transform: rotate(-5deg); }
.brand-promise > div { position: relative; z-index: 1; display: grid; gap: 7px; }
.brand-promise strong { font-size: 1.18rem; letter-spacing: -.015em; }
.brand-promise span { max-width: 670px; color: rgba(255,255,255,.68); font-size: .9rem; line-height: 1.6; }

.content-section--brand-arc { position: relative; overflow: hidden; }
.section-brand-mark { position: absolute; top: 52px; right: -8px; width: 190px; color: var(--purple); opacity: .15; pointer-events: none; transform: rotate(7deg); }
.content-section--brand-arc > :not(.section-brand-mark) { position: relative; z-index: 1; }

.option-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 48px; }
.option-card { position: relative; display: flex; flex-direction: column; min-height: 390px; overflow: hidden; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fbfaf9; }
.option-card--featured { border-color: var(--ink); background: var(--ink); color: var(--white); }
.option-card__brand { position: absolute; top: -18px; right: -24px; width: 150px; color: rgba(255,255,255,.17); pointer-events: none; transform: rotate(12deg); }
.option-card > :not(.option-card__brand) { position: relative; z-index: 1; }
.option-card__number { color: var(--pink); font-size: .72rem; font-weight: 850; letter-spacing: .12em; }
.option-card__label { margin: 54px 0 8px; color: var(--purple); font-size: .68rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.option-card--featured .option-card__label { color: #f3a8cb; }
.option-card h3 { margin: 0; color: var(--ink); font-size: 1.42rem; line-height: 1.2; }
.option-card--featured h3 { color: var(--white); }
.option-card > p:not(.option-card__label) { margin: 16px 0 28px; color: var(--muted); font-size: .88rem; }
.option-card--featured > p:not(.option-card__label) { color: rgba(255,255,255,.65); }
.option-card a { display: inline-flex; align-items: center; gap: 10px; margin-top: auto; color: var(--purple); font-size: .76rem; font-weight: 850; text-decoration: none; text-transform: uppercase; }
.option-card--featured a { color: #f3a8cb; }
.option-card a svg { width: 18px; }

.split-content { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 64px; }
.split-content__image { position: relative; min-height: 590px; }
.split-content__image img { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: var(--radius-lg); object-fit: cover; }
.split-content__brand { position: absolute; top: 18px; left: 18px; width: 94px; padding: 9px; border-radius: 50%; background: rgba(13,16,32,.84); color: #ff7ab6; box-shadow: 0 12px 30px rgba(13,16,32,.22); backdrop-filter: blur(8px); }
.split-content__image span { position: absolute; right: 18px; bottom: 18px; left: 18px; padding: 16px 18px; border-radius: var(--radius-sm); background: rgba(13,16,32,.9); color: var(--white); font-size: .76rem; font-weight: 750; }
.split-content > div > p:not(.eyebrow) { margin: 26px 0; color: var(--muted); }
.number-list { display: grid; margin: 36px 0 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.number-list li { display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.number-list li > span { color: var(--pink); font-size: .7rem; font-weight: 850; letter-spacing: .12em; }
.number-list strong { display: block; color: var(--ink); font-size: .92rem; }
.number-list p { margin: 4px 0 0; color: var(--muted); font-size: .82rem; }

.audience-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 46px; }
.audience-grid article { position: relative; min-height: 230px; overflow: hidden; padding: 30px; border-radius: var(--radius-md); background: var(--paper); }
.audience-card__brand { position: absolute; top: -25px; right: -18px; width: 125px; color: var(--purple); opacity: .18; transform: rotate(8deg); }
.audience-grid article > :not(.audience-card__brand) { position: relative; z-index: 1; }
.audience-grid article > span { color: var(--pink); font-size: .68rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.audience-grid h3 { margin: 52px 0 8px; color: var(--ink); font-size: 1.35rem; }
.audience-grid p { margin: 0; color: var(--muted); font-size: .86rem; }

.project-teaser { display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding-inline: 0; }
.project-teaser__image { min-height: 480px; }
.project-teaser__image img { width: 100%; height: 100%; border-radius: var(--radius-lg) 0 0 var(--radius-lg); object-fit: cover; }
.project-teaser__copy { position: relative; display: flex; flex-direction: column; justify-content: center; overflow: hidden; padding: 48px; border-radius: 0 var(--radius-lg) var(--radius-lg) 0; background: var(--paper); }
.project-teaser__brand { position: absolute; top: -30px; right: -22px; width: 175px; color: var(--pink); opacity: .15; transform: rotate(9deg); }
.project-teaser__copy > :not(.project-teaser__brand) { position: relative; z-index: 1; }
.project-teaser__copy h2 { font-size: clamp(2.2rem, 3.5vw, 3.5rem); }
.project-teaser__copy > p:not(.eyebrow) { margin: 24px 0 32px; color: var(--muted); }

.faq-list { margin-top: 46px; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; min-height: 72px; padding: 22px 56px 22px 0; color: var(--ink); font-size: 1rem; font-weight: 750; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; top: 50%; right: 8px; display: grid; place-items: center; width: 32px; height: 32px; border: 1px solid var(--line); border-radius: 50%; color: var(--purple); transform: translateY(-50%); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 760px; margin: -4px 0 24px; color: var(--muted); }
.content-section--faq { position: relative; overflow: hidden; }
.faq-brand-mark { position: absolute; top: 56px; right: 8px; width: 145px; color: var(--pink); opacity: .15; transform: rotate(-5deg); }
.content-section--faq > :not(.faq-brand-mark) { position: relative; z-index: 1; }

.availability-panel { position: relative; overflow: hidden; padding: 120px 0; background: linear-gradient(115deg, #351967 0%, #70206f 52%, #b6175a 100%); color: var(--white); }
.availability-panel__brand { position: absolute; bottom: 34px; left: max(24px, calc(50% - 720px)); width: 350px; color: var(--white); opacity: .14; pointer-events: none; transform: rotate(-7deg); }
.availability-panel__grid { position: relative; z-index: 1; display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; gap: 92px; }
.availability-panel h2 { color: var(--white); }
.availability-panel__copy > p:not(.eyebrow) { max-width: 520px; margin: 28px 0; color: rgba(255,255,255,.72); }
.availability-panel__copy ul { display: grid; gap: 10px; margin: 34px 0 0; padding: 0; list-style: none; }
.availability-panel__copy li { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.84); font-size: .88rem; }
.availability-panel__copy li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #ff84ba; }
.availability-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.service-cta { position: relative; overflow: hidden; padding: 104px 0; background: linear-gradient(115deg, #351967 0%, #70206f 52%, #b6175a 100%); color: var(--white); }
.service-cta__brand { position: absolute; top: -85px; right: max(18px, calc(50% - 720px)); width: 310px; color: var(--white); opacity: .12; transform: rotate(9deg); }
.service-cta__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 88px; }
.service-cta h2 { max-width: 780px; margin: 0; color: var(--white); font-size: clamp(2.7rem, 4.7vw, 4.7rem); font-weight: 740; letter-spacing: -.045em; line-height: 1.04; }
.service-cta__grid > div > p:not(.eyebrow) { max-width: 680px; margin: 28px 0 0; color: rgba(255,255,255,.7); }
.service-cta__actions { display: grid; gap: 14px; }
.service-cta__actions .button { width: 100%; }
.service-cta__actions > span { margin-top: 8px; color: rgba(255,255,255,.56); font-size: .72rem; text-align: center; }

.about-story { background: var(--white); }
.about-story__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; }
.about-story h2, .values-section h2, .credentials h2, .contact-main h2, .contact-directions h2 { margin: 0; color: var(--ink); font-size: clamp(2.6rem, 4.5vw, 4.5rem); font-weight: 740; letter-spacing: -.045em; line-height: 1.05; }
.about-story__copy { display: grid; gap: 20px; }
.about-story__copy p { margin: 0; color: var(--muted); font-size: 1.05rem; }
.values-section { background: var(--paper); }
.credentials { background: var(--white); }

.contact-hero, .work-hero { position: relative; min-height: 680px; overflow: hidden; background: var(--ink); color: var(--white); }
.contact-hero > img, .work-hero > img, .contact-hero__shade, .work-hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.contact-hero > img, .work-hero > img { object-fit: cover; }
.contact-hero__shade, .work-hero__shade { background: linear-gradient(90deg, rgba(9,10,24,.96), rgba(9,10,24,.56) 68%, rgba(9,10,24,.65)); }
.contact-hero__brand, .work-hero__brand { position: absolute; right: 5vw; bottom: -90px; width: 360px; color: #ff78b4; opacity: .25; transform: rotate(9deg); }
.contact-hero__content, .work-hero__content { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; min-height: 680px; padding-top: 98px; padding-bottom: 70px; }
.contact-hero h1, .work-hero h1 { max-width: 900px; margin: 0; font-size: clamp(3.5rem, 6vw, 6rem); font-weight: 740; letter-spacing: -.05em; line-height: 1; }
.contact-hero__content > p:not(.eyebrow), .work-hero__content > p:not(.eyebrow) { max-width: 690px; margin: 28px 0 0; color: rgba(255,255,255,.74); font-size: 1.16rem; }

.contact-main { padding: 110px 0; background: var(--white); }
.contact-main__grid { display: grid; grid-template-columns: .78fr 1.22fr; align-items: start; gap: 70px; }
.contact-card { position: sticky; top: 24px; padding: 42px; border-radius: var(--radius-lg); background: var(--ink); color: var(--white); }
.contact-card h2 { color: var(--white); font-size: clamp(2.35rem, 3.6vw, 3.65rem); }
.contact-card__details { display: grid; margin-top: 40px; border-top: 1px solid rgba(255,255,255,.13); }
.contact-card__details > * { display: grid; gap: 3px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.13); text-decoration: none; }
.contact-card__details small { color: #f4a2c9; font-size: .68rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.contact-card__details strong { font-size: 1.08rem; }
.contact-card__details span { color: rgba(255,255,255,.56); font-size: .78rem; }
.contact-card__note { margin: 30px 0 0; color: rgba(255,255,255,.58); font-size: .8rem; }
.enquiry-form--light { border: 1px solid var(--line); background: var(--paper); color: var(--text); box-shadow: none; }
.enquiry-form--light .form-heading { grid-column: 1 / -1; margin-bottom: 10px; }
.enquiry-form--light .form-heading h2 { font-size: clamp(2.4rem, 3.6vw, 3.6rem); }
.enquiry-form--light .form-heading > p:not(.eyebrow) { margin: 12px 0 0; color: var(--muted); }
.enquiry-form--light label { color: var(--ink); }
.enquiry-form--light label span { color: var(--muted); font-weight: 500; }
.enquiry-form--light input, .enquiry-form--light select, .enquiry-form--light textarea { border-color: #d2ced4; background: var(--white); color: var(--ink); }
.enquiry-form--light .form-note { color: var(--muted); }
.contact-directions { background: var(--paper); }
.contact-area { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border-radius: var(--radius-lg); background: var(--white); }
.contact-area__map { position: relative; display: flex; flex-direction: column; justify-content: end; min-height: 420px; overflow: hidden; padding: 46px; background: linear-gradient(135deg, #3d1e6e, #ae1c63); color: var(--white); }
.contact-area__map::before { content: ""; position: absolute; inset: 0; opacity: .17; background-image: radial-gradient(circle, #fff 1.5px, transparent 1.5px); background-size: 24px 24px; }
.contact-area__brand { position: absolute; top: 25px; right: 25px; width: 210px; color: var(--white); opacity: .2; }
.contact-area__map > *:not(.contact-area__brand) { position: relative; z-index: 1; }
.contact-area__map span { color: #fac0da; font-size: .72rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.contact-area__map strong { margin-top: 7px; font-size: 2rem; line-height: 1.25; }
.contact-area__copy { display: flex; flex-direction: column; justify-content: center; padding: 58px; }
.contact-area__copy h3 { margin: 0; color: var(--ink); font-size: 2rem; letter-spacing: -.03em; }
.check-list--dark li { color: var(--text); }
.check-list--dark span { background: #f9dce9; color: var(--pink); }

.legal-hero { position: relative; overflow: hidden; padding: 156px 0 100px; background: linear-gradient(120deg, var(--ink), #351967); color: var(--white); }
.legal-hero__content { position: relative; }
.legal-hero__brand { position: absolute; top: -100px; right: -20px; width: 300px; color: #ff78b4; opacity: .18; transform: rotate(8deg); }
.legal-hero h1 { max-width: 900px; margin: 0; font-size: clamp(3.4rem, 6vw, 6rem); letter-spacing: -.05em; line-height: 1; }
.legal-hero__content > p:not(.eyebrow) { max-width: 740px; margin: 28px 0 20px; color: rgba(255,255,255,.7); font-size: 1.12rem; }
.legal-hero__content > span { color: rgba(255,255,255,.42); font-size: .72rem; }
.legal-layout { background: var(--white); }
.legal-layout__grid { display: grid; grid-template-columns: 230px minmax(0,1fr); align-items: start; gap: 76px; }
.legal-copy { min-width: 0; }
.legal-copy > section { padding: 88px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 24px; }
.legal-copy h2 { max-width: 820px; margin: 0 0 28px; color: var(--ink); font-size: clamp(2.25rem, 4vw, 3.8rem); letter-spacing: -.04em; line-height: 1.08; }
.legal-copy h3 { margin: 32px 0 7px; color: var(--ink); font-size: 1.12rem; }
.legal-copy p, .legal-copy address { max-width: 850px; color: var(--muted); font-style: normal; }
.legal-copy a { color: var(--purple); }
.legal-note, .legal-contact { display: grid; gap: 6px; margin-top: 34px; padding: 28px; border-radius: var(--radius-md); background: var(--paper); }
.legal-note p { margin: 0; }
.legal-contact { border-left: 5px solid var(--pink); }
.legal-contact a:last-child { display: flex; align-items: center; gap: 10px; margin-top: 10px; font-weight: 800; text-decoration: none; }
.legal-contact svg { width: 18px; }
.legal-copy .legal-small { font-size: .76rem; }

.work-hero { min-height: 720px; }
.work-hero__content { min-height: 720px; }
.project-capabilities { background: var(--paper); }
.case-detail__hero { position: relative; min-height: 760px; overflow: hidden; background: var(--ink); color: var(--white); }
.case-detail__hero > img, .case-detail__shade { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.case-detail__shade { background: linear-gradient(90deg, rgba(9,10,24,.94), rgba(9,10,24,.4)), linear-gradient(0deg, rgba(9,10,24,.65), transparent); }
.case-detail__brand { position: absolute; right: 5vw; bottom: -80px; width: 340px; color: #ff78b4; opacity: .28; }
.case-detail__intro { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: end; min-height: 760px; padding-top: 136px; padding-bottom: 90px; }
.case-detail__intro h1 { max-width: 900px; margin: 0; font-size: clamp(3.5rem, 6.2vw, 6.2rem); letter-spacing: -.055em; line-height: .98; }
.case-detail__intro > p:not(.eyebrow) { max-width: 720px; margin: 28px 0 0; color: rgba(255,255,255,.75); font-size: 1.16rem; }
.case-detail__summary { background: var(--ink); color: var(--white); }
.case-detail__summary-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.case-detail__summary-grid div { display: grid; gap: 5px; padding: 30px 26px; border-left: 1px solid rgba(255,255,255,.12); }
.case-detail__summary-grid div:last-child { border-right: 1px solid rgba(255,255,255,.12); }
.case-detail__summary-grid span { color: #f4a2c9; font-size: .66rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.case-detail__summary-grid strong { font-size: .84rem; }
.case-detail__body { background: var(--white); }
.case-detail__body-grid { display: grid; grid-template-columns: 230px minmax(0, 1fr); align-items: start; gap: 76px; }
.case-detail__body-grid > aside { position: sticky; top: 24px; display: grid; margin-top: 88px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); }
.case-detail__body-grid > aside > p { margin: 0 0 12px; color: var(--ink); font-size: .72rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.case-detail__body-grid > aside nav { display: grid; margin-bottom: 22px; }
.case-detail__body-grid > aside nav a { padding: 11px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .82rem; text-decoration: none; }
.case-detail__body-grid > aside .button { padding-inline: 17px; font-size: .74rem; }
.case-detail__copy > section { padding: 92px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 24px; }
.case-detail__copy h2 { max-width: 850px; margin: 0; color: var(--ink); font-size: clamp(2.5rem, 4.3vw, 4.2rem); letter-spacing: -.045em; line-height: 1.06; }
.case-detail__copy p { max-width: 850px; color: var(--muted); }
.case-detail__copy .lede { color: var(--text); font-size: 1.25rem; line-height: 1.6; }
.case-detail__copy figure { margin: 0; padding: 70px 0 0; }
.case-detail__copy figure img { width: 100%; max-height: 620px; border-radius: var(--radius-lg); object-fit: cover; }
.case-detail__copy figcaption { margin-top: 12px; color: var(--muted); font-size: .75rem; }
.case-detail__points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 38px; }
.case-detail__points div { display: grid; gap: 8px; min-height: 150px; padding: 24px; border-radius: var(--radius-md); background: var(--paper); }
.case-detail__points strong { color: var(--purple); }
.case-detail__points span { color: var(--muted); font-size: .8rem; }

.simple-message { padding: 176px 0 110px; background: var(--paper); }
.simple-message__panel { position: relative; overflow: hidden; padding: 70px; border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow); }
.simple-message__brand { position: absolute; top: -55px; right: -35px; width: 240px; color: var(--pink); opacity: .14; }
.simple-message__panel > :not(.simple-message__brand) { position: relative; z-index: 1; }
.simple-message h1 { max-width: 780px; margin: 0; color: var(--ink); font-size: clamp(3rem, 5.5vw, 5.5rem); letter-spacing: -.05em; line-height: 1; }
.simple-message__panel > p:not(.eyebrow) { max-width: 650px; margin: 25px 0 35px; color: var(--muted); }
.button--outline { border-color: var(--line); color: var(--ink); }

@media (max-width: 1050px) {
    .primary-nav { gap: 2px; }
    .nav-group__trigger { padding-inline: 8px; font-size: .8rem; }
    .nav-group__trigger::after { right: 8px; left: 8px; }
    .header-call { display: none; }
    .hero__grid { grid-template-columns: minmax(0, 1fr) 350px; gap: 42px; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-item:nth-child(2) { border-right: 1px solid var(--line); }
    .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .section-heading, .contact-panel__grid { gap: 55px; }
    .fibre-focus__grid { gap: 58px; }
    .fibre-focus__caption { right: -10px; }
    .expertise__grid { gap: 60px; }
    .case-study__content { padding: 50px; }
    .page-hero__grid { gap: 50px; }
    .content-shell__grid { grid-template-columns: 210px minmax(0, 1fr); gap: 48px; }
    .availability-panel__grid { gap: 52px; }
    .service-cta__grid { gap: 50px; }
    .about-story__grid { gap: 65px; }
    .contact-main__grid { gap: 42px; }
    .legal-layout__grid, .case-detail__body-grid { gap: 48px; }
}

@media (max-width: 820px) {
    :root { --wrap: min(100% - 36px, 720px); }
    .site-header__inner { min-height: 78px; }
    .brand img { width: 165px; }
    .menu-toggle { display: block; margin-left: auto; cursor: pointer; }
    .primary-nav { position: fixed; inset: 78px 0 0; display: none; padding: 16px 18px 28px; overflow-y: auto; background: #0d1020; border-top: 1px solid rgba(255,255,255,.1); }
    .primary-nav.is-open { display: grid; }
    .nav-group { display: grid; border-bottom: 1px solid rgba(255,255,255,.1); }
    .nav-group__trigger { justify-content: space-between; width: 100%; min-height: 54px; padding: 10px 8px; font-size: 1rem; text-align: left; }
    .nav-group__trigger::after { display: none; }
    .nav-group__trigger[data-active="true"] { color: #ff90c1; }
    .nav-dropdown { position: static; display: none; width: auto; padding: 0 0 12px; border: 0; border-radius: 0; background: transparent; color: var(--white); box-shadow: none; opacity: 1; visibility: visible; transform: none; transition: none; }
    .nav-group.is-open .nav-dropdown, .nav-group:nth-last-child(-n+2).is-open .nav-dropdown { display: grid; transform: none; }
    .nav-dropdown__heading { display: none; }
    .nav-dropdown a { min-height: 58px; padding: 9px 14px; border-radius: 9px; }
    .nav-dropdown a:hover, .nav-dropdown a:focus-visible, .nav-dropdown a[aria-current="page"] { background: rgba(255,255,255,.08); }
    .nav-dropdown a strong { color: var(--white); font-size: .88rem; }
    .nav-dropdown a span { color: rgba(255,255,255,.55); font-size: .7rem; }
    .nav-dropdown a[aria-current="page"] strong { color: #ff90c1; }
    body.menu-open { overflow: hidden; }
    .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child { transform: translateY(4.5px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child { transform: translateY(-4.5px) rotate(-45deg); }
    .hero { min-height: auto; }
    .hero__shade { background: linear-gradient(90deg, rgba(9,10,24,.92), rgba(9,10,24,.48)), linear-gradient(0deg, rgba(9,10,24,.8), transparent 50%); }
    .hero__grid { grid-template-columns: 1fr; gap: 48px; min-height: auto; padding-top: 128px; padding-bottom: 80px; }
    .hero__content { max-width: 690px; }
    .hero h1 { font-size: clamp(3.4rem, 10vw, 5.2rem); }
    .fibre-checker { max-width: 620px; }
    .section { padding: 88px 0; }
    .section-heading, .contact-panel__grid { grid-template-columns: 1fr; align-items: start; gap: 28px; }
    .service-grid { gap: 18px; }
    .fibre-focus__grid, .expertise__grid, .case-study__panel { grid-template-columns: 1fr; }
    .fibre-focus__visual { min-height: 470px; }
    .fibre-focus__visual img { min-height: 470px; }
    .fibre-focus__caption { right: 22px; }
    .expertise__visual { min-height: 520px; order: -1; }
    .case-study__image { min-height: 450px; }
    .process-grid { grid-template-columns: 1fr; }
    .process-grid li { min-height: auto; border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .process-grid h3 { margin-top: 28px; }
    .contact-panel { padding: 90px 0; }
    .contact-details { margin-top: 36px; }
    .page-hero__grid { grid-template-columns: 1fr; gap: 52px; min-height: auto; padding-top: 121px; }
    .page-hero__copy { max-width: 720px; }
    .page-hero__visual { min-height: 520px; max-width: 620px; }
    .page-hero__brand { top: -55px; right: -45px; width: 220px; }
    .content-shell__grid { grid-template-columns: 1fr; gap: 0; }
    .content-nav { position: static; margin: 56px 0 0; }
    .content-nav nav { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 24px; }
    .content-nav__call { display: none; }
    .content-section { padding: 82px 0; }
    .option-grid { grid-template-columns: 1fr; }
    .option-card { min-height: 310px; }
    .split-content, .project-teaser, .availability-panel__grid { grid-template-columns: 1fr; }
    .split-content__image { min-height: 480px; }
    .project-teaser__image { min-height: 410px; }
    .project-teaser__image img { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
    .project-teaser__copy { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
    .project-teaser__brand { width: 155px; }
    .availability-panel { padding: 90px 0; }
    .service-cta { padding: 86px 0; }
    .service-cta__grid { grid-template-columns: 1fr; gap: 38px; }
    .service-cta__actions { max-width: 480px; }
    .site-footer__directory { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .about-story__grid, .contact-main__grid, .legal-layout__grid, .case-detail__body-grid { grid-template-columns: 1fr; }
    .about-story__grid { gap: 32px; }
    .contact-card, .case-detail__body-grid > aside { position: static; }
    .contact-card { max-width: 660px; }
    .contact-area { grid-template-columns: 1fr; }
    .legal-layout .content-nav { margin-top: 56px; }
    .case-detail__summary-grid { grid-template-columns: repeat(2, 1fr); }
    .case-detail__body-grid > aside { margin: 56px 0 0; }
    .case-detail__body-grid > aside nav { grid-template-columns: repeat(2, 1fr); gap: 0 22px; }
    .case-detail__body-grid > aside .button { max-width: 280px; }
}

@media (max-width: 620px) {
    :root { --wrap: calc(100% - 28px); }
    body { padding-bottom: 62px; }
    .primary-nav { inset: 78px 0 62px; }
    .hero__image { object-position: 68% center; }
    .hero__grid { gap: 38px; padding-top: 106px; padding-bottom: 56px; }
    .hero h1 { font-size: clamp(2.8rem, 13vw, 4rem); }
    .hero__intro { margin-top: 24px; font-size: 1rem; }
    .hero__proof { display: grid; gap: 9px; }
    .button-row { align-items: stretch; flex-direction: column; }
    .button { width: 100%; }
    .fibre-checker { padding: 26px 22px; }
    .trust-grid, .service-grid { grid-template-columns: 1fr; }
    .trust-item { min-height: 94px; padding: 18px 20px; border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .section { padding: 72px 0; }
    .section-heading { margin-bottom: 36px; }
    .section-heading h2, .fibre-focus h2, .expertise h2, .case-study h2, .contact-panel h2 { font-size: clamp(2.35rem, 11vw, 3.6rem); }
    .fibre-focus__visual, .fibre-focus__visual img { min-height: 360px; }
    .fibre-focus__caption { right: 14px; bottom: 14px; left: 14px; max-width: none; }
    .service-card__body { min-height: 150px; padding: 24px; }
    .expertise__grid { gap: 45px; }
    .expertise__visual { min-height: 390px; }
    .expertise__badge { width: 165px; padding: 20px; }
    .expertise__badge strong { font-size: 2.5rem; }
    .case-study__panel { border-radius: var(--radius-md); }
    .case-study__image { min-height: 320px; }
    .case-study__content { padding: 36px 26px; }
    .case-study__metrics strong { font-size: 2rem; }
    .process-grid li { padding: 27px 26px; }
    .enquiry-form { grid-template-columns: 1fr; padding: 28px 22px; border-radius: var(--radius-md); }
    .form-field--full { grid-column: auto; }
    .site-footer { padding-top: 58px; }
    .site-footer__top, .site-footer__bottom { grid-template-columns: 1fr; text-align: left; }
    .site-footer__top { gap: 30px; padding-bottom: 40px; }
    .site-footer__directory { grid-template-columns: 1fr 1fr; gap: 34px 24px; padding-bottom: 44px; }
    .site-footer address, .site-footer__bottom > span:last-child { text-align: left; }
    .site-footer__bottom nav { justify-content: flex-start; flex-wrap: wrap; }
    .mobile-actions { position: fixed; right: 0; bottom: 0; left: 0; z-index: 40; display: grid; grid-template-columns: 1fr 1fr; min-height: 62px; background: var(--ink); box-shadow: 0 -6px 25px rgba(13,16,32,.18); }
    .mobile-actions a { display: grid; place-items: center; padding: 10px; color: var(--white); font-size: .82rem; font-weight: 800; text-decoration: none; }
    .mobile-actions a:last-child { background: linear-gradient(100deg, var(--purple), var(--pink)); }
    .page-hero__grid { gap: 36px; padding-top: 102px; padding-bottom: 60px; }
    .breadcrumbs { margin-bottom: 36px; }
    .page-hero h1 { font-size: clamp(2.8rem, 12vw, 4rem); }
    .page-hero__meta { grid-template-columns: 1fr; gap: 14px; margin-top: 38px; }
    .page-hero__visual { min-height: 390px; }
    .page-hero__badge { right: 14px; bottom: 14px; left: 14px; max-width: none; }
    .content-nav { padding: 20px; }
    .content-nav nav { grid-template-columns: 1fr; }
    .content-section { padding: 66px 0; }
    .content-section h2, .availability-panel h2 { font-size: clamp(2.25rem, 10.5vw, 3.35rem); }
    .content-section .lede { font-size: 1.1rem; }
    .content-columns, .audience-grid { grid-template-columns: 1fr; gap: 18px; }
    .brand-promise { grid-template-columns: 72px minmax(0, 1fr); gap: 18px; padding: 24px 22px; }
    .brand-promise__mark { width: 68px; }
    .brand-promise strong { font-size: 1rem; }
    .brand-promise span { font-size: .82rem; }
    .section-brand-mark { top: 34px; right: -35px; width: 160px; opacity: .13; }
    .option-card { min-height: 290px; padding: 26px; }
    .split-content { gap: 42px; }
    .split-content__image { min-height: 370px; }
    .audience-grid article { min-height: 205px; padding: 26px; }
    .audience-card__brand { width: 112px; opacity: .16; }
    .project-teaser__image { min-height: 320px; }
    .project-teaser__copy { padding: 34px 24px; }
    .faq-list summary { padding-right: 48px; }
    .availability-form { grid-template-columns: 1fr; }
    .faq-brand-mark { top: 34px; right: -46px; width: 130px; opacity: .12; }
    .availability-panel__brand { right: -52px; bottom: 22px; left: auto; width: 270px; opacity: .11; }
    .service-cta__brand { top: -50px; right: -55px; width: 230px; }
    .contact-hero, .contact-hero__content, .work-hero, .work-hero__content { min-height: 610px; }
    .contact-hero__content, .work-hero__content { padding-top: 112px; padding-bottom: 60px; }
    .contact-hero h1, .work-hero h1 { font-size: clamp(2.8rem, 13vw, 4rem); }
    .contact-main { padding: 72px 0; }
    .contact-card { padding: 30px 24px; border-radius: var(--radius-md); }
    .contact-area__map { min-height: 310px; padding: 30px; }
    .contact-area__copy { padding: 34px 26px; }
    .legal-hero { padding: 125px 0 74px; }
    .legal-hero h1 { font-size: clamp(2.8rem, 13vw, 4rem); }
    .legal-copy > section { padding: 66px 0; }
    .case-detail__hero, .case-detail__intro { min-height: 650px; }
    .case-detail__intro { padding-top: 125px; padding-bottom: 65px; }
    .case-detail__intro h1 { font-size: clamp(2.8rem, 13vw, 4.1rem); }
    .case-detail__summary-grid { grid-template-columns: 1fr; }
    .case-detail__summary-grid div, .case-detail__summary-grid div:last-child { border-right: 1px solid rgba(255,255,255,.12); }
    .case-detail__copy > section { padding: 66px 0; }
    .case-detail__copy figure { padding-top: 48px; }
    .case-detail__points { grid-template-columns: 1fr; }
    .case-detail__points div { min-height: 120px; }
    .simple-message { padding: 125px 0 75px; }
    .simple-message__panel { padding: 48px 26px; }
}

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