/* ===== PAGE HERO (Sub-pages) ===== */
.page-hero {
    position: relative;
    padding: 160px 24px 80px;
    text-align: center;
    background-color: var(--bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.page-hero::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 10, 15, 0.75); /* var(--bg) with opacity */
    z-index: 0;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .section-tag { margin-bottom: 16px; position: relative; z-index: 1; }
.page-hero h1 {
    font-family: var(--font2);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800; line-height: 1.15;
    margin-bottom: 20px;
    position: relative; z-index: 1;
}
.page-hero p { color: var(--text2); font-size: 1.1rem; max-width: 600px; margin: 0 auto; position: relative; z-index: 1; }

/* ===== TIMELINE (About page) ===== */
.timeline { position: relative; max-width: 700px; margin: 0 auto; padding-left: 40px; border-left: 1px dashed rgba(255,255,255,0.15); }
.timeline-item {
    position: relative; margin-bottom: 56px; padding-left: 20px;
    background: transparent; border: none;
    transition: transform 0.4s ease;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item::before {
    content: ''; position: absolute; left: -46px; top: 6px;
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--bg); border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.4s ease; box-sizing: border-box;
}
.timeline-item:hover::before {
    background: var(--amber); border-color: var(--amber);
    box-shadow: 0 0 15px rgba(245,158,11,0.6);
}
.timeline-item:hover { transform: translateX(8px); }
.timeline-item h4 { font-family: var(--font2); font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; color: var(--text); letter-spacing: -0.01em; }
.timeline-item .timeline-year { font-family: var(--font2); font-size: 0.9rem; color: var(--amber); font-weight: 700; margin-bottom: 12px; display: inline-block; letter-spacing: 3px; text-transform: uppercase; }
.timeline-item p { color: var(--text2); font-size: 1rem; line-height: 1.6; max-width: 600px; }

/* ===== VALUES GRID (About page) ===== */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
    padding: 32px 24px;
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius); text-align: center;
    transition: all 0.3s ease;
}
.value-card:hover { transform: translateY(-6px); border-color: rgba(245,158,11,0.3); }
.value-card .value-icon {
    width: 56px; height: 56px; margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(245,158,11,0.1), rgba(249,115,22,0.1));
    border: 1px solid rgba(245,158,11,0.2); border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
}
.value-card .value-icon svg { width: 26px; height: 26px; stroke: var(--amber); }
.value-card h3 { font-family: var(--font2); font-size: 1.1rem; margin-bottom: 8px; }
.value-card p { color: var(--text2); font-size: 0.88rem; }

/* ===== LEGAL PAGES ===== */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-family: var(--font2); font-size: 1.4rem; margin: 40px 0 12px; color: var(--text); }
.legal-content h3 { font-family: var(--font2); font-size: 1.1rem; margin: 24px 0 8px; color: var(--text); }
.legal-content p, .legal-content li { color: var(--text2); font-size: 0.95rem; line-height: 1.7; margin-bottom: 12px; }
.legal-content ul { padding-left: 24px; margin-bottom: 16px; }
.legal-content a { color: var(--amber); text-decoration: underline; }

/* ===== PORTFOLIO FILTER ===== */
.portfolio-filters { display: flex; justify-content: center; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.filter-btn {
    padding: 8px 20px; border-radius: 100px;
    border: 1px solid var(--border); background: transparent;
    color: var(--text2); font-family: var(--font);
    font-size: 0.85rem; font-weight: 500;
    cursor: pointer; transition: all 0.3s;
}
.filter-btn:hover, .filter-btn.active {
    background: linear-gradient(135deg, var(--amber), var(--coral));
    color: #000; border-color: transparent;
}

/* ===== CONTACT PAGE GRID ===== */
.contact-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
