*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    margin: 0;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* NAV */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(42, 29, 20, 0.0);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
    background: rgba(42, 29, 20, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(217, 96, 26, 0.15);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fdf2e9;
}

.nav-brand-icon {
    flex-shrink: 0;
}

.nav-brand-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: rgba(253, 242, 233, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d9601a;
    transition: width 0.2s;
}

.nav-link:hover {
    color: #fdf2e9;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: #d9601a;
    color: #fdf2e9;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
    background: #c44a10;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #fdf2e9;
}

.menu-icon, .close-icon {
    transition: opacity 0.2s, transform 0.2s;
}

.close-icon {
    position: absolute;
    opacity: 0;
    transform: rotate(-90deg);
}

.nav-toggle.active .menu-icon {
    opacity: 0;
    transform: rotate(90deg);
}

.nav-toggle.active .close-icon {
    opacity: 1;
    transform: rotate(0);
}

.nav-toggle {
    position: relative;
}

/* MOBILE MENU */
.mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(42, 29, 20, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.mobile-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.mobile-link {
    color: #fdf2e9;
    text-decoration: none;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 600;
    transition: color 0.2s;
}

.mobile-link:hover {
    color: #d9601a;
}

.mobile-cta {
    margin-top: 12px;
    background: #d9601a;
    color: #fdf2e9;
    padding: 14px 36px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(42, 29, 20, 0.72) 0%,
        rgba(42, 29, 20, 0.65) 40%,
        rgba(42, 29, 20, 0.80) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 760px;
    padding: 120px 24px 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(217, 96, 26, 0.2);
    border: 1px solid rgba(217, 96, 26, 0.4);
    color: #f9c99a;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 28px;
    letter-spacing: 0.02em;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.75rem, 7vw, 5rem);
    font-weight: 800;
    color: #fdf2e9;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 0 0 24px;
}

.hero-title br {
    display: none;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(253, 242, 233, 0.8);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: rgba(253, 242, 233, 0.5);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: #d9601a;
    color: #fdf2e9;
}

.btn-primary:hover {
    background: #c44a10;
    box-shadow: 0 8px 24px rgba(217, 96, 26, 0.35);
}

.btn-outline-light {
    background: transparent;
    color: #fdf2e9;
    border: 1.5px solid rgba(253, 242, 233, 0.4);
}

.btn-outline-light:hover {
    border-color: #fdf2e9;
    background: rgba(253, 242, 233, 0.08);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* TRUST BAR */
.trust-bar {
    background: #2a1d14;
    border-top: 1px solid rgba(217, 96, 26, 0.15);
    padding: 28px 0;
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(253, 242, 233, 0.85);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-icon {
    flex-shrink: 0;
}

/* SECTION HEADERS */
.section-tag {
    display: inline-block;
    color: #d9601a;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #2a1d14;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #6b4924;
    line-height: 1.7;
    max-width: 540px;
}

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

.section-header .section-subtitle {
    margin: 0 auto;
}

/* SERVICES */
.services {
    padding: 100px 0;
    background: #fdfbf7;
}

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

.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 36px 28px;
    border: 1px solid rgba(161, 56, 14, 0.08);
    transition: box-shadow 0.25s, transform 0.25s;
}

.service-card:hover {
    box-shadow: 0 12px 40px rgba(42, 29, 20, 0.1);
    transform: translateY(-4px);
}

.service-icon-wrap {
    width: 56px;
    height: 56px;
    background: rgba(217, 96, 26, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2a1d14;
    margin: 0 0 10px;
}

.service-desc {
    font-size: 0.95rem;
    color: #6b4924;
    line-height: 1.65;
    margin: 0;
}

/* ABOUT */
.about {
    padding: 100px 0;
    background: #f2e8cc;
}

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

.about-image {
    position: relative;
}

.about-img-main {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(42, 29, 20, 0.15);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-img-accent {
    position: absolute;
    bottom: -32px;
    right: -32px;
    width: 180px;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid #f2e8cc;
    box-shadow: 0 8px 24px rgba(42, 29, 20, 0.12);
}

.about-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content .section-title {
    margin-bottom: 24px;
}

.about-body {
    font-size: 1rem;
    color: #6b4924;
    line-height: 1.75;
    margin: 0 0 16px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid rgba(161, 56, 14, 0.15);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #d9601a;
}

.stat-label {
    font-size: 0.85rem;
    color: #825828;
    font-weight: 500;
}

/* GALLERY */
.gallery {
    padding: 100px 0;
    background: #fdfbf7;
}

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

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: auto;
}

.gallery-item:nth-child(1) { aspect-ratio: 4/5; }
.gallery-item:nth-child(2) { aspect-ratio: 5/4; }
.gallery-item:nth-child(3) { aspect-ratio: 5/4; }
.gallery-item:nth-child(4) { aspect-ratio: 4/5; }
.gallery-item:nth-child(5) { aspect-ratio: 5/4; }
.gallery-item:nth-child(6) { aspect-ratio: 5/4; }

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(42, 29, 20, 0.75) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-overlay span {
    color: #fdf2e9;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 600;
}

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

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

/* CTA SECTION */
.cta-section {
    padding: 100px 0;
    background: #2a1d14;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(217, 96, 26, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-text {
    flex: 1;
    min-width: 280px;
}

.cta-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #fdf2e9;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}

.cta-subtitle {
    font-size: 1.05rem;
    color: rgba(253, 242, 233, 0.7);
    line-height: 1.7;
    max-width: 440px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* CONTACT */
.contact {
    padding: 100px 0;
    background: #fdfbf7;
}

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

.contact-info .section-title {
    margin-bottom: 16px;
}

.contact-desc {
    font-size: 1rem;
    color: #6b4924;
    line-height: 1.7;
    margin: 0 0 36px;
}

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

.contact-item {
    display: flex;
    gap: 16px;
}

.contact-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item strong {
    display: block;
    color: #2a1d14;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.contact-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #6b4924;
    line-height: 1.6;
}

.contact-item a {
    color: #d9601a;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: #c44a10;
    text-decoration: underline;
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(42, 29, 20, 0.08);
}

/* CONTACT FORM */
.contact-form-wrap {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(42, 29, 20, 0.06);
    border: 1px solid rgba(161, 56, 14, 0.06);
}

.form-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2a1d14;
    margin: 0 0 6px;
}

.form-subtitle {
    font-size: 0.9rem;
    color: #825828;
    margin: 0 0 28px;
}

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

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #3d2b1f;
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid rgba(161, 56, 14, 0.15);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    color: #2a1d14;
    background: #fdfbf7;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-input:focus {
    border-color: #d9601a;
    box-shadow: 0 0 0 3px rgba(217, 96, 26, 0.1);
}

.form-input::placeholder {
    color: #c4903a;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23d9601a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-success {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: rgba(22, 163, 74, 0.06);
    border: 1px solid rgba(22, 163, 74, 0.2);
    border-radius: 8px;
    color: #16a34a;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 16px;
}

.form-success.show {
    display: flex;
}

/* FOOTER */
.footer {
    background: #1a110c;
    padding: 64px 0 0;
}

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

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fdf2e9;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-desc {
    font-size: 0.9rem;
    color: rgba(253, 242, 233, 0.5);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
}

.footer-heading {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #d9601a;
    margin: 0 0 20px;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(253, 242, 233, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

.footer-address {
    font-size: 0.9rem;
    color: rgba(253, 242, 233, 0.6);
    line-height: 1.8;
    font-style: normal;
}

.footer-address a {
    color: #d9601a;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-address a:hover {
    color: #f9c99a;
}

.footer-bottom {
    border-top: 1px solid rgba(253, 242, 233, 0.08);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(253, 242, 233, 0.35);
    margin: 0;
}

/* REVEAL ANIMATIONS */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .nav-toggle {
        display: block;
    }
    .hero-title br {
        display: block;
    }
    .hero-content {
        padding: 100px 20px 80px;
    }
    .trust-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-img-accent {
        width: 140px;
        height: 140px;
        bottom: -20px;
        right: -12px;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(4) {
        aspect-ratio: 4/5;
    }
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(5),
    .gallery-item:nth-child(6) {
        aspect-ratio: 1;
    }
    .cta-inner {
        flex-direction: column;
        text-align: center;
    }
    .cta-subtitle {
        margin: 0 auto;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .contact-form-wrap {
        padding: 28px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .trust-items {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item,
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(4) {
        aspect-ratio: 4/5;
    }
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(5),
    .gallery-item:nth-child(6) {
        aspect-ratio: 4/5;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .about-stats {
        gap: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
    .hero-scroll {
        animation: none;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}
