/* ========================================
   THE FORGE — Privátní tréninkový klub
   Premium Dark Design · Bronze Accent
   ======================================== */

/* --- RESET & BASE --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #0B0B0F;
    --dark: #101014;
    --dark-2: #15151B;
    --dark-3: #1C1C24;
    --gray: #2A2A35;
    --gray-2: #48485A;
    --muted: #72728A;
    --light: #C5C5D0;
    --white: #EDEDED;
    --accent: #C7773C;
    --accent-light: #D49050;
    --accent-dim: rgba(199, 119, 60, 0.10);
    --accent-border: rgba(199, 119, 60, 0.18);
    --accent-glow: rgba(199, 119, 60, 0.12);
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 8px;
    --radius-lg: 14px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-accent {
    color: var(--accent);
}

/* --- HEADER --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 24px;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(11, 11, 15, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(199, 119, 60, 0.06);
}

.header__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.header__logo {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--white);
    line-height: 1.1;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 2.5px;
    color: var(--muted);
    text-transform: uppercase;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: var(--transition);
}

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

.nav-link--cta {
    background: var(--accent);
    color: var(--black);
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 12px;
    transition: var(--transition);
}

.nav-link--cta:hover {
    background: var(--accent-light);
    color: var(--black);
    transform: translateY(-1px);
}

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

.header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.header__burger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    display: block;
}

.header__burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__burger.active span:nth-child(2) {
    opacity: 0;
}

.header__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn--primary {
    background: var(--accent);
    color: var(--black);
    padding: 16px 48px;
    font-size: 15px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

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

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

.btn--primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(199, 119, 60, 0.2);
}

.btn--large {
    padding: 20px 56px;
    font-size: 16px;
}

.btn--full {
    width: 100%;
}

/* --- HERO --- */
.hero {
    position: relative;
    height: 100vh;
    max-height: 56vw;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: url('../img/hero.jpg') center top / cover no-repeat;
    z-index: 0;
}

.hero__bg::before {
    display: none;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.72) 35%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.1) 100%),
        linear-gradient(to top, rgba(11,11,15,0.95) 0%, rgba(11,11,15,0.3) 20%, transparent 35%);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 100px 24px 80px;
    width: 100%;
    max-width: 600px;
    margin: 0 0 0 max(32px, calc((100vw - 1200px) / 2));
}

.hero__badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--muted);
    border: 1px solid var(--gray);
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 40px;
    animation: fadeInDown 1s ease 0.2s both;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(64px, 9vw, 120px);
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--white);
    line-height: 0.92;
    margin-bottom: 14px;
    text-shadow: 0 0 60px rgba(199, 119, 60, 0.12), 0 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease 0.4s both;
}

.hero__subtitle {
    font-family: var(--font-body);
    font-size: clamp(9px, 1.1vw, 12px);
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 36px;
    opacity: 0.6;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero__tagline {
    font-family: var(--font-body);
    font-size: clamp(17px, 2.2vw, 22px);
    font-weight: 400;
    color: #d4d4dc;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    animation: fadeInUp 1s ease 0.8s both;
}

.hero__tagline--secondary {
    font-size: clamp(14px, 1.6vw, 17px);
    color: var(--muted);
    margin-bottom: 36px;
    animation-delay: 0.9s;
}

.hero .btn {
    animation: fadeInUp 1s ease 1.1s both;
    box-shadow: 0 4px 24px rgba(199, 119, 60, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero .btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 32px rgba(199, 119, 60, 0.4), 0 0 48px rgba(199, 119, 60, 0.15);
}

.hero__stats {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    margin-top: 48px;
    animation: fadeInUp 1s ease 1.2s both;
}

.hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__stat-value {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}

.hero__stat-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray);
}

.hero__scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeInUp 1s ease 1.4s both;
}

.hero__scroll span {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray-2);
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gray-2), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* --- LOCATION BAR --- */
.location-bar {
    background: var(--dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: 16px 0;
}

.location-bar__text {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
    text-align: center;
}

/* --- SECTIONS --- */
.section {
    padding: 120px 0;
    position: relative;
}

.section__label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px;
}

.section__label--center {
    display: block;
    text-align: center;
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 60px;
}

.section__title--center {
    text-align: center;
}

.section__intro {
    text-align: center;
    font-size: 17px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 560px;
    margin: -36px auto 52px;
}

/* --- PROBLEM / SOLUTION --- */
.section--problem {
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

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

.problem__item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 18px;
    color: var(--light);
}

.problem__icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 60, 60, 0.08);
    color: #cc4444;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.solution-card {
    background: var(--dark-2);
    border: 1px solid var(--accent-border);
    border-radius: var(--radius-lg);
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.solution-card__glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(199, 119, 60, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.solution-card__title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.solution-card__text {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.solution-card__badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    padding: 10px 20px;
    border-radius: 4px;
}

/* --- STEPS --- */
.section--steps {
    background: var(--black);
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step {
    flex: 1;
    max-width: 320px;
    text-align: center;
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
    transition: var(--transition);
}

.step:hover {
    border-color: rgba(199, 119, 60, 0.08);
    background: var(--dark);
}

.step__number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-3);
    letter-spacing: 4px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.step:hover .step__number {
    color: var(--accent);
}

.step__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    color: var(--accent);
}

.step__icon svg {
    width: 24px;
    height: 24px;
}

.step__title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.step__text {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

.step__connector {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray), transparent);
    margin-top: 110px;
    flex-shrink: 0;
}

/* --- TARGETS --- */
.section--target {
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

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

.target {
    text-align: center;
    padding: 40px 20px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(255, 255, 255, 0.015);
    transition: var(--transition);
}

.target:hover {
    border-color: var(--accent-border);
    background: var(--accent-dim);
    transform: translateY(-4px);
}

.target__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.target__icon svg {
    width: 32px;
    height: 32px;
}

.target__title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.target__text {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

/* --- GALLERY --- */
.section--gallery {
    background: var(--black);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
    margin-bottom: 48px;
}

.gallery__item {
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    background: var(--dark-2);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.gallery__item--large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    aspect-ratio: auto;
}

.gallery__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--muted);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gallery__placeholder-icon {
    width: 40px;
    height: 40px;
    opacity: 0.3;
}

.gallery__placeholder-icon svg {
    width: 100%;
    height: 100%;
}

.gallery__features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.gallery__feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--light);
}

.gallery__feature svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* --- PRICING --- */
.section--pricing {
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.pricing {
    display: flex;
    justify-content: center;
}

.pricing-card {
    max-width: 420px;
    width: 100%;
    background: var(--dark-2);
    border: 1px solid var(--accent-border);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.pricing-card:hover {
    border-color: rgba(199, 119, 60, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.pricing-card__glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(199, 119, 60, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-card__header {
    margin-bottom: 32px;
}

.pricing-card__duration {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
}

.pricing-card__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin: 12px 0 8px;
}

.pricing-card__from {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--muted);
    letter-spacing: 1px;
    align-self: flex-end;
    margin-bottom: 10px;
}

.pricing-card__amount {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
    line-height: 1;
}

.pricing-card__currency {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 500;
    color: var(--muted);
}

.pricing-card__per {
    font-size: 13px;
    color: var(--muted);
    letter-spacing: 1px;
}

.pricing-card__divider {
    width: 60px;
    height: 1px;
    background: var(--accent-border);
    margin: 0 auto 32px;
}

.pricing-card__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    text-align: left;
}

.pricing-card__features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--light);
}

.pricing-card__features svg {
    color: var(--accent);
    flex-shrink: 0;
}

.pricing-card__note {
    margin-top: 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
}

/* --- NOTICE --- */
.section--notice {
    background: var(--black);
    padding: 80px 0;
}

.notice-block {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 56px 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: var(--dark);
}

.notice-block__title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.notice-block__text {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

.notice-block__cta {
    display: flex;
    justify-content: center;
}

/* --- CTA --- */
.section--cta {
    background: var(--black);
    padding: 100px 0;
}

.cta-block {
    text-align: center;
    padding: 80px 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.04);
    background:
        radial-gradient(ellipse at center, rgba(199, 119, 60, 0.03) 0%, transparent 70%),
        var(--dark);
    position: relative;
    overflow: hidden;
}

.cta-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(199, 119, 60, 0.25), transparent);
}

.cta-block__title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.cta-block__text {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 40px;
}

.cta-block__sub {
    margin-top: 20px;
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 1px;
}

/* --- FAQ --- */
.section--faq {
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(199, 119, 60, 0.12);
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    text-align: left;
    transition: var(--transition);
}

.faq-item__question:hover {
    background: rgba(199, 119, 60, 0.02);
}

.faq-item__icon {
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item__icon span {
    position: absolute;
    background: var(--accent);
    transition: var(--transition);
}

.faq-item__icon span:first-child {
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    transform: translateY(-50%);
}

.faq-item__icon span:last-child {
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    transform: translateX(-50%);
}

.faq-item.active .faq-item__icon span:last-child {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-item__answer {
    max-height: 200px;
}

.faq-item__answer p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

/* --- FOOTER --- */
.footer {
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 80px 0 40px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer__brand .logo-text {
    font-size: 20px;
}

.footer__address {
    margin-top: 16px;
    font-size: 14px;
    color: var(--muted);
}

.footer__links h4,
.footer__contact h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer__links a,
.footer__contact a {
    display: block;
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer__links a:hover,
.footer__contact a:hover {
    color: var(--accent);
}

.footer__social {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.footer__social a {
    color: var(--muted);
    transition: var(--transition);
}

.footer__social a:hover {
    color: var(--accent);
}

.footer__bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    text-align: center;
}

.footer__bottom p {
    font-size: 12px;
    color: var(--gray-2);
    letter-spacing: 1px;
}

/* --- FLOATING CTA --- */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    background: var(--accent);
    color: var(--black);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(199, 119, 60, 0.2);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.floating-cta:hover {
    background: var(--accent-light);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 30px rgba(199, 119, 60, 0.25);
}

/* --- BOOKING --- */
.section--booking {
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.booking {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}

.booking__left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.booking__panel {
    background: var(--dark-2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.booking__panel-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 20px;
}

.booking__panel-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.booking__panel-date {
    font-size: 13px;
    color: var(--muted);
    letter-spacing: 0.5px;
}

/* Horizontal Day Picker */
.daypick {
    display: flex;
    align-items: stretch;
    gap: 6px;
    background: var(--dark-2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 10px 8px;
}

.daypick__nav {
    flex-shrink: 0;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    cursor: pointer;
    color: var(--muted);
    transition: var(--transition);
}

.daypick__nav:hover {
    border-color: var(--accent-border);
    color: var(--accent);
}

.daypick__track {
    display: flex;
    gap: 4px;
    flex: 1;
    overflow: hidden;
}

.daypick__day {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 10px 4px;
    border-radius: 10px;
    border: 1px solid transparent;
    background: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.daypick__label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--gray-2);
    line-height: 1;
    transition: var(--transition);
}

.daypick__num {
    font-size: 18px;
    font-weight: 700;
    color: var(--muted);
    line-height: 1.2;
    transition: var(--transition);
}

.daypick__month {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--gray);
    line-height: 1;
    transition: var(--transition);
}

.daypick__day--today .daypick__label {
    color: var(--accent);
}

.daypick__day--today .daypick__num {
    color: var(--light);
}

.daypick__day--weekend .daypick__num {
    color: var(--accent-light);
}

.daypick__day:hover {
    background: rgba(199, 119, 60, 0.06);
    border-color: var(--accent-border);
}

.daypick__day:hover .daypick__num {
    color: var(--white);
}

.daypick__day--selected {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
    box-shadow: 0 0 18px rgba(199, 119, 60, 0.35), 0 2px 8px rgba(199, 119, 60, 0.2);
    transform: scale(1.04);
}

.daypick__day--selected .daypick__label,
.daypick__day--selected .daypick__num,
.daypick__day--selected .daypick__month {
    color: var(--black) !important;
}

/* Slots */
.slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.slot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 8px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--dark-3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-body);
}

.slot:hover {
    border-color: var(--accent-border);
    background: rgba(199, 119, 60, 0.06);
    transform: translateY(-1px);
}

.slot--selected {
    border-color: var(--accent) !important;
    border-width: 1.5px;
    background: rgba(199, 119, 60, 0.14) !important;
    box-shadow: 0 0 14px rgba(199, 119, 60, 0.2), inset 0 0 0 1px rgba(199, 119, 60, 0.08);
    transform: scale(1.02);
}

.slot__time {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.3px;
}

.slot__bottom {
    display: flex;
    align-items: center;
    gap: 6px;
}

.slot__price {
    font-size: 13px;
    color: var(--light);
    font-weight: 600;
    letter-spacing: 0.2px;
}

.slot--selected .slot__price {
    color: var(--accent);
    font-weight: 700;
}

.slot__tag {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(199, 119, 60, 0.12);
    color: var(--accent);
}

.slot--night .slot__tag {
    background: rgba(100, 120, 200, 0.12);
    color: #8899cc;
}

/* Capacity note */
.booking__capacity-note {
    font-size: 13px;
    color: var(--gray-2);
    text-align: center;
    letter-spacing: 0.3px;
    padding: 12px 0 0;
}

/* Summary */
.booking__right {
    position: sticky;
    top: 96px;
}

.booking__summary {
    background: var(--dark-2);
    border: 1px solid var(--accent-border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
}

.summary__title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.summary__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px 0;
    color: var(--gray-2);
}

.summary__empty p {
    font-size: 14px;
    color: var(--muted);
}

.summary__rows {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.summary__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary__label {
    font-size: 13px;
    color: var(--muted);
}

.summary__value {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.summary__divider {
    width: 100%;
    height: 1px;
    background: var(--accent-border);
    margin: 20px 0;
}

.summary__price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 24px;
}

.summary__price-label {
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
}

.summary__price {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1px;
}

.summary__price-note {
    font-size: 11px;
    color: var(--muted);
    text-align: right;
    margin-top: 2px;
    letter-spacing: 0.3px;
    font-weight: 400;
}

.summary__cta {
    margin-top: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.summary__cta:not(:disabled):hover {
    box-shadow: 0 4px 20px rgba(199, 119, 60, 0.4), 0 0 40px rgba(199, 119, 60, 0.15);
    transform: translateY(-2px);
}

.summary__cta:not(:disabled):active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(199, 119, 60, 0.3);
}

.summary__cta:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* --- BOOKING MODAL --- */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal--open {
    display: flex;
}

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.modal__dialog {
    position: relative;
    background: var(--dark-2);
    border: 1px solid var(--accent-border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    width: 90%;
    max-width: 460px;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--muted);
    transition: var(--transition);
}

.modal__close:hover {
    border-color: var(--accent-border);
    color: var(--accent);
}

.modal__title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.modal__summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--dark-3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 14px 18px;
    margin-bottom: 28px;
}

.modal__summary-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.modal__summary-date {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.modal__summary-time {
    font-size: 13px;
    color: var(--muted);
}

.modal__summary-price {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.5px;
}

.modal__form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.modal__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.modal__label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--muted);
}

.modal__input {
    background: var(--dark-3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--white);
    transition: var(--transition);
    outline: none;
}

.modal__input::placeholder {
    color: var(--gray-2);
}

.modal__input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-dim);
}

.modal__input--error {
    border-color: #e05555 !important;
    box-shadow: 0 0 0 3px rgba(224, 85, 85, 0.12) !important;
}

.modal__error {
    font-size: 13px;
    color: #e05555;
    min-height: 0;
    margin: 0;
}

.modal__submit {
    margin-top: 4px;
}

.modal__success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px 0;
    text-align: center;
}

.modal__success-icon {
    color: var(--accent);
}

.modal__success-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.modal__success-text {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.6;
}

.modal__success-btn {
    margin-top: 8px;
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.6); }
}

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate="fade-right"] {
    transform: translateX(-30px);
}

[data-animate="fade-left"] {
    transform: translateX(30px);
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0, 0);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .targets {
        grid-template-columns: repeat(3, 1fr);
    }

    .problem-grid {
        gap: 40px;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        max-height: none;
        height: 100vh;
    }

    .hero__content {
        max-width: 80%;
        margin: 0 0 0 24px;
    }

    .hero__overlay {
        background:
            linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.25) 100%),
            linear-gradient(to top, rgba(11,11,15,0.95) 0%, transparent 30%);
    }

    .header__nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(11, 11, 15, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }

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

    .header__nav .nav-link {
        font-size: 18px;
        letter-spacing: 3px;
    }

    .header__burger {
        display: flex;
    }

    .hero__stats {
        gap: 24px;
    }

    .hero__stat-value {
        font-size: 28px;
    }

    .section {
        padding: 80px 0;
    }

    .section__title {
        margin-bottom: 40px;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .steps {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .step__connector {
        width: 1px;
        height: 40px;
        margin: 0;
        background: linear-gradient(to bottom, transparent, var(--gray), transparent);
    }

    .targets {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

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

    .gallery__item--large {
        grid-column: 1 / -1;
        grid-row: auto;
        aspect-ratio: 16/9;
    }

    .gallery__features {
        gap: 16px;
    }

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

    .booking__right {
        position: static;
    }

    .slots {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card {
        padding: 36px 28px;
    }

    .pricing-card__amount {
        font-size: 56px;
    }

    .cta-block {
        padding: 60px 24px;
    }

    .notice-block {
        padding: 40px 24px;
    }

    .section--notice {
        padding: 60px 0;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero {
        justify-content: center;
        max-height: none;
        height: 100vh;
    }

    .hero__content {
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
        padding: 100px 20px 80px;
    }

    .hero__overlay {
        background:
            linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.45) 50%, rgba(11,11,15,0.95) 100%);
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__title {
        letter-spacing: 0.06em;
    }

    .hero__stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero__stat-divider {
        width: 40px;
        height: 1px;
    }

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

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

    .gallery__item--large {
        aspect-ratio: 4/3;
    }

    .btn--large {
        padding: 16px 40px;
        font-size: 14px;
    }
}
