/* Luxury Studio Configuration & Slate/Onyx Theme */
:root {
    --bg-primary: #07090e;
    /* Deepest onyx/slate */
    --bg-secondary: #10141d;
    /* Rich slate for cards */
    --accent-gold: #c5a059;
    /* Muted champagne luxury accent */
    --text-main: #f5f5f7;
    /* Apple-inspired off-white */
    --text-muted: #86868b;
    --border-color: #232a3b;
    --font-stack: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-stack);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Elegant Typography */
h1,
h2,
h3,
h4 {
    font-weight: 300;
    letter-spacing: -0.01em;
    color: #ffffff;
}

.text-accent {
    color: var(--accent-gold);
    font-style: italic;
    font-weight: 400;
}

/* Minimalist Button UI Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    border-radius: 4px;
    /* Flatter, corporate look */
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
}

.btn-primary {
    background-color: var(--text-main);
    color: var(--bg-primary);
    border: 1px solid var(--text-main);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--text-main);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.btn-block {
    width: 100%;
}

/* Glass/Minimal Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(7, 9, 14, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.logo {
    font-size: 1.4rem;
    font-weight: 300;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.15em;
}

.logo .dot {
    color: var(--accent-gold);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-menu a:not(.btn) {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

.nav-menu a:not(.btn):hover {
    color: var(--accent-gold);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Component - Editorial Layout */
.hero {
    padding-top: 12rem;
    padding-bottom: 10rem;
    position: relative;
    background-image: radial-gradient(circle at 50% 0%, rgba(197, 160, 89, 0.05) 0%, transparent 70%);
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hero-subtitle {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-weight: 300;
    max-width: 600px;
    margin-inline: auto;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Clean Section Architectures */
section {
    padding: 8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.section-header {
    margin-bottom: 5rem;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-weight: 300;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--text-muted);
    font-weight: 300;
}

.about-text strong {
    color: var(--text-main);
    font-weight: 400;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 3rem 2rem;
    border-radius: 4px;
    text-align: center;
}

.stat-card h3 {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.stat-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Services Dynamic Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 3rem 2.5rem;
    border-radius: 4px;
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.service-icon {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 2rem;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 300;
}

.service-card.planned {
    opacity: 0.6;
}

.badge {
    display: inline-block;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    font-size: 0.65rem;
    padding: 0.3rem 0.8rem;
    border-radius: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Portfolio / Gallery Architecture */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4/5;
    /* Forces a uniform portrait gallery shape */
    cursor: pointer;
    background-color: var(--bg-secondary);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.7s ease;
    filter: grayscale(30%) brightness(0.8);
}

.portfolio-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%) brightness(1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 2rem 2rem;
    background: linear-gradient(to top, rgba(7, 9, 14, 0.95) 0%, transparent 100%);
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-overlay span {
    display: inline-block;
    color: var(--accent-gold);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.portfolio-overlay h4 {
    font-size: 1.15rem;
    font-weight: 400;
    margin: 0;
    color: #ffffff;
}

/* Approach Split Columns */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.approach-block h3,
.delivery-block h3 {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    color: var(--accent-gold);
}

.checkmark-list {
    list-style: none;
}

.checkmark-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-weight: 300;
}

.checkmark-list li i {
    color: var(--text-main);
    margin-top: 0.35rem;
    font-size: 0.9rem;
}

.checkmark-list li strong {
    color: var(--text-main);
    font-weight: 400;
}

/* Engagement Form Styling */
.contact-section {
    background-color: var(--bg-primary);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-info>p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 4rem;
    font-weight: 300;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--accent-gold);
}

.contact-item h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.2rem;
}

.contact-item p,
.contact-item a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 300;
}

.contact-item a:hover {
    color: var(--text-main);
}

.contact-form-wrapper {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 3.5rem;
    border-radius: 4px;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.8rem;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 2px;
    color: #ffffff;
    font-family: var(--font-stack);
    font-size: 0.95rem;
    font-weight: 300;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

/* Minimalist Footer */
.footer {
    padding: 4rem 0;
    background-color: var(--bg-primary);
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-socials {
    display: flex;
    gap: 2rem;
}

.footer-socials a {
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.footer-socials a:hover {
    color: var(--accent-gold);
}

/* Responsive Overrides */
@media (max-width: 992px) {

    .about-grid,
    .grid-2,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 5rem;
        left: 0;
        width: 100%;
        background-color: var(--bg-secondary);
        flex-direction: column;
        padding: 2.5rem;
        gap: 2rem;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .footer-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }
}