@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    --bg-base: #050505;
    --bg-sec: #0a0a0a;
    --bg-layer: #111111;
    
    --glass-bg: rgba(255, 85, 0, 0.05);
    --glass-bg-hover: rgba(255, 85, 0, 0.1);
    --glass-border: rgba(255, 85, 0, 0.3);
    
    --accent-gold: #ff5500;
    --accent-copper: #ff7700;
    --accent-burgundy: #cc2200;
    --accent-ivory: #ffffff;
    
    --text-primary: #ffffff;
    --text-sec: #cccccc;
    --text-muted: #888888;
    
    --font-heading: 'Playfair Display', serif;
    --font-alt: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    
    --grad-gold: linear-gradient(135deg, #ff5500, #ff8800);
    --grad-dark: linear-gradient(135deg, #ff5500, #111111);
    
    --glow-gold: rgba(255, 85, 0, 0.7);
    --glow-copper: rgba(255, 119, 0, 0.5);
    
    --space-desk: 120px;
    --space-mob: 60px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background-color: var(--accent-gold);
    color: var(--bg-base);
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-gold);
    text-shadow: 0 0 8px var(--glow-gold);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.text-gold { 
    color: var(--accent-gold); 
    text-shadow: 0 0 12px var(--glow-gold); 
}

.text-ivory { color: var(--accent-ivory); }
.text-sec { color: var(--text-sec); }

h1 { font-size: clamp(3rem, 5vw, 5rem); }
h2 { font-size: clamp(2.5rem, 4vw, 4rem); }
h3 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.subheading {
    font-family: var(--font-alt);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    display: block;
    text-shadow: 0 0 10px var(--glow-gold);
}

p {
    color: var(--text-sec);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

/* Layout System */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.grid-12 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
}

.section {
    padding: var(--space-desk) 0;
}

.bg-sec { background-color: var(--bg-sec); }
.bg-layer { background-color: var(--bg-layer); }

/* Header & Nav */
.header-wrapper {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    padding: 0 20px;
    transition: transform 0.4s ease;
}

.luxury-bar {
    width: 100%;
    max-width: 1200px;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8), 0 0 15px rgba(255, 85, 0, 0.1);
}

.logo {
    font-family: var(--font-alt);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 2px;
}

.logo span {
    color: var(--accent-gold);
    text-shadow: 0 0 12px var(--glow-gold);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    box-shadow: 0 0 8px var(--glow-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    border: none;
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--grad-gold);
    color: #000;
    box-shadow: 0 0 20px var(--glow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px var(--glow-gold), 0 0 40px var(--accent-gold);
    color: #000;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.btn-primary:hover::after {
    left: 200%;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--accent-gold);
    box-shadow: inset 0 0 10px rgba(255,85,0,0.1), 0 0 10px rgba(255,85,0,0.1);
}

.btn-outline:hover {
    background: var(--glass-bg-hover);
    box-shadow: inset 0 0 15px rgba(255,85,0,0.3), 0 0 20px var(--glow-gold);
    border-color: var(--accent-copper);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5,5,5,0.4) 0%, rgba(5,5,5,0.95) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding-left: 5vw;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

/* Common Components */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    box-shadow: 0 0 15px rgba(255,85,0,0.05);
}

.glass-panel:hover {
    transform: translateY(-5px);
    background: var(--glass-bg-hover);
    box-shadow: 0 15px 30px rgba(0,0,0,0.6), 0 0 20px rgba(255,85,0,0.2);
    border-color: rgba(255, 85, 0, 0.6);
}

/* Image Grids / Showcase */
.img-wrap {
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.img-wrap:hover img {
    transform: scale(1.05);
}

.project-card {
    position: relative;
    grid-column: span 6;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(255,85,0,0.05);
}

.project-card.large {
    grid-column: span 12;
    height: 600px;
}

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

.project-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.3) 60%, transparent 100%);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: background 0.4s ease;
}

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

.project-card:hover .overlay {
    background: linear-gradient(to top, rgba(5,5,5,1) 0%, rgba(5,5,5,0.5) 60%, transparent 100%);
}

.project-meta {
    font-size: 0.85rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 0 0 8px var(--glow-gold);
}

/* Designers Section */
.designer-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.designer-row:nth-child(even) {
    direction: rtl;
}

.designer-row:nth-child(even) .designer-content {
    direction: ltr;
}

.designer-img {
    height: 600px;
    border-radius: 20px;
}

.services-list {
    margin-top: 30px;
}

.services-list li {
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 15px;
}

.services-list li::before {
    content: '✦';
    color: var(--accent-gold);
    font-size: 1.2rem;
    text-shadow: 0 0 10px var(--glow-gold);
}

/* Forms */
.form-group {
    margin-bottom: 30px;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-sec);
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 18px 20px;
    border-radius: 10px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 85, 0, 0.05);
    box-shadow: 0 0 20px rgba(255, 85, 0, 0.3);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff5500' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 1em;
}

select.form-control option {
    background-color: var(--bg-layer);
    color: var(--text-primary);
}

/* Footer */
.footer {
    background-color: #030303;
    padding: 80px 0 40px;
    border-top: 1px solid var(--glass-border);
}

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

.footer-col h4 {
    font-family: var(--font-alt);
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-sec);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
    text-shadow: 0 0 8px var(--glow-gold);
}

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

.footer-legal a {
    margin-left: 20px;
    color: var(--text-muted);
}

.footer-legal a:hover {
    color: var(--accent-gold);
    text-shadow: 0 0 8px var(--glow-gold);
}

/* Animations & Utilities */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

.page-header {
    padding: 200px 0 100px;
    text-align: center;
    background: var(--bg-sec);
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, var(--accent-gold), transparent);
    box-shadow: 0 0 10px var(--glow-gold);
}

/* Responsive */
@media (max-width: 1024px) {
    .grid-12 { grid-template-columns: repeat(6, 1fr); }
    .project-card { grid-column: span 6; }
    .designer-row { grid-template-columns: 1fr; gap: 40px; }
    .designer-row:nth-child(even) { direction: ltr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    :root {
        --space-desk: var(--space-mob);
    }
    .header-wrapper { padding: 0 15px; }
    .luxury-bar { padding: 15px 25px; }
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 40px;
        border-radius: 20px;
        border: 1px solid var(--glass-border);
        text-align: center;
    }
    .nav-links.active { display: flex; }
    .mobile-toggle { display: flex; }
    .nav-cta { display: none; }
    
    .hero-btns { flex-direction: column; }
    .project-card, .project-card.large { grid-column: span 6; height: 400px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}

/* Legal Pages Styling */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}
.legal-content h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
    color: var(--accent-gold);
    text-shadow: 0 0 10px var(--glow-gold);
}
.legal-content p, .legal-content li {
    color: var(--text-sec);
    margin-bottom: 15px;
    font-size: 1.05rem;
}
.legal-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 30px;
}