/* ===== BASE & RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --earth-dark: #3d3229;
    --earth: #5c4d3c;
    --terracotta: #b8623a;
    --terracotta-light: #d4875a;
    --sage: #8a9a7b;
    --sage-light: #a8b89a;
    --cream: #faf7f2;
    --cream-warm: #f5f0e8;
    --text: #2c2419;
    --text-light: #6b5d4d;
    --white: #ffffff;
    --shadow: 0 4px 24px rgba(44,36,25,0.08);
    --shadow-lg: 0 12px 40px rgba(44,36,25,0.12);
    --radius: 4px;
    --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --container: 1200px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
    font-weight: 400;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text);
}

em {
    font-style: italic;
    color: var(--terracotta);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250,247,242,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(44,36,25,0.06);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 46px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--earth-dark);
    letter-spacing: -0.3px;
}

.logo-sub {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--text-light);
    font-weight: 700;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 36px;
}

.nav-menu li a {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    position: relative;
    padding-bottom: 4px;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--terracotta);
    transition: var(--transition);
}

.nav-menu li a:hover {
    color: var(--earth-dark);
}

.nav-menu li a:hover::after {
    width: 100%;
}

.btn-nav {
    background: var(--terracotta);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.btn-nav:hover {
    background: var(--earth);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--earth-dark);
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(44,36,25,0.82) 0%, rgba(44,36,25,0.5) 50%, rgba(44,36,25,0.2) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding-top: 100px;
    max-width: 640px;
    color: var(--white);
}

.hero-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--terracotta-light);
    margin-bottom: 20px;
    border-bottom: 1px solid var(--terracotta);
    padding-bottom: 8px;
}

.hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero-title em {
    color: var(--sage-light);
}

.hero-desc {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 36px;
    line-height: 1.8;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--terracotta);
    color: var(--white);
    border-color: var(--terracotta);
}

.btn-primary:hover {
    background: var(--terracotta-light);
    border-color: var(--terracotta-light);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--earth-dark);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--cream);
    color: var(--terracotta);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--sage-light);
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.7;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.25);
}

/* ===== SECTION COMMON ===== */
.section-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--terracotta);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 24px;
    line-height: 1.2;
}

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

.section-header.light .section-label {
    color: var(--sage-light);
}

.section-header.light .section-title {
    color: var(--white);
}

/* ===== ABOUT ===== */
.about {
    padding: 110px 0;
    background: var(--cream);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text-content {
    padding-right: 20px;
}

.about-lead {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-text-content > p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-values {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.value {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.value-num {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--terracotta);
    line-height: 1;
    flex-shrink: 0;
    min-width: 36px;
}

.value h4 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--earth-dark);
    margin-bottom: 6px;
}

.value p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-visual {
    position: relative;
    padding-right: 40px;
    padding-bottom: 60px;
}

.visual-main {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.visual-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: var(--transition);
}

.visual-main:hover img {
    transform: scale(1.03);
}

.visual-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    border: 6px solid var(--cream);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.visual-accent img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* ===== SERVICES ===== */
.services {
    padding: 110px 0;
    background: var(--white);
}

.services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.service-item {
    display: flex;
    gap: 28px;
    padding: 36px;
    background: var(--cream);
    border-radius: var(--radius);
    border: 1px solid rgba(44,36,25,0.05);
    transition: var(--transition);
}

.service-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: transparent;
}

.service-visual {
    flex-shrink: 0;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.service-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--earth-dark);
}

.service-info > p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-details {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.service-details li {
    font-size: 0.88rem;
    color: var(--text-light);
    padding-left: 16px;
    position: relative;
}

.service-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--terracotta);
    font-weight: 700;
}

/* ===== WORK / PROCESS ===== */
.work {
    padding: 110px 0;
    background: var(--earth-dark);
    position: relative;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 36px 28px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.process-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-6px);
}

.process-step {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--terracotta-light);
    opacity: 0.5;
    margin-bottom: 16px;
    line-height: 1;
}

.process-card h3 {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.process-card p {
    color: rgba(255,255,255,0.65);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 80px 0;
    background: var(--terracotta);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    color: var(--white);
}

.cta-content h2 {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    margin-bottom: 16px;
}

.cta-content p {
    opacity: 0.9;
    font-size: 1.05rem;
    margin-bottom: 28px;
}

/* ===== CONTACT ===== */
.contact {
    padding: 110px 0;
    background: var(--cream);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
}

.contact-details {
    padding-right: 20px;
}

.contact-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 36px;
    line-height: 1.7;
}

.contact-blocks {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-block {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 24px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-block:hover {
    transform: translateX(6px);
}

.block-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.block-info h4 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--earth-dark);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.block-info a {
    color: var(--terracotta);
    font-weight: 700;
    font-size: 1rem;
}

.block-info a:hover {
    color: var(--earth);
}

.block-info p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-form-box {
    background: var(--white);
    padding: 44px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.contact-form-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 28px;
    color: var(--earth-dark);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(44,36,25,0.12);
    border-radius: var(--radius);
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--cream);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(184,98,58,0.1);
}

.form-group textarea {
    resize: vertical;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--earth-dark);
    color: rgba(255,255,255,0.65);
    padding: 64px 0 24px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo img {
    height: 44px;
}

.footer-logo .logo-main {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    display: block;
}

.footer-logo .logo-sub {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.5);
    display: block;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-nav h4,
.footer-services h4,
.footer-contact-info h4 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-nav ul,
.footer-services ul {
    list-style: none;
}

.footer-nav li,
.footer-services li {
    margin-bottom: 10px;
}

.footer-nav a,
.footer-services a {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}

.footer-nav a:hover,
.footer-services a:hover {
    color: var(--terracotta-light);
}

.footer-contact-info a {
    color: rgba(255,255,255,0.6);
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.footer-contact-info a:hover {
    color: var(--terracotta-light);
}

.footer-contact-info p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    opacity: 0.5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-visual {
        order: -1;
        padding-right: 30px;
        padding-bottom: 50px;
    }
    .services-list {
        grid-template-columns: 1fr;
    }
    .process-grid {
        grid-template-columns: 1fr 1fr;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 28px;
        gap: 18px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        transition: var(--transition);
    }
    .nav-menu.active {
        transform: translateY(0);
    }
    .hero-content {
        padding-top: 100px;
        text-align: center;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .process-grid {
        grid-template-columns: 1fr;
    }
    .service-item {
        flex-direction: column;
        gap: 20px;
    }
    .service-details {
        grid-template-columns: 1fr;
    }
    .visual-accent {
        width: 50%;
    }
    .visual-accent img {
        height: 160px;
    }
    .footer-main {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 18px;
    }
    .about, .services, .work, .contact {
        padding: 70px 0;
    }
    .contact-form-box {
        padding: 28px;
    }
    .visual-main img {
        height: 300px;
    }
    .hero-stats {
        gap: 16px;
    }
    .stat-divider {
        height: 28px;
    }
    .hero-actions {
        flex-direction: column;
    }
    .btn {
        width: 100%;
        text-align: center;
    }
}
