/* ============================================================
   Örebro Vertical – Delad stylesheet
   Accent: #1B3570 | Rubriker: Cinzel | Brödtext: Raleway
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Raleway:wght@300;400;500;600;700&display=swap');

/* --- Reset & bas --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --accent:      #1B3570;
    --accent-light:#2a4fa0;
    --accent-dim:  rgba(27, 53, 112, 0.15);
    --bg:          #0D0D0D;
    --bg-card:     #141414;
    --bg-card2:    #1a1a1a;
    --text:        #e8e8e8;
    --text-muted:  #888;
    --border:      rgba(255,255,255,0.08);
    --radius:      6px;
    --nav-h:       72px;
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
    letter-spacing: 0.04em;
    line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    background: transparent;
    transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
    background: rgba(13,13,13,0.96);
    box-shadow: 0 1px 0 var(--border);
    backdrop-filter: blur(8px);
}

/* Logo-block */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}
.nav-logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
}
.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.nav-logo-text .city {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 0.25em;
    color: var(--text-muted);
    text-transform: uppercase;
}
.nav-logo-text .brand {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
    text-transform: uppercase;
}

/* Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}
.nav-links a {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }

/* Boka nu-knapp */
.btn-boka-nav {
    display: inline-flex;
    align-items: center;
    padding: 9px 22px;
    background: var(--accent);
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: background 0.2s, transform 0.15s;
}
.btn-boka-nav:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.nav-hamburger span {
    width: 24px; height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}

/* Dropdown-meny under "Kurser" (desktop) */
.nav-links li.has-dropdown { position: relative; }
.nav-links li.has-dropdown > a { display: inline-flex; align-items: center; }
.nav-links .nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: -14px;
    margin-top: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    min-width: 180px;
    padding: 8px 0;
    z-index: 200;
    box-shadow: 0 8px 24px rgba(0,0,0,.45);
    list-style: none;
    flex-direction: column;
    gap: 0;
}
/* Osynlig hover-brygga som täcker gapet mellan nav-länken och dropdownen,
   så att hover-tillståndet inte bryts när musen passerar mellanrummet. */
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
}
.nav-links li.has-dropdown:hover > .nav-dropdown,
.nav-links li.has-dropdown:focus-within > .nav-dropdown { display: flex; }
.nav-links .nav-dropdown li { list-style: none; padding: 0; }
.nav-dropdown a {
    display: block;
    padding: 10px 18px;
    font-size: 13px;
    color: rgba(255,255,255,.65);
    letter-spacing: 0.08em;
    font-weight: 600;
    text-transform: uppercase;
}
.nav-dropdown a:hover {
    color: #fff;
    background: rgba(255,255,255,.04);
}
.dropdown-arrow {
    font-size: 9px;
    opacity: .55;
    margin-left: 3px;
    display: inline-block;
    transition: transform .2s;
}
.nav-links li.has-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

/* Mobile menu – Kurser-label och sub-poster */
.nav-mobile .nav-mobile-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-top: 4px;
    margin-bottom: -4px;
}
.nav-mobile .nav-mobile-sub a {
    font-size: 14px;
    padding-left: 12px;
    color: rgba(255,255,255,.7);
}
.nav-mobile .nav-mobile-sub a::before {
    content: '↳ ';
    opacity: .45;
    font-size: 12px;
}

/* Mobile menu */
.nav-mobile {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(13,13,13,0.98);
    padding: 24px 32px 32px;
    z-index: 999;
    border-top: 1px solid var(--border);
}
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.nav-mobile a {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
}
.nav-mobile .btn-boka-nav { margin-top: 8px; text-align: center; justify-content: center; }

@media (max-width: 860px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .nav { padding: 0 24px; }
}

/* ============================================================
   Knappar (primär)
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    background: var(--accent);
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
}
.btn:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27,53,112,0.4);
}
.btn:disabled {
    background: #333;
    color: var(--text-muted);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.btn-outline {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
}
.btn-outline:hover {
    background: var(--accent);
    color: #fff;
}

/* ============================================================
   Sektionsrubriker
   ============================================================ */
.section-label {
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}
.section-desc {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.8;
}

/* ============================================================
   Kurskort
   ============================================================ */
.kurser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}
.kurs-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.kurs-card:hover {
    border-color: rgba(27,53,112,0.5);
    box-shadow: 0 4px 24px rgba(27,53,112,0.15);
}
.kurs-card.fullbokad { opacity: 0.55; }

.kurs-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}
.kurs-name {
    font-family: 'Cinzel', serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.03em;
}
.kurs-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}
.kurs-badge.tillganglig { background: rgba(27,53,112,0.2); color: #7ba4f0; }
.kurs-badge.fa-platser  { background: rgba(200,150,0,0.15); color: #c8a832; }
.kurs-badge.fullbokad   { background: rgba(200,60,60,0.15); color: #e06060; }

.kurs-dates {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.kurs-date-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
}
.kurs-date-row strong { color: var(--text); font-weight: 600; }
.kurs-date-num {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-light);
    background: var(--accent-dim);
    padding: 2px 7px;
    border-radius: 4px;
    flex-shrink: 0;
}

.kurs-info {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--text-muted);
}
.kurs-info span { display: flex; align-items: center; gap: 5px; }

.kurs-spots {
    display: flex;
    align-items: center;
    gap: 6px;
}
.spots-dots {
    display: flex;
    gap: 4px;
}
.spot-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(27,53,112,0.4);
}
.spot-dot.booked { background: #666; }
.spot-dot.free   { background: var(--accent-light); }

/* ============================================================
   Formulär
   ============================================================ */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.form-group input,
.form-group textarea,
.form-group select {
    background: #1e1e1e;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    padding: 11px 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(27,53,112,0.2);
}
.form-group textarea { resize: vertical; min-height: 110px; }

/* ============================================================
   Modal
   ============================================================ */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }
.modal {
    background: #161616;
    border: 1px solid var(--border);
    border-radius: 12px;
    width: 100%;
    max-width: 480px;
    padding: 36px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}
.modal-close {
    position: absolute;
    top: 16px; right: 20px;
    font-size: 22px;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}
.modal-close:hover { color: #fff; }
.modal h2 {
    font-size: 20px;
    margin-bottom: 6px;
}
.modal-kurs-info {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}
.modal-form { display: flex; flex-direction: column; gap: 16px; }
.modal-msg {
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 14px;
    display: none;
}
.modal-msg.success { background: rgba(27,53,112,0.15); color: #7ba4f0; border: 1px solid rgba(27,53,112,0.3); display: block; }
.modal-msg.error   { background: rgba(200,60,60,0.1);  color: #e06060; border: 1px solid rgba(200,60,60,0.2); display: block; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
    background: #0a0a0a;
    border-top: 1px solid var(--border);
    padding: 48px 40px 32px;
}
.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand .brand {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}
.footer-brand .tagline {
    font-size: 13px;
    color: var(--text-muted);
}
.footer-contact { font-size: 14px; color: var(--text-muted); line-height: 2; }
.footer-contact a { color: var(--text-muted); transition: color 0.2s; }
.footer-contact a:hover { color: #fff; }
.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    border-top: 1px solid var(--border);
    padding-top: 24px;
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

@media (max-width: 600px) {
    .footer-inner { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; }
    .site-footer { padding: 36px 20px 24px; }
}

/* ============================================================
   Snabbfakta-rutor (Kalymnos)
   ============================================================ */
.fakta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}
.fakta-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 22px 20px;
    text-align: center;
}
.fakta-box .fakta-icon { font-size: 26px; margin-bottom: 8px; }
.fakta-box .fakta-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.fakta-box .fakta-value {
    font-family: 'Cinzel', serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

/* ============================================================
   Bildspel
   ============================================================ */
.slideshow {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #111;
    aspect-ratio: 3/2;
}
.slideshow-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}
.slideshow-slide {
    min-width: 100%;
    height: 100%;
    object-fit: contain;        /* visa hela bilden oavsett orientering */
    background: #0D0D0D;
    flex-shrink: 0;
}
.slideshow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    width: 44px; height: 44px;
    border-radius: 50%;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 2;
}
.slideshow-btn:hover { background: rgba(27,53,112,0.7); }
.slideshow-btn.prev { left: 14px; }
.slideshow-btn.next { right: 14px; }
.slideshow-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}
.slideshow-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.slideshow-dot.active {
    background: #fff;
    transform: scale(1.3);
}

/* ============================================================
   Hero (Kalymnos)
   ============================================================ */
.hero-full {
    position: relative;
    height: 100vh;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero-full-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
    transform: scale(1.05);
    transition: transform 8s ease;
}
.hero-full:hover .hero-full-bg { transform: scale(1); }
.hero-full-content {
    position: relative;
    z-index: 1;
    padding: 0 24px;
}
.hero-full-content .pre-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}
.hero-full-content h1 {
    font-size: clamp(40px, 7vw, 84px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
}
.hero-full-content .sub {
    font-size: clamp(15px, 2vw, 19px);
    color: rgba(255,255,255,0.65);
    margin-bottom: 36px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.hero-scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 1;
}
.hero-scroll-hint::after {
    content: '';
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

/* ============================================================
   Sektion-wrapper (generell)
   ============================================================ */
.section {
    padding: 80px 40px;
    max-width: 1100px;
    margin: 0 auto;
}
.section-full {
    padding: 80px 40px;
}
.section-full .section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 700px) {
    .section, .section-full { padding: 56px 20px; }
    .kurser-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Villkors-checkbox (delas mellan bokningsmodal och Kalymnos-form)
   ============================================================ */
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 14px 0 18px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}
.form-check input[type="checkbox"] {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    accent-color: var(--accent);
    flex-shrink: 0;
    cursor: pointer;
}
.form-check label {
    cursor: pointer;
    user-select: none;
}
.form-check label a {
    color: var(--accent);
    text-decoration: underline;
}

/* ============================================================
   Intresseanmälningskomponent (ia-*)
   ============================================================ */
.ia-wrap {}
.ia-title {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
    color: var(--text);
}
.ia-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}
.ia-form .form-group {
    margin-bottom: 14px;
}
.ia-form select {
    width: 100%;
    padding: 10px 14px;
    background: rgba(255,255,255,.05);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    outline: none;
    border-radius: 6px;
    transition: border-color .2s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
.ia-form select:focus { border-color: var(--accent); }
.ia-form select option { background: #1a1a1a; color: var(--text); }
.ia-msg {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.5;
    min-height: 20px;
}
.ia-msg.success { color: #2ecc71; }
.ia-msg.error   { color: #e74c3c; }

/* Honeypot – göms utanför skärmen (botar fyller i, människor ser inte fältet) */
.ia-hp {
    position: absolute;
    left: -5000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
/* Infotext/GDPR-notis under formuläret */
.ia-note {
    margin-top: 16px;
    font-size: 12px;
    line-height: 1.6;
    color: var(--text-muted);
}

/* ============================================================
   Recensioner / Omdömen – karusell med fade mellan grupper
   ============================================================ */
.reviews-carousel {
    position: relative;
    margin-top: 48px;
}
.reviews-page {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    animation: review-fade 0.6s ease;
}
.reviews-page.active { display: grid; }

@keyframes review-fade {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.review-card {
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(27,53,112,.04) 100%);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 48px 34px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
}
.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    opacity: 0;
    transition: opacity 0.3s;
}
.review-card:hover {
    transform: translateY(-3px);
    border-color: rgba(27,53,112,.4);
}
.review-card:hover::before { opacity: 1; }
.review-quote {
    font-family: 'Cinzel', serif;
    font-size: 96px;
    line-height: 0.7;
    color: var(--accent-light);
    position: absolute;
    top: 14px;
    left: 22px;
    opacity: 0.18;
    pointer-events: none;
    user-select: none;
}
.review-text {
    font-size: 15px;
    line-height: 1.85;
    color: var(--text);
    position: relative;
    margin-bottom: 0;
    font-style: italic;
}
.review-meta {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}
.review-meta strong {
    color: var(--text);
    font-weight: 600;
    letter-spacing: 0.03em;
}
.review-kurs {
    color: var(--accent-light);
    margin-left: 8px;
    font-weight: 500;
}

/* Karusell-dots */
.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}
.reviews-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.15);
    cursor: pointer;
    padding: 0;
    transition: background 0.25s, transform 0.2s;
}
.reviews-dot:hover { background: rgba(255,255,255,.35); transform: scale(1.15); }
.reviews-dot.active {
    background: var(--accent-light);
    transform: scale(1.2);
}

/* ============================================================
   FAQ – Accordion (card-stil)
   ============================================================ */
.faq-categories { margin-top: 40px; }
.faq-category { margin-bottom: 56px; }
.faq-category:last-child { margin-bottom: 0; }
.faq-category-title {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
}
.faq-category-title::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--accent-light);
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.2s, background 0.2s;
}
.faq-item:hover {
    border-color: rgba(255,255,255,.18);
}
.faq-item details {
    padding: 0;
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.2s;
    user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 22px;
    font-weight: 300;
    color: var(--accent-light);
    flex-shrink: 0;
    transition: transform 0.25s;
    line-height: 1;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: rgba(255,255,255,.02);
}
.faq-item details[open] {
    background: rgba(27,53,112,.04);
    border-color: rgba(27,53,112,.3);
}
.faq-item details[open] summary {
    color: var(--accent-light);
    padding-bottom: 14px;
}
.faq-item details[open] summary::after {
    transform: rotate(45deg);
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.faq-answer {
    padding: 0 24px 22px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
details[open] .faq-answer {
    max-height: 600px;
}

/* ============================================================
   Bildoptimering för mobil – visa hela bilden istället för
   hård beskärning på smala skärmar.
   ============================================================ */
@media (max-width: 640px) {
    /* Kalymnos hero – stack-layout: bild överst i 3:2 (matchar MOSAIK-bilden),
       text under. Ingen beskärning. */
    .hero-full {
        height: auto;
        min-height: 0;
        display: block;
        text-align: left;
    }
    .hero-full-bg {
        position: relative;
        inset: auto;
        width: 100%;
        aspect-ratio: 3/2;
        background-size: cover;
        background-position: center;
        background-color: #0D0D0D;
        filter: brightness(0.55);
        transform: none;
    }
    .hero-full-content {
        padding: 24px 24px 8px;
        position: relative;
        z-index: 2;
    }
    .hero-scroll-hint { display: none; }

    /* Bildspel: porträttformat med contain – hela bilden syns */
    .slideshow {
        aspect-ratio: 4/5;
        background: #0D0D0D;
    }
    .slideshow-slide {
        object-fit: contain;
        background: #0D0D0D;
    }
}
