/* ═══════════════════════════════════════════════════════════
   Finanzinvest Consulting GmbH — Stylesheet
   ═══════════════════════════════════════════════════════════ */

/* ── Custom Properties ─────────────────────────────────── */
:root {
    --color-primary: #1B2A4A;
    --color-primary-light: #2A3F6A;
    --color-primary-dark: #0F1A2E;
    --color-secondary: #C5A55A;
    --color-secondary-light: #D4B96A;
    --color-secondary-dark: #A68B3E;
    --color-accent: #3B7DD8;

    --color-bg: #FAFAF8;
    --color-bg-alt: #F0EDE8;
    --color-bg-dark: #1B2A4A;
    --color-white: #FFFFFF;
    --color-text: #1A1A2E;
    --color-text-light: #5A6577;
    --color-text-muted: #8896A7;
    --color-border: #DDD8D0;
    --color-border-light: #EBE8E3;

    --color-success: #2D8A4E;
    --color-error: #C53030;

    --font-heading: 'Source Serif 4', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-md: 1.125rem;
    --fs-lg: 1.25rem;
    --fs-xl: 1.5rem;
    --fs-2xl: 2rem;
    --fs-3xl: 2.5rem;
    --fs-4xl: 3.25rem;

    --fw-normal: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;

    --leading-tight: 1.2;
    --leading-normal: 1.6;
    --leading-relaxed: 1.75;

    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;

    --shadow-sm: 0 1px 2px rgba(27, 42, 74, 0.06);
    --shadow-md: 0 4px 12px rgba(27, 42, 74, 0.08);
    --shadow-lg: 0 8px 30px rgba(27, 42, 74, 0.12);
    --shadow-xl: 0 16px 50px rgba(27, 42, 74, 0.15);

    --transition: 0.25s ease;
    --container-max: 1200px;
    --container-narrow: 800px;
}

/* ── Reset / Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    line-height: var(--leading-normal);
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-primary); }
a:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; border-radius: var(--radius-sm); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: var(--fw-semibold);
    line-height: var(--leading-tight);
    color: var(--color-primary);
}

ul, ol { list-style: none; }
address { font-style: normal; }

/* ── Skip Link (Accessibility) ─────────────────────────── */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-md);
    background: var(--color-primary);
    color: var(--color-white);
    padding: var(--space-sm) var(--space-md);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    z-index: 9999;
    font-size: var(--fs-sm);
    transition: top var(--transition);
}
.skip-link:focus {
    top: 0;
    outline: 2px solid var(--color-secondary);
}

.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ── Container ─────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}
.container--narrow { max-width: var(--container-narrow); }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.75rem;
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    letter-spacing: 0.025em;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1;
}
.btn:focus-visible { outline: 2px solid var(--color-secondary); outline-offset: 2px; }

.btn--primary {
    background: var(--color-secondary);
    color: var(--color-primary-dark);
    border-color: var(--color-secondary);
}
.btn--primary:hover {
    background: var(--color-secondary-dark);
    border-color: var(--color-secondary-dark);
    color: var(--color-white);
}

.btn--outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.btn--outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn--lg { padding: 1rem 2.25rem; font-size: var(--fs-base); }
.btn--sm { padding: 0.5rem 1.25rem; font-size: var(--fs-xs); }

/* ── Header / Navigation ──────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-sm);
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.site-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1.15;
}
.site-logo:hover { color: var(--color-primary); }
.logo-text {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    color: var(--color-primary);
    letter-spacing: 0.02em;
}
.logo-sub {
    font-size: var(--fs-xs);
    color: var(--color-text-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}
.nav-toggle__bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    transition: all var(--transition);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}
.nav-menu a {
    display: block;
    padding: var(--space-sm) var(--space-md);
    color: var(--color-text);
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    letter-spacing: 0.01em;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.nav-menu a:hover { color: var(--color-primary); background: var(--color-bg-alt); }
.nav-menu a.is-active {
    color: var(--color-primary);
    background: var(--color-bg-alt);
    font-weight: var(--fw-semibold);
}

/* ── Hero ──────────────────────────────────────────────── */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 500px;
    overflow: hidden;
}
.page-home .hero { min-height: 600px; }

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__bg--gradient {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 50%, #3a5a8a 100%);
}
.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 26, 46, 0.85) 0%, rgba(27, 42, 74, 0.7) 100%);
}

.hero__content {
    position: relative;
    z-index: 1;
    padding: var(--space-4xl) 0;
    max-width: 700px;
}
.hero__title {
    font-size: var(--fs-4xl);
    color: var(--color-white);
    margin-bottom: var(--space-md);
    font-weight: var(--fw-bold);
}
.hero__subtitle {
    font-size: var(--fs-lg);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-2xl);
    line-height: var(--leading-relaxed);
}

/* ── Sections ──────────────────────────────────────────── */
.section {
    padding: var(--space-4xl) 0;
}
.section--services,
.section--trust,
.section--team-teaser,
.section--values { background: var(--color-bg-alt); }

.section--cta {
    background: var(--color-primary);
    padding: var(--space-4xl) 0;
}

.section-title {
    font-size: var(--fs-3xl);
    margin-bottom: var(--space-xl);
    color: var(--color-primary);
}
.section-title--center { text-align: center; }

.section-intro {
    max-width: 700px;
    margin-bottom: var(--space-2xl);
}
.section-lead {
    font-size: var(--fs-md);
    color: var(--color-text-light);
    line-height: var(--leading-relaxed);
}

.section-subtitle {
    font-size: var(--fs-base);
    color: var(--color-text-light);
    margin-bottom: var(--space-2xl);
    max-width: 700px;
}

.section-action {
    text-align: center;
    margin-top: var(--space-2xl);
}

/* ── Card Grid ─────────────────────────────────────────── */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

/* ── Service Cards ─────────────────────────────────────── */
.service-card {
    background: var(--color-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--color-border-light);
}
.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.service-card__icon {
    font-size: 2rem;
    margin-bottom: var(--space-md);
    color: var(--color-secondary);
}
.service-card__title {
    font-size: var(--fs-lg);
    margin-bottom: var(--space-sm);
}
.service-card__text {
    color: var(--color-text-light);
    font-size: var(--fs-sm);
    line-height: var(--leading-relaxed);
}

/* ── Service Detail (Leistungen page) ──────────────────── */
.service-detail {
    display: flex;
    gap: var(--space-xl);
    padding: var(--space-2xl) 0;
    border-bottom: 1px solid var(--color-border-light);
}
.service-detail:last-child { border-bottom: none; }
.service-detail__icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    color: var(--color-secondary-dark);
}
.service-detail__content h3 {
    font-size: var(--fs-xl);
    margin-bottom: var(--space-sm);
}
.service-detail__content p {
    color: var(--color-text-light);
    line-height: var(--leading-relaxed);
}

/* ── Trust Section ─────────────────────────────────────── */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-xl);
}
.trust-item {
    text-align: center;
    padding: var(--space-xl);
}
.trust-item__icon {
    color: var(--color-secondary);
    margin-bottom: var(--space-md);
}
.trust-item__title {
    font-size: var(--fs-lg);
    margin-bottom: var(--space-sm);
}
.trust-item__text {
    font-size: var(--fs-sm);
    color: var(--color-text-light);
    line-height: var(--leading-relaxed);
}

/* ── Values Section ────────────────────────────────────── */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-2xl);
}
.value-item {
    padding: var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.value-item__icon {
    color: var(--color-secondary);
    margin-bottom: var(--space-md);
}
.value-item h3 {
    font-size: var(--fs-lg);
    margin-bottom: var(--space-sm);
}
.value-item p {
    color: var(--color-text-light);
    font-size: var(--fs-sm);
    line-height: var(--leading-relaxed);
}

/* ── Team ──────────────────────────────────────────────── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-2xl);
}
.team-grid--compact {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--space-xl);
}

.team-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
    transition: box-shadow var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); }

.team-card__photo {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--color-bg-alt);
}
.team-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}
.team-card:hover .team-card__photo img { transform: scale(1.03); }

.team-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
}

.team-card__body { padding: var(--space-lg); }
.team-card__name {
    font-size: var(--fs-lg);
    margin-bottom: var(--space-xs);
}
.team-card__role {
    font-size: var(--fs-sm);
    color: var(--color-secondary-dark);
    font-weight: var(--fw-medium);
    margin-bottom: var(--space-sm);
}
.team-card__bio { margin-bottom: var(--space-md); }

.team-card__contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}
.team-card__contact a {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--fs-sm);
    color: var(--color-text-light);
}
.team-card__contact a:hover { color: var(--color-accent); }

.team-card--compact { text-align: center; }
.team-card--compact .team-card__photo { aspect-ratio: 1; }
.team-card--compact .team-card__name { font-size: var(--fs-base); }
.team-card--compact .team-card__role { font-size: var(--fs-xs); }

/* ── Tied Agents ───────────────────────────────────────── */
.section--tied-agents { background: var(--color-bg); }

.tied-agents-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
}
.tied-agent-card {
    padding: var(--space-lg);
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
}
.tied-agent-card__name {
    font-size: var(--fs-base);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-xs);
}
.tied-agent-card__role {
    font-size: var(--fs-sm);
    color: var(--color-text-light);
    margin-bottom: var(--space-sm);
}
.tied-agent-card__contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    font-size: var(--fs-sm);
}
.tied-agent-card__contact a { color: var(--color-text-light); }
.tied-agent-card__contact a:hover { color: var(--color-accent); }

/* ── CTA Block ─────────────────────────────────────────── */
.cta-block {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.cta-block__title {
    font-size: var(--fs-3xl);
    color: var(--color-white);
    margin-bottom: var(--space-md);
}
.cta-block__text {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--fs-md);
    margin-bottom: var(--space-2xl);
    line-height: var(--leading-relaxed);
}

/* ── Contact ───────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--space-3xl);
    align-items: start;
}

.contact-form { display: flex; flex-direction: column; gap: var(--space-lg); }
.form-row { display: flex; gap: var(--space-lg); }
.form-group { display: flex; flex-direction: column; gap: var(--space-xs); flex: 1; }
.form-group--half { flex: 0 0 calc(50% - var(--space-sm)); }

.form-label {
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--color-text);
}
.form-label span { color: var(--color-error); }

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: var(--fs-base);
    color: var(--color-text);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(59, 125, 216, 0.15);
}
.form-textarea { resize: vertical; min-height: 120px; }

.form-group--checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-sm);
}
.form-group--checkbox input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    accent-color: var(--color-primary);
}
.form-label--inline {
    font-weight: var(--fw-normal);
    font-size: var(--fs-sm);
    line-height: var(--leading-normal);
}

.form-actions { padding-top: var(--space-sm); }

.alert {
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-xl);
}
.alert--success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: var(--color-success);
}
.alert p { margin: 0; }

/* ── Contact Sidebar ───────────────────────────────────── */
.contact-sidebar { display: flex; flex-direction: column; gap: var(--space-lg); }

.contact-info-card {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}
.contact-info-card h3 {
    font-size: var(--fs-lg);
    margin-bottom: var(--space-lg);
}
.contact-info-card--regulatory {
    background: var(--color-bg-alt);
    border-color: var(--color-border);
}
.contact-info-card--regulatory p {
    font-size: var(--fs-sm);
    color: var(--color-text-light);
    line-height: var(--leading-relaxed);
}

.contact-info-item {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-item svg { flex-shrink: 0; color: var(--color-secondary); margin-top: 2px; }
.contact-info-item a { color: var(--color-text); }
.contact-info-item a:hover { color: var(--color-accent); }

/* ── Legal Pages ───────────────────────────────────────── */
.section--legal-header {
    background: var(--color-primary);
    padding: var(--space-3xl) 0;
}
.legal-title {
    font-size: var(--fs-3xl);
    color: var(--color-white);
}
.section--legal-content { padding: var(--space-3xl) 0 var(--space-4xl); }

.text-muted { color: var(--color-text-muted); }

/* ── Prose (Rich Text Content) ─────────────────────────── */
.prose { max-width: 75ch; }
.prose h2 { font-size: var(--fs-2xl); margin: var(--space-2xl) 0 var(--space-md); }
.prose h3 { font-size: var(--fs-xl); margin: var(--space-xl) 0 var(--space-md); }
.prose h4 { font-size: var(--fs-lg); margin: var(--space-lg) 0 var(--space-sm); }
.prose p { margin-bottom: var(--space-md); line-height: var(--leading-relaxed); }
.prose ul, .prose ol {
    margin: var(--space-md) 0;
    padding-left: var(--space-xl);
}
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: var(--space-sm); line-height: var(--leading-relaxed); }
.prose a { color: var(--color-accent); text-decoration: underline; }
.prose a:hover { color: var(--color-primary); }
.prose blockquote {
    border-left: 3px solid var(--color-secondary);
    padding-left: var(--space-lg);
    margin: var(--space-xl) 0;
    color: var(--color-text-light);
    font-style: italic;
}
.prose img {
    border-radius: var(--radius-md);
    margin: var(--space-xl) 0;
}
.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-xl) 0;
}
.prose th, .prose td {
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--color-border);
    text-align: left;
}
.prose th {
    background: var(--color-bg-alt);
    font-weight: var(--fw-semibold);
}
.prose-sm { font-size: var(--fs-sm); }
.prose-sm p { margin-bottom: var(--space-sm); }

/* ── Footer ────────────────────────────────────────────── */
.site-footer {
    background: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

.footer-logo .logo-text { color: var(--color-white); font-size: var(--fs-xl); }
.footer-logo .logo-sub { color: rgba(255, 255, 255, 0.5); }

.footer-tagline {
    margin-top: var(--space-md);
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.5);
    line-height: var(--leading-relaxed);
}

.footer-heading {
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-secondary);
    margin-bottom: var(--space-lg);
}

.footer-address {
    font-size: var(--fs-sm);
    line-height: var(--leading-relaxed);
}
.footer-address a {
    color: rgba(255, 255, 255, 0.75);
}
.footer-address a:hover { color: var(--color-secondary); }

.footer-links li { margin-bottom: var(--space-sm); }
.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: var(--fs-sm);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--color-secondary); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-xl);
    text-align: center;
}
.footer-bottom p {
    font-size: var(--fs-sm);
    margin-bottom: var(--space-xs);
}
.footer-regulatory {
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.4);
}

/* ── Cookie Consent ────────────────────────────────────── */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}
.cookie-consent.is-visible { transform: translateY(0); }

.cookie-consent__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-lg) var(--space-xl);
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}
.cookie-consent__inner p {
    font-size: var(--fs-sm);
    color: var(--color-text-light);
    flex: 1;
    margin: 0;
}
.cookie-consent__actions { flex-shrink: 0; }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root {
        --fs-4xl: 2.25rem;
        --fs-3xl: 1.875rem;
        --fs-2xl: 1.5rem;
    }

    .nav-toggle { display: flex; }

    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--color-white);
        border-bottom: 1px solid var(--color-border);
        padding: var(--space-md);
        box-shadow: var(--shadow-lg);
    }
    .nav-menu.is-open { display: flex; }
    .nav-menu a { padding: var(--space-md); }

    .hero { min-height: 400px; }
    .page-home .hero { min-height: 450px; }
    .hero__title { font-size: var(--fs-3xl); }
    .hero__content { padding: var(--space-3xl) 0; }

    .section { padding: var(--space-3xl) 0; }

    .form-row { flex-direction: column; }
    .form-group--half { flex: 1; }

    .footer-grid { grid-template-columns: 1fr; gap: var(--space-xl); }

    .service-detail { flex-direction: column; gap: var(--space-md); }
    .service-detail__icon { width: 60px; height: 60px; }

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

    .cookie-consent__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 var(--space-md); }
    .team-grid--compact { grid-template-columns: 1fr; }
}

/* ── Print ─────────────────────────────────────────────── */
@media print {
    .site-header, .site-footer, .cookie-consent, .section--cta, .btn { display: none; }
    .hero { min-height: auto; background: none; }
    .hero__bg, .hero__overlay { display: none; }
    .hero__title { color: #000; font-size: 24pt; }
    .hero__subtitle { color: #333; }
    body { font-size: 12pt; color: #000; background: #fff; }
}
