/* BrandVector — Directional Editorial */
:root {
    --ink: #18181B;
    --coral: #F43F5E;
    --paper: #FFFBEB;
    --paper-dark: #F5F0D8;
    --ink-muted: #52525B;
    --ink-light: #71717A;
    --border: rgba(24, 24, 27, 0.12);
    --border-coral: rgba(244, 63, 94, 0.25);
    --font-display: 'Syne', 'Archivo', system-ui, sans-serif;
    --font-headline: 'Archivo', 'Syne', system-ui, sans-serif;
    --font-body: 'Source Sans 3', system-ui, sans-serif;
    --radius: 4px;
    --shadow: 0 20px 50px rgba(24, 24, 27, 0.12);
    --max-width: 1180px;
    --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--ink);
    background: var(--paper);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.axis-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.axis-accent {
    position: absolute;
    width: 140px;
    height: 140px;
    color: rgba(244, 63, 94, 0.12);
}
.axis-accent--tl { top: 8%; left: 4%; }
.axis-accent--br { bottom: 12%; right: 5%; transform: rotate(180deg); }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--coral); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--ink); }

.container {
    width: min(100% - 2rem, var(--max-width));
    margin-inline: auto;
    position: relative;
    z-index: 1;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--coral);
    color: var(--paper);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-weight: 600;
    z-index: 9999;
}
.skip-link:focus { top: 1rem; }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 251, 235, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-h);
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--ink);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
}
.logo:hover { color: var(--coral); }

.logo-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: var(--coral);
}
.logo-mark svg { width: 100%; height: 100%; }

.site-nav ul {
    display: flex;
    list-style: none;
    gap: 0.15rem;
    align-items: center;
}

.site-nav a {
    display: block;
    padding: 0.5rem 0.85rem;
    color: var(--ink-muted);
    font-size: 0.92rem;
    font-weight: 500;
    border-radius: var(--radius);
}
.site-nav a:hover,
.site-nav a.active {
    color: var(--ink);
    background: rgba(244, 63, 94, 0.06);
}
.site-nav a.active { color: var(--coral); font-weight: 600; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 8px;
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.6rem;
    font-family: var(--font-headline);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}
.btn-primary {
    background: var(--coral);
    color: var(--paper);
    border-color: var(--coral);
}
.btn-primary:hover {
    background: #e11d48;
    border-color: #e11d48;
    color: var(--paper);
}
.btn-outline {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}
.btn-outline:hover {
    background: var(--ink);
    color: var(--paper);
}
.btn-ghost {
    background: transparent;
    color: var(--ink-muted);
    border-color: var(--border);
}
.btn-ghost:hover { color: var(--ink); border-color: var(--ink-muted); }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.85rem; }

/* Hero */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(255, 251, 235, 0.96) 0%, rgba(255, 251, 235, 0.88) 45%, rgba(255, 251, 235, 0.72) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    padding: 6rem 0 4rem;
    max-width: 680px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    background: var(--ink);
    color: var(--paper);
    border-radius: var(--radius);
    font-family: var(--font-headline);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
}
.hero-badge::before {
    content: '';
    width: 12px;
    height: 12px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M1 11 L11 1 M11 1 L11 4 M11 1 L8 1' stroke='%23F43F5E' stroke-width='1.5'/%3E%3C/svg%3E") center/contain no-repeat;
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}
.hero h1 em {
    font-style: normal;
    color: var(--coral);
}
.hero-lead {
    font-size: 1.15rem;
    color: var(--ink-muted);
    margin-bottom: 2rem;
    max-width: 540px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Sections */
section { padding: 5rem 0; position: relative; z-index: 1; }
.section-header { margin-bottom: 3rem; max-width: 640px; }
.section-header.center { text-align: center; margin-inline: auto; }
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-headline);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--coral);
    margin-bottom: 0.75rem;
}
.section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--coral);
}
.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.2vw, 2.65rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.section-header p { color: var(--ink-muted); }

.section-ink {
    background: var(--ink);
    color: var(--paper);
}
.section-ink .section-label { color: var(--coral); }
.section-ink .section-header h2 { color: var(--paper); }
.section-ink .section-header p { color: rgba(255, 251, 235, 0.75); }
.section-ink .feature-item {
    background: rgba(255, 251, 235, 0.04);
    border-color: rgba(255, 251, 235, 0.1);
}
.section-ink .feature-item h3 { color: var(--paper); }
.section-ink .feature-item p { color: rgba(255, 251, 235, 0.7); }

/* Grid layouts */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* Cards */
.card {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.card-img { aspect-ratio: 16/10; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 1.5rem; }
.card-body h3 {
    font-family: var(--font-headline);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}
.card-body p { color: var(--ink-muted); font-size: 0.95rem; }

/* Feature blocks */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.feature-item {
    padding: 1.75rem;
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: relative;
}
.feature-item::before {
    content: '';
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M2 18 L18 2 M18 2 L18 7 M18 2 L13 2' stroke='%23F43F5E' stroke-width='1.5'/%3E%3C/svg%3E") center/contain no-repeat;
    opacity: 0.6;
}
.feature-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: rgba(244, 63, 94, 0.2);
    margin-bottom: 0.5rem;
    padding-left: 1.75rem;
}
.feature-item h3 {
    font-family: var(--font-headline);
    font-size: 1.1rem;
    margin-bottom: 0.65rem;
    padding-left: 1.75rem;
}
.feature-item p {
    color: var(--ink-muted);
    font-size: 0.95rem;
    padding-left: 1.75rem;
}

/* Stats bar */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 2rem;
    background: var(--ink);
    color: var(--paper);
    border-radius: var(--radius);
}
.stat-item { text-align: center; }
.stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--coral);
}
.stat-label { font-size: 0.85rem; color: rgba(255, 251, 235, 0.7); }

/* CTA band */
.cta-band {
    padding: 4rem 0;
    background: var(--paper-dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.cta-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
}

/* Page hero */
.page-hero {
    padding: 4rem 0 3rem;
    border-bottom: 1px solid var(--border);
}
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.page-hero p { color: var(--ink-muted); max-width: 640px; font-size: 1.05rem; }

/* Prose */
.prose { max-width: 780px; }
.prose h2, .prose h3 {
    font-family: var(--font-headline);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}
.prose h2 { font-size: 1.5rem; color: var(--ink); }
.prose h3 { font-size: 1.2rem; color: var(--coral); }
.prose p { margin-bottom: 1.25rem; color: var(--ink-muted); }
.prose ul, .prose ol { margin-bottom: 1.25rem; padding-left: 1.5rem; color: var(--ink-muted); }
.prose li { margin-bottom: 0.5rem; }
.prose-wide { max-width: 900px; }

/* Disclaimer */
.disclaimer {
    padding: 1.25rem 1.5rem;
    background: rgba(244, 63, 94, 0.06);
    border-left: 3px solid var(--coral);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 0.85rem;
    color: var(--ink-muted);
    margin: 2rem 0;
}

/* FAQ */
.faq-list { max-width: 780px; }
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    overflow: hidden;
    background: var(--paper);
}
.faq-item summary {
    padding: 1.25rem 1.5rem;
    font-family: var(--font-headline);
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--coral); font-size: 1.25rem; }
.faq-item[open] summary::after { content: '−'; }
.faq-answer { padding: 0 1.5rem 1.25rem; color: var(--ink-muted); }

/* Forms */
.form-grid { display: grid; gap: 1.25rem; max-width: 640px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 1rem;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.12);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-check {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.9rem;
    color: var(--ink-muted);
}
.form-check input { margin-top: 0.25rem; accent-color: var(--coral); }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}
.alert-success { background: rgba(34, 197, 94, 0.1); border: 1px solid #22c55e; color: #15803d; }
.alert-error { background: rgba(239, 68, 68, 0.1); border: 1px solid #ef4444; color: #b91c1c; }

/* Case study */
.case-study {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--border);
}
.case-study:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.case-study.reverse { direction: rtl; }
.case-study.reverse > * { direction: ltr; }
.case-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.tag {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    background: rgba(244, 63, 94, 0.08);
    border: 1px solid var(--border-coral);
    border-radius: var(--radius);
    font-size: 0.75rem;
    color: var(--coral);
    font-weight: 500;
}
.case-study h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}
.case-study p { color: var(--ink-muted); margin-bottom: 1rem; }

/* Service blocks */
.service-block {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border);
}
.service-block:last-child { border-bottom: none; }
.service-block h2 {
    font-family: var(--font-display);
    font-size: 1.65rem;
    margin-bottom: 1rem;
}
.service-block p { color: var(--ink-muted); margin-bottom: 1rem; }

/* Legal */
.legal-toc {
    background: var(--paper-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
}
.legal-toc h2 { font-family: var(--font-headline); font-size: 1rem; margin-bottom: 0.75rem; }
.legal-toc ol { padding-left: 1.25rem; color: var(--ink-muted); }
.legal-toc li { margin-bottom: 0.35rem; }

/* 404 */
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 0;
}
.error-code {
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 800;
    color: var(--coral);
    line-height: 1;
    margin-bottom: 1rem;
}

/* Footer */
.site-footer {
    background: var(--ink);
    color: var(--paper);
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 1;
}
.site-footer a { color: rgba(255, 251, 235, 0.85); }
.site-footer a:hover { color: var(--coral); }
.site-footer .logo { color: var(--paper); }
.site-footer .logo-mark { color: var(--coral); }

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}
.footer-brand .footer-tagline { color: rgba(255, 251, 235, 0.75); margin: 1rem 0 0.5rem; font-size: 0.95rem; }
.footer-location { font-size: 0.85rem; color: rgba(255, 251, 235, 0.55); }
.footer-links h3, .footer-contact h3 {
    font-family: var(--font-headline);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--coral);
    margin-bottom: 1rem;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.4rem; }
.footer-links a { font-size: 0.9rem; }
.footer-contact address { font-style: normal; font-size: 0.9rem; line-height: 1.8; }
.footer-reg { font-size: 0.75rem; color: rgba(255, 251, 235, 0.55); margin-top: 0.75rem; }
.footer-disclaimer {
    padding: 1.25rem;
    background: rgba(255, 251, 235, 0.05);
    border: 1px solid rgba(255, 251, 235, 0.1);
    border-radius: var(--radius);
    margin-bottom: 2rem;
}
.footer-disclaimer p { font-size: 0.8rem; color: rgba(255, 251, 235, 0.65); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 251, 235, 0.1);
}
.footer-bottom p { font-size: 0.85rem; color: rgba(255, 251, 235, 0.55); }
.footer-bottom .btn-outline {
    color: var(--paper);
    border-color: rgba(255, 251, 235, 0.4);
}
.footer-bottom .btn-outline:hover {
    background: var(--paper);
    color: var(--ink);
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--ink);
    color: var(--paper);
    border-top: 1px solid rgba(255, 251, 235, 0.1);
    box-shadow: var(--shadow);
    padding: 1.25rem;
}
.cookie-banner a { color: var(--coral); }
.cookie-banner-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.cookie-banner h2 {
    font-family: var(--font-headline);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.cookie-banner p { font-size: 0.85rem; color: rgba(255, 251, 235, 0.75); max-width: 640px; }
.cookie-banner-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-custom-panel {
    max-width: var(--max-width);
    margin: 1rem auto 0;
    padding: 1.25rem;
    background: rgba(255, 251, 235, 0.05);
    border: 1px solid rgba(255, 251, 235, 0.1);
    border-radius: var(--radius);
}
.cookie-custom-panel fieldset { border: none; }
.cookie-custom-panel legend {
    font-family: var(--font-headline);
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.cookie-option {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: rgba(255, 251, 235, 0.75);
}
.cookie-custom-actions { display: flex; gap: 0.5rem; margin-top: 0.75rem; }

/* Split section */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.split-section img {
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

/* Legal hub cards */
.legal-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}
.legal-card {
    padding: 1.75rem;
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: box-shadow 0.2s;
}
.legal-card:hover { box-shadow: var(--shadow); }
.legal-card h2 {
    font-family: var(--font-headline);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.legal-card p { color: var(--ink-muted); font-size: 0.9rem; margin-bottom: 1rem; }

/* Responsive */
@media (max-width: 960px) {
    .grid-3, .grid-4, .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .case-study, .split-section { grid-template-columns: 1fr; }
    .case-study.reverse { direction: ltr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .site-nav {
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0;
        background: var(--paper);
        border-bottom: 1px solid var(--border);
        padding: 1rem;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s;
    }
    .site-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .site-nav ul { flex-direction: column; align-items: stretch; }
    .site-nav a { padding: 0.75rem 1rem; }
    .nav-cta { margin-top: 0.5rem; width: 100%; }
    .grid-2, .grid-3, .grid-4, .stats-bar, .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-inner { flex-direction: column; text-align: center; }
    .hero { min-height: 75vh; }
}
