/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Nunito', sans-serif;
    color: #2D1F2D;
    background: #FDF6EC;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== FONTS ===== */
h1, h2, h3, h4 {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    line-height: 1.2;
    color: #2D1F2D;
}

/* ===== COLOR VARIABLES ===== */
:root {
    --plum: #6B3A5D;
    --plum-deep: #4A2540;
    --plum-light: #8B5A7B;
    --amber: #F5A623;
    --amber-light: #FFD07D;
    --cream: #FDF6EC;
    --cream-dark: #F5E6D0;
    --warm-white: #FFF9F2;
    --text: #2D1F2D;
    --text-muted: #6B5A6A;
    --radius: 16px;
    --radius-lg: 24px;
    --shadow: 0 4px 24px rgba(107, 58, 93, 0.08);
    --shadow-lg: 0 12px 48px rgba(107, 58, 93, 0.12);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.btn-primary {
    background: var(--plum);
    color: #fff;
    padding: 14px 32px;
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(107, 58, 93, 0.3);
}
.btn-primary:hover {
    background: var(--plum-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 58, 93, 0.4);
}
.btn-outline {
    background: transparent;
    color: var(--plum);
    padding: 14px 32px;
    font-size: 1rem;
    border: 2px solid var(--plum);
}
.btn-outline:hover {
    background: var(--plum);
    color: #fff;
    transform: translateY(-2px);
}
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-sm { padding: 10px 24px; font-size: 0.9rem; }
.btn-block { width: 100%; justify-content: center; padding: 16px 32px; }
.btn-light {
    background: #fff;
    color: var(--plum);
    padding: 18px 40px;
    font-size: 1.05rem;
    box-shadow: var(--shadow);
}
.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-outline-light {
    background: transparent;
    color: #fff;
    padding: 18px 40px;
    font-size: 1.05rem;
    border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    transform: translateY(-2px);
}

/* ===== SECTION LABELS ===== */
.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}
.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 560px;
}
.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-header .section-desc { margin: 0 auto; }
.accent { color: var(--plum); }

/* ===== HEADER / NAV ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 246, 236, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(107, 58, 93, 0.08);
    transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
    box-shadow: 0 4px 24px rgba(107, 58, 93, 0.1);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-text {
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem;
    line-height: 1.2;
    color: var(--plum);
}
.logo-light .logo-text { color: #fff; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a:not(.btn) {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text);
    position: relative;
    transition: color 0.3s;
}
.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--amber);
    transition: width 0.3s;
    border-radius: 2px;
}
.nav-links a:not(.btn):hover { color: var(--plum); }
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}
.nav-toggle span {
    display: block;
    height: 2.5px;
    background: var(--plum);
    border-radius: 2px;
    transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
    padding: 140px 0 0;
    background: var(--cream);
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-bottom: 80px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--plum);
    background: rgba(107, 58, 93, 0.08);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}
.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text);
}
.hero-title .accent {
    color: var(--plum);
    font-style: italic;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 480px;
    line-height: 1.8;
}
.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.hero-trust li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.hero-trust li svg { color: var(--amber); }

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 780px;
}
.hero-img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 85%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-img-float {
    position: absolute;
    bottom: 60px;
    left: -20px;
    width: 55%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream);
}
.hero-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.float-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--plum);
    display: flex;
    align-items: center;
    gap: 6px;
}
.hero-img-accent {
    position: absolute;
    top: 40px;
    left: 20px;
    width: 120px;
    height: 120px;
    background: var(--amber);
    border-radius: 50%;
    opacity: 0.15;
}
.hero-wave {
    margin-top: -1px;
}
.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ===== SERVICES ===== */
.services {
    padding: 100px 0;
    background: var(--cream-dark);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all 0.3s ease;
    border: 1px solid rgba(107, 58, 93, 0.06);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(107, 58, 93, 0.12);
}
.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--plum), var(--plum-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 24px;
}
.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text);
}
.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== ABOUT ===== */
.about {
    padding: 100px 0;
    background: var(--cream);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-images {
    position: relative;
    height: 640px;
}
.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 80%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-content .section-label { margin-bottom: 12px; }
.about-content .section-title { margin-bottom: 24px; }
.about-lead {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.8;
}
.about-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.8;
}
.about-stats {
    display: flex;
    gap: 40px;
    margin: 32px 0;
    padding: 24px 0;
    border-top: 1px solid rgba(107, 58, 93, 0.1);
    border-bottom: 1px solid rgba(107, 58, 93, 0.1);
}
.stat { text-align: left; }
.stat-number {
    display: block;
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    color: var(--plum);
    line-height: 1;
    margin-bottom: 4px;
}
.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}
.about-content .btn { margin-top: 8px; }

/* ===== GALLERY ===== */
.gallery {
    padding: 100px 0;
    background: var(--cream-dark);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 31, 45, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 100px 0;
    background: var(--cream);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    border: 1px solid rgba(107, 58, 93, 0.06);
    transition: all 0.3s ease;
    position: relative;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.quote-mark {
    font-family: 'DM Serif Display', serif;
    font-size: 4rem;
    line-height: 1;
    color: var(--amber);
    position: absolute;
    top: 20px;
    right: 28px;
    opacity: 0.5;
}
.testimonial-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
    margin-top: 20px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--plum), var(--plum-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}
.author-name {
    display: block;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--text);
}
.author-detail {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--plum-deep) 0%, var(--plum) 50%, var(--plum-light) 100%);
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--amber);
    border-radius: 50%;
    opacity: 0.08;
}
.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: var(--amber);
    border-radius: 50%;
    opacity: 0.06;
}
.cta-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 16px;
}
.cta-title .accent { color: var(--amber); }
.cta-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 480px;
    line-height: 1.8;
}
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* ===== CONTACT ===== */
.contact {
    padding: 100px 0;
    background: var(--cream-dark);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-info .section-label { margin-bottom: 12px; }
.contact-info .section-title { margin-bottom: 16px; }
.contact-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    line-height: 1.8;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--plum), var(--plum-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}
.contact-item strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.contact-item a, .contact-item span {
    font-size: 1rem;
    color: var(--text);
    font-weight: 600;
}
.contact-item a:hover { color: var(--plum); }
.contact-map { border-radius: var(--radius); overflow: hidden; }

/* Form */
.form-card {
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(107, 58, 93, 0.06);
}
.form-title {
    font-size: 1.6rem;
    margin-bottom: 8px;
}
.form-subtitle {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 0.95rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(107, 58, 93, 0.12);
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--cream);
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--plum);
    box-shadow: 0 0 0 4px rgba(107, 58, 93, 0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b0a0aa;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
    text-align: center;
    padding: 40px 20px;
}
.success-icon { margin-bottom: 16px; }
.form-success h4 {
    font-size: 1.4rem;
    color: var(--plum);
    margin-bottom: 8px;
}
.form-success p { color: var(--text-muted); }

/* ===== FOOTER ===== */
.footer {
    background: var(--plum-deep);
    color: rgba(255,255,255,0.8);
    padding: 80px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
}
.footer h4 {
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}
.footer-tagline {
    margin-top: 16px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--amber); }
.footer-contact p {
    font-size: 0.9rem;
    line-height: 1.8;
}
.footer-contact a {
    color: rgba(255,255,255,0.6);
    transition: color 0.3s;
}
.footer-contact a:hover { color: var(--amber); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
}
.footer-bottom p {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 24px;
        box-shadow: -8px 0 32px rgba(0,0,0,0.15);
        transition: right 0.3s ease;
        z-index: 999;
    }
    .nav-links.open { right: 0; }
    .nav-toggle { display: flex; z-index: 1001; }
    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 998;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s;
    }
    .nav-overlay.active { opacity: 1; pointer-events: all; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { height: 500px; order: -1; }
    .hero-img-main { width: 100%; height: 100%; }
    .hero-img-float { display: none; }
    .hero-img-accent { display: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-images { height: 480px; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero { padding: 120px 0 0; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { width: 100%; justify-content: center; }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .cta-grid { grid-template-columns: 1fr; text-align: center; }
    .cta-actions { justify-content: center; }
    .form-row { grid-template-columns: 1fr; }
    .form-card { padding: 32px 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 2rem; }
    .section-title { font-size: 1.8rem; }
    .about-stats { flex-direction: column; gap: 20px; }
}

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
