:root {
            --forest: #102f30;
            --forest-deep: #081f20;
            --forest-soft: #1b4544;
            --gold: #d7a84d;
            --gold-light: #edcf8f;
            --terracotta: #b7442f;
            --terracotta-deep: #8f2f20;
            --sand: #f4eee2;
            --cream: #fbf8f1;
            --ink: #172423;
            --white: #ffffff;
            --muted: #6b7774;
            --line: rgba(16, 47, 48, 0.14);
            --serif: "Cormorant Garamond", Georgia, serif;
            --sans: "Manrope", Arial, sans-serif;
            --shadow: 0 24px 70px rgba(7, 26, 27, 0.16);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            overflow-x: hidden;
            color: var(--ink);
            background: var(--cream);
            font-family: var(--sans);
            line-height: 1.7;
        }

        body.menu-open {
            overflow: hidden;
        }

        img {
            display: block;
            width: 100%;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        button,
        input,
        textarea {
            font: inherit;
        }

        ::selection {
            color: var(--forest-deep);
            background: var(--gold-light);
        }

        .container {
            width: min(1620px, calc(100% - 40px));
            margin-inline: auto;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 18px;
            color: var(--terracotta);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
        }

        .eyebrow::before {
            width: 34px;
            height: 1px;
            content: "";
            background: currentColor;
        }

        .section-title {
            max-width: 760px;
            font-family: var(--serif);
            font-size: clamp(48px, 6vw, 82px);
            font-weight: 600;
            line-height: 0.98;
            letter-spacing: -0.035em;
        }

        .button {
            display: inline-flex;
            min-height: 54px;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 0 26px;
            border: 1px solid transparent;
            background: var(--gold);
            color: var(--forest-deep);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.13em;
            text-transform: uppercase;
            transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
        }

        .button:hover {
            transform: translateY(-3px);
            background: var(--gold-light);
        }

        .button-outline {
            border-color: rgba(255, 255, 255, 0.4);
            color: var(--white);
            background: transparent;
        }

        .button-outline:hover {
            border-color: var(--white);
            color: var(--forest-deep);
            background: var(--white);
        }

        /* Header */
        .site-header {
            position: fixed;
            top: 0;
            right: 0;
            left: 0;
            z-index: 1000;
            padding: 22px 0;
            transition: padding 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
        }

        .site-header.scrolled {
            padding: 12px 0;
            background: rgba(8, 31, 32, 0.93);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
            backdrop-filter: blur(18px);
        }

        .nav-shell {
            display: flex;
            min-height: 70px;
            align-items: center;
            justify-content: space-between;
            padding: 0 26px;
            border: 1px solid rgba(255, 255, 255, 0.14);
            background: rgba(5, 25, 27, 0.32);
            backdrop-filter: blur(16px);
        }

        .brand {
            position: relative;
            z-index: 1002;
            display: inline-flex;
            flex-direction: column;
            color: var(--white);
            line-height: 1;
        }

        .brand-main {
            font-family: var(--serif);
            font-size: 25px;
            font-weight: 600;
            letter-spacing: 0.05em;
        }

        .brand-small {
            margin-top: 7px;
            color: var(--gold-light);
            font-size: 8px;
            font-weight: 700;
            letter-spacing: 0.42em;
            text-transform: uppercase;
        }

        .desktop-nav {
            display: flex;
            align-items: center;
            gap: 34px;
            color: rgba(255, 255, 255, 0.86);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }

        .desktop-nav a:not(.nav-cta) {
            position: relative;
            padding: 12px 0;
        }

        .desktop-nav a:not(.nav-cta)::after {
            position: absolute;
            right: 0;
            bottom: 5px;
            left: 0;
            height: 1px;
            content: "";
            background: var(--terracotta);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
        }

        .desktop-nav a:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        .nav-cta {
            padding: 12px 18px;
            color: var(--forest-deep);
            background: var(--gold);
        }

        .menu-toggle {
            position: relative;
            z-index: 1002;
            display: none;
            width: 44px;
            height: 44px;
            border: 0;
            color: var(--white);
            background: transparent;
            cursor: pointer;
        }

        .menu-toggle span,
        .menu-toggle::before,
        .menu-toggle::after {
            position: absolute;
            left: 10px;
            width: 24px;
            height: 1px;
            content: "";
            background: currentColor;
            transition: 0.3s ease;
        }

        .menu-toggle::before { top: 14px; }
        .menu-toggle span { top: 22px; }
        .menu-toggle::after { top: 30px; }

        .menu-open .menu-toggle::before {
            top: 22px;
            transform: rotate(45deg);
        }

        .menu-open .menu-toggle span {
            opacity: 0;
        }

        .menu-open .menu-toggle::after {
            top: 22px;
            transform: rotate(-45deg);
        }

        /* Hero */
        .hero {
            position: relative;
            display: grid;
            min-height: 100svh;
            align-items: end;
            overflow: hidden;
            color: var(--white);
            background: var(--forest-deep);
        }

        .hero-media {
            position: absolute;
            inset: -6%;
            background:
                linear-gradient(90deg, rgba(3, 17, 19, 0.92) 0%, rgba(3, 17, 19, 0.48) 48%, rgba(3, 17, 19, 0.16) 100%),
                linear-gradient(0deg, rgba(3, 17, 19, 0.75) 0%, transparent 50%),
                url("https://www.samuiunlocked.com/asset/uploads/businesslistings/1460/gallery/gallery-1783669564-7624.webp") center / cover no-repeat;
            transform: scale(1.03);
            will-change: transform;
        }

        .hero::after {
            position: absolute;
            right: 0;
            bottom: -1px;
            left: 0;
            height: 120px;
            content: "";
            background: linear-gradient(to top, var(--cream), transparent);
            opacity: 0.18;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 850px;
            padding: 190px 0 110px;
        }

        .hero-kicker {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 25px;
            color: var(--gold-light);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.25em;
            text-transform: uppercase;
        }

        .hero-kicker::before {
            width: 42px;
            height: 1px;
            content: "";
            background: currentColor;
        }

        .hero h1 {
            max-width: 760px;
            font-family: var(--serif);
            font-size: clamp(76px, 11vw, 148px);
            font-weight: 600;
            line-height: 0.76;
            letter-spacing: -0.055em;
        }

        .hero h1 span {
            display: block;
            margin-left: clamp(0px, 8vw, 105px);
            color: var(--gold-light);
            font-style: italic;
        }

        .hero-copy {
            max-width: 560px;
            margin-top: 38px;
            color: rgba(255, 255, 255, 0.82);
            font-size: clamp(16px, 2vw, 20px);
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 34px;
        }

        .scroll-cue {
            position: absolute;
            right: 36px;
            bottom: 34px;
            z-index: 4;
            display: flex;
            align-items: center;
            gap: 14px;
            color: rgba(255, 255, 255, 0.68);
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 0.24em;
            text-transform: uppercase;
            writing-mode: vertical-rl;
        }

        .scroll-cue::after {
            width: 1px;
            height: 62px;
            content: "";
            background: linear-gradient(var(--gold), transparent);
        }

        /* Intro */
        .intro {
            position: relative;
            padding: 130px 0;
            background: var(--cream);
        }

        .intro::before {
            position: absolute;
            top: 0;
            right: 0;
            width: 42%;
            height: 100%;
            content: "";
            background:
                radial-gradient(circle at 80% 30%, rgba(215, 168, 77, 0.13), transparent 38%),
                linear-gradient(135deg, transparent, rgba(16, 47, 48, 0.025));
        }

        .intro-grid {
            position: relative;
            display: grid;
            grid-template-columns: 1.08fr 0.92fr;
            align-items: center;
            gap: clamp(50px, 8vw, 110px);
        }

        .intro-image-wrap {
            position: relative;
        }

        .intro-image {
            min-height: 660px;
            object-fit: cover;
            box-shadow: var(--shadow);
        }

        .image-note {
            position: absolute;
            right: -28px;
            bottom: 40px;
            max-width: 220px;
            padding: 24px;
            color: var(--white);
            background: var(--forest);
            box-shadow: var(--shadow);
        }

        .image-note strong {
            display: block;
            margin-bottom: 8px;
            color: var(--gold-light);
            font-family: var(--serif);
            font-size: 28px;
            line-height: 1;
        }

        .image-note span {
            font-size: 12px;
            line-height: 1.6;
        }

        .intro-copy .section-title {
            margin-bottom: 30px;
        }

        .intro-copy p {
            max-width: 570px;
            margin-bottom: 18px;
            color: var(--muted);
            font-size: 16px;
        }

        .signature-line {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 30px;
            color: var(--forest);
            font-family: var(--serif);
            font-size: 24px;
            font-style: italic;
        }

        .signature-line::before {
            width: 52px;
            height: 1px;
            content: "";
            background: var(--gold);
        }

        /* View */
        .view-section {
            position: relative;
            display: grid;
            min-height: 780px;
            place-items: center;
            overflow: hidden;
            color: var(--white);
            text-align: center;
        }

        .view-bg {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(rgba(5, 21, 24, 0.45), rgba(5, 21, 24, 0.8)),
                url("https://www.samuiunlocked.com/asset/uploads/businesslistings/1460/gallery/gallery-1783709043-7812.webp") center / cover no-repeat;
        }

        .view-bg::after {
            position: absolute;
            inset: 0;
            content: "";
            background: radial-gradient(circle at center, transparent 0%, rgba(4, 18, 20, 0.55) 100%);
        }

        .view-content {
            position: relative;
            z-index: 2;
            max-width: 880px;
            padding: 110px 20px;
        }

        .view-content .eyebrow {
            color: var(--gold-light);
        }

        .view-content .section-title {
            margin-inline: auto;
            font-size: clamp(62px, 9vw, 118px);
        }

        .view-content p {
            max-width: 650px;
            margin: 30px auto 0;
            color: rgba(255, 255, 255, 0.78);
            font-size: clamp(16px, 2vw, 20px);
        }

        .view-statement {
            margin-top: 36px;
            color: var(--gold-light);
            font-family: var(--serif);
            font-size: clamp(28px, 4vw, 48px);
            font-style: italic;
        }

        /* Experience */
        .experience {
            padding: 130px 0;
            background: var(--sand);
        }

        .experience-head {
            display: flex;
            align-items: end;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 58px;
        }

        .experience-head p {
            max-width: 420px;
            color: var(--muted);
        }

        .editorial-grid {
            display: grid;
            grid-template-columns: 1.15fr 0.85fr 0.85fr;
            grid-template-rows: 360px 310px;
            gap: 14px;
        }

        .gallery-card {
            position: relative;
            overflow: hidden;
            background: var(--forest);
        }

        .gallery-card:first-child {
            grid-row: 1 / 3;
        }

        .gallery-card:nth-child(4) {
            grid-column: 2 / 4;
        }

        .gallery-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(.2,.7,.2,1);
        }

        .gallery-card::after {
            position: absolute;
            inset: 0;
            content: "";
            background: linear-gradient(transparent 48%, rgba(3, 20, 21, 0.78));
        }

        .gallery-card:hover img {
            transform: scale(1.055);
        }

        .gallery-caption {
            position: absolute;
            right: 24px;
            bottom: 22px;
            left: 24px;
            z-index: 2;
            color: var(--white);
        }

        .gallery-caption small {
            display: block;
            margin-bottom: 6px;
            color: var(--gold-light);
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
        }

        .gallery-caption h3 {
            font-family: var(--serif);
            font-size: 30px;
            font-weight: 600;
            line-height: 1;
        }

        /* Features */
        .features {
            color: var(--white);
            background: var(--forest);
            border-top: 1px solid rgba(215, 168, 77, 0.35);
            border-bottom: 1px solid rgba(215, 168, 77, 0.25);
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
        }

        .feature {
            display: grid;
            min-height: 190px;
            place-items: center;
            padding: 30px 18px;
            text-align: center;
            border-right: 1px solid rgba(255, 255, 255, 0.09);
        }

        .feature:last-child {
            border-right: 0;
        }

        .feature i {
            margin-bottom: 16px;
            color: var(--gold);
            font-size: 31px;
        }

        .feature span {
            display: block;
            max-width: 130px;
            color: rgba(255, 255, 255, 0.76);
            font-size: 10px;
            font-weight: 700;
            line-height: 1.5;
            letter-spacing: 0.13em;
            text-transform: uppercase;
        }

        /* Journey */
        .journey {
            padding: 130px 0;
            background: var(--cream);
        }

        .journey-grid {
            display: grid;
            grid-template-columns: 0.85fr 1.15fr;
            align-items: center;
            gap: clamp(50px, 9vw, 120px);
        }

        .journey-copy p {
            max-width: 520px;
            margin-top: 28px;
            color: var(--muted);
        }

        .detail-list {
            display: grid;
            gap: 0;
            margin-top: 38px;
            border-top: 1px solid var(--line);
        }

        .detail-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
            padding: 17px 0;
            border-bottom: 1px solid var(--line);
        }

        .detail-item span {
            color: var(--muted);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .detail-item strong {
            color: var(--forest);
            font-family: var(--serif);
            font-size: 22px;
            font-weight: 600;
            text-align: right;
        }

        .journey-visual {
            position: relative;
            min-height: 650px;
        }

        .journey-visual img:first-child {
            position: absolute;
            top: 0;
            right: 0;
            width: 82%;
            height: 82%;
            object-fit: cover;
            box-shadow: var(--shadow);
        }

        .journey-visual img:last-child {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 48%;
            height: 44%;
            object-fit: cover;
            border: 10px solid var(--cream);
            box-shadow: var(--shadow);
        }

        /* Contact */
        .contact {
            position: relative;
            padding: 130px 0 0;
            overflow: hidden;
            color: var(--white);
            background: var(--forest-deep);
        }

        .contact::before {
            position: absolute;
            top: -260px;
            left: -180px;
            width: 600px;
            height: 600px;
            content: "";
            border: 1px solid rgba(215, 168, 77, 0.12);
            border-radius: 50%;
            box-shadow:
                0 0 0 80px rgba(215, 168, 77, 0.03),
                0 0 0 160px rgba(215, 168, 77, 0.02);
        }

        .contact-head {
            position: relative;
            display: grid;
            grid-template-columns: 1fr 0.8fr;
            gap: 70px;
            margin-bottom: 70px;
        }

        .contact .section-title {
            color: var(--white);
        }

        .contact-copy {
            align-self: end;
            color: rgba(255, 255, 255, 0.68);
        }

        .contact-copy p {
            max-width: 520px;
            margin-bottom: 26px;
        }

        .contact-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 13px;
        }

        .map-wrap {
            position: relative;
            height: 520px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .map-wrap iframe {
            width: 100%;
            height: 100%;
            border: 0;
            filter: grayscale(0.45) contrast(1.05);
        }

        .map-card {
            position: absolute;
            top: 50%;
            left: max(20px, calc((100vw - 1180px) / 2));
            width: min(370px, calc(100% - 40px));
            padding: 34px;
            color: var(--ink);
            background: var(--cream);
            box-shadow: var(--shadow);
            transform: translateY(-50%);
        }

        .map-card h3 {
            margin-bottom: 12px;
            font-family: var(--serif);
            font-size: 36px;
            font-weight: 600;
            line-height: 1;
        }

        .map-card p {
            margin-bottom: 22px;
            color: var(--muted);
            font-size: 14px;
        }

        .map-card a {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            color: var(--forest);
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        /* Footer */
        .site-footer {
            padding: 54px 0 28px;
            color: rgba(255, 255, 255, 0.68);
            background: #06191a;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.3fr 0.7fr 0.8fr;
            gap: 50px;
            align-items: start;
        }

        .footer-brand p {
            max-width: 420px;
            margin-top: 18px;
            font-size: 13px;
        }

        .footer-title {
            margin-bottom: 15px;
            color: var(--gold-light);
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 0.16em;
            text-transform: uppercase;
        }

        .footer-links {
            display: grid;
            gap: 8px;
            font-size: 13px;
        }

        .footer-links a:hover {
            color: var(--white);
        }

        .socials {
            display: flex;
            gap: 10px;
        }

        .socials a {
            display: grid;
            width: 42px;
            height: 42px;
            place-items: center;
            border: 1px solid rgba(215, 168, 77, 0.35);
            color: var(--gold-light);
            transition: 0.3s ease;
        }

        .socials a:hover {
            color: var(--forest-deep);
            background: var(--gold);
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            margin-top: 48px;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 11px;
        }

        .footer-credits {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
        }

        .footer-credits a {
            color: var(--gold-light);
        }

        /* Floating buttons */
        .floating-contact,
        .back-to-top {
            position: fixed;
            right: 20px;
            z-index: 990;
            display: grid;
            width: 52px;
            height: 52px;
            place-items: center;
            border: 0;
            border-radius: 50%;
            color: var(--white);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
            cursor: pointer;
            transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        }

        .floating-contact {
            bottom: 86px;
            background: #1877f2;
        }

        .floating-contact:hover,
        .back-to-top:hover {
            transform: translateY(-4px);
        }

        .back-to-top {
            bottom: 20px;
            color: var(--forest-deep);
            background: var(--gold);
            opacity: 0;
            visibility: hidden;
            transform: translateY(12px);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        /* Reveal */
        .reveal {
            opacity: 0;
            transform: translateY(34px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

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

        @media (max-width: 980px) {
            /*
            Prevent backdrop-filter from trapping the fixed
            mobile navigation inside the glass header.
            */
            .site-header,
            .site-header.scrolled,
            .nav-shell {
                -webkit-backdrop-filter: none;
                backdrop-filter: none;
            }

            .site-header,
            .site-header.scrolled {
                background: transparent;
                box-shadow: none;
            }

            .nav-shell {
                position: relative;
                z-index: 1002;
            }

            .desktop-nav {
                position: fixed;
                inset: 0;
                z-index: 1001;

                display: flex;
                width: 100vw;
                height: 100dvh;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 26px;
                padding: 120px 30px 60px;

                color: var(--white);
                background:
                    radial-gradient(
                        circle at top right,
                        rgba(215, 168, 77, 0.12),
                        transparent 34%
                    ),
                    rgba(6, 25, 26, 0.98);

                font-size: 17px;
                font-weight: 700;
                letter-spacing: 0.14em;
                text-align: center;
                text-transform: uppercase;

                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                transform: translateY(-20px);

                transition:
                    opacity 0.35s ease,
                    visibility 0.35s ease,
                    transform 0.35s ease;
            }

            .menu-open .desktop-nav {
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
                transform: translateY(0);
            }

            .desktop-nav a {
                display: inline-flex;
                min-height: 48px;
                align-items: center;
                justify-content: center;
                padding: 8px 20px;
            }

            .desktop-nav a:not(.nav-cta)::after {
                bottom: 2px;
            }

            .desktop-nav .nav-cta {
                min-width: 190px;
                margin-top: 12px;
                padding: 16px 28px;
                color: var(--forest-deep);
                background: var(--gold);
            }

            .menu-toggle {
                display: block;
            }

            .menu-open .nav-shell {
                border-color: transparent;
                background: transparent;
            }

            .intro-grid,
            .journey-grid,
            .contact-head {
                grid-template-columns: 1fr;
            }

            .intro-image {
                min-height: 560px;
            }

            .image-note {
                right: 20px;
            }

            .experience-head {
                display: grid;
            }

            .editorial-grid {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: 420px 300px 300px;
            }

            .gallery-card:first-child {
                grid-column: 1 / 3;
                grid-row: auto;
            }

            .gallery-card:nth-child(4) {
                grid-column: 1 / 3;
            }

            .feature-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .feature:nth-child(3) {
                border-right: 0;
            }

            .journey-grid {
                gap: 70px;
            }

            .journey-visual {
                min-height: 600px;
            }

            .contact-head {
                gap: 28px;
            }

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

            .footer-brand {
                grid-column: 1 / 3;
            }
        }

        @media (max-width: 680px) {
            .container {
                width: min(100% - 30px, 1180px);
            }

            .site-header {
                padding: 12px 0;
            }

            .nav-shell {
                min-height: 62px;
                padding: 0 16px;
            }

            .brand-main {
                font-size: 20px;
            }

            .hero-content {
                padding: 160px 0 90px;
            }

            .hero h1 {
                font-size: clamp(70px, 22vw, 104px);
                line-height: 0.8;
            }

            .hero h1 span {
                margin-left: 0;
            }

            .hero-copy {
                max-width: 90%;
            }

            .hero-actions {
                align-items: stretch;
                flex-direction: column;
                max-width: 270px;
            }

            .scroll-cue {
                display: none;
            }

            .intro,
            .experience,
            .journey,
            .contact {
                padding-top: 92px;
            }

            .intro {
                padding-bottom: 92px;
            }

            .intro-image {
                min-height: 430px;
            }

            .image-note {
                position: relative;
                right: auto;
                bottom: auto;
                max-width: none;
            }

            .view-section {
                min-height: 670px;
            }

            .editorial-grid {
                display: grid;
                grid-template-columns: 1fr;
                grid-template-rows: repeat(4, 360px);
            }

            .gallery-card:first-child,
            .gallery-card:nth-child(4) {
                grid-column: auto;
            }

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

            .feature,
            .feature:nth-child(3) {
                border-right: 1px solid rgba(255, 255, 255, 0.09);
                border-bottom: 1px solid rgba(255, 255, 255, 0.09);
            }

            .feature:nth-child(even) {
                border-right: 0;
            }

            .feature:last-child {
                grid-column: 1 / 3;
                border-right: 0;
            }

            .journey-visual {
                min-height: 480px;
            }

            .journey-visual img:first-child {
                width: 92%;
                height: 80%;
            }

            .journey-visual img:last-child {
                width: 57%;
                height: 40%;
                border-width: 7px;
            }

            .detail-item {
                align-items: flex-start;
                flex-direction: column;
                gap: 4px;
            }

            .detail-item strong {
                text-align: left;
            }

            .map-wrap {
                height: 690px;
            }

            .map-card {
                top: 20px;
                transform: none;
            }

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

            .footer-brand {
                grid-column: auto;
            }

            .footer-bottom {
                align-items: flex-start;
                flex-direction: column;
            }

            .floating-contact,
            .back-to-top {
                right: 14px;
                width: 48px;
                height: 48px;
            }

            .floating-contact {
                bottom: 76px;
            }

            .back-to-top {
                bottom: 16px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }

            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
    

/* =========================================================
   Highland Paradise 2026 polish
   Real logo, cleaner navigation and refined brand accents
   ========================================================= */

.site-header {
    padding: 18px 0;
    background: transparent;
    transition:
        padding 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.site-header.scrolled {
    padding: 7px 0;
    background: rgba(8, 31, 32, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.18);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.nav-shell {
    min-height: 82px;
    padding: 0 8px;
    border: 0;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    transition: min-height 0.35s ease, padding 0.35s ease;
}

.site-header.scrolled .nav-shell {
    min-height: 66px;
}

.brand-logo {
    display: grid;
    width: 142px;
    height: 142px;
    flex: 0 0 auto;
    place-items: center;
    padding: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 50%;
    background: rgba(251, 248, 241, 0.96);
    box-shadow: 0 12px 38px rgba(0, 0, 0, 0.18);
    transform: translateY(24px);
    transition:
        width 0.35s ease,
        height 0.35s ease,
        padding 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-header.scrolled .brand-logo {
    width: 82px;
    height: 82px;
    padding: 5px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transform: translateY(8px);
}

.desktop-nav {
    gap: clamp(22px, 2.8vw, 42px);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.35);
}

.desktop-nav a:not(.nav-cta)::after {
    background: var(--terracotta);
}

.nav-cta {
    border: 1px solid rgba(255, 255, 255, 0.32);
    color: var(--white);
    background: rgba(183, 68, 47, 0.9);
    box-shadow: 0 10px 28px rgba(74, 20, 12, 0.2);
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.nav-cta:hover {
    border-color: var(--terracotta);
    background: var(--terracotta);
    transform: translateY(-2px);
}

.hero-media {
    background:
        linear-gradient(90deg, rgba(3, 17, 19, 0.91) 0%, rgba(3, 17, 19, 0.46) 48%, rgba(3, 17, 19, 0.13) 100%),
        linear-gradient(0deg, rgba(3, 17, 19, 0.76) 0%, transparent 52%),
        url("https://www.samuiunlocked.com/asset/uploads/businesslistings/1460/gallery/gallery-1783669564-7624.webp") center / cover no-repeat;
}

.hero-brand-mark {
    display: none;
    width: 148px;
    height: 148px;
    margin-bottom: 24px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    background: rgba(251, 248, 241, 0.93);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.hero-brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-kicker,
.view-content .eyebrow {
    color: var(--gold-light);
}

.intro-copy .eyebrow,
.experience-head .eyebrow,
.journey-copy .eyebrow,
.contact-head .eyebrow {
    color: var(--terracotta);
}

.signature-line::before {
    background: var(--terracotta);
}

.feature i {
    color: var(--gold-light);
}

.footer-logo {
    display: grid;
    width: 150px;
    height: 150px;
    place-items: center;
    padding: 9px;
    border-radius: 50%;
    background: rgba(251, 248, 241, 0.94);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
    transition: transform 0.35s ease, background 0.35s ease;
}

.footer-logo:hover {
    background: var(--white);
    transform: translateY(-4px);
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-brand p {
    margin-top: 26px;
}

@media (max-width: 980px) {
    .site-header,
    .site-header.scrolled {
        padding: 10px 0;
        background: rgba(8, 31, 32, 0.74);
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        box-shadow: none;
        -webkit-backdrop-filter: blur(14px);
        backdrop-filter: blur(14px);
    }

    .nav-shell,
    .site-header.scrolled .nav-shell {
        min-height: 70px;
        padding: 0 4px;
    }

    .brand-logo,
    .site-header.scrolled .brand-logo {
        width: 82px;
        height: 82px;
        padding: 5px;
        transform: translateY(8px);
    }

    .desktop-nav {
        text-shadow: none;
    }

    .desktop-nav .nav-cta {
        color: var(--white);
        background: var(--terracotta);
    }
}

@media (max-width: 680px) {
    .site-header,
    .site-header.scrolled {
        padding: 7px 0 !important;
    }

    .nav-shell,
    .site-header.scrolled .nav-shell {
        min-height: 62px;
    }

    .brand-logo,
    .site-header.scrolled .brand-logo {
        width: 80px;
        height: 80px;
        padding: 4px !important;
        
        
    }

    .hero-content {
        padding-top: 80px;
    }

    

    .footer-logo {
        width: 128px;
        height: 128px;
    }
}

/* =========================================================
   Highland Paradise — cinematic image and motion pass
   ========================================================= */

/* Hero depth:
   The hero image is now supplied inline in the HTML, so the overlays live
   on pseudo-elements and remain active regardless of the selected photo. */
.hero::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(3, 17, 19, 0.92) 0%,
            rgba(3, 17, 19, 0.72) 28%,
            rgba(3, 17, 19, 0.35) 58%,
            rgba(3, 17, 19, 0.10) 82%,
            rgba(3, 17, 19, 0.05) 100%
        ),
        linear-gradient(
            0deg,
            rgba(3, 17, 19, 0.88) 0%,
            rgba(3, 17, 19, 0.26) 36%,
            transparent 68%
        ),
        radial-gradient(
            circle at 74% 36%,
            rgba(237, 207, 143, 0.12),
            transparent 30%
        );
}

.hero::after {
    z-index: 1;
    height: 180px;
    background:
        linear-gradient(
            to top,
            rgba(251, 248, 241, 0.26),
            rgba(251, 248, 241, 0.04) 42%,
            transparent
        );
    opacity: 1;
}

.hero-media {
    filter: saturate(1.06) contrast(1.03);
    animation: hero-settle 1.6s cubic-bezier(.2,.7,.2,1) both;
}

.hero-content {
    z-index: 3;
}

.hero-kicker {
    opacity: 0;
    animation: hero-rise 0.8s 0.18s cubic-bezier(.2,.7,.2,1) forwards;
}

.hero h1 {
    opacity: 0;
    animation: hero-rise 1s 0.28s cubic-bezier(.2,.7,.2,1) forwards;
    text-shadow: 0 8px 40px rgba(0, 0, 0, 0.28);
}

.hero-copy {
    opacity: 0;
    animation: hero-rise 0.9s 0.46s cubic-bezier(.2,.7,.2,1) forwards;
}

.hero-actions {
    opacity: 0;
    animation: hero-rise 0.9s 0.6s cubic-bezier(.2,.7,.2,1) forwards;
}

.scroll-cue {
    opacity: 0;
    animation:
        hero-rise 0.8s 0.9s cubic-bezier(.2,.7,.2,1) forwards,
        scroll-cue-float 2.6s 1.8s ease-in-out infinite;
}

.scroll-cue::after {
    transform-origin: top;
    animation: scroll-line-pulse 2.2s ease-in-out infinite;
}

@keyframes hero-settle {
    from {
        opacity: 0;
        transform: scale(1.12);
    }
    to {
        opacity: 1;
        transform: scale(1.03);
    }
}

@keyframes hero-rise {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scroll-cue-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(7px); }
}

@keyframes scroll-line-pulse {
    0%, 100% {
        opacity: 0.42;
        transform: scaleY(0.72);
    }
    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* Buttons gain a subtle travelling highlight rather than a loud effect. */
.button {
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(7, 26, 27, 0.12);
}

.button::before {
    position: absolute;
    top: -60%;
    bottom: -60%;
    left: -45%;
    width: 30%;
    content: "";
    pointer-events: none;
    background: rgba(255, 255, 255, 0.32);
    transform: skewX(-22deg);
    transition: left 0.65s cubic-bezier(.2,.7,.2,1);
}

.button:hover::before {
    left: 125%;
}

.button i {
    transition: transform 0.3s ease;
}

.button:hover i {
    transform: translateX(4px);
}

/* Image movement */
.intro-image-wrap,
.journey-visual,
.gallery-card {
    isolation: isolate;
}

.intro-image,
.journey-visual img {
    transition:
        transform 0.9s cubic-bezier(.2,.7,.2,1),
        filter 0.7s ease;
}

.intro-image-wrap:hover .intro-image {
    transform: scale(1.025);
    filter: saturate(1.05);
}

.image-note {
    animation: image-note-drift 5s ease-in-out infinite;
}

@keyframes image-note-drift {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.view-bg {
    transform: scale(1.04);
    transition: transform 8s cubic-bezier(.2,.7,.2,1);
}

.view-section:hover .view-bg {
    transform: scale(1.09);
}

.view-bg::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(
            90deg,
            rgba(3, 17, 19, 0.24),
            transparent 36%,
            rgba(215, 168, 77, 0.08) 72%,
            rgba(3, 17, 19, 0.26)
        );
}

.view-statement {
    text-shadow: 0 5px 30px rgba(0, 0, 0, 0.35);
}

/* Gallery cards */
.gallery-card {
    box-shadow: 0 20px 55px rgba(7, 26, 27, 0.10);
    transition:
        transform 0.45s cubic-bezier(.2,.7,.2,1),
        box-shadow 0.45s ease;
}

.gallery-card:hover {
    z-index: 2;
    transform: translateY(-7px);
    box-shadow: 0 28px 70px rgba(7, 26, 27, 0.20);
}

.gallery-card::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0);
    transition: border-color 0.4s ease, inset 0.4s ease;
}

.gallery-card:hover::before {
    inset: 10px;
    border-color: rgba(255, 255, 255, 0.38);
}

.gallery-caption {
    transform: translateY(8px);
    transition: transform 0.45s cubic-bezier(.2,.7,.2,1);
}

.gallery-card:hover .gallery-caption {
    transform: translateY(0);
}

/* The second gallery contains twelve cards, so give it its own editorial
   mosaic rather than inheriting the four-card layout. */
#gallery {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 92% 8%, rgba(215, 168, 77, 0.12), transparent 24%),
        var(--cream);
}

#gallery::before {
    position: absolute;
    top: 130px;
    right: -170px;
    width: 430px;
    height: 430px;
    content: "";
    border: 1px solid rgba(16, 47, 48, 0.08);
    border-radius: 50%;
    box-shadow:
        0 0 0 70px rgba(16, 47, 48, 0.018),
        0 0 0 140px rgba(16, 47, 48, 0.012);
}

#gallery .container {
    position: relative;
    z-index: 1;
}

#gallery .editorial-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(4, 260px);
    gap: 16px;
}

#gallery .gallery-card:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

#gallery .gallery-card:nth-child(2),
#gallery .gallery-card:nth-child(7),
#gallery .gallery-card:nth-child(10) {
    grid-row: span 2;
}

#gallery .gallery-card:nth-child(4) {
    grid-column: auto;
}

#gallery .gallery-card:nth-child(6),
#gallery .gallery-card:nth-child(11) {
    grid-column: span 2;
}

#gallery .gallery-card:nth-child(9) {
    grid-column: span 2;
    grid-row: span 2;
}

/* Feature strip */
.feature {
    position: relative;
    overflow: hidden;
    transition: background 0.35s ease;
}

.feature::before {
    position: absolute;
    inset: auto 0 0;
    height: 3px;
    content: "";
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s ease;
}

.feature:hover {
    background: rgba(255, 255, 255, 0.045);
}

.feature:hover::before {
    transform: scaleX(1);
}

.feature i {
    transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
}

.feature:hover i {
    transform: translateY(-5px) scale(1.08);
}

/* Journey composition */
.journey-visual img:first-child {
    transition:
        transform 0.8s cubic-bezier(.2,.7,.2,1),
        box-shadow 0.5s ease;
}

.journey-visual img:last-child {
    transition:
        transform 0.8s cubic-bezier(.2,.7,.2,1),
        box-shadow 0.5s ease;
}

.journey-visual:hover img:first-child {
    transform: translateY(-8px);
    box-shadow: 0 34px 85px rgba(7, 26, 27, 0.22);
}

.journey-visual:hover img:last-child {
    transform: translate(8px, -5px) rotate(-1.2deg);
    box-shadow: 0 30px 70px rgba(7, 26, 27, 0.24);
}

/* More dimensional reveal animation */
.reveal {
    opacity: 0;
    filter: blur(7px);
    transform: translateY(42px) scale(0.985);
    transition:
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(.2,.7,.2,1),
        filter 0.9s ease;
}

.reveal.visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
}

/* Gentle staggering where several reveal items sit together. */
.editorial-grid .reveal:nth-child(2),
.feature-grid .feature:nth-child(2) {
    transition-delay: 0.06s;
}

.editorial-grid .reveal:nth-child(3),
.feature-grid .feature:nth-child(3) {
    transition-delay: 0.12s;
}

.editorial-grid .reveal:nth-child(4),
.feature-grid .feature:nth-child(4) {
    transition-delay: 0.18s;
}

.editorial-grid .reveal:nth-child(5),
.feature-grid .feature:nth-child(5) {
    transition-delay: 0.24s;
}

#gallery .editorial-grid .reveal:nth-child(n+6) {
    transition-delay: 0.08s;
}

/* Floating controls */
.floating-contact {
    animation: contact-breathe 3.2s ease-in-out infinite;
}

@keyframes contact-breathe {
    0%, 100% {
        box-shadow:
            0 12px 30px rgba(0, 0, 0, 0.25),
            0 0 0 0 rgba(24, 119, 242, 0.26);
    }
    50% {
        box-shadow:
            0 16px 36px rgba(0, 0, 0, 0.30),
            0 0 0 10px rgba(24, 119, 242, 0);
    }
}

/* Tablet */
@media (max-width: 1100px) {
    #gallery .editorial-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: repeat(6, 260px);
    }

    #gallery .gallery-card:first-child,
    #gallery .gallery-card:nth-child(9) {
        grid-column: span 2;
        grid-row: span 2;
    }

    #gallery .gallery-card:nth-child(6),
    #gallery .gallery-card:nth-child(11) {
        grid-column: span 1;
    }
}

/* Mobile */
@media (max-width: 680px) {
    .hero::before {
        background:
            linear-gradient(
                90deg,
                rgba(3, 17, 19, 0.86) 0%,
                rgba(3, 17, 19, 0.56) 58%,
                rgba(3, 17, 19, 0.30) 100%
            ),
            linear-gradient(
                0deg,
                rgba(3, 17, 19, 0.92) 0%,
                rgba(3, 17, 19, 0.32) 48%,
                transparent 78%
            );
    }

    .hero-media {
        background-position: 58% center !important;
    }

    .image-note {
        animation: none;
    }

    #gallery .editorial-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        grid-auto-rows: 360px;
    }

    #gallery .gallery-card,
    #gallery .gallery-card:first-child,
    #gallery .gallery-card:nth-child(2),
    #gallery .gallery-card:nth-child(6),
    #gallery .gallery-card:nth-child(7),
    #gallery .gallery-card:nth-child(9),
    #gallery .gallery-card:nth-child(10),
    #gallery .gallery-card:nth-child(11) {
        grid-column: auto;
        grid-row: auto;
    }

    .gallery-card:hover {
        transform: none;
    }

    .journey-visual:hover img:first-child,
    .journey-visual:hover img:last-child {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-media,
    .hero-kicker,
    .hero h1,
    .hero-copy,
    .hero-actions,
    .scroll-cue,
    .scroll-cue::after,
    .image-note,
    .floating-contact {
        animation: none !important;
    }

    .hero-kicker,
    .hero h1,
    .hero-copy,
    .hero-actions,
    .scroll-cue {
        opacity: 1;
        transform: none;
    }

    .reveal {
        opacity: 1;
        filter: none;
        transform: none;
    }
}

.hero-media {
    filter: saturate(1.06) contrast(1.03);
    transform: scale(1.05);
    transform-origin: 62% 48%;
    will-change: transform;
    animation: hero-ken-burns 18s ease-in-out infinite alternate;
}

@keyframes hero-ken-burns {
    0% {
        transform: scale(1.05) translate3d(0, 0, 0);
    }

    100% {
        transform: scale(1.16) translate3d(-2.5%, -1.5%, 0);
    }
}
@media (max-width: 680px) {
    .hero-media {
        transform-origin: 68% center;
        animation-duration: 16s;
    }

    @keyframes hero-ken-burns {
        0% {
            transform: scale(1.08) translate3d(0, 0, 0);
        }

        100% {
            transform: scale(1.18) translate3d(-3%, -1%, 0);
        }
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-media {
        animation: none !important;
        transform: scale(1.05);
    }
}

/* =========================================================
   Mobile hero correction
   ========================================================= */

@media (max-width: 680px) {

    /* Keep only the header logo */
    .hero-brand-mark {
        display: none !important;
    }

    .hero {
        min-height: 100svh;
        align-items: end;
    }

    .hero-content {
        max-width: 100%;
        padding: 150px 0 74px;
    }

    .hero-kicker {
        margin-bottom: 18px;
        font-size: 10px;
        letter-spacing: 0.19em;
    }

    .hero h1 {
        max-width: 100%;
        font-size: clamp(64px, 19vw, 92px);
        line-height: 0.84;
    }

    .hero h1 span {
        margin-left: 0;
    }

    .hero-copy {
        max-width: 92%;
        margin-top: 26px;
        font-size: 16px;
        line-height: 1.65;
    }

    .hero-actions {
        max-width: 260px;
        margin-top: 28px;
    }

    /* Less aggressive mobile overlay */
    .hero::before {
        background:
            linear-gradient(
                90deg,
                rgba(3, 17, 19, 0.78) 0%,
                rgba(3, 17, 19, 0.48) 58%,
                rgba(3, 17, 19, 0.20) 100%
            ),
            linear-gradient(
                0deg,
                rgba(3, 17, 19, 0.88) 0%,
                rgba(3, 17, 19, 0.30) 45%,
                transparent 76%
            );
    }

    /* Remove the large milky fade */
    .hero::after {
        height: 85px;
        background: linear-gradient(
            to top,
            rgba(251, 248, 241, 0.12),
            transparent
        );
    }

    /* Mobile Ken Burns framing */
    .hero-media {
        inset: -4%;
        background-position: 62% center !important;
        transform-origin: 62% center;
        animation: hero-ken-burns-mobile 18s ease-in-out infinite alternate;
    }

    @keyframes hero-ken-burns-mobile {
        0% {
            transform: scale(1.06) translate3d(0, 0, 0);
        }

        100% {
            transform: scale(1.15) translate3d(-2%, -1%, 0);
        }
    }
}