* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: #fff;
            color: #1a0f0f;
            font-family: "Poppins", sans-serif;
        }

        /* ── HEADER ── */
        .header {
            background-color: #ffffff;
            padding: 0 35px;
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: box-shadow 0.3s ease, padding 0.3s ease;
        }

        .header.scrolled {
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
        }

        .navbar img {
            height: 65px;
        }

        nav ul {
            display: flex;
            align-items: center;
            gap: 50px;
            list-style: none;
        }

        nav a {
            text-decoration: none;
            color: #1a0f0f;
            font-family: "Poppins";
            font-size: 16px;
        }

        nav a:hover {
            text-decoration: underline;
            text-underline-offset: 5px;
            text-decoration-thickness: 2px;
        }

        .btn-contact {
            background: #1a0f0f;
            color: #fff;
            padding: 8px 26px;
            border: none;
            cursor: pointer;
            font-family: "Poppins";
            font-size: 15px;
            text-transform: uppercase;
            text-decoration: none;
            transition: 0.3s ease-in-out;
        }

        .btn-contact:hover {
            background: #C48A8A;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 5px;
            box-shadow: none;
        }

        .hamburger span {
            display: block;
            width: 25px;
            height: 2px;
            background-color: #000;
            transition: 0.3s ease;
        }

        .mobile-only { display: none; }

        /* ── HERO BANNER ── */
        .legal-banner {
            background-color: #FCEBE5;
            padding: 80px 130px 70px;
            position: relative;
            overflow: hidden;
        }

        .legal-banner::after {
            content: "✦";
            position: absolute;
            right: 130px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 120px;
            color: #C48A8A;
            opacity: 0.18;
            font-family: "Playfair Display";
        }

        .legal-banner .eyebrow {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 18px;
        }

        .legal-banner .eyebrow span {
            display: block;
            width: 40px;
            height: 1.5px;
            background: #C48A8A;
        }

        .legal-banner .eyebrow p {
            font-family: "Poppins";
            font-size: 11px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #C48A8A;
        }

        .legal-banner h1 {
            font-family: "Playfair Display";
            font-size: 58px;
            font-weight: 500;
            line-height: 1.15;
            color: #1a0f0f;
            margin-bottom: 16px;
        }

        .legal-banner .meta {
            font-family: "Poppins";
            font-size: 13px;
            color: #7a5a5a;
            letter-spacing: 1px;
        }

        /* ── TAB NAV ── */
        .tab-nav {
            background: #fff;
            border-bottom: 1px solid #f0e0da;
            padding: 0 130px;
            display: flex;
            gap: 0;
            position: sticky;
            top: 95px;
            z-index: 900;
        }

        .tab-btn {
            background: none;
            border: none;
            border-bottom: 3px solid transparent;
            padding: 20px 30px;
            font-family: "Poppins";
            font-size: 14px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #999;
            cursor: pointer;
            transition: 0.3s ease;
            box-shadow: none;
        }

        .tab-btn:hover {
            color: #1a0f0f;
        }

        .tab-btn.active {
            color: #1a0f0f;
            border-bottom-color: #C48A8A;
        }

        /* ── CONTENT ── */
        .legal-content {
            padding: 80px 130px 120px;
            max-width: 900px;
        }

        .legal-section {
            display: none;
        }

        .legal-section.active {
            display: block;
            animation: fadeIn 0.4s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(12px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        /* intro card */
        .intro-card {
            background: #FCEBE5;
            border-left: 3px solid #C48A8A;
            padding: 28px 32px;
            margin-bottom: 56px;
            font-family: "Poppins";
            font-size: 15px;
            line-height: 1.85;
            color: #4a2f2f;
        }

        /* numbered items */
        .policy-item {
            margin-bottom: 48px;
            padding-bottom: 48px;
            border-bottom: 1px solid #f0e0da;
        }

        .policy-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .item-header {
            display: flex;
            align-items: flex-start;
            gap: 24px;
            margin-bottom: 16px;
        }

        .item-num {
            font-family: "Playfair Display";
            font-size: 13px;
            font-style: italic;
            color: #C48A8A;
            letter-spacing: 1px;
            min-width: 28px;
            padding-top: 6px;
        }

        .item-header h2 {
            font-family: "Playfair Display";
            font-size: 26px;
            font-weight: 500;
            color: #1a0f0f;
            line-height: 1.3;
        }

        .policy-item p {
            font-family: "Poppins";
            font-size: 15px;
            line-height: 1.85;
            color: #4a3030;
            padding-left: 52px;
        }

        .policy-item p + p {
            margin-top: 12px;
        }

        /* contact block inside policy */
        .contact-block {
            margin-top: 16px;
            padding-left: 52px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .contact-block a {
            font-family: "Poppins";
            font-size: 15px;
            color: #1a0f0f;
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        /* ── BACK LINK ── */
        .back-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: "Poppins";
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #1a0f0f;
            text-decoration: none;
            margin-top: 60px;
            border-bottom: 1px solid #C48A8A;
            padding-bottom: 3px;
            transition: 0.3s;
        }

        .back-link:hover {
            color: #C48A8A;
        }

        /* ── FOOTER ── */
        .footer {
            background: #1a0f0f;
            color: hsl(0,0%,80%);
            padding: 60px 8% 20px;
            font-family: 'Poppins';
            font-size: 14px;
        }

        .footer-container {
            display: flex;
            gap: 50px;
        }

        .col-brand { width: 35%; }

        .col-brand .logo img { 
            width: 150px; 
        }

        .col-brand p {
            line-height: 1.6;
            font-size: 13px;
            color: hsl(0,0%,70%);
        }

        .col-brand .socials { 
            display: flex; 
            margin-top: 15px; 
            gap: 5px;
        }

        .col-brand .socials img {
            width: 25px;
            height: 25px;
            padding: 3px;
            border-radius: 5px;
            background-color: #fff;
        }

        .footer-container h3 {
            color: #fff;
            font-weight: 400;
            margin-bottom: 10px;
            font-size: 19px;
        }

        .footer-container ul { list-style: none; padding: 0; }

        .footer-container ul li {
            margin-bottom: 10px;
            font-size: 14px;
        }

        .footer-container ul li a {
            text-decoration: none;
            color: hsl(0,0%,70%);
            transition: 0.3s;
        }

        .footer-container ul li a:hover { color: #fff; }

        .hours span { color: hsl(0,0%,70%); }

        .footer-bottom {
            border-top: 1px solid #333;
            margin-top: 40px;
            padding-top: 15px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            font-size: 13px;
        }

        .footer-bottom .footer-links {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .footer-links a {
            margin-left: 15px;
            color: hsl(0,0%,70%);
            text-decoration: none;
        }

        .footer-links a:hover { color: #fff; }

        /* ── WHATSAPP FLOAT ── */
        .whatsapp-float {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            z-index: 1000;
        }

        .whatsapp-float img {
            width: 100%;
            height: 100%;
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
            transition: 0.3s ease-in-out;
            border-radius: 5px;
        }

        .whatsapp-float img:hover { scale: 1.05; }

        /* ── RESPONSIVE ── */
        @media (max-width: 1024px) {
            .legal-banner { padding: 60px 60px 50px; }
            .legal-banner::after { right: 60px; font-size: 80px; }
            .legal-banner h1 { font-size: 44px; }
            .tab-nav { padding: 0 60px; top: 88px; }
            .legal-content { padding: 60px 60px 100px; }
        }

        @media (max-width: 768px) {
            .navbar img { height: 50px; }
            .navbar { padding: 10px 5px; }

            nav ul {
                flex-direction: column;
                gap: 0;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: #fff;
                z-index: 999;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
                max-height: 0;
                overflow: hidden;
                opacity: 0;
                transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
            }

            nav.open ul {
                max-height: 400px;
                opacity: 1;
                padding: 10px 0;
            }

            nav ul li a {
                display: block;
                padding: 14px 25px;
                border-bottom: 1px solid #f5f5f5;
            }

            .hamburger { display: flex; }
            .header .btn-contact { display: none; }
            .mobile-only { display: block; }

            .legal-banner { padding: 50px 25px 40px; }
            .legal-banner::after { display: none; }
            .legal-banner h1 { font-size: 36px; }

            .tab-nav {
                padding: 0 25px;
                top: 70px;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }
            .tab-nav::-webkit-scrollbar { display: none; }
            .tab-btn { padding: 16px 20px; white-space: nowrap; font-size: 12px; }

            .legal-content { padding: 40px 25px 80px; }

            .item-header h2 { font-size: 22px; }

            .policy-item p,
            .contact-block { padding-left: 0; }

            .footer { padding: 50px 25px 20px; }

            .footer-container {
                flex-direction: column;
                gap: 35px;
            }

            .col-brand { width: 100%; }

            .footer-bottom {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }

            .footer-links { display: flex; flex-direction: column; justify-content: center; align-items: center; }
        }

        @media (max-width: 480px) {
            .legal-banner h1 { font-size: 28px; }
            .item-header { flex-direction: column; gap: 6px; }
            .item-num { padding-top: 0; }
        }