/* ============================================================
   Global Trade — One Pager
   Palette: off-white, warm beige, anthracite, muted terracotta
   ============================================================ */

:root {
    --c-bg: #f8f6f1;
    --c-bg-alt: #f1ede4;
    --c-beige: #e8e2d5;
    --c-beige-soft: #efeae0;
    --c-text: #2b2b2b;
    --c-text-soft: #5a5752;
    --c-muted: #8a857c;
    --c-accent: #b8896a;
    --c-accent-dark: #9c6f53;
    --c-line: #d9d3c4;
    --c-white: #ffffff;

    --shadow-sm: 0 2px 10px rgba(43, 43, 43, 0.04);
    --shadow-md: 0 12px 40px rgba(43, 43, 43, 0.08);
    --shadow-lg: 0 30px 80px rgba(43, 43, 43, 0.10);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Fraunces', Georgia, serif;

    --container: 1200px;
    --section-y: clamp(80px, 10vw, 140px);
}

/* ============================================================
   Base
   ============================================================ */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--c-text);
    background: var(--c-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--c-accent-dark);
    text-decoration: none;
    transition: color 0.25s ease;
}

a:hover {
    color: var(--c-text);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-y) 0;
    position: relative;
}

/* Typography */

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    color: var(--c-text);
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.eyebrow {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 18px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    margin-bottom: 24px;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--c-text-soft);
    max-width: 640px;
    margin: 0 auto;
}

.lead {
    font-size: 1.125rem;
    color: var(--c-text-soft);
    margin-bottom: 18px;
}

em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--c-accent);
    font-weight: 400;
}

.section-head {
    text-align: center;
    margin-bottom: 70px;
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: 1px solid transparent;
    white-space: nowrap;
}

.btn i {
    font-size: 0.85em;
    transition: transform 0.3s ease;
}

.btn-primary {
    background: var(--c-text);
    color: var(--c-bg);
}

.btn-primary:hover {
    background: var(--c-accent-dark);
    color: var(--c-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-ghost {
    background: transparent;
    color: var(--c-text);
    border-color: var(--c-line);
}

.btn-ghost:hover {
    background: var(--c-beige);
    border-color: var(--c-text);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ============================================================
   Header / Nav
   ============================================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 18px 0;
    transition: all 0.3s ease;
    background: rgba(248, 246, 241, 0);
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
}

.site-header.scrolled {
    background: rgba(248, 246, 241, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(217, 211, 196, 0.5);
    padding: 12px 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--c-text);
    font-weight: 500;
}

.brand:hover {
    color: var(--c-accent-dark);
}

.brand-mark {
    height: 52px;
    width: auto;
    flex-shrink: 0;
    object-fit: contain;
    transition: height 0.3s ease;
}

.site-header.scrolled .brand-mark {
    height: 42px;
}

.footer-brand .brand-mark {
    height: 46px;
}

.brand-text {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    letter-spacing: 0.04em;
    font-weight: 500;
}

.brand-suffix {
    font-weight: 300;
    color: var(--c-text-soft);
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--c-text);
    font-size: 0.94rem;
    font-weight: 400;
    position: relative;
    padding: 6px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--c-accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.nav-cta {
    background: var(--c-text);
    color: var(--c-bg);
    padding: 10px 22px;
    border-radius: 999px;
    transition: all 0.3s ease;
}

.nav-links a.nav-cta::after {
    display: none;
}

.nav-links a.nav-cta:hover {
    background: var(--c-accent-dark);
    color: var(--c-white);
}

/* Language switcher */
.lang-switch-wrap {
    display: flex;
    align-items: center;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(232, 226, 213, 0.4);
    border: 1px solid var(--c-line);
}

.lang-btn {
    color: var(--c-muted);
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 4px 6px;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease;
    text-transform: uppercase;
    line-height: 1;
}

.lang-btn:hover {
    color: var(--c-text);
}

.lang-btn.active {
    color: var(--c-accent-dark);
}

.lang-sep {
    color: var(--c-line);
    font-size: 0.7rem;
    user-select: none;
    line-height: 1;
}

.nav-toggle {
    display: none;
    width: 38px;
    height: 38px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.nav-toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--c-text);
    transition: all 0.3s ease;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 140px 0 100px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1494412519320-aa613dfb7738?auto=format&fit=crop&w=2400&q=80');
    background-size: cover;
    background-position: center;
    filter: grayscale(0.6) brightness(1.05);
    transform: scale(1.05);
    animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to   { transform: scale(1.12); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(248, 246, 241, 0.55) 0%, rgba(248, 246, 241, 0.85) 60%, rgba(248, 246, 241, 0.98) 100%),
        radial-gradient(circle at 30% 40%, rgba(184, 137, 106, 0.08) 0%, transparent 60%);
}

.hero-watermark {
    position: absolute !important;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(560px, 85vw, 1200px);
    max-width: 1200px;
    height: auto;
    opacity: 0.12;
    z-index: 1;
    pointer-events: none;
    animation: watermarkFade 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-watermark img {
    display: block;
    width: 100%;
    height: auto;
    filter: saturate(0.9);
}

@keyframes watermarkFade {
    from { opacity: 0; transform: translateY(-50%) scale(1.05); }
    to   { opacity: 0.12; transform: translateY(-50%) scale(1); }
}

@media (max-width: 720px) {
    .hero-watermark {
        right: 50%;
        top: 30%;
        transform: translate(50%, -50%);
        width: 130vw;
        opacity: 0.08;
    }
    @keyframes watermarkFade {
        from { opacity: 0; transform: translate(50%, -50%) scale(1.05); }
        to   { opacity: 0.08; transform: translate(50%, -50%) scale(1); }
    }
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 880px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.75rem);
    font-weight: 400;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.hero-sub {
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    color: var(--c-text-soft);
    max-width: 620px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 44px;
    border: 1.5px solid var(--c-muted);
    border-radius: 14px;
    z-index: 3;
}

.hero-scroll span {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    border-radius: 2px;
    background: var(--c-muted);
    animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
    0% { opacity: 1; top: 8px; }
    50% { opacity: 0.3; top: 22px; }
    100% { opacity: 1; top: 8px; }
}

/* ============================================================
   About
   ============================================================ */

.about {
    background: var(--c-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-bullets {
    list-style: none;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-bullets li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--c-text-soft);
    font-size: 1rem;
}

.about-bullets i {
    color: var(--c-accent);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--c-beige);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

.about-visual {
    position: relative;
}

.about-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, #f8f6f1 0%, #efeae0 100%);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-globe {
    width: 100%;
    height: 100%;
    display: block;
}

.about-globe .globe-origin circle:first-child {
    transform-origin: 196px 198px;
    animation: globePulse 3s ease-out infinite;
}

@keyframes globePulse {
    0%   { transform: scale(1);   opacity: 0.35; }
    100% { transform: scale(2.2); opacity: 0;    }
}

.about-card {
    position: absolute;
    bottom: -32px;
    left: -32px;
    background: var(--c-bg);
    padding: 26px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    max-width: 260px;
    border: 1px solid var(--c-line);
}

.about-card i {
    font-size: 1.6rem;
    color: var(--c-accent);
    margin-bottom: 10px;
    display: block;
}

.about-card p {
    font-size: 0.92rem;
    color: var(--c-text-soft);
    line-height: 1.5;
}

/* ============================================================
   Trust
   ============================================================ */

.trust {
    background: var(--c-beige-soft);
    position: relative;
    overflow: hidden;
}

.trust::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 137, 106, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.trust-card {
    background: var(--c-bg);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.trust-card:hover {
    transform: translateY(-6px);
    border-color: var(--c-line);
    box-shadow: var(--shadow-md);
}

.trust-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: var(--c-beige);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: all 0.3s ease;
}

.trust-icon i {
    font-size: 1.3rem;
    color: var(--c-accent-dark);
}

.trust-card:hover .trust-icon {
    background: var(--c-accent);
}

.trust-card:hover .trust-icon i {
    color: var(--c-bg);
}

.trust-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.trust-card p {
    font-size: 0.94rem;
    color: var(--c-text-soft);
    line-height: 1.6;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    padding-top: 50px;
    border-top: 1px solid var(--c-line);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--c-bg);
    border: 1px solid var(--c-line);
    border-radius: 999px;
    font-size: 0.85rem;
    color: var(--c-text-soft);
    letter-spacing: 0.02em;
}

.badge i {
    color: var(--c-accent);
    font-size: 0.9rem;
}

/* ============================================================
   Presence / Map
   ============================================================ */

.presence {
    background: var(--c-bg);
}

.map-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--c-line);
    background: var(--c-bg-alt);
    box-shadow: var(--shadow-md);
}

#map {
    width: 100%;
    height: 560px;
    background: var(--c-beige-soft);
}

/* Override Leaflet defaults to feel lighter */
.leaflet-container {
    background: #f0ece2 !important;
    font-family: var(--font-sans) !important;
}

.leaflet-control-attribution {
    background: rgba(248, 246, 241, 0.85) !important;
    color: var(--c-muted) !important;
    font-size: 10px !important;
    padding: 2px 8px !important;
}

.leaflet-control-attribution a {
    color: var(--c-accent-dark) !important;
}

.leaflet-control-zoom a {
    background: var(--c-bg) !important;
    color: var(--c-text) !important;
    border-color: var(--c-line) !important;
}

.leaflet-control-zoom a:hover {
    background: var(--c-beige) !important;
}

/* Custom pulse marker */
.pulse-marker {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--c-accent);
    position: relative;
    box-shadow: 0 0 0 4px rgba(184, 137, 106, 0.25);
}

.pulse-marker::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--c-accent);
    opacity: 0.5;
    animation: markerPulse 2.4s ease-out infinite;
}

@keyframes markerPulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(3); opacity: 0; }
}

/* HQ marker — Switzerland, accented */
.hq-marker {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--c-accent);
    border: 3px solid var(--c-bg);
    box-shadow: 0 0 0 3px var(--c-accent), 0 4px 14px rgba(43, 43, 43, 0.18);
    position: relative;
}

.hq-marker-label {
    position: absolute;
    top: 50%;
    left: calc(100% + 10px);
    transform: translateY(-50%);
    background: var(--c-bg);
    color: var(--c-text);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 4px 9px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--c-line);
    white-space: nowrap;
    pointer-events: none;
    box-shadow: var(--shadow-sm);
}

.map-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 30px;
    background: var(--c-bg);
    border-top: 1px solid var(--c-line);
}

.map-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-value {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    color: var(--c-text);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--c-muted);
}

/* ============================================================
   Contact
   ============================================================ */

.contact {
    background: var(--c-beige-soft);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.contact-list {
    list-style: none;
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-list i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--c-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-accent-dark);
    font-size: 0.95rem;
    flex-shrink: 0;
    border: 1px solid var(--c-line);
}

.contact-list .contact-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--c-muted);
    margin-bottom: 4px;
}

.contact-list a,
.contact-list span:last-child {
    color: var(--c-text);
    font-size: 1rem;
}

.contact-list a:hover {
    color: var(--c-accent-dark);
}

/* Form */

.contact-form {
    background: var(--c-bg);
    padding: 44px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-line);
    box-shadow: var(--shadow-sm);
}

.field {
    margin-bottom: 22px;
}

.hp-field {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--c-text);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-sm);
    background: var(--c-bg);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--c-text);
    transition: all 0.25s ease;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
    border-color: var(--c-muted);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--c-accent);
    box-shadow: 0 0 0 3px rgba(184, 137, 106, 0.12);
}

.field textarea {
    resize: vertical;
    min-height: 110px;
    font-family: inherit;
}

.field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%235a5752' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-status {
    margin-top: 16px;
    font-size: 0.9rem;
    min-height: 20px;
}

.form-status.success {
    color: #4a7c59;
}

.form-status.error {
    color: #b8525a;
}

.form-note {
    margin-top: 16px;
    font-size: 0.78rem;
    color: var(--c-muted);
    line-height: 1.5;
}

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
    padding: 40px 0;
    background: var(--c-bg);
    border-top: 1px solid var(--c-line);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--c-text);
    font-weight: 500;
}

.footer-brand .brand-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--c-muted);
}

.footer-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.footer-links a {
    color: var(--c-text-soft);
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: var(--c-accent-dark);
}

/* ============================================================
   Reveal animations
   ============================================================ */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.hero .reveal {
    transition-duration: 1.1s;
}

.hero .reveal:nth-child(1) { transition-delay: 0.1s; }
.hero .reveal:nth-child(2) { transition-delay: 0.25s; }
.hero .reveal:nth-child(3) { transition-delay: 0.4s; }
.hero .reveal:nth-child(4) { transition-delay: 0.55s; }

.trust-grid .reveal:nth-child(1) { transition-delay: 0s; }
.trust-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.trust-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.trust-grid .reveal:nth-child(4) { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 980px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-card {
        left: 24px;
        bottom: -24px;
    }

    .about-image {
        aspect-ratio: 16 / 11;
    }

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

    .map-stats {
        gap: 30px;
        flex-wrap: wrap;
    }
}

@media (max-width: 720px) {
    :root {
        --section-y: 80px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(80vw, 320px);
        flex-direction: column;
        align-items: flex-start;
        background: var(--c-bg);
        padding: 100px 36px 36px;
        gap: 22px;
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        border-left: 1px solid var(--c-line);
    }

    .nav-links.is-open {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    .lang-switch-wrap {
        margin-top: 8px;
        padding-top: 18px;
        border-top: 1px solid var(--c-line);
        width: 100%;
    }

    .lang-switch {
        padding: 6px 14px;
    }

    .lang-btn {
        font-size: 0.85rem;
        padding: 6px 8px;
    }

    .hero {
        padding: 120px 0 80px;
        min-height: auto;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-card {
        padding: 32px 26px;
    }

    .contact-form {
        padding: 28px 22px;
    }

    #map {
        height: 420px;
    }

    .map-stats {
        gap: 24px;
        padding: 24px 16px;
    }

    .stat-value {
        font-size: 1.75rem;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .badges {
        gap: 10px;
    }

    .badge {
        font-size: 0.78rem;
        padding: 8px 14px;
    }

    .brand-suffix {
        display: none;
    }
}

/* ============================================================
   Legal pages (imprint, privacy, terms)
   ============================================================ */

.legal-page {
    padding: 130px 0 100px;
    background: var(--c-bg);
}

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--c-text-soft);
    text-decoration: none;
    font-size: 0.92rem;
    margin-bottom: 36px;
    transition: color 0.2s ease;
}

.legal-back:hover { color: var(--c-accent); }

.legal-section {
    display: none;
    max-width: 760px;
}

.legal-section.is-active { display: block; }

.legal-section h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 8px;
}

.legal-section .legal-meta {
    color: var(--c-muted);
    font-size: 0.88rem;
    margin-bottom: 40px;
}

.legal-section h2 {
    font-family: 'Fraunces', serif;
    font-size: 1.35rem;
    font-weight: 500;
    margin: 48px 0 14px;
    color: var(--c-text);
}

.legal-section h3 {
    font-size: 1.02rem;
    font-weight: 600;
    margin: 24px 0 8px;
    color: var(--c-text);
}

.legal-section p,
.legal-section li {
    line-height: 1.75;
    color: var(--c-text-soft);
    margin-bottom: 12px;
}

.legal-section ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.legal-section dl {
    margin: 14px 0 22px;
}

.legal-section dt {
    font-weight: 600;
    color: var(--c-text);
    margin-top: 12px;
}

.legal-section dt:first-child { margin-top: 0; }

.legal-section dd {
    margin: 0 0 4px 0;
    color: var(--c-text-soft);
}

.legal-section .placeholder {
    background: rgba(184, 137, 106, 0.12);
    color: var(--c-accent-dark);
    padding: 1px 7px;
    border-radius: 3px;
    font-weight: 500;
    font-size: 0.92em;
    white-space: nowrap;
}
