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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #2d2016;
    line-height: 1.6;
    background: #faf6f1;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Lora', serif;
    font-weight: 400;
    line-height: 1.1;
    color: #1a1208;
}

a {
    text-decoration: none;
    color: inherit;
}

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

em {
    font-style: italic;
}

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

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 24px 40px;
    background: rgba(250, 246, 241, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(45, 32, 22, 0.06);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-text {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 4px;
    color: #1a1208;
    line-height: 1;
}

.logo-sub {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 6px;
    color: #8b7355;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    font-size: 0.85rem;
    font-weight: 500;
    color: #5a4a3a;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #1a1208;
}

.nav-cta {
    padding: 10px 24px;
    background: #1a1208;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: background 0.3s ease;
}

.nav-cta:hover {
    background: #3d2d1e;
}

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

.hero-image {
    position: absolute;
    inset: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 18, 8, 0.6) 0%, rgba(45, 32, 22, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin-left: 80px;
    color: #fff;
}

.hero-location {
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 400;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 20px;
    color: #fff;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 450px;
    margin-bottom: 36px;
    font-weight: 300;
    line-height: 1.7;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #fff;
    color: #1a1208;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #f0e6d8;
    transform: translateY(-2px);
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.hero-btn:hover .btn-arrow {
    transform: translateX(4px);
}

.hero-side {
    position: absolute;
    right: 80px;
    bottom: 60px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.side-text {
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* ===== ABOUT ===== */
.about {
    padding: 140px 0;
    background: #faf6f1;
}

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

.about-image img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 8px;
}

.about-content {
    color: #2d2016;
}

.section-tag {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #8b7355;
    margin-bottom: 20px;
    font-weight: 600;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: #1a1208;
    margin-bottom: 30px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.section-title em {
    color: #8b7355;
    font-style: italic;
}

.about-text {
    color: #5a4a3a;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 50px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(45, 32, 22, 0.1);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: 'Lora', serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: #1a1208;
    line-height: 1;
}

.stat-name {
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: #8b7355;
    margin-top: 6px;
}

/* ===== WORK / GALLERY ===== */
.work {
    padding: 140px 0;
    background: #f0e6d8;
}

.work-header {
    text-align: center;
    margin-bottom: 80px;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 16px;
}

.work-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

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

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

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

.work-item:hover img {
    transform: scale(1.04);
}

.work-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 18, 8, 0.3);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.work-item:hover .work-overlay {
    opacity: 1;
}

.work-overlay span {
    color: #fff;
    font-family: 'Lora', serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
}

/* ===== SERVICES ===== */
.services {
    padding: 140px 0;
    background: #faf6f1;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-list {
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 30px;
    padding: 40px 0;
    border-top: 1px solid rgba(45, 32, 22, 0.08);
    align-items: start;
    transition: all 0.3s ease;
}

.service-item:last-child {
    border-bottom: 1px solid rgba(45, 32, 22, 0.08);
}

.service-item:hover {
    background: rgba(240, 230, 216, 0.3);
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 4px;
}

.service-num {
    font-family: 'Lora', serif;
    font-size: 1.4rem;
    color: #8b7355;
    font-weight: 400;
    padding-top: 4px;
}

.service-info h3 {
    font-size: 1.4rem;
    color: #1a1208;
    margin-bottom: 10px;
    font-weight: 500;
}

.service-info p {
    color: #5a4a3a;
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 500px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 140px 0;
    background: #f0e6d8;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 80px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.testimonial {
    padding: 40px;
    background: #faf6f1;
    border-radius: 8px;
    border: 1px solid rgba(45, 32, 22, 0.06);
}

.stars {
    color: #c9a96e;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-family: 'Lora', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: #2d2016;
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #1a1208;
    font-size: 0.9rem;
}

.author-event {
    font-size: 0.75rem;
    color: #8b7355;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===== CONTACT ===== */
.contact {
    padding: 140px 0;
    background: #faf6f1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-text {
    color: #5a4a3a;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #2d2016;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

a.contact-item:hover {
    color: #8b7355;
}

.contact-icon {
    font-size: 1.1rem;
}

.contact-hours {
    color: #8b7355;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.contact-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 8px;
}

/* ===== FOOTER ===== */
.footer {
    padding: 60px 0 40px;
    background: #1a1208;
    color: #fff;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 3px;
}

.footer-sub {
    font-size: 0.65rem;
    letter-spacing: 5px;
    color: #8b7355;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image img {
        height: 400px;
    }

    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .work-wide {
        grid-column: span 1;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-image img {
        height: 400px;
    }

    .about-stats {
        gap: 30px;
    }

    .stat-num {
        font-size: 2.2rem;
    }

    .hero-content {
        margin-left: 40px;
        max-width: 90%;
    }

    .hero-side {
        right: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header {
        padding: 16px 20px;
    }

    .nav {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-side {
        display: none;
    }

    .work-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .work-large {
        grid-row: span 1;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        flex-direction: column;
        gap: 20px;
    }
}
