/* ============================================================
   Crainic Advokatfirma — Stylesheet
   Impeccable design: minimal, authoritative, Danish
   ============================================================ */

/* ── 1. Design Tokens ───────────────────────────────────────── */
:root {
    --ink:        #0C1A2E;
    --navy:       #17304F;
    --gold:       #B8882A;
    --gold-light: #D4AE64;
    --gold-pale:  #F2E6C8;
    --cream:      #F7F4EE;
    --smoke:      #EDE9DF;
    --border:     #D4CDBF;
    --slate:      #4A5568;
    --white:      #FFFFFF;
    --success:    #2A6C4F;
    --error:      #B83232;

    --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --text-xs:   0.75rem;
    --text-sm:   0.875rem;
    --text-base: 1rem;
    --text-md:   1.125rem;
    --text-lg:   1.25rem;
    --text-xl:   1.5rem;
    --text-2xl:  2rem;
    --text-3xl:  2.75rem;
    --text-4xl:  3.75rem;
    --text-5xl:  5rem;
    --text-6xl:  6.5rem;

    --space-1:  0.25rem;
    --space-2:  0.5rem;
    --space-3:  0.75rem;
    --space-4:  1rem;
    --space-5:  1.25rem;
    --space-6:  1.5rem;
    --space-8:  2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    --radius:    4px;
    --radius-md: 8px;

    --shadow-sm: 0 1px 3px rgba(12,26,46,.06), 0 1px 2px rgba(12,26,46,.04);
    --shadow:    0 4px 16px rgba(12,26,46,.08), 0 2px 6px rgba(12,26,46,.04);
    --shadow-lg: 0 16px 48px rgba(12,26,46,.12), 0 4px 16px rgba(12,26,46,.06);

    --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

    --header-h: 72px;
    --container-w: 1200px;
    --container-pad: clamp(1.5rem, 5vw, 3rem);
}

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

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

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--slate);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
address { font-style: normal; }

/* ── 3. Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.15;
    color: var(--ink);
    letter-spacing: -0.01em;
}

p + p { margin-top: var(--space-4); }

.eyebrow {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-3);
}
.eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}
.eyebrow-light { color: var(--gold-light); }
.eyebrow-light::before { background: var(--gold-light); }

.section-title {
    font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
    font-weight: 400;
    color: var(--ink);
    margin-top: var(--space-3);
}

.section-header {
    max-width: 560px;
    margin-bottom: var(--space-12);
}
.section-header .section-title { margin-bottom: var(--space-4); }

/* ── 4. Layout ───────────────────────────────────────────────── */
.container {
    max-width: var(--container-w);
    margin-inline: auto;
    padding-inline: var(--container-pad);
}

.section {
    padding-block: var(--space-24);
}
.section-alt { background: var(--smoke); }

.section-footer {
    margin-top: var(--space-12);
    text-align: center;
}

/* ── 5. Navigation ───────────────────────────────────────────── */
.site-header {
    position: fixed;
    inset-block-start: 0;
    inset-inline: 0;
    height: var(--header-h);
    z-index: 100;
    transition: background var(--transition), box-shadow var(--transition);
}

.has-hero .site-header { background: transparent; }
.site-header.is-scrolled,
.page-services .site-header,
.page-about .site-header,
.page-contact .site-header {
    background: rgba(247, 244, 238, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-6);
}

.header-right {
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    text-decoration: none;
    flex-shrink: 0;
    transition: opacity var(--transition);
}
.logo:hover { opacity: 0.8; }

.logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0;
    transition: background var(--transition);
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.logo-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: 0.01em;
}
.logo-sub {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slate);
    margin-top: 2px;
}

.has-hero .logo-name,
.has-hero .logo-sub { color: var(--white); }
.has-hero .logo-mark { background: var(--gold); }
.has-hero.is-scrolled .logo-name { color: var(--ink); }
.has-hero.is-scrolled .logo-sub { color: var(--slate); }

.logo-light .logo-name,
.logo-light .logo-sub { color: var(--white); }
.logo-light .logo-sub { color: rgba(255,255,255,.6); }
.logo-light .logo-mark { background: var(--gold); }

/* Nav links */
.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.nav-link {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--ink);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius);
    position: relative;
    transition: color var(--transition);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: var(--space-3);
    right: var(--space-3);
    height: 1.5px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.nav-link:hover::after,
.nav-link.is-active::after { transform: scaleX(1); }
.nav-link.is-active { color: var(--gold); }

.has-hero .nav-link { color: rgba(255,255,255,.85); }
.has-hero .nav-link:hover { color: var(--white); }
.has-hero .nav-link.is-active { color: var(--gold-light); }
.has-hero.is-scrolled .nav-link { color: var(--ink); }
.has-hero.is-scrolled .nav-link.is-active { color: var(--gold); }

.nav-cta {
    background: var(--gold);
    color: var(--white) !important;
    padding: var(--space-2) var(--space-5);
    border-radius: 2px;
    font-weight: 600;
    transition: background var(--transition);
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--navy); }
.has-hero .nav-cta { background: var(--gold); color: var(--white) !important; }
.has-hero.is-scrolled .nav-cta { background: var(--gold); }

/* Language switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 2px;
}
.lang-btn {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--slate);
    padding: 4px 6px;
    border-radius: var(--radius);
    transition: color var(--transition), background var(--transition);
}
.lang-btn:hover { color: var(--gold); }
.lang-btn.is-active { color: var(--gold); }
.has-hero .lang-btn { color: rgba(255,255,255,.6); }
.has-hero .lang-btn:hover { color: var(--white); }
.has-hero .lang-btn.is-active { color: var(--gold-light); }
.has-hero.is-scrolled .lang-btn { color: var(--slate); }
.has-hero.is-scrolled .lang-btn.is-active { color: var(--gold); }

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    flex-shrink: 0;
}
.bar {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--ink);
    transition: transform var(--transition), opacity var(--transition), width var(--transition);
    transform-origin: center;
}
.has-hero .bar { background: var(--white); }
.has-hero.is-scrolled .bar { background: var(--ink); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ── 6. Buttons ──────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 14px 28px;
    border-radius: 2px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
}

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

.btn-gold {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
.btn-gold:hover {
    background: #9E7220;
    border-color: #9E7220;
}

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

.btn-ghost {
    background: rgba(255,255,255,.12);
    color: var(--white);
    border-color: rgba(255,255,255,.35);
}
.btn-ghost:hover {
    background: rgba(255,255,255,.22);
    border-color: rgba(255,255,255,.55);
}

.btn-ghost-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.4);
}
.btn-ghost-light:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.6);
}

.btn-submit {
    min-width: 180px;
    position: relative;
    overflow: hidden;
}
.btn-submit.is-loading .btn-text { opacity: 0; }
.btn-submit.is-loading .btn-spinner { display: inline-flex !important; }

.btn-spinner {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
}

@keyframes spin { to { transform: rotate(360deg); } }
.spinner-icon { animation: spin 0.8s linear infinite; }

/* ── 7. Hero ─────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--ink);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 80% at 70% 50%, rgba(26,49,81,.6) 0%, transparent 70%),
        linear-gradient(160deg, var(--ink) 0%, #0D2140 100%);
    z-index: 0;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            -45deg,
            rgba(255,255,255,.014) 0px,
            rgba(255,255,255,.014) 1px,
            transparent 1px,
            transparent 28px
        );
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: var(--space-16);
    padding-block: calc(var(--header-h) + var(--space-16)) var(--space-20);
    min-height: 100svh;
}

.hero-content { max-width: 640px; }

.hero-title {
    font-size: clamp(var(--text-4xl), 7vw, var(--text-6xl));
    font-weight: 300;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-block: var(--space-4) var(--space-6);
}
.hero-title em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-lead {
    font-size: var(--text-md);
    color: rgba(255,255,255,.72);
    max-width: 480px;
    line-height: 1.75;
    margin-bottom: var(--space-10);
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-4);
}

/* Decorative elements */
.hero-deco {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
    padding-right: var(--space-4);
}
.deco-line {
    width: 1px;
    height: 160px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    opacity: .5;
}
.deco-ring {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(184,136,42,.3);
    position: relative;
}
.deco-ring::after {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    border: 1px solid rgba(184,136,42,.5);
}

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
}
.scroll-track {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,.15);
    position: relative;
    overflow: hidden;
}
.scroll-thumb {
    width: 100%;
    height: 40%;
    background: var(--gold);
    animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
    0%   { transform: translateY(-100%); opacity: 1; }
    80%  { opacity: 1; }
    100% { transform: translateY(250%); opacity: 0; }
}

/* ── 8. Page hero (non-home pages) ───────────────────────────── */
.page-hero {
    background: var(--ink);
    padding-block: calc(var(--header-h) + var(--space-20)) var(--space-20);
}
.page-hero-sm {
    padding-block: calc(var(--header-h) + var(--space-12)) var(--space-16);
}

.page-hero .eyebrow { color: var(--gold-light); }
.page-hero .eyebrow::before { background: var(--gold-light); }

.page-title {
    font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
    font-weight: 300;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-block: var(--space-3) var(--space-6);
}

.page-lead {
    font-size: var(--text-md);
    color: rgba(255,255,255,.65);
    max-width: 520px;
    line-height: 1.7;
}

/* ── 9. Service cards (home) ─────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-bottom: var(--space-12);
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.service-card-inner {
    padding: var(--space-8);
    height: 100%;
    display: flex;
    flex-direction: column;
    border-top: 3px solid transparent;
    transition: border-color var(--transition);
}
.service-card:hover .service-card-inner { border-top-color: var(--gold); }

.service-number {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    color: var(--smoke);
    font-weight: 300;
    line-height: 1;
    margin-bottom: var(--space-4);
    letter-spacing: -0.02em;
    transition: color var(--transition);
}
.service-card:hover .service-number { color: var(--gold-pale); }

.service-name {
    font-size: var(--text-xl);
    font-weight: 500;
    color: var(--ink);
    margin-bottom: var(--space-3);
}

.service-desc {
    font-size: var(--text-sm);
    color: var(--slate);
    line-height: 1.7;
    flex: 1;
    margin-bottom: var(--space-6);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--gold);
    margin-top: auto;
    transition: gap var(--transition), color var(--transition);
    text-decoration: none;
}
.link-arrow:hover { gap: var(--space-3); color: var(--navy); }

/* ── 10. Why section ─────────────────────────────────────────── */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.why-content .section-title { margin-bottom: var(--space-5); }

.why-lead {
    color: var(--slate);
    margin-bottom: var(--space-8);
    font-size: var(--text-md);
    line-height: 1.7;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-10);
}

.why-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--ink);
}

.why-check {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--gold-pale);
    border: 1.5px solid var(--gold);
    position: relative;
}
.why-check::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-52%, -58%) rotate(45deg);
    width: 5px;
    height: 9px;
    border-right: 1.5px solid var(--gold);
    border-bottom: 1.5px solid var(--gold);
}

/* Stats grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.stat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-8);
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    transition: transform var(--transition), box-shadow var(--transition);
}
.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.stat-card-dark {
    background: var(--ink);
    border-color: var(--ink);
}
.stat-card-dark .stat-number,
.stat-card-dark .stat-label { color: var(--white); }
.stat-card-dark .stat-label { color: rgba(255,255,255,.55); }

.stat-number {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 300;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--slate);
}

/* ── 11. CTA section ─────────────────────────────────────────── */
.section-cta { padding-block: var(--space-16); }

.cta-box {
    background: var(--ink);
    border-radius: var(--radius-md);
    padding: clamp(var(--space-12), 6vw, var(--space-20)) clamp(var(--space-10), 6vw, var(--space-20));
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: var(--space-12);
}

.cta-content { position: relative; z-index: 1; }

.cta-title {
    color: var(--white);
    max-width: 480px;
    margin-bottom: var(--space-5);
}

.cta-lead {
    color: rgba(255,255,255,.65);
    font-size: var(--text-md);
    max-width: 480px;
    margin-bottom: var(--space-8);
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-4);
}

/* Decorative rings */
.cta-deco { position: relative; width: 180px; height: 180px; flex-shrink: 0; }
.cta-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(184,136,42,.2);
}
.cta-ring-1 { inset: 0; }
.cta-ring-2 { inset: -40px; border-color: rgba(184,136,42,.1); }

/* ── 12. Services page (full list) ───────────────────────────── */
.services-full {
    border-top: 1px solid var(--border);
    padding-block: var(--space-12);
}
.services-full:first-child { border-top: none; padding-top: 0; }

.service-full-header {
    display: flex;
    align-items: flex-start;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.service-index {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 300;
    color: var(--border);
    line-height: 1;
    flex-shrink: 0;
    min-width: 3rem;
    letter-spacing: -0.02em;
}

.service-full-title {
    font-size: clamp(var(--text-2xl), 3.5vw, var(--text-3xl));
    font-weight: 400;
    color: var(--ink);
    margin-bottom: var(--space-1);
}

.service-full-sub {
    font-size: var(--text-sm);
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.service-full-body {
    margin-left: calc(3rem + var(--space-6));
    max-width: 680px;
}

.service-full-body p {
    color: var(--slate);
    margin-bottom: var(--space-6);
    font-size: var(--text-md);
    line-height: 1.75;
}

.service-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2) var(--space-8);
}

.service-list li {
    font-size: var(--text-sm);
    color: var(--ink);
    font-weight: 500;
    padding-left: var(--space-4);
    position: relative;
}
.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── 13. About page ──────────────────────────────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: start;
}

.about-content .section-title { margin-bottom: var(--space-6); }

.about-content p {
    font-size: var(--text-md);
    color: var(--slate);
    line-height: 1.8;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.value-item {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
    padding: var(--space-5);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: box-shadow var(--transition);
}
.value-item:hover { box-shadow: var(--shadow-sm); }

.value-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
}

.value-item h3 {
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--ink);
    margin-bottom: var(--space-1);
}
.value-item p {
    font-size: var(--text-sm);
    color: var(--slate);
    line-height: 1.65;
}

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

.team-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-8);
    display: flex;
    gap: var(--space-6);
    align-items: flex-start;
    transition: box-shadow var(--transition);
}
.team-card:hover { box-shadow: var(--shadow); }

.team-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.avatar-initial {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 400;
    color: var(--gold-light);
}

.team-name {
    font-size: var(--text-xl);
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 2px;
}
.team-role {
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-3);
}
.team-bio {
    font-size: var(--text-sm);
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: var(--space-4);
}
.team-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

/* Tags */
.tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--gold-pale);
    color: var(--gold);
    border: 1px solid rgba(184,136,42,.25);
    padding: 3px 10px;
    border-radius: 2px;
}

/* Memberships */
.memberships-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.membership-item {
    padding: var(--space-8);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    border-top: 3px solid var(--gold);
}

.membership-item h3 {
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--ink);
    margin-bottom: var(--space-3);
}
.membership-item p {
    font-size: var(--text-sm);
    color: var(--slate);
    line-height: 1.7;
}

/* ── 14. Contact page ────────────────────────────────────────── */
.contact-section { padding-block: var(--space-16); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--space-12);
    align-items: start;
}

.contact-form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: var(--space-10); }

.contact-form-title {
    font-size: var(--text-2xl);
    font-weight: 400;
    color: var(--ink);
    margin-bottom: var(--space-8);
}

/* Alert */
.alert {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-5);
    border-radius: var(--radius);
    font-size: var(--text-sm);
    font-weight: 500;
    margin-bottom: var(--space-6);
}
.alert-success {
    background: #EBF5F0;
    color: var(--success);
    border: 1px solid #B8DEC9;
}
.alert-error {
    background: #FBF0F0;
    color: var(--error);
    border: 1px solid #EBBCBC;
}

/* Form */
.form-row { display: flex; gap: var(--space-5); }
.form-row-2 > * { flex: 1; }
.form-group { margin-bottom: var(--space-5); }
.form-group.has-error .form-input,
.form-group.has-error .form-textarea { border-color: var(--error); }

.form-label {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--ink);
    margin-bottom: var(--space-2);
}
.required { color: var(--gold); font-size: 0.9em; }

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--ink);
    background: var(--cream);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
    -webkit-appearance: none;
}
.form-input:hover,
.form-textarea:hover { border-color: var(--slate); }
.form-input:focus,
.form-textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(184,136,42,.12);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(74,85,104,.45); }

.form-error {
    font-size: var(--text-xs);
    color: var(--error);
    font-weight: 500;
    margin-top: var(--space-1);
}

/* Honeypot — visually gone, still in DOM for bots */
.form-hp {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.form-note {
    font-size: var(--text-xs);
    color: var(--slate);
    line-height: 1.6;
    margin-bottom: var(--space-6);
    opacity: .75;
}

.form-feedback {
    margin-top: var(--space-4);
    font-size: var(--text-sm);
    font-weight: 500;
}
.form-feedback.is-success { color: var(--success); }
.form-feedback.is-error   { color: var(--error); }

/* Contact sidebar */
.contact-info {
    position: sticky;
    top: calc(var(--header-h) + var(--space-6));
}

.contact-info-title {
    font-size: var(--text-xl);
    font-weight: 400;
    color: var(--ink);
    margin-bottom: var(--space-8);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--border);
}

.contact-detail {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-6);
    border-bottom: 1px solid var(--smoke);
}
.contact-detail:last-of-type { border-bottom: none; }

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
}

.contact-detail h3 {
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: var(--space-1);
}
.contact-detail a {
    color: var(--ink);
    font-weight: 500;
    font-size: var(--text-sm);
    transition: color var(--transition);
    display: block;
}
.contact-detail a:hover { color: var(--gold); }
.contact-hours {
    font-size: var(--text-xs);
    color: var(--slate);
    margin-top: 2px;
}

.contact-map-placeholder {
    background: var(--smoke);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--space-4);
}
.map-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    color: var(--slate);
}
.map-inner span {
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ── 15. Footer ──────────────────────────────────────────────── */
.site-footer { background: var(--ink); margin-top: 0; }

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-10);
    padding-block: var(--space-16);
}

.footer-desc {
    font-size: var(--text-sm);
    color: rgba(255,255,255,.5);
    line-height: 1.7;
    margin-block: var(--space-4);
    max-width: 280px;
}

.footer-address {
    font-size: var(--text-xs);
    color: rgba(255,255,255,.35);
    letter-spacing: 0.04em;
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: var(--space-5);
}

.footer-nav ul,
.footer-contact-info ul,
.footer-ydelser ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-nav a,
.footer-contact-info a,
.footer-ydelser a {
    font-size: var(--text-sm);
    color: rgba(255,255,255,.6);
    transition: color var(--transition);
}
.footer-nav a:hover,
.footer-contact-info a:hover,
.footer-ydelser a:hover { color: var(--gold-light); }

.footer-contact-info li,
.footer-ydelser li {
    font-size: var(--text-sm);
    color: rgba(255,255,255,.4);
}

.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); }

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    padding-block: var(--space-5);
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: var(--text-xs);
    color: rgba(255,255,255,.3);
}

.footer-disclaimer { opacity: .6; }

/* ── 16. 404 ─────────────────────────────────────────────────── */
.not-found {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-8) var(--container-pad);
    gap: var(--space-4);
}

.not-found-logo { margin-bottom: var(--space-8); }

.not-found-code {
    font-family: var(--font-display);
    font-size: var(--text-6xl);
    font-weight: 300;
    color: var(--border);
    line-height: 1;
    letter-spacing: -0.03em;
}

.not-found-title {
    font-size: var(--text-3xl);
    font-weight: 400;
    color: var(--ink);
}

.not-found-desc {
    font-size: var(--text-md);
    color: var(--slate);
    max-width: 360px;
    margin-bottom: var(--space-4);
}

/* ── 17. Scroll animations ───────────────────────────────────── */
[data-scroll-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}
[data-scroll-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── 18. Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }
    .footer-brand { grid-column: 1 / -1; }

    .contact-grid { grid-template-columns: 1fr; }
    .contact-info { position: static; }

    .cta-box { grid-template-columns: 1fr; }
    .cta-deco { display: none; }

    .service-full-body { margin-left: 0; }

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

@media (max-width: 768px) {
    :root { --header-h: 64px; }

    .nav-toggle { display: flex; }
    .header-right { gap: var(--space-3); }

    .site-nav {
        display: none;
        position: fixed;
        inset: var(--header-h) 0 0 0;
        background: var(--cream);
        overflow-y: auto;
        padding: var(--space-6);
        border-top: 1px solid var(--border);
        flex-direction: column;
        z-index: 99;
    }
    .site-nav.is-open {
        display: flex;
    }
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    .nav-link {
        color: var(--ink);
        font-size: var(--text-lg);
        padding: var(--space-4) 0;
        border-bottom: 1px solid var(--smoke);
        border-radius: 0;
    }
    .nav-link::after { display: none; }
    .nav-cta {
        margin-top: var(--space-4);
        text-align: center;
        padding: var(--space-4);
    }

    /* Always show header bg on mobile (nav is too close to hero) */
    .has-hero .site-header {
        background: rgba(247, 244, 238, 0.96);
        backdrop-filter: blur(12px);
        box-shadow: 0 1px 0 var(--border);
    }
    .has-hero .logo-name { color: var(--ink); }
    .has-hero .logo-sub  { color: var(--slate); }
    .has-hero .bar       { background: var(--ink); }
    .has-hero .nav-link  { color: var(--ink); }
    .has-hero .lang-btn  { color: var(--slate); }
    .has-hero .lang-btn.is-active { color: var(--gold); }

    /* Hero */
    .hero-inner {
        grid-template-columns: 1fr;
        padding-block: calc(var(--header-h) + var(--space-10)) var(--space-16);
    }
    .hero-deco { display: none; }
    .hero-title { font-size: clamp(2.25rem, 10vw, 3.5rem); }

    /* Sections */
    .section { padding-block: var(--space-16); }
    .section-header { margin-bottom: var(--space-8); }

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

    .why-grid { grid-template-columns: 1fr; gap: var(--space-10); }
    .stats-grid { grid-template-columns: 1fr 1fr; }

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

    .service-full-header { flex-direction: column; gap: var(--space-2); }
    .service-list { grid-template-columns: 1fr; }

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

    .form-row { flex-direction: column; gap: 0; }

    .footer-inner { grid-template-columns: 1fr; gap: var(--space-8); }
    .footer-brand { grid-column: auto; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }

    .cta-box { padding: var(--space-10) var(--space-8); }
    .cta-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .team-card { flex-direction: column; }
}
