:root {
    --ink: #0f161d;
    --ink-soft: #1c2733;
    --teal: #12a394;
    --teal-dark: #0c7c72;
    --coral: #e06b4f;
    --coral-deep: #c85a42;
    --sand: #f1ece3;
    --paper: #f8f5f0;
    --white: #ffffff;
    --muted: #4a5462;
    --line: #e2dbd0;
    --font-serif: "Fraunces", "Times New Roman", serif;
    --font-sans: "Manrope", system-ui, sans-serif;
    --wrap: 1180px;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 22px 50px rgba(15, 22, 29, 0.12);
    --shadow-sm: 0 10px 28px rgba(15, 22, 29, 0.08);
    --header-h: 4.65rem;
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--ink);
    background:
        radial-gradient(900px 420px at 8% -8%, rgba(18, 163, 148, 0.08), transparent 55%),
        var(--paper);
    line-height: 1.7;
    font-size: 1.05rem;
    -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img { max-width: 100%; display: block; height: auto; min-width: 0; }
a { color: var(--teal-dark); text-underline-offset: 3px; }
a:hover { color: var(--coral); }
address { font-style: normal; }
button, input, textarea, select { font: inherit; }

.container {
    width: min(100% - 2.5rem, var(--wrap));
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--teal);
    color: #fff;
    padding: .75rem 1rem;
    z-index: 9999;
    border-radius: 8px;
    font-weight: 600;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ========== Header ========== */
.site-header {
    background: rgba(15, 22, 29, 0.94);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(224, 107, 79, 0.35);
}

.header-bar {
    width: min(100% - 2rem, var(--wrap));
    margin-inline: auto;
    min-height: var(--header-h);
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
    color: #fff;
    flex-shrink: 0;
}
.brand:hover { color: #fff; }
.brand:hover .brand-icon { background: var(--coral); }

.brand-icon {
    width: 2.35rem;
    height: 2.35rem;
    background: var(--teal);
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: .04em;
    transition: background .2s ease;
}

.brand-name {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: .01em;
}

.site-nav {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: .15rem .15rem;
    margin-left: auto;
}

.nav-link {
    color: rgba(255, 255, 255, .82);
    text-decoration: none;
    font-size: .86rem;
    font-weight: 600;
    padding: .45rem .7rem;
    border-radius: 8px;
    transition: color .2s ease, background .2s ease;
}
.nav-link:hover,
.nav-link[aria-current="page"] {
    color: #fff;
    background: rgba(255, 255, 255, .08);
}

.nav-cta {
    margin-left: .4rem;
    padding: .62rem 1.1rem;
    font-size: .82rem;
}

.menu-btn {
    display: none;
    margin-left: auto;
    flex-shrink: 0;
    width: 2.6rem;
    height: 2.6rem;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
}
.menu-btn span {
    display: block;
    width: 1.15rem;
    height: 2px;
    background: #fff;
    margin-inline: auto;
    transition: transform .22s ease, opacity .22s ease;
}
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .85rem 1.55rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: .92rem;
    letter-spacing: .01em;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-accent {
    background: var(--coral);
    color: #fff;
    border-color: var(--coral);
    box-shadow: 0 8px 20px rgba(224, 107, 79, .28);
}
.btn-accent:hover { background: var(--coral-deep); color: #fff; border-color: var(--coral-deep); }
.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal-dark); }
.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .45);
}
.btn-outline:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ========== Masthead ========== */
.masthead {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    min-height: calc(88vh - var(--header-h));
    background: var(--ink);
    color: #fff;
    position: relative;
    width: 100%;
    max-width: 100%;
}
.masthead-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 3.25rem 4.5rem 3.5rem;
}
.masthead-label {
    text-transform: uppercase;
    letter-spacing: .2em;
    font-size: .72rem;
    color: var(--coral);
    font-weight: 700;
    margin: 0 0 1.1rem;
}
.masthead h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.35rem, 5vw, 3.7rem);
    line-height: 1.08;
    margin: 0 0 1.35rem;
    font-weight: 500;
    letter-spacing: -.02em;
    max-width: 14ch;
}
.masthead-lead {
    color: rgba(255, 255, 255, .82);
    max-width: min(32rem, 100%);
    margin: 0 0 2rem;
    font-size: 1.08rem;
}
.masthead > *,
.feature-row > *,
.contact-grid > *,
.footer-inner > *,
.expertise-card > * { min-width: 0; }
.masthead h1,
.masthead-lead,
.feature-copy p,
.prose p { overflow-wrap: break-word; }
.masthead-visual { position: relative; overflow: hidden; min-height: 360px; }
.masthead-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 360px;
    position: absolute;
    inset: 0;
}
.masthead-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--ink) 0%, rgba(15, 22, 29, .15) 42%, transparent 70%);
}

/* ========== Strip ========== */
.strip-band {
    background: linear-gradient(90deg, var(--teal-dark), var(--teal));
    color: #fff;
    padding: 1.1rem 0;
}
.strip-inner {
    display: flex;
    gap: 1.75rem 2.4rem;
    flex-wrap: wrap;
    justify-content: center;
    width: min(100% - 2rem, var(--wrap));
    margin-inline: auto;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
}
.strip-inner span {
    position: relative;
    padding-left: 1.1rem;
}
.strip-inner span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: .45rem;
    height: .45rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, .75);
    transform: translateY(-50%);
}

/* ========== Feature rows ========== */
.feature-row {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
}
.feature-row:nth-child(even) { direction: rtl; }
.feature-row:nth-child(even) > * { direction: ltr; }
.feature-copy {
    padding: 4.25rem 3.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.feature-copy .masthead-label { color: var(--teal-dark); }
.feature-copy h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.35rem);
    margin: 0 0 1rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -.02em;
}
.feature-copy p { color: var(--muted); margin: 0 0 1rem; }
.feature-copy .btn { margin-top: .6rem; align-self: flex-start; }
.feature-img { min-height: 380px; overflow: hidden; position: relative; }
.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 380px;
    position: absolute;
    inset: 0;
    transition: transform .7s ease;
}
.feature-row:hover .feature-img img { transform: scale(1.04); }

/* ========== Pillars ========== */
.pillars {
    padding: 5.5rem 0;
    background: var(--sand);
}
.pillars-head {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 2.75rem;
}
.pillars-head h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.4vw, 2.6rem);
    margin: 0 0 .75rem;
    font-weight: 500;
    letter-spacing: -.02em;
}
.pillars-head p { color: var(--muted); margin: 0; }
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.15rem;
    counter-reset: pillar;
}
.pillar {
    background: var(--white);
    padding: 1.7rem 1.45rem 1.55rem;
    border-radius: var(--radius);
    border: 1px solid rgba(226, 219, 208, .9);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}
.pillar::before {
    counter-increment: pillar;
    content: counter(pillar, decimal-leading-zero);
    display: block;
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--teal);
    margin-bottom: .7rem;
    font-weight: 600;
}
.pillar:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.pillar h3 { font-size: 1.08rem; margin: 0 0 .55rem; }
.pillar p { font-size: .94rem; color: var(--muted); margin: 0; }
.pillars-note { margin-top: 2.75rem; }

/* ========== Quote ========== */
.pullquote {
    background:
        radial-gradient(700px 280px at 80% 0%, rgba(18, 163, 148, .18), transparent 60%),
        var(--ink);
    color: #fff;
    padding: 5rem 0;
    text-align: center;
}
.pullquote blockquote {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3.2vw, 2.15rem);
    max-width: 44rem;
    margin: 0 auto 1.15rem;
    line-height: 1.35;
    font-weight: 500;
}
.pullquote cite {
    font-style: normal;
    color: var(--coral);
    font-size: .92rem;
    font-weight: 600;
    letter-spacing: .02em;
}

/* ========== Pricing ========== */
.invest-row { padding: 5rem 0; }
.invest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.35rem; }
.invest-card {
    border: 1px solid var(--line);
    padding: 1.9rem 1.6rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease;
}
.invest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.invest-card h3 {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    margin: 0 0 .75rem;
    font-weight: 500;
}
.invest-card p { color: var(--muted); font-size: .97rem; margin: 0; }
.price-from {
    margin-top: 1.15rem;
    padding-top: 1.05rem;
    border-top: 1px solid var(--line);
    font-weight: 700;
    color: var(--teal-dark);
}

/* ========== Page intro ========== */
.page-intro {
    background:
        linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
    color: #fff;
    padding: 3.75rem 0 3.25rem;
    position: relative;
}
.page-intro::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--coral), var(--teal));
}
.page-intro h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.05rem, 4.2vw, 3rem);
    margin: 0 0 .7rem;
    font-weight: 500;
    letter-spacing: -.02em;
    line-height: 1.18;
    max-width: none;
}
.page-intro p {
    color: rgba(255, 255, 255, .82);
    max-width: 40rem;
    margin: 0;
}

/* ========== Timeline ========== */
.timeline { padding: 3.5rem 0 1rem; }
.timeline-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-left: 3px solid var(--teal);
}
.timeline-item {
    padding: 0 0 2.4rem 2.15rem;
    position: relative;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
    content: "";
    position: absolute;
    left: -.58rem;
    top: .4rem;
    width: .9rem;
    height: .9rem;
    background: var(--coral);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--paper);
}
.timeline-item h3 {
    margin: 0 0 .45rem;
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 500;
}
.timeline-item p { color: var(--muted); margin: 0; max-width: 46rem; }

/* ========== Masonry ========== */
.masonry {
    columns: 3;
    column-gap: 1.35rem;
    padding: 2.5rem 0 4rem;
}
.masonry-item {
    break-inside: avoid;
    margin-bottom: 1.35rem;
    background: var(--white);
    border: 1px solid var(--line);
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.masonry-item img { width: 100%; }
.masonry-body { padding: 1.3rem 1.35rem 1.45rem; }
.masonry-body h2 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin: .2rem 0 .5rem;
    font-weight: 500;
}
.masonry-body p { color: var(--muted); margin: 0; font-size: .95rem; }
.masonry-tag {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--teal);
    font-weight: 700;
    margin: 0 0 .35rem;
}

/* ========== Prose ========== */
.content-block { padding: 3.5rem 0 4.5rem; }
.prose { max-width: 44rem; }
.prose-wide { max-width: 52rem; }
.prose h2 {
    font-family: var(--font-serif);
    margin-top: 2.15rem;
    font-weight: 500;
    letter-spacing: -.02em;
    font-size: 1.7rem;
}
.prose p, .prose li { color: var(--muted); }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: .4rem; }
.prose .btn { margin-top: .5rem; }
.page-split {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 2.75rem;
    align-items: start;
}
.page-photo {
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--sand);
}
.page-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 280px;
    aspect-ratio: 4 / 3;
}
.contact-photo { margin: 0 0 1.4rem; }
.contact-photo img { min-height: 190px; aspect-ratio: 16 / 10; }
.timeline-cta { margin: 2rem 0 0; }
.prose .price-from {
    display: inline-block;
    background: var(--sand);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: .85rem 1.1rem;
    margin: 1rem 0 1.25rem;
}

/* ========== Contact ========== */
.contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 2.75rem;
    padding: 3.25rem 0 2rem;
    align-items: start;
}
.contact-info h2 {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    font-weight: 500;
    margin: 0 0 1rem;
}
.contact-info p { margin: 0 0 .55rem; color: var(--muted); }
.contact-info strong { color: var(--ink); }

.enquiry-form {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 1.05rem; }
.field label {
    display: block;
    font-weight: 700;
    margin-bottom: .35rem;
    font-size: .9rem;
}
.field input,
.field textarea {
    width: 100%;
    padding: .78rem .95rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    font: inherit;
    background: var(--paper);
    color: var(--ink);
}
.field input:focus,
.field textarea:focus {
    outline: 2px solid var(--teal);
    outline-offset: 1px;
    background: var(--white);
}
.hp-field {
    position: absolute;
    left: -9999px;
    height: 0;
    overflow: hidden;
}
.form-alert {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    padding: 1rem 1.1rem;
    margin-bottom: 1rem;
    border-radius: var(--radius-sm);
}
.form-alert ul { margin: 0; padding-left: 1.2rem; }
.form-success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    padding: 1.4rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: var(--radius);
}
.form-success h2 {
    font-family: var(--font-serif);
    margin: 0 0 .4rem;
    font-size: 1.45rem;
}

.map-block {
    border: 1px solid var(--line);
    min-height: 420px;
    background: var(--sand);
    border-radius: var(--radius);
    overflow: hidden;
}
.map-fallback {
    display: grid;
    place-items: center;
    min-height: 320px;
    padding: 2rem;
    text-align: center;
    color: var(--muted);
}
.map-embed { width: 100%; height: 420px; border: 0; display: block; }
.map-section { padding-bottom: 3.5rem; }
.map-section h2 {
    font-family: var(--font-serif);
    font-weight: 500;
    margin: 0 0 .4rem;
}
.map-lead { color: var(--muted); margin: 0 0 1.1rem; }

/* ========== Legal ========== */
.legal-wrap {
    background: var(--white);
    padding: 2.75rem 0 4.5rem;
    border-top: 1px solid var(--line);
}
.legal-wrap h2 {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 500;
}

/* ========== Footer ========== */
.site-footer {
    background: var(--ink);
    color: rgba(255, 255, 255, .78);
    padding: 3.25rem 0 0;
}
.footer-inner {
    width: min(100% - 2rem, var(--wrap));
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2.25rem;
}
.footer-brand {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: #fff;
    margin: 0 0 .5rem;
    font-weight: 500;
}
.footer-col p { margin: 0 0 .45rem; }
.footer-title {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--coral);
    margin: 0 0 .85rem;
}
.site-footer a { color: rgba(255, 255, 255, .88); text-decoration: none; }
.site-footer a:hover { color: var(--coral); }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: .45rem; }
.footer-copy {
    width: min(100% - 2rem, var(--wrap));
    margin-inline: auto;
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 1.15rem 0 1.5rem;
    text-align: center;
    font-size: .85rem;
}

/* ========== Cookie ========== */
.cookie-banner {
    position: fixed;
    bottom: 1.15rem;
    right: 1.15rem;
    left: auto;
    width: min(calc(100% - 2.3rem), 26.5rem);
    z-index: 200;
}
.cookie-inner {
    width: 100%;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.15rem 1.25rem 1.2rem;
}
.cookie-banner h2 { font-size: 1.02rem; margin: 0 0 .35rem; }
.cookie-banner p { margin: 0 0 .85rem; color: var(--muted); font-size: .92rem; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: .6rem; }

/* ========== 404 ========== */
.not-found { text-align: center; padding: 5.5rem 1rem 6rem; }
.not-found h1 {
    font-family: var(--font-serif);
    font-size: clamp(4.5rem, 12vw, 7rem);
    color: var(--coral);
    margin: 0;
    line-height: 1;
}
.not-found h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    margin: .6rem 0 .5rem;
}
.not-found p { color: var(--muted); }

/* ========== Expertise cards ========== */
.expertise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.35rem;
}
.expertise-card {
    display: grid;
    grid-template-columns: 160px 1fr;
    background: var(--white);
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease;
}
.expertise-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.expertise-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 180px;
}
.expertise-body { padding: 1.35rem 1.4rem; }
.expertise-body h2 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    margin: 0 0 .45rem;
    font-weight: 500;
}
.expertise-body p { color: var(--muted); margin: 0 0 .7rem; font-size: .95rem; }
.expertise-body a { font-weight: 700; text-decoration: none; }

/* ========== Tablet ========== */
@media (max-width: 1200px) {
    .nav-link { padding: .4rem .48rem; font-size: .8rem; }
    .masthead-text { padding: 3.5rem 2rem; }
    .feature-copy { padding: 2.75rem 2rem; }
}

@media (max-width: 960px) {
    .masthead,
    .feature-row,
    .contact-grid,
    .footer-inner,
    .expertise-card,
    .page-split { grid-template-columns: 1fr; }
    .feature-row:nth-child(even) { direction: ltr; }
    .masthead { min-height: 0; }
    .masthead-visual { min-height: 280px; height: 280px; }
    .masthead-visual img { position: relative; min-height: 280px; }
    .masthead-visual::after {
        background: linear-gradient(180deg, var(--ink) 0%, transparent 42%);
    }
    .feature-img { min-height: 260px; height: 260px; }
    .feature-img img { position: relative; min-height: 260px; }
    .pillar-grid,
    .invest-grid { grid-template-columns: 1fr 1fr; }
    .masonry { columns: 2; }
    .page-intro h1 { max-width: none; }
    .page-photo img { min-height: 220px; }
    .masthead h1 { max-width: none; }
}

/* ========== Mobile ========== */
@media (max-width: 1100px) {
    .menu-btn { display: flex; }
    .nav-cta { display: none; }
    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        margin: 0;
        background: var(--ink-soft);
        flex-direction: column;
        align-items: stretch;
        padding: .75rem 1.15rem 1.25rem;
        border-bottom: 1px solid rgba(224, 107, 79, .3);
        max-height: calc(100vh - var(--header-h));
        overflow-y: auto;
        gap: .15rem;
    }
    .site-nav.open { display: flex; }
    .nav-link {
        padding: .7rem .7rem;
        font-size: 1rem;
        border-radius: 10px;
    }
    .site-nav .nav-cta {
        display: inline-flex;
        margin: .6rem .7rem 0;
        width: calc(100% - 1.4rem);
    }
}

@media (max-width: 720px) {
    .container { width: min(100% - 2rem, var(--wrap)); }
    .header-bar { width: min(100% - 1.25rem, var(--wrap)); }
    .masthead-text { padding: 2.2rem 1.35rem 2rem; }
    .feature-copy { padding: 2rem 1.35rem 2.2rem; }
    .pillar-grid,
    .invest-grid,
    .expertise-grid { grid-template-columns: 1fr; }
    .masonry { columns: 1; }
    .expertise-card { grid-template-columns: 1fr; }
    .expertise-card img { min-height: 200px; height: 200px; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 1.6rem; }
    .pillars,
    .invest-row,
    .pullquote { padding: 3.4rem 0; }
    .content-block { padding: 2.5rem 0 3.2rem; }
    .page-intro { padding: 2.4rem 0 2.1rem; }
    .page-intro h1 { font-size: 1.85rem; }
    .strip-inner {
        justify-content: flex-start;
        gap: .85rem 1.3rem;
        font-size: .7rem;
    }
    .cookie-banner {
        left: .75rem;
        right: .75rem;
        width: auto;
        bottom: .75rem;
    }
    .cookie-inner { padding: .95rem 1rem 1.05rem; }
    .cookie-banner p { font-size: .84rem; margin-bottom: .55rem; }
    .cookie-actions .btn { padding: .65rem .9rem; font-size: .85rem; }
    .enquiry-form { padding: 1.2rem; }
    .btn { width: auto; min-height: 2.75rem; }
    .masthead-actions { flex-direction: column; align-items: stretch; }
    .masthead-actions .btn { width: 100%; }
    .masthead-visual { height: 220px; min-height: 220px; }
    .masthead-visual img { min-height: 220px; }
}

@media (max-width: 480px) {
    body { font-size: 1rem; }
    .brand-name { font-size: 1.05rem; }
    .footer-inner { grid-template-columns: 1fr; }
    .cookie-actions .btn { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
    .feature-row:hover .feature-img img { transform: none; }
}
