@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --bg: #f5efe5;
    --surface: rgba(255, 251, 246, 0.8);
    --surface-strong: rgba(255, 250, 242, 0.94);
    --ink: #162124;
    --muted: #5f6b6f;
    --line: rgba(18, 33, 36, 0.12);
    --accent: #f06d47;
    --accent-strong: #dd5b37;
    --mint: #42b6a5;
    --mint-soft: #dbf5f0;
    --danger: #d65757;
    --danger-soft: #ffe8e4;
    --shadow: 0 24px 60px rgba(27, 41, 45, 0.12);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(240, 109, 71, 0.18), transparent 28%),
        radial-gradient(circle at 90% 10%, rgba(66, 182, 165, 0.14), transparent 22%),
        linear-gradient(180deg, #f8f2ea 0%, #f4efe5 48%, #f1ece2 100%);
}

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

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

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

.page-main {
    position: relative;
    z-index: 2;
    padding: 2rem 0 5rem;
}

.page-orb {
    position: fixed;
    z-index: 0;
    border-radius: 999px;
    filter: blur(30px);
    opacity: 0.6;
    pointer-events: none;
}

.page-orb--sun {
    width: 320px;
    height: 320px;
    top: -70px;
    left: -90px;
    background: rgba(240, 109, 71, 0.28);
}

.page-orb--mint {
    width: 240px;
    height: 240px;
    top: 22%;
    right: -80px;
    background: rgba(66, 182, 165, 0.2);
}

.page-orb--ink {
    width: 180px;
    height: 180px;
    bottom: 10%;
    left: 10%;
    background: rgba(22, 33, 36, 0.08);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 5;
    backdrop-filter: blur(16px);
    background: rgba(245, 239, 229, 0.78);
    border-bottom: 1px solid rgba(18, 33, 36, 0.06);
}

.header-inner,
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 18px;
    font-size: 0.85rem;
    font-weight: 800;
    color: white;
    background: linear-gradient(135deg, var(--accent) 0%, #ff9b66 100%);
    box-shadow: 0 12px 24px rgba(240, 109, 71, 0.26);
}

.brand-copy {
    display: flex;
    flex-direction: column;
}

.brand-copy strong {
    font-size: 0.98rem;
}

.brand-copy small {
    color: var(--muted);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.site-nav > a:not(.button) {
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    color: var(--muted);
    transition: 160ms ease;
}

.site-nav > a:hover,
.site-nav > a.is-active {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.65);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.9rem 1.25rem;
    border: 0;
    border-radius: 999px;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, var(--accent) 0%, #f48f62 100%);
    box-shadow: 0 14px 28px rgba(240, 109, 71, 0.25);
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 32px rgba(240, 109, 71, 0.3);
}

.button-small {
    padding: 0.68rem 1rem;
    font-size: 0.94rem;
}

.button-full {
    width: 100%;
}

.button-ghost {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.68);
    box-shadow: inset 0 0 0 1px var(--line);
}

.button-ghost:hover {
    box-shadow: inset 0 0 0 1px rgba(18, 33, 36, 0.2), 0 12px 22px rgba(27, 41, 45, 0.08);
}

.panel {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.panel-heading {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1.4rem;
}

.panel-heading h2,
.panel-heading p,
.panel-heading h3 {
    margin: 0;
}

.panel-heading p {
    color: var(--muted);
}

.eyebrow {
    display: inline-block;
    margin-bottom: 0.8rem;
    color: var(--accent-strong);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 800;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Fraunces", Georgia, serif;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(2.6rem, 6vw, 4.9rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: 1.35rem;
}

p {
    line-height: 1.7;
    color: var(--muted);
}

.hero {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem 0 3rem;
}

.hero-lead {
    max-width: 58ch;
    font-size: 1.08rem;
}

.hero-actions,
.export-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 2rem 0;
}

.hero-metrics,
.feature-grid,
.workflow-grid,
.stat-grid {
    display: grid;
    gap: 1rem;
}

.hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-card,
.feature-card,
.workflow-card,
.stat-card,
.callout-card {
    padding: 1.35rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.58);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.metric-card strong,
.stat-card strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 1rem;
}

.metric-card span,
.stat-card span {
    color: var(--muted);
}

.hero-panel {
    padding: 1.2rem;
}

.mockup-window {
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(180deg, #1f2e31 0%, #2b3d40 100%);
}

.mockup-bar {
    display: flex;
    gap: 0.45rem;
    padding: 1rem 1rem 0.3rem;
}

.mockup-bar span {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
}

.mockup-body {
    padding: 1.2rem;
}

.mockup-summary,
.mockup-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.mockup-summary {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.09);
}

.mockup-summary small,
.mockup-result span {
    color: rgba(255, 255, 255, 0.7);
}

.mockup-summary strong,
.mockup-result strong {
    color: white;
}

.mockup-result {
    margin-top: 0.8rem;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07);
}

.badge,
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.42rem 0.75rem;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 700;
}

.badge-valid,
.status-pill--valid {
    color: #176e60;
    background: var(--mint-soft);
}

.badge-invalid,
.status-pill--invalid {
    color: #9e2b2b;
    background: var(--danger-soft);
}

.badge-neutral,
.status-pill--unknown {
    color: #7b6119;
    background: #f9edc7;
}

.status-icon,
.avatar-dot {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 999px;
    flex: 0 0 auto;
}

.status-icon--valid {
    background: var(--mint);
    box-shadow: 0 0 0 6px rgba(66, 182, 165, 0.16);
}

.status-icon--invalid {
    background: var(--danger);
    box-shadow: 0 0 0 6px rgba(214, 87, 87, 0.14);
}

.status-icon--neutral {
    background: #d7ad36;
    box-shadow: 0 0 0 6px rgba(215, 173, 54, 0.16);
}

.avatar-dot {
    background: rgba(255, 255, 255, 0.2);
}

.avatar-dot--photo {
    background: linear-gradient(135deg, #7df0d0 0%, #43caa4 100%);
}

.content-section {
    padding: 2rem 0;
}

.section-heading {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.4rem;
}

.feature-grid,
.workflow-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.workflow-card,
.cta-banner,
.recent-panel,
.upload-panel,
.table-panel,
.auth-panel {
    padding: 1.6rem;
}

.workflow-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    margin-bottom: 1rem;
    border-radius: 18px;
    font-weight: 800;
    color: white;
    background: linear-gradient(135deg, var(--accent) 0%, #f49f62 100%);
}

.cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}

.auth-shell {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
    align-items: center;
    min-height: calc(100vh - 16rem);
}

.auth-copy {
    max-width: 34rem;
}

.stack-form {
    display: grid;
    gap: 1rem;
}

.field {
    display: grid;
    gap: 0.45rem;
}

.field span {
    font-weight: 700;
}

.field-help,
.auth-switch,
.checkbox-row span,
.batch-card span,
.batch-card small,
.notes-cell span {
    color: var(--muted);
}

.field-error {
    color: #a32929;
}

input[type="text"],
input[type="email"],
input[type="password"],
textarea {
    width: 100%;
    border: 1px solid rgba(18, 33, 36, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.95rem 1rem;
    color: var(--ink);
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

input:focus,
textarea:focus {
    border-color: rgba(240, 109, 71, 0.5);
    box-shadow: 0 0 0 4px rgba(240, 109, 71, 0.12);
    transform: translateY(-1px);
}

textarea {
    resize: vertical;
    min-height: 12rem;
}

.checkbox-row {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
}

.checkbox-row input {
    width: 1rem;
    height: 1rem;
}

.file-field {
    position: relative;
    display: flex;
    align-items: center;
    padding: 1rem 1rem;
    border: 1px dashed rgba(18, 33, 36, 0.24);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.58);
    overflow: hidden;
    cursor: pointer;
}

.file-field input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.dashboard-hero,
.batch-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.dashboard-hero-badge {
    padding: 1.25rem 1.35rem;
    min-width: 12rem;
    border-radius: 24px;
    color: white;
    background: linear-gradient(135deg, #20373b 0%, #36565c 100%);
    box-shadow: 0 20px 38px rgba(24, 39, 43, 0.2);
}

.dashboard-hero-badge strong {
    display: block;
    font-size: 2rem;
}

.dashboard-hero-badge span {
    color: rgba(255, 255, 255, 0.78);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.dashboard-side {
    display: grid;
    gap: 1rem;
}

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

.stat-grid--batch {
    margin-bottom: 1.25rem;
}

.stat-card strong {
    font-size: 1.8rem;
    margin-top: 0.4rem;
}

.callout-card h3 {
    margin-bottom: 0.85rem;
}

.callout-list,
.flash-list {
    margin: 0;
    padding-left: 1.1rem;
}

.recent-panel {
    display: grid;
    gap: 1rem;
}

.batch-card {
    display: grid;
    grid-template-columns: 1.2fr auto auto;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.55);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.batch-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(27, 41, 45, 0.08);
}

.batch-card strong,
.phone-cell strong {
    display: block;
    color: var(--ink);
}

.batch-card-metrics,
.batch-card-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.7rem;
    justify-content: flex-end;
}

.empty-state,
.empty-table {
    text-align: center;
    padding: 1.8rem;
    color: var(--muted);
}

.flash {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 1rem 1.2rem;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.flash strong {
    font-size: 0.95rem;
}

.flash-success {
    background: rgba(219, 245, 240, 0.92);
    color: #176e60;
}

.flash-error {
    background: rgba(255, 232, 228, 0.94);
    color: #9e2b2b;
}

.table-wrap {
    overflow-x: auto;
}

.results-table {
    width: 100%;
    border-collapse: collapse;
}

.results-table th,
.results-table td {
    padding: 1rem 0.9rem;
    border-bottom: 1px solid rgba(18, 33, 36, 0.08);
    text-align: left;
    vertical-align: middle;
}

.results-table th {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.photo-cell {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.avatar-frame {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.75);
    box-shadow: inset 0 0 0 1px rgba(18, 33, 36, 0.08);
}

.avatar-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-frame--empty {
    color: var(--muted);
    font-size: 0.78rem;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.4rem;
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.6rem;
    padding: 0.75rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.64);
    box-shadow: inset 0 0 0 1px rgba(18, 33, 36, 0.08);
    color: var(--ink);
}

.pagination-link--active {
    color: white;
    background: linear-gradient(135deg, var(--accent) 0%, #f49f62 100%);
    box-shadow: none;
}

.pagination-link--disabled {
    color: #9ca3af;
}

.site-footer {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(18, 33, 36, 0.08);
    background: rgba(255, 255, 255, 0.35);
}

.footer-inner {
    color: var(--muted);
    font-size: 0.92rem;
}

@media (max-width: 980px) {
    .hero,
    .dashboard-grid,
    .auth-shell,
    .feature-grid,
    .workflow-grid,
    .batch-card,
    .dashboard-hero,
    .batch-header,
    .cta-banner {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-metrics,
    .stat-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-hero-badge {
        min-width: auto;
    }

    .batch-card-metrics,
    .batch-card-stats {
        justify-content: flex-start;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 1.2rem, 100%);
    }

    .header-inner,
    .footer-inner,
    .site-nav {
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav {
        width: 100%;
    }

    .site-nav form,
    .site-nav .button,
    .site-nav > a {
        width: 100%;
    }

    .hero,
    .content-section {
        padding-top: 1rem;
    }

    h1 {
        font-size: 2.6rem;
    }

    .results-table th,
    .results-table td {
        padding: 0.8rem 0.5rem;
    }
}

/* Refined scale and visible locale switcher */
:root {
    --shadow: 0 18px 44px rgba(27, 41, 45, 0.1);
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 10px;
}

.container {
    width: min(1100px, calc(100% - 2rem));
}

.page-main {
    padding: 1.35rem 0 4rem;
}

.header-inner,
.footer-inner {
    padding: 0.8rem 0;
}

.header-tools {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.brand {
    gap: 0.75rem;
}

.brand-mark {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 14px;
    font-size: 0.78rem;
    box-shadow: 0 10px 22px rgba(240, 109, 71, 0.22);
}

.brand-copy strong {
    font-size: 0.92rem;
}

.brand-copy small {
    font-size: 0.78rem;
}

.locale-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.locale-switcher__label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.locale-switcher__options {
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
    padding: 0.2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
    box-shadow: inset 0 0 0 1px rgba(18, 33, 36, 0.08);
}

.locale-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3rem;
    padding: 0.42rem 0.72rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--muted);
    transition: 160ms ease;
}

.locale-chip.is-active {
    color: white;
    background: linear-gradient(135deg, #20373b 0%, #36565c 100%);
}

.site-nav {
    gap: 0.65rem;
}

.site-nav > a:not(.button) {
    padding: 0.38rem 0.66rem;
    font-size: 0.9rem;
}

.button {
    padding: 0.76rem 1.05rem;
    font-size: 0.92rem;
    box-shadow: 0 12px 24px rgba(240, 109, 71, 0.22);
}

.button-small {
    padding: 0.55rem 0.88rem;
    font-size: 0.84rem;
}

.panel-heading {
    margin-bottom: 1.05rem;
}

.eyebrow {
    margin-bottom: 0.65rem;
    font-size: 0.68rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.55rem);
}

h2 {
    font-size: clamp(1.55rem, 3vw, 2.35rem);
}

h3 {
    font-size: 1.12rem;
}

p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.hero {
    gap: 1.4rem;
    padding: 1rem 0 2.2rem;
}

.hero-lead {
    font-size: 0.98rem;
}

.hero-actions,
.export-actions {
    gap: 0.65rem;
    margin: 1.25rem 0 0.9rem;
}

.hero-note {
    max-width: 52ch;
    margin: 0 0 1rem;
    padding: 0.7rem 0.9rem;
    border-radius: 14px;
    color: #7b6119;
    background: #f9edc7;
    font-size: 0.9rem;
}

.hero-metrics,
.feature-grid,
.workflow-grid,
.stat-grid {
    gap: 0.85rem;
}

.metric-card,
.feature-card,
.workflow-card,
.stat-card,
.callout-card {
    padding: 1rem;
}

.metric-card strong,
.stat-card strong {
    margin-bottom: 0.25rem;
    font-size: 0.96rem;
}

.hero-panel {
    padding: 0.95rem;
}

.mockup-window {
    border-radius: 20px;
}

.mockup-body {
    padding: 1rem;
}

.mockup-summary {
    margin-bottom: 0.85rem;
    padding: 0.8rem;
    border-radius: 16px;
}

.mockup-result {
    margin-top: 0.65rem;
    padding: 0.78rem 0.85rem;
    border-radius: 14px;
}

.badge,
.status-pill {
    padding: 0.34rem 0.62rem;
    font-size: 0.78rem;
}

.content-section {
    padding: 1.4rem 0;
}

.feature-card,
.workflow-card,
.cta-banner,
.recent-panel,
.upload-panel,
.table-panel,
.auth-panel {
    padding: 1.2rem;
}

.workflow-step {
    width: 2.2rem;
    height: 2.2rem;
    margin-bottom: 0.8rem;
    border-radius: 14px;
}

.auth-shell {
    gap: 1.5rem;
    min-height: calc(100vh - 14rem);
}

.stack-form {
    gap: 0.85rem;
}

input[type="text"],
input[type="email"],
input[type="password"],
textarea {
    border-radius: 14px;
    padding: 0.8rem 0.9rem;
}

textarea {
    min-height: 10rem;
}

.file-field {
    padding: 0.85rem 0.95rem;
    border-radius: 14px;
}

.dashboard-hero,
.batch-header {
    margin-bottom: 1.1rem;
}

.dashboard-hero-badge {
    padding: 0.95rem 1rem;
    min-width: 10rem;
    border-radius: 18px;
    box-shadow: 0 16px 28px rgba(24, 39, 43, 0.16);
}

.dashboard-hero-badge strong {
    font-size: 1.55rem;
}

.dashboard-grid {
    gap: 1rem;
    margin-bottom: 1rem;
}

.stat-grid--batch {
    margin-bottom: 1rem;
}

.stat-card strong {
    font-size: 1.45rem;
    margin-top: 0.3rem;
}

.batch-card {
    padding: 0.85rem 0.95rem;
    border-radius: 16px;
}

.flash {
    padding: 0.85rem 1rem;
    border-radius: 14px;
}

.results-table th,
.results-table td {
    padding: 0.8rem 0.75rem;
}

.avatar-frame {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 12px;
}

.pagination-link {
    min-width: 2.3rem;
    padding: 0.58rem 0.8rem;
    font-size: 0.88rem;
}

.footer-inner {
    font-size: 0.84rem;
}

@media (max-width: 980px) {
    .header-tools {
        justify-content: flex-start;
    }
}

@media (max-width: 720px) {
    .header-inner,
    .footer-inner,
    .header-tools,
    .site-nav {
        flex-direction: column;
        align-items: stretch;
    }

    .header-tools,
    .site-nav,
    .locale-switcher {
        width: 100%;
    }

    .locale-switcher {
        justify-content: space-between;
    }
}
