/* =====================================================
   SALT Media Theme — main.css
   Nordic Coast Design System
   ===================================================== */

/* ── FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

/* ── TOKENS ── */
:root {
    --navy:       #0A1A26;
    --navy2:      #173446;
    --steel:      #3D5C6D;
    --mist:       #A7BCC6;
    --fog:        #E6EDEF;
    --cream:      #f8fafa;
    --white:      #ffffff;
    --sans:       'Poppins', sans-serif;
    --serif:      'Playfair Display', serif;
    --transition: 0.2s ease;
    --max-w:      1100px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--sans);
    font-size: 14px;
    color: var(--navy);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY HELPERS ── */
.salt-eyebrow {
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--steel);
    margin-bottom: 12px;
}
.salt-eyebrow--light { color: var(--mist); }
.salt-divider {
    width: 40px; height: 1px;
    background: var(--mist);
    margin: 18px 0 36px;
}
.salt-divider--light { background: rgba(167,188,198,0.35); }
.salt-section-title {
    font-size: 32px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--navy);
    margin-bottom: 12px;
}
.salt-section-title--light { color: var(--white); }
.salt-section-title strong { font-weight: 600; }
.salt-intro {
    font-size: 13px;
    line-height: 1.85;
    color: var(--steel);
    font-weight: 300;
    max-width: 560px;
}
.salt-intro--light { color: var(--mist); }

/* ── BUTTONS ── */
.salt-btn {
    display: inline-block;
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 14px 32px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    white-space: nowrap;
}
.salt-btn--primary {
    background: var(--white);
    color: var(--navy);
}
.salt-btn--primary:hover { opacity: 0.88; }
.salt-btn--white {
    background: var(--white);
    color: var(--navy);
}
.salt-btn--white:hover { opacity: 0.88; }
.salt-btn--navy {
    background: var(--navy);
    color: var(--white);
    width: 100%;
    text-align: center;
    padding: 13px;
}
.salt-btn--navy:hover { background: var(--navy2); }
.salt-btn--ghost {
    background: none;
    color: var(--mist);
    padding: 14px 0;
    font-weight: 400;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.salt-btn--ghost::after { content: '→'; }
.salt-btn--ghost:hover { color: var(--white); }
.salt-btn--outline {
    background: none;
    color: var(--white);
    border: 1px solid var(--mist);
    padding: 8px 20px;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
}
.salt-btn--outline:hover { background: var(--mist); color: var(--navy); }

/* ══════════════════════════════════════════════════
   HEADER / NAVBAR
══════════════════════════════════════════════════ */
.salt-header {
    background: var(--navy);
    position: sticky;
    top: 0;
    z-index: 200;
}
.salt-nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.salt-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}
.salt-logo__text { display: flex; flex-direction: column; line-height: 1; }
.salt-logo__name {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.28em;
    color: var(--white);
}
.salt-logo__divider {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--mist);
    font-size: 7px;
    letter-spacing: 0.1em;
    margin: 2px 0;
}
.salt-logo__divider::before,
.salt-logo__divider::after {
    content: '';
    width: 18px; height: 1px;
    background: var(--mist);
}
.salt-logo__sub {
    font-size: 8px;
    letter-spacing: 0.4em;
    color: var(--mist);
    font-weight: 400;
    text-align: center;
}
.salt-nav__links {
    display: flex;
    gap: 28px;
}
.salt-nav__links a {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mist);
    font-weight: 400;
    transition: color var(--transition);
}
.salt-nav__links a:hover,
.salt-nav__links a.current-menu-item { color: var(--white); }
.salt-nav__actions { display: flex; align-items: center; gap: 16px; }
.salt-nav__hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-direction: column;
    gap: 5px;
}
.salt-nav__hamburger span {
    display: block; width: 24px; height: 1.5px;
    background: var(--mist);
    transition: var(--transition);
}

/* Mobile nav */
@media (max-width: 768px) {
    .salt-nav__links, .salt-nav__actions .salt-btn--outline { display: none; }
    .salt-nav__hamburger { display: flex; }
    .salt-nav__links.is-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px; left: 0; right: 0;
        background: var(--navy2);
        padding: 20px 40px;
        gap: 16px;
        z-index: 199;
    }
}

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.salt-footer {
    background: #060f16;
    padding: 60px 40px 28px;
}
.salt-footer__inner {
    max-width: var(--max-w);
    margin: 0 auto;
}
.salt-footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(167,188,198,0.1);
    margin-bottom: 24px;
}
.salt-footer__brand p {
    font-size: 11px;
    line-height: 1.8;
    color: rgba(167,188,198,0.6);
    margin-top: 16px;
    font-weight: 300;
    max-width: 280px;
}
.salt-footer__col-title {
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--mist);
    font-weight: 500;
    margin-bottom: 16px;
}
.salt-footer__links li { margin-bottom: 10px; }
.salt-footer__links a {
    font-size: 11px;
    color: rgba(167,188,198,0.55);
    font-weight: 300;
    transition: color var(--transition);
}
.salt-footer__links a:hover { color: var(--white); }
.salt-footer__contact p {
    font-size: 11px;
    color: rgba(167,188,198,0.55);
    line-height: 1.9;
    font-weight: 300;
}
.salt-footer__contact a { transition: color var(--transition); }
.salt-footer__contact a:hover { color: var(--white); }
.salt-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.salt-footer__bottom p,
.salt-footer__bottom a {
    font-size: 10px;
    color: rgba(167,188,198,0.3);
    letter-spacing: 0.05em;
}
.salt-footer__social {
    display: flex;
    gap: 12px;
}
.salt-footer__social a {
    font-size: 10px;
    color: rgba(167,188,198,0.4);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color var(--transition);
}
.salt-footer__social a:hover { color: var(--mist); }
@media (max-width: 900px) {
    .salt-footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .salt-footer__top { grid-template-columns: 1fr; }
    .salt-footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════════════════════
   BLOCK: HERO
══════════════════════════════════════════════════ */
.salt-hero {
    background: var(--navy);
    min-height: 580px;
    display: flex;
    position: relative;
    overflow: hidden;
}
.salt-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    pointer-events: none;
}
.salt-hero__waves {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 150px;
    opacity: 0.06;
    pointer-events: none;
}
.salt-hero__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 40px 80px;
    max-width: 620px;
    position: relative;
    z-index: 2;
    margin: 0 auto;
}
.salt-hero__eyebrow {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--mist);
    font-weight: 400;
    margin-bottom: 20px;
}
.salt-hero__title {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.12;
    color: var(--white);
    letter-spacing: -0.01em;
    margin-bottom: 24px;
}
.salt-hero__title strong { font-weight: 600; display: block; }
.salt-hero__text {
    font-size: 13px;
    line-height: 1.85;
    color: var(--mist);
    font-weight: 300;
    max-width: 440px;
    margin-bottom: 40px;
}
.salt-hero__actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

/* Two-col hero (with image) */
.salt-hero--split { justify-content: flex-start; }
.salt-hero--split .salt-hero__content { max-width: 560px; padding-left: 60px; }
.salt-hero__visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}
.salt-hero__visual img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.salt-hero__visual-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy2) 0%, var(--navy) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .salt-hero { flex-direction: column; min-height: auto; }
    .salt-hero__title { font-size: 32px; }
    .salt-hero__content { padding: 60px 24px; max-width: 100%; }
    .salt-hero--split .salt-hero__content { padding-left: 24px; }
    .salt-hero__visual { min-height: 240px; }
}

/* ══════════════════════════════════════════════════
   BLOCK: STATS BAR
══════════════════════════════════════════════════ */
.salt-stats-bar {
    background: var(--navy2);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.salt-stats-bar__item {
    padding: 28px 48px;
    text-align: center;
    border-right: 1px solid rgba(167,188,198,0.12);
    flex: 1;
    min-width: 150px;
}
.salt-stats-bar__item:last-child { border-right: none; }
.salt-stats-bar__value {
    font-size: 28px;
    font-weight: 300;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 6px;
}
.salt-stats-bar__label {
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mist);
    font-weight: 400;
}

/* ══════════════════════════════════════════════════
   BLOCK: SERVICES GRID
══════════════════════════════════════════════════ */
.salt-services {
    padding: 80px 40px;
    max-width: var(--max-w);
    margin: 0 auto;
}
.salt-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 48px;
    background: var(--fog);
}
.salt-services__card {
    background: var(--white);
    padding: 40px 32px;
    transition: var(--transition);
}
.salt-services__card:hover { background: var(--cream); }
.salt-services__num {
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--mist);
    font-weight: 500;
    margin-bottom: 16px;
}
.salt-services__title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 12px;
}
.salt-services__desc {
    font-size: 12px;
    line-height: 1.8;
    color: var(--steel);
    font-weight: 300;
}
.salt-services__link {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--steel);
    margin-top: 12px;
    font-weight: 500;
    transition: color var(--transition);
}
.salt-services__link:hover { color: var(--navy); }
@media (max-width: 900px) { .salt-services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .salt-services__grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════
   BLOCK: PROCESS STEPS
══════════════════════════════════════════════════ */
.salt-process {
    background: var(--navy);
    padding: 80px 40px;
}
.salt-process__inner {
    max-width: var(--max-w);
    margin: 0 auto;
}
.salt-process__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 48px;
    border-top: 1px solid rgba(167,188,198,0.15);
    border-left: 1px solid rgba(167,188,198,0.15);
}
.salt-process__step {
    padding: 36px 28px;
    border-right: 1px solid rgba(167,188,198,0.15);
    border-bottom: 1px solid rgba(167,188,198,0.15);
}
.salt-process__num {
    font-size: 40px;
    font-weight: 300;
    color: rgba(167,188,198,0.2);
    line-height: 1;
    margin-bottom: 16px;
}
.salt-process__title {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 10px;
}
.salt-process__desc {
    font-size: 11px;
    line-height: 1.75;
    color: var(--mist);
    font-weight: 300;
}
@media (max-width: 768px) {
    .salt-process__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .salt-process__grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════
   BLOCK: CASE CARDS
══════════════════════════════════════════════════ */
.salt-cases {
    padding: 80px 40px;
    max-width: var(--max-w);
    margin: 0 auto;
}
.salt-cases__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.salt-cases__card { overflow: hidden; }
.salt-cases__img {
    height: 240px;
    position: relative;
    overflow: hidden;
    background: var(--navy2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.salt-cases__img img {
    position: absolute;
    inset: 0; width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.salt-cases__card:hover .salt-cases__img img { transform: scale(1.04); }
.salt-cases__img-placeholder {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.1);
    text-transform: uppercase;
}
.salt-cases__label {
    position: absolute;
    top: 16px; left: 16px;
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mist);
    background: rgba(10,26,38,0.65);
    padding: 5px 10px;
    z-index: 2;
}
.salt-cases__info {
    background: var(--cream);
    padding: 24px 28px;
    border-top: 2px solid var(--navy);
}
.salt-cases__tag {
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--steel);
    margin-bottom: 8px;
}
.salt-cases__title {
    font-size: 15px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.35;
}
.salt-cases__desc {
    font-size: 11px;
    line-height: 1.75;
    color: var(--steel);
    font-weight: 300;
}
@media (max-width: 680px) { .salt-cases__grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════
   BLOCK: TESTIMONIAL
══════════════════════════════════════════════════ */
.salt-testimonial {
    background: var(--cream);
}
.salt-testimonial__inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    align-items: stretch;
    max-width: var(--max-w);
    margin: 0 auto;
}
.salt-testimonial__img {
    background: var(--navy2);
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.salt-testimonial__img img {
    position: absolute;
    inset: 0; width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.8;
}
.salt-testimonial__content {
    padding: 60px 60px 60px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.salt-testimonial__quote {
    font-family: var(--serif);
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
    color: var(--navy);
    margin: 20px 0 28px;
    position: relative;
}
.salt-testimonial__quote::before {
    content: '\201C';
    font-size: 60px;
    color: var(--fog);
    line-height: 0.6;
    position: absolute;
    top: 0; left: -10px;
    font-family: var(--serif);
}
.salt-testimonial__author {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--navy);
    font-weight: 500;
}
.salt-testimonial__company {
    font-size: 11px;
    color: var(--mist);
    margin-top: 4px;
    font-weight: 300;
}
@media (max-width: 768px) {
    .salt-testimonial__inner { grid-template-columns: 1fr; }
    .salt-testimonial__img { min-height: 220px; }
    .salt-testimonial__content { padding: 40px 24px; }
}

/* ══════════════════════════════════════════════════
   BLOCK: CTA STRIP
══════════════════════════════════════════════════ */
.salt-cta-strip {
    background: var(--navy);
    padding: 70px 40px;
}
.salt-cta-strip__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.salt-cta-strip__title {
    font-size: 28px;
    font-weight: 300;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 8px;
}
.salt-cta-strip__title strong { font-weight: 600; display: block; }
.salt-cta-strip__sub {
    font-size: 12px;
    color: var(--mist);
    font-weight: 300;
}

/* ══════════════════════════════════════════════════
   BLOCK: PAGE HERO (undersida)
══════════════════════════════════════════════════ */
.salt-page-hero {
    background: var(--navy);
    padding: 90px 40px 80px;
}
.salt-page-hero__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.salt-breadcrumb {
    font-size: 10px;
    letter-spacing: 0.12em;
    color: var(--mist);
    margin-bottom: 22px;
    font-weight: 300;
}
.salt-breadcrumb a { color: var(--mist); }
.salt-breadcrumb a:hover { color: var(--white); }
.salt-breadcrumb span { margin: 0 8px; opacity: 0.4; }
.salt-page-hero__title {
    font-size: 44px;
    font-weight: 300;
    color: var(--white);
    line-height: 1.12;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}
.salt-page-hero__title strong { font-weight: 600; display: block; }
.salt-page-hero__text {
    font-size: 13px;
    line-height: 1.85;
    color: var(--mist);
    font-weight: 300;
    margin-bottom: 32px;
}
.salt-page-hero__metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.salt-page-hero__metric {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(167,188,198,0.12);
    padding: 24px 22px;
}
.salt-page-hero__metric-val {
    font-size: 30px;
    font-weight: 300;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 6px;
}
.salt-page-hero__metric-lbl {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mist);
    font-weight: 400;
}
@media (max-width: 768px) {
    .salt-page-hero__inner { grid-template-columns: 1fr; }
    .salt-page-hero__title { font-size: 32px; }
}

/* ══════════════════════════════════════════════════
   BLOCK: CONTENT + SIDEBAR
══════════════════════════════════════════════════ */
.salt-content-sidebar {
    padding: 70px 40px;
}
.salt-content-sidebar__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    align-items: start;
}
.salt-content-sidebar__main h2 {
    font-size: 26px;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.3;
}
.salt-content-sidebar__main h3 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    margin: 40px 0 16px;
}
.salt-content-sidebar__main p {
    font-size: 13px;
    line-height: 1.9;
    color: var(--steel);
    font-weight: 300;
    margin-bottom: 20px;
}
.salt-content-sidebar__main ul.salt-feature-list {
    margin-bottom: 28px;
}
.salt-feature-list li {
    font-size: 12px;
    line-height: 1.7;
    color: var(--steel);
    padding: 10px 0;
    border-bottom: 1px solid var(--fog);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 300;
}
.salt-feature-list li::before {
    content: '—';
    color: var(--mist);
    flex-shrink: 0;
    margin-top: 1px;
}
.salt-mini-case {
    background: var(--fog);
    padding: 32px 28px;
    margin-top: 40px;
    border-left: 3px solid var(--navy);
}
.salt-mini-case__label {
    font-size: 9px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--steel);
    margin-bottom: 8px;
}
.salt-mini-case__title {
    font-size: 15px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 10px;
}
.salt-mini-case__text {
    font-size: 12px;
    line-height: 1.8;
    color: var(--steel);
    font-weight: 300;
}
/* Sidebar */
.salt-sidebar__card {
    background: var(--navy);
    padding: 28px 26px;
    margin-bottom: 14px;
}
.salt-sidebar__title {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--mist);
    font-weight: 500;
    margin-bottom: 18px;
}
.salt-sidebar__links li {
    font-size: 12px;
    color: rgba(167,188,198,0.75);
    padding: 9px 0;
    border-bottom: 1px solid rgba(167,188,198,0.1);
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color var(--transition);
}
.salt-sidebar__links li:last-child { border-bottom: none; }
.salt-sidebar__links li::before {
    content: '';
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--mist);
    flex-shrink: 0;
    opacity: 0.5;
}
.salt-sidebar__links a { color: inherit; }
.salt-sidebar__links a:hover { color: var(--white); }
.salt-sidebar__form {
    background: var(--fog);
    padding: 28px 26px;
}
.salt-sidebar__form h4 {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--navy);
    font-weight: 500;
    margin-bottom: 12px;
}
.salt-sidebar__form p {
    font-size: 12px;
    line-height: 1.7;
    color: var(--steel);
    font-weight: 300;
    margin-bottom: 18px;
}
@media (max-width: 900px) {
    .salt-content-sidebar__inner { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════
   BLOCK: FULL WIDTH CONTENT
══════════════════════════════════════════════════ */
.salt-fw-content { padding: 80px 40px; }
.salt-fw-content--cream { background: var(--cream); }
.salt-fw-content--dark { background: var(--navy); }
.salt-fw-content--dark .salt-section-title { color: var(--white); }
.salt-fw-content--dark .salt-eyebrow { color: var(--mist); }
.salt-fw-content--dark p,
.salt-fw-content--dark li { color: var(--mist); }
.salt-fw-content__inner {
    max-width: var(--max-w);
    margin: 0 auto;
}
.salt-fw-content__body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
}
.salt-fw-content__body.has-image {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
}
.salt-fw-content__text p { font-size: 13px; line-height: 1.9; color: var(--steel); font-weight: 300; margin-bottom: 18px; }
.salt-fw-content__text h3 { font-size: 18px; font-weight: 400; color: var(--navy); margin: 28px 0 12px; }
.salt-fw-content__text ul { margin: 0 0 20px 0; }
.salt-fw-content__text ul li { font-size: 13px; line-height: 1.7; color: var(--steel); padding: 6px 0; border-bottom: 1px solid var(--fog); display: flex; align-items: flex-start; gap: 10px; font-weight: 300; }
.salt-fw-content__text ul li::before { content: '—'; color: var(--mist); flex-shrink: 0; }
.salt-fw-content__image img { width: 100%; height: auto; }
@media (max-width: 768px) {
    .salt-fw-content__body.has-image { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════
   BLOCK: CONTACT FORM
══════════════════════════════════════════════════ */
.salt-contact { padding: 80px 40px; }
.salt-contact__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}
.salt-contact__info { padding-top: 8px; }
.salt-contact__info-block { margin-top: 40px; }
.salt-contact__info-label {
    font-size: 9px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--steel);
    font-weight: 500;
    margin-bottom: 8px;
}
.salt-contact__info-value {
    font-size: 13px;
    line-height: 1.8;
    color: var(--navy);
    font-weight: 300;
}
.salt-contact__info-value a { transition: color var(--transition); }
.salt-contact__info-value a:hover { color: var(--steel); }
.salt-contact__form { background: var(--cream); padding: 48px; }
.salt-contact__form-title {
    font-size: 20px;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 28px;
}
.salt-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.salt-form__row--full { grid-template-columns: 1fr; }
.salt-form__field { display: flex; flex-direction: column; gap: 6px; }
.salt-form__label {
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--steel);
    font-weight: 500;
}
.salt-form__input,
.salt-form__textarea {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--navy);
    background: var(--white);
    border: 1px solid #d0dde2;
    padding: 12px 16px;
    outline: none;
    width: 100%;
    transition: border-color var(--transition);
    -webkit-appearance: none;
}
.salt-form__input:focus,
.salt-form__textarea:focus { border-color: var(--steel); }
.salt-form__input::placeholder,
.salt-form__textarea::placeholder { color: var(--mist); }
.salt-form__textarea { resize: vertical; min-height: 130px; }
.salt-form__submit { margin-top: 20px; width: 100%; }
.salt-form__message {
    margin-top: 16px;
    font-size: 12px;
    padding: 12px 16px;
    display: none;
}
.salt-form__message--success { background: #e8f5ee; color: #1a6638; display: block; }
.salt-form__message--error   { background: #fde8e8; color: #9c1e1e; display: block; }
@media (max-width: 900px) {
    .salt-contact__inner { grid-template-columns: 1fr; }
    .salt-contact__form { padding: 32px 24px; }
}
@media (max-width: 480px) {
    .salt-form__row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════
   FORM INPUT SHARED
══════════════════════════════════════════════════ */
.salt-input {
    font-family: var(--sans);
    font-size: 12px;
    color: var(--navy);
    background: var(--white);
    border: 1px solid #d0dde2;
    padding: 10px 14px;
    outline: none;
    width: 100%;
    transition: border-color var(--transition);
    margin-bottom: 10px;
    display: block;
}
.salt-input:focus { border-color: var(--steel); }
.salt-input::placeholder { color: var(--mist); }

/* ══════════════════════════════════════════════════
   PAGE TEMPLATES
══════════════════════════════════════════════════ */
.salt-page-wrapper { min-height: 60vh; }

/* ══════════════════════════════════════════════════
   PAGE TEMPLATES — layout wrappers
══════════════════════════════════════════════════ */

/* Shared page hero — used by all templates except fullbredd */
.salt-page-hero {
    background: var(--navy);
    padding: 80px 40px 70px;
}
.salt-page-hero__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.salt-page-hero__inner:has(.salt-page-hero__content:only-child) {
    grid-template-columns: 1fr;
}
.salt-page-hero__title {
    font-size: 40px;
    font-weight: 300;
    color: var(--white);
    line-height: 1.12;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}
.salt-page-hero__title strong { font-weight: 600; display: block; }
.salt-page-hero__text {
    font-size: 13px;
    line-height: 1.85;
    color: var(--mist);
    font-weight: 300;
    max-width: 480px;
    margin-bottom: 28px;
}
.salt-page-hero__metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.salt-page-hero__metric {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(167,188,198,0.12);
    padding: 22px 20px;
}
.salt-page-hero__metric-val {
    font-size: 28px;
    font-weight: 300;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 5px;
}
.salt-page-hero__metric-lbl {
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mist);
}
@media (max-width: 768px) {
    .salt-page-hero__inner { grid-template-columns: 1fr; gap: 32px; }
    .salt-page-hero { padding: 50px 24px; }
    .salt-page-hero__title { font-size: 28px; }
}

/* ── Template 1: Standard (default) ── */
.salt-page-standard {
    padding: 60px 40px 80px;
}
.salt-page-standard__inner {
    max-width: var(--max-w);
    margin: 0 auto;
}
.salt-page-standard__content {
    max-width: 760px;
}
.salt-page-standard__content h2 {
    font-size: 26px;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 14px;
    line-height: 1.3;
    margin-top: 40px;
}
.salt-page-standard__content h2:first-child { margin-top: 0; }
.salt-page-standard__content h3 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
    margin: 32px 0 12px;
}
.salt-page-standard__content p {
    font-size: 13px;
    line-height: 1.9;
    color: var(--steel);
    font-weight: 300;
    margin-bottom: 18px;
}
.salt-page-standard__content ul {
    margin: 0 0 20px;
}
.salt-page-standard__content ul li {
    font-size: 13px;
    line-height: 1.7;
    color: var(--steel);
    padding: 9px 0;
    border-bottom: 1px solid var(--fog);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 300;
}
.salt-page-standard__content ul li::before {
    content: '—';
    color: var(--mist);
    flex-shrink: 0;
}
.salt-page-standard__content img {
    max-width: 100%;
    height: auto;
    margin: 24px 0;
}
@media (max-width: 768px) {
    .salt-page-standard { padding: 40px 24px 60px; }
}

/* ── Template 2: Med sidebar ── */
.salt-page-sidebar {
    padding: 60px 40px 80px;
}
.salt-page-sidebar__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: start;
}
.salt-page-sidebar__main h2 {
    font-size: 26px;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 14px;
    line-height: 1.3;
    margin-top: 40px;
}
.salt-page-sidebar__main h2:first-child { margin-top: 0; }
.salt-page-sidebar__main h3 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
    margin: 32px 0 12px;
}
.salt-page-sidebar__main p {
    font-size: 13px;
    line-height: 1.9;
    color: var(--steel);
    font-weight: 300;
    margin-bottom: 18px;
}
.salt-page-sidebar__main ul {
    margin: 0 0 20px;
}
.salt-page-sidebar__main ul li {
    font-size: 13px;
    line-height: 1.7;
    color: var(--steel);
    padding: 9px 0;
    border-bottom: 1px solid var(--fog);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 300;
}
.salt-page-sidebar__main ul li::before {
    content: '—';
    color: var(--mist);
    flex-shrink: 0;
}
.salt-page-sidebar__main img { max-width: 100%; height: auto; margin: 24px 0; }
@media (max-width: 900px) {
    .salt-page-sidebar__inner { grid-template-columns: 1fr; }
    .salt-page-sidebar__aside { order: -1; }
    .salt-page-sidebar { padding: 40px 24px 60px; }
}

/* ── Template 3: Centrerad ── */
.salt-page-centered {
    padding: 70px 40px 90px;
}
.salt-page-centered__inner {
    max-width: 680px;
    margin: 0 auto;
}
.salt-page-centered__inner h2 {
    font-size: 28px;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 14px;
    line-height: 1.3;
    margin-top: 48px;
}
.salt-page-centered__inner h2:first-child { margin-top: 0; }
.salt-page-centered__inner h3 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
    margin: 36px 0 12px;
}
.salt-page-centered__inner p {
    font-size: 14px;
    line-height: 1.95;
    color: var(--steel);
    font-weight: 300;
    margin-bottom: 20px;
}
.salt-page-centered__inner ul {
    margin: 0 0 24px;
}
.salt-page-centered__inner ul li {
    font-size: 13px;
    line-height: 1.75;
    color: var(--steel);
    padding: 9px 0;
    border-bottom: 1px solid var(--fog);
    display: flex;
    gap: 10px;
    font-weight: 300;
}
.salt-page-centered__inner ul li::before {
    content: '—';
    color: var(--mist);
    flex-shrink: 0;
}
.salt-page-centered__inner blockquote {
    border-left: 3px solid var(--mist);
    padding: 8px 0 8px 24px;
    margin: 28px 0;
    font-family: var(--serif);
    font-style: italic;
    font-size: 18px;
    line-height: 1.6;
    color: var(--navy);
}
.salt-page-centered__inner img {
    max-width: 100%;
    height: auto;
    margin: 32px 0;
}
@media (max-width: 768px) {
    .salt-page-centered { padding: 40px 24px 60px; }
}

/* ── Template 4: Fullbredd ── (no wrapper — blocks handle their own layout) */
