/* ==========================================================
   Henricssons Båtkapell premium stylesheet
   Scoped under body.hb-premium to stay isolated from styles.css.
   ========================================================== */
.hb-premium, .hb-premium *, .hb-premium *::before, .hb-premium *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.hb-premium {
    --ink:        #0c1a2b;
    --ink-soft:   #1b2e47;
    --cream:      #f5f0e6;
    --cream-2:    #eae2d2;
    --brass:      #b28a4c;
    --brass-dark: #8f6d38;
    --line:       #d9cfbe;
    --muted:      #6b7788;
    --white:      #ffffff;

    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
    font-weight: 400;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.hb-premium h1,
.hb-premium h2,
.hb-premium h3,
.hb-premium h4,
.hb-premium .serif {
    font-family: 'Libre Baskerville', 'Lora', Georgia, serif;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--ink);
}

.hb-premium a { color: var(--brass); }
.hb-premium ul { padding-left: 1.2rem; }
.hb-premium li { margin-bottom: 0.35rem; }

.hb-premium .wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.hb-premium .wrap--narrow { max-width: 860px; }

.hb-premium .eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--brass);
    font-weight: 600;
}
.hb-premium .rule {
    width: 56px;
    height: 1px;
    background: var(--brass);
    display: block;
    margin: 1.25rem 0;
}

/* ---------- Top contact bar ---------- */
.hb-top {
    background: var(--ink);
    color: #cfd7e2;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
}
.hb-top .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 34px;
}
.hb-top a { color: #e7ebf1; text-decoration: none; }
.hb-top a:hover { color: var(--brass); }
.hb-top .hb-top-left span { opacity: 0.75; }
.hb-top .hb-top-right { display: flex; gap: 1.5rem; }
@media (max-width: 640px) {
    .hb-top .hb-top-left { display: none; }
    .hb-top .wrap { justify-content: center; }
}

/* ---------- Header / nav ---------- */
.hb-header {
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 100;
}
.hb-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px;
    gap: 1.5rem;
    min-width: 0;
}
.hb-logo { flex: 0 0 auto; }
.hb-logo img {
    height: 46px;
    width: auto;
    display: block;
}
.hb-nav-links {
    display: flex;
    gap: 2.25rem;
    align-items: center;
    margin-left: auto;
    min-width: 0;
    flex-wrap: nowrap;
}
.hb-nav-dropdown {
    position: relative;
}
.hb-nav-links a {
    text-decoration: none;
    color: var(--ink);
    font-size: 0.86rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
    position: relative;
    white-space: nowrap;
}
.hb-nav-summary {
    list-style: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    text-decoration: none;
    color: var(--ink);
    font-size: 0.86rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
    white-space: nowrap;
}
.hb-nav-summary::-webkit-details-marker {
    display: none;
}
.hb-nav-summary::after {
    content: '▾';
    font-size: 0.72em;
    transition: transform 0.2s ease;
}
.hb-nav-dropdown[open] .hb-nav-summary::after {
    transform: rotate(180deg);
}
.hb-nav-links a:hover,
.hb-nav-links a.active,
.hb-nav-summary:hover,
.hb-nav-summary.active,
.hb-nav-dropdown[open] .hb-nav-summary { color: var(--brass); }
.hb-nav-submenu {
    position: absolute;
    top: calc(100% + 0.9rem);
    left: 50%;
    transform: translateX(-50%);
    min-width: 240px;
    padding: 0.6rem 0;
    background: var(--cream);
    border: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(12, 26, 43, 0.12);
    display: none;
    z-index: 20;
}
.hb-nav-submenu a {
    display: block;
    padding: 0.72rem 1rem;
    font-size: 0.76rem;
    letter-spacing: 0.1em;
    width: 100%;
}
.hb-nav-submenu a:hover,
.hb-nav-submenu a.active {
    background: rgba(178, 138, 76, 0.08);
}
@media (min-width: 1121px) {
    .hb-nav-dropdown:hover .hb-nav-submenu,
    .hb-nav-dropdown:focus-within .hb-nav-submenu,
    .hb-nav-dropdown[open] .hb-nav-submenu {
        display: block;
    }
}
.hb-nav-cta {
    background: var(--brass);
    color: var(--white) !important;
    padding: 0.7rem 1.25rem;
    border: 1px solid var(--brass);
    transition: all 0.25s;
}
.hb-nav-cta:hover {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--cream) !important;
}
.hb-burger {
    display: none;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 0.5rem;
}
.hb-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    margin: 5px 0;
    transition: .3s;
}
@media (max-width: 1320px) and (min-width: 1121px) {
    .hb-nav-links {
        gap: clamp(0.9rem, 1.8vw, 1.55rem);
    }
    .hb-nav-cta {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
@media (max-width: 1120px) {
    .hb-nav-links {
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.25rem;
        border-bottom: 1px solid var(--line);
        display: none;
    }
    .hb-nav-links.is-open { display: flex; }
    .hb-burger { display: block; }
    .hb-nav-dropdown {
        width: 100%;
    }
    .hb-nav-summary {
        width: 100%;
        justify-content: space-between;
        padding: 0.4rem 0;
    }
    .hb-nav-submenu {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        min-width: 0;
        margin-top: 0.35rem;
        border: 1px solid var(--line);
        box-shadow: none;
    }
    .hb-nav-dropdown[open] .hb-nav-submenu {
        display: block;
    }
}

/* ---------- Sections ---------- */
.hb-section { padding: 6rem 0; }
@media (max-width: 700px) { .hb-section { padding: 4rem 0; } }
.hb-section--tight { padding: 4rem 0; }

/* ---------- Buttons ---------- */
.hb-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.8rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
}
.hb-btn-primary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1.15rem 3rem;
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--white) !important;
    -webkit-text-fill-color: var(--white);
    text-decoration: none;
    border-radius: 0;
    border: 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(130deg, #f7c45b 0%, #e2a946 50%, #f7c45b 100%);
    background-size: 200% 200%;
    animation: hbGradientShift 3s ease infinite;
    box-shadow: 0 4px 12px rgba(247,196,91,0.35), 0 2px 4px rgba(247,196,91,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.hb-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: hbShimmer 3s infinite;
    z-index: 1;
}
.hb-btn-primary span {
    position: relative;
    z-index: 2;
    color: var(--white) !important;
    -webkit-text-fill-color: var(--white);
}
.hb-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(247,196,91,0.45), 0 3px 6px rgba(247,196,91,0.3);
    color: var(--white) !important;
    -webkit-text-fill-color: var(--white);
}
@keyframes hbGradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes hbShimmer {
    0%   { left: -100%; }
    50%  { left: 100%; }
    100% { left: 100%; }
}
.hb-btn-ghost {
    background: transparent;
    color: var(--cream);
    border-color: rgba(245,240,230,0.4);
}
.hb-btn-ghost:hover {
    border-color: var(--cream);
    background: rgba(245,240,230,0.06);
    color: var(--cream);
}
.hb-btn-dark {
    background: var(--ink);
    color: var(--cream);
    border-color: var(--ink);
}
.hb-btn-dark:hover {
    background: var(--brass);
    border-color: var(--brass);
    color: var(--white);
}

/* ---------- Announcement ---------- */
.hb-announcement {
    background: var(--ink-soft);
    color: var(--cream);
    padding: 1rem 0;
    display: none;
}
.hb-announcement.is-visible { display: block; }
.hb-announcement .wrap {
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 0.92rem;
}
.hb-announcement .tag {
    background: var(--brass);
    color: var(--white);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    font-weight: 600;
    flex-shrink: 0;
}
.hb-announcement-body p { margin: 0; }

/* ---------- HERO (home) ---------- */
.hb-hero {
    position: relative;
    min-height: 82vh;
    display: flex;
    align-items: center;
    color: var(--cream);
    overflow: hidden;
    background: var(--ink);
}
.hb-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hb-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.52) saturate(0.85);
}
.hb-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(12,26,43,0.3) 0%, rgba(12,26,43,0.6) 55%, rgba(12,26,43,0.88) 100%);
}
.hb-hero .wrap {
    position: relative;
    z-index: 2;
    padding-top: 5rem;
    padding-bottom: 6rem;
}
.hb-hero .eyebrow { color: var(--brass); }
.hb-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.25rem);
    line-height: 1.08;
    color: var(--cream);
    max-width: 820px;
    margin-top: 1rem;
}
.hb-hero h1 em {
    font-style: italic;
    color: var(--brass);
    font-family: 'Lora', serif;
    font-weight: 500;
}
.hb-hero .lead {
    font-size: 1.08rem;
    max-width: 560px;
    margin-top: 1.5rem;
    color: #dfd6c5;
    line-height: 1.7;
}
.hb-hero .rule {
    background: var(--brass);
    margin: 1.5rem 0;
}
.hb-ctas {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.hb-hero-meta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    border-top: 1px solid rgba(245,240,230,0.18);
    background: rgba(12,26,43,0.5);
    backdrop-filter: blur(4px);
}
.hb-hero-meta .wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 1.25rem 1.5rem;
    gap: 1rem;
}
.hb-hero-meta .item { text-align: left; }
.hb-hero-meta .k {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.75rem;
    color: var(--cream);
    line-height: 1;
}
.hb-hero-meta .v {
    font-size: 0.72rem;
    color: #bfb49e;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 0.4rem;
}
@media (max-width: 700px) {
    .hb-hero-meta .wrap { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Page hero (non-home) ---------- */
.hb-pagehero {
    position: relative;
    padding: 5rem 0 4.5rem;
    background: var(--ink);
    color: var(--cream);
    overflow: hidden;
}
.hb-pagehero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hb-pagehero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.35) saturate(0.8);
}
.hb-pagehero .wrap {
    position: relative;
    z-index: 1;
}
.hb-pagehero .eyebrow { color: var(--brass); }
.hb-pagehero h1 {
    color: var(--cream);
    font-size: clamp(2rem, 4.4vw, 3.4rem);
    line-height: 1.12;
    margin-top: 0.75rem;
    max-width: 720px;
}
.hb-pagehero h1 em {
    font-style: italic;
    color: var(--brass);
    font-family: 'Lora', serif;
}
.hb-pagehero .rule { background: var(--brass); }
.hb-pagehero .lead {
    margin-top: 1.25rem;
    max-width: 640px;
    color: #dfd6c5;
    font-size: 1.02rem;
    line-height: 1.7;
}

/* ---------- Intro / value-prop two-col ---------- */
.hb-intro .wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}
.wrap.hb-intro {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}
@media (max-width: 900px) {
    .hb-intro .wrap,
    .wrap.hb-intro { grid-template-columns: 1fr; gap: 2.5rem; }
}
.hb-intro h2 {
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    line-height: 1.2;
}
.hb-intro p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-top: 1.25rem;
}
.hb-intro p + p { margin-top: 1rem; }
.hb-intro .image {
    aspect-ratio: 4 / 5;
    position: relative;
    overflow: hidden;
}
.hb-intro .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hb-intro .image .badge {
    position: absolute;
    right: -12px;
    bottom: 32px;
    background: var(--brass);
    color: var(--white);
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    padding: 0.9rem 1.4rem;
}

/* ---------- Cards / service grid ---------- */
.hb-services { background: var(--cream-2); }
.hb-services .head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3.5rem;
}
.hb-services .head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.hb-services .head p { color: var(--muted); margin-top: 1rem; }
.hb-services .head .rule { margin: 1.25rem auto; }
.hb-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
@media (max-width: 900px) {
    .hb-service-grid { grid-template-columns: 1fr; }
}
.hb-card {
    background: var(--white);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.hb-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -20px rgba(12,26,43,0.25);
}
.hb-card .media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.hb-card .media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.hb-card:hover .media img { transform: scale(1.05); }
.hb-card .body {
    padding: 2rem 1.75rem 2.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.hb-card h3 { font-size: 1.5rem; }
.hb-card p {
    color: var(--muted);
    margin-top: 1rem;
    font-size: 0.94rem;
    flex: 1;
}
.hb-card .more {
    margin-top: 1.5rem;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brass);
    font-weight: 600;
    text-decoration: none;
}
.hb-card .more:hover { color: var(--brass-dark); }

/* ---------- Process (dark section with numbered steps) ---------- */
.hb-process {
    background: var(--ink);
    color: var(--cream);
}
.hb-process .head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3.5rem;
}
.hb-process .head h2 {
    color: var(--cream);
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
}
.hb-process .head p { color: #bfb49e; margin-top: 1rem; }
.hb-process .head .eyebrow { color: var(--brass); }
.hb-process .head .rule { margin: 1.25rem auto; background: var(--brass); }
.hb-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}
@media (max-width: 900px) {
    .hb-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
    .hb-steps { grid-template-columns: 1fr; }
}
.hb-step { position: relative; padding-top: 1rem; }
.hb-step .num {
    font-family: 'Libre Baskerville', serif;
    font-size: 2.25rem;
    color: var(--brass);
    line-height: 1;
    margin-bottom: 1rem;
}
.hb-step h4 {
    color: var(--cream);
    font-size: 1.15rem;
    font-family: 'Libre Baskerville', serif;
    margin-bottom: 0.75rem;
}
.hb-step p {
    color: #a8b0bf;
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ---------- Partners strip ---------- */
.hb-partners {
    background: var(--ink-soft);
    padding: 4rem 0;
}
.hb-partners .label {
    text-align: center;
    margin-bottom: 2.25rem;
}
.hb-partners .label .eyebrow {
    display: inline-block;
    color: #bfb49e;
}
.hb-partners-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem 4rem;
    align-items: center;
    justify-content: center;
}
.hb-partners-row img {
    max-height: 56px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.25s;
}
.hb-partners-row img:hover { opacity: 1; }

/* ---------- Gallery grid (home) ---------- */
.hb-gallery { background: var(--cream); }
.hb-gallery .head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.5rem;
}
.hb-gallery .head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.hb-gallery .head p {
    color: var(--muted);
    margin-top: 0.75rem;
    max-width: 500px;
}
@media (max-width: 700px) {
    .hb-gallery .head { flex-direction: column; align-items: flex-start; }
}
.hb-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}
@media (max-width: 700px) {
    .hb-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .hb-gallery-grid { grid-template-columns: 1fr; }
}
.hb-gallery-grid a {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
}
.hb-gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.hb-gallery-grid a:hover img { transform: scale(1.05); }

/* ---------- Final CTA ---------- */
.hb-finalcta {
    background: var(--ink);
    color: var(--cream);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hb-finalcta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hb-finalcta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.18;
}
.hb-finalcta .wrap { position: relative; z-index: 1; }
.hb-finalcta h2 {
    color: var(--cream);
    font-size: clamp(2rem, 4vw, 3rem);
    max-width: 720px;
    margin: 0 auto;
}
.hb-finalcta h2 em {
    color: var(--brass);
    font-style: italic;
    font-family: 'Lora', serif;
}
.hb-finalcta p {
    color: #c5bda9;
    margin-top: 1.25rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}
.hb-finalcta .rule { margin: 1.5rem auto; background: var(--brass); }
.hb-finalcta .hb-ctas { justify-content: center; }
.hb-finalcta .phone {
    margin-top: 2rem;
    font-family: 'Libre Baskerville', serif;
    font-size: 1.2rem;
    color: var(--cream);
    letter-spacing: 0.05em;
}
.hb-finalcta .phone a { color: var(--brass); text-decoration: none; }
.hb-finalcta .phone a:hover { text-decoration: underline; }

/* ---------- Content / prose block (om-oss etc) ---------- */
.hb-prose {
    max-width: 760px;
    margin: 0 auto;
    color: var(--ink);
    font-size: 1.02rem;
    line-height: 1.8;
}
.hb-prose > * + * { margin-top: 1rem; }
.hb-prose h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-top: 2.75rem;
}
.hb-prose h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 2rem;
    color: var(--brass-dark);
}
.hb-prose p { color: var(--ink); }
.hb-prose strong { color: var(--ink); }
.hb-prose ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
}
.hb-prose ul li {
    background: var(--cream-2);
    padding: 0.4rem 0.9rem;
    font-size: 0.88rem;
    color: var(--ink);
    border: 1px solid var(--line);
    margin: 0;
}

/* Two-column content block (prose + image) */
.hb-content-split .wrap {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
    align-items: start;
}
@media (max-width: 900px) {
    .hb-content-split .wrap { grid-template-columns: 1fr; gap: 2.5rem; }
}
.hb-content-split .side-image {
    position: sticky;
    top: 120px;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}
.hb-content-split .side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ---------- Forms (premium styled) ---------- */
.hb-form-card {
    background: var(--white);
    padding: 2.5rem;
    box-shadow: 0 20px 50px -30px rgba(12,26,43,0.35);
}
@media (max-width: 600px) { .hb-form-card { padding: 1.5rem; } }
.hb-form-card h2 {
    font-size: 1.55rem;
    margin-bottom: 0.5rem;
}
.hb-form-card .subtitle {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
}
.hb-form-row,
.hb-form-card .form-group { margin-bottom: 1.1rem; }
.hb-form-row label,
.hb-form-card .form-group label {
    display: block;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 0.45rem;
}
.hb-form-row input,
.hb-form-row textarea,
.hb-form-row select,
.hb-form-card .form-group input,
.hb-form-card .form-group textarea,
.hb-form-card .form-group select {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--line);
    background: var(--cream);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--ink);
    border-radius: 0;
    transition: border-color 0.2s, background 0.2s;
}
.hb-form-row input:focus,
.hb-form-row textarea:focus,
.hb-form-row select:focus,
.hb-form-card .form-group input:focus,
.hb-form-card .form-group textarea:focus,
.hb-form-card .form-group select:focus {
    outline: none;
    border-color: var(--brass);
    background: var(--white);
}
.hb-form-row textarea,
.hb-form-card .form-group textarea { resize: vertical; min-height: 120px; }
.hb-form-row .quicksearch { margin-bottom: 0.75rem; }
.hb-form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
}
@media (max-width: 600px) {
    .hb-form-grid-2 { grid-template-columns: 1fr; gap: 0; }
}
.hb-form-note {
    font-size: 0.82rem;
    color: var(--muted);
    margin-top: 0.5rem;
    line-height: 1.5;
}
.hb-form-done {
    display: none;
    padding: 1.2rem 0;
    text-align: center;
    font-size: 1.05rem;
    color: var(--brass-dark);
    font-weight: 600;
}
.hb-form-card > .hb-btn,
.hb-form-card > .hb-btn-primary {
    margin-top: 2rem;
}
.hb-form-progress {
    display: none;
    margin: 1rem 0 0.4rem;
}
.hb-form-progress.is-visible {
    display: block;
}
.hb-form-progress-track {
    position: relative;
    width: 100%;
    height: 10px;
    overflow: hidden;
    background: #e6dece;
    border-radius: 999px;
}
.hb-form-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--brass-dark), var(--brass));
    border-radius: inherit;
    transition: width 0.24s ease;
}
.hb-form-progress.is-indeterminate .hb-form-progress-bar {
    width: 38%;
    animation: hb-progress-loop 1.15s ease-in-out infinite;
}
.hb-form-progress-text {
    margin-top: 0.45rem;
    font-size: 0.82rem;
    color: var(--muted);
}
@keyframes hb-progress-loop {
    0% { transform: translateX(-110%); }
    100% { transform: translateX(280%); }
}

.hb-selector-card {
    background: var(--white);
    padding: 2rem;
    box-shadow: 0 20px 50px -32px rgba(12,26,43,0.34);
}
.hb-selector-card + .hb-selector-card { margin-top: 1.25rem; }
.hb-selector-card h2,
.hb-selector-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.55rem;
}
.hb-selector-card p {
    color: var(--muted);
    font-size: 0.94rem;
    margin-bottom: 1rem;
}
.tillverkare-wrapper,
.modeller-wrapper {
    max-height: 280px;
    overflow: auto;
    border: 1px solid var(--line);
    background: var(--cream);
    padding: 0.6rem;
}
.grid1,
.grid2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.4rem;
}
.grid1-item,
.grid2-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--ink);
    padding: 0.6rem 0.75rem;
    font-size: 0.84rem;
    line-height: 1.35;
    text-align: left;
    cursor: pointer;
    transition: all 0.18s ease;
}
.grid2-item {
    min-height: 44px;
}
.grid-empty {
    border: 1px dashed var(--line);
    background: rgba(255, 255, 255, 0.65);
    color: var(--muted);
    padding: 0.95rem 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
}
.grid-custom-entry {
    border-style: dashed;
    background: rgba(255, 255, 255, 0.48);
    color: var(--muted);
    font-family: 'Lora', serif;
    font-style: italic;
    font-weight: 500;
    text-transform: none;
}
@media (max-width: 640px) {
    .grid1,
    .grid2 {
        grid-template-columns: 1fr;
    }
}
.grid1-item:hover,
.grid2-item:hover,
.grid1-item.selected-t,
.grid2-item.selected-m {
    border-color: var(--brass);
    background: var(--brass);
    color: var(--white);
}
.grid-custom-entry:hover,
.grid-custom-entry.selected-t,
.grid-custom-entry.selected-m {
    border-color: rgba(178, 138, 76, 0.65);
    background: rgba(178, 138, 76, 0.12);
    color: var(--ink);
}
.inaktiv { display: none; }
.rensa-button {
    display: none;
    margin-top: 0.8rem;
    color: var(--brass);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
}
.clear-qs {
    display: none;
    margin: -0.1rem 0 0.9rem;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
}
.clear-qs.is-visible { display: inline-block; }

.hb-fender-intro {
    align-items: start;
}
.hb-fender-visual {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(140px, 180px);
    gap: 1rem;
    align-items: start;
    max-width: 520px;
    margin-left: auto;
}
.hb-fender-visual .image {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    background: var(--cream-2);
}
.hb-fender-visual .image-main {
    aspect-ratio: auto;
    padding: 0.9rem 0.9rem 1.15rem;
}
.hb-fender-visual .image-detail {
    aspect-ratio: auto;
    padding: 0.7rem;
    margin-top: 2.6rem;
}
.hb-fender-visual .image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transform: none;
}
.hb-fender-visual .image-main img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center 38%;
}
.hb-fender-visual .image-detail img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center 52%;
}
.hb-fender-visual .image-main::after,
.hb-fender-visual .image-detail::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(146, 118, 63, 0.12);
    pointer-events: none;
}
.hb-fender-visual .image .badge {
    right: 0.9rem;
    bottom: 0.9rem;
    padding: 0.7rem 1rem;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
}
@media (max-width: 900px) {
    .hb-fender-visual {
        grid-template-columns: 1fr 160px;
        gap: 1rem;
        max-width: none;
        margin-left: 0;
    }
    .hb-fender-visual .image {
        position: relative;
        width: 100%;
    }
    .hb-fender-visual .image-main {
        height: auto;
    }
    .hb-fender-visual .image-detail {
        height: auto;
        margin-top: 1.8rem;
    }
}
@media (max-width: 640px) {
    .hb-fender-visual {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
    .hb-fender-visual .image-main,
    .hb-fender-visual .image-detail {
        padding: 0.75rem;
        margin-top: 0;
    }
}

/* Contact two-col layout */
.hb-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 2.5rem;
    align-items: start;
}
@media (max-width: 900px) {
    .hb-contact-grid { grid-template-columns: 1fr; }
}
.hb-contact-info {
    background: var(--ink);
    color: var(--cream);
    padding: 2.5rem;
}
.hb-contact-info h2 {
    color: var(--cream);
    font-size: 1.55rem;
    margin-bottom: 1.25rem;
}
.hb-contact-info .row { margin-bottom: 1.5rem; }
.hb-contact-info .row h3 {
    color: var(--brass);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.hb-contact-info .row p {
    color: #dfd6c5;
    font-size: 1rem;
    line-height: 1.6;
}
.hb-contact-info .row a {
    color: var(--cream);
    text-decoration: none;
    border-bottom: 1px solid rgba(245,240,230,0.3);
    transition: border-color 0.2s;
}
.hb-contact-info .row a:hover { border-color: var(--brass); }

/* ---------- Gallery page (bilder & exempel) ---------- */
.hb-gallery-page { background: var(--cream); }
.hb-search-bar {
    max-width: 480px;
    margin: 0 auto 2rem;
    display: flex;
    gap: 0.5rem;
}
.hb-search-bar input {
    flex: 1;
    padding: 0.85rem 1rem;
    border: 1px solid var(--line);
    background: var(--white);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--ink);
    border-radius: 0;
}
.hb-search-bar input:focus { outline: none; border-color: var(--brass); }
.hb-search-bar button {
    border: 1px solid var(--ink);
    background: var(--ink);
    color: var(--cream);
    padding: 0 1.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.25s;
}
.hb-search-bar button:hover {
    background: var(--brass);
    border-color: var(--brass);
}
.hb-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}
.hb-filter-btn {
    background: transparent;
    border: 1px solid var(--line);
    color: var(--ink);
    padding: 0.55rem 1.25rem;
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.2s;
}
.hb-filter-btn:hover { border-color: var(--brass); color: var(--brass); }
.hb-filter-btn.active {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--cream);
}
.hb-item-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
}
.hb-item {
    background: var(--white);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hb-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -20px rgba(12,26,43,0.25);
}
.hb-item > a:first-child {
    display: block;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: var(--cream-2);
}
.hb-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}
.hb-item > a.is-placeholder-thumb {
    padding: 1.25rem;
}
.hb-item > a.is-placeholder-thumb img {
    object-fit: contain;
}
.hb-item:hover img { transform: none; }
.hb-item:hover > a.is-placeholder-thumb img { transform: none; }
.hb-item .caption {
    padding: 1rem 1.1rem 1.2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.hb-item .cat {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.64rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brass);
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.hb-item .caption h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 0.2rem;
}
.hb-item .caption h3 a {
    color: var(--ink);
    text-decoration: none;
}
.hb-item .caption .model {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 0.9rem;
}
.hb-item .caption .model a {
    color: var(--muted);
    text-decoration: none;
}
.hb-item .caption .read-more {
    margin-top: auto;
    align-self: flex-start;
    background: transparent;
    border: 1px solid var(--ink);
    color: var(--ink);
    padding: 0.5rem 1.1rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s;
}
.hb-item .caption .read-more:hover {
    background: var(--ink);
    color: var(--cream);
}
.hb-item .caption .hb-item-actions {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: center;
}
.hb-item .caption .hb-item-actions .read-more {
    margin-top: 0;
}
.hb-item .caption .hb-item-secondary-link {
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--muted);
    text-decoration: none;
}
.hb-item .caption .hb-item-secondary-link:hover {
    color: var(--ink);
}
.hb-contact-context {
    display: none;
    margin-bottom: 1.25rem;
    padding: 1rem 1.1rem;
    background: var(--cream-2);
    border-left: 3px solid var(--brass);
}
.hb-contact-context.is-visible {
    display: block;
}
.hb-contact-context h3 {
    margin: 0 0 0.45rem;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink);
}
.hb-contact-context p {
    margin: 0.2rem 0;
    color: var(--ink);
    line-height: 1.55;
}
.hb-kapell-intro-section {
    padding-top: 2.5rem;
    padding-bottom: 0.5rem;
}
.hb-kapell-form-section {
    padding-top: 0;
}
.hb-contact-context a {
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}
.hb-contact-highlight {
    display: inline-block;
    padding: 0.55rem 0.75rem;
    background: rgba(178, 138, 76, 0.16);
    border-left: 3px solid var(--brass);
    color: var(--cream);
    font-weight: 600;
}

/* ---------- Map ---------- */
.hb-map iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
    filter: saturate(0.85);
}

/* ---------- Footer ---------- */
.hb-footer {
    background: #080f1a;
    color: #a8b0bf;
    padding: 4rem 0 1.5rem;
}
.hb-footer .grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 3rem;
}
@media (max-width: 900px) {
    .hb-footer .grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 500px) {
    .hb-footer .grid { grid-template-columns: 1fr; }
}
.hb-footer h5 {
    font-family: 'Libre Baskerville', serif;
    color: var(--cream);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    letter-spacing: 0.05em;
}
.hb-footer a {
    color: #a8b0bf;
    text-decoration: none;
    transition: color 0.2s;
}
.hb-footer a:hover { color: var(--brass); }
.hb-footer p,
.hb-footer li {
    font-size: 0.9rem;
    line-height: 1.9;
}
.hb-footer ul { list-style: none; padding: 0; }
.hb-footer ul li { margin-bottom: 0; }
.hb-footer .brand > img {
    height: 48px;
    width: auto;
    max-width: 220px;
    margin-bottom: 1.25rem;
    filter: brightness(1.1);
    object-fit: contain;
}
.hb-footer .credit {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-top: 1.25rem;
    padding: 0.85rem;
    border: 1px solid #1e2a3d;
}
.hb-footer .credit img {
    width: 36px;
    height: auto;
    filter: none;
}
.hb-footer .credit .t {
    font-size: 0.7rem;
    line-height: 1.4;
}
.hb-footer .credit .t strong {
    color: var(--cream);
    letter-spacing: 0.08em;
    font-size: 0.72rem;
}
.hb-footer-partners {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 1rem;
    align-items: center;
}
.hb-footer-partners img {
    display: block;
    width: 100%;
    max-width: 120px;
    max-height: 42px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.86;
}
.hb-footer-bottom {
    border-top: 1px solid #1e2a3d;
    margin-top: 3rem;
    padding-top: 1.5rem;
    font-size: 0.78rem;
    color: #6b7788;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ==========================================================
   Mobile refinements — desktop layout left untouched.
   Scoped so anything ≥769px is unaffected.
   ========================================================== */
@media (max-width: 768px) {
    /* Section / wrap padding */
    .hb-premium .wrap { padding: 0 1.1rem; }
    .hb-section { padding: 3.25rem 0; }
    .hb-section--tight { padding: 2.5rem 0; }
    .hb-kapell-intro-section { padding-bottom: 0.75rem; }
    .hb-kapell-form-section { padding-top: 0; }

    /* Top / nav */
    .hb-top { font-size: 0.72rem; }
    .hb-top .wrap { height: 30px; }
    .hb-nav { height: 64px; }
    .hb-logo img { height: 38px; }
    .hb-burger { padding: 0.4rem; }
    .hb-nav-links { top: 64px; padding: 1rem 1.1rem; gap: 0.9rem; }
    .hb-nav-links a { font-size: 0.95rem; padding: 0.4rem 0; width: 100%; }
    .hb-nav-cta { width: 100%; text-align: center; padding: 0.85rem 1rem; }

    /* Announcement */
    .hb-announcement { padding: 0.75rem 0; }
    .hb-announcement .wrap { font-size: 0.82rem; gap: 0.6rem; flex-wrap: wrap; }
    .hb-announcement .tag { font-size: 0.62rem; padding: 0.25rem 0.55rem; }

    /* Hero (home) */
    .hb-hero { min-height: 0; }
    .hb-hero .wrap { padding-top: 3rem; padding-bottom: 8.5rem; }
    .hb-hero h1 { font-size: clamp(2rem, 8vw, 2.6rem); margin-top: 0.6rem; }
    .hb-hero .lead { font-size: 0.98rem; margin-top: 1rem; line-height: 1.6; }
    .hb-hero .rule { margin: 1rem 0; }
    .hb-ctas { gap: 0.6rem; margin-top: 1.4rem; }
    .hb-hero-meta .wrap { padding: 0.85rem 1.1rem; gap: 0.5rem; }
    .hb-hero-meta .k { font-size: 1.2rem; }
    .hb-hero-meta .v { font-size: 0.6rem; letter-spacing: 0.14em; margin-top: 0.2rem; }

    /* Buttons */
    .hb-btn { padding: 0.85rem 1.3rem; font-size: 0.78rem; letter-spacing: 0.12em; }
    .hb-btn-primary { padding: 0.95rem 1.5rem; font-size: 0.92rem; }
    .hb-ctas .hb-btn,
    .hb-ctas .hb-btn-primary { flex: 1 1 100%; justify-content: center; text-align: center; }
    .hb-finalcta .hb-ctas .hb-btn,
    .hb-finalcta .hb-ctas .hb-btn-primary { flex: 0 1 auto; }

    /* Page hero (sub-pages) */
    .hb-pagehero { padding: 2.75rem 0 2.5rem; }
    .hb-pagehero h1 { font-size: clamp(1.7rem, 7vw, 2.2rem); line-height: 1.18; margin-top: 0.6rem; }
    .hb-pagehero .lead { font-size: 0.95rem; margin-top: 1rem; line-height: 1.6; }

    /* Intro */
    .hb-intro .wrap,
    .wrap.hb-intro { gap: 1.75rem; }
    .hb-intro .image .badge { right: 0; font-size: 0.78rem; padding: 0.65rem 0.95rem; bottom: 18px; }

    /* Service cards */
    .hb-services .head,
    .hb-process .head,
    .hb-gallery .head,
    .hb-finalcta .head { margin-bottom: 2rem; }
    .hb-card .body { padding: 1.4rem 1.25rem 1.6rem; }
    .hb-card h3 { font-size: 1.25rem; }
    .hb-card p { font-size: 0.92rem; margin-top: 0.7rem; }
    .hb-card .more { margin-top: 1rem; }

    /* Process steps */
    .hb-step .num { font-size: 1.85rem; margin-bottom: 0.6rem; }
    .hb-step h4 { font-size: 1.05rem; }

    /* Partners */
    .hb-partners { padding: 2.5rem 0; }
    .hb-partners-row { gap: 1.5rem 2rem; }
    .hb-partners-row img { max-height: 40px; }

    /* Gallery (home) */
    .hb-gallery .head { margin-bottom: 1.5rem; }
    .hb-gallery .head h2 { font-size: 1.6rem; }
    .hb-gallery-grid { gap: 0.5rem; }

    /* Final CTA */
    .hb-finalcta h2 { font-size: clamp(1.6rem, 6.5vw, 2.1rem); }
    .hb-finalcta p { font-size: 0.95rem; margin-top: 1rem; }
    .hb-finalcta .phone { font-size: 1.05rem; margin-top: 1.5rem; }

    /* Prose / about */
    .hb-prose { font-size: 0.98rem; line-height: 1.7; }
    .hb-prose h2 { font-size: 1.4rem; margin-top: 2rem; }
    .hb-prose h3 { font-size: 1.1rem; margin-top: 1.5rem; }

    /* Content split (about etc) */
    .hb-content-split .wrap { gap: 1.75rem; }
    .hb-content-split .side-image { position: static; aspect-ratio: 16 / 11; max-height: 320px; }

    /* Forms — bump font to 16px to stop iOS auto-zoom, give comfy tap targets */
    .hb-form-card { padding: 1.25rem 1.1rem; }
    .hb-form-card h2 { font-size: 1.3rem; }
    .hb-form-card .subtitle { font-size: 0.9rem; margin-bottom: 1.25rem; }
    .hb-form-card > .hb-btn,
    .hb-form-card > .hb-btn-primary { margin-top: 1.5rem; }
    .hb-form-row input,
    .hb-form-row textarea,
    .hb-form-row select,
    .hb-form-card .form-group input,
    .hb-form-card .form-group textarea,
    .hb-form-card .form-group select {
        font-size: 16px;
        padding: 0.95rem 0.9rem;
    }
    .hb-form-row label,
    .hb-form-card .form-group label {
        font-size: 0.72rem;
        letter-spacing: 0.12em;
        margin-bottom: 0.4rem;
    }
    .hb-form-row,
    .hb-form-card .form-group { margin-bottom: 0.95rem; }
    .hb-form-row textarea,
    .hb-form-card .form-group textarea { min-height: 110px; }
    .hb-form-note { font-size: 0.78rem; }

    /* Selector cards (kapellforfragan) */
    .hb-selector-card { padding: 1.25rem 1.1rem; }
    .hb-selector-card + .hb-selector-card { margin-top: 0.9rem; }
    .hb-selector-card h2,
    .hb-selector-card h3 { font-size: 1.15rem; }
    .hb-selector-card p { font-size: 0.9rem; margin-bottom: 0.85rem; }
    .tillverkare-wrapper,
    .modeller-wrapper { max-height: 240px; padding: 0.45rem; }
    .grid1-item,
    .grid2-item { padding: 0.75rem 0.8rem; font-size: 0.9rem; min-height: 44px; }
    .grid2-item { min-height: 48px; }

    /* Contact info card */
    .hb-contact-info { padding: 1.5rem 1.25rem; }
    .hb-contact-info h2 { font-size: 1.3rem; margin-bottom: 1rem; }
    .hb-contact-info .row { margin-bottom: 1.1rem; }
    .hb-contact-info .row p { font-size: 0.95rem; }
    .hb-contact-grid { gap: 1.5rem; }

    /* Gallery (bilder & exempel) */
    .hb-search-bar { gap: 0.4rem; margin-bottom: 1.25rem; }
    .hb-search-bar input { padding: 0.85rem 0.9rem; font-size: 16px; }
    .hb-search-bar button { padding: 0 1rem; font-size: 0.74rem; letter-spacing: 0.1em; }
    .hb-filters { gap: 0.4rem; margin-bottom: 1.5rem; }
    .hb-filter-btn { padding: 0.5rem 0.9rem; font-size: 0.74rem; letter-spacing: 0.06em; }
    .hb-item-grid { grid-template-columns: repeat(2, 1fr); gap: 0.65rem; }
    .hb-item .caption { padding: 0.7rem 0.75rem 0.85rem; }
    .hb-item .caption h3 { font-size: 0.9rem; }
    .hb-item .caption .model { font-size: 0.78rem; margin-bottom: 0.55rem; }
    .hb-item .caption .read-more { padding: 0.42rem 0.75rem; font-size: 0.62rem; letter-spacing: 0.1em; }
    .hb-item .cat { font-size: 0.58rem; margin-bottom: 0.35rem; }

    /* Map */
    .hb-map iframe { height: 280px; }

    /* Footer */
    .hb-footer { padding: 2.75rem 0 1.25rem; }
    .hb-footer .grid { gap: 1.5rem; }
    .hb-footer .brand > img { height: 40px; margin-bottom: 0.85rem; }
    .hb-footer h5 { margin-bottom: 0.75rem; font-size: 0.9rem; }
    .hb-footer-bottom {
        margin-top: 2rem;
        justify-content: center;
        text-align: center;
        font-size: 0.72rem;
    }

    /* Image modal (gallery page) */
    .hb-premium #bildModal .modal-content { max-width: 96%; padding: 1rem 0.85rem 1.25rem; }
    .hb-premium #bildModal .slider { height: 260px; }
    .hb-premium #bildModal .slide-left,
    .hb-premium #bildModal .slide-right { width: 40px; height: 40px; font-size: 1.4rem; }
    .hb-premium #bildModal .modal-heading { font-size: 1.2rem; margin-top: 0.85rem; }
    .hb-premium #bildModal .modal-model { font-size: 0.9rem; }
    .hb-premium #bildModal .thumb-row img { width: 56px; height: 42px; }
    .hb-premium #bildModal .modal-meta span { font-size: 0.72rem; padding: 0.4rem 0.6rem; }
    .hb-premium #bildModal .modal-btn { padding: 0.75rem 1.3rem; font-size: 0.74rem; }
    .hb-premium #fullscreenModal .fullscreen-close { width: 44px; height: 44px; font-size: 24px; top: 12px; right: 12px; }
}

@media (max-width: 420px) {
    .hb-premium .wrap { padding: 0 0.95rem; }
    .hb-item-grid { grid-template-columns: 1fr; }
    .hb-hero h1 { font-size: 1.85rem; }
    .hb-pagehero h1 { font-size: 1.55rem; }
    .hb-hero-meta .wrap { grid-template-columns: 1fr 1fr; gap: 0.4rem; padding: 0.7rem 0.95rem; }
    .hb-hero-meta .k { font-size: 1.05rem; }
    .hb-finalcta .phone { font-size: 0.98rem; }
}

/* ============================================================
   Tillfälliga produkter — product grid + lightbox
   ============================================================ */
.hb-premium .hb-tp-empty {
    text-align: center;
    padding: 3.5rem 1.5rem;
    color: var(--muted);
}
.hb-premium .hb-tp-empty h2 {
    font-family: 'Libre Baskerville', serif;
    color: var(--ink);
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    margin-bottom: 0.75rem;
}
.hb-premium .hb-tp-empty a { color: var(--brass); font-weight: 600; }

.hb-premium .hb-tp-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
    gap: 2rem;
    align-items: end;
    margin-bottom: 2rem;
}
.hb-premium .hb-tp-intro h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.15;
    margin-top: 0.5rem;
}
.hb-premium .hb-tp-intro p {
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.8;
}
@media (max-width: 780px) {
    .hb-premium .hb-tp-intro {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
}

.hb-premium .hb-tp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
@media (max-width: 1000px) {
    .hb-premium .hb-tp-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (max-width: 600px) {
    .hb-premium .hb-tp-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}

.hb-premium .hb-tp-card {
    background: var(--white);
    border: 1px solid var(--line);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.hb-premium .hb-tp-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}
.hb-premium .hb-tp-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 46px -28px rgba(12, 26, 43, 0.3);
}

.hb-premium .hb-tp-media {
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--cream-2);
    overflow: hidden;
}
.hb-premium .hb-tp-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
    background: var(--cream-2);
}
.hb-premium .hb-tp-card:hover .hb-tp-media img { transform: scale(1.04); }
.hb-premium .hb-tp-media-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--muted);
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.hb-premium .hb-tp-media-count {
    position: absolute;
    bottom: 0.7rem;
    right: 0.7rem;
    background: rgba(12, 26, 43, 0.82);
    color: #fff;
    padding: 0.25rem 0.6rem;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    border-radius: 2px;
}

.hb-premium .hb-tp-body {
    padding: 1.5rem 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.65rem;
}
.hb-premium .hb-tp-meta {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brass);
    font-weight: 700;
}
.hb-premium .hb-tp-body h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.25rem;
    color: var(--ink);
    line-height: 1.3;
}
.hb-premium .hb-tp-price {
    display: inline-block;
    align-self: flex-start;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--brass-dark);
    letter-spacing: 0.02em;
    padding: 0.25rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin: 0.15rem 0 0.35rem;
}
.hb-premium .hb-tp-desc {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.6;
    flex: 1;
}
.hb-premium .hb-tp-card.is-clickable {
    cursor: pointer;
}
.hb-premium .hb-tp-card.is-clickable .hb-tp-body h3,
.hb-premium .hb-tp-card.is-clickable .hb-tp-desc {
    transition: color 0.2s ease;
}
.hb-premium .hb-tp-card.is-clickable:hover .hb-tp-body h3 {
    color: var(--brass-dark);
}
.hb-premium .hb-tp-card.is-clickable:hover .hb-tp-desc {
    color: #596575;
}
.hb-premium .hb-tp-card:hover .hb-tp-body h3 {
    color: var(--brass-dark);
}
.hb-premium .hb-tp-card:hover .hb-tp-desc {
    color: #596575;
}
.hb-premium .hb-tp-thumbs {
    display: flex;
    gap: 0.35rem;
    margin-top: 0.25rem;
    flex-wrap: wrap;
}
.hb-premium .hb-tp-thumb {
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--line);
    background: var(--cream-2);
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
}
.hb-premium .hb-tp-thumb:hover { border-color: var(--brass); transform: translateY(-1px); }
.hb-premium .hb-tp-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hb-premium .hb-tp-cta {
    margin-top: auto;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brass);
    font-weight: 600;
    text-decoration: none;
    align-self: flex-start;
    width: 100%;
}
.hb-premium .hb-tp-cta:hover { color: var(--brass-dark); }
.hb-premium .hb-tp-more {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink);
    font-weight: 700;
    margin-top: 0.15rem;
}
.hb-premium .hb-tp-actions {
    margin-top: auto;
    padding-top: 0.95rem;
    border-top: 1px solid var(--line);
    display: grid;
    gap: 0.35rem;
}
.hb-premium .hb-tp-linkhint {
    color: var(--muted);
    font-size: 0.74rem;
    letter-spacing: 0.02em;
    word-break: break-word;
}
.hb-premium .seo-related-price {
    color: var(--brass-dark);
    font-size: 0.83rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ---------- Product modal ---------- */
.hb-premium .hb-tp-modal {
    position: fixed;
    inset: 0;
    background: rgba(8, 15, 26, 0.72);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    padding: 2rem;
}
.hb-premium .hb-tp-modal.is-open { display: flex; }
.hb-premium .hb-tp-modal-dialog {
    width: min(980px, 100%);
    max-height: 88vh;
    background: var(--white);
    border: 1px solid var(--line);
    overflow: auto;
    box-shadow: 0 40px 90px rgba(12, 26, 43, 0.28);
}
.hb-premium .hb-tp-modal-close {
    position: sticky;
    top: 0;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 0;
    background: rgba(255,255,255,0.92);
    color: var(--ink);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 2;
}
.hb-premium .hb-tp-modal-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: 0;
    margin-top: -46px;
}
.hb-premium .hb-tp-modal-media {
    background: var(--cream-2);
    padding: 1.25rem;
    border-right: 1px solid var(--line);
}
.hb-premium .hb-tp-modal-main {
    aspect-ratio: 4 / 3;
    background: #e5ded0;
    overflow: hidden;
}
.hb-premium .hb-tp-modal-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hb-premium .hb-tp-modal-info {
    padding: 3.2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}
.hb-premium .hb-tp-modal-title {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    line-height: 1.2;
    color: var(--ink);
}
.hb-premium .hb-tp-modal-price {
    display: inline-block;
    align-self: flex-start;
    color: var(--brass-dark);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 0.3rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.hb-premium .hb-tp-modal-desc {
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.8;
}
.hb-premium .hb-tp-modal-thumbs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}
.hb-premium .hb-tp-modal-thumb {
    width: 68px;
    height: 68px;
    padding: 0;
    border: 1px solid var(--line);
    background: var(--white);
    cursor: pointer;
    overflow: hidden;
}
.hb-premium .hb-tp-modal-thumb.is-active {
    border-color: var(--brass-dark);
}
.hb-premium .hb-tp-modal-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hb-premium .hb-tp-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 0.75rem;
}
@media (max-width: 820px) {
    .hb-premium .hb-tp-modal { padding: 1rem; }
    .hb-premium .hb-tp-modal-layout {
        grid-template-columns: 1fr;
    }
    .hb-premium .hb-tp-modal-media {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }
    .hb-premium .hb-tp-modal-info {
        padding: 1.5rem 1.25rem 1.4rem;
    }
}

/* ---------- Lightbox ---------- */
.hb-premium .hb-tp-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(6, 14, 26, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 2rem;
}
.hb-premium .hb-tp-lightbox.is-open { display: flex; }
.hb-premium .hb-tp-lightbox-inner {
    max-width: min(1100px, 92vw);
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.hb-premium #tp-lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    object-fit: contain;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.hb-premium .hb-tp-lightbox-caption {
    color: #d9cfbe;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
}
.hb-premium .hb-tp-lightbox-close,
.hb-premium .hb-tp-lightbox-nav {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 1.8rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.2s, border-color 0.2s;
    line-height: 1;
}
.hb-premium .hb-tp-lightbox-close:hover,
.hb-premium .hb-tp-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.45);
}
.hb-premium .hb-tp-lightbox-close { top: 1.5rem; right: 1.5rem; }
.hb-premium .hb-tp-lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.hb-premium .hb-tp-lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
@media (max-width: 600px) {
    .hb-premium .hb-tp-lightbox { padding: 1rem; }
    .hb-premium .hb-tp-lightbox-close,
    .hb-premium .hb-tp-lightbox-nav { width: 40px; height: 40px; font-size: 1.5rem; }
    .hb-premium .hb-tp-lightbox-close { top: 0.75rem; right: 0.75rem; }
    .hb-premium .hb-tp-lightbox-prev { left: 0.5rem; }
    .hb-premium .hb-tp-lightbox-next { right: 0.5rem; }
}

/* ============================================================
   DYNSATSER – BOAT BRAND CARDS
   ============================================================ */
.hb-premium .hb-dyn-brands-section { background: var(--cream-2); }
.hb-premium .hb-dyn-brands-heading {
    margin: 0.5rem 0 0.6rem;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}
.hb-premium .hb-dyn-brands-lead {
    color: var(--muted);
    font-size: 1rem;
    margin: 0 0 2rem;
    max-width: 520px;
}
.hb-premium .hb-dyn-brands-status {
    color: var(--muted);
    font-size: 0.95rem;
    padding: 0.5rem 0;
}
.hb-premium .hb-dyn-brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
@media (max-width: 1000px) {
    .hb-premium .hb-dyn-brands-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
@media (max-width: 640px) {
    .hb-premium .hb-dyn-brands-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
.hb-premium .hb-dyn-brand-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--line);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hb-premium .hb-dyn-brand-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -20px rgba(12, 26, 43, 0.28);
}
.hb-premium .hb-dyn-brand-media {
    aspect-ratio: 4 / 3;
    background: var(--cream-2);
    overflow: hidden;
    position: relative;
}
.hb-premium .hb-dyn-brand-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
    display: block;
}
.hb-premium .hb-dyn-brand-card:hover .hb-dyn-brand-media img { transform: scale(1.05); }
.hb-premium .hb-dyn-brand-media-empty {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--cream-2) 0%, var(--cream-3, #ddd) 100%);
}
.hb-premium .hb-dyn-brand-body {
    padding: 1rem 1.1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
}
.hb-premium .hb-dyn-brand-name {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: 0.01em;
}
.hb-premium .hb-dyn-brand-cta {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brass);
    font-weight: 700;
    margin-top: 0.25rem;
    transition: color 0.2s;
}
.hb-premium .hb-dyn-brand-card:hover .hb-dyn-brand-cta { color: var(--brass-dark); }
