/*
Theme Name: GeneratePress Child
Theme URI: https://example.com
Description: Minimal child theme for GeneratePress
Author: Your Name
Author URI: https://example.com
Template: generatepress
Version: 1.0
*/

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


/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
    --pb-cream:        #f7f3ee;
    --pb-sand:         #e8dfd3;
    --pb-forest:       #2d4a3e;
    --pb-forest-mid:   #3d6356;
    --pb-forest-light: #e8f0ed;
    --pb-gold:         #b8975a;
    --pb-gold-light:   #d4b483;
    --pb-ink:          #1a1a18;
    --pb-ink-soft:     #2d2d2b;
    --pb-muted:        #8a8680;
    --pb-white:        #ffffff;

    --pb-font-display: 'Dm Sans', Helvetica, serif;
    --pb-font-body:    'Dm Sans', Helvetica, serif;

    --pb-radius:       6px;
    --pb-ease:         cubic-bezier(0.4, 0, 0.2, 1);
    --pb-transition:   0.28s cubic-bezier(0.4, 0, 0.2, 1);

    --pb-card-w: 380px;
}

@media (max-width: 1100px) { :root { --pb-card-w: 290px; } }
@media (max-width:  800px) { :root { --pb-card-w: 260px; } }


/* ============================================================
   2. RESET & BASE
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: inherit !important;
    line-height: 1.5;
}

.inside-article,
.site-main,
.entry-content {
    padding: 0 !important;
    margin: 0 !important;
}

.entry-title { display: none !important; }


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

.img-blob {
    aspect-ratio: 4/4 !important;
    overflow: hidden;
}
.img-blob img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
}

.pb-rule {
    display: block;
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--pb-gold), var(--pb-gold-light));
    margin: 0 auto;
    border-radius: 2px;
}


/* ============================================================
   4. HOME PAGE
   ============================================================ */
.page-id-32 .entry-content {
    padding-top: 800px !important;
}


/* ============================================================
   5. PAGE HEADER
   ============================================================ */
.pb-page-header {
    text-align: center;
    background-color: transparent;
    padding: 4rem 1.5rem 3rem;
    border-bottom: 1px solid var(--pb-sand);
}
.pb-page-header__eyebrow {
    font-family: var(--pb-font-body);
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--pb-gold);
    margin: 0 0 .75rem;
}
.pb-page-header__title {
    font-family: var(--pb-font-display);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 600;
    color: var(--pb-forest);
    margin: 0 0 1rem;
    line-height: 1.1;
}
.pb-page-header__subtitle {
    font-family: var(--pb-font-body);
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--pb-ink-soft);
    max-width: 560px;
    margin: 0 auto 1.75rem;
    line-height: 1.7;
}
.pb-page-header__rule {
    display: block;
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--pb-gold), var(--pb-gold-light));
    margin: 0 auto;
    border-radius: 2px;
}


/* ============================================================
   6. ARCHIVE WRAPPER & CONTAINERS
   ============================================================ */
.pb-archive {
    min-height: 60vh;
}
.pb-archive .site-main {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 42px 42px 42px;
}

.pb-archive-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.75rem;
    margin: 3rem 0 0;
}
.pb-archive-list .pb-card {
    width: 270px;
    flex: 0 0 270px;
    margin-bottom: 0;
}

.pb-archive-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.75rem;
    margin: 3rem 0 0;
}
.pb-archive-grid .pb-card {
    width: 270px;
    flex: 0 0 270px;
}


/* ============================================================
   7. PB-CARD
   ============================================================ */
.pb-card {
    background: var(--pb-white);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    text-decoration: none;
    color: inherit;
    margin-bottom: 2rem;
}

.pb-card__link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.pb-archive-grid .pb-card { margin-bottom: 0; }

.pb-card__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--pb-forest-light);
    flex-shrink: 0;
    position: relative;
}
.pb-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.pb-card__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45,74,62,0) 0%, transparent 60%);
    transition: background 0.35s var(--pb-ease);
    pointer-events: none;
}
.pb-card:hover .pb-card__image-overlay {
    background: linear-gradient(135deg, rgba(45,74,62,.10) 0%, transparent 60%);
}
.pb-card__image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--pb-forest-light) 0%, var(--pb-cream) 100%);
}
.pb-card__image--placeholder svg {
    width: 56px;
    height: 56px;
    color: var(--pb-forest);
}

.pb-card__body {
    padding: 16px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
    height: 100%;
    border: 1px solid var(--pb-sand);
    border-top: none;
}

.pb-card__meta {
    font-family: var(--pb-font-body);
    font-size: .8rem;
    text-align: center;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--pb-gold);
    margin: 0;
}

.pb-card__title {
    font-family: var(--pb-font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--pb-forest);
    margin: 0;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s var(--pb-ease);
}
.pb-card:hover .pb-card__title { color: var(--pb-forest-mid); }

.pb-card__subtitle {
    font-family: var(--pb-font-body);
    font-size: .9rem;
    text-align: center;
    font-weight: 300;
    color: var(--pb-muted);
    line-height: 1.65;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pb-card__excerpt {
    font-family: var(--pb-font-body);
    font-size: .9rem;
    text-align: center;
    font-weight: 300;
    color: var(--pb-muted);
    line-height: 1.65;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pb-card__cta {
    display: block;
    text-align: center;
    font-family: var(--pb-font-body);
    font-size: 1rem;
    border: 1px solid var(--pb-forest);
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--pb-ink);
    text-decoration: none;
    margin-top: 18px;
    padding: 10px;
    transition: background-color 0.22s var(--pb-ease), color 0.22s var(--pb-ease);
    align-self: stretch;
}
.pb-card__cta:hover {
    background-color: var(--pb-forest);
    color: var(--pb-white);
}

.pb-card__badge {
    display: inline-block;
    background-color: #FAF9F7;
    font-family: var(--pb-font-body);
    font-size: .6rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--pb-muted);
    border: 1px solid var(--pb-sand);
    border-radius: 3px;
    padding: 3px 9px;
    position: absolute;
    z-index: 2;
    top: 20px;
    left: 20px;
}

.pb-card__price-tag {
    font-family: var(--pb-font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--pb-ink);
    text-align: center;
    margin: auto 0 0;
    padding-top: 8px;
}


/* ============================================================
   8. HEM-CARD — Homepage scroll-track card
   ============================================================ */
.hem-sektioner {
    display: flex;
    flex-direction: column;
    border-radius: 22px;
    margin-top: 42px;
    overflow: hidden;
}

.hem-sektion {
    position: relative;
    padding: 52px 52px 48px;
    border-top: 1px solid var(--pb-sand);
}
.hem-sektion:last-child { border-bottom: none; }

.hem-sektion__num {
    position: absolute;
    top: 40px;
    right: 52px;
    font-family: var(--pb-font-display);
    font-size: 7rem;
    font-weight: 600;
    font-style: italic;
    line-height: 1;
    color: rgba(45, 74, 62, 0.07);
    pointer-events: none;
    user-select: none;
    letter-spacing: -.04em;
}

.hem-sektion__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 32px;
}

.hem-sektion__heading {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hem-sektion__eyebrow {
    font-family: var(--pb-font-body);
    font-size: .65rem;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--pb-gold);
    margin: 0;
}

.hem-sektion__title {
    font-family: var(--pb-font-display);
    font-size: clamp(1.5rem, 2.8vw, 2.8rem);
    font-weight: 600;
    color: var(--pb-forest);
    margin: 0;
    line-height: 1.1;
    letter-spacing: -.01em;
}

.hem-sektion__link {
    font-family: var(--pb-font-body);
    font-size: .7rem;
    font-weight: 500;
    color: var(--pb-gold);
    text-decoration: none;
    letter-spacing: .12em;
    text-transform: uppercase;
    white-space: nowrap;
    border-bottom: 1.5px solid var(--pb-gold);
    padding-bottom: 1px;
    flex-shrink: 0;
    align-self: flex-end;
    margin-bottom: 4px;
    transition: color 0.2s var(--pb-ease), border-color 0.2s var(--pb-ease);
}
.hem-sektion__link:hover {
    color: var(--pb-gold-light);
    border-color: var(--pb-gold-light);
}

.hem-sektion__empty {
    font-family: var(--pb-font-display);
    font-style: italic;
    color: var(--pb-muted);
    font-size: 1.05rem;
    padding: 20px 0;
    margin: 0;
}

.hem-scroll-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: visible;
    padding-bottom: 6px;
    padding-right: 52px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.hem-scroll-track::-webkit-scrollbar { display: none; }

.hem-card {
    flex: 0 0 var(--pb-card-w);
    width: var(--pb-card-w);
    background: var(--pb-white);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    position: relative;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s var(--pb-ease), box-shadow 0.28s var(--pb-ease);
}

.hem-card__img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--pb-forest-light);
    flex-shrink: 0;
    position: relative;
}
.hem-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s var(--pb-ease);
}
.hem-card__img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45,74,62,0) 0%, transparent 60%);
    transition: background 0.35s var(--pb-ease);
    pointer-events: none;
}
.hem-card:hover .hem-card__img::after {
    background: linear-gradient(135deg, rgba(45,74,62,.10) 0%, transparent 60%);
}
.hem-card__img--empty {
    background: linear-gradient(135deg, var(--pb-forest-light) 0%, var(--pb-cream) 100%);
}

.hem-card__body {
    padding: 16px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
    border: 1px solid var(--pb-sand);
    border-top: none;
}

.hem-card__tag {
    background-color: #FAF9F7;
    font-family: var(--pb-font-body);
    font-size: .6rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--pb-muted);
    border: 1px solid var(--pb-sand);
    border-radius: 3px;
    padding: 3px 9px;
    align-self: flex-start;
    position: absolute;
    z-index: 2;
    top: 20px;
    left: 20px;
}

.hem-card__title {
    font-family: var(--pb-font-display);
    font-size: 2.1rem;
    font-weight: 600;
    color: var(--pb-forest);
    margin: 0;
    text-align: center;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s var(--pb-ease);
}
.hem-card:hover .hem-card__title { color: var(--pb-forest-mid); }

.hem-card__date {
    font-family: var(--pb-font-body);
    font-size: .8rem;
    text-align: center;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--pb-gold);
    margin: 0;
}

.hem-card__info {
    font-family: var(--pb-font-body);
    font-size: .9rem;
    text-align: center;
    font-weight: 300;
    color: var(--pb-muted);
    line-height: 1.65;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hem-card__readmore {
    display: block;
    text-align: center;
    font-family: var(--pb-font-body);
    font-size: 1rem;
    border: 1px solid var(--pb-forest);
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--pb-ink);
    text-decoration: none;
    margin-top: 18px;
    padding: 10px;
    transition: background-color 0.22s var(--pb-ease), color 0.22s var(--pb-ease);
}
.hem-card__readmore:hover {
    background-color: var(--pb-forest);
    color: var(--pb-white);
}

.hem-card__price {
    font-family: var(--pb-font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--pb-ink);
    margin-top: auto;
    padding-top: 8px;
    text-align: center;
}

.hem-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--pb-sand);
}
.hem-card__footer .hem-card__price {
    padding-top: 0;
    margin-top: 0;
    text-align: left;
}

.hem-cat-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: var(--pb-font-body);
    font-size: .6rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 3px;
    color: var(--pb-white);
    pointer-events: none;
    z-index: 2;
}
.hem-cat-tag--nosework     { background: var(--pb-forest); }
.hem-cat-tag--samehantverk { background: var(--pb-gold);   }

.hem-add-btn {
    font-family: var(--pb-font-body);
    background: var(--pb-forest);
    color: var(--pb-white);
    border: none;
    border-radius: var(--pb-radius);
    padding: 8px 14px;
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s var(--pb-ease);
}
.hem-add-btn:hover  { background: var(--pb-forest-mid); }
.hem-add-btn:active { opacity: .85; }
.hem-add-btn.added  { background: var(--pb-gold); }


/* ============================================================
   9. BUTIK — Shop page card
   ============================================================ */
.butik-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.75rem;
}

.butik-card {
    background: var(--pb-white);
    border-radius: var(--pb-radius);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(26,26,24,.06);
    opacity: 0;
    transform: translateY(10px);
    transition:
        opacity 0.3s var(--pb-ease),
        transform 0.3s var(--pb-ease),
        box-shadow 0.28s var(--pb-ease);
}
.butik-card.visible {
    opacity: 1;
    transform: none;
}
.butik-card:hover {
    box-shadow: 0 8px 32px rgba(26,26,24,.12);
    transform: translateY(-2px);
}

.butik-card__img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--pb-forest-light);
    position: relative;
}
.butik-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.butik-card__img--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--pb-forest-light) 0%, var(--pb-cream) 100%);
}
.butik-card__img--empty span {
    font-family: var(--pb-font-body);
    font-size: .75rem;
    color: var(--pb-muted);
    letter-spacing: .1em;
    text-transform: uppercase;
}

.butik-cat-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: var(--pb-font-body);
    font-size: .6rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 3px;
    color: var(--pb-white);
    z-index: 2;
    pointer-events: none;
}
.butik-cat-tag--nosework     { background: var(--pb-forest); }
.butik-cat-tag--samehantverk { background: var(--pb-gold);   }

.butik-card__body {
    padding: 16px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    border: 1px solid var(--pb-sand);
    border-top: none;
}

.butik-card__title {
    font-family: var(--pb-font-display);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--pb-forest);
    margin: 0;
    line-height: 1.25;
    transition: color var(--pb-transition);
}
.butik-card:hover .butik-card__title { color: var(--pb-forest-mid); }

.butik-card__info {
    font-family: var(--pb-font-body);
    font-size: .88rem;
    font-weight: 300;
    color: var(--pb-ink-soft);
    line-height: 1.65;
    margin: 0;
}

.butik-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--pb-sand);
}

.butik-card__price {
    font-family: var(--pb-font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--pb-ink);
}

.butik-add-btn {
    font-family: var(--pb-font-body);
    background: var(--pb-forest);
    color: var(--pb-white);
    border: none;
    border-radius: var(--pb-radius);
    padding: 8px 14px;
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s var(--pb-ease);
}
.butik-add-btn:hover  { background: var(--pb-forest-mid); }
.butik-add-btn:active { opacity: .85; }
.butik-add-btn.added  { background: var(--pb-gold); }


/* ============================================================
   10. BUTIK — Controls
   ============================================================ */
.butik-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.butik-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.butik-filter-btn {
    font-family: var(--pb-font-body);
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 7px 16px;
    border: 1px solid var(--pb-sand);
    border-radius: 3px;
    background: var(--pb-white);
    color: var(--pb-forest);
    cursor: pointer;
    transition: all var(--pb-transition);
}
.butik-filter-btn:hover,
.butik-filter-btn.active {
    background: var(--pb-forest);
    border-color: var(--pb-forest);
    color: var(--pb-white);
}

.butik-sort-select {
    font-family: var(--pb-font-body);
    font-size: .78rem;
    font-weight: 400;
    color: var(--pb-ink);
    background: var(--pb-white);
    border: 1px solid var(--pb-sand);
    border-radius: 3px;
    padding: 7px 30px 7px 12px;
    cursor: pointer;
    transition: border-color var(--pb-transition);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%238a8680' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}
.butik-sort-select:focus { outline: none; border-color: var(--pb-forest); }

.butik-count {
    font-family: var(--pb-font-body);
    font-size: .78rem;
    color: var(--pb-muted);
    margin: 0 0 1rem;
}

.butik-empty {
    font-family: var(--pb-font-body);
    font-size: 1rem;
    color: var(--pb-muted);
    text-align: center;
    padding: 4rem 0;
    font-style: italic;
}


/* ============================================================
   11. PAGINATION
   ============================================================ */
.pb-pagination {
    margin-top: 3rem;
    text-align: center;
}
.pb-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: .5rem;
    flex-wrap: wrap;
}
.pb-pagination .page-numbers {
    font-family: var(--pb-font-body);
    font-size: .85rem;
    font-weight: 500;
    color: var(--pb-forest);
    border: 1px solid var(--pb-sand);
    border-radius: 3px;
    padding: .45rem .85rem;
    text-decoration: none;
    background: var(--pb-white);
    transition: all var(--pb-transition);
}
.pb-pagination .page-numbers.current,
.pb-pagination .page-numbers:hover {
    background: var(--pb-forest);
    border-color: var(--pb-forest);
    color: var(--pb-cream);
}


/* ============================================================
   12. EMPTY STATE
   ============================================================ */
.pb-empty {
    font-family: var(--pb-font-body);
    font-size: 1rem;
    color: var(--pb-muted);
    text-align: center;
    padding: 4rem 0;
}


/* ============================================================
   13. SITE FOOTER
   Output by generate_before_footer hook as .sf-wrap
   ============================================================ */

/* Hide default GP footer */
.site-footer,
.footer-bar,
.site-footer .footer-widgets,
.site-footer .footer-bar,
.site-footer .inside-footer {
    display: none !important;
}

.sf-wrap {
    background: #202020;
    color: var(--pb-cream);
    padding: 64px 48px 0;
}

.sf-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
}

.sf-logo-link { display: inline-block; margin-bottom: 14px; }
.sf-logo {
    width: 90px;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.sf-site-name {
    font-family: var(--pb-font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--pb-cream);
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}

.sf-about {
    font-family: var(--pb-font-body);
    font-size: 0.82rem;
    font-weight: 300;
    color: rgba(247, 243, 238, 0.65);
    line-height: 1.75;
    margin: 0;
    max-width: 260px;
}

.sf-col__heading {
    font-family: var(--pb-font-body);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pb-gold);
    margin: 0 0 20px;
}

.sf-list {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sf-list__item {
    border-bottom: 1px solid rgba(232, 223, 211, 0.1);
}
.sf-list__item:first-child {
    border-top: 1px solid rgba(232, 223, 211, 0.1);
}

.sf-list__link {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 0;
    text-decoration: none;
    transition: padding-left 0.2s var(--pb-ease);
}
.sf-list__link:hover { padding-left: 4px; }

.sf-list__title {
    font-family: var(--pb-font-display);
    font-size: 1rem;
    font-weight: 400;
    color: var(--pb-cream);
    line-height: 1.3;
    transition: color 0.2s var(--pb-ease);
}
.sf-list__link:hover .sf-list__title { color: var(--pb-gold-light); }

.sf-list__meta {
    font-family: var(--pb-font-body);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: rgba(247, 243, 238, 0.45);
    text-transform: uppercase;
}

.sf-more {
    font-family: var(--pb-font-body);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pb-gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(184, 151, 90, 0.4);
    padding-bottom: 1px;
    transition: color 0.2s var(--pb-ease), border-color 0.2s var(--pb-ease);
}
.sf-more:hover {
    color: var(--pb-gold-light);
    border-color: var(--pb-gold-light);
}

.sf-contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sf-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(247, 243, 238, 0.55);
}
.sf-contact svg { flex-shrink: 0; }

.sf-contact__link {
    font-family: var(--pb-font-body);
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--pb-cream);
    text-decoration: none;
    transition: color 0.2s var(--pb-ease);
}
.sf-contact__link:hover { color: var(--pb-gold-light); }

.sf-divider {
    height: 1px;
    background: rgba(232, 223, 211, 0.12);
}

.sf-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0 24px;
}

.sf-copy {
    font-family: var(--pb-font-body);
    font-size: 0.72rem;
    font-weight: 300;
    color: rgba(247, 243, 238, 0.4);
    margin: 0;
}

.sf-legal {
    display: flex;
    gap: 20px;
}
.sf-legal a {
    font-family: var(--pb-font-body);
    font-size: 0.72rem;
    font-weight: 300;
    color: rgba(247, 243, 238, 0.4);
    text-decoration: none;
    transition: color 0.2s var(--pb-ease);
}
.sf-legal a:hover { color: var(--pb-cream); }


/* ============================================================
   14. RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .hem-sektion         { padding: 44px 36px 40px; }
    .hem-sektion__num    { right: 36px; font-size: 5.5rem; }
    .hem-scroll-track    { padding-right: 36px; }

    .pb-archive-grid,
    .sf-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 36px;
    }
    .sf-col--brand { grid-column: 1 / -1; }
    .sf-about      { max-width: 100%; }
}

@media (max-width: 800px) {
    .hem-sektion         { padding: 36px 24px 32px; }
    .hem-sektion__num    { right: 24px; font-size: 4.5rem; top: 32px; }
    .hem-scroll-track    { padding-right: 24px; gap: 12px; }
    .hem-sektion__title  { font-size: 1.5rem; }
}

@media (max-width: 768px) {
    .page-id-32 .entry-content { padding-top: 85vh !important; }

    .wp-container-core-columns-is-layout-9d6595d7 {
        flex-direction: column-reverse !important;
        gap: 0px !important;
    }

    .img-blob     { aspect-ratio: 4/4 !important; }
    .img-blob img { background-position: top; }

    .pb-card__link { grid-template-columns: 1fr; }

    .sf-wrap  { padding: 48px 24px 0; }
    .sf-grid  { grid-template-columns: 1fr 1fr; gap: 28px; }
    .sf-col--brand { grid-column: 1 / -1; }

    .pb-card {
        min-width: 100% !important;
    }
}

@media (max-width: 520px) {
    .hem-sektioner       { margin-top: 24px; border-radius: 14px; padding: 0; }
    .hem-sektion         { padding: 28px 16px 24px; }
    .hem-sektion__num    { display: none; }
    .hem-sektion__title  { font-size: 1.25rem; }
    .hem-sektion__header { margin-bottom: 22px; }

    .hem-scroll-track {
        flex-direction: column;
        overflow-x: visible;
        gap: 12px;
        padding-right: 0;
        padding-bottom: 0;
        scroll-snap-type: none;
    }
    .hem-card            { flex: none; width: 100%; }
    .hem-card:hover      { transform: none; }
    .hem-card__readmore  { opacity: 1; transform: none; }
    .hem-card__img       { aspect-ratio: 16 / 9; }
    .hem-card__body      { padding: 14px 16px 16px; }
    .hem-card__footer    { padding-top: 10px; }
}

@media (max-width: 420px) {
    .sf-wrap   { padding: 40px 16px 0; }
    .sf-grid   { grid-template-columns: 1fr; }
    .sf-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}

@media (max-width: 360px) {
    .hem-sektion { padding: 22px 12px 20px; }
}