/* ============================================================
   NUMERIS — NORDIC EDITORIAL DESIGN SYSTEM
   Fonts: Cormorant Garamond (display) + Outfit (body)
   Palette: Chalk white · Deep charcoal · Warm copper
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600&display=swap');

/* ────────────────────────────────────────────────────────────
   DESIGN TOKENS
──────────────────────────────────────────────────────────── */
:root {
    /* Palette */
    --chalk: #f8f7f3;
    --chalk-mid: #eeece6;
    --chalk-dark: #e0ddd4;
    --ink: #1c1b18;
    --ink-soft: #3d3c37;
    --ink-muted: #7a7870;
    --copper: #b5763a;
    --copper-lt: #d4924f;
    --copper-bg: #faf3eb;
    --white: #ffffff;
    /* Typography */
    --font-display: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'Outfit', 'Helvetica Neue', sans-serif;
    --font-logo: 'Libre Baskerville', serif;
    /* Spacing */
    --max: 1120px;
    --radius: 12px;
    --radius-lg: 20px;
}

/* ────────────────────────────────────────────────────────────
   RESET
──────────────────────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

/* ────────────────────────────────────────────────────────────
   BASE
──────────────────────────────────────────────────────────── */
body {
    font-family: var(--font-body);
    background: var(--chalk);
    color: var(--ink);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin-bottom: 0 !important;
}

main {
    flex: 1 0 auto;
}

/* Force all text to ink by default */
p, span, li, ul, ol, div, section,
article, header, footer, label, small {
    color: inherit;
}

/* ────────────────────────────────────────────────────────────
   TYPOGRAPHY
──────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--ink);
    font-weight: 600;
    line-height: 1.1;
    margin-top: 0;
    letter-spacing: -0.01em;
}

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

h2 {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
}

h3 {
    font-size: 1.2rem;

}

p {
    margin-top: 0;
    color: var(--ink-soft);
    font-weight: 300;
}

.lead {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--ink-soft);
    font-weight: 300;
    line-height: 1.7;
}

a {
    color: var(--copper);
    text-decoration: none;
    transition: color 0.2s;
}

    a:hover {
        color: var(--copper-lt);
        text-decoration: underline;
        text-underline-offset: 3px;
    }

/* ────────────────────────────────────────────────────────────
   LAYOUT WRAPPER
──────────────────────────────────────────────────────────── */
.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 28px;
}

/* ────────────────────────────────────────────────────────────
   NAVIGATION
──────────────────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(248, 247, 243, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--chalk-dark);
}

.main-nav {
    padding: 0;
}

.nav-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 28px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo {
    text-decoration: none !important;
    flex-shrink: 0;
}

.nav-links-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .nav-links li a {
        display: inline-block;
        padding: 8px 14px;
        font-family: var(--font-body);
        font-size: 0.88rem;
        font-weight: 500;
        color: var(--ink-soft);
        border-radius: 8px;
        transition: background 0.15s, color 0.15s;
        text-decoration: none;
    }

        .nav-links li a:hover {
            background: var(--chalk-mid);
            color: var(--ink);
            text-decoration: none;
        }

.nav-cta {
    background: var(--ink) !important;
    color: var(--chalk) !important;
    padding: 8px 18px !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
    transition: background 0.2s, transform 0.15s !important;
}

    .nav-cta:hover {
        background: var(--copper) !important;
        transform: translateY(-1px);
        color: var(--white) !important;
        text-decoration: none !important;
    }

/* Mobile toggler */
.nav-toggler {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
}

.toggler-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: 0.3s;
}

@media (max-width: 640px) {
    .nav-toggler {
        display: flex;
    }

    .nav-links-wrapper {
        display: flex;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--chalk);
        border-bottom: 1px solid var(--chalk-dark);
        padding: 12px 20px 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

        .nav-links li {
            width: 100%;
        }

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

    .nav-cta {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* ────────────────────────────────────────────────────────────
   LOGO MARK (UPDATED COLORS)
──────────────────────────────────────────────────────────── */
.numeris-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

    .numeris-logo:hover {
        transform: scale(1.04);
    }

.numeris-logo-icon {
    width: 40px;
    height: 40px;
    position: relative;
    flex-shrink: 0;
}

.numeris-logo-text {
    font-family: var(--font-logo);
    font-size: 22px;
    font-weight: 700;
    color: var(--ink) !important;
    letter-spacing: -0.03em;
}

.numeris-geometric-element {
    position: absolute;
}

.numeris-rect-1 {
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
    border-radius: 5px;
    top: 0;
    left: 0;
    animation: n-float1 4s ease-in-out infinite;
}

.numeris-rect-2 {
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%) !important;
    border-radius: 5px;
    bottom: 0;
    right: 0;
    animation: n-float2 4s ease-in-out infinite 0.6s;
}

.numeris-rect-3 {
    width: 13px;
    height: 13px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%) !important;
    border-radius: 3px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: n-pulse 2.5s ease-in-out infinite;
    z-index: 1;
}

@keyframes n-float1 {
    0%, 100% {
        transform: translate(0,0) rotate(0deg);
    }

    50% {
        transform: translate(2px,-2px) rotate(6deg);
    }
}

@keyframes n-float2 {
    0%, 100% {
        transform: translate(0,0) rotate(0deg);
    }

    50% {
        transform: translate(-2px,2px) rotate(-6deg);
    }
}

@keyframes n-pulse {
    0%, 100% {
        transform: translate(-50%,-50%) scale(1);
    }

    50% {
        transform: translate(-50%,-50%) scale(1.15);
    }
}

.numeris-logo:hover .numeris-rect-1 {
    transform: translate(-3px,-3px) rotate(10deg);
}

.numeris-logo:hover .numeris-rect-2 {
    transform: translate(3px,3px) rotate(-10deg);
}

.numeris-logo:hover .numeris-rect-3 {
    transform: translate(-50%,-50%) scale(1.2);
}

/* ────────────────────────────────────────────────────────────
   BUTTONS
──────────────────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s, color 0.2s;
    text-decoration: none !important;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn--primary {
    background: var(--ink);
    color: var(--chalk) !important;
    box-shadow: 0 2px 10px rgba(28,27,24,0.18);
}

    .btn--primary:hover {
        background: var(--copper);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(181,118,58,0.28);
        color: var(--white) !important;
    }

.btn--ghost {
    background: transparent;
    color: var(--ink-soft) !important;
    border: 1.5px solid var(--chalk-dark);
}

    .btn--ghost:hover {
        background: var(--chalk-mid);
        border-color: var(--ink-soft);
        color: var(--ink) !important;
        transform: translateY(-1px);
    }

/* Backwards compat */
.btn:not(.btn--primary):not(.btn--ghost) {
    background: var(--ink);
    color: var(--chalk) !important;
    box-shadow: 0 2px 10px rgba(28,27,24,0.15);
}

    .btn:not(.btn--primary):not(.btn--ghost):hover {
        background: var(--copper);
        transform: translateY(-2px);
        color: var(--white) !important;
    }

/* ────────────────────────────────────────────────────────────
   PAGE HERO (SERVICE PAGES)
──────────────────────────────────────────────────────────── */
.page-hero {
    position: relative;
    height: clamp(220px, 30vw, 340px);
    overflow: hidden;
    background: var(--ink);
    animation: heroIn 0.6s ease both;
    padding-bottom: 20px;
}

@keyframes heroIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.page-hero__img-wrap {
    position: absolute;
    inset: 0;
}

.page-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    display: block;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 135deg, rgba(28,27,24,0.78) 0%, rgba(28,27,24,0.45) 55%, rgba(28,27,24,0.2) 100% );
}

.page-hero__overlay--dark {
    background: linear-gradient( 135deg, rgba(28,27,24,0.88) 0%, rgba(28,27,24,0.65) 60%, rgba(28,27,24,0.35) 100% );
}

.page-hero__content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: clamp(28px, 5vw, 64px);
    max-width: 680px;
    animation: heroContentIn 0.7s 0.15s ease both;
}

@keyframes heroContentIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-hero__label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--copper-lt);
    margin-bottom: 12px;
}

.page-hero__label--alert {
    color: #f87171;
}

.page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 700;
    color: var(--white) !important;
    margin-bottom: 14px;
    line-height: 1.05;
}

.page-hero__lead {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: rgba(248, 247, 243, 0.82) !important;
    font-weight: 300;
    line-height: 1.6;
    max-width: 52ch;
    margin-bottom: 0;
}

/* ────────────────────────────────────────────────────────────
   SERVICE PAGE LAYOUT
──────────────────────────────────────────────────────────── */
.service-page {
    padding: 0 0 80px;
    animation: pageIn 0.5s 0.1s ease both;
}

@keyframes pageIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-page__body {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 28px;
}

/* ────────────────────────────────────────────────────────────
   SERVICE INTRO TEXT
──────────────────────────────────────────────────────────── */
.service-intro {
    max-width: 68ch;
    padding: 52px 0 40px;
    border-bottom: 1px solid var(--chalk-dark);
    margin-bottom: 56px;
}

    .service-intro p {
        font-size: 1.05rem;
        line-height: 1.75;
        color: var(--ink-soft);
        margin-bottom: 1rem;
    }

/* ────────────────────────────────────────────────────────────
   FEATURE GRID
──────────────────────────────────────────────────────────── */
.service-features {
    margin-bottom: 64px;
}

.service-features__title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 32px;
    color: var(--ink);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--chalk-dark);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
    position: relative;
    overflow: hidden;
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 3px;
        height: 0;
        background: var(--copper);
        border-radius: 0 0 2px 2px;
        transition: height 0.3s ease;
    }

    .feature-card:hover {
        box-shadow: 0 8px 32px rgba(28,27,24,0.10);
        transform: translateY(-3px);
        border-color: var(--chalk-mid);
    }

        .feature-card:hover::before {
            height: 100%;
        }

.feature-card__icon {
    font-size: 1.4rem;
    color: var(--copper);
    margin-bottom: 14px;
    display: block;
    line-height: 1;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--ink);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--ink-muted);
    margin: 0;
    line-height: 1.55;
}

@media (max-width: 900px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

/* ────────────────────────────────────────────────────────────
   SPLIT SECTION
──────────────────────────────────────────────────────────── */
.service-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 64px;
    padding: 56px 0;
    border-top: 1px solid var(--chalk-dark);
}

.service-split__img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--chalk-mid);
    width: 100%;
    height: 100%;
}

    .service-split__img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
        position: relative;
        z-index: 2;
    }

.service-split__img-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--chalk-mid);
    color: var(--ink-muted);
    font-size: 0.85rem;
    font-style: italic;
    letter-spacing: 0.03em;
    z-index: 1;
}

.service-split__text h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-split__text p {
    font-size: 0.975rem;
    line-height: 1.75;
    margin-bottom: 1rem;
    color: var(--ink-soft);
}

@media (max-width: 800px) {
    .service-split {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ────────────────────────────────────────────────────────────
   CHECKLIST
──────────────────────────────────────────────────────────── */
.service-checklist-section {
    margin-bottom: 56px;
}

    .service-checklist-section h2 {
        font-family: var(--font-display);
        font-size: 1.8rem;
        margin-bottom: 28px;
    }

.service-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

    .service-checklist li {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 14px 0;
        border-bottom: 1px solid var(--chalk-dark);
        font-size: 0.975rem;
        color: var(--ink-soft);
        font-weight: 300;
    }

        .service-checklist li::before {
            content: '';
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--copper-bg);
            border: 1.5px solid var(--copper);
            position: relative;
            top: 1px;
        }

        .service-checklist li::before {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23b5763a' d='M7 10.5l2 2 4-4'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: center;
            background-size: 14px;
        }

@media (max-width: 640px) {
    .service-checklist {
        grid-template-columns: 1fr;
    }
}

/* ────────────────────────────────────────────────────────────
   CALLOUT BLOCK
──────────────────────────────────────────────────────────── */
.callout-block {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--copper-bg);
    border: 1px solid rgba(181,118,58,0.3);
    border-left: 4px solid var(--copper);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin-bottom: 56px;
}

.callout-block__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--copper);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
}

.callout-block__text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--ink);
    margin-bottom: 6px;
}

.callout-block__text p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--ink-soft);
}

/* ────────────────────────────────────────────────────────────
   SCENARIO CARDS (URGENT)
──────────────────────────────────────────────────────────── */
.scenario-section {
    margin-bottom: 56px;
}

    .scenario-section h2 {
        font-family: var(--font-display);
        font-size: 1.8rem;
        margin-bottom: 28px;
    }

.scenario-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.scenario-card {
    background: var(--white);
    border: 1px solid var(--chalk-dark);
    border-radius: var(--radius);
    padding: 24px 20px;
    transition: box-shadow 0.2s, transform 0.2s;
}

    .scenario-card:hover {
        box-shadow: 0 6px 24px rgba(28,27,24,0.09);
        transform: translateY(-2px);
    }

.scenario-card__num {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--chalk-dark);
    line-height: 1;
    margin-bottom: 10px;
}

.scenario-card p {
    font-size: 0.9rem;
    color: var(--ink-soft);
    margin: 0;
    line-height: 1.55;
}

@media (max-width: 900px) {
    .scenario-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .scenario-grid {
        grid-template-columns: 1fr;
    }
}

/* ────────────────────────────────────────────────────────────
   PROCESS STEPS
──────────────────────────────────────────────────────────── */
.process-section {
    margin-bottom: 56px;
    padding: 48px 0;
    border-top: 1px solid var(--chalk-dark);
}

    .process-section h2 {
        font-family: var(--font-display);
        font-size: 1.8rem;
        margin-bottom: 36px;
    }

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

    .process-steps::before {
        content: '';
        position: absolute;
        top: 20px;
        left: 44px;
        right: 44px;
        height: 1px;
        background: linear-gradient(90deg, var(--copper), var(--chalk-dark));
    }

.process-step {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.process-step__num {
    width: 40px;
    height: 40px;
    background: var(--ink);
    color: var(--chalk);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
    z-index: 1;
}

.process-step__body h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--ink);
    margin-bottom: 6px;
}

.process-step__body p {
    font-size: 0.9rem;
    color: var(--ink-muted);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 700px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

        .process-steps::before {
            display: none;
        }

    .process-step {
        flex-direction: row;
    }
}

/* ────────────────────────────────────────────────────────────
   CONSULT HERO (SPLIT)
──────────────────────────────────────────────────────────── */
.consult-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: clamp(260px, 32vw, 380px);
    animation: heroIn 0.6s ease both;
}

.consult-hero__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(40px, 6vw, 80px);
    background: var(--ink);
    color: var(--chalk);
}

    .consult-hero__text h1 {
        color: var(--chalk) !important;
        margin-bottom: 16px;
    }

    .consult-hero__text .lead {
        color: rgba(248, 247, 243, 0.75) !important;
        margin-bottom: 32px;
    }

    .consult-hero__text .page-hero__label {
        color: var(--copper-lt);
        margin-bottom: 16px;
    }

.consult-hero__img {
    overflow: hidden;
}

    .consult-hero__img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 20%;
        display: block;
        transition: transform 0.6s ease;
    }

.consult-hero:hover .consult-hero__img img {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .consult-hero {
        grid-template-columns: 1fr;
    }

    .consult-hero__img {
        height: 240px;
    }
}

/* ────────────────────────────────────────────────────────────
   USP ROW (CONSULT)
──────────────────────────────────────────────────────────── */
.usp-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 56px;
}

.usp-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--white);
    border: 1px solid var(--chalk-dark);
    border-radius: var(--radius);
    transition: box-shadow 0.2s, transform 0.2s;
}

    .usp-card:hover {
        box-shadow: 0 6px 24px rgba(28,27,24,0.09);
        transform: translateY(-3px);
    }

.usp-card__icon {
    font-size: 2rem;
    color: var(--copper);
    margin-bottom: 16px;
    display: block;
    line-height: 1;
}

.usp-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--ink);
    margin-bottom: 10px;
}

.usp-card p {
    font-size: 0.9rem;
    color: var(--ink-muted);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 700px) {
    .usp-row {
        grid-template-columns: 1fr;
    }
}

/* ────────────────────────────────────────────────────────────
   PULL QUOTE
──────────────────────────────────────────────────────────── */
.pull-quote {
    margin: 0 0 56px;
    padding: 40px 0;
    border-top: 1px solid var(--chalk-dark);
    border-bottom: 1px solid var(--chalk-dark);
}

    .pull-quote blockquote {
        font-family: var(--font-display);
        font-size: clamp(1.4rem, 2.8vw, 2rem);
        font-style: italic;
        color: var(--ink);
        line-height: 1.4;
        margin: 0;
        padding: 0;
        max-width: 72ch;
        position: relative;
        padding-left: 28px;
        border-left: 3px solid var(--copper);
    }

/* ────────────────────────────────────────────────────────────
   SERVICE CTA BLOCK
──────────────────────────────────────────────────────────── */
.service-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    padding: 48px 56px;
    background: var(--ink);
    border-radius: var(--radius-lg);
    margin-top: 16px;
}

.service-cta--urgent {
    background: linear-gradient(135deg, #2a1a10, #1c1b18);
    border: 1px solid rgba(181,118,58,0.3);
}

.service-cta__text h2 {
    font-family: var(--font-display);
    color: var(--chalk) !important;
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    margin-bottom: 8px;
}

.service-cta__text p {
    color: rgba(248,247,243,0.65) !important;
    font-size: 0.95rem;
    margin: 0;
}

.service-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.service-cta .btn--ghost {
    border-color: rgba(248,247,243,0.25);
    color: rgba(248,247,243,0.7) !important;
}

    .service-cta .btn--ghost:hover {
        background: rgba(248,247,243,0.1);
        border-color: rgba(248,247,243,0.5);
        color: var(--chalk) !important;
    }

@media (max-width: 700px) {
    .service-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 36px 28px;
    }

    .service-cta__actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

        .service-cta__actions .btn {
            text-align: center;
        }
}

/* ────────────────────────────────────────────────────────────
   CONTACT PAGE
──────────────────────────────────────────────────────────── */
.contact-page {
    display: grid;
    grid-template-columns: 420px 1fr;
    min-height: calc(100vh - 64px);
    animation: pageIn 0.5s ease both;
}

.contact-page__info {
    background: var(--ink);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.contact-page__info-inner {
    padding: clamp(36px, 5vw, 64px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-page__info h1 {
    font-family: var(--font-display);
    color: var(--chalk) !important;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 16px;
    margin-top: 10px;
}

.contact-page__info .lead {
    color: rgba(248,247,243,0.68) !important;
    margin-bottom: 40px;
}

.contact-page__info .page-hero__label {
    color: var(--copper-lt);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-detail__label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--copper-lt) !important;
}

.contact-detail span,
.contact-detail a {
    font-size: 0.95rem;
    color: rgba(248,247,243,0.82) !important;
    line-height: 1.5;
}

    .contact-detail a:hover {
        color: var(--chalk) !important;
        text-decoration: underline;
    }

.contact-img-placeholder {
    margin-top: auto;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16/9;
    background: rgba(255,255,255,0.06);
    position: relative;
}

    .contact-img-placeholder img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.img-placeholder-box {
    display: none;
    position: absolute;
    inset: 0;
    align-items: center;
    justify-content: center;
    color: rgba(248,247,243,0.35);
    font-size: 0.8rem;
    font-style: italic;
    border: 1px dashed rgba(248,247,243,0.15);
    border-radius: var(--radius);
}

.contact-page__form {
    background: var(--chalk);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(36px, 5vw, 72px) clamp(24px, 4vw, 56px);
}

@media (max-width: 900px) {
    .contact-page {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .contact-page__info {
        padding: 0;
    }

    .contact-img-placeholder {
        display: none;
    }
}

/* ────────────────────────────────────────────────────────────
   CONTACT FORM CARD
──────────────────────────────────────────────────────────── */
.contactCard {
    width: 100%;
    max-width: 580px;
    background: var(--white);
    border: 1px solid var(--chalk-dark);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 4px 32px rgba(28,27,24,0.08);
}

.contactCard__title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--ink);
    margin-bottom: 28px;
}

.contactForm .field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.contactForm label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-muted) !important;
}

.contactGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
    margin-bottom: 4px;
}

.contactForm input,
.contactForm textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1.5px solid var(--chalk-dark);
    background: var(--chalk);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

    .contactForm input:focus,
    .contactForm textarea:focus {
        border-color: var(--copper);
        background: var(--white);
        box-shadow: 0 0 0 3px rgba(181,118,58,0.12);
    }

.contactForm textarea {
    min-height: 160px;
    resize: vertical;
}

.contactActions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--chalk-dark);
}

.contactHint {
    margin: 0;
    color: var(--ink-muted) !important;
    font-size: 0.82rem;
    max-width: 44ch;
    line-height: 1.5;
}

.fieldError {
    color: #b91c1c;
    font-size: 0.82rem;
}

.contactSuccess {
    background: #f0fdf4;
    border: 1px solid rgba(34,197,94,0.3);
    border-left: 4px solid #16a34a;
    color: #166534;
    border-radius: 8px;
    padding: 14px 18px;
    margin-bottom: 20px;
    font-size: 0.92rem;
}

@media (max-width: 640px) {
    .contactCard {
        padding: 24px 20px;
    }

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

    .contactActions {
        flex-direction: column;
        align-items: stretch;
    }

        .contactActions .btn {
            text-align: center;
        }
}

/* ────────────────────────────────────────────────────────────
   FAQ PAGE
──────────────────────────────────────────────────────────── */
.faq-hero {
    background: var(--ink);
    padding: 64px 0 56px;
    animation: heroIn 0.5s ease both;
}

    .faq-hero h1 {
        color: var(--chalk) !important;
        margin-bottom: 14px;
    }

    .faq-hero .lead {
        color: rgba(248,247,243,0.7) !important;
        margin-bottom: 0;
    }

    .faq-hero .page-hero__label {
        color: var(--copper-lt);
    }

.faq-wrap {
    padding-top: 56px !important;
    padding-bottom: 80px !important;
}

.faq-container {
    display: flex;
    gap: 56px;
    align-items: flex-start;
    margin-bottom: 56px;
}

.faq-sidebar {
    width: 260px;
    flex-shrink: 0;
    position: sticky;
    top: 88px;
}

.faq-sidebar__heading {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-muted) !important;
    margin-bottom: 12px;
}

.faq-sidebar button {
    display: block;
    width: 100%;
    padding: 11px 14px;
    margin-bottom: 4px;
    border: none;
    background: transparent;
    text-align: left;
    cursor: pointer;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--ink-soft);
    transition: background 0.15s, color 0.15s;
    border-left: 2px solid transparent;
}

    .faq-sidebar button:hover,
    .faq-sidebar button.active {
        background: var(--copper-bg);
        color: var(--ink);
        border-left-color: var(--copper);
        font-weight: 500;
    }

.faq-content {
    flex: 1;
}

.faq-item {
    display: none;
}

    .faq-item.active {
        display: block;
        animation: faqIn 0.3s ease both;
    }

@keyframes faqIn {
    from {
        opacity: 0;
        transform: translateX(8px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.faq-item h2 {
    font-family: var(--font-display);
    font-size: 1.9rem;
    color: var(--ink);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--chalk-dark);
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--ink-soft);
    margin-bottom: 1rem;
}

.faq-item a {
    color: var(--copper);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.faq-cta {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 36px 0;
    border-top: 1px solid var(--chalk-dark);
}

    .faq-cta p {
        margin: 0;
        font-family: var(--font-display);
        font-size: 1.3rem;
        color: var(--ink);
    }

@media (max-width: 768px) {
    .faq-container {
        flex-direction: column;
        gap: 32px;
    }

    .faq-sidebar {
        width: 100%;
        position: static;
    }

    .faq-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ────────────────────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────────────────────── */
.site-footer {
    background: var(--ink);
    color: var(--chalk);
    padding: 64px 0 0;
    flex-shrink: 0;
    position: static !important;
}

.footer-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 64px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(248,247,243,0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(248,247,243,0.55) !important;
    font-weight: 300;
    line-height: 1.6;
    max-width: 28ch;
    margin: 0;
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--copper-lt) !important;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 0.88rem;
    color: rgba(248,247,243,0.65) !important;
    font-weight: 300;
    line-height: 1.65;
    margin-bottom: 8px;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .footer-col ul li a {
        font-size: 0.88rem;
        color: rgba(248,247,243,0.65) !important;
        font-weight: 300;
        transition: color 0.2s;
        text-decoration: none;
    }

        .footer-col ul li a:hover {
            color: var(--chalk) !important;
            text-decoration: none;
        }

.footer-col a[href^="tel"] {
    color: rgba(248,247,243,0.65) !important;
}

.footer-bottom {
    max-width: var(--max);
    margin: 0 auto;
    padding: 18px 28px;
    display: flex;
    gap: 24px;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(248,247,243,0.35) !important;
}

    .footer-bottom span {
        color: rgba(248,247,243,0.35) !important;
    }

@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 560px) {
    .footer-cols {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

/* ────────────────────────────────────────────────────────────
   SERVICES HERO (tredelad klickbar bild pa startsidan)
──────────────────────────────────────────────────────────── */
.servicesHero {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--chalk-dark);
    background-color: var(--chalk-mid);
    display: block;
    box-shadow: 0 4px 24px rgba(28,27,24,0.08);
}

    .servicesHero img {
        width: 100%;
        display: block;
    }

.servicesLinks {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

    .servicesLinks a {
        display: block;
        transition: background 0.2s;
    }

        .servicesLinks a:hover {
            background: rgba(181, 118, 58, 0.12);
        }

/* ────────────────────────────────────────────────────────────
   LEGACY COMPAT (used by old pages not yet redesigned)
──────────────────────────────────────────────────────────── */
.hero {
    width: 100%;
    background: var(--ink);
    overflow: hidden;
    position: relative;
}

    .hero img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        object-position: center 20%;
        display: block;
        opacity: 0.88;
    }

@media (max-width: 900px) {
    .hero img {
        height: 180px;
    }
}

.btn + .btn {
    margin-left: 10px;
}

/* siteFooter legacy */
.siteFooter {
    display: none;
}

/* footerInner.wrap compat */
.footerInner.wrap {
    padding-top: 0;
    padding-bottom: 0;
}
