:root {
    --bg-color: #fdfaf5; /* Warm Ivory */
    --bg-light: #f5f1ea; /* Soft Beige */
    --accent-gold: #c5a059; /* Muted Gold */
    --accent-olive: #8fa38d; /* Olive Green */
    --text-color: #57534e;
    --heading-color: #2b2b2b; /* Dark Gray, not harsh black */
    --white: #ffffff;
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--heading-color);
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: 120px 0;
}

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

.editorial-tag {
    display: block;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.7rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-weight: 600;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 3rem;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 35px 0;
    transition: var(--transition);
}

header.sticky {
    background-color: rgba(253, 250, 245, 0.98);
    padding: 15px 0;
    box-shadow: 0 1px 0 rgba(0,0,0,0.03);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--heading-color);
    font-weight: 600;
}

.logo span {
    font-weight: 400;
    font-style: italic;
    color: var(--accent-gold);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 45px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.cta-nav {
    border: 1px solid var(--accent-gold);
    padding: 10px 25px !important;
    border-radius: 50px;
}

.cta-nav:hover {
    background-color: var(--accent-gold);
    color: white !important;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
}

/* Hero Section */
#hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 15s ease-out;
}

#hero:hover .hero-bg {
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(253, 250, 245, 0.85), rgba(253, 250, 245, 0.1));
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 650px;
    animation: fadeInSlideUp 1s ease-out;
}

.studio-tag {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-style: italic;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 45px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 20px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--heading-color);
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    background-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.3);
}

.full-width {
    width: 100%;
}

/* About Section */
.about-asymmetric {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
}

.about-image-layered {
    position: relative;
}

.main-img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 5px;
    position: relative;
    z-index: 2;
}

.accent-box {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light);
    z-index: 1;
    border-radius: 5px;
}

.about-text h2 {
    font-size: 3.2rem;
    margin-bottom: 35px;
}

.about-text p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* Services Section */
.services-layered {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--white);
    padding: 60px 40px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
    border-color: var(--accent-olive);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-olive);
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

/* Gallery Section */
.masonry-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 350px;
    gap: 30px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 5px;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.item-large {
    grid-row: span 2;
}

.item-wide {
    grid-column: span 2;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 120px;
}

.contact-info h2 {
    font-size: 3.5rem;
    margin-bottom: 35px;
}

.info-details {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

.info-item:hover {
    color: var(--accent-gold);
}

.info-item i {
    color: var(--accent-gold);
    font-size: 1.3rem;
}

.contact-form-box {
    background: var(--white);
    padding: 80px;
    border-radius: 10px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.03);
}

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

input, textarea {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid #e5e7eb;
    background: transparent;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

input:focus, textarea:focus {
    border-bottom-color: var(--heading-color);
}

.success-ui {
    text-align: center;
    padding: 50px 0;
}

.success-ui i {
    font-size: 4.5rem;
    color: var(--accent-olive);
    margin-bottom: 25px;
}

/* Footer */
footer {
    padding: 80px 0;
    border-top: 1px solid rgba(0,0,0,0.03);
    text-align: center;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-content p {
    margin-bottom: 10px;
}

.footer-content a {
    color: var(--text-color);
    text-decoration: none;
}

.copyright {
    margin-top: 40px;
    font-size: 0.85rem;
    color: #a8a29e;
}

/* Animations */
@keyframes fadeInSlideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 3.5rem; }
    .about-asymmetric, .contact-grid { grid-template-columns: 1fr; gap: 80px; }
    .main-img { height: 500px; }
    .contact-form-box { padding: 50px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-content h1 { font-size: 2.8rem; }
    .masonry-gallery { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .item-large, .item-wide { grid-row: auto; grid-column: auto; }
    .gallery-item { height: 300px; }
}
