        /* ── FINAL CTA ── */
        #final-cta {
            background: var(--blue-dark);
            min-height: 100svh;
            display: flex; align-items: center; justify-content: center;
            position: relative; overflow: hidden;
            padding: 100px 20px;
        }
        @media (min-width: 768px) { #final-cta { padding: 120px 48px; } }
        /* Giant Japanese watermark */
        #final-cta::before {
            content: '豊洲';
            position: absolute; right: -4vw; bottom: -8vw;
            font-family: 'Cormorant Garamond', serif;
            font-size: 52vw; line-height: 0.8;
            color: rgba(255,255,255,0.025);
            pointer-events: none; user-select: none;
        }
        /* Gold top rule */
        #final-cta::after {
            content: '';
            position: absolute; top: 0; left: 10%; right: 10%;
            height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
        }
        #final-cta-inner {
            max-width: 860px; margin: 0 auto;
            text-align: center; position: relative; z-index: 1;
        }
        .fcta-tag {
            font-family: 'Prompt', sans-serif;
            font-size: 9px; letter-spacing: 0.52em; text-transform: uppercase;
            color: var(--gold); display: flex; align-items: center;
            justify-content: center; gap: 14px; margin-bottom: 36px;
        }
        .fcta-tag::before, .fcta-tag::after {
            content: ''; display: block; height: 1px; width: 40px;
            background: var(--gold); opacity: 0.5;
        }
        #final-cta-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(3.4rem, 10.5vw, 9rem);
            font-weight: 300; color: #fff;
            line-height: 0.98; margin: 0 0 28px;
            letter-spacing: -0.02em;
        }
        #final-cta-title em {
            font-style: italic;
            color: rgba(255,255,255,0.65);
        }
        #final-cta-desc {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1rem, 1.8vw, 1.15rem);
            color: rgba(255,255,255,0.45); font-style: italic;
            line-height: 1.7; max-width: 560px;
            margin: 0 auto 48px;
        }
        #final-cta-trust {
            display: flex; align-items: center; justify-content: center;
            flex-wrap: wrap; gap: 6px 0;
            margin-bottom: 52px;
        }
        .fcta-trust-item {
            font-family: 'Cormorant Garamond', serif;
            font-size: 9.5px; letter-spacing: 0.32em; text-transform: uppercase;
            color: rgba(255,255,255,0.28); padding: 0 16px;
        }
        .fcta-trust-sep {
            color: rgba(197,160,89,0.35); font-size: 8px;
            flex-shrink: 0;
        }
        @media (max-width: 639px) {
            .fcta-trust-sep { display: none; }
            .fcta-trust-item { width: 100%; text-align: center; padding: 3px 0; }
        }
        #final-cta-buttons {
            display: flex; gap: 14px; justify-content: center;
            flex-wrap: wrap; margin-bottom: 20px;
        }
        .fcta-btn {
            display: inline-block;
            font-family: 'Prompt', sans-serif;
            font-size: 0.72rem; font-weight: 500;
            letter-spacing: 0.22em; text-transform: uppercase;
            padding: 20px 48px; text-decoration: none;
            transition: background 0.45s cubic-bezier(0.25,0.46,0.45,0.94),
                        color 0.45s cubic-bezier(0.25,0.46,0.45,0.94),
                        border-color 0.45s cubic-bezier(0.25,0.46,0.45,0.94),
                        box-shadow 0.45s cubic-bezier(0.25,0.46,0.45,0.94),
                        transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
            -webkit-tap-highlight-color: transparent;
        }
        .fcta-btn-gold { background: var(--gold); color: var(--blue-dark); border: 1px solid var(--gold); }
        .fcta-btn-outline { background: transparent; color: rgba(255,255,255,0.65); border: 1px solid rgba(255,255,255,0.25); }
        @media (hover: hover) {
            .fcta-btn-gold:hover { background: #cda75e; border-color: #cda75e; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(197,160,89,0.22); }
            .fcta-btn-outline:hover { border-color: rgba(197,160,89,0.55); color: rgba(197,160,89,0.9); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }
        }
        #final-cta-note {
            font-family: 'Cormorant Garamond', serif;
            font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
            color: rgba(255,255,255,0.2); font-style: italic;
            margin-bottom: 48px;
        }
        #final-cta-links {
            display: flex; align-items: center; justify-content: center;
            flex-wrap: wrap; gap: 0;
        }
        .fcta-link {
            font-family: 'Prompt', sans-serif;
            font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
            color: rgba(255,255,255,0.28);
            text-decoration: none; padding: 12px 28px;
            position: relative;
            transition: color 0.4s ease;
        }
        .fcta-link + .fcta-link::before {
            content: ''; position: absolute; left: 0;
            top: 22%; bottom: 22%; width: 1px;
            background: rgba(255,255,255,0.1);
        }
        @media (hover: hover) { .fcta-link:hover { color: var(--gold); } }

