/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding-top: var(--header-h);
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('../media/hero-poster.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.72) saturate(1.15) contrast(1.05);
    transform: scale(1.05);
    animation: heroZoom 20s var(--easing-soft) infinite alternate;
}
@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.15); }
}
/* Hero background video (desktop only; sits above the poster image) */
.hero-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) saturate(1.12) contrast(1.05);
}
/* Gradient scrim above bg/video for text legibility */
.hero-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse at 28% 50%, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.35) 60%, rgba(10,10,10,0.55) 100%),
        linear-gradient(180deg, rgba(10,10,10,0.45) 0%, transparent 35%, rgba(10,10,10,0.8) 100%);
}
.hero-inner { position: relative; z-index: 2; flex: 1; display: flex; align-items: center; }
.hero-content { max-width: 760px; }
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.35em;
    color: var(--gold);
    margin-bottom: 40px;
    text-transform: uppercase;
}
.hero-eyebrow::before {
    content: '';
    width: 40px; height: 1px;
    background: var(--gold);
}
.hero h1 {
    font-size: clamp(56px, 8.5vw, 124px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 40px;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line span {
    display: inline-block;
    animation: lineUp 1.2s var(--easing) forwards;
    transform: translateY(110%);
}
.hero h1 .line:nth-child(2) span { animation-delay: 0.15s; }
.hero h1 .line:nth-child(3) span { animation-delay: 0.3s; }
@keyframes lineUp {
    to { transform: translateY(0); }
}
.hero-desc {
    font-size: 18px;
    color: var(--text-mute);
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 56px;
    opacity: 0;
    animation: fadeUp 1s var(--easing) 0.7s forwards;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s var(--easing) 0.9s forwards;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero stats strip */
.hero-stats {
    position: relative;
    z-index: 2;
    padding: 60px 0 80px;
    border-top: 1px solid var(--border);
    margin: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 40px;
    align-items: end;
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
}
.hero-stat .num {
    font-family: 'Paperlogy', serif;
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 12px;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-stat .label {
    font-size: 13px;
    color: var(--text-mute);
    letter-spacing: 0.05em;
}
.scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    letter-spacing: 0.4em;
    color: var(--text-dim);
    text-transform: uppercase;
}
.scroll-hint::after {
    content: '';
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--text-dim), transparent);
    animation: scrollHint 2s var(--easing) infinite;
}
@keyframes scrollHint {
    0%, 100% { transform: scaleY(1); transform-origin: top; opacity: 1; }
    50% { transform: scaleY(0.3); transform-origin: top; opacity: 0.3; }
}

/* ===== Tour Cards ===== */
.tour-overview {
    padding: 160px 0 140px;
    background: var(--bg);
}
.tour-overview-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
    gap: 40px;
    flex-wrap: wrap;
}
.tour-overview-head h2 {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.tour-card {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}
.tour-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
}
.tour-card-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s var(--easing);
}
.tour-card:hover .tour-card-img { transform: scale(1.08); }
.tour-card-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 40px;
    z-index: 2;
    transition: transform 0.5s var(--easing);
}
.tour-card:hover .tour-card-content { transform: translateY(-8px); }
.tour-card .tag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 16px;
}
.tour-card h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 16px;
}
.tour-card .more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-mute);
    letter-spacing: 0.1em;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s var(--easing);
}
.tour-card:hover .more { opacity: 1; transform: translateY(0); }

/* ===== Why section ===== */
.why-section {
    padding: 160px 0;
    background: var(--bg-elev);
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}
.why-text h2 {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
}
.why-text p {
    color: var(--text-mute);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 48px;
}
.why-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.why-stat {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 40px 36px;
    border-radius: 4px;
    position: relative;
    transition: all 0.4s var(--easing);
}
.why-stat:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}
.why-stat .num {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 16px;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.why-stat .label {
    font-size: 14px;
    color: var(--text-mute);
}

/* ===== Showcase ===== */
.showcase {
    padding: 160px 0;
    background: var(--bg);
}
.showcase-head {
    text-align: center;
    margin-bottom: 100px;
}
.showcase-head h2 {
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}
.showcase-head p {
    color: var(--text-mute);
    max-width: 560px;
    margin: 0 auto;
}
.showcase-rows { display: flex; flex-direction: column; gap: 120px; }
.showcase-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.showcase-row.reverse { direction: rtl; }
.showcase-row.reverse > * { direction: ltr; }

.showcase-img {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 4px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}
.showcase-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212,175,106,0.08), transparent 50%);
}
.showcase-text .index {
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 0.3em;
    margin-bottom: 24px;
}
.showcase-text h3 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 24px;
}
.showcase-text p {
    color: var(--text-mute);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 32px;
}
.showcase-text ul { display: flex; flex-direction: column; gap: 12px; }
.showcase-text li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text);
    font-size: 15px;
}
.showcase-text li::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===== Final CTA ===== */
.final-cta {
    padding: 180px 0;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(212,175,106,0.06), transparent 60%), var(--bg);
    position: relative;
    overflow: hidden;
}
.final-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.final-cta .eyebrow { margin-bottom: 40px; }
.final-cta h2 {
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
}
.final-cta h2 .num {
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}
.final-cta p {
    color: var(--text-mute);
    font-size: 17px;
    max-width: 560px;
    margin: 0 auto 56px;
    line-height: 1.8;
}
.final-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Mobile */
@media (max-width: 1024px) {
    .tour-grid { grid-template-columns: 1fr 1fr; }
    .why-grid, .showcase-row { grid-template-columns: 1fr; gap: 60px; }
    .showcase-row.reverse { direction: ltr; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .scroll-hint { grid-column: span 2; margin: 20px auto 0; }
}
@media (max-width: 768px) {
    .hero-video { display: none; }
    .tour-grid { grid-template-columns: 1fr; }
    .tour-overview { padding: 80px 0; }
    .why-section, .showcase, .final-cta { padding: 80px 0; }
    .hero h1 { font-size: 52px; }
    .hero-desc { font-size: 16px; }
    .why-stats { grid-template-columns: 1fr; }
    .showcase-rows { gap: 60px; }
    .hero-stats { padding-left: 20px; padding-right: 20px; }
    .tour-card-content { padding: 24px; }
}
