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

        :root {
            --sand: #FDF6E8;
            /* ljus, varm, solkysst beige */
            /*--sand2: #FFF8F0;*/
            /* varm vit: hero-stats */
            --sand3: #EFE3C9;
            --beige: #DDD0B8;
            --cream: #FFFFFF;
            /* rent vitt: galleri, faktakort */
            --ink: #1C1B18;
            --ink2: #4A4740;
            --ink3: #6E6B66;
            --navy: #4A7FA0;
            /* havsblå: knappar, länkar, nav */
            --navy2: #7AAFC8;
            /* hover */
            --navy-dark: #1E3A52;
            /* footer och citat — mörk ram */
            --navy5: #4a7fa8 --booking-bg: #E0F4F0;
            --gold: #C4980A;
            --serif: "Playfair Display",
                Georgia,
                serif;
            --sans: "Inter",
                system-ui,
                sans-serif;
            font-size: 16px;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--sans);
            background: var(--cream);
            color: var(--ink);
            -webkit-font-smoothing: antialiased;
            line-height: 1.6;
            font-size: 1.0625rem;
            /* 17px */
        }

        /* NAV */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 200;
            /*background: rgba(30, 58, 82, 0.92);*/
            /*background: #6BA3D4;*/
            background: #5E9FC9;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            padding: 0 2.5rem;
            height: 3.625rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-logo {
            font-family: var(--serif);
            font-size: 1rem;
            color: #FFFFFF;
            letter-spacing: 0.06em;
        }

        .nav-logo span {
            color: #FFFFFF;
            font-style: italic;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

       .nav-link {
            font-size: 0.75rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            /*color: #FFFFFF;
            text-decoration: none;*/
            color: rgba(255, 255, 255);
            text-decoration: none; 
        }

        .nav-link:hover {
            /*color: var(--navy)*/
            color: #fff;
        }

        .nav-cta {
            background: #f8b138;
            color: #000000;
            padding: 0.7rem 1.25rem;
            border: none;
            border-radius: 3px;
            font-family: var(--sans);
            font-size: 0.75rem;
            letter-spacing: 0.07em;
            text-transform: uppercase;
            cursor: pointer;
            transition: background 0.2s;
        }

        .nav-cta:hover {
            background: #fac05a;
        }

        /* HERO */
        .hero {
            padding-top: 3.625rem;
            background: var(--sand);
            display: flex;
            flex-direction: column;
        }

       /* .hero-accent-bar {
            height: 3rem;
             background: linear-gradient(135deg, #1E2C3A 0%, #2B4A64 60%, #3A6080 100%);
        }*/

        .hero-video {
            width: 100%;
            aspect-ratio: 16/9;
            background: #1E2C3A;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            max-height: 72vh;
        }

        .hero-video-bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #1E2C3A 0%, #2B4A64 60%, #3A6080 100%);
        }

        .hero-video-content {
            position: relative;
            z-index: 1;
            text-align: center;
            color: rgba(255, 255, 255, .85);
        }

        .play-ring {
            width: 5rem;
            height: 5rem;
            border-radius: 50%;
            border: 1.5px solid rgba(255, 255, 255, .6);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            cursor: pointer;
        }

        .play-ring:hover {
            border-color: #fff;
        }

        .play-tri {
            width: 0;
            height: 0;
            border-top: 0.8rem solid transparent;
            border-bottom: 0.8rem solid transparent;
            border-left: 1.375rem solid rgba(255, 255, 255, .9);
            margin-left: 0.3rem;
        }

        .video-caption {
            font-size: 0.75rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            opacity: .7;
        }

        .hero-bottom {
            display: grid;
            grid-template-columns: 1fr 1fr;
            flex: 1;
        }

        .hero-text {
            padding: 3.5rem 4rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .hero-eyebrow {
            font-size: 0.8125rem;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--navy);
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .hero-h1 {
            font-family: var(--serif);
            font-size: clamp(2rem, 3.5vw, 3.2rem);
            line-height: 1.15;
            color: var(--ink);
            margin-bottom: 1.4rem;
        }

        .hero-h1 em {
            font-style: italic;
            color: var(--navy);
            line-height: 1.5;
        }

        .hero-lead {
            font-size: 0.9375rem;
            color: var(--ink2);
            line-height: 1.8;
            margin-bottom: 2rem;
            max-width: 25rem;
        }

        .hero-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 2rem;
        }

        .pill {
            background: var(--cream);
            border: 1px solid rgba(28, 27, 24, 0.12);
            border-radius: 30px;
            padding: 0.3rem 0.875rem;
            font-size: 0.75rem;
            color: var(--ink2);
        }

        .hero-btns {
            display: flex;
            gap: 0.75rem;
        }

        .btn-navy {
            background: var(--navy);
            color: #fff;
            padding: 0.8rem 1.75rem;
            border: none;
            border-radius: 3px;
            font-family: var(--sans);
            font-size: 0.8125rem;
            letter-spacing: 0.06em;
            cursor: pointer;
            transition: background 0.2s;
        }

        .btn-navy:hover {
            background: var(--navy2);
        }

        .btn-ghost {
            background: transparent;
            color: var(--ink2);
            padding: 0.8rem 1.25rem;
            border: 1px solid rgba(28, 27, 24, .18);
            border-radius: 3px;
            font-family: var(--sans);
            font-size: 0.8125rem;
            cursor: pointer;
            transition: border-color 0.2s;
        }

        .btn-ghost:hover {
            border-color: rgba(28, 27, 24, .4);
        }

        .hero-stats {
            padding: 3.5rem 3rem;
            background: var(--sand);
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 1.5rem;
            border-left: 1px solid rgba(28, 27, 24, 0.08);
        }

        .stat-row {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            padding-bottom: 1.2rem;
            border-bottom: 1px solid rgba(28, 27, 24, 0.08);
        }

        .stat-row:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .stat-label {
            font-size: 0.6875rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--ink3);
        }

        .stat-value {
            font-family: var(--serif);
            font-size: 1.3rem;
            color: var(--ink);
        }

        /* Ritning planlösning*/

        .planlosning {
            background-color: #e8eef2;
            padding: 4rem 2rem;
            text-align: center;
        }

        .planlosning-inner {
            max-width: 60rem;
            margin: 0 auto;
        }

        .planlosning h2 {
            font-size: 1.75rem;
            color: #2c2c2c;
            margin-bottom: 2rem;
        }

        .planlosning img {
            width: 100%;
            height: auto;
            display: block;
            margin: 0 auto;
        }

        /* QUOTE STRIP - citat*/
        .quote-strip {
            background: var(--sand3);
            padding: 4.5rem 2rem;
            /* mer luft ovanför och under */
            text-align: center;
        }

        .quote-text {
            font-family: var(--serif);
            font-size: clamp(1.2rem, 2.5vw, 1.7rem);
            font-style: italic;
            color: #2a2a2a;
            max-width: 44rem;
            margin: 0 auto 1.5rem;
            line-height: 1.75;
            letter-spacing: 0.01em;
        }

        .quote-attr {
            font-size: 0.8125rem;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--ink2); /* kontrast mot sand 7.3:1 */
            font-weight: 400;
        }


        .quote-strip-2 {
            background: var(--sand3);
            padding: 4.5rem 2rem;
            text-align: center;
        }

        .quote-strip-2 .quote-text {
            color: #2a2a2a;
        }

        .quote-strip-2 .quote-attr {
            color: rgba(28, 27, 24, 0.6);
        }

        /* GALLERY */
        .gallery-section {
            background: var(--cream);
            padding-top: 2rem;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: 17.5rem 17.5rem;
            gap: 3px;
        }

        .gitem {
            overflow: hidden;
            position: relative;
            cursor: pointer;
        }

        .gitem:first-child {
            grid-column: 1/3;
            grid-row: 1/3;
        }

        .gitem img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform .6s ease;
        }

        .gitem:hover img {
            transform: scale(1.04);
        }

        .gitem-label {
            position: absolute;
            bottom: 0.875rem;
            left: 1rem;
            background: rgba(28, 27, 24, .55);
            color: #fff;
            font-size: 0.6875rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 0.25rem 0.625rem;
            border-radius: 2px;
            opacity: 0;
            transition: opacity .3s;
        }

        .gitem:hover .gitem-label {
            opacity: 1;
        }

        /* LIGHTBOX */
        .lightbox {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(28, 27, 24, .92);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }

        .lightbox.open {
            display: flex;
        }

        .lb-img {
            max-width: 90vw;
            max-height: 88vh;
            object-fit: contain;
        }

        .lb-close {
            position: absolute;
            top: 1.25rem;
            right: 1.5rem;
            color: #fff;
            font-size: 1.75rem;
            cursor: pointer;
            background: none;
            border: none;
            font-family: var(--sans);
        }

        .lb-prev,
        .lb-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: #fff;
            font-size: 2rem;
            cursor: pointer;
            background: none;
            border: none;
            padding: 0.75rem;
        }

        .lb-prev {
            left: 1rem;
        }

        .lb-next {
            right: 1rem;
        }

        /* DESCRIPTION */
        .desc-section {
            padding: 6rem 0;
            background: var(--sand3);
        }

        .section-inner {
            max-width: 68.75rem;
            margin: 0 auto;
            padding: 0 3rem;
        }

        .gallery-inner {
            max-width: 90rem;
            margin: 0 auto;
            padding: 0 3rem;

        }

        .desc-grid {
            display: grid;
            grid-template-columns: 5fr 4fr;
            gap: 5rem;
            align-items: start;
        }

        .eyebrow {
            font-size: 0.6875rem;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--navy);
            margin-bottom: 1rem;
        }

        .section-h2 {
            font-family: var(--serif);
            font-size: 2rem;
            line-height: 1.25;
            color: var(--ink);
            margin-bottom: 1.5rem;
        }

        .body-text {
            font-size: 1rem;
            /*font-size: 0.9375rem;*/
            color: var(--ink2);
            line-height: 1.85;
            margin-bottom: 1.2rem;
        }

        .features {
            margin-top: 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.625rem;
        }

        .feature {
            display: flex;
            align-items: center;
            gap: 0.625rem;
            font-size: 0.8125rem;
            color: var(--ink2);
            padding: 0.5625rem 0.75rem;
            background: var(--cream);
            border: 1px solid rgba(28, 27, 24, .08);
            border-radius: 3px;
        }

        .feature-dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--gold);
            flex-shrink: 0;
        }

        /* LIFESTYLE */
        .lifestyle-section {
            background: var(--cream);
            padding: 5rem 0;
        }

        .lifestyle-hero {
            width: 100%;
            aspect-ratio: 16/9;
            overflow: hidden;
            margin-top: 2.5rem;
            /*border-radius: 2px;*/
            cursor: pointer;
        }

        .lifestyle-hero img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform .6s ease;
        }

        .lifestyle-hero:hover img {
            transform: scale(1.03);
        }

        .lifestyle-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3px;
            margin-top: 0.75rem;
        }

        .section-h2-lifestyle {
            text-align: center;
            max-width: 31rem;
            margin: 0 auto;
        }

        .litem {
            overflow: hidden;
            aspect-ratio: 4/3;
        }

        .litem img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform .5s;
        }

        .litem:hover img {
            transform: scale(1.05);
        }

        /* BOOKING */
        .booking-section {
            padding: 4rem 0;
            background: var(--booking-bg);
        }

        .booking-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .cal-embed {
            background: var(--cream);
            border: 1px solid rgba(28, 27, 24, .1);
            border-radius: 4px;
            padding: 2rem;
            margin-bottom: 1rem;
        }

        .cal-title {
            font-family: var(--serif);
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
            color: var(--ink);
        }

        .cal-desc {
            font-size: 0.8125rem;
            color: var(--ink3);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .cal-btn {
            display: block;
            width: 100%;
            background: var(--navy);
            color: #fff;
            padding: 0.875rem;
            border: none;
            border-radius: 3px;
            font-family: var(--sans);
            font-size: 0.8125rem;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            cursor: pointer;
            margin-bottom: 0.625rem;
            transition: background 0.2s;
        }

        .cal-btn:hover {
            background: var(--navy2);
        }

        .cal-btn.secondary {
            background: transparent;
            color: var(--navy);
            border: 1px solid rgba(74, 127, 160, .4);
        }

        .cal-btn.secondary:hover {
            border-color: var(--navy);
            background: rgba(74, 127, 160, 0.06);
        }

        .cal-note {
            font-size: 0.6875rem;
            color: var(--ink3);
            margin-top: 0.5rem;
        }

        .booking-sms {
            margin-top: 1.5rem;
            font-size: 0.875rem;
            color: var(--ink2);
            line-height: 1.7;
        }

        .booking-sms a {
            color: var(--navy);
            text-decoration: none;
            border-bottom: 1px solid rgba(74, 127, 160, .3);
        }

        .booking-sms a:hover {
            border-color: var(--navy);
        }

        /* CONTACT */
        .contact-section {
            padding: 5rem 0;
            background: var(--navy-dark);
        }

        .contact-inner {
            max-width: 35rem;
            margin: 0 auto;
            padding: 0 2rem;
            text-align: center;
        }

        .contact-eyebrow {
            font-size: 0.6875rem;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .5);
            margin-bottom: 1rem;
        }

        .contact-h2 {
            font-family: var(--serif);
            font-size: 2rem;
            color: #fff;
            line-height: 1.2;
            margin-bottom: 1.2rem;
        }

        .contact-lead {
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, .7);
            line-height: 1.75;
            margin-bottom: 2rem;
        }

        .contact-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-button {
            display: inline-block;
            padding: 0.875rem 1.75rem;
            background: var(--navy);
            color: #fff;
            text-decoration: none;
            border-radius: 3px;
            font-family: var(--sans);
            font-size: 0.875rem;
            letter-spacing: 0.05em;
            transition: background 0.2s;
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            background: var(--navy2);
        }

        .cta-button.secondary {
            background: rgba(255, 255, 255, .12);
            color: rgba(255, 255, 255, .9);
            border: 1px solid rgba(255, 255, 255, .25);
        }

        .cta-button.secondary:hover {
            background: rgba(255, 255, 255, .2);
        }

        .contact-footnote {
            margin-top: 2rem;
            font-size: 0.8125rem;
            color: rgba(255, 255, 255, 0.45);
            line-height: 1.7;
        }


        /* FACTS */
        .facts-section {
            padding: 5rem 0;
            background: var(--sand3);
        }

        .facts-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            background: rgba(28, 27, 24, .08);
            border: 1px solid rgba(28, 27, 24, .08);
            border-radius: 4px;
            overflow: hidden;
            margin-top: 2rem;
        }

        .fact-cell {
            background: var(--cream);
            padding: 1.5rem 1.8rem;
        }

        .fact-cell-label {
            font-size: 0.625rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--ink3);
            margin-bottom: 0.375rem;
        }

        .fact-cell-value {
            font-family: var(--serif);
            font-size: 1.2rem;
            color: var(--ink);
            margin-bottom: 0.2rem
        }

        .fact-cell-sub {
            font-size: 0.75rem;
            color: var(--ink3);
        }

        .facts-links {
            margin-top: 1.5rem;
            display: flex;
            gap: 2rem;
        }

        .facts-link {
            font-size: 0.8125rem;
            color: var(--navy);
            text-decoration: none;
            border-bottom: 1px solid rgba(74, 127, 160, .3);
            padding-bottom: 2px;
        }

        .facts-link:hover {
            border-color: var(--navy);
        }

        .area-photos-link {
            margin-top: 1.2rem;
            display: inline-block;
        }

        .contact-footnote-link {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.25);
        }

        .contact-footnote-link:hover {
            color: rgba(255, 255, 255, 1);
            border-color: rgba(255, 255, 255, 0.5);
            font-size: 1rem;
        }

        footer {
            background: var(--navy-dark);
            color: rgba(255, 255, 255, 0.8);
            text-align: center;
            padding: 2rem;
            font-size: 0.9rem;
            letter-spacing: 0.06em;
        }



        /* RESPONSIVE */
        @media(max-width: 50rem) {
            .hero-bottom {
                grid-template-columns: 1fr;
                padding-top: 2rem;
            }

            .hero-stats {
                border-left: none;
                border-top: 1px solid rgba(28, 27, 24, .08);
            }

            .hero-text {
                padding: 2.5rem 1.5rem;
            }
     

            .desc-grid,
            .booking-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .gallery-grid {
                display: grid;
                grid-template-columns: 1fr;
                grid-auto-rows: auto;
            }

            .gitem:first-child {
                grid-column: 1;
                grid-row: span 1;
            }

            .gitem img {
                height: auto;
                aspect-ratio: 4/3;
                object-fit: cover;
            }

            .lifestyle-hero {
                aspect-ratio: 4/3;
            }

            .lifestyle-grid {
                grid-template-columns: 1fr;
                margin-top: 3px;
            }

            .facts-grid {
                grid-template-columns: 1fr 1fr;
            }

            .lifestyle-section {
                padding: 2.5rem 0;
            }

            .section-inner,
            .gallery-inner {
                padding: 0 1.5rem;
            }

            .nav-links {
                display: none;
            }

            .features {
                grid-template-columns: 1fr;
            }

            .nav-cta {
                    display: none;
            }

            /*.hero-accent-bar {
                height: 1.5rem;
            }*/
        }
        