/* Desert Modern Editorial Styles */
:root {
    --sand: #f4eee1;
    --clay: #d9a282;
    --ivory: #faf9f6;
    --terracotta: #b66d4d;
    --text-dark: #4a443f;
    --text-muted: #8c8279;
    --accent-soft: #e8e1d5;
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--ivory);
    color: var(--text-dark);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

h1, h2, h3, .editorial-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    letter-spacing: -0.01em;
}

p {
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(250, 249, 246, 0.8);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 25px 0;
    border-bottom: 1px solid rgba(217, 162, 130, 0.1);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--text-dark);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

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

.nav-links a {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

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

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(250, 249, 246, 0.2), rgba(250, 249, 246, 0.2)), url('assets/hero.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    max-width: 850px;
    background: rgba(250, 249, 246, 0.85);
    padding: 100px 60px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    animation: revealUp 1.8s ease;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    line-height: 1.1;
}

.hero p {
    font-size: 1rem;
    margin-bottom: 45px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clay);
}

.btn {
    display: inline-block;
    padding: 20px 50px;
    background-color: var(--text-dark);
    color: var(--ivory);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    background-color: var(--clay);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(217, 162, 130, 0.2);
}

/* Section Common */
section {
    padding: 160px 0;
}

.section-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--clay);
    margin-bottom: 25px;
    display: block;
}

.section-title {
    margin-bottom: 100px;
}

.section-title h2 {
    font-size: 3.2rem;
    line-height: 1.2;
}

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

.about-text h3 {
    font-size: 2.5rem;
    margin-bottom: 35px;
}

.about-text p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    line-height: 1.9;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    box-shadow: 40px 40px 0 var(--sand);
}

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

.service-card {
    background: var(--ivory);
    padding: 70px 50px;
    border: 1px solid var(--accent-soft);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--clay);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(74, 68, 63, 0.05);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card i {
    font-size: 2.2rem;
    color: var(--clay);
    margin-bottom: 35px;
}

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

/* Why Us Section */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 60px;
}

.why-item h4 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.why-item p {
    font-size: 0.95rem;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    height: 500px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

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

.contact-info h3 {
    font-size: 2.8rem;
    margin-bottom: 40px;
}

.contact-details div {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 45px;
}

.contact-details i {
    color: var(--clay);
    font-size: 1.1rem;
    margin-top: 5px;
}

.contact-form {
    background: white;
    padding: 80px;
    box-shadow: 0 40px 100px rgba(74, 68, 63, 0.04);
}

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

.form-group label {
    display: block;
    margin-bottom: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 18px 0;
    border: none;
    border-bottom: 1px solid var(--accent-soft);
    background: transparent;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--clay);
}

#form-success {
    display: none;
    padding: 80px 40px;
    text-align: center;
    background: var(--sand);
}

/* Map Section */
.map-container {
    height: 600px;
    width: 100%;
    filter: sepia(0.2) contrast(0.9) brightness(1.05);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer */
footer {
    padding: 120px 0 60px;
    background: var(--sand);
    text-align: center;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 50px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.footer-contact {
    margin-bottom: 60px;
}

.footer-contact p {
    margin-bottom: 12px;
}

.copyright {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.7;
}

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

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 { font-size: 3.2rem; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 80px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2.5rem; }
    .hero-overlay { padding: 60px 30px; }
    .section-title h2 { font-size: 2.5rem; }
    .contact-form { padding: 50px 30px; }
    .gallery-grid { grid-template-columns: 1fr; }
}
