:root {
    --bg-color: #fcfbf9;
    --bg-light: #f5f4f0;
    --accent-color: #a8a29e;
    --text-color: #57534e;
    --heading-color: #44403c; /* Not overly dark */
    --white: #ffffff;
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 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-color);
    margin-bottom: 20px;
    font-weight: 600;
}

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

header.sticky {
    background-color: rgba(252, 251, 249, 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-color);
}

.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-color);
}

.cta-nav {
    border: 1px solid var(--accent-color);
    padding: 10px 25px !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(252, 251, 249, 0.85), rgba(252, 251, 249, 0.1));
}

.hero-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

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

.hero-content h1 {
    font-size: 4.2rem;
    line-height: 1.1;
    margin-bottom: 30px;
    animation: fadeInSlideUp 1s ease-out;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 45px;
    animation: fadeInSlideUp 1.2s ease-out;
}

.hero-btns {
    display: flex;
    gap: 20px;
    animation: fadeInSlideUp 1.4s ease-out;
}

.floating-contact {
    position: absolute;
    bottom: 60px;
    left: 40px;
    display: flex;
    gap: 50px;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.floating-contact a {
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 20px 45px;
    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;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--heading-color);
    border: 1px solid var(--heading-color);
}

.btn-secondary:hover {
    background-color: var(--heading-color);
    color: white;
}

.full-width {
    width: 100%;
}

/* Editorial Intro */
.editorial-intro {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: center;
}

.image-stack {
    position: relative;
    height: 650px;
}

.img-large {
    width: 80%;
    height: 100%;
    object-fit: cover;
    filter: sepia(10%);
}

.img-small {
    position: absolute;
    bottom: -40px;
    right: 0;
    width: 50%;
    height: 350px;
    object-fit: cover;
    border: 15px solid var(--bg-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

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

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

.quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.4rem;
    color: var(--accent-color);
    margin-top: 40px;
    padding-left: 30px;
    border-left: 2px solid var(--accent-color);
}

/* Services Section */
.free-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--white);
    padding: 0;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}

.service-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

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

.service-content {
    padding: 40px;
}

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

/* Process Section */
.diagonal-flow {
    position: relative;
    padding: 60px 0;
}

.diagonal-step {
    display: flex;
    margin-bottom: 80px;
}

.step-left { justify-content: flex-start; }
.step-right { justify-content: flex-end; }

.step-content {
    width: 45%;
    padding: 50px;
    background: var(--bg-light);
    position: relative;
}

.step-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: rgba(168, 162, 158, 0.2);
    position: absolute;
    top: -20px;
    left: 30px;
}

.step-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    position: relative;
}

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

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

.contact-details {
    margin-top: 50px;
}

.contact-details p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-details a {
    color: var(--text-color);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-color);
}

.contact-form-box {
    background: var(--white);
    padding: 70px;
    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: #10b981;
    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: 25px;
}

/* 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.2rem; }
    .editorial-intro, .contact-grid { grid-template-columns: 1fr; gap: 80px; }
    .image-stack { height: 500px; }
    .step-content { width: 80%; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-content h1 { font-size: 2.8rem; }
    .floating-contact { flex-direction: column; gap: 20px; bottom: 40px; }
    .step-content { width: 100%; padding: 30px; }
    .contact-form-box { padding: 40px; }
}
