:root {
    --cream: #f7f3ec;
    --cream-dark: #eee6db;
    --paper: #fffdf9;
    --burgundy: #4a1f24;
    --burgundy-dark: #2f1418;
    --terracotta: #c56a45;
    --terracotta-light: #e0a07a;
    --ink: #1c1614;
    --muted: #4a433e;
    --line: rgba(74, 31, 36, 0.14);
    --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --font-body: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
    --max: 1180px;
    --gutter: clamp(1.15rem, 4.2vw, 2.75rem);
    --radius: 2px;
    --shadow: 0 18px 50px rgba(47, 20, 24, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--ink);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.has-cookie {
    padding-bottom: 9.5rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    background: var(--cream-dark);
}

a { color: var(--burgundy); text-underline-offset: 3px; }
a:hover { color: var(--terracotta); }

h1, h2, h3, h4, p, li, cite, address, label, span, strong {
    overflow-wrap: anywhere;
    word-wrap: break-word;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: var(--gutter);
    z-index: 9999;
    background: var(--burgundy);
    color: var(--cream);
    padding: 0.75rem 1.25rem;
    font-weight: 600;
}
.skip-link:focus { top: 1rem; color: var(--cream); }

/* Masthead */
.masthead {
    background: rgba(247, 243, 236, 0.94);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(14px);
}
.masthead__bar {
    max-width: var(--max);
    margin: 0 auto;
    padding: 1rem var(--gutter);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.masthead__logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 3vw, 1.7rem);
    font-weight: 600;
    color: var(--burgundy);
    text-decoration: none;
    letter-spacing: -0.02em;
    min-width: 0;
}
.masthead__logo img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    flex-shrink: 0;
    background: var(--burgundy);
}
.masthead__nav {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gutter) 0.95rem;
    display: flex;
    gap: 0.35rem 1.6rem;
    flex-wrap: wrap;
    border-top: 1px solid rgba(74, 31, 36, 0.07);
    padding-top: 0.8rem;
}
.masthead__nav a {
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--muted);
    padding: 0.2rem 0;
}
.masthead__nav a:hover,
.masthead__nav a.is-active {
    color: var(--burgundy);
}
.masthead__toggle {
    display: none;
    background: none;
    border: 1px solid var(--line);
    cursor: pointer;
    padding: 0.55rem 0.6rem;
    border-radius: var(--radius);
}
.masthead__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--burgundy);
    margin: 5px 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 1.85rem;
    font-family: var(--font-body);
    font-size: 0.84rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
    border-radius: var(--radius);
    text-align: center;
}
.btn-accent {
    background: var(--burgundy);
    color: var(--cream);
    box-shadow: 0 8px 22px rgba(74, 31, 36, 0.22);
}
.btn-accent:hover {
    background: var(--burgundy-dark);
    color: var(--cream);
    transform: translateY(-2px);
}
.btn-ghost {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(247, 243, 236, 0.45);
}
.btn-ghost:hover { border-color: var(--cream); color: var(--cream); }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.8125rem; }

/* Editorial hero */
.editorial-hero {
    padding: clamp(2.2rem, 5vw, 4.5rem) var(--gutter) clamp(3rem, 6vw, 5.5rem);
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: clamp(1.5rem, 4vw, 3.4rem);
    align-items: center;
}
.editorial-hero__eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--terracotta);
    margin-bottom: 0.9rem;
}
.editorial-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.35rem, 6.2vw, 4.35rem);
    font-weight: 600;
    line-height: 1.08;
    color: var(--burgundy);
    margin-bottom: 1.25rem;
}
.editorial-hero__lead {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: var(--muted);
    max-width: 34rem;
    margin-bottom: 1.8rem;
}
.editorial-hero__image { position: relative; }
.editorial-hero__image img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    width: 100%;
    box-shadow: var(--shadow);
}
.editorial-hero__image::after {
    content: "";
    position: absolute;
    inset: 1.4rem -1.4rem -1.4rem 1.4rem;
    border: 1px solid var(--terracotta);
    z-index: -1;
}

/* Feature strip */
.feature-strip {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    color: var(--cream);
    padding: clamp(2.2rem, 4vw, 3.6rem) var(--gutter);
}
.feature-strip__inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem 2.2rem;
    text-align: center;
}
.feature-strip__num {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 1.85rem);
    font-weight: 600;
    color: var(--terracotta-light);
    line-height: 1.2;
    margin-bottom: 0.45rem;
}
.feature-strip__label {
    font-size: 0.98rem;
    color: #f7f3ec;
    opacity: 1;
}

/* Editorial blocks */
.editorial-block { padding: clamp(3.2rem, 6vw, 5.4rem) var(--gutter); }
.editorial-block--alt { background: var(--cream-dark); }
.editorial-block__inner { max-width: var(--max); margin: 0 auto; }
.editorial-block__header { max-width: 40rem; margin-bottom: 2.4rem; }
.editorial-block__header h2,
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 4vw, 2.6rem);
    color: var(--burgundy);
    margin-bottom: 0.9rem;
    line-height: 1.15;
}
.editorial-block__header p,
.lede {
    color: var(--muted);
    font-size: 1.05rem;
}

.service-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--line);
    background: var(--paper);
}
.service-col {
    overflow: hidden;
    border-right: 1px solid var(--line);
    background: var(--paper);
    transition: transform 0.25s ease, background 0.25s ease;
}
.service-col:last-child { border-right: none; }
.service-col:hover { background: var(--cream); transform: translateY(-3px); }
.service-col__img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}
.service-col__body { padding: 1.7rem 1.55rem 2rem; }
.service-col__num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--terracotta);
    line-height: 1;
    margin-bottom: 0.55rem;
}
.service-col h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--burgundy);
    margin-bottom: 0.65rem;
}
.service-col p {
    font-size: 0.98rem;
    color: var(--muted);
    margin-bottom: 1.1rem;
}
.service-col a {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    color: var(--burgundy);
}

.pull-quote {
    max-width: var(--max);
    margin: 0 auto;
    padding: clamp(2.4rem, 5vw, 4rem) var(--gutter);
    text-align: center;
}
.pull-quote blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 3.4vw, 2.45rem);
    font-style: italic;
    color: var(--burgundy);
    line-height: 1.35;
    max-width: 46rem;
    margin: 0 auto 1rem;
}
.pull-quote cite {
    font-style: normal;
    font-size: 0.86rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.magazine {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.4rem, 3.5vw, 3rem);
    align-items: center;
}
.magazine + .magazine { margin-top: clamp(2.4rem, 5vw, 4.2rem); }
.magazine--reverse .magazine__text { order: 2; }
.magazine--reverse .magazine__media { order: 1; }
.magazine__text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.4vw, 2.3rem);
    color: var(--burgundy);
    margin-bottom: 1rem;
    line-height: 1.18;
}
.magazine__text p {
    color: var(--muted);
    margin-bottom: 1rem;
}
.magazine__media img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem 2rem;
}
.insight-card {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 1.25rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--line);
    min-width: 0;
}
.insight-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    box-shadow: 0 8px 22px rgba(47, 20, 24, 0.1);
}
.insight-card__tag {
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--terracotta);
    margin-bottom: 0.3rem;
}
.insight-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--burgundy);
    margin-bottom: 0.4rem;
    line-height: 1.25;
}
.insight-card p {
    font-size: 0.98rem;
    color: var(--muted);
}

/* Page intro */
.page-intro {
    padding: clamp(3rem, 6vw, 5rem) var(--gutter) clamp(2.2rem, 4vw, 3.4rem);
    max-width: var(--max);
    margin: 0 auto;
    border-bottom: 1px solid var(--line);
    position: relative;
}
.page-intro--img {
    max-width: none;
    background-size: cover;
    background-position: center;
    border-bottom: none;
    min-height: clamp(280px, 42vw, 420px);
    display: flex;
    align-items: flex-end;
    color: var(--cream);
}
.page-intro--img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(47, 20, 24, 0.28) 0%, rgba(47, 20, 24, 0.78) 100%);
}
.page-intro__inner {
    max-width: var(--max);
    margin: 0 auto;
    width: 100%;
}
.page-intro--img .page-intro__inner { position: relative; z-index: 1; }
.page-intro h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    color: var(--burgundy);
    margin-bottom: 0.85rem;
    line-height: 1.12;
}
.page-intro p {
    color: var(--muted);
    max-width: 40rem;
    font-size: clamp(1.02rem, 2vw, 1.18rem);
}
.page-intro--img h1 { color: #f7f3ec; }
.page-intro--img p { color: #f7f3ec; }

/* Content */
.prose {
    max-width: 46rem;
    margin: 0 auto;
    padding: clamp(2.2rem, 4vw, 3.4rem) var(--gutter) clamp(3.2rem, 6vw, 5rem);
}
.prose--wide { max-width: var(--max); }
.prose h2 {
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 3vw, 1.95rem);
    color: var(--burgundy);
    margin: 2.1rem 0 0.85rem;
    line-height: 1.2;
}
.prose h3 {
    font-size: 1.12rem;
    font-weight: 700;
    margin: 1.5rem 0 0.6rem;
    color: var(--burgundy);
}
.prose p, .prose li, .prose address {
    color: var(--muted);
    margin-bottom: 1.1rem;
}
.prose ul, .prose ol { margin: 0 0 1.25rem 1.25rem; }
.prose li { margin-bottom: 0.45rem; }
.prose address { font-style: normal; line-height: 1.85; }
.prose .magazine {
    padding: 0;
    margin-bottom: clamp(2rem, 4vw, 3.2rem);
}
.prose .magazine h2 { margin-top: 0; }

.rate-note {
    border-left: 3px solid var(--terracotta);
    padding: 1rem 1.25rem;
    background: rgba(197, 106, 69, 0.1);
    margin: 1.5rem 0;
}
.rate-note p { margin: 0; color: var(--ink); font-size: 0.98rem; }

.checklist {
    list-style: none;
    margin: 0 0 1.5rem;
    display: grid;
    gap: 0.65rem;
}
.checklist li {
    position: relative;
    padding: 0.85rem 1rem 0.85rem 2.4rem;
    background: var(--paper);
    border: 1px solid var(--line);
    color: var(--ink);
    margin: 0;
}
.checklist li::before {
    content: "";
    position: absolute;
    left: 0.95rem;
    top: 1.15rem;
    width: 0.55rem;
    height: 0.55rem;
    background: var(--terracotta);
    border-radius: 50%;
}

.topic-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    margin: 1.4rem 0 2rem;
}
.topic-card {
    background: var(--paper);
    border: 1px solid var(--line);
    overflow: hidden;
    min-width: 0;
}
.topic-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}
.topic-card__body { padding: 1.2rem 1.25rem 1.4rem; }
.topic-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--burgundy);
    margin: 0 0 0.45rem;
}
.topic-card p { color: var(--muted); margin: 0; font-size: 0.98rem; }

.photo-row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1rem;
    margin: 1.5rem 0 2rem;
}
.photo-row img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

/* Contact */
.contact-page {
    max-width: var(--max);
    margin: 0 auto;
    padding: clamp(2rem, 4vw, 3.4rem) var(--gutter) clamp(2.4rem, 5vw, 4.2rem);
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: clamp(1.6rem, 4vw, 3.6rem);
    align-items: start;
}
.contact-page__info h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--burgundy);
    margin-bottom: 1rem;
}
.contact-page__info address {
    font-style: normal;
    line-height: 1.9;
    color: var(--muted);
    margin-bottom: 1.2rem;
}
.contact-page__info p { color: var(--muted); }
.contact-visual {
    overflow: hidden;
    margin-top: 1.6rem;
    box-shadow: var(--shadow);
}
.contact-visual img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.enquiry-form {
    background: var(--paper);
    padding: clamp(1.4rem, 3vw, 2.3rem);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-group { margin-bottom: 1.15rem; }
.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--burgundy);
    margin-bottom: 0.35rem;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 0.95rem;
    border: 1px solid var(--line);
    background: var(--cream);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--ink);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: 2px solid var(--terracotta);
    outline-offset: 2px;
}
.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}
.req { color: var(--terracotta); }

.alert { padding: 1.3rem 1.4rem; margin-bottom: 1.4rem; }
.alert-error { background: #fdeeee; border: 1px solid #f0c4c4; color: #7a1f1f; }
.alert-error ul { margin: 0; padding-left: 1.2rem; }
.alert-success { background: rgba(74, 31, 36, 0.06); border: 1px solid var(--line); }
.alert__title { font-weight: 700; color: var(--burgundy); margin-bottom: 0.4rem; }
.alert-success p { color: var(--muted); margin: 0; }

/* Map — always visible, loads with the page */
.map-section {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gutter) clamp(2.4rem, 5vw, 4.5rem);
}
.map-section h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--burgundy);
    margin-bottom: 0.5rem;
}
.map-section > p {
    color: var(--muted);
    margin-bottom: 1.1rem;
    max-width: 40rem;
}
.map-wrap {
    position: relative;
    height: clamp(280px, 48vw, 460px);
    min-height: 280px;
    background: var(--cream-dark);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.map-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.map-caption {
    margin-top: 0.85rem;
    color: var(--ink);
    font-size: 0.95rem;
}

/* Footer */
.site-footer {
    background: var(--burgundy-dark);
    color: #f7f3ec;
    padding: clamp(2.6rem, 5vw, 4rem) var(--gutter) 1.6rem;
}
.footer__top {
    max-width: var(--max);
    margin: 0 auto 2.2rem;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.5fr;
    gap: 1.6rem 1.8rem;
}
.footer__name {
    font-family: var(--font-display);
    font-size: 1.55rem;
    color: #f7f3ec;
    margin-bottom: 0.7rem;
}
.footer__desc {
    font-size: 0.95rem;
    color: #f0e6dc;
    line-height: 1.65;
}
.footer__heading {
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--terracotta-light);
    margin-bottom: 0.85rem;
}
.footer__col ul { list-style: none; }
.footer__col a,
.footer__contact a {
    color: #f7f3ec;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 2;
}
.footer__col a:hover,
.footer__contact a:hover { color: var(--terracotta-light); }
.footer__contact address {
    font-style: normal;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #f7f3ec;
}
.footer__bottom {
    max-width: var(--max);
    margin: 0 auto;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(247, 243, 236, 0.18);
    text-align: center;
    font-size: 0.86rem;
    color: #eadfd4;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--burgundy-dark);
    color: #f7f3ec;
    padding: 1rem var(--gutter);
    box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.18);
}
.cookie-banner__inner { max-width: var(--max); margin: 0 auto; }
.cookie-banner__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    color: #f7f3ec;
}
.cookie-banner__text {
    font-size: 0.92rem;
    color: #f0e6dc;
    margin-bottom: 0.8rem;
    max-width: 44rem;
}
.cookie-banner__text a { color: var(--terracotta-light); }
.cookie-banner__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.error-page {
    text-align: center;
    padding: clamp(4rem, 10vw, 8rem) var(--gutter);
    min-height: 50vh;
}
.error-page h1 {
    font-family: var(--font-display);
    font-size: clamp(4.5rem, 12vw, 8rem);
    color: var(--terracotta);
    line-height: 1;
}
.error-page p {
    color: var(--muted);
    margin: 1rem 0 2rem;
    font-size: 1.12rem;
}

.cta-band {
    background: var(--terracotta);
    color: #fffaf5;
    text-align: center;
    padding: clamp(2.6rem, 5vw, 4.2rem) var(--gutter);
}
.cta-band h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin-bottom: 0.8rem;
    color: #fffaf5;
}
.cta-band p {
    color: #fffaf5;
    max-width: 34rem;
    margin: 0 auto 1.6rem;
}
.cta-band .btn-accent {
    background: var(--cream);
    color: var(--burgundy);
}
.cta-band .btn-accent:hover { background: var(--cream-dark); color: var(--burgundy); }

.article {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    margin-bottom: 2.6rem;
    padding-bottom: 2.2rem;
    border-bottom: 1px solid var(--line);
}
.article img {
    width: 100%;
    height: clamp(180px, 36vw, 320px);
    object-fit: cover;
    box-shadow: var(--shadow);
}
.article h2 { margin-top: 0.4rem; }
.article p { color: var(--muted); margin-bottom: 0.9rem; }

/* Responsive */
@media (max-width: 1100px) {
    .footer__top { grid-template-columns: 1fr 1fr 1fr; }
    .photo-row { grid-template-columns: 1fr; }
    .photo-row img { height: 220px; }
}

@media (max-width: 960px) {
    .editorial-hero,
    .magazine,
    .contact-page,
    .service-columns,
    .feature-strip__inner,
    .insight-grid,
    .topic-grid {
        grid-template-columns: 1fr;
    }
    .editorial-hero__image::after { display: none; }
    .editorial-hero__image img { aspect-ratio: 16 / 10; max-height: 420px; }
    .service-col { border-right: none; border-bottom: 1px solid var(--line); }
    .service-col:last-child { border-bottom: none; }
    .magazine--reverse .magazine__text,
    .magazine--reverse .magazine__media { order: unset; }
    .insight-card { grid-template-columns: 1fr; }
    .insight-card img { width: 100%; height: 210px; }
    .form-row { grid-template-columns: 1fr; }
    .masthead__toggle { display: block; }
    .masthead__nav {
        display: none;
        flex-direction: column;
        gap: 0;
        padding-bottom: 1rem;
    }
    .masthead__nav.is-open { display: flex; }
    .masthead__nav a {
        padding: 0.75rem 0;
        font-size: 0.95rem;
        border-bottom: 1px solid var(--line);
        color: var(--burgundy);
    }
    .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    body { font-size: 1rem; }
    .footer__top { grid-template-columns: 1fr; }
    .feature-strip__inner { text-align: left; }
    .enquiry-form { padding: 1.15rem; }
    .service-col__img,
    .topic-card img { height: 180px; }
    .map-wrap { height: 260px; }
    .cookie-banner__actions { flex-direction: column; }
    .cookie-banner__actions .btn { width: 100%; }
    body.has-cookie { padding-bottom: 14rem; }
}

@media (max-width: 420px) {
    .btn { width: 100%; }
    .editorial-hero h1 { font-size: 2.05rem; }
}
