:root {
    --ink: #102022;
    --ink-soft: #26383b;
    --muted: #607372;
    --line: #dbe8e6;
    --surface: #ffffff;
    --surface-2: #f8fbfb;
    --surface-3: #edf6f7;
    --teal: #20c6b8;
    --teal-dark: #117e76;
    --amber: #f2bd55;
    --coral: #ff7f6e;
    --shadow: 0 18px 45px rgba(16, 32, 34, .10);
    --radius: 8px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--surface-2);
    color: var(--ink);
    font-family: Outfit, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

body.age-locked {
    overflow: hidden;
}

[hidden] {
    display: none !important;
}

html.age-denied-pre body {
    background: #102022;
}

html.age-denied-pre body > :not(.age-gate):not(script),
body.age-denied > :not(.age-gate):not(script) {
    display: none !important;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 28px;
    align-items: center;
    width: min(var(--max), calc(100% - 32px));
    margin: 16px auto 0;
    padding: 12px 14px;
    border: 1px solid rgba(219, 232, 230, .86);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 14px 38px rgba(16, 32, 34, .08);
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    font-weight: 800;
    letter-spacing: 0;
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius);
    background: var(--ink);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.site-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.site-nav a {
    padding: 9px 13px;
    border-radius: var(--radius);
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    transition: color .2s ease, background .2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    background: var(--surface-3);
    color: var(--ink);
}

.language-control {
    display: flex;
    gap: 8px;
    align-items: center;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.language-control select {
    min-width: 124px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--ink);
    padding: 0 10px;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--ink);
}

.section,
.page-hero {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
}

.section {
    padding: clamp(72px, 7vw, 116px) 0;
}

.section-compact {
    padding-top: clamp(54px, 5vw, 82px);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
    gap: clamp(30px, 6vw, 72px);
    align-items: center;
    min-height: clamp(620px, 76vh, 780px);
    padding-top: clamp(38px, 5vw, 72px);
}

.hero-copy h1,
.page-hero h1 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.02;
    letter-spacing: 0;
}

.hero-copy p,
.page-hero p,
.section-heading p,
.lead {
    color: var(--muted);
    font-size: clamp(17px, 2vw, 20px);
}

.hero-copy p {
    max-width: 620px;
    margin: 24px 0 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--ink);
    color: #fff;
    box-shadow: 0 12px 28px rgba(16, 32, 34, .18);
}

.btn-primary:hover {
    background: #172d30;
    box-shadow: 0 18px 34px rgba(16, 32, 34, .22);
}

.btn-secondary {
    border-color: var(--line);
    background: #fff;
    color: var(--ink);
}

.btn-secondary:hover,
.btn-ghost:hover {
    border-color: var(--teal);
}

.btn-ghost {
    border-color: rgba(255, 255, 255, .3);
    color: #fff;
    background: rgba(255, 255, 255, .08);
}

.btn-full {
    width: 100%;
}

.hero-media {
    position: relative;
}

.hero-media::before {
    content: "";
    position: absolute;
    inset: 12% -4% -5% 10%;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(32, 198, 184, .22), rgba(242, 189, 85, .18));
    filter: blur(36px);
    z-index: -1;
}

.hero-media img {
    width: 100%;
    aspect-ratio: 1.2 / 1;
    object-fit: cover;
    object-position: right center;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.page-hero {
    padding: clamp(84px, 10vw, 138px) 0 clamp(20px, 4vw, 48px);
    text-align: center;
}

.page-hero div {
    max-width: 780px;
    margin-inline: auto;
}

.section-heading {
    display: grid;
    gap: 12px;
    max-width: 760px;
    margin: 0 auto 32px;
    text-align: center;
}

.section-heading h2,
.hours-card h2,
.final-cta h2,
.detail-copy h1,
.thank-you h2 {
    margin: 0;
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1.08;
    letter-spacing: 0;
}

.page-hero h1 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
}

.page-hero p {
    max-width: 680px;
    margin-inline: auto;
}

.section-heading p {
    margin: 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.product-card,
.info-card,
.testimonial-card,
.about-panel,
.order-summary,
.contact-form,
.contact-hours,
.thank-you,
.empty-state {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 14px 36px rgba(16, 32, 34, .07);
}

.product-card {
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(32, 198, 184, .55);
    box-shadow: var(--shadow);
}

.product-image-link {
    display: block;
    background: var(--surface-3);
}

.product-image-link img {
    width: 100%;
    aspect-ratio: 1.2 / .86;
    object-fit: cover;
}

.product-card-body {
    padding: 20px;
}

.product-card h3,
.info-card h3,
.testimonial-card strong {
    margin: 0;
    font-size: 21px;
    line-height: 1.2;
}

.product-card p,
.info-card p,
.testimonial-card p,
.about-panel p,
.final-cta p,
.hours-card p {
    color: var(--muted);
}

.product-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin: 18px 0;
}

.product-card-meta strong,
.detail-price {
    color: var(--teal-dark);
    font-size: 26px;
    font-weight: 900;
}

.product-card-meta span,
.detail-price span,
.detail-label {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.quality-section {
    position: relative;
}

.quality-table {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}

.quality-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr .8fr;
    gap: 16px;
    align-items: center;
    padding: 18px 22px;
    border-top: 1px solid var(--line);
}

.quality-row:first-child {
    border-top: 0;
}

.quality-head {
    background: var(--ink);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.quality-row em {
    justify-self: start;
    padding: 7px 10px;
    border-radius: var(--radius);
    background: #e9f8f6;
    color: var(--teal-dark);
    font-style: normal;
    font-weight: 900;
}

.quality-note {
    margin-top: 18px;
    color: var(--muted);
}

.info-grid,
.testimonial-grid,
.about-page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.testimonial-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.testimonial-card,
.about-panel {
    padding: 24px;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.info-card:hover,
.testimonial-card:hover,
.about-panel:hover {
    transform: translateY(-4px);
    border-color: rgba(32, 198, 184, .55);
    box-shadow: var(--shadow);
}

.line-icon {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    border-radius: var(--radius);
    background: #e9f8f6;
    color: var(--teal-dark);
}

.line-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.stars {
    color: var(--amber);
    letter-spacing: 0;
}

.final-cta-section {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 24px;
    align-items: stretch;
}

.hours-card,
.final-cta {
    padding: clamp(26px, 4vw, 42px);
    border-radius: var(--radius);
}

.hours-card {
    border: 1px solid var(--line);
    background: #fff;
}

.final-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #102022, #214248);
    color: #fff;
    box-shadow: var(--shadow);
}

.final-cta p {
    color: rgba(255, 255, 255, .76);
}

.hours-list {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 22px 0 0;
    list-style: none;
}

.hours-list li {
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-2);
    font-weight: 800;
}

.site-footer {
    margin-top: clamp(36px, 6vw, 80px);
    padding: 42px 0 24px;
    background: var(--ink);
    color: #fff;
}

.footer-inner,
.footer-bottom {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 32px;
}

.footer-inner p,
.footer-bottom {
    color: rgba(255, 255, 255, .68);
}

.footer-brand .brand-mark {
    background: #fff;
    color: var(--ink);
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 16px;
    font-weight: 800;
}

.footer-bottom {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .16);
    font-size: 14px;
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(280px, 440px) minmax(0, 1fr);
    gap: clamp(28px, 6vw, 72px);
    align-items: center;
}

.detail-image {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}

.detail-image img {
    width: 100%;
    aspect-ratio: 1 / .92;
    object-fit: cover;
    border-radius: var(--radius);
}

.detail-copy .rich-text {
    max-width: 720px;
    margin: 22px 0 28px;
    color: var(--ink-soft);
}

.checkout-section,
.contact-section {
    display: grid;
    grid-template-columns: 1fr;
}

.checkout-form,
.contact-section {
    width: 100%;
}

.form-grid,
.contact-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    align-items: start;
}

.checkout-form {
    background: transparent;
    border: 0;
    box-shadow: none;
}

label {
    display: grid;
    gap: 8px;
    color: var(--ink-soft);
    font-size: 14px;
    font-weight: 800;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--ink);
    padding: 12px 13px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(32, 198, 184, .12);
}

.checkout-form .form-grid > div,
.contact-form,
.order-summary,
.contact-hours,
.thank-you,
.empty-state {
    padding: 24px;
}

.checkout-form .form-grid > div,
.contact-form {
    display: grid;
    gap: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 14px 36px rgba(16, 32, 34, .07);
}

.order-summary img {
    width: 100%;
    aspect-ratio: 1.25 / .82;
    object-fit: cover;
    border-radius: var(--radius);
    background: var(--surface-3);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 13px 0;
    border-top: 1px solid var(--line);
}

.summary-row.total strong {
    color: var(--teal-dark);
    font-size: 22px;
}

.form-errors,
.form-success {
    padding: 14px;
    border-radius: var(--radius);
    font-weight: 800;
}

.form-errors {
    margin-top: 16px;
    border: 1px solid #ffc3b8;
    background: #fff1ee;
    color: #a33627;
}

.form-errors p {
    margin: 0;
}

.form-success {
    border: 1px solid #bceadf;
    background: #effbf7;
    color: #0f6b5d;
}

.about-panel {
    min-height: 260px;
}

.faq-list {
    display: grid;
    gap: 12px;
    max-width: 900px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 12px 30px rgba(16, 32, 34, .06);
}

.faq-item summary {
    cursor: pointer;
    padding: 18px 20px;
    font-weight: 900;
}

.faq-item p {
    margin: 0;
    padding: 0 20px 20px;
    color: var(--muted);
}

.age-gate {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 20px;
    overflow-y: auto;
    overflow-x: hidden;
    background: rgba(16, 32, 34, .76);
    backdrop-filter: blur(12px);
}

body.age-denied .age-gate {
    background: #102022;
    backdrop-filter: none;
}

.age-gate[hidden] {
    display: none;
}

.age-panel {
    width: min(460px, 100%);
    max-width: calc(100vw - 32px);
    min-width: 0;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--radius);
    background: linear-gradient(145deg, #102022, #1f3c40);
    color: #fff;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .35);
}

.age-mark {
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: var(--radius);
    background: var(--teal);
    color: var(--ink);
    font-weight: 950;
}

.age-panel h2 {
    margin: 18px 0 10px;
    font-size: 30px;
    line-height: 1.1;
}

.age-panel p {
    color: rgba(255, 255, 255, .76);
}

.age-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.age-actions .btn {
    min-width: 0;
    white-space: normal;
    text-align: center;
}

.reveal {
    transform: translateY(22px);
    opacity: 0;
    transition: transform .6s ease, opacity .6s ease;
}

.reveal.is-visible {
    transform: translateY(0);
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal,
    .btn,
    .product-card,
    .info-card,
    .testimonial-card,
    .about-panel {
        transition: none;
        transform: none;
        opacity: 1;
    }
}

@media (max-width: 980px) {
    .site-header {
        grid-template-columns: auto auto;
    }

    .nav-toggle {
        display: block;
        justify-self: end;
    }

    .site-nav,
    .language-control {
        grid-column: 1 / -1;
    }

    .site-nav {
        display: none;
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav.is-open {
        display: flex;
    }

    .hero,
    .product-detail,
    .form-grid,
    .contact-section,
    .final-cta-section,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-media img {
        aspect-ratio: 1.4 / .9;
    }

    .product-grid,
    .info-grid,
    .testimonial-grid,
    .about-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .site-header,
    .section,
    .page-hero,
    .footer-inner,
    .footer-bottom {
        width: min(100% - 24px, var(--max));
    }

    .hero-copy h1,
    .page-hero h1 {
        font-size: clamp(30px, 8vw, 36px);
    }

    .product-grid,
    .info-grid,
    .testimonial-grid,
    .about-page-grid {
        grid-template-columns: 1fr;
    }

    .quality-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .product-actions,
    .hero-actions,
    .age-actions {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .age-panel {
        padding: 24px;
    }

    .btn {
        width: 100%;
    }
}

/* Homepage concept lock: mirrors _design/homepage-concept.png */
.concept-home {
    --concept-ink: #071827;
    --concept-teal: #008f96;
    --concept-teal-dark: #003f56;
    --concept-line: #d8e3e7;
    --concept-soft: #f4fbfd;
    background: #eef5f7;
    color: var(--concept-ink);
    font-family: Outfit, "Segoe UI", Arial, sans-serif;
}

.concept-home .site-header,
.concept-home main,
.concept-home .concept-footer {
    width: min(864px, 100%);
    margin-inline: auto;
}

.concept-home .site-header {
    position: static;
    z-index: 20;
    display: grid;
    grid-template-columns: 214px 1fr 220px;
    gap: 0;
    align-items: center;
    height: 68px;
    margin-top: 0;
    padding: 0 20px 0 18px;
    border: 0;
    border-bottom: 1px solid #e5ecef;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    backdrop-filter: none;
}

.concept-home .brand {
    gap: 9px;
    color: #071827;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.brand-image {
    width: 36px;
    height: 38px;
    object-fit: contain;
}

.concept-home .site-nav {
    justify-content: center;
    gap: 33px;
}

.concept-home .site-nav a {
    position: relative;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #091927;
    font-size: 14px;
    font-weight: 600;
    line-height: 68px;
}

.concept-home .site-nav a:hover,
.concept-home .site-nav a.is-active {
    background: transparent;
    color: var(--concept-teal);
}

.concept-home .site-nav a.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    height: 2px;
    background: var(--concept-teal);
}

.concept-home .language-control {
    justify-self: end;
    gap: 7px;
    height: 38px;
    padding: 0 9px 0 12px;
    border: 1px solid #d7e0e5;
    border-radius: 6px;
    background: #fff;
    color: #071827;
    font-size: 13px;
    font-weight: 500;
}

.concept-home .language-control span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.concept-home .language-control::before {
    content: "🇬🇧";
    font-size: 16px;
}

.concept-home .language-control select {
    width: 116px;
    min-width: 0;
    height: 36px;
    border: 0;
    background: transparent;
    color: #071827;
    padding: 0;
    font-size: 13px;
    font-weight: 500;
}

.concept-home main {
    overflow: hidden;
    background: #fff;
}

.concept-hero {
    position: relative;
    height: 371px;
    background: #071827;
}

.concept-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-hotspot {
    position: absolute;
    top: 275px;
    height: 36px;
    border-radius: 5px;
}

.hero-shop {
    left: 42px;
    width: 123px;
}

.hero-reports {
    left: 174px;
    width: 149px;
}

.concept-section {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #fff;
}

.concept-section h2 {
    margin: 0;
    color: #071827;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0;
    text-align: center;
}

.concept-section-subtitle {
    margin: 8px 0 0;
    color: #435463;
    font-size: 14px;
    line-height: 1.35;
    text-align: center;
}

.concept-products {
    min-height: 430px;
    padding: 62px 46px 34px;
}

.concept-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 180px);
    gap: 16px;
    margin-top: 26px;
}

.concept-product-card {
    min-height: 316px;
    padding: 12px 12px 14px;
    border: 1px solid #dfe8eb;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 10px 22px rgba(0, 22, 35, .08);
}

.concept-product-card img {
    width: 154px;
    height: 145px;
    object-fit: cover;
    margin: 0 auto 18px;
}

.concept-product-card h3 {
    min-height: 22px;
    margin: 0 0 8px;
    color: #071827;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
}

.concept-product-card p {
    min-height: 38px;
    margin: 0;
    color: #46596a;
    font-size: 11px;
    line-height: 1.45;
}

.concept-product-card strong {
    display: block;
    margin: 14px 0 12px;
    color: #071827;
    font-size: 17px;
    font-weight: 800;
    line-height: 1;
}

.concept-product-card a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    border-radius: 5px;
    background: linear-gradient(180deg, #006276, #003c54);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 8px 15px rgba(0, 59, 78, .16);
}

.concept-quality {
    position: relative;
    min-height: 301px;
    padding: 28px 78px 35px;
    background: linear-gradient(90deg, #eef9fc, #fff 26%, #fff 74%, #eef9fc);
}

.concept-report-table {
    overflow: hidden;
    margin-top: 18px;
    border: 1px solid #cddde2;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 50, 71, .08);
}

.concept-report-row {
    display: grid;
    grid-template-columns: 1.28fr 1fr 1fr 1fr 1.15fr;
    min-height: 53px;
    border-top: 1px solid #dce6ea;
}

.concept-report-row:first-child {
    border-top: 0;
}

.concept-report-row > * {
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 0 18px;
    border-left: 1px solid #dce6ea;
    color: #344656;
    font-size: 12px;
}

.concept-report-row > *:first-child {
    border-left: 0;
}

.concept-report-head {
    min-height: 37px;
    background: linear-gradient(180deg, #00425c, #00384f);
}

.concept-report-head > * {
    justify-content: center;
    border-left-color: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.concept-report-row strong {
    justify-content: center;
    color: var(--concept-teal);
    font-size: 19px;
    font-weight: 800;
}

.report-product {
    gap: 16px;
    color: #071827;
    font-weight: 700;
}

.report-product svg {
    flex: 0 0 27px;
    width: 27px;
    height: 27px;
    fill: none;
    stroke: var(--concept-teal);
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.concept-report-row a {
    justify-content: center;
    gap: 9px;
    align-self: center;
    height: 30px;
    margin: 0 17px;
    padding: 0 10px;
    border: 1px solid #cddde2;
    border-radius: 5px;
    color: #006774;
    font-size: 12px;
    font-weight: 500;
}

.concept-report-row a svg,
.concept-bottom-cta a svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.molecule {
    position: absolute;
    width: 63px;
    height: 111px;
    opacity: .34;
    background:
        radial-gradient(circle at 12px 10px, #43aeba 0 5px, transparent 6px),
        radial-gradient(circle at 42px 30px, #43aeba 0 5px, transparent 6px),
        radial-gradient(circle at 18px 70px, #43aeba 0 5px, transparent 6px),
        radial-gradient(circle at 55px 87px, #43aeba 0 5px, transparent 6px),
        linear-gradient(35deg, transparent 15px, #43aeba 16px 17px, transparent 18px),
        linear-gradient(105deg, transparent 32px, #43aeba 33px 34px, transparent 35px);
}

.molecule-left {
    left: 0;
    top: 31px;
}

.molecule-right {
    right: 0;
    top: 15px;
    transform: rotate(180deg);
}

.concept-about {
    min-height: 263px;
    padding: 27px 53px 0;
}

.concept-about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 27px;
}

.concept-about-card {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 16px;
    min-height: 151px;
    padding: 27px 18px 20px 20px;
    border: 1px solid #dfe8eb;
    border-radius: 5px;
    background: #fff;
}

.concept-about-card h3 {
    margin: 0 0 8px;
    color: #071827;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.15;
}

.concept-about-card p {
    margin: 0;
    color: #46596a;
    font-size: 11px;
    line-height: 1.55;
}

.concept-about-icon {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #e8f3f5;
}

.concept-about-icon::before {
    content: "";
    position: absolute;
    inset: 18px;
    background: currentColor;
    color: #006276;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
}

.concept-about-icon.hex::before {
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='4'%3E%3Cpath d='M20 9l12 7v14l-12 7-12-7V16z'/%3E%3Cpath d='M44 9l12 7v14l-12 7-12-7V16z'/%3E%3Cpath d='M32 30l12 7v14l-12 7-12-7V37z'/%3E%3C/g%3E%3C/svg%3E");
}

.concept-about-icon.scope::before {
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M23 39l12-27 9 4-12 27'/%3E%3Cpath d='M18 45h25M11 55h42M28 22l11 5M23 39l9 4'/%3E%3C/g%3E%3C/svg%3E");
}

.concept-about-icon.shield::before {
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M32 6l22 10v16c0 14-9 23-22 28-13-5-22-14-22-28V16z'/%3E%3Cpath d='M22 31l7 7 14-16'/%3E%3C/g%3E%3C/svg%3E");
}

.concept-testimonials {
    min-height: 383px;
    padding: 36px 53px 0;
}

.concept-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 33px;
}

.concept-testimonial-card {
    position: relative;
    min-height: 122px;
    padding: 26px 18px 14px 70px;
    border: 1px solid #dfe8eb;
    border-radius: 5px;
    background: #fff;
}

.quote-mark {
    position: absolute;
    left: 22px;
    top: 22px;
    color: var(--concept-teal);
    font-size: 45px;
    font-weight: 800;
    line-height: .5;
}

.concept-testimonial-card p {
    min-height: 48px;
    margin: 0;
    color: #354657;
    font-size: 11px;
    line-height: 1.45;
}

.testimonial-person {
    display: flex;
    gap: 9px;
    align-items: center;
    margin-top: 12px;
}

.testimonial-person img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-person span {
    display: grid;
    color: #46596a;
    font-size: 10px;
    line-height: 1.25;
}

.testimonial-person strong {
    color: #071827;
    font-size: 11px;
    font-weight: 800;
}

.concept-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
}

.concept-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #dde3e5;
}

.concept-dots span.is-active {
    background: var(--concept-teal);
}

.concept-bottom-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 142px;
    padding: 20px 58px 13px;
    background: linear-gradient(115deg, #002a42, #00385a 55%, #00283d);
    color: #fff;
}

.concept-hours {
    padding-right: 50px;
    border-right: 1px solid rgba(255, 255, 255, .22);
}

.concept-hours h2,
.concept-cta-copy h2 {
    margin: 0;
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.15;
}

.concept-hours h2 {
    display: flex;
    gap: 12px;
    align-items: center;
}

.concept-hours h2 span {
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 50%;
}

.concept-hours-table {
    margin-top: 12px;
    border: 1px solid rgba(255, 255, 255, .46);
    border-radius: 5px;
}

.concept-hours-table p {
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding: 7px 21px;
    border-top: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    font-size: 12px;
    line-height: 1.2;
}

.concept-hours-table p:first-child {
    border-top: 0;
}

.concept-hours-table p:last-child span {
    color: #10d2b1;
    font-weight: 800;
}

.concept-cta-copy {
    padding-left: 52px;
}

.concept-cta-copy h2 {
    max-width: 290px;
    font-size: 20px;
}

.concept-cta-copy p {
    max-width: 300px;
    margin: 9px 0 16px;
    color: rgba(255, 255, 255, .86);
    font-size: 12px;
    line-height: 1.4;
}

.concept-cta-copy div {
    display: flex;
    gap: 11px;
}

.concept-bottom-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 36px;
    border-radius: 5px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.concept-primary-link {
    width: 157px;
    background: linear-gradient(180deg, #00b8b0, #00989f);
}

.concept-secondary-link {
    width: 139px;
    border: 1px solid rgba(255, 255, 255, .62);
}

.concept-footer {
    height: 31px;
    background: #00283f;
    border-top: 1px solid rgba(255, 255, 255, .20);
}

.concept-footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    height: 100%;
    padding: 0 49px;
    color: rgba(255, 255, 255, .82);
    font-size: 11px;
}

.concept-footer-brand {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.concept-footer-brand img {
    width: 19px;
    height: 20px;
    object-fit: contain;
}

.concept-footer-inner p {
    margin: 0;
}

.concept-footer-inner p:nth-child(2) {
    text-align: center;
}

.concept-footer-inner p:nth-child(3) {
    text-align: right;
}

@media (max-width: 900px) {
    .concept-home .site-header,
    .concept-home main,
    .concept-home .concept-footer {
        width: 100%;
    }
}

@media (min-width: 761px) {
    .concept-home .site-header {
        grid-template-columns: 214px 1fr 220px;
        height: 68px;
        padding: 0 20px 0 18px;
    }

    .concept-home .nav-toggle {
        display: none;
    }

    .concept-home .site-nav {
        display: flex;
        grid-column: auto;
    }

    .concept-home .language-control {
        grid-column: auto;
    }
}

@media (max-width: 760px) {
    .concept-home .site-header {
        grid-template-columns: 1fr auto;
        height: auto;
        padding: 10px 14px;
    }

    .concept-home .brand {
        font-size: 18px;
    }

    .concept-home .nav-toggle {
        display: block;
    }

    .concept-home .site-nav,
    .concept-home .language-control {
        grid-column: 1 / -1;
    }

    .concept-home .site-nav {
        display: none;
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        margin-top: 8px;
    }

    .concept-home .site-nav.is-open {
        display: flex;
    }

    .concept-home .site-nav a {
        line-height: 38px;
    }

    .concept-home .site-nav a.is-active::after {
        bottom: 6px;
        right: auto;
        width: 42px;
    }

    .concept-home .language-control {
        justify-self: stretch;
        width: 100%;
        margin-top: 8px;
    }

    .concept-home .language-control select {
        width: 100%;
    }

    .concept-hero {
        height: auto;
    }

    .concept-hero img {
        height: auto;
    }

    .hero-hotspot {
        display: none;
    }

    .concept-products,
    .concept-quality,
    .concept-about,
    .concept-testimonials,
    .concept-bottom-cta {
        padding-left: 18px;
        padding-right: 18px;
    }

    .concept-product-grid,
    .concept-about-grid,
    .concept-testimonial-grid,
    .concept-bottom-cta {
        grid-template-columns: 1fr;
    }

    .concept-product-grid {
        justify-items: center;
    }

    .concept-report-table {
        overflow-x: auto;
    }

    .concept-report-row {
        min-width: 700px;
    }

    .concept-about-card {
        grid-template-columns: 70px 1fr;
    }

    .concept-bottom-cta {
        height: auto;
        gap: 24px;
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .concept-hours,
    .concept-cta-copy {
        padding: 0;
        border-right: 0;
    }

    .concept-cta-copy div {
        flex-direction: column;
    }

    .concept-primary-link,
    .concept-secondary-link {
        width: 100%;
    }

    .concept-footer {
        height: auto;
    }

    .concept-footer-inner {
        grid-template-columns: 1fr;
        gap: 9px;
        padding: 14px 18px;
    }

    .concept-footer-inner p,
    .concept-footer-inner p:nth-child(2),
    .concept-footer-inner p:nth-child(3) {
        text-align: left;
    }
}

/* Interactive version of the concept homepage */
.interactive-home .concept-hero {
    position: relative;
    display: grid;
    grid-template-columns: 360px 1fr;
    height: 371px;
    overflow: hidden;
    background:
        radial-gradient(circle at 330px 92px, rgba(255,255,255,.12), transparent 0 2px, transparent 3px),
        linear-gradient(90deg, #06131d 0%, #071827 38%, #1b3447 62%, #dce9f2 100%);
}

.interactive-hero-copy {
    position: relative;
    z-index: 2;
    padding: 108px 0 0 42px;
    color: #fff;
}

.interactive-hero-copy h1 {
    margin: 0;
    color: #fff;
    font-size: 33px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0;
}

.interactive-hero-copy h1 span {
    display: block;
    white-space: nowrap;
}

.interactive-hero-copy p {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, .92);
    font-size: 16px;
    line-height: 1.55;
}

.interactive-hero-actions {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.interactive-hero-actions .concept-primary-link,
.interactive-hero-actions .concept-secondary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 148px;
    height: 44px;
    padding: 0 24px;
    border-radius: 999px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease, color .22s ease, filter .22s ease;
}

.interactive-hero-actions .concept-primary-link {
    border: 1px solid rgba(43, 229, 215, .78);
    background: linear-gradient(180deg, #2bded4 0%, #00aeb0 54%, #008992 100%);
    box-shadow: 0 16px 30px rgba(0, 174, 176, .28), inset 0 1px 0 rgba(255, 255, 255, .42);
}

.interactive-hero-actions .concept-secondary-link {
    min-width: 178px;
    border-color: rgba(255, 255, 255, .54);
    background: rgba(255, 255, 255, .08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18);
    backdrop-filter: blur(8px);
}

.interactive-hero-actions .concept-primary-link:hover,
.interactive-hero-actions .concept-secondary-link:hover {
    transform: translateY(-2px);
}

.interactive-hero-actions .concept-primary-link:hover {
    box-shadow: 0 20px 38px rgba(0, 174, 176, .34), inset 0 1px 0 rgba(255, 255, 255, .48);
}

.interactive-hero-actions .concept-secondary-link:hover {
    border-color: rgba(43, 229, 215, .72);
    background: rgba(255, 255, 255, .14);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .18), inset 0 1px 0 rgba(255, 255, 255, .22);
}

.interactive-hero-actions .concept-primary-link:focus-visible,
.interactive-hero-actions .concept-secondary-link:focus-visible {
    outline: 3px solid rgba(43, 229, 215, .42);
    outline-offset: 3px;
}

.interactive-hero-image {
    position: absolute;
    inset: 0 0 0 376px;
    width: 488px;
    height: 371px;
    object-fit: cover;
}

.concept-product-card .concept-product-image {
    display: block;
    height: auto;
    padding: 0;
    margin: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.concept-product-card .concept-product-image img {
    transition: transform .22s ease;
}

.concept-product-card:hover .concept-product-image img {
    transform: translateY(-2px);
}

.concept-product-card .concept-card-button {
    display: flex;
}

.interactive-home .concept-product-card,
.interactive-home .concept-about-card,
.interactive-home .concept-testimonial-card,
.interactive-home .concept-report-table {
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.interactive-home .concept-product-card:hover,
.interactive-home .concept-about-card:hover,
.interactive-home .concept-testimonial-card:hover {
    transform: translateY(-3px);
    border-color: #b8d6dc;
    box-shadow: 0 14px 30px rgba(0, 50, 71, .13);
}

.interactive-home .concept-report-row a:hover,
.interactive-home .concept-bottom-cta a:hover,
.interactive-home .interactive-hero-actions a:hover {
    filter: brightness(1.04);
}

@media (max-width: 760px) {
    .interactive-home .concept-hero {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 560px;
    }

    .interactive-hero-copy {
        padding: 70px 26px 26px;
    }

    .interactive-hero-copy h1 {
        font-size: clamp(29px, 8.8vw, 34px);
    }

    .interactive-hero-image {
        position: relative;
        inset: auto;
        width: 100%;
        height: auto;
        order: 2;
    }

    .interactive-hero-actions {
        flex-direction: column;
        align-items: flex-start;
        max-width: 260px;
    }

    .interactive-hero-actions .concept-primary-link,
    .interactive-hero-actions .concept-secondary-link {
        width: min(100%, 270px);
        min-width: 0;
    }
}

@media (min-width: 761px) {
    .interactive-home .site-header {
        display: grid !important;
        grid-template-columns: 214px 1fr 220px !important;
        align-items: center !important;
        height: 68px !important;
        padding: 0 20px 0 18px !important;
    }

    .interactive-home .brand {
        display: inline-flex !important;
        grid-column: auto !important;
    }

    .interactive-home .site-nav {
        display: flex !important;
        grid-column: auto !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 33px !important;
        margin: 0 !important;
    }

    .interactive-home .site-nav a {
        width: auto !important;
        line-height: 68px !important;
    }

    .interactive-home .language-control {
        display: flex !important;
        grid-column: auto !important;
        justify-self: end !important;
        margin: 0 !important;
    }
}

/* Full-width website pass */
.concept-home .site-header,
.concept-home main,
.concept-home .concept-footer {
    width: 100%;
    max-width: none;
}

@media (min-width: 761px) {
    .interactive-home .site-header {
        grid-template-columns: minmax(210px, 1fr) auto minmax(220px, 1fr) !important;
        padding-left: clamp(20px, 5vw, 72px) !important;
        padding-right: clamp(20px, 5vw, 72px) !important;
    }

    .interactive-home .concept-hero {
        height: clamp(430px, 39vw, 560px);
        background:
            radial-gradient(circle at 42% 25%, rgba(255,255,255,.12), transparent 0 2px, transparent 3px),
            linear-gradient(90deg, #06131d 0%, #071827 39%, #1b3447 58%, #dce9f2 100%);
    }

    .interactive-home .interactive-hero-copy {
        padding-left: max(42px, calc((100vw - 1180px) / 2));
        padding-top: clamp(112px, 9vw, 150px);
    }

    .interactive-home .interactive-hero-copy h1 {
        font-size: clamp(38px, 3.2vw, 52px);
        line-height: 1.12;
    }

    .interactive-home .interactive-hero-copy p {
        font-size: clamp(16px, 1.25vw, 19px);
    }

    .interactive-home .interactive-hero-image {
        left: 43%;
        width: 57%;
        height: 100%;
        object-fit: cover;
        object-position: left center;
    }

    .interactive-home .concept-products,
    .interactive-home .concept-quality,
    .interactive-home .concept-about,
    .interactive-home .concept-testimonials {
        padding-left: clamp(24px, 5vw, 72px);
        padding-right: clamp(24px, 5vw, 72px);
    }

    .interactive-home .concept-product-grid,
    .interactive-home .concept-about-grid,
    .interactive-home .concept-testimonial-grid,
    .interactive-home .concept-report-table {
        width: min(1180px, 100%);
        margin-left: auto;
        margin-right: auto;
    }

    .interactive-home .concept-product-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: clamp(18px, 2vw, 28px);
    }

    .interactive-home .concept-product-card img {
        width: 100%;
        height: 190px;
        object-fit: contain;
    }

    .interactive-home .concept-bottom-cta {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        height: auto;
        min-height: 178px;
        align-items: center;
        padding-top: 28px;
        padding-bottom: 28px;
        padding-left: max(58px, calc((100vw - 1180px) / 2));
        padding-right: max(58px, calc((100vw - 1180px) / 2));
    }

    .interactive-home .concept-hours-table {
        max-width: 520px;
    }

    .interactive-home .concept-cta-copy p {
        max-width: 380px;
    }

    .interactive-home .concept-footer-inner {
        width: min(1180px, calc(100% - 48px));
        margin: 0 auto;
        padding-left: 0;
        padding-right: 0;
    }
}

/* Final homepage fidelity pass */
@media (min-width: 761px) {
    .interactive-home .concept-hero {
        display: grid;
        grid-template-columns: minmax(520px, 43%) 1fr;
        height: clamp(430px, 38vw, 540px);
        background:
            radial-gradient(circle at 24% 20%, rgba(255,255,255,.10), transparent 0 2px, transparent 3px),
            linear-gradient(90deg, #06131d 0%, #071827 44%, #233d50 62%, #dce9f2 100%);
    }

    .interactive-home .interactive-hero-copy {
        width: min(500px, 100%);
        max-width: 500px;
        padding-left: max(48px, calc((100vw - 1180px) / 2));
        padding-top: clamp(105px, 8.2vw, 132px);
    }

    .interactive-home .interactive-hero-copy h1 {
        font-size: clamp(38px, 3vw, 46px);
        line-height: 1.18;
    }

    .interactive-home .interactive-hero-copy p {
        margin-top: 18px;
        font-size: clamp(16px, 1.15vw, 18px);
        line-height: 1.55;
    }

    .interactive-home .interactive-hero-actions {
        margin-top: 24px;
    }

    .interactive-home .interactive-hero-image {
        left: 39%;
        width: 61%;
        object-position: left center;
    }

    .interactive-home .concept-products {
        padding-top: 66px;
        padding-bottom: 54px;
    }

    .interactive-home .concept-product-grid {
        max-width: 1180px;
        gap: 24px;
        margin-top: 31px;
    }

    .interactive-home .concept-product-card {
        min-height: 356px;
        padding: 14px 16px 18px;
    }

    .interactive-home .concept-product-card img {
        height: 178px;
        margin-bottom: 18px;
    }

    .interactive-home .concept-quality {
        padding-top: 40px;
        padding-bottom: 52px;
    }

    .interactive-home .concept-about {
        padding-top: 40px;
        padding-bottom: 16px;
    }

    .interactive-home .concept-testimonials {
        padding-top: 42px;
        padding-bottom: 82px;
    }
}

/* Requested refinement pass */
@media (min-width: 981px) {
    .site-nav {
        gap: 0;
    }

    .site-nav a {
        position: relative;
        margin: 0 5px;
    }

    .site-nav a + a::before {
        content: "";
        position: absolute;
        left: -6px;
        top: 50%;
        width: 1px;
        height: 18px;
        background: rgba(96, 115, 114, .24);
        transform: translateY(-50%);
    }

    .concept-home .site-nav a + a::before {
        left: -17px;
        background: rgba(7, 24, 39, .18);
    }
}

.product-card-meta {
    justify-content: flex-start;
}

.site-footer {
    padding: 48px 0 24px;
}

.footer-inner {
    grid-template-columns: minmax(260px, 1.35fr) minmax(140px, .55fr) minmax(180px, .75fr);
    align-items: start;
}

.footer-column {
    display: grid;
    gap: 10px;
    align-content: start;
}

.footer-column h3 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0;
}

.footer-brand-column p {
    max-width: 440px;
    margin: 16px 0 0;
}

.footer-links,
.footer-products {
    display: grid;
    justify-content: start;
    gap: 9px;
    font-weight: 700;
}

.footer-links a,
.footer-products a {
    color: rgba(255, 255, 255, .74);
    transition: color .2s ease, transform .2s ease;
}

.footer-links a:hover,
.footer-products a:hover {
    color: #fff;
    transform: translateX(2px);
}

.site-footer.concept-footer {
    height: auto;
    margin-top: 0;
    padding: 44px 0 22px;
    border-top: 1px solid rgba(255, 255, 255, .16);
    background: #00283f;
}

.concept-footer .footer-inner.concept-footer-inner {
    width: min(1180px, calc(100% - 48px));
    height: auto;
    margin: 0 auto;
    padding: 0;
    color: #fff;
    font-size: 14px;
}

.concept-footer .footer-bottom {
    width: min(1180px, calc(100% - 48px));
    color: rgba(255, 255, 255, .68);
}

.concept-footer .footer-brand .brand-image {
    width: 32px;
    height: 34px;
}

.interactive-home .concept-hero {
    isolation: isolate;
}

.interactive-home .concept-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(6, 19, 29, .96) 0%, rgba(7, 24, 39, .86) 34%, rgba(7, 24, 39, .20) 51%, rgba(255, 255, 255, 0) 72%),
        radial-gradient(circle at 18% 70%, rgba(32, 198, 184, .20), transparent 28%);
}

.interactive-home .concept-hero::after {
    content: "";
    position: absolute;
    left: max(48px, calc((100vw - 1180px) / 2));
    top: clamp(70px, 7vw, 110px);
    z-index: 1;
    width: 68px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #21d7cf, rgba(33, 215, 207, 0));
}

.interactive-home .interactive-hero-copy h1 {
    text-shadow: 0 16px 32px rgba(0, 0, 0, .20);
}

.interactive-hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.interactive-hero-proof span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 11px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .88);
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.interactive-home .interactive-hero-actions {
    margin-top: 22px;
}

.interactive-home .interactive-hero-image {
    filter: saturate(1.06) contrast(1.03);
}

.concept-faq {
    padding: 52px clamp(24px, 5vw, 72px) 62px;
    background: linear-gradient(180deg, #f6fbfc, #fff);
    text-align: center;
}

.concept-faq-list {
    display: grid;
    gap: 12px;
    width: min(900px, 100%);
    margin: 28px auto 0;
}

.concept-faq-item {
    overflow: hidden;
    border: 1px solid #dce8eb;
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 12px 26px rgba(0, 50, 71, .07);
    text-align: left;
}

.concept-faq-item summary {
    cursor: pointer;
    padding: 18px 20px;
    color: #071827;
    font-size: 15px;
    font-weight: 900;
}

.concept-faq-item p {
    margin: 0;
    padding: 0 20px 20px;
    color: #46596a;
    font-size: 14px;
    line-height: 1.55;
}

.faq-list {
    margin-inline: auto;
}

.about-story {
    display: grid;
    gap: 22px;
}

.about-split {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
    gap: clamp(24px, 5vw, 58px);
    align-items: center;
    padding: clamp(28px, 5vw, 54px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 14px 36px rgba(16, 32, 34, .07);
}

.about-split-reverse .about-split-copy {
    order: 2;
}

.about-split-copy h2 {
    margin: 0;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.08;
}

.about-split-copy p {
    max-width: 640px;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: clamp(16px, 1.6vw, 19px);
}

.about-split-visual {
    position: relative;
    min-height: 260px;
    overflow: hidden;
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 32% 35%, rgba(32, 198, 184, .30), transparent 20%),
        radial-gradient(circle at 68% 62%, rgba(242, 189, 85, .24), transparent 24%),
        linear-gradient(135deg, #eefafa, #f9fcfc);
}

.about-split-visual-dark {
    background:
        radial-gradient(circle at 30% 32%, rgba(32, 198, 184, .30), transparent 20%),
        radial-gradient(circle at 70% 68%, rgba(255, 255, 255, .18), transparent 24%),
        linear-gradient(135deg, #102022, #214248);
}

.about-split-visual span {
    position: absolute;
    width: 86px;
    height: 86px;
    border: 1px solid rgba(0, 143, 150, .26);
    border-radius: 50%;
}

.about-split-visual span:nth-child(1) {
    left: 18%;
    top: 18%;
}

.about-split-visual span:nth-child(2) {
    right: 20%;
    top: 30%;
}

.about-split-visual span:nth-child(3) {
    left: 42%;
    bottom: 18%;
}

.contact-upgrade {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
    gap: clamp(22px, 4vw, 34px);
    width: min(var(--max), calc(100% - 32px));
    margin-inline: auto;
}

.contact-form-shell,
.contact-support-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 14px 36px rgba(16, 32, 34, .07);
}

.contact-form-shell {
    overflow: hidden;
}

.contact-form-heading {
    padding: clamp(24px, 4vw, 36px) clamp(24px, 4vw, 38px);
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 94% 22%, rgba(32, 198, 184, .18), transparent 28%),
        linear-gradient(135deg, #f8fbfb, #fff);
}

.contact-form-heading h2,
.contact-support-card h2 {
    margin: 0;
    font-size: clamp(22px, 2.6vw, 32px);
    line-height: 1.12;
}

.contact-form-heading p,
.contact-support-card p {
    margin: 10px 0 0;
    color: var(--muted);
}

.contact-form {
    display: grid;
    gap: 20px;
    padding: clamp(24px, 4vw, 38px);
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.contact-field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-message-field {
    grid-column: 1 / -1;
}

.contact-support {
    display: grid;
    gap: 16px;
}

.contact-support-card {
    padding: 24px;
}

.contact-support-dark {
    background: linear-gradient(135deg, #102022, #214248);
    color: #fff;
}

.contact-support-dark p {
    color: rgba(255, 255, 255, .74);
}

.contact-support .hours-list {
    margin-top: 18px;
}

.contact-support .btn {
    margin-top: 18px;
}

@media (max-width: 980px) {
    .site-nav a {
        margin: 0;
    }

    .site-nav a::before {
        display: none;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .about-split,
    .contact-upgrade {
        grid-template-columns: 1fr;
    }

    .about-split-reverse .about-split-copy {
        order: 0;
    }

    .about-split-visual {
        min-height: 220px;
    }
}

@media (max-width: 640px) {
    .interactive-hero-proof {
        max-width: 310px;
    }

    .interactive-hero-proof span {
        font-size: 11px;
    }

    .concept-faq {
        padding: 44px 18px 52px;
    }

    .contact-field-grid {
        grid-template-columns: 1fr;
    }
}

/* Current polish pass */
.language-control {
    gap: 10px;
}

.language-flag {
    display: inline-block;
    flex: 0 0 auto;
    width: 24px;
    height: 16px;
    overflow: hidden;
    border: 1px solid rgba(7, 24, 39, .18);
    border-radius: 3px;
    box-shadow: 0 1px 2px rgba(7, 24, 39, .18);
}

.language-flag-en {
    background:
        linear-gradient(90deg, transparent 43%, #fff 43% 57%, transparent 57%),
        linear-gradient(0deg, transparent 38%, #fff 38% 62%, transparent 62%),
        linear-gradient(90deg, transparent 46%, #c8102e 46% 54%, transparent 54%),
        linear-gradient(0deg, transparent 43%, #c8102e 43% 57%, transparent 57%),
        linear-gradient(34deg, transparent 46%, #fff 46% 54%, transparent 54%),
        linear-gradient(-34deg, transparent 46%, #fff 46% 54%, transparent 54%),
        linear-gradient(34deg, transparent 48%, #c8102e 48% 52%, transparent 52%),
        linear-gradient(-34deg, transparent 48%, #c8102e 48% 52%, transparent 52%),
        #012169;
}

.language-flag-es {
    background: linear-gradient(180deg, #c60b1e 0 25%, #ffc400 25% 75%, #c60b1e 75% 100%);
}

.concept-home .language-control::before {
    content: none;
    display: none;
}

.concept-home .language-control .language-flag {
    position: static;
    width: 24px;
    height: 16px;
    overflow: hidden;
    clip: auto;
    clip-path: none;
}

.site-footer .footer-brand {
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 16px;
    line-height: 1;
}

.site-footer .footer-brand span {
    color: #fff;
}

.site-footer .footer-brand .brand-mark {
    color: var(--ink);
}

.footer-brand-column p {
    margin-top: 14px;
    line-height: 1.65;
}

.concept-home .site-footer .footer-brand {
    font-size: 16px;
}

.concept-footer .footer-brand-column p {
    text-align: left;
}

.site-footer.concept-footer {
    margin-top: clamp(36px, 6vw, 80px);
    padding: 48px 0 24px;
    border-top: 0;
    background: var(--ink);
}

.concept-footer .footer-inner.concept-footer-inner {
    width: min(var(--max), calc(100% - 32px));
    grid-template-columns: minmax(260px, 1.35fr) minmax(140px, .55fr) minmax(180px, .75fr);
    gap: 32px;
    color: #fff;
    font-size: inherit;
}

.concept-footer .footer-bottom {
    width: min(var(--max), calc(100% - 32px));
}

.interactive-home .concept-hero::before {
    background:
        linear-gradient(90deg, rgba(6, 19, 29, .99) 0%, rgba(6, 19, 29, .97) 30%, rgba(7, 24, 39, .72) 43%, rgba(7, 24, 39, .28) 58%, rgba(255, 255, 255, 0) 78%),
        radial-gradient(circle at 18% 70%, rgba(32, 198, 184, .18), transparent 28%);
}

.about-split-media {
    position: relative;
    min-height: 280px;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    background: #eefafa;
    box-shadow: 0 18px 42px rgba(16, 32, 34, .12);
}

.about-split-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(6, 19, 29, .10));
    pointer-events: none;
}

.about-split-media img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    object-position: center;
}

.about-split-media-dark {
    background: #102022;
}

.about-split-reverse .about-split-media {
    order: 1;
}

@media (min-width: 761px) {
    .interactive-home .interactive-hero-image {
        left: 31%;
        width: 69%;
        height: 100%;
        opacity: .97;
        object-position: left center;
        -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .08) 5%, rgba(0, 0, 0, .55) 13%, #000 24%, #000 100%);
        mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .08) 5%, rgba(0, 0, 0, .55) 13%, #000 24%, #000 100%);
    }
}

@media (max-width: 980px) {
    .concept-footer .footer-inner.concept-footer-inner {
        grid-template-columns: 1fr;
    }

    .about-split-reverse .about-split-media {
        order: 0;
    }
}

@media (max-width: 760px) {
    .interactive-home .interactive-hero-image {
        -webkit-mask-image: none;
        mask-image: none;
    }
}

/* Language flags, testimonial slider, and about-card polish */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.language-choice {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 32px;
    border: 1px solid transparent;
    border-radius: 6px;
    background: transparent;
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.language-choice:hover,
.language-choice.is-active {
    border-color: rgba(0, 143, 150, .35);
    background: #eefafa;
    box-shadow: 0 8px 18px rgba(0, 50, 71, .08);
}

.concept-home .language-control {
    width: auto;
    min-width: 0;
    padding: 0 7px;
}

.concept-home .language-control .sr-only {
    position: absolute;
}

.concept-testimonials {
    min-height: auto;
    margin-top: clamp(28px, 5vw, 70px);
    padding: clamp(72px, 7vw, 98px) clamp(22px, 5vw, 72px) clamp(58px, 6vw, 86px);
}

.concept-testimonial-window {
    width: min(820px, 100%);
    margin: 34px auto 0;
    overflow: hidden;
}

.concept-testimonial-grid {
    display: flex;
    grid-template-columns: none;
    gap: 0;
    margin-top: 0;
    transition: transform .55s ease;
    will-change: transform;
}

.concept-testimonial-card {
    display: grid;
    flex: 0 0 100%;
    min-height: 240px;
    padding: clamp(30px, 4vw, 44px);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(0, 50, 71, .10);
}

.concept-testimonial-card .quote-mark {
    position: static;
    display: block;
    margin-bottom: 12px;
    font-size: 62px;
}

.concept-testimonial-card p {
    min-height: auto;
    max-width: 680px;
    color: #253545;
    font-size: clamp(15px, 1.35vw, 18px);
    line-height: 1.65;
}

.testimonial-person {
    gap: 14px;
    margin-top: 26px;
}

.testimonial-person img {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    border: 3px solid #fff;
    box-shadow: 0 10px 22px rgba(0, 50, 71, .16);
}

.testimonial-person span {
    font-size: 13px;
    line-height: 1.35;
}

.testimonial-person strong {
    font-size: 15px;
}

.concept-dots {
    align-items: center;
}

.concept-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #d7e1e4;
    cursor: pointer;
    transition: width .2s ease, background .2s ease;
}

.concept-dots button.is-active {
    width: 28px;
    border-radius: 999px;
    background: var(--concept-teal);
}

.about-page-grid {
    gap: clamp(18px, 3vw, 28px);
}

.about-page-grid .about-panel {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    padding: clamp(26px, 3vw, 34px);
    border: 1px solid rgba(190, 218, 222, .86);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(247, 252, 252, .98)),
        linear-gradient(135deg, rgba(32, 198, 184, .16), rgba(242, 189, 85, .08));
    box-shadow: 0 18px 42px rgba(16, 32, 34, .08);
}

.about-page-grid .about-panel::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--teal), rgba(242, 189, 85, .9));
}

.about-page-grid .about-panel:nth-child(2) {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(246, 250, 251, .98)),
        linear-gradient(135deg, rgba(13, 88, 96, .12), rgba(32, 198, 184, .13));
}

.about-page-grid .about-panel:nth-child(3) {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(249, 252, 249, .98)),
        linear-gradient(135deg, rgba(242, 189, 85, .12), rgba(32, 198, 184, .12));
}

.about-page-grid .about-panel .line-icon,
.about-page-grid .about-panel h2,
.about-page-grid .about-panel p {
    position: relative;
}

.about-page-grid .about-panel .line-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 24px;
    background: #fff;
    box-shadow: 0 12px 26px rgba(0, 50, 71, .10);
}

.about-page-grid .about-panel h2 {
    margin: 0;
    font-size: clamp(22px, 2.2vw, 30px);
    line-height: 1.15;
}

.about-page-grid .about-panel p {
    margin-top: 14px;
    color: #526766;
    font-size: 16px;
    line-height: 1.65;
}

@media (prefers-reduced-motion: reduce) {
    .concept-testimonial-grid {
        transition: none;
    }
}

@media (max-width: 760px) {
    .concept-home .language-control {
        justify-self: start;
        width: auto;
        margin-top: 8px;
    }

    .concept-testimonial-card {
        min-height: 300px;
    }

    .testimonial-person img {
        width: 52px;
        height: 52px;
    }
}

/* Hero position tuning */
@media (min-width: 761px) {
    .interactive-home .concept-hero {
        height: clamp(455px, 40vw, 570px);
    }

    .interactive-home .interactive-hero-copy {
        padding-left: max(56px, calc((100vw - 1238px) / 2));
        padding-top: clamp(126px, 10.2vw, 166px);
    }
}

@media (max-width: 760px) {
    .interactive-home .concept-hero {
        min-height: 590px;
    }

    .interactive-hero-copy {
        padding-top: 86px;
    }
}

/* About feature mosaic */
.about-feature-section {
    scroll-margin-top: 104px;
    padding-top: clamp(28px, 4vw, 46px);
    padding-bottom: clamp(34px, 5vw, 54px);
}

.about-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: clamp(28px, 4vw, 48px);
    row-gap: clamp(36px, 5vw, 54px);
}

.about-feature {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.about-feature-icon {
    display: inline-grid;
    place-items: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    box-shadow: 0 10px 22px rgba(16, 32, 34, .08);
    transform-origin: center;
    transition: box-shadow .25s ease, transform .25s ease;
    will-change: transform;
}

.about-feature-icon svg {
    width: 39px;
    height: 39px;
    fill: none;
    stroke: #fff;
    stroke-width: 2.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .25s ease;
}

.about-feature h2 {
    margin: 0;
    font-size: clamp(17px, 1.35vw, 19px);
    font-weight: 700;
    line-height: 1.12;
}

.about-feature p {
    margin: 10px 0 0;
    color: #5d6270;
    font-size: clamp(13px, 1.1vw, 15px);
    line-height: 1.45;
}

.about-feature:hover .about-feature-icon,
.about-feature:focus-within .about-feature-icon {
    animation: aboutFeatureIconPop .52s cubic-bezier(.2, .8, .2, 1);
    box-shadow: 0 16px 30px rgba(16, 32, 34, .14);
    transform: translateY(-5px) rotate(-3deg) scale(1.06);
}

.about-feature:hover .about-feature-icon svg,
.about-feature:focus-within .about-feature-icon svg {
    transform: scale(1.06);
}

@keyframes aboutFeatureIconPop {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    42% {
        transform: translateY(-7px) rotate(4deg) scale(1.08);
    }

    100% {
        transform: translateY(-5px) rotate(-3deg) scale(1.06);
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-feature-icon,
    .about-feature-icon svg {
        transition: none;
    }

    .about-feature:hover .about-feature-icon,
    .about-feature:focus-within .about-feature-icon {
        animation: none;
        transform: none;
    }

    .about-feature:hover .about-feature-icon svg,
    .about-feature:focus-within .about-feature-icon svg {
        transform: none;
    }
}

.about-feature-blue .about-feature-icon {
    background: #2875ff;
}

.about-feature-blue h2 {
    color: #2468ff;
}

.about-feature-purple .about-feature-icon {
    background: #6814d4;
}

.about-feature-purple h2 {
    color: #6800d7;
}

.about-feature-teal .about-feature-icon {
    background: #09b57c;
}

.about-feature-teal h2 {
    color: #00a56f;
}

.about-feature-green .about-feature-icon {
    background: #00b823;
}

.about-feature-green h2 {
    color: #00ad22;
}

.about-feature-navy .about-feature-icon {
    background: #2e4797;
}

.about-feature-navy h2 {
    color: #264292;
}

.about-feature-coral .about-feature-icon {
    background: #ff6d70;
}

.about-feature-coral h2 {
    color: #ff6268;
}

@media (max-width: 1100px) {
    .about-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .about-feature-grid {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }

    .about-feature {
        grid-template-columns: 60px minmax(0, 1fr);
        gap: 14px;
    }

    .about-feature-icon {
        width: 60px;
        height: 60px;
    }

    .about-feature-icon svg {
        width: 34px;
        height: 34px;
    }
}

/* Global header/footer consistency: match the current home page */
.site-header {
    position: static;
    z-index: 20;
    display: grid;
    grid-template-columns: minmax(210px, 1fr) auto minmax(220px, 1fr);
    gap: 0;
    align-items: center;
    width: 100%;
    max-width: none;
    height: 68px;
    margin: 0;
    padding: 0 clamp(20px, 5vw, 72px);
    border: 0;
    border-bottom: 1px solid #e5ecef;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    backdrop-filter: none;
}

.site-header .brand {
    gap: 9px;
    color: #071827;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.site-header .brand-image {
    width: 36px;
    height: 38px;
    object-fit: contain;
}

.site-header .nav-toggle {
    display: none;
}

.site-header .site-nav {
    display: flex;
    grid-column: auto;
    justify-content: center;
    gap: 33px;
    margin: 0;
}

.site-header .site-nav a {
    position: relative;
    width: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #091927;
    font-size: 14px;
    font-weight: 600;
    line-height: 68px;
}

.site-header .site-nav a:hover,
.site-header .site-nav a.is-active {
    background: transparent;
    color: var(--concept-teal, var(--teal));
}

.site-header .site-nav a.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    height: 2px;
    background: var(--concept-teal, var(--teal));
}

.site-header .site-nav a + a::before {
    left: -17px;
    background: rgba(7, 24, 39, .18);
}

.site-header .language-control {
    grid-column: auto;
    justify-self: end;
    width: auto;
    min-width: 0;
    height: 38px;
    margin: 0;
    padding: 0 7px;
    border: 1px solid #d7e0e5;
    border-radius: 6px;
    background: #fff;
}

.site-footer.concept-footer {
    margin-top: clamp(36px, 6vw, 80px);
    padding: 48px 0 24px;
    border-top: 0;
    background: var(--ink);
}

.site-footer .footer-inner.concept-footer-inner,
.site-footer .footer-bottom {
    width: min(var(--max), calc(100% - 32px));
}

.site-footer .footer-inner.concept-footer-inner {
    grid-template-columns: minmax(260px, 1.35fr) minmax(140px, .55fr) minmax(180px, .75fr);
    gap: 32px;
}

@media (min-width: 761px) {
    .interactive-home .concept-hero {
        height: clamp(480px, 42vw, 600px);
    }

    .interactive-home .interactive-hero-copy {
        padding-left: max(56px, calc((100vw - 1238px) / 2));
        padding-top: clamp(160px, 12.6vw, 202px);
    }
}

@media (max-width: 980px) {
    .site-footer .footer-inner.concept-footer-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .site-header {
        grid-template-columns: 1fr auto;
        height: auto;
        padding: 10px 14px;
    }

    .site-header .brand {
        font-size: 18px;
    }

    .site-header .nav-toggle {
        display: block;
    }

    .site-header .site-nav,
    .site-header .language-control {
        grid-column: 1 / -1;
    }

    .site-header .site-nav {
        display: none;
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        margin-top: 8px;
    }

    .site-header .site-nav.is-open {
        display: flex;
    }

    .site-header .site-nav a {
        line-height: 38px;
    }

    .site-header .site-nav a.is-active::after {
        right: auto;
        bottom: 6px;
        width: 42px;
    }

    .site-header .site-nav a + a::before {
        display: none;
    }

    .site-header .language-control {
        justify-self: start;
        width: auto;
        margin-top: 8px;
    }

    .interactive-home .concept-hero {
        min-height: 630px;
    }

    .interactive-hero-copy {
        padding-top: 104px;
    }
}

/* Flag clarity and hero title alignment */
.site-header .language-choice {
    width: 44px;
    height: 34px;
}

.site-header .language-flag,
.concept-home .site-header .language-control .language-flag {
    width: 30px;
    height: 20px;
    border-color: rgba(7, 24, 39, .22);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 1px 2px rgba(7, 24, 39, .18), 0 0 0 1px rgba(255, 255, 255, .72) inset;
}

.site-header .language-flag-en,
.concept-home .site-header .language-control .language-flag-en {
    background: #012169 url("../images/concept/flag-uk.svg") center / cover no-repeat;
}

@media (min-width: 761px) {
    .interactive-home .interactive-hero-copy {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
        padding-top: 0;
        transform: translateY(clamp(22px, 2.45vw, 34px));
    }
}
