/* =============================================
   PIL Public Website — Modern Design System
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* --- Design Tokens --- */
:root {
    --gold: #D4A843;
    --gold-light: #E8B84B;
    --gold-dark: #B8922E;
    --gold-glow: rgba(212, 168, 67, 0.12);

    --always-white: #ffffff;
    --always-dark: #0a0a1a;

    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;

    /* Light Theme (Default) Variables */
    --bg-main: #ffffff;
    --bg-alt: #f9fafb;
    --bg-card: #ffffff;
    --bg-nav: rgba(255, 255, 255, 0.85);
    --bg-dropdown: #ffffff;
    
    --border-color: rgba(0, 0, 0, 0.08);
    --border-card: rgba(0, 0, 0, 0.08);
    
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --text-muted: #6b7280;
    
    --logo-text-color: #111827;
    
    --nav-scrolled: rgba(255, 255, 255, 0.95);
    --nav-link-hover: rgba(0, 0, 0, 0.05);
    
    --card-shadow: 0 10px 30px rgba(0,0,0,0.05);
    --card-shadow-hover: 0 20px 40px rgba(0,0,0,0.1);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-gold: 0 4px 20px rgba(212,168,67,0.3);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Dark Theme Overrides --- */
[data-theme="dark"] {
    --bg-main: #0a0a1a;
    --bg-alt: #111127;
    --bg-card: rgba(255,255,255,0.03);
    --bg-nav: rgba(10, 10, 26, 0.85);
    --bg-dropdown: #1a1a35;
    
    --border-color: rgba(255,255,255,0.06);
    --border-card: rgba(255,255,255,0.08);
    
    --text-primary: #ffffff;
    --text-secondary: rgba(255,255,255,0.75);
    --text-muted: rgba(255,255,255,0.45);
    
    --logo-text-color: #ffffff;
    
    --nav-scrolled: rgba(10, 10, 26, 0.95);
    --nav-link-hover: rgba(255,255,255,0.06);
    
    --card-shadow: 0 20px 50px rgba(0,0,0,0.3);
    --card-shadow-hover: 0 20px 50px rgba(0,0,0,0.3), 0 0 40px rgba(212,168,67,0.05);

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.15);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.2);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.3);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    transition: background-color var(--transition), color var(--transition);
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

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

/* --- Top Bar --- */
.top-bar {
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border-color);
    font-size: 13px;
    padding: 8px 0;
    transition: background-color var(--transition), border-color var(--transition);
}

.top-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: var(--text-muted);
    transition: color var(--transition);
}
.top-bar a:hover { color: var(--gold); }

.top-bar-left { display: flex; align-items: center; gap: 12px; }
.top-bar-left .divider { color: var(--border-color); }
.top-bar-right { display: flex; gap: 16px; }

/* --- Navigation --- */
.main-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-nav);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition);
}

.main-nav.scrolled {
    background: var(--nav-scrolled);
    box-shadow: var(--shadow-md);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 52px;
    width: auto;
    display: block;
    transition: filter var(--transition);
}

[data-theme="dark"] .logo-img {
    filter: invert(1) brightness(1.2);
}

.logo-mark {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--always-dark);
    flex-shrink: 0;
}

.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 18px; color: var(--logo-text-color); line-height: 1.1; }
.logo-tagline { font-size: 11px; color: var(--text-muted); font-weight: 400; letter-spacing: 0.04em; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 16px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
    background: var(--nav-link-hover);
}

/* Dropdown */
.nav-dropdown { position: relative; }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--bg-dropdown);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 16px;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-lg);
    display: flex;
    gap: 20px;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-section { flex: 1; }
.dropdown-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    padding: 4px 8px;
    margin-bottom: 4px;
}

.dropdown-menu a {
    display: block;
    padding: 6px 8px;
    color: var(--text-secondary);
    font-size: 13px;
    border-radius: 6px;
    transition: all var(--transition);
}

.dropdown-menu a:hover {
    background: var(--nav-link-hover);
    color: var(--text-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Theme Toggle Button Style */
.theme-toggle-btn {
    background: var(--nav-link-hover);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: all var(--transition);
}

.theme-toggle-btn:hover {
    background: rgba(212, 168, 67, 0.15);
    border-color: var(--gold);
    color: var(--gold);
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--always-dark);
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-full);
    transition: all var(--transition);
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: var(--always-dark);
}

/* Mobile toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition);
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}
.mobile-overlay.active { display: block; }

/* --- Hero Section (Always Dark/Vivid) --- */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active { opacity: 1; }

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,26,0.85) 0%, rgba(10,10,26,0.5) 50%, rgba(10,10,26,0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(212,168,67,0.15);
    border: 1px solid rgba(212,168,67,0.25);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--gold-light);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero h1 {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--always-white) !important;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.8) !important;
    max-width: 540px;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 600;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
}

.btn-hero.primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--always-dark);
}
.btn-hero.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: var(--always-dark);
}

.btn-hero.secondary {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--always-white) !important;
}
.btn-hero.secondary:hover {
    background: rgba(255,255,255,0.12);
    color: var(--always-white) !important;
}

/* Hero slider dots */
.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all var(--transition);
    border: none;
}

.hero-dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

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

/* --- Section Styles --- */
.section {
    padding: 80px 0;
    transition: background-color var(--transition);
}

.section-dark {
    background: var(--bg-alt);
}

.section-gradient {
    background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-alt) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
}

/* --- Project Cards --- */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.project-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
    box-shadow: var(--card-shadow);
}

.project-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212,168,67,0.25);
    box-shadow: var(--card-shadow-hover);
}

.project-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-card-image img {
    transform: scale(1.08);
}

.project-status {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--always-white);
}

.project-status.active { background: var(--success); }
.project-status.sold_out { background: var(--danger); }
.project-status.upcoming { background: var(--warning); color: var(--always-dark); }

.project-card-body {
    padding: 22px;
}

.project-card-body h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.project-card-body .location {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.project-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-secondary);
}

.project-meta-item .label { color: var(--text-muted); }
.project-meta-item .value { font-weight: 600; color: var(--gold); }

.project-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border-color);
}

.project-price {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
}

.project-price span {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-muted);
}

.btn-view {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: rgba(212,168,67,0.12);
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition);
}

.btn-view:hover {
    background: var(--gold);
    color: var(--always-dark);
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-card {
    padding: 32px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-card);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    opacity: 0;
    transition: opacity var(--transition);
}

.about-card:hover { border-color: rgba(212,168,67,0.2); }
.about-card:hover::before { opacity: 1; }

.about-card.dark { background: var(--bg-alt); }
.about-card.gold { background: linear-gradient(135deg, rgba(212,168,67,0.08), rgba(212,168,67,0.02)); }

.about-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--gold);
}

.about-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

/* --- Values Section --- */
.values-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.value-pill {
    padding: 12px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all var(--transition);
}

.value-pill:hover {
    background: var(--gold-glow);
    border-color: rgba(212,168,67,0.3);
    color: var(--gold);
    transform: translateY(-2px);
}

/* --- Gallery Section (Public) --- */
.gallery-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gallery-preview-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
}

.gallery-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-preview-item:hover img {
    transform: scale(1.1);
}

/* --- Contact Section --- */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.contact-card-pub {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all var(--transition);
}

.contact-card-pub:hover {
    border-color: rgba(212,168,67,0.2);
    transform: translateY(-2px);
}

.contact-card-pub .dept {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 8px;
}

.contact-card-pub .name {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 6px;
}

.contact-card-pub .phone a {
    color: var(--text-secondary);
    font-size: 14px;
}

.contact-card-pub .phone a:hover {
    color: var(--gold);
}

/* --- Footer --- */
.site-footer {
    position: relative;
    background: var(--bg-alt);
    border-top: 1px solid var(--border-color);
    transition: background-color var(--transition), border-color var(--transition);
}

.footer-wave {
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    color: var(--bg-main);
    line-height: 0;
    transform: translateY(-99%);
    transition: color var(--transition);
}

.footer-wave svg {
    width: 100%;
    height: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo .logo-mark {
    width: 40px;
    height: 40px;
    font-size: 14px;
}

.footer-logo h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-logo .tagline {
    font-size: 12px;
    color: var(--text-muted);
}

.footer-about {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    background: var(--nav-link-hover);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--bg-main);
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 14px;
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-col .contact-list li {
    margin-bottom: 12px;
}

.footer-col .contact-dept {
    display: block;
    font-size: 11px;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 2px;
}

.footer-col .contact-list a {
    display: block;
    font-size: 13px;
}

.footer-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    transition: all var(--transition);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--always-dark);
}

.footer-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: var(--always-dark);
}

.footer-cta.secondary {
    background: var(--nav-link-hover);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.footer-cta.secondary:hover {
    background: var(--border-color);
    color: var(--text-primary);
    box-shadow: none;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 13px;
}

/* --- Animation Classes --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* --- Page Header (inner pages) --- */
.page-header {
    padding: 100px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-main) 100%);
    position: relative;
    transition: background-color var(--transition);
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,168,67,0.3), transparent);
}

.page-header h1 {
    font-size: clamp(30px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 8px;
}

.page-header .breadcrumb-nav {
    font-size: 14px;
    color: var(--text-muted);
}

.page-header .breadcrumb-nav a {
    color: var(--gold);
}

/* --- Project Detail --- */
.project-detail-hero {
    height: 400px;
    position: relative;
    overflow: hidden;
}

.project-detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-detail-hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-main), transparent);
    transition: background var(--transition);
}

.project-info-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 40px 0;
}

.info-sidebar {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
    padding: 28px;
    position: sticky;
    top: 100px;
    box-shadow: var(--card-shadow);
}

.info-sidebar .price-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
}

.info-sidebar .price-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.info-row .label { color: var(--text-muted); }
.info-row .value { font-weight: 600; }

/* Gallery public page */
.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.gallery-page-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    position: relative;
    transition: all var(--transition);
}

.gallery-page-item:hover {
    transform: scale(1.02);
}

.gallery-page-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Modal for gallery */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox.active { display: flex; }

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .project-info-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    
    .nav-links {
        position: fixed;
        top: 72px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 72px);
        background: var(--bg-alt);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        transition: right var(--transition);
        border-left: 1px solid var(--border-color);
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-links.open { right: 0; }

    .mobile-toggle { display: flex; }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0 0 0 16px;
        min-width: auto;
        display: none;
        flex-direction: column;
    }

    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown.open .dropdown-menu { display: flex; }

    .hero h1 { font-size: 32px; }
    .hero p { font-size: 15px; }
    
    .projects-grid { grid-template-columns: 1fr; }
    .gallery-preview { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .gallery-page-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; }
    .btn-hero { justify-content: center; }
    .gallery-preview { grid-template-columns: 1fr 1fr; }
}

/* --- CEO Message Section --- */
.ceo-message-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: center;
}

.ceo-image-container {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.ceo-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
}

.ceo-caption {
    padding: 16px 20px;
    font-size: 13px;
    line-height: 1.5;
    background: var(--bg-alt);
    border-top: 1px solid var(--border-color);
}

.ceo-caption strong {
    color: var(--gold);
    display: block;
    margin-bottom: 2px;
}

.ceo-caption span {
    color: var(--text-secondary);
}

.ceo-message-text {
    position: relative;
}

.ceo-message-text .quote-mark {
    position: absolute;
    top: -40px;
    left: -20px;
    font-size: 120px;
    font-family: 'Outfit', sans-serif;
    color: rgba(212, 168, 67, 0.1);
    line-height: 1;
    user-select: none;
    z-index: 0;
}

.ceo-message-text p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.ceo-signature {
    margin-top: 28px;
    border-left: 3px solid var(--gold);
    padding-left: 16px;
}

.ceo-signature strong {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    color: var(--text-primary);
}

.ceo-signature span {
    font-size: 13px;
    color: var(--text-muted);
    display: block;
}

@media (max-width: 992px) {
    .ceo-message-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

