/* Formlinecoach Architects — architecture & engineering studio.
   Concept: raw concrete authority meets white space precision.
   Archivo display headings (geometric, structural) + Inter body.
   Monochrome palette with a single warm-concrete accent line.
   Full-bleed overlay hero; wide editorial stats band; sharp right-angle cards. */

:root {
    /* Palette — concrete grey + white + charcoal ink */
    --bg: #f5f4f2;
    --surface: #ffffff;
    --ink: #1a1a18;
    --muted: #6b6b66;
    --primary: #1a1a18;
    --primary-ink: #ffffff;
    --accent: #c8b89a; /* warm concrete / sandstone */
    --accent-dark: #8a7560; /* deeper tone for text on light bg */
    --border: #deded8;
    --concrete: #e8e6e1; /* section alt background */

    /* Typography */
    --font-head: "Archivo", system-ui, sans-serif;
    --font-body: "Inter", system-ui, sans-serif;
    --h1: clamp(3rem, 6.6vw, 5.2rem);
    --h2: clamp(2rem, 3.8vw, 3.2rem);
    --h3: 1.5rem;

    /* Layout */
    --radius: 2px; /* ultra-minimal — almost square */
    --radius-md: 6px;
    --shadow: 0 4px 24px -8px rgba(26, 26, 24, 0.18);
    --shadow-lg: 0 16px 48px -16px rgba(26, 26, 24, 0.28);
    --maxw: 1360px;
    --pad: clamp(1.1rem, 4vw, 3rem);
}

/* Reset & base */
*,
*::before,
*::after {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 18.5px;
    line-height: 1.72;
    -webkit-font-smoothing: antialiased;
}
.nav-lock {
    overflow: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-head);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.025em;
}
h1 {
    font-size: var(--h1);
    margin: 0 0 0.45em;
}
h2 {
    font-size: var(--h2);
    margin: 0 0 0.55em;
}
h3 {
    font-size: var(--h3);
    margin: 0 0 0.4em;
    font-weight: 600;
}
h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}
p {
    margin: 0 0 1rem;
}
a {
    color: inherit;
}
img {
    max-width: 100%;
    display: block;
}
ul {
    padding-left: 1.2rem;
}

/* Utility */
.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--pad);
}
.section {
    padding: clamp(4.5rem, 10vw, 9rem) 0;
}
.section--alt {
    background: var(--concrete);
    border-block: 1px solid var(--border);
}
.eyebrow {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent-dark);
    margin: 0 0 1rem;
    font-family: var(--font-body);
}
.lead {
    font-size: 1.32rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 60ch;
}
.center {
    text-align: center;
    margin-inline: auto;
}

/* Focus visible */
:focus-visible {
    outline: 2px solid var(--accent-dark);
    outline-offset: 3px;
}

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.7rem;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-decoration: none;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition:
        background 0.18s,
        color 0.18s,
        border-color 0.18s,
        transform 0.15s;
}
.btn:hover {
    transform: translateY(-1px);
}
.btn--primary {
    background: var(--primary);
    color: var(--primary-ink);
    border-color: var(--primary);
}
.btn--primary:hover {
    background: #333330;
    border-color: #333330;
}
.btn--ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}
.btn--ghost:hover {
    background: var(--ink);
    color: #fff;
}
.btn--ghost-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
}
.btn--ghost-light:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
}

/* ─── HEADER / NAV ───────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: color-mix(in srgb, var(--bg) 90%, transparent);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}
.brand {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.03em;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ink);
}
.brand .mark {
    width: 22px;
    height: 22px;
    background: var(--ink);
    display: inline-block;
    clip-path: polygon(0 100%, 0 40%, 50% 0, 100% 40%, 100% 100%);
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-menu a {
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--muted);
    letter-spacing: 0.01em;
    transition: color 0.15s;
}
.nav-menu a:hover {
    color: var(--ink);
}
.nav-menu .btn {
    color: var(--primary-ink);
    padding: 0.6rem 1.2rem;
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    width: 26px;
    height: 2px;
    background: var(--ink);
    transition: 0.25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ─── HERO — full-bleed overlay image ────────────────── */
.hero {
    position: relative;
    min-height: clamp(600px, 88vh, 960px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: -22% 0 -22% 0; /* extra height so parallax shift never reveals an edge */
    will-change: transform;
}
.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(26, 26, 24, 0.88) 0%,
        rgba(26, 26, 24, 0.72) 55%,
        rgba(26, 26, 24, 0.18) 100%
    );
}
.hero__content {
    position: relative;
    z-index: 2;
    padding: clamp(3rem, 8vw, 6rem) var(--pad);
    max-width: var(--maxw);
    margin: 0 auto;
    width: 100%;
    padding-bottom: clamp(3.5rem, 8vw, 6rem);
}
.hero__content .eyebrow {
    color: var(--accent);
}
.hero__content h1 {
    color: #fff;
    max-width: 14ch;
    line-height: 1;
}
.hero__content .lead {
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 2rem;
    max-width: 48ch;
}
.hero__cta {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
}
.hero__rule {
    display: block;
    width: 48px;
    height: 3px;
    background: var(--accent);
    margin: 1.2rem 0 1.8rem;
}

/* ─── STATS BAND ─────────────────────────────────────── */
.stats-band {
    background: var(--ink);
    color: #fff;
    padding: clamp(2.5rem, 6vw, 4rem) 0;
}
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}
.stat {
    padding: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.stat:first-child {
    border-left: 0;
}
.stat__value {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.03em;
    line-height: 1;
    display: block;
}
.stat__label {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
    margin-top: 0.4rem;
    display: block;
}

/* ─── GRIDS ───────────────────────────────────────────── */
.grid {
    display: grid;
    gap: 1.5rem;
}
.grid--3 {
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}
.grid--2 {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
}
.grid--4 {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

/* ─── CARDS ───────────────────────────────────────────── */
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.3rem;
    box-shadow: var(--shadow);
    transition:
        box-shadow 0.2s,
        transform 0.2s;
}
.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}
.card--media {
    padding: 0;
    overflow: hidden;
}
.card--media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.card--media .card__body {
    padding: 1.6rem;
}
.card ul {
    margin: 0.7rem 0 0;
    color: var(--muted);
    font-size: 0.94rem;
}
.card li {
    margin: 0.3rem 0;
}
.tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 0.5rem;
}

/* ─── SPLIT / FEATURE ────────────────────────────────── */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}
.split img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 5/4;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

/* ─── PROCESS STEPS ──────────────────────────────────── */
.steps {
    display: grid;
    gap: 1.4rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.step {
    padding: 1.8rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-top: 3px solid var(--accent);
    position: relative;
}
.step__num {
    font-family: var(--font-head);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--concrete);
    line-height: 1;
    margin-bottom: 0.6rem;
    letter-spacing: -0.04em;
}
.step h3 {
    margin-top: 0;
}

/* ─── TESTIMONIALS ───────────────────────────────────── */
.quote {
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
    padding: 1.8rem;
    box-shadow: var(--shadow);
}
.quote p {
    font-size: 1.03rem;
    font-style: italic;
    color: var(--ink);
    line-height: 1.65;
}
.quote footer {
    margin-top: 1rem;
    font-style: normal;
    font-weight: 700;
    font-size: 0.95rem;
}
.quote footer span {
    display: block;
    font-weight: 400;
    color: var(--muted);
    font-size: 0.88rem;
    margin-top: 0.15rem;
}

/* ─── FAQ ────────────────────────────────────────────── */
.faq details {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.1rem 1.4rem;
    margin-bottom: 0.7rem;
}
.faq summary {
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    padding-right: 2rem;
    position: relative;
}
.faq summary::-webkit-details-marker {
    display: none;
}
.faq summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    color: var(--accent-dark);
    font-size: 1.4rem;
    line-height: 1;
    font-weight: 300;
}
.faq details[open] summary::after {
    content: "−";
}
.faq details p {
    margin-top: 0.8rem;
    color: var(--muted);
}

/* ─── CTA BANNER ─────────────────────────────────────── */
.cta-banner {
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: clamp(3rem, 7vw, 5.5rem) clamp(1.5rem, 5vw, 4rem);
    text-align: center;
    border-radius: var(--radius);
}
.cta-banner__bg {
    position: absolute;
    inset: 0;
}
.cta-banner__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 24, 0.9) 0%,
        rgba(26, 26, 24, 0.75) 100%
    );
    z-index: 1;
}
.cta-banner__inner {
    position: relative;
    z-index: 2;
}
.cta-banner h2 {
    color: #fff;
    max-width: 22ch;
    margin-inline: auto;
}
.cta-banner .lead {
    color: rgba(255, 255, 255, 0.74);
    max-width: 52ch;
    margin-inline: auto;
}
.cta-banner__btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.8rem;
}

/* ─── PAGE HERO (inner pages) ────────────────────────── */
.page-hero {
    background: var(--ink);
    color: #fff;
    padding: clamp(3rem, 7vw, 5.5rem) 0;
    border-bottom: 3px solid var(--accent);
}
.page-hero .eyebrow {
    color: var(--accent);
}
.page-hero h1 {
    color: #fff;
}
.page-hero p {
    color: rgba(255, 255, 255, 0.72);
    max-width: 58ch;
    margin: 0;
}

/* ─── CONTACT ────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}
.field {
    margin-bottom: 1.1rem;
}
.field label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    margin-bottom: 0.4rem;
}
.field input,
.field textarea,
.field select {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font: inherit;
    font-size: 1rem;
    background: var(--surface);
    color: var(--ink);
    transition: border-color 0.15s;
}
.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--ink);
    box-shadow: 0 0 0 2px rgba(26, 26, 24, 0.1);
}
.check {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    font-size: 0.92rem;
    color: var(--muted);
    margin-bottom: 1.2rem;
}
.check input {
    margin-top: 0.22rem;
    flex-shrink: 0;
}
.form-note {
    margin-top: 0.7rem;
    font-size: 0.9rem;
    min-height: 1.3em;
}
.form-note.error {
    color: #c0392b;
}
.form-note.ok {
    color: #1d7a44;
}
.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.info-list li {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
}
.info-list strong {
    display: block;
    color: var(--accent-dark);
    font-size: 0.73rem;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    margin-bottom: 0.15rem;
}
.map-box {
    margin-top: 1.2rem;
    height: 200px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: repeating-linear-gradient(
        45deg,
        var(--concrete),
        var(--concrete) 14px,
        #dfddd8 14px,
        #dfddd8 28px
    );
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 0.9rem;
}

/* ─── LEGAL PAGES ────────────────────────────────────── */
.legal {
    max-width: 760px;
    margin: 0 auto;
}
.legal h2 {
    margin-top: 2.2rem;
    font-size: 1.4rem;
}
.legal h3 {
    margin-top: 1.6rem;
    font-size: 1.1rem;
}
.legal ul {
    color: var(--muted);
    margin: 0.6rem 0 1rem;
}
.legal .updated {
    color: var(--muted);
    font-size: 0.88rem;
    margin-bottom: 2rem;
    display: block;
}

/* ─── FOOTER ─────────────────────────────────────────── */
.site-footer {
    background: var(--ink);
    color: #a8a8a0;
    padding: 4rem 0 1.8rem;
    margin-top: 0;
}
.site-footer a {
    color: #a8a8a0;
    text-decoration: none;
    transition: color 0.15s;
}
.site-footer a:hover {
    color: #fff;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}
.site-footer .brand {
    color: #fff;
    margin-bottom: 0.8rem;
}
.site-footer .brand .mark {
    background: var(--accent);
}
.footer-grid h4 {
    color: #fff;
    font-family: var(--font-head);
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 1rem;
}
.footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-grid li {
    margin: 0.5rem 0;
    font-size: 0.94rem;
}
.footer-desc {
    font-size: 0.93rem;
    line-height: 1.65;
    max-width: 34ch;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.4rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.8rem;
    font-size: 0.86rem;
    color: #6b6b60;
}

/* ─── COOKIE BANNER ──────────────────────────────────── */
.cookie {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 80;
    background: var(--ink);
    color: #e8e6e1;
    border-radius: var(--radius-md);
    padding: 1.2rem 1.5rem;
    box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.7);
    display: flex;
    gap: 1.2rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}
.cookie p {
    margin: 0;
    font-size: 0.91rem;
}
.cookie a {
    color: var(--accent);
    text-decoration: underline;
}
.cookie__btns {
    display: flex;
    gap: 0.7rem;
    flex-shrink: 0;
}
.cookie .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.88rem;
}

/* ─── VALUES GRID ────────────────────────────────────── */
.values-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.value-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 2rem 1.8rem;
    position: relative;
}
.value-card::before {
    content: "";
    display: block;
    width: 32px;
    height: 3px;
    background: var(--accent);
    margin-bottom: 1.2rem;
}
.value-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
}
.value-card p {
    color: var(--muted);
    margin: 0;
    font-size: 0.95rem;
}

/* ─── ABOUT FEATURE ──────────────────────────────────── */
.about-feature {
    position: relative;
    overflow: hidden;
    background: var(--ink);
    color: #fff;
    padding: clamp(2.5rem, 6vw, 5rem);
    margin-top: clamp(2rem, 5vw, 4rem);
}
.about-feature img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}
.about-feature__inner {
    position: relative;
    z-index: 1;
    max-width: 60ch;
}
.about-feature h2 {
    color: #fff;
}
.about-feature p {
    color: rgba(255, 255, 255, 0.72);
}

/* ─── WHY US ─────────────────────────────────────────── */
.why-grid {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    border: 1px solid var(--border);
}
.why-item {
    padding: 2rem 1.8rem;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.why-item:last-child {
    border-right: 0;
}
.why-item h3 {
    margin-bottom: 0.4rem;
}
.why-item p {
    color: var(--muted);
    margin: 0;
    font-size: 0.95rem;
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        inset: 65px 0 auto 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
        background: var(--surface);
        border-bottom: 1px solid var(--border);
        padding: 1.2rem var(--pad);
        transform: translateY(-130%);
        transition: transform 0.3s ease;
        box-shadow: var(--shadow-lg);
    }
    .nav-menu.is-open {
        transform: translateY(0);
    }
    .nav-menu li {
        width: 100%;
    }
    .nav-menu a {
        display: block;
        padding: 0.6rem 0;
        width: 100%;
    }
    .nav-menu .btn {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }
    .hero {
        min-height: 70vh;
    }
    .hero__overlay {
        background: linear-gradient(
            to bottom,
            rgba(26, 26, 24, 0.72) 0%,
            rgba(26, 26, 24, 0.82) 100%
        );
    }
    .split {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
    }
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .hero__content h1 {
        font-size: clamp(2rem, 9vw, 2.8rem);
    }
}
@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        scroll-behavior: auto;
    }
}

/* === QA pass: consent checkbox + form row normalization === */
.field.check {
    display: flex !important;
    gap: 0.6rem;
    align-items: flex-start;
    flex-wrap: nowrap;
}
.field.check input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px;
    max-width: 18px;
    flex: 0 0 18px;
    margin: 0.18rem 0 0 0;
    padding: 0;
    box-sizing: border-box;
}
.field.check label {
    margin: 0;
    font-weight: 400;
    line-height: 1.5;
    flex: 1 1 auto;
}

/* ============================================================
   enrichment sections
   All new rules use existing :root tokens only.
   ============================================================ */

/* ─── SECTORS WE SERVE ─────────────────────────────────────── */
.sector-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.8rem;
    box-shadow: var(--shadow);
    transition:
        box-shadow 0.2s,
        transform 0.2s;
    display: flex;
    flex-direction: column;
}
.sector-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}
.sector-card__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    background: var(--ink);
    color: var(--accent);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    flex-shrink: 0;
}
.sector-card h3 {
    margin-bottom: 0.4rem;
}
.sector-card p {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    flex: 1;
}
.sector-card__tags {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.sector-card__tags li {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--concrete);
    color: var(--accent-dark);
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius);
    margin: 0;
}

/* ─── CASE RESULTS ─────────────────────────────────────────── */
.case-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 2rem 1.6rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition:
        box-shadow 0.2s,
        transform 0.2s;
}
.case-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}
.case-card__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}
.case-card__year {
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 0.04em;
}
.case-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}
.case-card p {
    color: var(--muted);
    font-size: 0.95rem;
    flex: 1;
    margin-bottom: 1.4rem;
}
.case-card__metric {
    border-top: 1px solid var(--border);
    padding-top: 1.1rem;
    display: flex;
    align-items: baseline;
    gap: 0.7rem;
}
.case-card__num {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-dark);
    letter-spacing: -0.04em;
    line-height: 1;
    white-space: nowrap;
}
.case-card__mdesc {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.5;
}

/* ─── TEAM CARDS ───────────────────────────────────────────── */
.team-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.6rem 1.8rem;
    box-shadow: var(--shadow);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.team-card__avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--avatar-bg, var(--ink));
    color: var(--accent);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    flex-shrink: 0;
}
.team-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.15rem;
}
.team-card__role {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent-dark);
    margin-bottom: 0.75rem;
}
.team-card p {
    color: var(--muted);
    font-size: 0.93rem;
    line-height: 1.55;
    margin: 0;
}

/* ─── GUARANTEES ───────────────────────────────────────────── */
.guarantee-grid {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.guarantee-item {
    padding: 2.6rem 2.3rem;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
}
.guarantee-item__num {
    font-family: var(--font-head);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--concrete);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.06em;
}
.guarantee-item h3 {
    font-size: 1.22rem;
    margin-bottom: 0.5rem;
}
.guarantee-item p {
    color: var(--muted);
    font-size: 1.02rem;
    margin: 0;
}

/* ─── CERTIFICATIONS ───────────────────────────────────────── */
.cert-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}
.cert-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.1rem 1.4rem;
    box-shadow: var(--shadow);
}
.cert-badge__abbr {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    background: var(--ink);
    color: var(--accent);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.1;
}
.cert-badge__body strong {
    display: block;
    font-size: 0.93rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: 0.1rem;
}
.cert-badge__body span {
    font-size: 0.82rem;
    color: var(--muted);
}

/* ─── COVERAGE / SERVICE AREAS ─────────────────────────────── */
.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.coverage-region {
    background: var(--surface);
    border: 1px solid var(--border);
    border-top: 3px solid var(--accent);
    border-radius: var(--radius);
    padding: 1.8rem;
    box-shadow: var(--shadow);
}
.coverage-region h4 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}
.coverage-region p {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 0.9rem;
}
.coverage-region ul {
    padding-left: 1.1rem;
    margin: 0;
}
.coverage-region li {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0.3rem 0;
}

/* ─── INSIGHTS / NEWS ──────────────────────────────────────── */
.insight-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.8rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition:
        box-shadow 0.2s,
        transform 0.2s;
}
.insight-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}
.insight-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.8rem;
}
.insight-card__meta time {
    font-size: 0.8rem;
    color: var(--muted);
    letter-spacing: 0.02em;
}
.insight-card h3 {
    font-size: 1.08rem;
    margin-bottom: 0.6rem;
    line-height: 1.3;
}
.insight-card p {
    color: var(--muted);
    font-size: 0.93rem;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1.2rem;
}
.insight-card__link {
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--accent-dark);
    text-decoration: none;
    transition: color 0.15s;
    align-self: flex-start;
}
.insight-card__link:hover {
    color: var(--ink);
}

/* ─── MILESTONES TIMELINE ──────────────────────────────────── */
.timeline {
    position: relative;
    max-width: 780px;
    margin: 0 auto;
}
.timeline::before {
    content: "";
    position: absolute;
    left: 90px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}
.timeline-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 0 2rem;
    margin-bottom: 2.2rem;
    position: relative;
}
.timeline-item:last-child {
    margin-bottom: 0;
}
.timeline-item__year {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--accent-dark);
    letter-spacing: 0.03em;
    text-align: right;
    padding-top: 0.1rem;
    padding-right: 1.5rem;
    position: relative;
}
.timeline-item__year::after {
    content: "";
    position: absolute;
    right: -7px;
    top: 0.45rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    border: 2px solid var(--surface);
    box-shadow: 0 0 0 2px var(--accent);
}
.timeline-item__body {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.2rem 1.5rem;
    box-shadow: var(--shadow);
}
.timeline-item__body h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}
.timeline-item__body p {
    color: var(--muted);
    font-size: 0.93rem;
    margin: 0;
    line-height: 1.6;
}

/* ─── CSR CARDS ────────────────────────────────────────────── */
.csr-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.8rem;
    box-shadow: var(--shadow);
}
.csr-card__icon {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 0.9rem;
    display: block;
}
.csr-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.csr-card p {
    color: var(--muted);
    font-size: 0.93rem;
    line-height: 1.6;
    margin: 0;
}

/* ─── RESPONSIVE ADDITIONS ─────────────────────────────────── */
@media (max-width: 900px) {
    .guarantee-grid {
        grid-template-columns: 1fr 1fr;
    }
    .cert-strip {
        grid-template-columns: 1fr 1fr;
    }
    .timeline::before {
        left: 76px;
    }
}
@media (max-width: 640px) {
    .case-card__head {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    .guarantee-grid {
        grid-template-columns: 1fr;
    }
    .cert-strip {
        grid-template-columns: 1fr;
    }
    .timeline::before {
        display: none;
    }
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }
    .timeline-item__year {
        text-align: left;
        padding-right: 0;
        font-size: 0.8rem;
    }
    .timeline-item__year::after {
        display: none;
    }
    .coverage-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .sector-card__icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    .team-card__avatar {
        width: 56px;
        height: 56px;
        font-size: 1rem;
    }
    .case-card__num {
        font-size: 1.6rem;
    }
}

/* === QA pass 2: contain negative-z overlays so light text never falls on a light bg === */
.cta-banner {
    isolation: isolate;
    position: relative;
}
.hero {
    isolation: isolate;
}
.page-hero {
    isolation: isolate;
}
.hero__media,
.hero-media {
    isolation: isolate;
}

/* polish: depth */

/* Hero — stronger two-stop directional overlay for left-panel legibility */
.hero__overlay {
    background: linear-gradient(
        105deg,
        rgba(26, 26, 24, 0.92) 0%,
        rgba(26, 26, 24, 0.68) 52%,
        rgba(26, 26, 24, 0.14) 100%
    );
}

/* Stats band — faint radial glow from centre so pure-black band has warmth */
.stats-band {
    background:
        radial-gradient(
            ellipse 70% 160% at 50% 50%,
            rgba(200, 184, 154, 0.07) 0%,
            transparent 70%
        ),
        var(--ink);
}

/* Section default (white bg) — barely-visible warm tint wash */
.section:not(.section--alt) {
    background: linear-gradient(180deg, var(--bg) 0%, #f8f7f5 100%);
}

/* Section alt (concrete bg) — subtle top-edge glow so it reads as intentional */
.section--alt {
    background:
        radial-gradient(
            ellipse 80% 60% at 50% 0%,
            rgba(200, 184, 154, 0.1) 0%,
            transparent 60%
        ),
        var(--concrete);
}

/* Process steps section — add a faint diagonal grain via repeating gradient */
.steps {
    position: relative;
}
.steps::before {
    content: "";
    position: absolute;
    inset: -3rem -2rem;
    background: repeating-linear-gradient(
        -55deg,
        transparent,
        transparent 38px,
        rgba(200, 184, 154, 0.035) 38px,
        rgba(200, 184, 154, 0.035) 39px
    );
    pointer-events: none;
    z-index: 0;
}
.step {
    position: relative;
    z-index: 1;
}

/* Page hero (inner pages) — two-stop gradient for depth */
.page-hero {
    background: linear-gradient(135deg, #1a1a18 0%, #2a2a26 100%);
    border-bottom: 3px solid var(--accent);
}

/* Why-us grid — faint background tint */
.why-grid {
    background: linear-gradient(135deg, var(--surface) 0%, #f9f8f6 100%);
}

/* FAQ section items — slight inner shadow to separate from bg */
.faq details {
    box-shadow: 0 1px 6px -2px rgba(26, 26, 24, 0.07);
}

/* Certifications strip — each badge gains a warm left-border accent */
.cert-badge {
    border-left: 3px solid var(--accent);
}

/* Service cards equal-height: make all card--media in the services grid stretch */
#services .grid {
    align-items: stretch;
}
#services .card--media {
    display: flex;
    flex-direction: column;
}
#services .card--media .card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
}
#services .card--media .card__body ul {
    margin-top: auto;
    padding-top: 0.5rem;
}

/* === QA pass 3: hidden-attr must win so cookie banner truly dismisses === */
[hidden] {
    display: none !important;
}

/* === Section variant: SVL (services editorial numbered list) === */
.svl {
    display: grid;
    gap: 0;
}
.svl__row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.2rem;
    padding: 2.3rem 0;
    border-bottom: 1px solid var(--border);
    align-items: baseline;
}
.svl__row:first-child {
    border-top: 1px solid var(--border);
}
.svl__n {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}
.svl__body h3 {
    margin: 0 0 0.5rem;
    color: var(--ink);
}
.svl__body p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
    max-width: 64ch;
    font-size: 1.05rem;
}
@media (max-width: 640px) {
    .svl__row {
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }
}

/* === Section variant: RV1 (results oversized metric band) === */
.rv1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
    text-align: center;
}
.rv1__item {
    padding: 1rem;
    border-left: 2px solid var(--border);
}
.rv1__item:first-child {
    border-left: 0;
}
.rv1__item strong {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--accent);
    line-height: 1;
}
.rv1__item span {
    display: block;
    margin-top: 0.6rem;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.4;
}
@media (max-width: 760px) {
    .rv1__item {
        border-left: 0;
    }
}

/* === Section variant: PV2 (process vertical left-rail timeline) === */
.pv2 {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 48rem;
    position: relative;
}
.pv2__step {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.2rem;
    padding: 0 0 2rem 0;
}
.pv2__step::before {
    content: "";
    position: absolute;
    left: 1.05rem;
    top: 2.2rem;
    bottom: 0;
    width: 2px;
    background: var(--border);
}
.pv2__step:last-child::before {
    display: none;
}
.pv2__n {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--accent);
    color: var(--bg);
    font-weight: 800;
    position: relative;
    z-index: 1;
}
.pv2__step h3 {
    margin: 0.2rem 0 0.3rem;
    color: var(--ink);
}
.pv2__step p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

/* === Section variant: TV3 (testimonials horizontal scroll row) === */
.tv3 {
    display: flex;
    gap: 1.2rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
}
.tv3__card {
    flex: 0 0 min(320px, 80%);
    scroll-snap-align: start;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.6rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}
.tv3__card p {
    color: var(--ink);
    margin: 0 0 1rem;
    line-height: 1.55;
}
.tv3__card span {
    color: var(--accent);
    font-weight: 700;
}

/* === uniq-layout-system START === */
w:1360,
h:airy,
s:twocol,
n:border,
f:brandright,
c:flat */ :root {
    --maxw: 1360px;
}
.section {
    padding: clamp(4.5rem, 10vw, 9rem) 0;
}
.section .center {
    text-align: left;
    margin-inline: 0;
}
.section h2.center {
    font-size: clamp(2.1rem, 4.2vw, 3.2rem);
}
.section .eyebrow.center {
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 0.2em;
}
.section .lead.center {
    max-width: 60ch;
}
.site-header {
    border-top: 4px solid var(--accent);
}
.nav {
    padding: 1.05rem 0;
}
.card {
    box-shadow: none;
    border-radius: 6px;
}
#services .grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1.5rem;
}
#services .card {
    border-left: 4px solid var(--accent);
}
#services .card > img {
    aspect-ratio: 16/9;
    object-fit: cover;
    width: 100%;
}
@media (max-width: 680px) {
    #services .grid {
        grid-template-columns: 1fr !important;
    }
}
.footer-grid {
    grid-template-columns: 1fr 1fr 1.7fr;
    gap: 2.5rem;
}
.footer-grid > :first-child {
    order: 3;
}
@media (max-width: 760px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: left !important;
    }
    .footer-grid > :first-child {
        grid-column: auto;
        order: 0;
    }
}

/* ─── FEATURED PROJECTS GALLERY (replaces Why-us) ──────── */
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.6rem;
}
.work-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--ink);
    text-decoration: none;
    border: 1px solid var(--border);
    aspect-ratio: 4/3;
}
.work-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1),
        filter 0.5s;
    filter: saturate(0.92) brightness(0.92);
}
.work-card:hover img {
    transform: scale(1.06);
    filter: saturate(1) brightness(1);
}
.work-card__veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(26, 26, 24, 0.9) 0%,
        rgba(26, 26, 24, 0.35) 45%,
        rgba(26, 26, 24, 0) 75%
    );
}
.work-card__body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 1.9rem;
}
.work-card__cat {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}
.work-card__body h3 {
    color: #fff;
    margin: 0 0 0.25rem;
    font-size: 1.5rem;
}
.work-card__body p {
    color: rgba(255, 255, 255, 0.74);
    margin: 0;
    font-size: 1rem;
}
.work-card__body p strong {
    color: var(--accent);
    font-weight: 700;
}

/* ─── REVIEWS SWIPER (carousel) ────────────────────────── */
.rsw {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
}
.rsw__viewport {
    overflow: hidden;
}
.rsw__track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    touch-action: pan-y;
}
.rsw__slide {
    flex: 0 0 100%;
    min-width: 0;
    padding: 0 0.2rem;
    box-sizing: border-box;
}
.rsw__quote {
    background: var(--surface);
    border: 1px solid var(--border);
    border-top: 4px solid var(--accent);
    border-radius: var(--radius);
    padding: clamp(2rem, 5vw, 3.4rem);
    box-shadow: var(--shadow);
    text-align: center;
}
.rsw__mark {
    font-family: var(--font-head);
    font-size: 4.5rem;
    line-height: 0.6;
    color: var(--accent);
    display: block;
    margin-bottom: 0.6rem;
}
.rsw__quote blockquote {
    margin: 0 0 1.6rem;
    border: 0;
    padding: 0;
    font-size: clamp(1.25rem, 2.4vw, 1.7rem);
    line-height: 1.5;
    color: var(--ink);
    font-weight: 500;
}
.rsw__who {
    display: block;
}
.rsw__name {
    display: block;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--ink);
}
.rsw__role {
    display: block;
    color: var(--muted);
    font-size: 0.98rem;
    margin-top: 0.2rem;
}
.rsw__rating {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    margin-bottom: 1.3rem;
}
.rsw__rating i {
    width: 0.7rem;
    height: 0.7rem;
    background: var(--accent);
    transform: rotate(45deg);
    display: block;
}
.rsw__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.4rem;
    margin-top: 2rem;
}
.rsw__btn {
    width: 3.2rem;
    height: 3.2rem;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--ink);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    transition:
        background 0.18s,
        color 0.18s,
        transform 0.15s;
}
.rsw__btn:hover {
    background: var(--ink);
    color: #fff;
    transform: translateY(-1px);
}
.rsw__dots {
    display: flex;
    gap: 0.55rem;
    align-items: center;
}
.rsw__dot {
    width: 0.62rem;
    height: 0.62rem;
    padding: 0;
    border-radius: 50%;
    border: 0;
    background: var(--border);
    cursor: pointer;
    transition:
        background 0.2s,
        transform 0.2s;
}
.rsw__dot[aria-current="true"] {
    background: var(--accent-dark);
    transform: scale(1.25);
}

/* ─── AWARDS & RECOGNITION (replaces Insights) ─────────── */
.awards {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0;
    border-top: 1px solid var(--border);
}
.awards__row {
    display: grid;
    grid-template-columns: 7rem 1fr auto;
    gap: 2rem;
    align-items: baseline;
    padding: 1.8rem 0;
    border-bottom: 1px solid var(--border);
}
.awards__year {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--accent);
}
.awards__main h3 {
    margin: 0 0 0.25rem;
    font-size: 1.35rem;
}
.awards__main p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
}
.awards__org {
    color: var(--accent-dark);
    font-weight: 600;
    font-size: 0.92rem;
    text-align: right;
    white-space: nowrap;
}
@media (max-width: 680px) {
    .awards__row {
        grid-template-columns: 4.5rem 1fr;
        gap: 1rem;
    }
    .awards__org {
        grid-column: 2;
        text-align: left;
        white-space: normal;
        margin-top: 0.3rem;
    }
}

/* ─── HEADER TOPBAR + BRAND POLISH ─────────────────────── */
.topbar {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 42px;
    padding-block: 0.45rem;
}
.topbar a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    transition: color 0.15s;
}
.topbar a:hover {
    color: var(--accent);
}
.topbar__hours {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #fff;
}
.topbar__dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #8fbf6a;
    box-shadow: 0 0 0 3px rgba(143, 191, 106, 0.22);
}
.topbar__contacts {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}
.topbar__sep {
    color: rgba(255, 255, 255, 0.28);
}
.topbar__loc {
    color: rgba(255, 255, 255, 0.6);
}
/* nav embellishment */
.site-header {
    box-shadow: 0 1px 0 rgba(26, 26, 24, 0.04);
}
.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}
.brand__text small {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-top: 0.18rem;
}
.brand .mark {
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, var(--ink) 60%, var(--accent-dark));
}
.nav-menu a:not(.btn) {
    position: relative;
    padding-block: 0.3rem;
}
.nav-menu a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -0.15rem;
    height: 2px;
    background: var(--accent);
    transition: right 0.25s ease;
}
.nav-menu a:not(.btn):hover::after {
    right: 0;
}
@media (max-width: 900px) {
    .topbar {
        display: none;
    }
    .nav-menu a:not(.btn)::after {
        display: none;
    }
}

/* ─── HERO V2 — meta strip + richer overlay ────────────── */
.hero--v2 {
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
}
.hero--v2 .hero__content {
    margin-top: auto;
    padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
}
.hero--v2 .hero__overlay {
    background:
        linear-gradient(
            to top,
            rgba(26, 26, 24, 0.9) 0%,
            rgba(26, 26, 24, 0.45) 38%,
            rgba(26, 26, 24, 0.12) 70%
        ),
        linear-gradient(
            to right,
            rgba(26, 26, 24, 0.75) 0%,
            rgba(26, 26, 24, 0.15) 60%
        );
}
.hero__meta {
    position: relative;
    z-index: 2;
    width: 100%;
    background: rgba(20, 20, 18, 0.55);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.hero__meta-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    padding: 0;
}
.hero__fact {
    padding: 1.4rem clamp(0.6rem, 2vw, 1.4rem);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.hero__fact:first-child {
    border-left: 0;
}
.hero__fact strong {
    display: block;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff;
    letter-spacing: -0.02em;
}
.hero__fact span {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-top: 0.2rem;
}
@media (max-width: 760px) {
    .hero__meta-inner {
        grid-template-columns: 1fr 1fr;
    }
    .hero__fact:nth-child(odd) {
        border-left: 0;
    }
    .hero__fact:nth-child(n + 3) {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* ─── FAQ SWIPER VARIANT ───────────────────────────────── */
.rsw--faq {
    max-width: 840px;
}
.rsw__faq {
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
    padding: clamp(2rem, 5vw, 3.2rem);
    box-shadow: var(--shadow);
    min-height: 240px;
}
.rsw__faq-n {
    display: inline-block;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: var(--accent-dark);
    background: var(--concrete);
    border-radius: var(--radius);
    padding: 0.25rem 0.6rem;
    margin-bottom: 1.1rem;
}
.rsw__faq h3 {
    font-size: clamp(1.3rem, 2.4vw, 1.7rem);
    margin: 0 0 0.9rem;
    color: var(--ink);
}
.rsw__faq p {
    margin: 0;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.65;
}

/* ─── RICH FOOTER ──────────────────────────────────────── */
.footer-grid {
    grid-template-columns: 1.7fr 1fr 1.15fr 1fr 1.4fr !important;
    gap: 2.6rem;
    align-items: start;
}
.footer-grid > :first-child {
    order: 0 !important;
}
.footer-desc {
    max-width: 38ch;
}
.footer-badges {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.footer-badges li {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid rgba(200, 184, 154, 0.35);
    border-radius: var(--radius);
    padding: 0.3rem 0.6rem;
    margin: 0;
}
.footer-contact__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact__list li {
    display: block;
    margin: 0 0 0.9rem;
    font-size: 0.94rem;
    line-height: 1.5;
}
.footer-contact__list li span {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #6b6b60;
    margin-bottom: 0.15rem;
}
.footer-contact__cta {
    margin-top: 0.4rem;
    background: var(--accent);
    border-color: var(--accent);
    color: var(--ink);
}
.footer-contact__cta:hover {
    background: #d8cbb2;
    border-color: #d8cbb2;
    color: var(--ink);
}
.footer-bottom span:last-child {
    color: #6b6b60;
}
@media (max-width: 1040px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr !important;
    }
    .footer-about,
    .footer-contact {
        grid-column: span 3;
    }
    .footer-contact {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 1.6rem;
        margin-top: 0.4rem;
    }
}
@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
    }
    .footer-about,
    .footer-contact {
        grid-column: span 2;
    }
}
@media (max-width: 440px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
    }
    .footer-about,
    .footer-contact {
        grid-column: auto;
    }
}
/* === uniq-layout-system END === */
