
        /* ═══════════════════════════════════════════
           PALETTE: Warm Ivory + Deep Navy + Antique Gold
           Professional luxury — easy to read
        ═══════════════════════════════════════════ */
        :root {
            --gold:       #b8923a;
            --gold-light: #d4aa5a;
            --gold-pale:  #f0e0b0;
            --navy:       #1a2a3a;
            --navy-2:     #223040;
            --navy-3:     #2c3e50;
            --cream:      #f7f3ed;
            --cream-2:    #201501;
            --cream-3:    #e6ddd0;
            --white:      #ffffff;
            --text-dark:  #1c1a17;
            --text-body:  #3d3530;
            --text-mid:   #6b5f52;
            --text-light: #9a8e80;
            --border:     rgba(184,146,58,0.2);
            --shadow:     0 4px 24px rgba(26,42,58,0.10);
            --shadow-lg:  0 12px 48px rgba(26,42,58,0.14);
        }

        * { margin:0; padding:0; box-sizing:border-box; }
        html { scroll-behavior:smooth; }

        body {
            font-family:'Noto Sans JP','Montserrat',sans-serif;
            background:var(--cream);
            color:var(--text-body);
            overflow-x:hidden;
        }

        /* ─── LANGUAGE BAR ─── */
        .lang-bar {
            position:fixed; top:0; left:0; right:0;
            z-index:300;
            background:var(--navy);
            padding:7px 40px;
            display:flex; justify-content:flex-end; align-items:center; gap:4px;
        }
        .lang-btn {
            font-family:'Montserrat',sans-serif;
            font-size:0.62rem; font-weight:500; letter-spacing:0.1em;
            text-transform:uppercase;
            padding:4px 11px;
            border:1px solid rgba(255,255,255,0.18); border-radius:2px;
            background:transparent; color:rgba(255,255,255,0.5);
            cursor:pointer; transition:all 0.22s;
        }
        .lang-btn:hover, .lang-btn.active {
            background:var(--gold); border-color:var(--gold); color:#fff;
        }

        /* ─── NAVIGATION ─── */
        nav {
            position:fixed; top:34px; left:0; right:0; z-index:200;
            padding:16px 40px;
            display:flex; align-items:center; justify-content:space-between;
            transition:all 0.4s ease;
            background:rgba(247, 243, 237, 0.98);
        }
        nav.scrolled {
            background:rgba(247,243,237,0.98);
            padding:11px 40px;
            border-bottom:1px solid var(--border);
            box-shadow:0 2px 18px rgba(26,42,58,0.08);
            backdrop-filter:blur(14px);
        }
        .nav-logo { display:flex; flex-direction:column; line-height:1; text-decoration:none; }
        .nav-logo .logo-main {
            font-family:'Cormorant Garamond',serif; font-size:1.5rem; font-weight:400;
            color:var(--navy); letter-spacing:0.04em;
        }
        .nav-logo .logo-sub {
            font-family:'Montserrat',sans-serif; font-size:0.57rem; font-weight:400;
            color:var(--gold); letter-spacing:0.32em; text-transform:uppercase; margin-top:3px;
        }
        .nav-links { display:flex; gap:30px; list-style:none; align-items:center; }
        .nav-links a {
            font-family:'Montserrat',sans-serif; font-size:0.68rem; font-weight:500;
            letter-spacing:0.15em; text-transform:uppercase;
            color:var(--text-mid); text-decoration:none; transition:color 0.3s;
            position:relative;
        }
        .nav-links a:not(.nav-book-btn)::after {
            content:''; position:absolute; bottom:-3px; left:0; right:0;
            height:1px; background:var(--gold);
            transform:scaleX(0); transition:transform 0.3s;
        }
        .nav-links a:not(.nav-book-btn):hover { color:var(--navy); }
        .nav-links a:not(.nav-book-btn):hover::after { transform:scaleX(1); }
        .nav-book-btn {
            color:#fff !important; background:var(--navy);
            padding:9px 20px; border-radius:2px;
            transition:background 0.3s, transform 0.2s !important;
        }
        .nav-book-btn::after { display:none !important; }
        .nav-book-btn:hover { background:var(--gold) !important; transform:translateY(-1px); }
        .menu-toggle {
            display:none; flex-direction:column; gap:5px; cursor:pointer; padding:4px;
        }
        .menu-toggle span { display:block; width:22px; height:1.5px; background:var(--navy); transition:all 0.3s; }

        /* ─── BUTTONS ─── */
        .btn-primary {
            font-family:'Montserrat',sans-serif; font-size:0.7rem; font-weight:600;
            letter-spacing:0.22em; text-transform:uppercase;
            color:#fff; background:var(--gold);
            padding:14px 32px; text-decoration:none; border-radius:2px;
            border:1px solid var(--gold); transition:all 0.3s; display:inline-block;
        }
        .btn-primary:hover {
            background:var(--gold-light); border-color:var(--gold-light);
            transform:translateY(-2px); box-shadow:0 8px 28px rgba(184,146,58,0.3);
        }
        .btn-outline {
            font-family:'Montserrat',sans-serif; font-size:0.7rem; font-weight:500;
            letter-spacing:0.22em; text-transform:uppercase;
            color:#fff; background:transparent;
            padding:14px 32px; text-decoration:none; border-radius:2px;
            border:1px solid rgba(255,255,255,0.45); transition:all 0.3s; display:inline-block;
        }
        .btn-outline:hover {
            background:rgba(255,255,255,0.12); border-color:rgba(255,255,255,0.8);
            transform:translateY(-2px);
        }
        .btn-navy {
            font-family:'Montserrat',sans-serif; font-size:0.7rem; font-weight:600;
            letter-spacing:0.22em; text-transform:uppercase;
            color:#fff; background:var(--navy);
            padding:14px 32px; text-decoration:none; border-radius:2px;
            border:1px solid var(--navy); transition:all 0.3s; display:inline-block;
        }
        .btn-navy:hover { background:var(--navy-3); transform:translateY(-2px); box-shadow:var(--shadow-lg); }

        /* ─── HERO ─── */
        .hero {
            position:relative; height:100vh; min-height:680px;
            display:flex; align-items:center; justify-content:center;
            overflow:hidden; margin-top:34px;
        }
        .hero-bg {
            position:absolute; inset:0;
            background:
                linear-gradient(155deg,rgba(26,42,58,0.75) 0%,rgba(26,42,58,0.30) 55%,rgba(26,42,58,0.60) 100%),
                url('https://images.unsplash.com/photo-1540959733332-eab4deabeeaf?w=1600&q=80') center/cover no-repeat;
            animation:heroZoom 22s ease-in-out infinite alternate;
        }
        @keyframes heroZoom { from{transform:scale(1.0)} to{transform:scale(1.06)} }
        .hero-overlay {
            position:absolute; inset:0;
            background:linear-gradient(to bottom,transparent 30%,rgba(247,243,237,0.12) 72%,rgba(247,243,237,0.55) 100%);
        }
        .hero-content {
            position:relative; z-index:2; text-align:center; padding:0 24px;
            animation:fadeUp 1.2s ease both;
        }
        @keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
        .hero-eyebrow {
            font-family:'Montserrat',sans-serif; font-size:0.66rem; font-weight:400;
            letter-spacing:0.5em; text-transform:uppercase;
            color:var(--gold-pale); margin-bottom:16px;
            animation:fadeUp 1.2s 0.2s ease both;
        }
        .hero-title {
            font-family:'Cormorant Garamond',serif;
            font-size:clamp(3rem,8vw,7rem); font-weight:300; line-height:1.0;
            color:#fff; margin-bottom:8px;
            text-shadow:0 2px 24px rgba(0,0,0,0.28);
            animation:fadeUp 1.2s 0.3s ease both;
        }
        .hero-title em { font-style:italic; color:var(--gold-pale); }
        .hero-subtitle {
            font-size:0.95rem; font-weight:300; letter-spacing:0.25em;
            color:rgba(255,255,255,0.78); margin-bottom:26px;
            animation:fadeUp 1.2s 0.4s ease both;
        }
        .hero-divider {
            width:48px; height:1px;
            background:linear-gradient(to right,transparent,var(--gold-light),transparent);
            margin:0 auto 26px; animation:fadeUp 1.2s 0.5s ease both;
        }
        .hero-desc {
            font-family:'Montserrat',sans-serif; font-size:0.87rem; font-weight:300;
            letter-spacing:0.05em; color:rgba(255,255,255,0.82);
            max-width:500px; margin:0 auto 38px; line-height:1.92;
            animation:fadeUp 1.2s 0.6s ease both;
        }
        .hero-cta {
            display:flex; gap:14px; justify-content:center; flex-wrap:wrap;
            animation:fadeUp 1.2s 0.7s ease both;
        }
        .hero-scroll {
            position:absolute; bottom:34px; left:50%; transform:translateX(-50%);
            display:flex; flex-direction:column; align-items:center; gap:8px; z-index:2;
            animation:fadeUp 1.2s 1s ease both;
        }
        .hero-scroll span {
            font-family:'Montserrat',sans-serif; font-size:0.57rem;
            letter-spacing:0.3em; text-transform:uppercase; color:rgba(255,255,255,0.45);
        }
        .scroll-line {
            width:1px; height:42px;
            background:linear-gradient(to bottom,var(--gold-light),transparent);
            animation:sPulse 2s ease-in-out infinite;
        }
        @keyframes sPulse { 0%,100%{opacity:0.4} 50%{opacity:1} }

        /* ─── SECTION COMMONS ─── */
        .section-label {
            font-family:'Montserrat',sans-serif; font-size:0.6rem; font-weight:500;
            letter-spacing:0.42em; text-transform:uppercase;
            color:var(--gold); margin-bottom:13px; display:block;
        }
        .section-title {
            font-family:'Cormorant Garamond',serif;
            font-size:clamp(1.9rem,4vw,2.9rem); font-weight:300;
            color:var(--navy); line-height:1.18; margin-bottom:17px;
        }
        .section-title em { font-style:italic; color:var(--gold); }
        .section-body {
            font-size:0.9rem; font-weight:300; line-height:1.95;
            color:var(--text-body); max-width:540px;
        }
        .gold-line { width:36px; height:2px; background:var(--gold); margin-bottom:20px; }

        /* ─── ABOUT ─── */
        .about { background:var(--white); padding:110px 40px; }
        .about-inner {
            max-width:1140px; margin:0 auto;
            display:grid; grid-template-columns:1fr 1fr; gap:76px; align-items:center;
        }
        .about-image-wrap { position:relative; }
        .about-image-ph {
            width:100%; aspect-ratio:4/5; border-radius:3px;
            overflow:hidden; position:relative; background:var(--cream-2);
        }
        .about-image-ph::before {
            content:''; position:absolute; inset:0;
            background:url('https://s3.ap-northeast-1.amazonaws.com/www.maisonduskytree.com/gallary/double-bedroom.jpg?w=800&q=80') center/cover;
        }
        .about-accent {
            position:absolute; bottom:-26px; right:-26px; width:50%; aspect-ratio:1;
            border-radius:3px; overflow:hidden; border:5px solid var(--white);
            box-shadow:var(--shadow-lg); background:var(--cream-3);
        }
        .about-accent::before {
            content:''; position:absolute; inset:0;
            background:url('https://s3.ap-northeast-1.amazonaws.com/www.maisonduskytree.com/gallary/skytree.jpg?w=600&q=80') center/cover;
        }
        .about-badge {
            position:absolute; top:-14px; left:-14px; width:78px; height:78px;
            background:var(--navy); border-radius:50%;
            display:flex; flex-direction:column; align-items:center; justify-content:center;
            box-shadow:var(--shadow);
        }
        .about-badge span:first-child {
            font-family:'Cormorant Garamond',serif; font-size:1.5rem; font-weight:400;
            color:var(--gold-light); line-height:1;
        }
        .about-badge span:last-child {
            font-family:'Montserrat',sans-serif; font-size:0.48rem; font-weight:400;
            letter-spacing:0.08em; color:rgba(255,255,255,0.55); text-align:center;
        }
        .about-stats { display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-top:40px; }
        .stat-item { border-left:2px solid var(--gold); padding-left:16px; }
        .stat-number {
            font-family:'Cormorant Garamond',serif; font-size:2.1rem; font-weight:300;
            color:var(--navy); line-height:1;
        }
        .stat-label { font-family:'Montserrat',sans-serif; font-size:0.63rem; font-weight:400; letter-spacing:0.1em; color:var(--text-mid); margin-top:5px; line-height:1.5; }

        /* ─── AMENITIES ─── */
        .amenities-section { background:var(--cream); padding:96px 40px; }
        .amenities-wrap { max-width:1140px; margin:0 auto; }
        .amenities-header { text-align:center; margin-bottom:56px; }
        .amenities-header .gold-line { margin:0 auto 20px; }
        .amenities-header .section-body { margin:0 auto; text-align:center; }
        .amenities-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
        .amenity-card {
            background:var(--white); border:1px solid var(--border); border-radius:4px;
            padding:36px 28px; text-align:center; transition:all 0.3s; position:relative; overflow:hidden;
        }
        .amenity-card::after {
            content:''; position:absolute; bottom:0; left:0; right:0; height:3px;
            background:linear-gradient(to right,var(--gold),var(--gold-light));
            transform:scaleX(0); transition:transform 0.3s;
        }
        .amenity-card:hover { border-color:var(--gold); box-shadow:var(--shadow); transform:translateY(-4px); }
        .amenity-card:hover::after { transform:scaleX(1); }
        .amenity-icon { font-size:2rem; margin-bottom:16px; display:block; }
        .amenity-name {
            font-family:'Cormorant Garamond',serif; font-size:1.22rem; font-weight:400;
            color:var(--navy); margin-bottom:9px;
        }
        .amenity-desc { font-size:0.81rem; font-weight:300; color:var(--text-mid); line-height:1.75; }

        /* ─── GALLERY ─── */
        .gallery-section { background:var(--navy); padding:96px 0; }
        .gallery-header { text-align:center; padding:0 40px; margin-bottom:52px; }
        .gallery-header .gold-line { margin:0 auto 20px; }
        .gallery-header .section-title { color:var(--white); }
        .gallery-grid {
            display:grid; grid-template-columns:2fr 1fr 1fr;
            grid-template-rows:265px 265px; gap:4px;
            max-width:1380px; margin:0 auto;
        }
        .g-item { overflow:hidden; position:relative; background:var(--navy-3); }
        .g-item:first-child { grid-row:span 2; }
        .g-ph {
            width:100%; height:100%; position:absolute; inset:0;
            background-size:cover; background-position:center;
            transition:transform 0.6s ease;
        }
        .g-ph-1{background-image:url('https://s3.ap-northeast-1.amazonaws.com/www.maisonduskytree.com/gallary/room-living.jpg?w=900&q=80')}
        .g-ph-2{background-image:url('https://s3.ap-northeast-1.amazonaws.com/www.maisonduskytree.com/gallary/kitchen.jpg?w=600&q=80')}
        .g-ph-3{background-image:url('https://s3.ap-northeast-1.amazonaws.com/www.maisonduskytree.com/gallary/bedroom.jpg?w=600&q=80')}
        .g-ph-4{background-image:url('https://s3.ap-northeast-1.amazonaws.com/www.maisonduskytree.com/gallary/bathroom.jpg?w=600&q=80')}
        .g-ph-5{background-image:url('https://s3.ap-northeast-1.amazonaws.com/www.maisonduskytree.com/gallary/skytree.jpg?w=600&q=80')}
        .g-item:hover .g-ph { transform:scale(1.06); }
        .g-overlay {
            position:absolute; inset:0; background:rgba(26,42,58,0);
            display:flex; align-items:flex-end; padding:18px; transition:background 0.3s;
        }
        .g-item:hover .g-overlay { background:rgba(26,42,58,0.35); }
        .g-label {
            font-family:'Montserrat',sans-serif; font-size:0.66rem;
            letter-spacing:0.24em; text-transform:uppercase; color:#fff;
            opacity:0; transform:translateY(5px); transition:all 0.3s;
        }
        .g-item:hover .g-label { opacity:1; transform:translateY(0); }
        .gallery-footer { text-align:center; margin-top:44px; padding:0 40px; }

        /* ─── ACCESS ─── */
        .access-section {  padding:96px 40px; }
        .access-inner { max-width:1140px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:66px; align-items:start; }
        .access-map { border-radius:4px; overflow:hidden; box-shadow:var(--shadow-lg); aspect-ratio:1; }
        .access-map iframe { width:100%; height:100%; border:none; display:block; }
        .access-cards { display:flex; flex-direction:column; gap:16px; }
        .access-card {
            background:var(--white); border:1px solid var(--border); border-radius:4px;
            padding:22px 26px; transition:border-color 0.3s,box-shadow 0.3s;
        }
        .access-card:hover { border-color:var(--gold); box-shadow:var(--shadow); }
        .access-card-hd { display:flex; align-items:center; gap:9px; margin-bottom:12px; }
        .acc-icon { font-size:1.15rem; }
        .acc-title {
            font-family:'Montserrat',sans-serif; font-size:0.65rem; font-weight:600;
            letter-spacing:0.2em; text-transform:uppercase; color:var(--gold);
        }
        .access-card ul { list-style:none; display:flex; flex-direction:column; gap:6px; }
        .access-card ul li {
            font-size:0.84rem; font-weight:300; color:var(--text-body);
            padding-left:14px; position:relative; line-height:1.6;
        }
        .access-card ul li::before { content:'—'; position:absolute; left:0; color:var(--gold); font-size:0.68rem; }
        .access-address { font-size:0.87rem; font-weight:300; color:var(--text-body); line-height:1.85; }

        /* ─── BOOKING ─── */
        .booking-section { background:var(--white); padding:96px 40px; text-align:center; }
        .booking-inner { max-width:860px; margin:0 auto; }
        .booking-inner .gold-line { margin:0 auto 20px; }
        .booking-inner .section-body { margin:0 auto; text-align:center; }
        .ota-grid { display:flex; justify-content:center; flex-wrap:wrap; gap:14px; margin-top:48px; }
        .ota-btn {
            display:inline-flex; align-items:center; gap:8px;
            padding:13px 24px; background:var(--cream); border:1px solid var(--border);
            border-radius:3px; text-decoration:none; color:var(--text-body);
            font-family:'Montserrat',sans-serif; font-size:0.78rem; font-weight:500;
            letter-spacing:0.05em; transition:all 0.3s; min-width:155px; justify-content:center;
        }
        .ota-btn:hover { background:var(--navy); border-color:var(--navy); color:#fff; transform:translateY(-3px); box-shadow:var(--shadow); }
        .ota-icon { font-size:1.15rem; }
        .ota-direct { margin-top:32px; }
        .ota-direct-text { font-size:0.82rem; font-weight:300; color:var(--text-light); margin-bottom:13px; }

        /* ─── CONTACT STRIP ─── */
        .contact-strip { background:var(--navy); padding:52px 40px; }
        .contact-inner { max-width:1140px; margin:0 auto; display:flex; align-items:center; justify-content:space-between; gap:32px; flex-wrap:wrap; }
        .contact-info { display:flex; gap:52px; flex-wrap:wrap; }
        .c-label { font-family:'Montserrat',sans-serif; font-size:0.57rem; font-weight:500; letter-spacing:0.32em; text-transform:uppercase; color:var(--gold); margin-bottom:6px; }
        .c-value { font-family:'Cormorant Garamond',serif; font-size:1.3rem; font-weight:400; color:#fff; }
        .c-value a { color:#fff; text-decoration:none; transition:color 0.3s; }
        .c-value a:hover { color:var(--gold-light); }
        .c-hours { font-size:0.75rem; font-weight:300; color:rgba(255,255,255,0.42); margin-top:3px; }

        /* ─── FOOTER ─── */
        footer { background:var(--navy-2); padding:60px 40px 26px; border-top:1px solid rgba(255,255,255,0.05); }
        .footer-inner { max-width:1140px; margin:0 auto; }
        .footer-top { display:grid; grid-template-columns:2fr 1fr 1fr; gap:52px; margin-bottom:52px; }
        .f-logo-main { font-family:'Cormorant Garamond',serif; font-size:1.65rem; font-weight:300; color:var(--gold-light); display:block; margin-bottom:4px; }
        .f-logo-sub { font-family:'Montserrat',sans-serif; font-size:0.57rem; letter-spacing:0.28em; text-transform:uppercase; color:rgba(255,255,255,0.32); display:block; margin-bottom:16px; }
        .footer-brand p { font-size:0.82rem; font-weight:300; color:rgba(255,255,255,0.48); line-height:1.85; }
        .footer-col h4 { font-family:'Montserrat',sans-serif; font-size:0.6rem; font-weight:600; letter-spacing:0.28em; text-transform:uppercase; color:var(--gold); margin-bottom:17px; }
        .footer-col ul { list-style:none; display:flex; flex-direction:column; gap:8px; }
        .footer-col ul li a { font-size:0.82rem; font-weight:300; color:rgba(255,255,255,0.47); text-decoration:none; transition:color 0.3s; }
        .footer-col ul li a:hover { color:var(--gold-light); }
        .footer-bottom { border-top:1px solid rgba(255,255,255,0.05); padding-top:24px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:10px; }
        .footer-copy { font-family:'Montserrat',sans-serif; font-size:0.6rem; font-weight:300; letter-spacing:0.07em; color:rgba(255,255,255,0.28); }
        .footer-copy a { color:var(--gold-light); text-decoration:none; }

        /* ─── REVEALS ─── */
        .reveal { opacity:0; transform:translateY(22px); transition:opacity 0.7s ease,transform 0.7s ease; }
        .reveal.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}
        .reveal-delay-5{transition-delay:0.5s}

        /* ─── LANG DATA ATTRS ─── */
        [data-lang]         { display:none; }
        [data-lang].lang-on { display:block; }
        span[data-lang].lang-on,p[data-lang].lang-on { display:inline; }
        p[data-lang].lang-on { display:block; }

        /* ─── RESPONSIVE ─── */
        @media(max-width:960px){
            nav{padding:13px 22px;} nav.scrolled{padding:10px 22px;}
            .nav-links{display:none;} .menu-toggle{display:flex;} .lang-bar{padding:7px 22px;}
            .about-inner{grid-template-columns:1fr;gap:44px;}
            .about-accent{display:none;}
            .amenities-grid{grid-template-columns:repeat(2,1fr);}
            .gallery-grid{grid-template-columns:1fr 1fr;grid-template-rows:200px 200px 200px;}
            .g-item:first-child{grid-row:span 1;}
            .access-inner{grid-template-columns:1fr;}
            .access-map{aspect-ratio:4/3;}
            .footer-top{grid-template-columns:1fr;gap:32px;}
            .contact-info{gap:26px;}
        }
        @media(max-width:600px){
            .amenities-grid{grid-template-columns:1fr;}
            .gallery-grid{grid-template-columns:1fr;grid-template-rows:auto;}
            .g-item{height:210px;}
            .hero-title{font-size:2.7rem;}
            .about,.amenities-section,.access-section,.booking-section{padding:68px 20px;}
            .gallery-section{padding:68px 0;}
            .contact-strip{padding:44px 20px;}
        }
        /* Mobile nav overlay */
body.nav-open .nav-links {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(247, 243, 237, 0.99) !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 28px !important;
    z-index: 9000 !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow-y: auto;
    padding: 60% 30px 100%;
    /* Slide in from top */
    animation: navSlideIn 0.3s ease forwards;
}

        /* ── FAQ ── */
    .faq-section { padding: 6rem 2rem; max-width: 760px; margin: 0 auto; }

    .faq-item { border-bottom: 1px solid rgba(184,147,90,.2); }

    .faq-q {
      width: 100%;
      background: none;
      border: none;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.5rem 0;
      font-family: var(--ff-head);
      font-size: 1.1rem;
      font-weight: 400;
      color: var(--ink);
      text-align: left;
      gap: 1rem;
    }

    .faq-q::after {
      content: '+';
      font-size: 1.4rem;
      color: var(--gold);
      transition: transform .3s;
      flex-shrink: 0;
    }

    .faq-item.open .faq-q::after { transform: rotate(45deg); }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .4s ease, padding .3s;
      font-size: .9rem;
      color: var(--mist);
      line-height: 1.8;
    }

    .faq-item.open .faq-a {
      max-height: 300px;
      padding-bottom: 1.5rem;
    }

    .direct-book-box {
      background: #1a2a3a;
      color: var(--white);
      padding: 3rem;
      border-radius: 2px;
      max-width: 500px;
      margin: 2rem auto 0;
    }

    .direct-book-box h3 {
      font-family: var(--ff-head);
      font-size: 1.6rem;
      font-weight: 300;
      margin-bottom: .5rem;
    }
    .direct-book-box p { color: rgba(253,250,246,.6); font-size: .875rem; margin-bottom: 1.5rem; }

    /* RESPONSIVE */
    @media(max-width:900px){
    .booking-layout{grid-template-columns:1fr;padding:0 20px;margin:28px auto}
    .summary-card{position:static}
    .site-nav{padding:12px 20px}
    .lang-bar{padding:7px 20px}
    .nav-links{display:none}
    .menu-toggle{display:flex}
    .steps-wrap{padding:14px 20px}
    .step-label{display:none}
    .confirm-grid{grid-template-columns:1fr;padding:0 20px}
    .mybooking-wrap{padding:0 20px}
    .booking-detail-grid{grid-template-columns:1fr 1fr}
    }
    @media(max-width:640px){
    .field-row{grid-template-columns:1fr}
    .field-row.col-3{grid-template-columns:1fr 1fr}
    .ota-grid{grid-template-columns:1fr}
    .booking-detail-grid{grid-template-columns:1fr}
    }
    body.nav-open .nav-links a{font-size:1rem!important;color:gba(232, 218, 198, 0.97)!important;}

    @media (max-width: 960px) {
    .menu-toggle {
        display: flex !important;
    }

    .nav-links {
        display: none !important; /* hidden until nav-open */
    }
}

/* The hamburger button — always floats above the overlay */
.menu-toggle {
    display: none; /* shown via media query below */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    position: relative;
    z-index: 9999;
    background: none;
    border: none;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--navy);
    transition: transform 0.28s ease, opacity 0.2s ease;
}

/* When nav-open, X spans should contrast against light overlay */
body.nav-open .menu-toggle span {
    background: var(--navy);
}

 /* ── PAGE-SPECIFIC STYLES (policy page only) ── */

        /* Hero banner — mirrors site's dark hero aesthetic */
        .policy-hero {
            background: var(--dark, #0d0d0d);
            background: linear-gradient(135deg, #0d0d0d 0%, #1c1510 100%);
            color: #fff;
            text-align: center;
            padding: 100px 24px 80px;
            position: relative;
            overflow: hidden;
        }

        .policy-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center top, rgba(185,143,78,0.12) 0%, transparent 65%);
            pointer-events: none;
        }

        .policy-hero-content { position: relative; z-index: 1; }

        .policy-hero .hero-eyebrow {
            font-family: 'Montserrat', sans-serif;
            font-size: 11px;
            font-weight: 400;
            letter-spacing: 0.28em;
            text-transform: uppercase;
            color: var(--gold-light, #c4a882);
            margin-bottom: 20px;
        }

        .policy-hero h1 {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: clamp(36px, 6vw, 64px);
            font-weight: 300;
            letter-spacing: 0.06em;
            line-height: 1.2;
            margin-bottom: 0;
            color: #fff;
        }

        .policy-hero h1 em {
            font-style: italic;
            color: var(--gold-light, #c4a882);
        }

        .policy-hero .hero-divider {
            width: 60px;
            height: 1px;
            background: var(--gold, #b98f4e);
            margin: 24px auto;
            opacity: 0.6;
        }

        .policy-hero .hero-sub {
            font-family: 'Montserrat', sans-serif;
            font-size: 11px;
            letter-spacing: 0.14em;
            color: rgba(255,255,255,0.38);
            text-transform: uppercase;
        }

        /* ── POLICY CONTENT WRAPPER ── */
        .policy-wrap {
            max-width: 860px;
            margin: 0 auto;
            padding: 70px 24px 100px;
        }

        /* Language switcher strip — matches site's lang-bar style */
        .policy-lang-bar {
            display: flex;
            justify-content: center;
            gap: 6px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        /* lang-section visibility */
        .lang-section { display: none; }
        .lang-section.active { display: block; }

        /* ── CARD ── */
        .policy-card {
            background: #fff;
            border: 1px solid rgba(185,143,78,0.18);
            border-radius: 4px;
            overflow: hidden;
            margin-bottom: 2px;
            box-shadow: 0 2px 20px rgba(0,0,0,0.05);
        }

        /* Intro paragraph */
        .policy-intro {
            padding: 40px 48px 32px;
            border-bottom: 1px solid rgba(185,143,78,0.15);
        }

        .policy-intro p {
            font-family: 'Noto Sans JP', 'Noto Sans SC', 'Noto Sans KR', sans-serif;
            font-size: 14px;
            color: #666;
            line-height: 1.95;
            border-left: 3px solid var(--gold, #b98f4e);
            padding-left: 18px;
        }

        /* Article rows */
        .policy-article {
            display: flex;
            border-bottom: 1px solid rgba(185,143,78,0.1);
            transition: background 0.2s;
        }

        .policy-article:last-child { border-bottom: none; }
        .policy-article:hover { background: #faf8f4; }

        .article-label {
            flex: 0 0 220px;
            padding: 28px 28px 28px 48px;
            background: #faf8f4;
            border-right: 1px solid rgba(185,143,78,0.13);
        }

        .article-num {
            display: block;
            font-family: 'Montserrat', sans-serif;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--gold, #b98f4e);
            margin-bottom: 6px;
        }

        .article-title {
            display: block;
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 16px;
            font-weight: 600;
            color: #1a1a1a;
            line-height: 1.35;
            letter-spacing: 0.01em;
        }

        .article-body {
            flex: 1;
            padding: 28px 48px 28px 32px;
            font-family: 'Noto Sans JP', 'Noto Sans SC', 'Noto Sans KR', sans-serif;
            font-size: 14px;
            color: #555;
            line-height: 1.95;
        }

        .article-body ul {
            list-style: none;
            padding: 0;
            margin-top: 12px;
        }

        .article-body ul li {
            padding: 7px 0 7px 20px;
            position: relative;
            border-bottom: 1px solid #f2ede5;
            font-size: 13.5px;
        }

        .article-body ul li:last-child { border-bottom: none; }

        .article-body ul li::before {
            content: '›';
            position: absolute;
            left: 0;
            color: var(--gold, #b98f4e);
            font-size: 16px;
            line-height: 1.4;
            font-weight: bold;
        }

        /* Contact box inside article */
        .policy-contact-box {
            margin-top: 14px;
            background: #faf8f4;
            border: 1px solid rgba(185,143,78,0.2);
            border-radius: 3px;
            padding: 20px 24px;
        }

        .policy-contact-box p {
            font-size: 13px;
            color: #555;
            line-height: 1.7;
            margin-bottom: 4px;
        }

        .policy-contact-box strong { color: #1a1a1a; }

        .policy-contact-box a {
            color: var(--gold, #b98f4e);
            text-decoration: none;
            border-bottom: 1px solid rgba(185,143,78,0.4);
            transition: border-color 0.2s;
        }

        .policy-contact-box a:hover {
            border-bottom-color: var(--gold, #b98f4e);
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 768px) {
            .policy-intro { padding: 28px 22px; }

            .policy-article { flex-direction: column; }

            .article-label {
                flex: none;
                padding: 18px 22px 14px;
                border-right: none;
                border-bottom: 1px solid rgba(185,143,78,0.13);
                display: flex;
                align-items: baseline;
                gap: 10px;
            }

            .article-num { margin-bottom: 0; }

            .article-body { padding: 16px 22px 22px; }
        }

         /* ── PAGE-SPECIFIC STYLES ── */

        /* Hero — mirrors site's dark hero */
        .policy-hero {
            background: #1a2a3a;
           
            color: #fff;
            text-align: center;
            padding: 100px 24px 20px;
            position: relative;
            overflow: hidden;
        }

        .policy-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center top, rgba(185,143,78,0.12) 0%, transparent 65%);
            pointer-events: none;
        }

        .policy-hero-content { position: relative; z-index: 1; }

        .policy-hero .hero-eyebrow {
            font-family: 'Montserrat', sans-serif;
            font-size: 11px;
            font-weight: 400;
            letter-spacing: 0.28em;
            text-transform: uppercase;
            color: var(--gold-light, #c4a882);
            margin-bottom: 20px;
        }

        .policy-hero h1 {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: clamp(36px, 6vw, 64px);
            font-weight: 300;
            letter-spacing: 0.06em;
            line-height: 1.2;
            color: #fff;
            margin-bottom: 0;
        }

        .policy-hero h1 em {
            font-style: italic;
            color: var(--gold-light, #c4a882);
        }

        .policy-hero .hero-divider {
            width: 60px;
            height: 1px;
            background: var(--gold, #b98f4e);
            margin: 24px auto;
            opacity: 0.6;
        }

        .policy-hero .hero-sub {
            font-family: 'Montserrat', sans-serif;
            font-size: 11px;
            letter-spacing: 0.14em;
            color: rgba(255,255,255,0.38);
            text-transform: uppercase;
        }

        .policy-hero .hero-update {
            font-family: 'Montserrat', sans-serif;
            font-size: 10px;
            letter-spacing: 0.18em;
            color: rgba(255,255,255,0.22);
            text-transform: uppercase;
            margin-top: 14px;
        }

        /* ── CONTENT WRAP ── */
        .policy-wrap {
            max-width: 900px;
            margin: 0 auto;
            padding: 70px 24px 100px;
        }

        /* lang-section visibility */
        .lang-section { display: none; }
        .lang-section.active { display: block; }

        /* ── SECTION CARD ── */
        .cancel-card {
            background: #fff;
            border: 1px solid rgba(185,143,78,0.18);
            border-radius: 4px;
            overflow: hidden;
            margin-bottom: 24px;
            box-shadow: 0 2px 20px rgba(0,0,0,0.05);
        }

        /* Card header — dark gold gradient matching site's dark sections */
        .cancel-card-header {
            background: #1a2a3a;
            color: #fff;
            padding: 20px 32px;
            display: flex;
            align-items: center;
            gap: 14px;
            border-bottom: 1px solid rgba(185,143,78,0.3);
        }

        .cancel-card-header .card-icon { font-size: 20px; }

        .cancel-card-header h2 {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 20px;
            font-weight: 400;
            letter-spacing: 0.05em;
            color: #fff;
        }

        .cancel-card-header h2 em {
            font-style: italic;
            color: var(--gold-light, #c4a882);
        }

        /* ── TABLE ROWS ── */
        .policy-row {
            display: flex;
            border-bottom: 1px solid rgba(185,143,78,0.1);
            transition: background 0.2s;
        }

        .policy-row:last-child { border-bottom: none; }
        .policy-row:hover { background: #faf8f4; }

        .row-label {
            flex: 0 0 210px;
            padding: 22px 24px 22px 32px;
            background: #faf8f4;
            border-right: 1px solid rgba(185,143,78,0.13);
            font-family: 'Montserrat', sans-serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--gold, #b98f4e);
            line-height: 1.5;
        }

        .row-value {
            flex: 1;
            padding: 22px 32px 22px 28px;
            font-family: 'Noto Sans JP', 'Noto Sans SC', 'Noto Sans KR', sans-serif;
            font-size: 14px;
            color: #555;
            line-height: 1.9;
        }

        .row-value strong { color: #1a1a1a; }
        .row-value small {
            display: block;
            font-size: 12px;
            color: #999;
            margin-top: 4px;
        }
        .row-value a { color: var(--gold, #b98f4e); text-decoration: underline; }

        /* Cancel tier badges */
        .cancel-tier {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 10px 0;
            border-bottom: 1px solid #f2ede5;
        }
        .cancel-tier:last-child { border-bottom: none; padding-bottom: 0; }

        .tier-badge {
            flex: 0 0 auto;
            padding: 3px 12px;
            border-radius: 20px;
            font-family: 'Montserrat', sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.06em;
            white-space: nowrap;
        }
        .tier-free { background: #e8f5e9; color: #2e7d32; }
        .tier-full { background: #fdecea; color: #c62828; }

        .tier-desc { font-size: 14px; color: #555; line-height: 1.7; }
        .tier-desc strong { color: #1a1a1a; }

        /* Calculation box */
        .calc-box {
            background: #faf8f4;
            border: 1px solid rgba(185,143,78,0.2);
            border-radius: 3px;
            padding: 16px 20px;
            margin-top: 14px;
        }

        .calc-box .calc-label {
            font-family: 'Montserrat', sans-serif;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--gold, #b98f4e);
            margin-bottom: 10px;
        }

        .calc-row {
            display: flex;
            justify-content: space-between;
            padding: 5px 0;
            font-size: 13px;
            color: #555;
            border-bottom: 1px dashed rgba(185,143,78,0.2);
        }
        .calc-row:last-child {
            border-bottom: none;
            font-weight: 700;
            color: #1a1a1a;
            padding-top: 8px;
        }
        .calc-row.deduct { color: #c62828; }

        /* Notice box — warm gold tone matching site palette */
        .notice-box {
            background: #fdf8f0;
            border: 1px solid rgba(185,143,78,0.3);
            border-left: 4px solid var(--gold, #b98f4e);
            border-radius: 3px;
            padding: 24px 28px;
            margin-bottom: 24px;
        }

        .notice-box .notice-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: #8b6a2a;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .notice-box ul {
            list-style: none;
            padding: 0;
        }

        .notice-box ul li {
            font-family: 'Noto Sans JP', 'Noto Sans SC', 'Noto Sans KR', sans-serif;
            font-size: 13.5px;
            color: #6b4f2a;
            padding: 6px 0 6px 20px;
            position: relative;
            border-bottom: 1px solid rgba(185,143,78,0.12);
            line-height: 1.75;
        }

        .notice-box ul li:last-child { border-bottom: none; }

        .notice-box ul li::before {
            content: '›';
            position: absolute;
            left: 0;
            color: var(--gold, #b98f4e);
            font-size: 16px;
            font-weight: bold;
            line-height: 1.4;
        }

        /* Contact box — uses site's teal/info tone */
        .contact-info-box {
            background: #f0f6f8;
            border: 1px solid #7aabbd;
            border-left: 4px solid #7aabbd;
            border-radius: 3px;
            padding: 24px 28px;
            margin-bottom: 24px;
        }

        .contact-info-box .contact-info-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: #1a4a5a;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .contact-info-box p {
            font-family: 'Noto Sans JP', 'Noto Sans SC', 'Noto Sans KR', sans-serif;
            font-size: 13.5px;
            color: #1a4a5a;
            line-height: 1.8;
            margin-bottom: 4px;
        }

        .contact-info-box a {
            color: #1a4a5a;
            font-weight: 600;
            text-decoration: underline;
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 768px) {
            .policy-row { flex-direction: column; }
            .row-label {
                flex: none;
                padding: 14px 18px;
                border-right: none;
                border-bottom: 1px solid rgba(185,143,78,0.13);
            }
            .row-value { padding: 16px 18px; }
            .cancel-card-header { padding: 16px 20px; }
        }