/* ─── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    color: #1F1A2E;
    background-color: #F8F5F2;
    -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; }
button { font: inherit; cursor: pointer; border: none; background: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ─── Typography ───────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    color: #1F1A2E;
}
.text-gradient {
    background: linear-gradient(135deg, #6B2F5B 0%, #9B4D8A 50%, #D4A017 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── Section Labels ───────────────────────────────── */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6B2F5B;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}
.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 2px;
    background: #D4A017;
}
.section-title {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}
.section-desc {
    font-size: 1.05rem;
    color: #4A4458;
    max-width: 600px;
    line-height: 1.7;
}
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-header .section-desc { margin: 0 auto; }

/* ─── Buttons ──────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.25s ease;
    white-space: nowrap;
    font-size: 0.95rem;
}
.btn-primary {
    background: #6B2F5B;
    color: #fff;
    padding: 0.8rem 1.75rem;
    border: 2px solid #6B2F5B;
}
.btn-primary:hover {
    background: #5A264B;
    border-color: #5A264B;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 47, 91, 0.3);
}
.btn-outline-light {
    background: transparent;
    color: #fff;
    padding: 0.8rem 1.75rem;
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
    transform: translateY(-2px);
}
.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-xl { padding: 1.15rem 2.25rem; font-size: 1.1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ─── Header / Nav ─────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248, 245, 242, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(107, 47, 91, 0.08);
    transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(31, 26, 46, 0.08);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #1F1A2E;
}
.logo-accent { color: #6B2F5B; }
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-menu a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #4A4458;
    transition: color 0.2s;
    position: relative;
}
.nav-menu a:not(.btn):hover { color: #6B2F5B; }
.nav-menu a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #D4A017;
    transition: width 0.25s ease;
}
.nav-menu a:not(.btn):hover::after { width: 100%; }
.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    transition: background 0.2s;
}
.nav-toggle:hover { background: rgba(107, 47, 91, 0.08); }
.nav-toggle[aria-expanded="true"] .hamburger-icon line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger-icon line:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .hamburger-icon line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ─── Hero ─────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 1.5rem 6rem;
    overflow: hidden;
    background: linear-gradient(145deg, #1F1A2E 0%, #3D1F38 30%, #6B2F5B 60%, #8B4578 80%, #D4A017 100%);
}
.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(212, 160, 23, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 80% 20%, rgba(107, 47, 91, 0.4) 0%, transparent 60%);
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50px;
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #F5D9A0;
    margin-bottom: 1.75rem;
    backdrop-filter: blur(4px);
}
.hero-headline {
    font-size: clamp(2.2rem, 5.5vw, 3.75rem);
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1.25rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.82);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2rem;
}
.hero-trust .trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}
.hero-trust .trust-item svg { opacity: 0.7; }
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}
.hero-wave svg { display: block; width: 100%; height: 80px; }

/* ─── Services ─────────────────────────────────────── */
.services {
    padding: 6rem 0;
    background: #F8F5F2;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(107, 47, 91, 0.07);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6B2F5B, #D4A017);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(107, 47, 91, 0.1);
    border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(107, 47, 91, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.service-name {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    color: #1F1A2E;
}
.service-desc {
    font-size: 0.92rem;
    color: #4A4458;
    line-height: 1.65;
}

/* ─── About ────────────────────────────────────────── */
.about {
    padding: 6rem 0;
    background: #fff;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-images {
    position: relative;
}
.about-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(31, 26, 46, 0.12);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
    position: absolute;
    bottom: -2rem;
    right: -1.5rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(31, 26, 46, 0.15);
    border: 4px solid #fff;
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-accent-box {
    position: absolute;
    top: -1.5rem;
    right: 2rem;
    background: #6B2F5B;
    color: #fff;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    text-align: center;
    box-shadow: 0 12px 30px rgba(107, 47, 91, 0.3);
}
.about-accent-box .accent-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #F5C518;
    line-height: 1;
    margin-bottom: 0.25rem;
}
.about-accent-box .accent-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.about-content .section-label { padding-left: 0; }
.about-content .section-label::before { display: none; }
.about-body {
    font-size: 1rem;
    color: #4A4458;
    line-height: 1.75;
    margin-bottom: 1rem;
}
.about-features {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1.5rem;
}
.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: #1F1A2E;
    font-weight: 500;
}
.about-feature .check-icon { flex-shrink: 0; margin-top: 2px; }

/* ─── Gallery ──────────────────────────────────────── */
.gallery {
    padding: 6rem 0;
    background: #F8F5F2;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(31,26,46,0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(4) { grid-row: span 2; }

/* ─── CTA ──────────────────────────────────────────── */
.cta {
    padding: 6rem 0;
    background: linear-gradient(145deg, #1F1A2E 0%, #3D1F38 50%, #6B2F5B 100%);
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,160,23,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.cta-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}
.cta-content { max-width: 560px; }
.cta-headline {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: #fff;
    margin-bottom: 1rem;
}
.cta-text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 0;
}
.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ─── Contact ──────────────────────────────────────── */
.contact {
    padding: 6rem 0;
    background: #fff;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: #F8F5F2;
    border-radius: 14px;
    padding: 1.5rem;
    transition: all 0.25s ease;
}
.contact-card:hover {
    background: #fff;
    box-shadow: 0 8px 24px rgba(107, 47, 91, 0.08);
    border: 1px solid rgba(107, 47, 91, 0.1);
}
.contact-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(107, 47, 91, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6B2F5B;
    margin-bottom: 0.3rem;
}
.contact-card-text {
    font-size: 0.95rem;
    color: #1F1A2E;
    line-height: 1.6;
}
.contact-card-text a {
    color: #4A4458;
    transition: color 0.2s;
}
.contact-card-text a:hover { color: #6B2F5B; }
.contact-form-wrap {
    background: #F8F5F2;
    border-radius: 20px;
    padding: 2.5rem;
}
.form-title {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
}
.form-note {
    font-size: 0.9rem;
    color: #4A4458;
    margin-bottom: 1.75rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-group {
    margin-bottom: 1rem;
}
.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #1F1A2E;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid rgba(107, 47, 91, 0.15);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #1F1A2E;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #A09AAF; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #6B2F5B;
    box-shadow: 0 0 0 3px rgba(107, 47, 91, 0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    background: rgba(22, 101, 52, 0.07);
    border: 1px solid rgba(22, 101, 52, 0.2);
    color: #166534;
    font-weight: 600;
    font-size: 0.95rem;
}

/* ─── Footer ───────────────────────────────────────── */
.footer {
    background: #1F1A2E;
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand .logo-text { color: #fff; }
.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    max-width: 280px;
}
.footer-heading {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #F5C518;
    margin-bottom: 1.25rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
}
.footer-contact a {
    color: rgba(255,255,255,0.55);
    transition: color 0.2s;
}
.footer-contact a:hover { color: #F5C518; }
.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
}

/* ─── Scroll Reveal (progressive enhancement) ─────── */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Fallback: ensure content is visible without JS */
.reveal { opacity: 1; transform: none; }

/* ─── Mobile Nav ───────────────────────────────────── */
@media (max-width: 900px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(248, 245, 242, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0.5rem;
        border-bottom: 1px solid rgba(107, 47, 91, 0.1);
        box-shadow: 0 12px 30px rgba(31, 26, 46, 0.1);
        transform: translateY(-110%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav-menu a {
        padding: 0.75rem 1rem;
        width: 100%;
        border-radius: 8px;
    }
    .nav-menu a:hover { background: rgba(107, 47, 91, 0.06); }
    .nav-menu a:not(.btn)::after { display: none; }
    .nav-menu .btn { margin-top: 0.5rem; justify-content: center; }
}

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

@media (max-width: 768px) {
    .hero { min-height: 85vh; padding: 7rem 1.25rem 5rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; max-width: 300px; justify-content: center; }
    .services-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-images { max-width: 480px; margin: 0 auto; }
    .about-img-secondary { right: -0.5rem; bottom: -1.5rem; }
    .about-features { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(4) { grid-row: span 1; }
    .cta-inner { grid-template-columns: 1fr; text-align: center; }
    .cta-actions { flex-direction: row; }
    .cta-actions .btn { flex: 1; justify-content: center; }
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-form-wrap { padding: 1.75rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
    .hero { min-height: 80vh; }
    .hero-headline { font-size: 1.9rem; }
    .hero-trust { flex-direction: column; align-items: center; gap: 0.6rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .cta-actions { flex-direction: column; }
    .cta-actions .btn { width: 100%; justify-content: center; }
}
