:root {
    --bg-main: #f4f4f4;
    /* Off-white sand */
    --text-primary: #1a1a1a;
    --accent: #E10600;
    /* Logo Red */
    --accent-muted: #b08d57;
    /* Metallic/Sand accent like images */
    --serif: 'Playfair Display', serif;
    --sans: 'Inter', 'Poppins', sans-serif;
    --spacing-xl: 120px;
}

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

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Custom Typography */
h1,
h2,
h3,
.serif {
    font-family: var(--serif);
    font-weight: 400;
}

.display-large {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* Custom Grid / Layout (Bootstrap override) */
.custom-container {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
}

section {
    padding: var(--spacing-xl) 0;
}

/* Header Refinement */
header {
    padding: 30px 0;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 1000;
}

header.scrolled {
    padding: 15px 0;
    background: rgba(244, 244, 244, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo-text {
    font-family: var(--sans);
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-size: clamp(1rem, 2vw, 1.4rem);
}

.nav-link {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    position: relative;
    padding: 10px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text-primary);
    transition: width 0.3s ease;
}

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

/* Hero Section - Image Inspiration */
#hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--bg-main);
}

.hero-content {
    max-width: 900px;
}

.hero-btn-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: var(--accent-muted);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 8px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.5s ease;
    margin-top: 40px;
}

.hero-btn-circle:hover {
    transform: scale(1.1);
    background: var(--accent);
}

/* Services / Grid Items - Studio 11 Style */
.service-item {
    margin-bottom: 80px;
}

.service-img-wrapper {
    overflow: hidden;
    margin-bottom: 30px;
}

.service-img-wrapper img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

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

.service-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-btn {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid var(--text-primary);
    text-decoration: none;
    color: var(--text-primary);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: var(--text-primary);
    color: #fff;
}

/* Custom Footer - Highly Styled */
.studio-footer {
    background: #111;
    color: #fff;
    padding: 100px 0 40px;
    margin-top: 100px;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-size: 2rem;
    letter-spacing: 0.3em;
    font-weight: 300;
    margin-bottom: 30px;
}

.footer-heading {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    opacity: 0.5;
}

/* Animations */
[data-aos] {
    transition-duration: 1000ms !important;
}

@media (max-width: 991px) {
    .footer-main-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .footer-main-grid {
        grid-template-columns: 1fr;
    }

    .display-large {
        font-size: 3rem;
    }
}