@font-face {
    font-family: "DM Sans";
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
    src: url("/assets/fonts/dm-sans-latin.woff2") format("woff2");
}

@font-face {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url("/assets/fonts/manrope-latin.woff2") format("woff2");
}

:root {
    --paper: #f4f0e7;
    --paper-light: #fbfaf6;
    --ink: #161616;
    --muted: #66645f;
    --line: rgba(22, 22, 22, .16);
    --accent: #c73718;
    --acid: #d6ef44;
    --violet: #a99cff;
    --font-body: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-display: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --max: 1240px;
    --radius: 1.4rem;
    --shadow: 0 30px 70px rgba(22, 22, 22, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--acid); color: var(--ink); }

.container {
    width: min(calc(100% - 3rem), var(--max));
    margin-inline: auto;
}
.section { padding: clamp(5rem, 9vw, 9rem) 0; }
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
    position: fixed; top: .75rem; left: .75rem; z-index: 9999;
    padding: .75rem 1rem; background: #fff; transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 var(--line);
}
.header-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    text-decoration: none;
}
.brand-logo {
    display: block;
    width: 180px;
    max-width: 42vw;
    height: auto;
}
.brand-mark {
    display: grid;
    place-items: center;
    width: 2.65rem;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--ink);
    color: white;
    font: 700 1.12rem/1 var(--font-display);
    letter-spacing: 0;
}
.brand-name {
    font: 700 1.5rem/1 var(--font-display);
    letter-spacing: 0;
}
.brand-name span { color: var(--accent); }
.main-nav { display: flex; align-items: center; gap: 1.8rem; }
.main-nav a {
    position: relative;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
}
.main-nav a:not(.nav-cta)::after {
    content: "";
    position: absolute; left: 0; right: 100%; bottom: -.35rem;
    height: 1px; background: currentColor; transition: right .25s ease;
}
.main-nav a:hover::after { right: 0; }
.nav-cta {
    border: 1px solid var(--ink);
    border-radius: 999px;
    padding: .7rem 1rem;
    transition: background .2s ease, color .2s ease;
}
.nav-cta:hover { background: var(--ink); color: white; }
.menu-toggle { display: none; border: 0; background: transparent; padding: .5rem; }
.menu-toggle span:not(.sr-only) { display: block; width: 1.6rem; height: 2px; margin: .35rem; background: currentColor; }

.hero {
    min-height: 100svh;
    padding: 9.5rem 0 5rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr);
    gap: clamp(3rem, 7vw, 7rem);
    align-items: center;
}
.eyebrow {
    margin: 0 0 1.4rem;
    font: 600 .76rem/1.2 var(--font-display);
    letter-spacing: .16em;
    text-transform: uppercase;
}
.hero-title, .section-heading h2, .agency-copy h2, .method-intro h2, .contact-copy h2, .local-copy h2 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: 0;
    line-height: .96;
    overflow-wrap: break-word;
    text-wrap: balance;
}
.hero-title { font-size: clamp(3.15rem, 4.85vw, 4.85rem); }
.hero-title em { color: var(--accent); font-style: normal; }
.hero-lead {
    max-width: 690px;
    margin: 2rem 0 0;
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
    color: #3f3d39;
}
.button-group { display: flex; align-items: center; flex-wrap: wrap; gap: 1.2rem; margin-top: 2.4rem; }
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    min-height: 3.4rem;
    padding: .85rem 1.35rem;
    border: 0;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--ink); color: white; }
.button-primary:hover { background: var(--accent); }
.button-text { padding-inline: .3rem; }
.button-dark { background: var(--ink); color: white; width: 100%; }
.button-dark:hover { background: var(--accent); }

.hero-visual { position: relative; min-height: 570px; display: grid; place-items: center; }
.hero-visual picture { width: min(130%, 760px); margin-inline: auto; }
.hero-image {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 34px 32px rgba(22,22,22,.16));
}
.hero-shape { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-shape-one { width: 18rem; height: 18rem; background: rgba(214,239,68,.35); top: -8rem; right: 14%; filter: blur(2px); }
.hero-shape-two { width: 12rem; height: 12rem; border: 1px solid var(--ink); bottom: -6rem; left: 4%; }

.expertise-section { background: var(--ink); color: white; }
.section-heading h2, .agency-copy h2, .method-intro h2, .contact-copy h2, .local-copy h2 {
    font-size: clamp(2.55rem, 4.8vw, 5.15rem);
}
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: clamp(3rem, 6vw, 6rem);
    background: rgba(255,255,255,.22);
    border: 1px solid rgba(255,255,255,.22);
}
.expertise-card {
    min-height: 390px;
    padding: clamp(1.6rem, 3vw, 2.8rem);
    background: var(--ink);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    transition: background .25s ease, color .25s ease;
}
.expertise-card:hover { background: var(--acid); color: var(--ink); }
.card-icon {
    width: clamp(4.6rem, 6.8vw, 6.4rem);
    height: clamp(4.6rem, 6.8vw, 6.4rem);
    margin: 0 0 clamp(1.25rem, 2.5vw, 2.25rem);
    display: grid;
    place-items: center;
}
.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
    transition: filter .25s ease;
}
.expertise-card:hover .card-icon img { filter: brightness(0); }
.expertise-card h3 { margin: 0 0 1rem; font: 600 1.7rem/1.1 var(--font-display); letter-spacing: 0; }
.expertise-card p { margin: 0; color: currentColor; opacity: .72; }

.agency-section { padding-bottom: 0; overflow: hidden; }
.agency-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(3rem, 9vw, 9rem); align-items: center; }
.agency-stat { justify-self: center; text-align: center; }
.agency-stat strong { display: block; font: 500 clamp(7rem, 16vw, 15rem)/.72 var(--font-display); letter-spacing: 0; }
.agency-stat strong span { color: var(--accent); }
.agency-stat p { margin: 2rem auto 0; font-size: 1.05rem; }
.agency-copy p:last-child { max-width: 690px; margin: 2rem 0 0; font-size: 1.15rem; color: var(--muted); }
.logo-ticker { margin-top: 7rem; border-block: 1px solid var(--line); overflow: hidden; white-space: nowrap; }
.ticker-track {
    width: max-content; display: flex; align-items: center; gap: 2rem;
    padding: 1.5rem 0;
    font: 500 clamp(1.4rem, 2.4vw, 2.4rem)/1 var(--font-display);
    animation: ticker 28s linear infinite;
}
.ticker-track i { color: var(--accent); font-style: normal; font-size: 1rem; }
@keyframes ticker { to { transform: translateX(-50%); } }

.local-section {
    background: var(--ink);
    color: white;
    overflow: hidden;
}
.local-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.local-copy .eyebrow { color: var(--acid); }
.local-content p {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.45;
    color: rgba(255,255,255,.82);
}
.local-list {
    list-style: none;
    margin: 3rem 0 0;
    padding: 0;
    border-top: 1px solid rgba(255,255,255,.22);
}
.local-list li {
    display: grid;
    grid-template-columns: 2rem 1fr;
    gap: 1rem;
    align-items: center;
    padding: 1.15rem 0;
    border-bottom: 1px solid rgba(255,255,255,.22);
    font-weight: 600;
}
.local-list li::before {
    content: "✦";
    color: var(--accent);
    font-size: .9rem;
}

.projects-section { background: var(--paper-light); }
.heading-row { display: grid; grid-template-columns: 1.4fr .6fr; align-items: end; gap: 3rem; }
.heading-note { max-width: 340px; margin: 0 0 .5rem; color: var(--muted); }
.projects-grid {
    display: grid;
    align-items: stretch;
    grid-template-columns: 1.35fr .65fr;
    gap: 2rem;
    margin-top: 4.5rem;
}
.project-large { grid-row: span 2; }
.project-art {
    position: relative; min-height: 0; aspect-ratio: 3 / 2; border-radius: var(--radius); overflow: hidden;
    display: grid; place-items: center;
}
.project-large .project-art { aspect-ratio: 5 / 4; }
.project-art picture { width: 100%; height: 100%; }
.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.project-monogram { font: 600 clamp(7rem, 16vw, 15rem)/1 var(--font-display); letter-spacing: 0; }
.project-art.art-metca { background: #8ecfd3; }
.project-art.art-metca .project-image { object-fit: contain; }
.project-art.art-sankeo {
    background: #302477;
    color: #412014;
}
.project-art.art-sankeo .project-image { object-fit: contain; }
.project-art.art-jau {
    background: #b98150;
    color: #e7d8b8;
}
.project-art.art-jau .project-image { object-fit: contain; }
.project-art.art-banyuls {
    background: #d9e8e3;
    color: var(--ink);
}
.project-art.art-ffliege {
    background: #f0eadf;
    color: var(--ink);
}
.project-art.art-vigie {
    background: #d7edf3;
    color: var(--ink);
}
.project-art.art-office-banyuls {
    background: #efe5d2;
    color: var(--ink);
}
.project-meta { display: flex; justify-content: space-between; gap: 1rem; align-items: start; padding: 1.1rem .25rem 0; }
.project-meta h3 { margin: 0; font: 600 1.25rem/1.2 var(--font-display); letter-spacing: 0; }
.project-meta p { margin: .3rem 0 0; color: var(--muted); font-size: .9rem; }
.project-meta > span { font-size: 1.4rem; }

.method-section { background: var(--acid); }
.method-intro { display: grid; grid-template-columns: 1fr 1fr; column-gap: 4rem; }
.method-intro .eyebrow { grid-column: 1 / -1; }
.method-media { align-self: end; display: grid; gap: 1.6rem; }
.method-media picture { width: min(112%, 620px); justify-self: end; }
.method-image {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 26px 24px rgba(22,22,22,.14));
}
.method-media p { max-width: 500px; justify-self: end; margin: 0 0 .5rem; font-size: 1.1rem; }
.method-list { list-style: none; margin: 5rem 0 0; padding: 0; border-top: 1px solid rgba(22,22,22,.35); }
.method-list li {
    display: grid;
    grid-template-columns: 80px .7fr 1.3fr;
    gap: 2rem;
    align-items: center;
    padding: 1.8rem 0;
    border-bottom: 1px solid rgba(22,22,22,.35);
}
.method-list li > span { font-size: .76rem; }
.method-list strong { font: 600 clamp(1.6rem, 3vw, 2.8rem)/1 var(--font-display); letter-spacing: 0; }
.method-list p { margin: 0; max-width: 520px; }

.testimonial-section { background: var(--ink); color: white; }
.testimonial { text-align: center; max-width: 980px; }
.quote-mark { display: block; color: var(--accent); font: 500 8rem/.55 Georgia, serif; }
.testimonial blockquote { margin: 2rem 0; font: 400 clamp(1.7rem, 3.3vw, 3.4rem)/1.25 var(--font-display); letter-spacing: 0; }
.testimonial p { margin: 2.4rem 0 0; font-weight: 600; }
.testimonial p span { color: #aaa; font-weight: 400; }

.faq-section { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.faq-list {
    counter-reset: faq;
    border-top: 1px solid rgba(22,22,22,.35);
}
.faq-item {
    border-bottom: 1px solid rgba(22,22,22,.35);
    padding: 0;
}
.faq-item summary {
    display: grid;
    grid-template-columns: 3rem 1fr 2rem;
    gap: 1rem;
    align-items: center;
    cursor: pointer;
    list-style: none;
    padding: 1.5rem 0;
    font: 700 clamp(1.1rem, 1.8vw, 1.45rem)/1.2 var(--font-display);
    letter-spacing: 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
    counter-increment: faq;
    content: counter(faq, decimal-leading-zero);
    color: var(--accent);
    font: 600 .78rem/1 var(--font-display);
    letter-spacing: .12em;
}
.faq-item summary::after {
    content: "+";
    justify-self: end;
    font-size: 1.6rem;
    font-weight: 400;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
    max-width: 680px;
    margin: 0 0 1.6rem 4rem;
    color: var(--muted);
    font-size: 1.05rem;
}

.contact-section { background: var(--violet); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(3rem, 8vw, 8rem); }
.contact-copy > p:not(.eyebrow) { max-width: 520px; font-size: 1.15rem; }
.direct-contact { margin-top: 3rem; display: grid; gap: .4rem; font-style: normal; }
.direct-contact a { font-size: 1.15rem; font-weight: 600; }
.direct-contact span { color: var(--ink); font-weight: 500; overflow-wrap: anywhere; }
.contact-form-wrap { background: var(--paper-light); border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 3.5rem); box-shadow: var(--shadow); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.25rem; }
.field label { display: block; margin-bottom: .45rem; font-size: .82rem; font-weight: 600; }
.field input, .field textarea {
    width: 100%; border: 0; border-bottom: 1px solid #aaa; border-radius: 0;
    background: transparent; padding: .8rem 0; outline: none;
}
.field input:focus, .field textarea:focus { border-color: var(--accent); }
.field textarea { resize: vertical; }
.consent { display: flex; gap: .65rem; align-items: flex-start; margin: .4rem 0 1.5rem; font-size: .78rem; color: var(--muted); }
.consent a { color: var(--ink); font-weight: 600; text-decoration: underline; text-underline-offset: .16em; }
.consent input { margin-top: .28rem; accent-color: var(--ink); }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-message { margin-bottom: 1.5rem; padding: 1rem; border-radius: .8rem; font-size: .9rem; }
.form-success { background: #daf3d4; }
.form-error { background: #ffe0d9; }

.site-footer { padding: 2rem 0; background: var(--ink); color: white; }
.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; gap: 2rem; align-items: center; }
.footer-inner p { margin: 0; font-size: .82rem; color: #d8d8d8; }
.footer-inner > p { justify-self: center; text-align: center; }
.footer-inner a { color: inherit; text-decoration: none; }
.footer-inner a:hover { color: white; }
.footer-inner .social-links { justify-self: end; }
.brand-footer .brand-logo { width: 150px; }
.brand-footer .brand-mark { background: white; color: var(--ink); }
.social-links { display: flex; gap: .7rem; align-items: center; justify-content: center; }
.social-links a {
    width: 2.25rem;
    height: 2.25rem;
    display: grid;
    place-items: center;
    color: white;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    transition: background .2s ease, border-color .2s ease;
}
.social-links a:hover { background: var(--accent); border-color: var(--accent); }
.social-links img {
    width: 1rem;
    height: 1rem;
    display: block;
    filter: brightness(0) invert(1);
}
.social-links a:hover img { filter: brightness(0); }

.not-found {
    min-height: calc(100vh - 90px);
    padding: clamp(8rem, 14vw, 11rem) 0 clamp(4rem, 8vw, 7rem);
    background: var(--paper);
    display: grid;
    align-items: center;
    overflow: hidden;
}
.not-found-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(280px, .75fr);
    gap: clamp(2rem, 7vw, 7rem);
    align-items: center;
}
.not-found-content h1 {
    margin: 0;
    font: 600 clamp(7rem, 19vw, 17rem)/.78 var(--font-display);
    letter-spacing: 0;
    color: var(--accent);
}
.not-found-lead {
    max-width: 620px;
    margin: 2rem 0 0;
    color: var(--muted);
    font-size: clamp(1.08rem, 1.8vw, 1.35rem);
}
.not-found-visual {
    min-height: 440px;
    display: grid;
    place-items: center;
}
.not-found-visual picture {
    width: min(118%, 600px);
    transform: rotate(-3deg);
}

.legal-header {
    position: sticky;
    background: rgba(244, 240, 231, .95);
    box-shadow: 0 1px 0 var(--line);
}
.legal-nav {
    display: flex;
    position: static;
    transform: none;
    padding: 0;
    background: transparent;
    flex-direction: row;
}
.legal-main { background: var(--paper); }
.legal-content {
    max-width: 860px;
    padding: clamp(6rem, 10vw, 8.5rem) 0 clamp(4rem, 8vw, 7rem);
}
.legal-content h1 {
    margin: 0 0 3rem;
    font: 600 clamp(2.8rem, 6vw, 5.2rem)/1 var(--font-display);
}
.legal-content section {
    padding: 2rem 0;
    border-top: 1px solid var(--line);
}
.legal-content h2 {
    margin: 0 0 1rem;
    font: 700 1.45rem/1.2 var(--font-display);
}
.legal-content p { margin: 0 0 1rem; color: #3f3d39; }
.legal-content p:last-child { margin-bottom: 0; }
.legal-content a { color: var(--accent); font-weight: 700; }

.reveal { opacity: 1; transform: none; }

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

@media (max-width: 900px) {
    .container { width: min(calc(100% - 2rem), var(--max)); }
    .menu-toggle { display: block; position: relative; z-index: 3; }
    .main-nav {
        position: fixed; inset: 0; z-index: 2;
        width: 100%;
        min-height: 100dvh;
        background: #fff;
        background-color: #fff;
        display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
        padding: 6rem 2rem 2rem; transform: translateX(100%); transition: transform .3s ease;
        box-shadow: inset 0 1px 0 var(--line);
    }
    .main-nav.open, body.menu-open .main-nav {
        transform: none;
        background: #fff;
        background-color: #fff;
    }
    .main-nav a { font: 500 2rem/1.2 var(--font-display); }
    .legal-nav {
        position: static;
        z-index: auto;
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        gap: 1rem;
        padding: 0;
        transform: none;
        background: transparent;
    }
    .legal-nav a { font: 600 .9rem/1.2 var(--font-body); }
    .nav-cta { border: 0; padding: 0; color: var(--accent); }
    .hero-grid, .agency-grid, .local-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
    .hero-title, .section-heading h2, .agency-copy h2, .method-intro h2, .contact-copy h2, .local-copy h2 {
        letter-spacing: 0;
        line-height: 1;
    }
    .section-heading h2, .agency-copy h2, .method-intro h2, .contact-copy h2, .local-copy h2 {
        font-size: 3.55rem;
    }
    .hero { padding-top: 8rem; }
    .hero-title { font-size: 4.2rem; }
    .hero-visual { min-height: 430px; }
    .hero-visual picture { width: min(108%, 760px); }
    .not-found-grid { grid-template-columns: 1fr; }
    .not-found-visual { min-height: 320px; order: -1; }
    .not-found-visual picture { width: min(96%, 520px); }
    .expertise-grid { grid-template-columns: 1fr; }
    .expertise-card { min-height: 310px; }
    .agency-grid { align-items: start; }
    .agency-stat { justify-self: start; text-align: left; }
    .agency-stat p { margin-inline: 0; }
    .agency-stat strong { font-size: clamp(7rem, 31vw, 13rem); }
    .projects-grid { grid-template-columns: 1fr 1fr; }
    .project-large { grid-column: 1 / -1; grid-row: auto; }
    .method-intro { grid-template-columns: 1fr; row-gap: 2rem; }
    .method-media picture, .method-media p { justify-self: start; }
    .method-media picture { width: min(100%, 620px); }
    .method-list li { grid-template-columns: 50px .8fr 1.2fr; }
}

@media (max-width: 640px) {
    .section { padding: 4rem 0; }
    .expertise-section,
    .agency-section,
    .local-section,
    .projects-section,
    .method-section,
    .testimonial-section,
    .faq-section,
    .contact-section {
        content-visibility: auto;
        contain-intrinsic-size: auto 720px;
    }
    .header-inner { min-height: 72px; }
    .hero { min-height: auto; padding: 7.5rem 0 4rem; }
    .hero-title {
        font-size: 3.15rem;
        letter-spacing: 0;
        line-height: 1.03;
    }
    .section-heading h2, .agency-copy h2, .method-intro h2, .contact-copy h2, .local-copy h2 {
        font-size: 2.45rem;
        letter-spacing: 0;
        line-height: 1.03;
    }
    .eyebrow {
        margin-bottom: 1rem;
        letter-spacing: .11em;
    }
    .hero-lead { font-size: 1rem; margin-top: 1.5rem; }
    .button-group { gap: .85rem; margin-top: 2rem; }
    .hero-visual { min-height: 320px; }
    .hero-visual picture { width: min(118%, 560px); }
    .not-found { padding: 7.5rem 0 4rem; }
    .not-found-content h1 { font-size: 7.2rem; }
    .not-found-lead { font-size: 1rem; margin-top: 1.4rem; }
    .not-found-visual { min-height: 250px; }
    .local-grid, .faq-grid, .contact-grid { gap: 2.25rem; }
    .local-list { margin-top: 2rem; }
    .method-media { gap: 1.2rem; }
    .method-media p { font-size: 1rem; }
    .agency-stat strong {
        font-size: 7rem;
        letter-spacing: 0;
    }
    .heading-row { grid-template-columns: 1fr; gap: 1.5rem; }
    .projects-grid { grid-template-columns: 1fr; }
    .project-large { grid-column: auto; }
    .testimonial blockquote {
        font-size: 1.7rem;
        letter-spacing: 0;
    }
    .method-list li { grid-template-columns: 42px 1fr; gap: 1rem; }
    .method-list p { grid-column: 2; }
    .faq-item summary { grid-template-columns: 2.4rem 1fr 1.6rem; gap: .75rem; }
    .faq-item p { margin-left: 3.15rem; }
    .field-row { grid-template-columns: 1fr; gap: 0; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-inner > p { justify-self: start; text-align: left; }
    .social-links { justify-content: flex-start; }
}

@media (max-width: 420px) {
    .container { width: min(calc(100% - 1.5rem), var(--max)); }
    .hero-title { font-size: 2.72rem; }
    .section-heading h2, .agency-copy h2, .method-intro h2, .contact-copy h2, .local-copy h2 {
        font-size: 2.05rem;
    }
    .main-nav a { font-size: 1.7rem; }
    .button { width: 100%; padding-inline: 1rem; }
    .button-text { justify-content: flex-start; width: auto; }
    .hero-visual { min-height: 260px; }
    .faq-item summary {
        grid-template-columns: 2rem 1fr 1.4rem;
        font-size: 1.08rem;
    }
    .faq-item p { margin-left: 2.75rem; }
}
