:root {
    --gold: #b8963e;
    --gold-light: #d4b65c;
    --gold-pale: #f0e6cd;
    --gold-dark: #7a6318;
    --gold-rich: #a3841e;
    --gold-glow: rgba(184, 150, 62, 0.28);
    --gold-subtle: rgba(184, 150, 62, 0.12);
    --dark: #181820;
    --dark-soft: #24242f;
    --charcoal: #36364a;
    --white: #ffffff;
    --bg: #ece7df;
    --bg-warm: #e5dfd6;
    --bg-section: #f5f2ec;
    --border: #ddd7cc;
    --border-light: #e8e3da;
    --text: #1e1e2a;
    --text-secondary: #4e4c58;
    --text-muted: #656370;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-xs: 0 1px 3px rgba(24,24,32,0.06);
    --shadow-sm: 0 2px 12px rgba(24,24,32,0.08);
    --shadow: 0 4px 22px rgba(24,24,32,0.1);
    --shadow-md: 0 8px 35px rgba(24,24,32,0.12);
    --shadow-lg: 0 20px 55px rgba(24,24,32,0.15);
    --shadow-gold: 0 4px 28px rgba(184, 150, 62, 0.3);
    --radius: 14px;
    --radius-lg: 22px;
    --radius-full: 100px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.75;
    background: var(--bg);
    overflow-x: hidden;
}
a { color: var(--gold-dark); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--dark); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

/* ======================== */
/*        NAVBAR            */
/* ======================== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(236, 231, 223, 0.92);
    backdrop-filter: blur(24px) saturate(1.2); -webkit-backdrop-filter: blur(24px) saturate(1.2);
    border-bottom: 2px solid var(--gold);
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(236, 231, 223, 0.97);
    box-shadow: 0 2px 28px rgba(24, 24, 32, 0.1);
    border-bottom-color: var(--gold);
}
.navbar-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 76px;
}
.navbar-logo { display: flex; align-items: center; gap: 2px; font-size: 1.5rem; font-weight: 700; }
.logo-lux {
    color: #8a6e1f;
    font-family: var(--font-heading);
    letter-spacing: 4px;
}
.logo-studio {
    color: var(--dark);
    font-family: var(--font-heading);
    letter-spacing: 4px;
    font-weight: 400;
}
.navbar-menu { display: flex; align-items: center; gap: 2px; }
.navbar-menu > li > a {
    color: var(--text-secondary);
    padding: 10px 14px; font-size: 0.87rem;
    font-weight: 500; display: flex; align-items: center; gap: 5px;
    border-radius: 10px; transition: var(--transition);
    letter-spacing: 0.1px;
}
.navbar-menu > li > a:hover { color: var(--dark); background: var(--bg-warm); }
.navbar-menu > li > a.nav-cta {
    background: var(--gold);
    color: var(--dark) !important;
    padding: 10px 24px; border-radius: var(--radius-full);
    font-weight: 700; letter-spacing: 0.2px;
    box-shadow: var(--shadow-gold);
}
.navbar-menu > li > a.nav-cta:hover {
    background: var(--gold-rich);
    transform: translateY(-1px);
    box-shadow: 0 6px 30px rgba(184, 150, 62, 0.35);
    color: var(--white) !important;
}
.navbar-menu > li > a i { font-size: 0.55rem; opacity: 0.5; }

.has-dropdown { position: relative; }
.dropdown {
    position: absolute; top: calc(100% + 10px); left: -8px; min-width: 240px;
    background: var(--bg-section);
    border: 1px solid var(--border);
    border-radius: var(--radius); box-shadow: var(--shadow-md);
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: var(--transition); padding: 8px 0; z-index: 100;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
    display: block; padding: 10px 20px; color: var(--text-secondary);
    font-size: 0.87rem; transition: var(--transition);
}
.dropdown li a:hover {
    background: var(--bg-warm);
    color: var(--dark); padding-left: 24px;
}

.navbar-toggle {
    display: none; background: none; border: none; cursor: pointer;
    flex-direction: column; gap: 5px; padding: 8px;
}
.navbar-toggle span { width: 22px; height: 1.5px; background: var(--dark); transition: var(--transition); border-radius: 2px; }

/* ======================== */
/*     WHATSAPP FLOAT       */
/* ======================== */
.whatsapp-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    width: 58px; height: 58px; background: #25d366;
    color: white; border-radius: 50%; display: flex;
    align-items: center; justify-content: center; font-size: 1.7rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: var(--transition); animation: pulse-wa 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.08); color: white; box-shadow: 0 6px 30px rgba(37,211,102,0.4); }
@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.3); }
    50% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
}

/* ======================== */
/*          HERO            */
/* ======================== */
.hero {
    display: flex; align-items: center;
    background: var(--dark);
    color: var(--white);
    padding: 120px 0 80px;
    position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: -30%; left: -10%;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(184,150,62,0.12) 0%, transparent 60%);
    pointer-events: none;
}
.hero::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 4px; background: var(--gold);
}
.hero-bg-figure {
    position: absolute; top: -10%; right: -5%;
    width: 58%; height: 120%;
    background: url('../images/hero-bg-model.webp') center 15% / cover no-repeat;
    opacity: 0.35;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 35%, black 85%, transparent 100%),
                        linear-gradient(to bottom, transparent 0%, black 12%, black 80%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image: linear-gradient(to right, transparent 0%, black 35%, black 85%, transparent 100%),
                linear-gradient(to bottom, transparent 0%, black 12%, black 80%, transparent 100%);
    mask-composite: intersect;
    pointer-events: none; z-index: 0;
    filter: grayscale(15%) contrast(1.15) brightness(1.25);
}
.hero-inner {
    display: grid; grid-template-columns: 1fr;
    align-items: center; position: relative; z-index: 1;
    max-width: 640px; margin-right: auto;
}
.hero-content { text-align: left; margin-left: -380px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gold);
    border: none;
    color: var(--dark); padding: 10px 24px; border-radius: var(--radius-full);
    font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 2.5px; margin-bottom: 24px;
    box-shadow: var(--shadow-gold);
}
.hero-badge i { font-size: 0.7rem; }
.hero h1 {
    font-family: var(--font-heading); font-size: 3rem; font-weight: 800;
    line-height: 1.15; margin-bottom: 20px;
    color: var(--white);
    position: relative;
}
.hero h1 span {
    color: var(--gold-light);
}
.hero p {
    font-size: 1.05rem; color: rgba(255,255,255,0.7); max-width: 480px;
    margin: 0 0 32px; line-height: 1.85;
    position: relative;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; position: relative; }

/* ======================== */
/*        BUTTONS           */
/* ======================== */
.btn {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 14px 32px; border-radius: var(--radius-full); font-size: 0.9rem;
    font-weight: 600; cursor: pointer; border: none;
    transition: var(--transition); text-decoration: none;
    letter-spacing: 0.2px;
}
.btn-gold {
    background: var(--gold);
    color: var(--dark);
    box-shadow: var(--shadow-gold);
    font-weight: 700;
}
.btn-gold:hover {
    background: var(--dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--gold-light);
}
.btn-outline {
    background: transparent; color: var(--dark);
    border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-dark); transform: translateY(-2px); }
.btn-dark {
    background: var(--dark); color: var(--white);
    box-shadow: var(--shadow-sm);
}
.btn-dark:hover { background: var(--charcoal); transform: translateY(-2px); color: var(--white); box-shadow: var(--shadow); }
.btn-navy { background: var(--dark); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-navy:hover { background: var(--charcoal); transform: translateY(-2px); color: var(--white); }
.btn-sm { padding: 11px 22px; font-size: 0.84rem; }
.btn-white {
    background: var(--white); color: var(--dark);
    box-shadow: var(--shadow-sm);
}
.btn-white:hover { box-shadow: var(--shadow); transform: translateY(-2px); color: var(--dark); }

/* ======================== */
/*        SECTIONS          */
/* ======================== */
.section { padding: 110px 0; position: relative; }
.section-dark {
    background: var(--dark);
    color: var(--white);
}
.section-navy { background: var(--dark); color: var(--white); }
.section-warm { background: var(--bg-section); }
.section-cream { background: var(--bg-section); }
.section-white { background: var(--white); }
.section-gold {
    background: var(--gold);
    color: var(--dark);
}
.section-gold .section-badge { background: var(--dark); color: var(--gold-light); }
.section-gold .section-header h2 { color: var(--dark); }
.section-gold .section-header p { color: var(--dark-soft); }
.section-lifted {
    background: var(--white);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    margin-top: -40px; position: relative; z-index: 2;
    box-shadow: 0 -4px 30px rgba(40,35,25,0.04);
}
.section-header { text-align: center; margin-bottom: 70px; }
.section-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gold);
    color: var(--dark); font-size: 0.72rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: 3.5px;
    margin-bottom: 16px;
    padding: 6px 18px; border-radius: var(--radius-full);
}
.section-dark .section-badge,
.section-navy .section-badge { background: var(--gold); color: var(--dark); }
.section-header h2 {
    font-family: var(--font-heading); font-size: 2.6rem;
    font-weight: 800; margin-bottom: 18px; line-height: 1.2;
    color: var(--dark);
}
.section-dark .section-header h2,
.section-navy .section-header h2 { color: var(--white); }
.section-header p {
    color: var(--text-secondary); font-size: 1.05rem;
    max-width: 580px; margin: 0 auto; line-height: 1.8;
}
.section-dark .section-header p,
.section-navy .section-header p { color: rgba(255,255,255,0.7); }

/* Decorative gold line divider */
.gold-divider {
    width: 80px; height: 3px; margin: 0 auto 20px;
    background: var(--gold);
    border-radius: 3px;
}
.section-header .gold-divider { margin: 18px auto 0; }

/* Decorative dot pattern (used as bg accent) */
.dot-accent {
    position: absolute; width: 120px; height: 120px;
    background-image: radial-gradient(var(--gold-pale) 1.5px, transparent 1.5px);
    background-size: 14px 14px; opacity: 0.5; pointer-events: none;
}

/* Accent corner bracket (unique detail on cards) */
.accent-corner { position: relative; }
.accent-corner::before {
    content: ''; position: absolute; top: -1px; left: -1px;
    width: 28px; height: 28px;
    border-top: 2px solid var(--gold); border-left: 2px solid var(--gold);
    border-radius: var(--radius) 0 0 0;
    opacity: 0; transition: var(--transition);
}
.accent-corner:hover::before { opacity: 1; }

/* ======================== */
/*     FEATURES GRID        */
/* ======================== */
.features-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 20px;
}
.feature-card {
    text-align: center; padding: 40px 24px;
    background: rgba(255,255,255,0.04);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
}
.feature-card::after {
    content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 40px; height: 2px;
    background: var(--gold); opacity: 0; transition: var(--transition);
    border-radius: 2px;
}
.feature-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
    border-color: rgba(184,150,62,0.15);
}
.feature-card:hover::after { opacity: 1; width: 60px; }
.feature-icon {
    width: 58px; height: 58px;
    background: var(--gold);
    border-radius: 14px; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; font-size: 1.2rem; color: var(--dark);
    box-shadow: 0 4px 18px rgba(184,150,62,0.3);
}
.feature-card h3 { font-size: 1rem; margin-bottom: 10px; color: var(--white); font-weight: 600; }
.feature-card p { font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.7; }

/* ======================== */
/*     ABOUT PREVIEW        */
/* ======================== */
.about-preview { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-content h2 { font-family: var(--font-heading); font-size: 2.4rem; margin-bottom: 20px; line-height: 1.2; color: var(--dark); }
.about-content p { color: var(--text-secondary); margin-bottom: 16px; line-height: 1.85; }
.about-content p a:not(.btn) { text-decoration: underline; text-decoration-color: var(--gold-pale); text-underline-offset: 3px; }
.about-content p a:not(.btn):hover { text-decoration-color: var(--gold-dark); }
.about-image {
    border-radius: var(--radius-lg); overflow: hidden; position: relative;
    min-height: 440px;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--gold);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; }
.about-image-placeholder {
    font-size: 5rem; color: var(--gold); opacity: 0.35;
    display: flex; align-items: center; justify-content: center;
    width: 100%; height: 100%;
    background: linear-gradient(145deg, var(--dark) 0%, var(--dark-soft) 100%);
}
.about-stats { display: flex; gap: 40px; margin-top: 36px; }
.stat-item { text-align: center; }
.stat-item h3 {
    font-family: var(--font-heading); font-size: 2.4rem;
    color: var(--dark); font-weight: 800;
    position: relative; display: inline-block;
}
.stat-item h3::after {
    content: ''; display: block; width: 100%; height: 3px;
    background: var(--gold); border-radius: 3px;
    margin-top: 4px;
}
.stat-item p { font-size: 0.84rem; color: var(--text-muted); margin-top: 4px; letter-spacing: 0.2px; }

/* ======================== */
/*     PROCESS / STEPS      */
/* ======================== */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card {
    text-align: center; padding: 48px 28px;
    background: var(--white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm); position: relative;
    transition: var(--transition); border: 1px solid var(--border-light);
    border-top: 3px solid var(--gold);
}
.step-card::after {
    content: ''; position: absolute; bottom: -1px; left: 50%; transform: translateX(-50%);
    width: 40%; height: 3px;
    background: var(--dark); border-radius: 3px 3px 0 0;
    opacity: 0; transition: var(--transition);
}
.step-card:hover {
    transform: translateY(-5px); box-shadow: var(--shadow-md);
    border-color: var(--gold);
}
.step-card:hover::after { opacity: 1; }
.step-number {
    width: 54px; height: 54px;
    background: var(--dark);
    color: var(--gold-light); font-family: var(--font-heading);
    font-size: 1.3rem; font-weight: 700; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 22px;
    box-shadow: var(--shadow-sm);
}
.step-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--dark); }
.step-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }

/* ======================== */
/*      TESTIMONIALS        */
/* ======================== */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 24px; }
.testimonial-card {
    background: var(--white); padding: 36px; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm); position: relative;
    transition: var(--transition);
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--gold);
}
.testimonial-card:hover {
    transform: translateY(-3px); box-shadow: var(--shadow);
    border-left-color: var(--dark);
}
.testimonial-card .quote-icon { font-size: 1.8rem; color: var(--gold); margin-bottom: 14px; }
.testimonial-card p { color: var(--text-secondary); font-size: 0.93rem; line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testimonial-card .author {
    font-weight: 600; color: var(--dark); font-style: normal; font-size: 0.9rem;
    display: flex; align-items: center; gap: 10px;
}
.testimonial-card .author::before {
    content: ''; width: 20px; height: 1.5px;
    background: var(--gold); display: block;
}

/* ======================== */
/*      BLOG CARDS          */
/* ======================== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 24px; }
.blog-card {
    background: var(--white); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-sm);
    transition: var(--transition); border: 1px solid var(--border-light);
}
.blog-card:hover {
    transform: translateY(-5px); box-shadow: var(--shadow-md);
    border-color: var(--gold-pale);
}
.blog-card-image {
    height: 200px;
    background: linear-gradient(145deg, var(--bg-warm), var(--border));
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 2.5rem; overflow: hidden;
}
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 28px; }
.blog-card-date {
    display: inline-block;
    font-size: 0.7rem; color: var(--dark); font-weight: 700;
    margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px;
    background: var(--gold); padding: 3px 12px; border-radius: var(--radius-full);
}
.blog-card-body h3 { font-size: 1.08rem; margin-bottom: 10px; line-height: 1.45; }
.blog-card-body h3 a { color: var(--dark); }
.blog-card-body h3 a:hover { color: var(--gold-dark); }
.blog-card-body p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }
.blog-card .read-more {
    color: var(--dark); font-weight: 700; font-size: 0.85rem;
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--gold-subtle); padding: 6px 14px; border-radius: var(--radius-full);
}
.blog-card .read-more i { color: var(--gold); }
.blog-card .read-more:hover { background: var(--gold); color: var(--dark); gap: 10px; }
.blog-card .read-more:hover i { color: var(--dark); }

/* ======================== */
/*     GALLERY              */
/* ======================== */
.gallery-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.gallery-item {
    border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-sm); transition: var(--transition);
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.4s ease; aspect-ratio: 4/3;
}
.gallery-item:hover img { transform: scale(1.05); }
@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
@media (max-width: 480px) { .gallery-grid { gap: 8px; } .gallery-item { border-radius: 8px; } }

.gallery-masonry {
    columns: 4; column-gap: 16px;
}
.gallery-thumb {
    display: block; margin-bottom: 16px; break-inside: avoid;
    border-radius: var(--radius); overflow: hidden;
    position: relative; cursor: pointer;
    box-shadow: var(--shadow-sm); transition: var(--transition);
}
.gallery-thumb:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery-thumb img { width: 100%; height: auto; display: block; transition: transform 0.4s ease; }
.gallery-thumb:hover img { transform: scale(1.05); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(24,24,32,0.5);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition);
}
.gallery-overlay i { color: var(--white); font-size: 1.6rem; }
.gallery-thumb:hover .gallery-overlay { opacity: 1; }
@media (max-width: 992px) { .gallery-masonry { columns: 3; } }
@media (max-width: 768px) { .gallery-masonry { columns: 2; column-gap: 12px; } .gallery-thumb { margin-bottom: 12px; } }
@media (max-width: 480px) { .gallery-masonry { columns: 2; column-gap: 8px; } .gallery-thumb { margin-bottom: 8px; border-radius: 8px; } }

/* Lightbox */
.lightbox {
    position: fixed; inset: 0; z-index: 10000;
    background: rgba(0,0,0,0.92); display: flex;
    align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-content { max-width: 90vw; max-height: 85vh; position: relative; }
.lightbox-content img {
    max-width: 90vw; max-height: 85vh; object-fit: contain;
    border-radius: 8px; box-shadow: 0 10px 60px rgba(0,0,0,0.5);
}
.lightbox-close {
    position: absolute; top: 20px; right: 28px;
    background: none; border: none; color: var(--white);
    font-size: 2.5rem; cursor: pointer; z-index: 10;
    line-height: 1; opacity: 0.7; transition: var(--transition);
}
.lightbox-close:hover { opacity: 1; transform: scale(1.1); }
.lightbox-prev, .lightbox-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.1); border: none;
    color: var(--white); font-size: 1.4rem; cursor: pointer;
    width: 50px; height: 50px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition); z-index: 10;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); color: var(--dark); }
.lightbox-counter {
    position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,0.6); font-size: 0.9rem; font-weight: 600;
}

/* ======================== */
/*     PAGE CONTENT         */
/* ======================== */
.page-hero {
    background: var(--bg-section);
    color: var(--dark); padding: 160px 0 75px; text-align: center;
    position: relative; overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; top: -30%; right: -10%;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(184,150,62,0.07) 0%, transparent 70%);
    pointer-events: none;
}
.page-hero::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
}
.page-hero h1 {
    font-family: var(--font-heading); font-size: 2.8rem;
    margin-bottom: 14px; position: relative;
    color: var(--dark);
}
.page-hero p { color: var(--text-secondary); font-size: 1.08rem; max-width: 560px; margin: 0 auto; position: relative; }

.page-content { padding: 70px 0 100px; }
.page-content h2 {
    font-family: var(--font-heading); font-size: 1.85rem;
    margin: 48px 0 16px; color: var(--dark); line-height: 1.3;
}
.page-content h3 { font-size: 1.25rem; margin: 32px 0 12px; color: var(--dark); }
.page-content p { margin-bottom: 18px; color: var(--text-secondary); line-height: 1.85; font-size: 1rem; }
.page-content ul, .page-content ol { margin: 16px 0 22px 24px; color: var(--text-secondary); }
.page-content li { margin-bottom: 12px; line-height: 1.75; }
.page-content strong { color: var(--dark); }
.page-content blockquote {
    border-left: 4px solid var(--gold); padding: 22px 28px;
    background: var(--gold-subtle); margin: 28px 0;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic; color: var(--text-secondary);
}
.page-content a:not(.btn),
.article-body a:not(.btn),
.faq-answer-inner a:not(.btn) {
    text-decoration: underline;
    text-decoration-color: var(--gold-pale);
    text-underline-offset: 3px;
}
.page-content a:not(.btn):hover,
.article-body a:not(.btn):hover,
.faq-answer-inner a:not(.btn):hover {
    text-decoration-color: var(--gold-dark);
}
.content-narrow { max-width: 760px; margin: 0 auto; }

/* Criteria Grid - "Pe cine cautam" */
.recruit-section { background: var(--dark); }
.criteria-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    max-width: 900px; margin: 0 auto;
}
.criteria-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(184,150,62,0.2);
    border-radius: var(--radius); padding: 30px 22px;
    text-align: center; transition: var(--transition);
    position: relative; overflow: hidden;
}
.criteria-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--gold); transform: scaleX(0);
    transition: transform 0.4s ease; transform-origin: left;
}
.criteria-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.criteria-card:hover::before { transform: scaleX(1); }
.criteria-icon {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--gold); color: var(--dark);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.2rem; margin-bottom: 16px;
}
.criteria-card h3 { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.criteria-card p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.5; }

/* Process Timeline - "Cum aplici" */
.process-timeline {
    max-width: 680px; margin: 0 auto;
    position: relative; padding-left: 40px;
}
.process-timeline::before {
    content: ''; position: absolute; left: 27px; top: 0; bottom: 0;
    width: 2px; background: linear-gradient(to bottom, var(--gold), var(--gold-pale), transparent);
}
.process-step {
    display: flex; gap: 24px; align-items: flex-start;
    margin-bottom: 36px; position: relative;
}
.process-step:last-child { margin-bottom: 0; }
.process-number {
    width: 54px; height: 54px; min-width: 54px;
    border-radius: 50%; background: var(--dark); color: var(--gold-light);
    font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid var(--gold); position: relative; z-index: 1;
    box-shadow: 0 0 0 6px var(--bg);
    transition: var(--transition);
}
.process-step:hover .process-number {
    background: var(--gold); color: var(--dark);
}
.process-body {
    background: var(--white); border-radius: var(--radius);
    padding: 24px 28px; box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light); flex: 1;
    transition: var(--transition);
    border-left: 3px solid var(--gold);
}
.process-step:hover .process-body {
    box-shadow: var(--shadow); transform: translateX(4px);
}
.process-body h3 { font-size: 1.1rem; color: var(--dark); margin-bottom: 6px; }
.process-body p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; margin: 0; }

@media (max-width: 768px) {
    .criteria-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .criteria-card { padding: 22px 16px; }
    .process-timeline { padding-left: 20px; }
    .process-timeline::before { left: 17px; }
    .process-number { width: 44px; height: 44px; min-width: 44px; font-size: 1.1rem; }
    .process-body { padding: 18px 20px; }
}
@media (max-width: 480px) {
    .criteria-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .criteria-icon { width: 44px; height: 44px; font-size: 1rem; }
}

/* Expectations Grid - "Ce asteptari avem" */
.expect-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
    max-width: 960px; margin: 0 auto;
}
.expect-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(184,150,62,0.18);
    border-radius: var(--radius-lg); padding: 36px 26px 30px;
    text-align: center; position: relative; overflow: hidden;
    transition: var(--transition);
}
.expect-card::before {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0; transition: var(--transition);
}
.expect-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-5px); }
.expect-card:hover::before { opacity: 1; }
.expect-card-wide {
    grid-column: 2 / 3;
}
.expect-number {
    position: absolute; top: 14px; right: 18px;
    font-family: var(--font-heading); font-size: 2.2rem; font-weight: 800;
    color: rgba(184,150,62,0.12); line-height: 1; pointer-events: none;
}
.expect-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white); display: inline-flex;
    align-items: center; justify-content: center;
    font-size: 1.25rem; margin-bottom: 18px;
    box-shadow: 0 4px 20px rgba(184,150,62,0.3);
}
.expect-card h3 { color: var(--white); font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.expect-card p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.65; }

/* Info Links Grid - Contact page */
.info-links-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    max-width: 900px; margin: 0 auto;
}
.info-link-card {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; padding: 40px 28px 32px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(184,150,62,0.2);
    border-radius: var(--radius-lg); position: relative;
    transition: var(--transition); text-decoration: none;
    overflow: hidden;
}
.info-link-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(184,150,62,0.08), transparent 60%);
    opacity: 0; transition: var(--transition);
}
.info-link-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.1); border-color: var(--gold); }
.info-link-card:hover::before { opacity: 1; }
.info-link-icon {
    width: 60px; height: 60px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white); display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin-bottom: 20px; position: relative; z-index: 1;
    box-shadow: 0 4px 22px rgba(184,150,62,0.35);
}
.info-link-card h3 {
    color: var(--white); font-size: 1.1rem; font-weight: 700;
    margin-bottom: 8px; position: relative; z-index: 1;
}
.info-link-card p {
    color: rgba(255,255,255,0.55); font-size: 0.9rem;
    line-height: 1.6; margin: 0; position: relative; z-index: 1;
}
.info-link-arrow {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--gold); color: var(--dark);
    font-size: 0.85rem; margin-top: 18px; position: relative; z-index: 1;
    transition: var(--transition);
}
.info-link-card:hover .info-link-arrow { transform: translateX(4px); background: var(--gold-light); }
@media (max-width: 768px) {
    .info-links-grid { grid-template-columns: 1fr; max-width: 400px; gap: 16px; }
    .info-link-card { padding: 30px 24px 26px; }
}

/* Commission Showcase */
.commission-showcase { max-width: 800px; margin: 0 auto; }
.commission-main {
    text-align: center; padding: 40px 30px; margin-bottom: 28px;
    background: linear-gradient(135deg, rgba(184,150,62,0.12), rgba(184,150,62,0.04));
    border: 1px solid rgba(184,150,62,0.25); border-radius: var(--radius-lg);
}
.commission-range {
    font-family: var(--font-heading); font-size: 3.8rem; font-weight: 800;
    color: var(--gold); line-height: 1.1; margin-bottom: 8px;
    text-shadow: 0 2px 20px rgba(184,150,62,0.3);
}
.commission-main p { color: rgba(255,255,255,0.6); font-size: 1.05rem; margin: 0; }
.commission-details {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.commission-card {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(184,150,62,0.15);
    border-radius: var(--radius); padding: 28px 20px; text-align: center;
    transition: var(--transition); position: relative; overflow: hidden;
}
.commission-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--gold); opacity: 0.4;
}
.commission-card-mid::before { opacity: 0.65; }
.commission-card-top::before { opacity: 1; height: 4px; }
.commission-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.commission-tier {
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px;
    color: rgba(255,255,255,0.45); font-weight: 700; margin-bottom: 8px;
}
.commission-percent {
    font-family: var(--font-heading); font-size: 2.4rem; font-weight: 800;
    color: var(--gold-light); margin-bottom: 8px;
}
.commission-card-top .commission-percent { color: var(--gold); }
.commission-card p { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.5; margin: 0; }
@media (max-width: 768px) {
    .commission-range { font-size: 2.8rem; }
    .commission-details { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
}

/* Exchange Grid - "Ce primesti in schimb" */
.exchange-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
    max-width: 900px; margin: 0 auto;
}
.exchange-card {
    background: var(--white); border-radius: var(--radius);
    padding: 32px 24px; text-align: center;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm); position: relative;
    transition: var(--transition); overflow: hidden;
}
.exchange-card::after {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 50px; height: 3px; background: var(--gold);
    border-radius: 0 0 3px 3px; transition: var(--transition);
}
.exchange-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.exchange-card:hover::after { width: 100%; }
.exchange-card > i {
    font-size: 1.6rem; color: var(--gold);
    margin-bottom: 14px; display: block;
}
.exchange-card h3 { font-size: 1.05rem; color: var(--dark); margin-bottom: 6px; }
.exchange-card p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.6; margin: 0; }

@media (max-width: 768px) {
    .expect-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .expect-card-wide { grid-column: auto; }
    .exchange-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 480px) {
    .expect-grid { grid-template-columns: 1fr; }
    .expect-card { padding: 28px 20px 24px; }
    .exchange-grid { grid-template-columns: 1fr; }
}

.page-image {
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-md); margin: 36px 0;
    border: 3px solid var(--gold);
}
.page-image img { width: 100%; height: auto; display: block; }
.page-image-float {
    float: right; max-width: 320px; margin: 0 0 24px 32px;
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow); border: 3px solid var(--gold);
}
.page-image-float img { width: 100%; height: auto; display: block; }
@media (max-width: 768px) {
    .page-image-float { float: none; max-width: 100%; margin: 24px 0; }
}
.content-with-image {
    display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;
}
.content-with-image .page-image { margin: 0; }
@media (max-width: 768px) {
    .content-with-image { grid-template-columns: 1fr; gap: 30px; }
}

/* ======================== */
/*     ARTICLE PAGE         */
/* ======================== */
.article-header { margin-bottom: 36px; }
.article-header .category {
    display: inline-block;
    background: var(--gold);
    color: var(--dark); padding: 5px 16px; border-radius: var(--radius-full);
    font-size: 0.75rem; font-weight: 700;
    margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px;
}
.article-header h1 { font-family: var(--font-heading); font-size: 2.2rem; line-height: 1.3; margin-bottom: 10px; }
.article-header .date { color: var(--text-muted); font-size: 0.88rem; }
.article-image { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 36px; max-height: 480px; box-shadow: var(--shadow); }
.article-image img { width: 100%; object-fit: cover; }
.article-body { font-size: 1.05rem; }
.article-body h2 { font-size: 1.55rem; margin-top: 36px; }
.article-body h3 { font-size: 1.2rem; margin-top: 28px; }
.article-body p { margin-bottom: 18px; line-height: 1.9; }

/* ======================== */
/*        CONTACT           */
/* ======================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info-card {
    background: var(--dark);
    color: var(--white); padding: 44px; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--gold);
}
.contact-info-card h3 { font-family: var(--font-heading); font-size: 1.4rem; margin-bottom: 8px; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.contact-info-item i {
    width: 42px; height: 42px;
    background: rgba(184, 150, 62, 0.12);
    color: var(--gold-light); border-radius: 12px; display: flex;
    align-items: center; justify-content: center; flex-shrink: 0;
    font-size: 0.95rem;
}
.contact-info-item h4 { font-size: 0.9rem; margin-bottom: 2px; color: var(--white); }
.contact-info-item p, .contact-info-item a { color: rgba(255,255,255,0.7); font-size: 0.88rem; }
.contact-info-item a:hover { color: var(--gold-light); }
.contact-form {
    background: var(--white); padding: 44px;
    border-radius: var(--radius-lg); box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    border-top: 4px solid var(--dark);
}
.contact-form h3 { font-family: var(--font-heading); font-size: 1.4rem; margin-bottom: 28px; color: var(--dark); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.85rem; color: var(--text); }
.form-group input, .form-group textarea {
    width: 100%; padding: 13px 18px;
    border: 1.5px solid var(--border);
    border-radius: 12px; font-family: var(--font-body);
    font-size: 0.93rem; transition: var(--transition);
    background: var(--bg);
}
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--gold); outline: none;
    box-shadow: 0 0 0 3px var(--gold-glow);
    background: var(--white);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.alert { padding: 16px 20px; border-radius: 12px; margin-bottom: 20px; font-size: 0.9rem; }
.alert-success { background: #f0f9f0; color: #1a6b2a; border: 1px solid #d4edda; }
.alert-error { background: #fef0f0; color: #8b2525; border: 1px solid #f5c6cb; }

/* ======================== */
/*          FAQ             */
/* ======================== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--border-light); border-radius: var(--radius);
    margin-bottom: 12px; overflow: hidden;
    background: var(--white);
    transition: var(--transition);
}
.faq-item:hover { border-color: var(--gold-pale); box-shadow: var(--shadow-xs); }
.faq-question {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 24px; cursor: pointer; font-weight: 600;
    font-size: 0.97rem; transition: var(--transition);
    color: var(--dark);
}
.faq-question:hover { color: var(--gold-dark); }
.faq-question i { color: var(--gold-dark); transition: var(--transition); font-size: 0.7rem; }
.faq-item.active .faq-question i { transform: rotate(180deg); opacity: 1; }
.faq-item.active { border-color: var(--gold); border-left: 3px solid var(--gold); box-shadow: 0 2px 16px rgba(184,150,62,0.12); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 24px 20px; color: var(--text-secondary); line-height: 1.8; font-size: 0.93rem; }
.faq-item.active .faq-answer { max-height: 500px; }

/* ======================== */
/*       CITY PAGE          */
/* ======================== */
/* Video presentation */
.video-container {
    max-width: 860px; margin: 0 auto;
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--gold);
    position: relative;
}
.video-container .video-wrapper {
    position: relative; padding-bottom: 56.25%; height: 0;
}
.video-container .video-wrapper iframe {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%; border: 0;
}
.yt-facade {
    position: absolute; inset: 0; width: 100%; height: 100%;
    border: 0; padding: 0; margin: 0; cursor: pointer;
    background: #000;
}
.yt-facade picture, .yt-facade img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover;
}
.yt-facade-play {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity .2s ease, transform .2s ease;
}
.yt-facade:hover .yt-facade-play { transform: translate(-50%, -50%) scale(1.1); opacity: .9; }

/* City links grid on dark sections */
/* Checklist Grid - city pages */
.checklist-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
    max-width: 800px; margin: 0 auto;
}
.checklist-item {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 22px 24px; background: var(--white);
    border-radius: var(--radius); box-shadow: var(--shadow-xs);
    border: 1px solid var(--border-light); transition: var(--transition);
}
.checklist-item:hover { border-color: var(--gold-pale); transform: translateY(-3px); box-shadow: var(--shadow); }
.checklist-check {
    width: 36px; height: 36px; min-width: 36px; border-radius: 50%;
    background: var(--gold); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; flex-shrink: 0;
}
.checklist-item h4 { font-size: 0.97rem; color: var(--dark); margin-bottom: 2px; }
.checklist-item p { font-size: 0.86rem; color: var(--text-secondary); line-height: 1.6; margin: 0; }
@media (max-width: 768px) {
    .checklist-grid { grid-template-columns: 1fr; }
}

.city-links-grid {
    display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.city-link {
    display: inline-block; padding: 10px 22px;
    background: var(--gold); color: var(--dark) !important;
    border-radius: var(--radius-full); font-size: 0.84rem;
    font-weight: 600; transition: var(--transition);
    text-decoration: none;
}
.city-link:hover {
    background: var(--white); color: var(--dark) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.city-hero { border-bottom: 1px solid var(--border-light); }
.city-benefits {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px; margin: 45px 0;
}
.city-benefit {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 24px; background: var(--white);
    border-radius: var(--radius); box-shadow: var(--shadow-xs);
    transition: var(--transition); border: 1px solid var(--border-light);
}
.city-benefit:hover { border-color: var(--gold-pale); transform: translateY(-3px); box-shadow: var(--shadow); }
.city-benefit i {
    color: var(--dark); font-size: 1rem; margin-top: 0; flex-shrink: 0;
    width: 38px; height: 38px; background: var(--gold);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
}
.city-benefit h4 { font-size: 0.97rem; margin-bottom: 4px; color: var(--dark); }
.city-benefit p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; }

/* ======================== */
/*      CTA SECTION         */
/* ======================== */
.cta-section {
    background: var(--gold);
    padding: 100px 0; text-align: center; color: var(--dark);
    position: relative; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--dark);
}
.cta-section::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 4px;
    background: var(--dark);
}
.cta-section h2 { font-family: var(--font-heading); font-size: 2.2rem; margin-bottom: 16px; position: relative; color: var(--dark); font-weight: 800; }
.cta-section p { font-size: 1.05rem; margin-bottom: 30px; max-width: 480px; margin-left: auto; margin-right: auto; color: var(--dark-soft); position: relative; }

/* ======================== */
/*      PAGINATION          */
/* ======================== */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 55px; }
.pagination a, .pagination span {
    display: flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: 12px;
    font-weight: 600; font-size: 0.88rem; transition: var(--transition);
}
.pagination a { background: var(--white); color: var(--text); border: 1px solid var(--border); }
.pagination a:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.pagination .current { background: var(--dark); color: var(--gold-light); box-shadow: var(--shadow-sm); }

/* ======================== */
/*      BREADCRUMBS         */
/* ======================== */
.breadcrumb-nav { padding: 16px 0 4px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 4px; align-items: center; font-size: 0.8rem; }
.breadcrumb-item { color: var(--text-muted); }
.breadcrumb-item a { color: var(--text-secondary); }
.breadcrumb-item a:hover { color: var(--gold-dark); }
.breadcrumb-item:not(:last-child)::after { content: '/'; margin-left: 8px; color: var(--border); font-size: 0.9rem; }
.breadcrumb-item.active { color: var(--gold-dark); }

/* ======================== */
/*         FOOTER           */
/* ======================== */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.65); padding: 90px 0 0;
    position: relative;
    border-top: 4px solid var(--gold);
}
.footer::before {
    content: ''; position: absolute; top: 4px; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(180deg, rgba(184,150,62,0.06) 0%, transparent 100%);
    pointer-events: none;
}
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px; padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo { margin-bottom: 18px; font-size: 1.35rem; }
.footer-logo .logo-lux { color: var(--gold); }
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 40px; height: 40px; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.65); transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.footer-col h4,
.footer-heading {
    color: var(--white); font-size: 0.88rem; margin-bottom: 22px;
    font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px;
    padding-left: 14px;
    border-left: 3px solid var(--gold);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 0.87rem; display: inline-flex; align-items: center; gap: 6px; }
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 3px; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact li i { color: var(--gold); margin-top: 4px; font-size: 0.8rem; flex-shrink: 0; }
.footer-contact li a { color: rgba(255,255,255,0.65); }
.footer-contact li a:hover { color: var(--gold-light); }
.footer-bottom { text-align: center; padding: 28px 0; font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.footer-bottom a { color: rgba(255,255,255,0.7); text-decoration: underline; text-decoration-color: rgba(255,255,255,0.25); text-underline-offset: 2px; }
.footer-bottom a:hover { color: var(--gold-light); text-decoration-color: var(--gold-light); }

/* ======================== */
/*    DEPARTMENT CARDS      */
/* ======================== */
.dept-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 20px; }
.dept-card {
    padding: 36px; background: var(--white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm); border: 1px solid var(--border-light);
    transition: var(--transition); position: relative;
    border-top: 3px solid var(--gold);
}
.dept-card:hover {
    transform: translateY(-3px); box-shadow: var(--shadow-md);
    border-top-color: var(--dark);
}
.dept-card h3 {
    font-size: 1.08rem; margin-bottom: 12px; color: var(--dark);
    display: flex; align-items: center; gap: 10px;
}
.dept-card h3 i { color: var(--gold); font-size: 1rem; }
.dept-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.75; }
.dept-card p a:not(.btn) { text-decoration: underline; text-decoration-color: var(--gold-pale); text-underline-offset: 3px; }
.dept-card p a:not(.btn):hover { text-decoration-color: var(--gold-dark); }

/* ======================== */
/*    COMPARISON TABLE      */
/* ======================== */
.comparison-item {
    margin-bottom: 24px; padding: 28px;
    background: var(--white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs); border: 1px solid var(--border-light);
}
.comparison-item h3 { color: var(--dark); margin-bottom: 14px; font-size: 1.1rem; }
.comparison-item .studio, .comparison-item .acasa { padding: 14px 0; border-bottom: 1px solid var(--border-light); }
.comparison-item .label-tag {
    display: inline-block; padding: 3px 12px; border-radius: var(--radius-full);
    font-size: 0.7rem; font-weight: 700; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px;
}
.label-studio { background: var(--gold); color: var(--dark); border: none; }
.label-acasa { background: #eef4ff; color: #4a7dd7; border: 1px solid #d5e3f7; }

/* ======================== */
/*       SCHEDULE           */
/* ======================== */
.schedule-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 30px 0; }
.schedule-card {
    text-align: center; padding: 36px;
    background: var(--white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs); border: 1px solid var(--border-light);
    transition: var(--transition);
}
.schedule-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--gold-pale); }
.schedule-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--dark); }
.schedule-card .time { font-family: var(--font-heading); font-size: 1.8rem; color: var(--dark); margin-bottom: 5px; font-weight: 800; }
.schedule-card { border-top: 3px solid var(--gold); }

/* ======================== */
/*         404              */
/* ======================== */
.error-page {
    min-height: 60vh; display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 160px 24px;
}
.error-page h1 {
    font-family: var(--font-heading); font-size: 7rem;
    color: var(--gold); opacity: 0.25;
    letter-spacing: -2px;
}
.error-page h2 { font-size: 1.5rem; margin-bottom: 12px; color: var(--dark); }
.error-page p { color: var(--text-secondary); margin-bottom: 28px; }

/* ======================== */
/*       RESPONSIVE         */
/* ======================== */
@media (max-width: 992px) {
    .hero-inner { grid-template-columns: 1fr; gap: 30px; }
    .hero-content { text-align: center; margin-left: 0; }
    .hero-buttons { justify-content: center; }
    .hero p { margin-left: auto; margin-right: auto; }
    .hero-bg-figure { width: 70%; opacity: 0.15; }
    .hero h1 { font-size: 2.4rem; }
    .about-preview { grid-template-columns: 1fr; gap: 40px; }
    .about-image { min-height: 280px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
    .contact-grid { grid-template-columns: 1fr; }
    .schedule-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
    .section { padding: 80px 0; }
}

@media (max-width: 768px) {
    .navbar-toggle { display: flex; }
    .navbar-menu {
        position: fixed; top: 76px; left: 0; right: 0;
        background: var(--bg-section); flex-direction: column;
        padding: 16px 20px; gap: 0; display: none;
        max-height: calc(100vh - 76px); overflow-y: auto;
        box-shadow: 0 20px 40px rgba(40,35,25,0.1);
        border-top: 1px solid var(--gold-pale);
    }
    .navbar-menu.active { display: flex; }
    .navbar-menu > li { width: 100%; }
    .navbar-menu > li > a { padding: 14px 12px; justify-content: space-between; color: var(--text); }
    .dropdown {
        position: static; opacity: 1; visibility: visible;
        transform: none; box-shadow: none;
        background: var(--bg-warm); display: none;
        border: none; border-radius: 10px; margin: 4px 0 8px;
    }
    .has-dropdown.active .dropdown { display: block; }
    .hero { padding: 110px 28px 60px; }
    .hero h1 { font-size: 2rem; }
    .hero-bg-figure { display: none; }
    .section { padding: 70px 0; }
    .section-header h2 { font-size: 2rem; }
    .page-hero { padding: 130px 0 50px; }
    .page-hero h1 { font-size: 2rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 35px; }
    .blog-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .about-stats { flex-direction: column; gap: 20px; }
    .dept-grid { grid-template-columns: 1fr; }
    .contact-info-card, .contact-form { padding: 28px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.6rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .features-grid { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 1.7rem; }
    .btn { padding: 13px 26px; font-size: 0.88rem; }
    .page-hero h1 { font-size: 1.7rem; }
}
