:root {
    --black: #14110e;
    --charcoal: #211b15;
    --gold: #b99655;
    --gold-dark: #866735;
    --pampas: #d8c2a2;
    --pampas-dark: #a77f45;
    --pampas-light: #f6ecdc;
    --cream: #fbf5ea;
    --beige: #e6d5bc;
    --white: #ffffff;
    --text: #1e1711;
    --muted: #6f6255;
    --soft-border: rgba(185, 150, 85, 0.24);
    --shadow: 0 18px 42px rgba(24, 17, 10, 0.12);
    --radius: 14px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background:
        linear-gradient(180deg, rgba(16, 13, 10, 0.04), rgba(251, 243, 229, 0) 320px),
        var(--cream);
    color: var(--text);
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(16, 13, 10, 0.94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(198, 164, 95, 0.28);
    color: var(--cream);
}

.top-bar {
    display: flex;
    justify-content: center;
    gap: 35px;
    padding: 8px 20px;
    font-size: 13px;
    color: rgba(251, 243, 229, 0.78);
    background: var(--black);
}

.top-bar i {
    color: var(--gold);
    margin-right: 6px;
}

.navbar {
    max-width: 1250px;
    margin: auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    width: 95px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 22px;
    font-weight: 600;
    font-size: 14px;
}

.nav-links a {
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-btn,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
}

.nav-btn,
.btn.primary {
    background: linear-gradient(135deg, #d5ba7b, var(--gold));
    color: var(--black);
    box-shadow: 0 12px 24px rgba(134, 103, 53, 0.24);
}

.btn.secondary {
    background: var(--cream);
    color: var(--text);
    border: 1px solid var(--soft-border);
}

.nav-btn:hover,
.btn.primary:hover,
.btn.secondary:hover {
    transform: translateY(-3px);
}

.nav-btn:hover,
.btn.primary:hover {
    background: linear-gradient(135deg, #dec68e, var(--gold-dark));
}

.menu-toggle {
    display: none;
    border: 1px solid rgba(198, 164, 95, 0.45);
    background: rgba(251, 243, 229, 0.08);
    width: 46px;
    height: 46px;
    border-radius: 14px;
    cursor: pointer;
    padding: 0;
    position: relative;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.20);
    transition: 0.25s ease;
}

.menu-toggle:hover {
    background: rgba(251, 243, 229, 0.16);
    transform: translateY(-2px);
}

.menu-toggle span {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 2px;
    background: var(--gold);
    display: block;
    border-radius: 99px;
    transform: translateX(-50%);
    transition: 0.25s ease;
}

.menu-toggle span:nth-child(1) { top: 15px; }
.menu-toggle span:nth-child(2) { top: 22px; }
.menu-toggle span:nth-child(3) { top: 29px; }

.menu-toggle.active span:nth-child(1) {
    top: 22px;
    transform: translateX(-50%) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-50%) scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
    top: 22px;
    transform: translateX(-50%) rotate(-45deg);
}

.hero {
    min-height: 82vh;
    position: relative;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(20, 17, 14, 0.84), rgba(20, 17, 14, 0.62) 44%, rgba(20, 17, 14, 0.30)),
        url("images/hero.png") center/cover no-repeat;
}

.hero-content {
    max-width: 850px;
    padding: 80px 8%;
    color: white;
    position: relative;
    z-index: 2;
}

.eyebrow,
.section-tag {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 800;
    color: var(--gold-dark);
    margin-bottom: 14px;
}

.hero .eyebrow,
.section-tag.light {
    color: var(--gold);
}

.hero h1,
.intro-card h2,
.why-section h2,
.split-content h2,
.section-heading h2,
.cta-section h2,
.contact-info h2,
.social-content h2 {
    font-family: "Playfair Display", serif;
}

.hero h1 {
    font-size: clamp(42px, 6.4vw, 76px);
    line-height: 1.04;
    margin-bottom: 22px;
    max-width: 700px;
}

.hero p {
    font-size: 18px;
    line-height: 1.7;
    max-width: 650px;
}

.hero-buttons {
    margin-top: 34px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.intro-section {
    max-width: 1180px;
    margin: -70px auto 80px;
    padding: 0 24px;
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 24px;
}

.intro-card,
.stats-grid,
.price-panel,
.contact-form,
.testimonial-card {
    background: rgba(255, 251, 244, 0.94);
    border: 1px solid var(--soft-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.intro-card {
    padding: 42px;
}

.intro-card h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.intro-card p {
    color: var(--muted);
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
}

.stats-grid div {
    padding: 34px 22px;
    text-align: center;
    border-right: 1px solid var(--soft-border);
}

.stats-grid div:last-child {
    border-right: none;
}

.stats-grid strong {
    display: block;
    font-size: 32px;
    color: var(--gold-dark);
}

.stats-grid span {
    font-size: 13px;
    color: var(--muted);
    font-weight: 700;
}

.why-section,
.training-section,
.gallery-section,
.reviews-section,
.testimonial-section {
    padding: 80px 24px;
}

.why-section {
    background:
        linear-gradient(180deg, rgba(255, 251, 244, 0.42), rgba(230, 213, 188, 0.78)),
        var(--beige);
    text-align: center;
    color: var(--text);
    border-top: 1px solid var(--soft-border);
    border-bottom: 1px solid var(--soft-border);
}

.why-section h2 {
    color: var(--black);
}

.why-section h2,
.section-heading h2 {
    font-size: 40px;
    margin-bottom: 36px;
}

.feature-grid,
.course-grid,
.gallery-grid {
    max-width: 1150px;
    margin: auto;
    display: grid;
    gap: 24px;
}

.feature-grid { grid-template-columns: repeat(3, 1fr); }

.feature-card,
.course-card {
    background: rgba(255, 251, 244, 0.78);
    border: 1px solid var(--soft-border);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow);
    transition: 0.3s;
}

.feature-card:hover,
.course-card:hover,
.gallery-grid img:hover {
    transform: translateY(-8px);
}

.feature-icon,
.review-user {
    width: 68px;
    height: 68px;
    background: var(--cream);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 22px;
    color: var(--gold-dark);
    font-size: 26px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
}

.why-section .feature-card p {
    color: var(--muted);
}

.feature-card h3,
.course-card h3 {
    margin-bottom: 12px;
    font-size: 22px;
}

.feature-card p,
.course-card p,
.section-heading p,
.split-content p,
.contact-info p {
    color: var(--muted);
    line-height: 1.7;
}

.split-section {
    max-width: 1180px;
    margin: auto;
    padding: 100px 24px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.split-content h2 {
    font-size: 46px;
    margin-bottom: 18px;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px 0;
}

.service-list span {
    background: #fff8ec;
    color: var(--gold-dark);
    border: 1px solid var(--soft-border);
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
}

.price-panel {
    padding: 34px;
    background:
        linear-gradient(180deg, rgba(185, 150, 85, 0.10), rgba(185, 150, 85, 0)),
        var(--black);
    color: var(--cream);
}

.price-panel h3 {
    font-size: 26px;
    margin-bottom: 20px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(198, 164, 95, 0.25);
}

.price-row strong { color: var(--gold); }

.section-heading {
    max-width: 760px;
    text-align: center;
    margin: 0 auto 42px;
}

.course-grid { grid-template-columns: repeat(3, 1fr); }

.course-card { background: rgba(255, 251, 244, 0.94); }

.course-card strong {
    color: var(--gold-dark);
    font-size: 22px;
    margin-top: 18px;
    display: block;
}

.course-card.highlight {
    background:
        linear-gradient(135deg, rgba(185, 150, 85, 0.12), rgba(185, 150, 85, 0)),
        var(--black);
    color: var(--cream);
}

.course-card.highlight p { color: #eadcc5; }
.course-card.highlight a { color: var(--gold); font-weight: 800; }

.gallery-section {
    background: linear-gradient(180deg, var(--beige), #efe3d0);
    overflow: hidden;
}

.gallery-wrap {
    max-width: 1180px;
    margin: auto;
    display: grid;
    grid-template-columns: 46px 1fr 46px;
    gap: 18px;
    align-items: center;
}

.gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 10px 4px 24px;
}

.gallery-grid::-webkit-scrollbar { display: none; }

.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border: 4px solid var(--cream);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: 0.3s;
}

.gallery-btn,
.review-btn,
.back-top {
    border: none;
    border-radius: 50%;
    background: var(--black);
    color: var(--gold);
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.gallery-btn,
.review-btn {
    width: 46px;
    height: 46px;
    font-size: 16px;
}

.reviews-section {
    background: var(--cream);
    overflow: hidden;
}

.review-slider {
    max-width: 1180px;
    margin: auto;
    display: grid;
    grid-template-columns: 46px 1fr 46px;
    gap: 18px;
    align-items: center;
}

.review-track {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 12px 4px 28px;
}

.review-track::-webkit-scrollbar { display: none; }

.review-card {
    min-width: 310px;
    background: #fffbf4;
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--soft-border);
    text-align: center;
}

.stars {
    color: var(--gold-dark);
    display: flex;
    justify-content: center;
    gap: 5px;
    font-size: 16px;
    margin-bottom: 16px;
}

.review-card p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 18px;
}

.review-card strong {
    display: block;
    font-size: 17px;
}

.review-card span {
    color: var(--muted);
    font-size: 13px;
}

.social-section {
    padding: 100px 24px;
    background: linear-gradient(180deg, #efe3d0, var(--cream));
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.social-content {
    max-width: 500px;
    margin-left: auto;
}

.social-content h2 {
    font-size: 44px;
    margin-bottom: 16px;
}

.social-content p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 26px;
}

.social-buttons-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.facebook-widget {
    max-width: 540px;
    background: #fffbf4;
    border: 1px solid var(--soft-border);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.facebook-widget iframe {
    width: 100%;
    border-radius: 18px;
}

.cta-section {
    padding: 90px 8%;
    background:
        linear-gradient(90deg, rgba(20, 17, 14, 0.86), rgba(20, 17, 14, 0.58)),
        url("images/cta.png") center/cover no-repeat;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cta-section h2 {
    font-size: 46px;
    margin-bottom: 12px;
}

.cta-section p { color: #f3e9dd; }

.cta-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.light-btn { color: var(--text); }

.contact-section {
    max-width: 1180px;
    margin: auto;
    padding: 100px 24px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
}

.contact-info h2 {
    font-size: 44px;
    margin-bottom: 15px;
}

.contact-list { margin-top: 30px; }
.contact-list p { margin-bottom: 16px; }

.contact-list i {
    color: var(--gold-dark);
    margin-right: 8px;
    width: 18px;
}

.contact-form { padding: 36px; }

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--soft-border);
    background: var(--cream);
    padding: 16px;
    border-radius: 14px;
    margin-bottom: 16px;
    font: inherit;
}

textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form button {
    border: none;
    background: linear-gradient(135deg, #d5ba7b, var(--gold));
    color: var(--black);
    padding: 15px 26px;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
}

.footer {
    background: var(--black);
    color: var(--cream);
    padding: 70px 24px 24px;
}

.footer-grid {
    max-width: 1180px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 35px;
}

.footer-logo {
    width: 110px;
    margin-bottom: 16px;
}

.footer p,
.footer a {
    color: #e4d4bd;
    line-height: 1.8;
}

.footer a {
    display: block;
    margin-bottom: 8px;
}

.footer h4 { margin-bottom: 14px; }

.socials {
    display: flex;
    gap: 12px;
}

.socials a {
    width: 38px;
    height: 38px;
    background: var(--gold);
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--black);
}

.footer-bottom {
    text-align: center;
    margin-top: 45px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.back-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 44px;
    height: 44px;
    display: none;
    z-index: 999;
}

.back-top.show { display: grid; }

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 950px) {
    .top-bar { display: none; }
    .menu-toggle { display: block; }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 20px;
        right: 20px;
        background: var(--black);
        color: var(--cream);
        flex-direction: column;
        padding: 24px;
        border-radius: 22px;
        box-shadow: var(--shadow);
        display: none;
        border: 1px solid rgba(198, 164, 95, 0.28);
    }

    .nav-links.active { display: flex; }
    .nav-btn { display: none; }

    .intro-section,
    .split-section,
    .contact-section,
    .social-section {
        grid-template-columns: 1fr;
    }

    .cta-section {
        display: block;
        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
        margin-top: 24px;
    }

    .feature-grid,
    .course-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid { display: flex; }
    .gallery-grid img { min-width: 48%; }

    .stats-grid { grid-template-columns: 1fr; }

    .stats-grid div {
        border-right: none;
        border-bottom: 1px solid var(--soft-border);
    }

    .social-section { text-align: center; }
    .social-content { margin: auto; }
    .social-buttons-row { justify-content: center; }
    .facebook-widget { margin: auto; width: 100%; }
}

@media (max-width: 620px) {
    .navbar { padding: 12px 18px; }
    .logo img { width: 74px; }

    .hero { min-height: 78vh; }
    .hero-content { padding: 70px 24px; }
    .hero h1 { font-size: 42px; }

    .intro-section { margin-top: -40px; }

    .intro-card,
    .contact-form,
    .testimonial-card {
        padding: 28px;
    }

    .intro-card h2,
    .split-content h2,
    .section-heading h2,
    .why-section h2,
    .cta-section h2,
    .contact-info h2,
    .social-content h2 {
        font-size: 32px;
    }

    .feature-grid,
    .course-grid,
    .footer-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .gallery-wrap,
    .review-slider {
        grid-template-columns: 1fr;
    }

    .gallery-btn,
    .review-btn {
        display: none;
    }

    .gallery-grid img {
        min-width: 85%;
        height: 260px;
    }

    .review-card { min-width: 85%; }
    .facebook-widget iframe { height: 520px; }
}

