*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --black: #070707;
    --charcoal: #111;
    --iron: #1a1a1a;
    --steel: #262626;
    --gold: #c9a84c;
    --gold-light: #e8c96a;
    --gold-deep: #8a6f29;
    --white: #f5f5f5;
    --muted: #888;
    --gold-grad: linear-gradient(135deg, #e8c96a 0%, #c9a84c 50%, #8a6f29 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--gold);
    color: var(--black);
}

body::before {
    content: '';
    position: fixed;
    top: -20%;
    left: -20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: drift 18s ease-in-out infinite alternate;
}

@keyframes drift {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(40vw, 30vh);
    }
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 48px;
    background: linear-gradient(to bottom, rgba(7, 7, 7, 0.92), transparent);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: padding 0.3s, background 0.3s;
}

nav.scrolled {
    padding: 14px 48px;
    background: rgba(7, 7, 7, 0.85);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.nav-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 24px;
    letter-spacing: 0.08em;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.75;
    transition: opacity 0.2s, color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gold-grad);
    color: var(--black) !important;
    padding: 10px 22px !important;
    font-weight: 600 !important;
    opacity: 1 !important;
    box-shadow: 0 4px 18px rgba(201, 168, 76, 0.25);
    transition: transform 0.2s, box-shadow 0.2s !important;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(201, 168, 76, 0.4);
}

/* LANG SWITCH */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 100px;
    padding: 4px;
    background: rgba(0, 0, 0, 0.4);
}

.lang-btn {
    background: none;
    border: none;
    color: rgba(245, 245, 245, 0.55);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
}

.lang-btn.active {
    background: var(--gold);
    color: var(--black);
}

/* MOBILE MENU TOGGLE */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0;
    z-index: 102;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--gold);
    transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: linear-gradient(160deg, #0a0a0a 0%, #141414 100%);
    border-left: 1px solid rgba(201, 168, 76, 0.2);
    z-index: 101;
    transition: right 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    padding: 90px 32px 32px;
    display: flex;
    flex-direction: column;
}

.mobile-menu.open {
    right: 0;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.6);
}

.mobile-menu a {
    color: var(--white);
    text-decoration: none;
    padding: 16px 0;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s, transform 0.4s, color 0.2s;
}

.mobile-menu.open a {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu.open a:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu.open a:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-menu.open a:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-menu.open a:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-menu.open a:nth-child(5) {
    transition-delay: 0.3s;
}

.mobile-menu a:hover {
    color: var(--gold);
}

.mobile-menu-cta {
    background: var(--gold-grad);
    color: var(--black) !important;
    margin-top: 24px;
    text-align: center;
    border-radius: 4px;
    border-bottom: none !important;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.menu-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    display: flex;
    align-items: flex-end;
    padding: 0 48px 80px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transform: scale(1.05);
    animation: heroZoom 20s ease-out forwards;
}

@keyframes heroZoom {
    to {
        transform: scale(1);
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse at left bottom, rgba(201, 168, 76, 0.12) 0%, transparent 50%),
        linear-gradient(to right, rgba(7, 7, 7, 0.94) 35%, rgba(7, 7, 7, 0.4) 100%),
        linear-gradient(to top, rgba(7, 7, 7, 0.9) 15%, transparent 60%);
}

.hero-tag {
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-tag::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);
    animation: lineGrow 1s ease 0.3s both;
}

@keyframes lineGrow {
    from {
        width: 0;
    }

    to {
        width: 32px;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(64px, 9vw, 130px);
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 28px;
}

.hero h1 span {
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
}

.hero p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(245, 245, 245, 0.72);
    max-width: 440px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gold-grad);
    color: var(--black);
    padding: 16px 36px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(201, 168, 76, 0.25);
    cursor: pointer;
    border: none;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(201, 168, 76, 0.45);
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-ghost {
    color: var(--white);
    padding: 16px 36px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(245, 245, 245, 0.3);
    transition: border-color 0.3s, color 0.3s, background 0.3s;
    display: inline-block;
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
}

.hero-stats {
    position: absolute;
    z-index: 2;
    right: 48px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: right;
}

.stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 42px;
    font-weight: 900;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
}

/* STRIP */
.strip {
    background: var(--gold-grad);
    padding: 14px 0;
    display: flex;
    gap: 48px;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.strip-track {
    display: flex;
    gap: 48px;
    animation: scroll 30s linear infinite;
    padding-left: 48px;
}

@keyframes scroll {
    to {
        transform: translateX(-50%);
    }
}

.strip span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--black);
    flex-shrink: 0;
}

.strip span::before {
    content: '★  ';
}

/* ABOUT */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 580px;
    position: relative;
}

.about-image {
    background: url('https://images.unsplash.com/photo-1571902943202-507ec2618e8f?w=900&q=80') center/cover no-repeat;
    min-height: 460px;
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 55%, var(--charcoal));
}

.about-content {
    background: var(--charcoal);
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-tag {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.about-content h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 52px;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.about-content p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(245, 245, 245, 0.65);
    margin-bottom: 16px;
}

.about-detail {
    margin-top: 32px;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-icon {
    width: 36px;
    height: 36px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    background: rgba(201, 168, 76, 0.05);
}

.detail-text {
    font-size: 13px;
    color: rgba(245, 245, 245, 0.6);
    line-height: 1.4;
}

.detail-text strong {
    color: var(--white);
    display: block;
    font-weight: 500;
}

/* SERVICES */
.services {
    background: var(--black);
    padding: 100px 48px;
    position: relative;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
    flex-wrap: wrap;
    gap: 20px;
}

.section-header h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 56px;
    text-transform: uppercase;
    line-height: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.service-card {
    background: var(--iron);
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: background 0.4s, transform 0.4s;
    cursor: default;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(201, 168, 76, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.service-card:hover {
    background: #1f1f1f;
    transform: translateY(-4px);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-grad);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 80px;
    font-weight: 900;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 24px rgba(201, 168, 76, 0.4));
    transition: filter 0.4s;
}

.service-card:hover .service-num {
    filter: drop-shadow(0 0 32px rgba(201, 168, 76, 0.7));
}

.service-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(245, 245, 245, 0.55);
}

/* TESTIMONIALS */
.testimonials {
    background: var(--black);
    padding: 100px 48px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 56px;
}

.testimonial-card {
    background: var(--iron);
    padding: 36px 32px;
    border-left: 2px solid var(--gold);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(201, 168, 76, 0.15);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.testimonial-quote {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(245, 245, 245, 0.8);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--white);
}

/* MEMBERSHIP */
.membership {
    background: var(--charcoal);
    padding: 100px 48px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 56px;
}

.plan {
    background: var(--iron);
    padding: 48px 36px;
    position: relative;
    transition: transform 0.4s, box-shadow 0.4s;
    overflow: hidden;
}

.plan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-grad);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.5s;
}

.plan:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
}

.plan:hover::before {
    transform: scaleX(1);
}

.plan.featured {
    background: var(--gold-grad);
    transform: scale(1.02);
}

.plan.featured::before {
    display: none;
}

.plan.featured::after {
    content: '★';
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 24px;
    color: rgba(0, 0, 0, 0.4);
}

.plan-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 24px;
}

.plan.featured .plan-label {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 600;
}

.plan-price {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
    color: var(--white);
    margin-bottom: 4px;
}

.plan.featured .plan-price {
    color: var(--black);
}

.plan-period {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 32px;
}

.plan.featured .plan-period {
    color: rgba(0, 0, 0, 0.65);
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
}

.plan-features li {
    font-size: 14px;
    color: rgba(245, 245, 245, 0.65);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan.featured .plan-features li {
    color: rgba(0, 0, 0, 0.85);
    border-bottom-color: rgba(0, 0, 0, 0.12);
}

.plan-features li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 600;
    font-size: 13px;
}

.plan.featured .plan-features li::before {
    color: var(--black);
}

.plan-btn {
    display: block;
    text-align: center;
    padding: 14px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(245, 245, 245, 0.25);
    color: var(--white);
    transition: all 0.3s;
}

.plan-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
}

.plan.featured .plan-btn {
    background: var(--black);
    border-color: var(--black);
    color: var(--gold);
}

.plan.featured .plan-btn:hover {
    background: var(--charcoal);
    border-color: var(--charcoal);
}

/* CTA */
.cta-section {
    padding: 100px 48px;
    background: var(--black);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cta-section h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 64px;
    text-transform: uppercase;
    line-height: 0.95;
    margin-bottom: 20px;
}

.cta-section h2 span {
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cta-section .cta-intro {
    color: rgba(245, 245, 245, 0.6);
    font-size: 15px;
    line-height: 1.7;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-form input,
.cta-form select,
.cta-form textarea {
    background: var(--iron);
    border: 1px solid var(--steel);
    color: var(--white);
    padding: 16px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
    appearance: none;
    border-radius: 2px;
    resize: vertical;
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
    color: var(--muted);
}

.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
    border-color: var(--gold);
    background: #1f1f1f;
}

.cta-form .btn-primary {
    align-self: flex-start;
    cursor: pointer;
    border: none;
}

.form-success {
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 16px 20px;
    font-size: 14px;
    display: none;
}

.form-success.show {
    display: block;
    animation: fadeIn 0.4s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CONTACT */
.contact {
    background: var(--charcoal);
    padding: 80px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 48px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
}

.contact-text {
    font-size: 14px;
    color: rgba(245, 245, 245, 0.65);
    line-height: 1.6;
}

.contact-text strong {
    color: var(--white);
    font-weight: 500;
    display: block;
    margin-bottom: 2px;
}

.contact-text a {
    color: rgba(245, 245, 245, 0.65);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-text a:hover {
    color: var(--gold);
}

.map-container {
    background: var(--iron);
    height: 360px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.15);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) invert(92%) contrast(85%);
}

/* FOOTER */
footer {
    background: var(--black);
    padding: 40px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    border-top: 1px solid var(--steel);
}

.footer-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 22px;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-copy {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.06em;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--steel);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 14px;
    text-decoration: none;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
}

/* CALL FAB */
.call-fab {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold-grad);
    color: var(--black);
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 95;
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.45), 0 0 0 0 rgba(201, 168, 76, 0.6);
    animation: pulse 2.4s ease-out infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 24px rgba(201, 168, 76, 0.45), 0 0 0 0 rgba(201, 168, 76, 0.5);
    }

    70% {
        box-shadow: 0 8px 24px rgba(201, 168, 76, 0.45), 0 0 0 18px rgba(201, 168, 76, 0);
    }

    100% {
        box-shadow: 0 8px 24px rgba(201, 168, 76, 0.45), 0 0 0 0 rgba(201, 168, 76, 0);
    }
}

.call-fab svg {
    width: 26px;
    height: 26px;
}

/* SCROLL REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    nav {
        padding: 16px 24px;
    }

    nav.scrolled {
        padding: 12px 24px;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        padding: 0 24px 60px;
    }

    .hero-stats {
        display: none;
    }

    .about,
    .cta-section,
    .contact {
        grid-template-columns: 1fr;
    }

    .about-image {
        min-height: 260px;
    }

    .about-content {
        padding: 56px 24px;
    }

    .about-content h2 {
        font-size: 40px;
    }

    .services-grid,
    .plans-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .services,
    .membership,
    .testimonials,
    .cta-section,
    .contact {
        padding: 64px 24px;
    }

    .section-header h2,
    .cta-section h2 {
        font-size: 42px;
    }

    .contact h2 {
        font-size: 36px;
    }

    .plan.featured {
        transform: none;
    }

    footer {
        padding: 32px 24px;
        flex-direction: column;
        text-align: center;
    }

    .call-fab {
        display: flex;
    }
}

/* SHOP */
.shop {
    background: var(--black);
    padding: 100px 48px;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.shop-card {
    background: var(--iron);
    text-decoration: none;
    color: var(--white);
    overflow: hidden;
    position: relative;
    transition: transform 0.4s, box-shadow 0.4s;
    display: flex;
    flex-direction: column;
}

.shop-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 168, 76, 0.2);
}

.shop-card-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.6s;
}

.shop-card:hover .shop-card-img {
    transform: scale(1.05);
}

.shop-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--iron) 0%, transparent 60%);
}

.shop-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.shop-card-tag {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.shop-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}

.shop-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: auto;
    transition: letter-spacing 0.3s;
}

.shop-card:hover .shop-link {
    letter-spacing: 0.2em;
}

.shop-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
    padding: 32px;
    background: var(--iron);
    border-left: 2px solid var(--gold);
}

.shop-feature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.shop-feature-icon {
    width: 48px;
    height: 48px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: rgba(201, 168, 76, 0.05);
    flex-shrink: 0;
}

.shop-feature strong {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 2px;
}

.shop-feature span {
    font-size: 13px;
    color: rgba(245, 245, 245, 0.6);
}

/* SERVIS */
.service-section {
    background: var(--charcoal);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 540px;
}

.service-content {
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 52px;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.service-content p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(245, 245, 245, 0.65);
    margin-bottom: 24px;
}

.service-list {
    list-style: none;
    margin-bottom: 32px;
}

.service-list li {
    font-size: 14px;
    color: rgba(245, 245, 245, 0.75);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-list li::before {
    content: '→';
    color: var(--gold);
    font-weight: 600;
}

.service-content .btn-ghost {
    align-self: flex-start;
}

.service-image {
    background: url('https://images.unsplash.com/photo-1559348349-86f1f65817fe?w=900&q=80') center/cover no-repeat;
    position: relative;
}

.service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, transparent 60%, var(--charcoal));
}

/* SHOP/SERVIS RESPONSIVE */
@media (max-width: 900px) {
    .shop {
        padding: 64px 24px;
    }

    .shop-grid {
        grid-template-columns: 1fr;
    }

    .shop-features {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .service-section {
        grid-template-columns: 1fr;
    }

    .service-content {
        padding: 56px 24px;
    }

    .service-content h2 {
        font-size: 40px;
    }

    .service-image {
        min-height: 260px;
        order: -1;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}