 :root {
            --gold: #c9a96e;
            --gold-dark: #a07840;
            --gold-light: #e8d5b0;
            --cream: #faf7f2;
            --ivory: #f5f0e8;
            --warm-white: #fefcf8;
            --charcoal: #2a2a2a;
            --muted: #7a7167;
            --border: rgba(201, 169, 110, .22);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--cream);
            color: var(--charcoal);
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5 {
            font-family: 'Playfair Display', serif;
        }

        a {
            text-decoration: none;
        }

        /* NAVBAR */

        .navbar {
            background: rgba(250, 247, 242, .96) !important;
            backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--border);
            padding: 14px 0;
        }

        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            font-weight: 600;
            color: var(--charcoal) !important;
        }

        .navbar-brand span {
            color: var(--gold);
        }

        .nav-link {
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--muted) !important;
            transition: .3s;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--gold-dark) !important;
        }

        .btn-gold {
            background: var(--gold);
            border: none;
            border-radius: 0;
            color: #fff;
            padding: 11px 24px;
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 600;
            transition: .3s;
        }

        .btn-gold:hover {
            background: var(--gold-dark);
            color: #fff;
        }

        /* HERO */

        .hero {
            position: relative;
            padding: 170px 0 110px;
            text-align: center;
            background:
                linear-gradient(rgba(250, 247, 242, .88), rgba(250, 247, 242, .92)),
                url('https://images.unsplash.com/photo-1515377905703-c4788e51af15?q=80&w=1600&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
        }

        .eyebrow {
            font-size: 11px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 14px;
        }

        .hero-title {
            font-size: clamp(42px, 6vw, 78px);
            line-height: 1.08;
            font-weight: 400;
        }

        .hero-title em {
            color: var(--gold-dark);
            font-style: italic;
        }

        .gold-rule {
            width: 42px;
            height: 1px;
            background: var(--gold);
            margin: 22px auto;
        }

        .hero-text {
            max-width: 700px;
            margin: auto;
            color: var(--muted);
            line-height: 2;
            font-size: 14px;
        }

        /* SECTION */

        .section {
            padding: 100px 0;
        }

        .section-title {
            font-size: 48px;
            line-height: 1.1;
            margin-bottom: 16px;
        }

        .section-title em {
            color: var(--gold-dark);
            font-style: italic;
        }

        .section-rule {
            width: 34px;
            height: 1px;
            background: var(--gold);
            margin: 18px 0 28px;
        }

        .section-text {
            font-size: 14px;
            color: var(--muted);
            line-height: 2;
        }

        /* IMAGE */

        .image-box {
            position: relative;
            overflow: hidden;
        }

        .image-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .experience-badge {
            position: absolute;
            bottom: 30px;
            left: 30px;
            background: rgba(42, 42, 42, .9);
            color: #fff;
            padding: 18px 22px;
        }

        .experience-badge h3 {
            font-size: 38px;
            margin-bottom: 4px;
        }

        .experience-badge p {
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold-light);
        }

        /* STATS */

        .stats {
            background: var(--ivory);
        }

        .stat-card {
            text-align: center;
            padding: 40px 20px;
        }

        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 58px;
            color: var(--gold-dark);
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--muted);
            line-height: 1.8;
        }

        /* COURSES */

        .course-card {
            background: var(--warm-white);
            padding: 38px 32px;
            height: 100%;
            transition: .3s;
            border-top: 2px solid transparent;
            box-shadow: 0 10px 35px rgba(0, 0, 0, .03);
        }

        .course-card:hover {
            transform: translateY(-7px);
            border-color: var(--gold);
        }

        .course-icon {
            width: 60px;
            height: 60px;
            background: var(--ivory);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 24px;
            margin-bottom: 24px;
        }

        .course-title {
            font-size: 30px;
            margin-bottom: 14px;
        }

        .course-text {
            color: var(--muted);
            line-height: 2;
            font-size: 13px;
            margin-bottom: 20px;
        }

        .course-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .course-list li {
            margin-bottom: 10px;
            color: var(--charcoal);
            font-size: 13px;
        }

        .course-list li i {
            color: var(--gold);
            margin-right: 8px;
        }

        /* TRAINING */

        .training-section {
            background: var(--warm-white);
        }

        .training-box {
            background: var(--ivory);
            padding: 45px;
            height: 100%;
        }

        .training-title {
            font-size: 42px;
            margin-bottom: 12px;
        }

        .training-title em {
            color: var(--gold-dark);
            font-style: italic;
        }

        .training-text {
            color: var(--muted);
            line-height: 2;
            font-size: 14px;
        }

        .feature-row {
            display: flex;
            gap: 14px;
            margin-top: 22px;
        }

        .feature-icon {
            width: 46px;
            height: 46px;
            background: var(--warm-white);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            flex-shrink: 0;
        }

        .feature-content h5 {
            font-size: 18px;
            margin-bottom: 6px;
        }

        .feature-content p {
            font-size: 13px;
            color: var(--muted);
            line-height: 1.9;
        }

        /* CTA */

        .cta {
            position: relative;
            padding: 110px 0;
            text-align: center;
            background:
                linear-gradient(rgba(42, 42, 42, .78), rgba(42, 42, 42, .78)),
                url('https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?q=80&w=1600&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
        }

        .cta-title {
            font-size: 58px;
            color: #fff;
            margin-bottom: 18px;
        }

        .cta-title em {
            color: var(--gold-light);
            font-style: italic;
        }

        .cta-text {
            max-width: 680px;
            margin: auto;
            color: rgba(255, 255, 255, .75);
            line-height: 2;
            font-size: 14px;
        }

        .cta-btn {
            display: inline-block;
            margin-top: 34px;
            background: var(--gold);
            color: #fff;
            padding: 15px 34px;
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 600;
            transition: .3s;
        }

        .cta-btn:hover {
            background: var(--gold-dark);
            color: #fff;
        }

        /* FOOTER */

        footer {
            background: var(--charcoal);
            color: rgba(255, 255, 255, .6);
            padding: 65px 0 28px;
        }

        .footer-brand {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            color: #fff;
            margin-bottom: 10px;
        }

        .footer-brand span {
            color: var(--gold);
        }

        .footer-text {
            max-width: 260px;
            line-height: 1.9;
            font-size: 13px;
        }

        .footer-rule {
            width: 28px;
            height: 1px;
            background: var(--gold);
            margin: 18px 0;
        }

        .footer-contact {
            line-height: 2.2;
            font-size: 13px;
        }

        .footer-contact a {
            color: rgba(255, 255, 255, .65);
        }

        .footer-heading {
            color: #fff;
            margin-bottom: 16px;
            font-size: 16px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 8px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, .55);
            font-size: 13px;
        }

        .footer-links a:hover {
            color: var(--gold);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, .08);
            padding-top: 22px;
            margin-top: 40px;
        }

        .social-wrap {
            display: flex;
            gap: 10px;
        }

        .social-btn {
            width: 36px;
            height: 36px;
            border: 1px solid rgba(201, 169, 110, .35);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            transition: .3s;
        }

        .social-btn:hover {
            background: var(--gold);
            color: #fff;
        }

        /* FLOAT */

        .whatsapp-float {
            position: fixed;
            bottom: 22px;
            right: 22px;
            width: 58px;
            height: 58px;
            background: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 28px;
            z-index: 999;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
        }

        .whatsapp-float:hover {
            color: #fff;
            transform: translateY(-3px);
        }

        /* MOBILE */

        @media(max-width:768px) {

            .hero {
                padding: 140px 0 85px;
            }

            .section {
                padding: 70px 0;
            }

            .section-title {
                font-size: 38px;
            }

            .training-box {
                padding: 30px 24px;
            }

            .cta-title {
                font-size: 42px;
            }

        }