/* Scandinavian folk — light, chic, animated */

:root {
    --sc-bg: #faf8f5;
    --sc-bg-warm: #f3efe8;
    --sc-bg-card: #ffffff;
    --sc-forest: #2d4a3e;
    --sc-forest-light: #3d6354;
    --sc-rust: #b85c38;
    --sc-rust-soft: #d4845f;
    --sc-sage: #9caf88;
    --sc-linen: #e8e4dc;
    --sc-text: #2a2a28;
    --sc-text-muted: #6b6b65;
    --sc-shadow: 0 8px 32px rgba(45, 74, 62, 0.08);
    --sc-shadow-hover: 0 16px 48px rgba(45, 74, 62, 0.14);
    --sc-radius: 12px;
    --sc-radius-lg: 20px;
    --sc-font-display: "Cormorant Garamond", Georgia, serif;
    --sc-font-body: "DM Sans", system-ui, sans-serif;
    --sc-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --sc-duration: 0.45s;
}

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

.scandi-body {
    font-family: var(--sc-font-body);
    background: var(--sc-bg);
    color: var(--sc-text);
    margin: 0;
    min-height: 100vh;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    animation: scPageIn 0.6s var(--sc-ease) both;
    overflow-x: clip;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

.scandi-body.nav-open {
    overflow: hidden;
}

@keyframes scPageIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.scandi-body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 0%, rgba(156, 175, 136, 0.12), transparent),
        radial-gradient(ellipse 60% 40% at 90% 10%, rgba(184, 92, 56, 0.08), transparent),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232d4a3e' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.scandi-body > * { position: relative; z-index: 1; }

/* Header */
.scandi-header {
    --sc-header-bar: calc(0.85rem * 2 + 44px);
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(250, 248, 245, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(45, 74, 62, 0.08);
    transition: box-shadow var(--sc-duration) var(--sc-ease);
}

@media (max-width: 991.98px) {
    .scandi-header {
        position: fixed;
        left: 0;
        right: 0;
        width: 100%;
    }

    main {
        padding-top: var(--sc-header-bar);
    }
}

.scandi-header.is-scrolled {
    box-shadow: var(--sc-shadow);
}

.scandi-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0;
    gap: 1rem;
}

.scandi-logo {
    text-decoration: none;
    color: var(--sc-forest);
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem;
    transition: opacity 0.2s;
}

.scandi-logo:hover { opacity: 0.85; color: var(--sc-forest); }

.scandi-logo__main {
    font-family: var(--sc-font-display);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.scandi-logo__amp {
    font-family: var(--sc-font-display);
    font-style: italic;
    font-size: 1rem;
    color: var(--sc-rust);
}

.scandi-logo__sub {
    font-family: var(--sc-font-display);
    font-size: 1.15rem;
    font-weight: 400;
}

.scandi-nav__links {
    display: none;
    align-items: center;
    gap: 1.75rem;
}

@media (min-width: 992px) {
    .scandi-nav__links { display: flex; }
}

.scandi-nav__link {
    color: var(--sc-text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    transition: color 0.25s var(--sc-ease);
}

.scandi-nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--sc-rust);
    transition: width 0.35s var(--sc-ease);
}

.scandi-nav__link:hover::after,
.scandi-nav__link.is-active::after { width: 100%; }

.scandi-nav__link--cta {
    background: var(--sc-forest);
    color: #fff !important;
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    transition: background 0.3s var(--sc-ease), transform 0.3s var(--sc-ease), box-shadow 0.3s;
}

.scandi-nav__link--cta::after { display: none; }

.scandi-nav__link--cta:hover {
    background: var(--sc-forest-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(45, 74, 62, 0.25);
}

.scandi-nav__toggler {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 8px;
}

@media (min-width: 992px) {
    .scandi-nav__toggler { display: none; }
}

.scandi-nav__toggler span {
    display: block;
    height: 2px;
    background: var(--sc-forest);
    border-radius: 1px;
    transition: transform 0.35s var(--sc-ease), opacity 0.25s;
}

.scandi-nav.is-open .scandi-nav__toggler span:nth-child(1),
.scandi-header.is-open .scandi-nav__toggler span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.scandi-nav.is-open .scandi-nav__toggler span:nth-child(2),
.scandi-header.is-open .scandi-nav__toggler span:nth-child(2) { opacity: 0; }
.scandi-nav.is-open .scandi-nav__toggler span:nth-child(3),
.scandi-header.is-open .scandi-nav__toggler span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.scandi-nav__drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    height: 100dvh;
    background: var(--sc-bg-card);
    box-shadow: -8px 0 32px rgba(0,0,0,0.12);
    padding: 0 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.4s var(--sc-ease), visibility 0.4s;
    z-index: 210;
    overflow-y: auto;
}

@media (max-width: 991.98px) {
    .scandi-header > .container {
        position: relative;
        z-index: 230;
    }

    .scandi-nav__drawer {
        top: var(--sc-header-bar);
        height: calc(100dvh - var(--sc-header-bar));
        height: calc(100vh - var(--sc-header-bar));
        padding-top: 1.25rem;
    }

    .scandi-nav__overlay {
        top: var(--sc-header-bar);
        height: calc(100dvh - var(--sc-header-bar));
        height: calc(100vh - var(--sc-header-bar));
    }
}

.scandi-header.is-open .scandi-nav__drawer {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
}

.scandi-nav__drawer-link {
    color: var(--sc-text);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--sc-linen);
    transition: color 0.2s, padding-left 0.3s var(--sc-ease);
}

.scandi-nav__drawer-link:hover {
    color: var(--sc-rust);
    padding-left: 0.5rem;
}

.scandi-nav__drawer-link--muted {
    font-size: 0.9rem;
    color: var(--sc-text-muted);
}

.scandi-nav__overlay {
    position: fixed;
    inset: 0;
    background: rgba(45, 74, 62, 0.35);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s, visibility 0.35s;
    z-index: 205;
    cursor: pointer;
}

.scandi-header.is-open .scandi-nav__overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Sections */
.scandi-section {
    padding: 4rem 0;
}

.scandi-section--hero {
    padding: 3rem 0 5rem;
}

.scandi-section--alt {
    background: linear-gradient(180deg, var(--sc-bg-warm) 0%, var(--sc-bg) 100%);
}

.scandi-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sc-rust);
    margin: 0 0 0.75rem;
}

.scandi-title {
    font-family: var(--sc-font-display);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--sc-forest);
    margin: 0 0 1.25rem;
}

.scandi-title em {
    font-style: italic;
    color: var(--sc-rust-soft);
}

.scandi-lead {
    font-size: 1.125rem;
    color: var(--sc-text-muted);
    max-width: 42rem;
    margin: 0 0 1.5rem;
}

.scandi-text {
    color: var(--sc-text-muted);
    margin: 0 0 1rem;
}

/* Buttons */
.scandi-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--sc-font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.3s var(--sc-ease), box-shadow 0.3s, background 0.3s, color 0.3s;
}

.scandi-btn:hover { transform: translateY(-2px); }

.scandi-btn--primary {
    background: var(--sc-rust);
    color: #fff;
    box-shadow: 0 4px 20px rgba(184, 92, 56, 0.35);
}

.scandi-btn--primary:hover {
    background: var(--sc-rust-soft);
    color: #fff;
    box-shadow: 0 8px 28px rgba(184, 92, 56, 0.4);
}

.scandi-btn--secondary {
    background: var(--sc-forest);
    color: #fff;
}

.scandi-btn--secondary:hover {
    background: var(--sc-forest-light);
    color: #fff;
}

.scandi-btn--outline {
    background: transparent;
    color: var(--sc-forest);
    border: 2px solid var(--sc-forest);
}

.scandi-btn--outline:hover {
    background: var(--sc-forest);
    color: #fff;
}

.scandi-btn--lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

/* Stats card */
.scandi-stats {
    background: var(--sc-bg-card);
    border-radius: var(--sc-radius-lg);
    padding: 2rem;
    box-shadow: var(--sc-shadow);
    text-align: center;
    border: 1px solid rgba(45, 74, 62, 0.06);
    transition: box-shadow 0.4s var(--sc-ease), transform 0.4s var(--sc-ease);
}

.scandi-stats:hover {
    box-shadow: var(--sc-shadow-hover);
    transform: translateY(-3px);
}

.scandi-stats__label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sc-sage);
    margin: 0 0 0.5rem;
}

.scandi-stats__amount {
    font-family: var(--sc-font-display);
    font-size: clamp(2.5rem, 6vw, 3.75rem);
    font-weight: 600;
    color: var(--sc-forest);
    margin: 0;
    line-height: 1.1;
}

.scandi-stats__meta {
    font-size: 0.9rem;
    color: var(--sc-text-muted);
    margin: 0.5rem 0 0;
}

/* Map */
.scandi-map-wrap {
    border-radius: var(--sc-radius-lg);
    overflow: hidden;
    box-shadow: var(--sc-shadow);
    background: var(--sc-bg-card);
    border: 1px solid rgba(45, 74, 62, 0.08);
    transition: box-shadow 0.4s var(--sc-ease);
}

.scandi-map-wrap:hover {
    box-shadow: var(--sc-shadow-hover);
}

.home-flat-map,
.map-pin-container {
    width: 100%;
    aspect-ratio: 4 / 5;
    min-height: 280px;
    background: var(--sc-linen) !important;
}

.leaflet-container { background: var(--sc-linen) !important; font-family: var(--sc-font-body); }

.leaflet-pin-icon {
    background: none !important;
    border: none !important;
    filter: drop-shadow(1px 2px 4px rgba(45, 74, 62, 0.35));
}

.leaflet-pin-icon .pin-marker,
.leaflet-pin-icon-form .pin-marker {
    display: block;
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;
    background: var(--sc-rust);
    border: 3px solid var(--sc-forest);
    border-radius: 50%;
    box-sizing: border-box;
}

.leaflet-tooltip-pane {
    z-index: 640 !important;
}

.leaflet-marker-pane {
    z-index: 700 !important;
}

@keyframes scFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.scandi-stats.is-visible {
    animation: scFloat 8s ease-in-out infinite;
}

.scandi-stats.is-visible:hover {
    animation: none;
    transform: translateY(-3px);
}

/* Perk cards */
.scandi-perks {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .scandi-perks { grid-template-columns: repeat(2, 1fr); }
}

.scandi-perk {
    position: relative;
}

.scandi-perk input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.scandi-perk__label {
    display: block;
    background: var(--sc-bg-card);
    border: 2px solid var(--sc-linen);
    border-radius: var(--sc-radius);
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: border-color 0.3s var(--sc-ease), box-shadow 0.3s, transform 0.3s var(--sc-ease);
    height: 100%;
}

.scandi-perk__label:hover {
    border-color: var(--sc-sage);
    transform: translateY(-2px);
    box-shadow: var(--sc-shadow);
}

.scandi-perk input:checked + .scandi-perk__label {
    border-color: var(--sc-rust);
    box-shadow: 0 0 0 3px rgba(184, 92, 56, 0.15);
}

.scandi-perk__head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.scandi-perk__title {
    font-family: var(--sc-font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--sc-forest);
    margin: 0;
}

.scandi-perk__price {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--sc-rust);
    white-space: nowrap;
}

.scandi-perk__desc {
    font-size: 0.9rem;
    color: var(--sc-text-muted);
    margin: 0;
    line-height: 1.5;
}

.scandi-vrij-bedrag {
    margin: 0.75rem 0 1.75rem;
    padding: 1.35rem 1.5rem;
    border-radius: var(--sc-radius);
    background: var(--sc-bg-card);
    border: 2px solid var(--sc-rust);
    box-shadow: 0 0 0 3px rgba(184, 92, 56, 0.1);
}

.scandi-vrij-bedrag.is-visible {
    animation: scVrijIn 0.35s var(--sc-ease) both;
}

@keyframes scVrijIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

.scandi-vrij-bedrag__title {
    font-family: var(--sc-font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--sc-forest);
    margin: 0 0 1rem;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

.scandi-vrij-bedrag__field {
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: 16rem;
    border: 2px solid var(--sc-linen);
    border-radius: var(--sc-radius);
    background: var(--sc-bg);
    overflow: hidden;
    transition: border-color 0.25s var(--sc-ease), box-shadow 0.25s var(--sc-ease);
}

.scandi-vrij-bedrag__field:focus-within {
    border-color: var(--sc-sage);
    box-shadow: 0 0 0 3px rgba(156, 175, 136, 0.22);
}

.scandi-vrij-bedrag__prefix {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 2.75rem;
    padding: 0 0.75rem;
    font-family: var(--sc-font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--sc-forest);
    background: var(--sc-bg-warm);
    border-right: 1px solid var(--sc-linen);
    margin: 0;
    cursor: text;
}

.scandi-vrij-bedrag__input {
    flex: 1;
    width: 100%;
    min-width: 0;
    border: none;
    background: transparent;
    font-family: var(--sc-font-body);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--sc-text);
    padding: 0.8rem 1rem;
    outline: none;
}

.scandi-vrij-bedrag__input::placeholder {
    color: var(--sc-text-muted);
    opacity: 0.6;
}

.scandi-vrij-bedrag__hint {
    font-family: var(--sc-font-body);
    font-size: 0.875rem;
    color: var(--sc-text-muted);
    margin: 0.75rem 0 0;
    line-height: 1.55;
    max-width: 28rem;
}

/* Form */
.scandi-form-hint {
    font-size: 0.95rem;
    color: var(--sc-text-muted);
    background: var(--sc-bg-warm);
    border-left: 3px solid var(--sc-sage);
    padding: 0.85rem 1rem;
    border-radius: var(--sc-radius);
    margin: 0 0 1.25rem;
    line-height: 1.5;
}

.scandi-form-group {
    margin-bottom: 1.25rem;
}

.scandi-form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--sc-forest);
    margin-bottom: 0.4rem;
}

.scandi-input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--sc-font-body);
    font-size: 1rem;
    border: 2px solid var(--sc-linen);
    border-radius: var(--sc-radius);
    background: var(--sc-bg-card);
    transition: border-color 0.25s, box-shadow 0.25s;
}

.scandi-input:focus {
    outline: none;
    border-color: var(--sc-sage);
    box-shadow: 0 0 0 3px rgba(156, 175, 136, 0.25);
}

.scandi-card {
    background: var(--sc-bg-card);
    border-radius: var(--sc-radius-lg);
    padding: 2rem;
    box-shadow: var(--sc-shadow);
    border: 1px solid rgba(45, 74, 62, 0.06);
}

.scandi-card--thank {
    max-width: 42rem;
    margin: 0 auto;
}

.scandi-thank__title {
    font-family: var(--sc-font-display);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 600;
    color: var(--sc-forest);
    margin: 0 0 0.75rem;
    line-height: 1.2;
}

.scandi-thank__choice {
    font-size: 1.05rem;
    margin: 0 0 1.75rem;
    color: var(--sc-text);
}

.scandi-thank__pay-grid {
    display: grid;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--sc-linen);
}

@media (min-width: 640px) {
    .scandi-thank__pay-grid {
        grid-template-columns: 1fr auto;
        gap: 2rem;
    }
}

.scandi-thank__pay-text {
    text-align: left;
}

.scandi-thank__amount {
    font-family: var(--sc-font-display);
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 600;
    color: var(--sc-forest);
    margin: 0 0 0.75rem;
    line-height: 1.1;
}

.scandi-thank__pay-text .scandi-pay-qr__title {
    text-align: left;
}

.scandi-thank__pay-text .scandi-pay-qr__hint {
    text-align: left;
    margin-bottom: 0;
}

.scandi-thank__details {
    font-size: 1rem;
    line-height: 1.65;
}

.scandi-thank__details p {
    margin: 0 0 1rem;
}

.scandi-thank__details p:last-child {
    margin-bottom: 0;
}

.scandi-thank__back {
    margin: 1.75rem 0 0;
    text-align: center;
}

.scandi-pay-qr {
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--sc-linen);
    text-align: center;
}

.scandi-pay-qr__title {
    font-family: var(--sc-font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--sc-forest);
    margin: 0 0 0.35rem;
}

.scandi-pay-qr__hint {
    font-size: 0.88rem;
    color: var(--sc-text-muted);
    margin: 0 0 1rem;
    line-height: 1.5;
}

.scandi-pay-qr__code {
    display: inline-flex;
    padding: 0.75rem;
    background: #fff;
    border-radius: var(--sc-radius);
    border: 1px solid rgba(45, 74, 62, 0.12);
    box-shadow: var(--sc-shadow);
}

.scandi-pay-qr__code canvas,
.scandi-pay-qr__img {
    display: block;
    border-radius: 4px;
    max-width: 100%;
    height: auto;
}

.scandi-pay-qr__note {
    font-size: 0.85rem;
    color: var(--sc-text-muted);
    margin: 0.75rem 0 0;
}

.scandi-alert {
    padding: 1rem 1.25rem;
    border-radius: var(--sc-radius);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.scandi-alert--error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.scandi-alert--success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

/* Rules list */
.scandi-rules {
    list-style: none;
    padding: 0;
    margin: 0;
}

.scandi-rules li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--sc-text-muted);
}

.scandi-rules li::before {
    content: "♪";
    position: absolute;
    left: 0;
    color: var(--sc-rust);
    font-size: 0.9rem;
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--sc-ease), transform 0.7s var(--sc-ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.scandi-text--small {
    font-size: 0.9rem;
}

/* Small Samen landscape in hero */
.scandi-samen {
    margin: 0 0 0.75rem;
    border-radius: var(--sc-radius-lg);
    overflow: hidden;
    box-shadow: var(--sc-shadow);
    border: 1px solid rgba(45, 74, 62, 0.08);
}

.scandi-samen img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 140px;
    object-fit: cover;
    object-position: center;
}

@media (min-width: 992px) {
    .scandi-samen img {
        max-height: 160px;
    }
}

/* Sweden atmosphere banner */
.scandi-atmosphere {
    position: relative;
    min-height: min(52vh, 420px);
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(45, 74, 62, 0.82) 0%, rgba(45, 74, 62, 0.55) 45%, rgba(184, 92, 56, 0.45) 100%),
        url("../images/sweden-scenic.jpg") center center / cover no-repeat;
    background-attachment: fixed;
    padding: 4rem 1.5rem;
    overflow: hidden;
}

.scandi-atmosphere::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 100%, rgba(250, 248, 245, 0.15), transparent);
    pointer-events: none;
}

.scandi-atmosphere__inner {
    position: relative;
    z-index: 1;
    max-width: 42rem;
    text-align: center;
}

.scandi-atmosphere__quote {
    font-family: var(--sc-font-display);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 600;
    font-style: italic;
    color: #fff;
    margin: 0;
    line-height: 1.35;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.scandi-card--accent {
    border-left: 4px solid var(--sc-rust);
}

.scandi-card--contact {
    text-align: left;
}

.scandi-newsletter-col .ngage-newsletter-embed-host {
    max-width: none;
}

/* Photo gallery */
.scandi-section--gallery {
    padding-top: 2rem;
}

.scandi-section--gallery-bottom {
    padding-bottom: 3rem;
}

.scandi-gallery {
    display: grid;
    gap: 1rem;
    margin-top: 1.25rem;
}

.scandi-gallery--duo {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .scandi-gallery--duo {
        grid-template-columns: repeat(2, 1fr);
    }
}

.scandi-gallery__item {
    margin: 0;
    border-radius: var(--sc-radius-lg);
    overflow: hidden;
    box-shadow: var(--sc-shadow);
    background: var(--sc-bg-card);
    transition: transform 0.45s var(--sc-ease), box-shadow 0.45s var(--sc-ease);
}

.scandi-gallery__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--sc-shadow-hover);
}

.scandi-gallery__item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    min-height: 220px;
}

.scandi-gallery__item figcaption {
    padding: 0.85rem 1.1rem;
    font-size: 0.9rem;
    color: var(--sc-text-muted);
    border-top: 1px solid var(--sc-linen);
}

.scandi-gallery__unsplash {
    text-align: center;
    opacity: 0.75;
}

.scandi-gallery__unsplash a {
    color: var(--sc-rust);
}

@media (prefers-reduced-motion: reduce) {
    .scandi-atmosphere {
        background-attachment: scroll;
    }
}

/* Footer */
.scandi-footer {
    margin-top: 4rem;
    padding: 3rem 0;
    background: var(--sc-forest);
    color: rgba(255, 255, 255, 0.85);
}

.scandi-footer__inner { text-align: center; }

.scandi-footer__brand {
    font-family: var(--sc-font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
    color: #fff;
}

.scandi-footer__tag {
    font-size: 0.9rem;
    margin: 0 0 1rem;
    opacity: 0.75;
}

.scandi-footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
    font-size: 0.9rem;
}

.scandi-footer__links a {
    color: var(--sc-sage);
    text-decoration: none;
    transition: color 0.2s;
}

.scandi-footer__links a:hover { color: #fff; }

/* Hero decorative line */
.scandi-divider {
    width: 4rem;
    height: 3px;
    background: linear-gradient(90deg, var(--sc-rust), var(--sc-sage));
    border-radius: 2px;
    margin: 1.5rem 0;
}

.scandi-ref {
    font-family: ui-monospace, monospace;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--sc-rust);
    letter-spacing: 0.05em;
    background: var(--sc-bg-warm);
    padding: 0.5rem 1rem;
    border-radius: var(--sc-radius);
    display: inline-block;
}

@media (prefers-reduced-motion: reduce) {
    .scandi-body,
    .reveal,
    .scandi-btn,
    .scandi-stats,
    .scandi-perk__label {
        animation: none !important;
        transition: none !important;
    }
    .reveal { opacity: 1; transform: none; }
}
