html {
    scroll-behavior: smooth;
}
/* --- 1. Variables & Reset --- */
:root {
    /* "Classic Noir" Palette */
    --bg-color: #0A0A0A;       /* Deep Onyx Black */
    --text-color: #FFFFFF;     /* Pure White */
    --text-muted: #B0B0B0;     /* Soft Grey */
    --accent-color: #C5A059;   /* Luxury Gold */
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden; /* Prevents side scrolling */
}

a { text-decoration: none; color: inherit; transition: 0.3s ease; }
ul { list-style: none; }

/* --- 2. Navigation --- */
/* --- Hamburger Icon --- */
.hamburger {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    transition: 0.3s;
}

/* --- Sidebar Overlay --- */
.sidebar {
    position: fixed;
    top: 0;
    right: -100%; /* Start off-screen */
    width: 80%;
    height: 100vh;
    background-color: #000;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 100px 50px;
    transition: 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
    border-left: 1px solid var(--accent-color);
}

.sidebar.active {
    right: 0; /* Slide in */
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: var(--accent-color);
    cursor: pointer;
}

.sidebar-links {
    list-style: none;
}

.sidebar-links li {
    margin-bottom: 30px;
}

.sidebar-links li a {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #fff;
}

.sidebar-socials {
    margin-top: 50px;
    display: flex;
    gap: 20px;
}

/* --- 1. Base Navbar Styling --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0);
    backdrop-filter: blur(10px);
}

/* --- 2. Desktop State --- */
.nav-links-desktop {
    display: flex; /* Show links on desktop */
    gap: 30px;
    list-style: none;
}

.nav-links-desktop a {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: #fff;
    text-decoration: none;
}

.hamburger {
    display: none; /* Hide hamburger on desktop */
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.bar {
    width: 28px;
    height: 2px;
    background-color: var(--accent-color);
}

/* --- 3. Mobile State (Breakpoints) --- */
@media (max-width: 850px) {
    .nav-links-desktop {
        display: none; /* Hide desktop links on mobile */
    }

    .hamburger {
        display: flex; /* Show hamburger only on mobile */
    }
}

/* --- 4. Sidebar Styling --- */
.sidebar {
    position: fixed;
    top: 0;
    right: -100%; /* Hidden off-screen */
    width: 100%;
    height: 100vh;
    background: #000;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.5s ease;
}

.sidebar.active {
    right: 0; /* Slide in */
}

.close-btn {
    position: absolute;
    top: 2rem;
    right: 5%;
    font-size: 3rem;
    color: var(--accent-color);
    cursor: pointer;
}

.sidebar-links {
    list-style: none;
    text-align: center;
}

.sidebar-links li { margin: 20px 0; }

.sidebar-links a {
    font-size: 2rem;
    color: #fff;
    font-family: var(--font-heading);
    text-decoration: none;
}

/* --- 3. Hero Section --- */
.hero {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 15% 0 5%; /* Right padding gives space */
    position: relative;
}

/* Background Image setup */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* REPLACE THIS URL with one of his photos */
    background-image: url(hero.jpg); 
    background-size: cover;
    background-position: center;
    filter: grayscale(100%); /* Makes the photo Black & White automatically */
    z-index: 1;
}

/* Gradient Overlay - Makes text readable */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient from solid black (left) to transparent (right) */
    background: linear-gradient(90deg, #0A0A0A 20%, rgba(10,10,10,0.7) 60%, rgba(10,10,10,0.2) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
}

/* Typography Styling */
.tagline {
    color: var(--accent-color);
    font-size: 0.8rem;
    letter-spacing: 4px;
    font-weight: 600;
    display: block;
    margin-bottom: 1.5rem;
    padding-left: 15px;
    border-left: 2px solid var(--accent-color); /* The Gold Line */
}

h1 {
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.italic-text {
    font-style: italic;
    font-weight: 400;
    color: var(--text-muted); /* Makes "Unseen" grey for contrast */
}

.sub-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 450px;
    margin-bottom: 3rem;
}

/* Button Group */
.cta-group {
    display: flex;
    gap: 1.5rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #000;
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-secondary {
    border-bottom: 1px solid var(--text-color); /* Underline style */
    padding: 1rem 0;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary:hover {
    background-color: #fff;
}

.btn-secondary:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

/* Social Side Bar */
.social-side {
    position: absolute;
    right: 5%;
    bottom: 5%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.social-side a {
    color: var(--text-muted);
    font-size: 0.8rem;
    writing-mode: vertical-rl; /* Makes text vertical */
    letter-spacing: 2px;
}

.social-side a:hover {
    color: var(--accent-color);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .hero { padding: 0 5%; justify-content: center; }
    h1 { font-size: 3rem; }
    .overlay { background: rgba(10,10,10,0.85); } /* Darker overlay on mobile */
    .cta-group { flex-direction: column; width: 100%; }
    .btn-primary { text-align: center; }
    .social-side { display: none; }
    .btn-secondary { text-align: center; border: 1px solid white; }
}

/* --- Global Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 5%;
}

.section-tag {
    color: var(--accent-color);
    letter-spacing: 3px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.center { text-align: center; }
/* --- Shared Layout for Sections --- */
.split-layout {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 100px 0;
}

.split-layout.reverse {
    flex-direction: row-reverse; /* Flips the order for the Forbes section */
}

.visual-side, .text-side {
    flex: 1;
}

/* --- Image Styling --- */
.image-wrapper {
    position: relative;
    width: 100%;
}

.image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(255,255,255,0.1);
}


/* Decorative elements for the images */
.deco-box {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-left: 3px solid var(--accent-color);
    border-bottom: 3px solid var(--accent-color);
    z-index: -1;
}

.forbes-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: #000;
    padding: 10px 20px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
}

/* --- Typography for These Sections --- */
.text-side h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.intro-text {
    font-size: 1.25rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.text-side p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.gold-text {
    color: var(--accent-color);
    font-style: italic;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 968px) {
    .split-layout, .split-layout.reverse {
        flex-direction: column;
        gap: 40px;
    }
    .image-wrapper img {
        height: 400px;
    }
    .text-side h2 {
        font-size: 2.5rem;
    }
}

/* --- Normal Is Dead Section --- */
.normal-is-dead {
    position: relative;
    background-color: #000; /* Pure black for maximum impact */
    padding: 150px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Massive background text effect */
.manifesto-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15vw; /* Sizes based on screen width */
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03); /* Extremely faint */
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
    letter-spacing: -5px;
}

.center-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.manifesto-box {
    max-width: 900px;
    margin: 0 auto;
}

.massive-text {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #fff;
}

.strikethrough {
    text-decoration: line-through;
    color: var(--text-muted);
    font-style: italic;
}

.manifesto-subtext {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem auto;
    line-height: 1.8;
}

/* Signature Styling */
.signature-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.signature-line .name {
    color: #fff;
    font-weight: 600;
}

.signature-line .dash {
    width: 40px;
    height: 1px;
    background-color: var(--accent-color);
}

.signature-line .role {
    color: var(--accent-color);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .massive-text { font-size: 2.2rem; }
    .manifesto-bg-text { font-size: 25vw; }
    .signature-line { flex-direction: column; gap: 5px; }
    .signature-line .dash { display: none; }
}


/* --- Services Section --- */
.services-section {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.services-header {
    margin-bottom: 4rem;
}

.services-header h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
}

.services-list {
    display: flex;
    flex-direction: column;
}

.service-item {
    display: flex;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.5s ease;
    cursor: pointer;
}

.service-item:hover {
    padding-left: 20px;
    background-color: rgba(197, 160, 89, 0.05); /* Very faint gold glow */
}

.service-no {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 700;
    width: 100px;
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 10px;
    transition: 0.3s;
}

.service-item:hover h3 {
    color: var(--accent-color);
}

.service-info p {
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.6;
}

.service-link {
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: 0.3s;
}

.service-item:hover .service-link {
    transform: translateX(10px);
    color: var(--accent-color);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .service-item { flex-direction: column; align-items: flex-start; }
    .service-no { margin-bottom: 1rem; }
    .service-link { display: none; }
}

/* --- Gallery Layout --- */
.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-header h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-auto-rows: 200px; /* Base row height */
    gap: 20px;
    grid-auto-flow: dense; /* Fills gaps automatically */
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: #1a1a1a;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1), filter 0.5s;
}

/* Sizing Classes */
.gallery-item.tall { grid-row: span 3; }
.gallery-item.wide { grid-column: span 4; }

.gallery-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Hover Overlay */
.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: 0.3s;
}

.gallery-item:hover .item-overlay {
    opacity: 1;
}

.item-overlay span {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
}

/* Mobile Fix */
@media (max-width: 768px) {
    .masonry-grid { grid-template-columns: 1fr; grid-auto-rows: 300px; }
    .gallery-item.wide { grid-column: span 1; }
}
/* --- Contact Section Styling --- */
.contact-section {
    padding: 120px 0;
    background-color: #050505; /* Slightly darker to separate from previous sections */
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: flex-start;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.contact-info p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    gap: 40px;
}

.detail-item span {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--accent-color);
    letter-spacing: 2px;
    margin-bottom: 5px;
}

/* --- Form Styling --- */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-group {
    margin-bottom: 30px;
}

.input-group label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
    margin-bottom: 10px;
}

.main-form input, 
.main-form select, 
.main-form textarea {
    width: 100%;
    background: black;
    border: none;
    border-bottom: 1px solid #222; /* Minimalist bottom line */
    color: #fff;
    padding: 12px 0;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.4s;
}

.main-form input:focus, 
.main-form select:focus, 
.main-form textarea:focus {
    border-bottom-color: var(--accent-color);
}

.submit-btn {
    background: transparent;
    color: #fff;
    border: 1px solid var(--accent-color);
    padding: 15px 40px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.4s;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.submit-btn:hover {
    background: var(--accent-color);
    color: #000;
}

.submit-btn .arrow {
    transition: transform 0.3s;
}

.submit-btn:hover .arrow {
    transform: translateX(5px);
}

/* Mobile Fix */
@media (max-width: 968px) {
    .contact-grid { grid-template-columns: 1fr; gap: 60px; }
    .contact-info h2 { font-size: 2.8rem; }
    .form-row { grid-template-columns: 1fr; }
}

/* --- Footer Styling --- */
.main-footer {
    padding: 80px 0 40px;
    background-color: #000;
    border-top: 1px solid #111;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-logo {
    font-family: var(--font-body);
    font-weight: 800;
    letter-spacing: 4px;
    font-size: 1.5rem;
}

.footer-nav {
    display: flex;
    gap: 80px;
}

.footer-col h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: #fff;
}

/* --- Footer Bottom --- */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #111;
    color: #444;
    font-size: 0.75rem;
}

.philosophy-tag {
    font-weight: 700;
    letter-spacing: 2px;
    color: #222; /* Subtle, almost blended with the background */
}

/* Mobile Fix */
@media (max-width: 768px) {
    .footer-top { flex-direction: column; gap: 40px; }
    .footer-nav { gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}
/* --- Social Icons Styling --- */
.footer-socials {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.footer-socials a {
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: 0.3s ease;
}

.footer-socials a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

/* Side Socials - Vertical alignment */
.social-side {
    position: absolute;
    right: 5%;
    bottom: 5%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.social-side i {
    font-size: 1.1rem;
    color: var(--text-muted);
    transition: 0.3s;
}

.social-side a:hover i {
    color: var(--accent-color);
}