/* ===============================
   GLOBAL RESET
================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0B0B0C;
    color: #EDEDED;
    line-height: 1.7;
    letter-spacing: 0.2px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}


/* ===============================
   TYPOGRAPHY
================================ */

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #F5F5F5;
}

h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 28px;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

p {
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #CFCFCF;
}

span {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #9A9A9A;
}


/* ===============================
   LAYOUT
================================ */

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    padding: 120px 0;
    position: relative;
}


/* ===============================
   HERO SECTION
================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(191,163,106,0.15);
    position: relative;
}

.hero-inner {
    width: 100%;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 650px;
    margin-bottom: 3rem;
    color: #D4D4D4;
}

.hero-meta {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.hero-meta span {
    position: relative;
}

.hero-meta span::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40%;
    height: 1px;
    background-color: rgba(191,163,106,0.4);
    transition: width 0.4s ease;
}

.hero-meta span:hover::after {
    width: 100%;
}

.hero-cta {
    margin-top: 1rem;
}

.btn-primary {
    display: inline-block;
    padding: 14px 38px;
    border: 1px solid #BFA36A;
    color: #BFA36A;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.4s cubic-bezier(.16,.8,.24,1);
    background: transparent;
}

.btn-primary:hover {
    background-color: #BFA36A;
    color: #0B0B0C;
    transform: translateY(-2px);
}


/* ===============================
   PHILOSOPHY SECTION
================================ */

.philosophy {
    background-color: #111112;
}

.section-intro {
    max-width: 800px;
    margin-bottom: 80px;
}

.section-intro h2 {
    margin-bottom: 1.5rem;
    letter-spacing: 0.8px;
}

.intro-text {
    font-size: 1.15rem;
    font-weight: 300;
    color: #D8D8D8;
    max-width: 700px;
}

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

.pillar {
    padding: 40px;
    background-color: #0F0F10;
    border: 1px solid rgba(191,163,106,0.12);
    transition: all 0.4s cubic-bezier(.16,.8,.24,1);
}

.pillar:hover {
    border-color: rgba(191,163,106,0.4);
    transform: translateY(-6px);
}

.pillar p {
    font-size: 1rem;
    color: #BFBFBF;
}


/* ===============================
   SUBTLE GOLD DIVIDER LINE
================================ */

section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background-color: rgba(191,163,106,0.15);
}


/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 900px) {

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

    .hero-meta {
        flex-direction: column;
        gap: 1.2rem;
    }

    section {
        padding: 90px 0;
    }
}

/* ==========================================
   STRUCTURA EXPERIENȚEI
========================================== */

.structure {
    background-color: #0D0D0E;
    border-top: 1px solid rgba(191,163,106,0.08);
    border-bottom: 1px solid rgba(191,163,106,0.08);
}

.timeline {
    position: relative;
    margin-top: 80px;
    display: grid;
    gap: 70px;
    padding-left: 60px;
}

/* Vertical gold guide line */

.timeline::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 18px;
    width: 1px;
    height: calc(100% - 20px);
    background: linear-gradient(
        to bottom,
        rgba(191,163,106,0.15),
        rgba(191,163,106,0.35),
        rgba(191,163,106,0.15)
    );
}

.timeline-item {
    position: relative;
    padding: 35px 40px;
    background-color: #111112;
    border: 1px solid rgba(191,163,106,0.12);
    transition: all 0.5s cubic-bezier(.16,.8,.24,1);
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -48px;
    top: 45px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #0B0B0C;
    border: 1px solid #BFA36A;
    transition: all 0.4s ease;
}

.timeline-day {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #BFA36A;
    margin-bottom: 12px;
}

.timeline-item h3 {
    margin-bottom: 14px;
    letter-spacing: 0.4px;
    font-size: 1.35rem;
}

.timeline-item p {
    font-size: 1rem;
    color: #C7C7C7;
    max-width: 520px;
}

.timeline-item:hover {
    border-color: rgba(191,163,106,0.45);
    transform: translateY(-6px);
}

.timeline-item:hover::before {
    background-color: #BFA36A;
}



/* ==========================================
   MEDIUL CONTROLAT
========================================== */

.environment {
    background-color: #111112;
}

.environment-grid {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px 80px;
}

.environment-item {
    position: relative;
    padding: 20px 0;
}

.environment-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 1px;
    background-color: rgba(191,163,106,0.25);
    transition: width 0.4s ease;
}

.environment-item h3 {
    font-size: 1.35rem;
    margin-bottom: 14px;
    letter-spacing: 0.4px;
}

.environment-item p {
    font-size: 1rem;
    color: #C8C8C8;
    max-width: 480px;
}

.environment-item:hover::after {
    width: 120px;
}



/* ==========================================
   RESPONSIVE REFINEMENT
========================================== */

@media (max-width: 900px) {

    .timeline {
        padding-left: 40px;
        gap: 50px;
    }

    .timeline-item {
        padding: 28px 30px;
    }

    .environment-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* ==========================================
   INVESTIȚIE SECTION
========================================== */

.investment {
    background-color: #0C0C0D;
    border-top: 1px solid rgba(191,163,106,0.08);
}

.investment .section-intro {
    text-align: center;
    margin-bottom: 90px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.investment .section-intro h2 {
    margin-bottom: 18px;
}

.investment .intro-text {
    margin: 0 auto;
    color: #CFCFCF;
}

.investment-box {
    max-width: 720px;
    margin: 0 auto;
    padding: 70px 60px;
    background-color: #111112;
    border: 1px solid rgba(191,163,106,0.18);
    position: relative;
    transition: all 0.5s cubic-bezier(.16,.8,.24,1);
}

.investment-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background-color: rgba(191,163,106,0.35);
}

.investment-box:hover {
    border-color: rgba(191,163,106,0.45);
}

.price {
    text-align: center;
    margin-bottom: 50px;
}

.price-value {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 600;
    color: #F3F3F3;
    margin-bottom: 12px;
}

.price-note {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #BFA36A;
}

.included-list {
    list-style: none;
    margin: 50px 0;
    padding: 0;
    display: grid;
    gap: 22px;
}

.included-list li {
    position: relative;
    padding-left: 28px;
    font-size: 0.95rem;
    color: #CFCFCF;
}

.included-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #BFA36A;
}

.investment-cta {
    text-align: center;
    margin-top: 40px;
}


/* ==========================================
   FOOTER
========================================== */

footer {
    background-color: #0A0A0B;
    padding: 80px 0 50px;
    border-top: 1px solid rgba(191,163,106,0.08);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}

.footer-brand h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: #8F8F8F;
    max-width: 320px;
}

.footer-meta {
    text-align: right;
}

.footer-meta p {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #6E6E6E;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 900px) {

    .investment-box {
        padding: 50px 30px;
    }

    .price-value {
        font-size: 2.5rem;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .footer-meta {
        text-align: left;
    }
}

.back-link {
    position: absolute;
    top: 40px;
    left: 0;
    padding-left: 16px;
}

.back-link a {
    display: inline-block;
    padding: 10px 16px;
    font-size: 0.65rem;
    letter-spacing: 1.3px;
    text-transform: uppercase;

    color: rgba(255,255,255,0.45);
    text-decoration: none;

    background: rgba(255,255,255,0.015);
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 4px;

    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}

.back-link a:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(191,163,106,0.25);
    color: rgba(191,163,106,0.85);
}



/* ==========================================
   HERO UNDERLINE ANIMATION
========================================== */

.hero-title {
    position: relative;
    display: inline-block;
}

.hero-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -14px;
    width: 0%;
    height: 1px;
    background-color: rgba(191,163,106,0.6);
    animation: heroLine 1.6s cubic-bezier(.16,.8,.24,1) forwards;
    animation-delay: 0.6s;
}

@keyframes heroLine {
    to {
        width: 120px;
    }
}


/* ==========================================
   CINEMATIC HERO DIVIDER FADE
========================================== */

.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(191,163,106,0.5),
        transparent
    );
    animation: heroDivider 2s ease forwards;
    animation-delay: 1.2s;
}

@keyframes heroDivider {
    to {
        width: 65%;
    }
}


/* ==========================================
   STAGGER FADE-IN (TIMELINE)
========================================== */

.timeline-item {
    opacity: 0;
    transform: translateY(30px);
}

.timeline-item.reveal {
    animation: fadeUp 1.4s cubic-bezier(.16,.8,.24,1) forwards;
}

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


/* ==========================================
   BUTTON REFINEMENT
========================================== */

.btn-primary {
    transition: 
        background-color 0.45s cubic-bezier(.16,.8,.24,1),
        color 0.45s cubic-bezier(.16,.8,.24,1),
        border-color 0.45s cubic-bezier(.16,.8,.24,1);
}


/* ==========================================
   ULTRA SUBTLE SHADOW DEPTH SYSTEM
========================================== */

.timeline-item,
.pillar,
.investment-box {
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.25),
        0 2px 6px rgba(0,0,0,0.2);
    transition: 
        border-color 0.5s cubic-bezier(.16,.8,.24,1),
        box-shadow 0.5s cubic-bezier(.16,.8,.24,1);
}

.timeline-item:hover,
.pillar:hover,
.investment-box:hover {
    box-shadow: 
        0 18px 45px rgba(0,0,0,0.35),
        0 4px 12px rgba(0,0,0,0.25);
}

.pillar,
.environment-item,
.investment-box {
    opacity: 0;
    transform: translateY(30px);
}

.pillar.reveal,
.environment-item.reveal,
.investment-box.reveal {
    animation: fadeUp 1.4s cubic-bezier(.16,.8,.24,1) forwards;
}

.reveal-hero {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.75s ease-out, transform 0.75s ease-out;
}

.reveal-hero.reveal {
    opacity: 1;
    transform: translateY(0);
}
