/* ── Reset & Base ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

ul { list-style: none; }

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

/* ── Navigation ─────────────────────────────────── */
header.nav-scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(107, 58, 107, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(107, 58, 107, 0.2);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

header.nav-scrolled .nav-logo-text { color: #F5C518; }

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff;
    transition: color 0.3s ease;
}

.nav-logo-text { font-size: 1.15rem; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.25s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #F5C518;
    border-radius: 1px;
    transition: width 0.25s ease;
}

.nav-links a:hover { color: #F5C518; }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    background: #F5C518 !important;
    color: #6B3A6B !important;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: background 0.25s ease, transform 0.2s ease !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: #ffe055 !important; transform: translateY(-1px); }

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

.hamburger-closed { display: none; }

/* ── Hero ───────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #6B3A6B;
}

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(61, 26, 61, 0.92) 0%,
        rgba(107, 58, 107, 0.85) 50%,
        rgba(74, 44, 90, 0.88) 100%
    );
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 197, 24, 0.15);
    border: 1px solid rgba(245, 197, 24, 0.4);
    color: #F5C518;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 28px;
    letter-spacing: 0.02em;
}

.hero-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.hero-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ── Buttons ────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', system-ui, sans-serif;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn-amber {
    background: #F5C518;
    color: #6B3A6B;
    box-shadow: 0 4px 20px rgba(245, 197, 24, 0.35);
}

.btn-amber:hover {
    background: #ffe055;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(245, 197, 24, 0.45);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

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

/* ── Section Shared ─────────────────────────────── */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #F5C518;
    background: rgba(107, 58, 107, 0.1);
    border: 1px solid rgba(107, 58, 107, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #6B3A6B;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #7a5a7a;
    line-height: 1.7;
}

/* ── Services ───────────────────────────────────── */
.services {
    background: #fff;
}

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

.service-card {
    background: #F9F0F9;
    border-radius: 20px;
    padding: 36px 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(107, 58, 107, 0.08);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(107, 58, 107, 0.12);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: #6B3A6B;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F5C518;
    margin-bottom: 20px;
}

.service-name {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #6B3A6B;
    margin-bottom: 10px;
}

.service-desc {
    font-size: 0.95rem;
    color: #7a5a7a;
    line-height: 1.65;
}

/* ── About ──────────────────────────────────────── */
.about {
    background: #F9F0F9;
}

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

.about-images {
    position: relative;
}

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

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

.about-img-secondary {
    position: absolute;
    bottom: -32px;
    right: -24px;
    border-radius: 20px;
    overflow: hidden;
    border: 6px solid #F9F0F9;
    box-shadow: 0 12px 32px rgba(107, 58, 107, 0.12);
    max-width: 55%;
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    top: -20px;
    right: 20px;
    background: #F5C518;
    color: #6B3A6B;
    padding: 16px 20px;
    border-radius: 16px;
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    line-height: 1.3;
    box-shadow: 0 8px 24px rgba(245, 197, 24, 0.3);
    z-index: 2;
}

.about-content { max-width: 520px; }

.about-text {
    font-size: 1.05rem;
    color: #7a5a7a;
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #6B3A6B;
}

.check-icon {
    color: #F5C518;
    flex-shrink: 0;
}

/* ── Gallery ────────────────────────────────────── */
.gallery {
    background: #fff;
}

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

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 5/4;
    position: relative;
}

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

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

/* ── Testimonials ───────────────────────────────── */
.testimonials {
    background: #6B3A6B;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(245, 197, 24, 0.05);
    pointer-events: none;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(245, 197, 24, 0.04);
    pointer-events: none;
}

.testimonials .section-tag {
    background: rgba(245, 197, 24, 0.15);
    border-color: rgba(245, 197, 24, 0.3);
}

.testimonials .section-title { color: #fff; }
.testimonials .section-subtitle { color: rgba(255, 255, 255, 0.7); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 36px 28px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
}

.quote-icon {
    margin-bottom: 16px;
    opacity: 0.9;
}

.testimonial-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.9rem;
    font-weight: 600;
    color: #F5C518;
}

/* ── Contact ────────────────────────────────────── */
.contact {
    background: #F9F0F9;
}

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

.contact-text {
    font-size: 1.05rem;
    color: #7a5a7a;
    line-height: 1.75;
    margin-bottom: 36px;
}

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

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #6B3A6B;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F5C518;
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9B59B6;
    margin-bottom: 4px;
}

.contact-value {
    display: block;
    font-size: 1rem;
    color: #6B3A6B;
    font-weight: 500;
    line-height: 1.5;
}

.contact-value a {
    color: #6B3A6B;
    text-decoration: none;
    border-bottom: 1px solid rgba(107, 58, 107, 0.2);
    transition: border-color 0.2s ease;
}

.contact-value a:hover { border-color: #F5C518; }

.contact-form-wrapper { max-width: 100%; }

.contact-form-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 16px 48px rgba(107, 58, 107, 0.1);
    border: 1px solid rgba(107, 58, 107, 0.06);
}

.contact-form-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #6B3A6B;
    margin-bottom: 28px;
}

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

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

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(107, 58, 107, 0.15);
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: 'Inter', system-ui, sans-serif;
    color: #6B3A6B;
    background: #F9F0F9;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    outline: none;
    -webkit-appearance: none;
}

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

.form-input:focus {
    border-color: #F5C518;
    box-shadow: 0 0 0 4px rgba(245, 197, 24, 0.15);
    background: #fff;
}

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

.form-success {
    text-align: center;
    padding: 32px 20px;
}

.form-success svg {
    margin: 0 auto 16px;
}

.form-success-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #6B3A6B;
    margin-bottom: 8px;
}

.form-success-text {
    font-size: 0.95rem;
    color: #7a5a7a;
    line-height: 1.65;
}

.form-success-text a {
    color: #6B3A6B;
    font-weight: 600;
    border-bottom: 1px solid rgba(107, 58, 107, 0.3);
}

/* ── Footer ─────────────────────────────────────── */
.footer {
    background: #3D1A3D;
    color: rgba(255, 255, 255, 0.7);
    padding: 72px 0 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.footer-heading {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #F5C518;
    margin-bottom: 20px;
}

.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.2s ease;
}

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

.footer-contact p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 4px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}

.footer-contact a:hover { color: #F5C518; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ── Scroll Reveal ──────────────────────────────── */
.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,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(107, 58, 107, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        transform: translateY(-120%);
        opacity: 0;
        transition: transform 0.35s ease, opacity 0.35s ease;
        pointer-events: none;
        box-shadow: 0 12px 32px rgba(0,0,0,0.2);
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-toggle { display: flex; align-items: center; justify-content: center; }
    .hamburger-open { display: block; }
    .hamburger-closed { display: none; }
    .nav-links.open .hamburger-open { display: none; }
    .nav-links.open .hamburger-closed { display: block; }

    .hero-content { padding: 100px 24px 60px; }

    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; justify-content: center; }

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

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-images { max-width: 480px; }
    .about-img-secondary { right: -12px; bottom: -20px; }

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

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }

    .section { padding: 72px 0; }

    .contact-form-card { padding: 28px; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
}

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