/* ── Reset & Base ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    color: #3d1a30;
    background: #fef8fb;
    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 { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Utility ─────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.text-gradient {
    background: linear-gradient(135deg, #b82d73 0%, #d1468f 40%, #f5c518 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Section Shared ──────────────────────────────── */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #b82d73;
    background: #fce4f0;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}
.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    color: #3d1a30;
    margin-bottom: 1rem;
}
.section-desc {
    font-size: 1.05rem;
    color: #6b3a54;
    line-height: 1.7;
}

/* ── Buttons ─────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 999px;
    padding: 0.8rem 1.75rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    background: linear-gradient(135deg, #b82d73, #d1468f);
    color: #fff;
    box-shadow: 0 4px 20px rgba(184, 45, 115, 0.35);
}
.btn-primary:hover {
    box-shadow: 0 8px 30px rgba(184, 45, 115, 0.5);
}
.btn-secondary {
    background: rgba(255,255,255,0.18);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(4px);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.28);
    box-shadow: 0 4px 20px rgba(255,255,255,0.15);
}
.btn-full { width: 100%; justify-content: center; }

/* ── Header ──────────────────────────────────────── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 248, 251, 0.85);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(184, 45, 115, 0.08);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}
.header.scrolled {
    background: rgba(254, 248, 251, 0.96);
    box-shadow: 0 2px 24px rgba(101, 31, 64, 0.08);
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #621c40;
}
.logo--light { color: #fce4f0; }
.logo-icon { color: #b82d73; }
.logo--light .logo-icon { color: #f5c518; }

/* ── Nav ─────────────────────────────────────────── */
.nav-list { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #6b3a54;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: #b82d73; background: rgba(184, 45, 115, 0.06); }
.nav-cta {
    margin-left: 0.75rem;
    background: linear-gradient(135deg, #b82d73, #d1468f);
    color: #fff !important;
    padding: 0.5rem 1.15rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(184,45,115,0.35); }

/* ── Mobile Menu Toggle ──────────────────────────── */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
    z-index: 1001;
}
.menu-line {
    display: block;
    width: 100%;
    height: 2.5px;
    background: #621c40;
    border-radius: 999px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-toggle[aria-expanded="true"] .menu-line:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-line:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-line:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── Hero ────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(145deg, #3d0f27 0%, #6b2f5b 30%, #95205c 55%, #b82d73 75%, #d1468f 90%, #f5c518 100%);
    padding: 7rem 1.5rem 4rem;
}
.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(245, 197, 24, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 30%, rgba(184, 45, 115, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 50% 80%, rgba(61, 15, 39, 0.4) 0%, transparent 50%);
    pointer-events: none;
}
.hero-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.6;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(6px);
    color: #fce4f0;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
}
.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.1rem, 5.5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 1.25rem;
}
.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: rgba(253, 240, 247, 0.85);
    line-height: 1.75;
    max-width: 540px;
    margin: 0 auto 2rem;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.hero-trust {
    display: flex;
    gap: 1.75rem;
    justify-content: center;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(253, 240, 247, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
}
.trust-item svg { color: #f5c518; flex-shrink: 0; }

.hero-image {
    position: absolute;
    right: 5%;
    bottom: 0;
    z-index: 1;
    width: 38%;
    max-width: 560px;
    pointer-events: none;
}
.hero-image-wrapper {
    position: relative;
    border-radius: 28px 28px 0 0;
    overflow: hidden;
    box-shadow: 0 -20px 60px rgba(0,0,0,0.3);
}
.hero-image img {
    width: 100%;
    height: 70vh;
    max-height: 640px;
    object-fit: cover;
    display: block;
}
.hero-image-accent {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(61,15,39,0.5) 0%, transparent 35%);
    pointer-events: none;
}

/* ── Services ────────────────────────────────────── */
.services {
    padding: 6rem 0;
    background: #fef8fb;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(184, 45, 115, 0.07);
    box-shadow: 0 4px 24px rgba(101, 31, 64, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(101, 31, 64, 0.12);
    border-color: rgba(184, 45, 115, 0.15);
}
.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fce4f0, #f8c4e1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b82d73;
    margin-bottom: 1.25rem;
    transition: background 0.3s ease;
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, #b82d73, #d1468f);
    color: #fff;
}
.service-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #3d1a30;
    margin-bottom: 0.6rem;
}
.service-desc {
    font-size: 0.92rem;
    color: #6b3a54;
    line-height: 1.7;
}

/* ── About ───────────────────────────────────────── */
.about {
    padding: 6rem 0;
    background: linear-gradient(160deg, #fdf0f7 0%, #fef8fb 50%, #fffbe6 100%);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-image-group {
    position: relative;
}
.about-image-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(101, 31, 64, 0.12);
}
.about-image-main img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    display: block;
}
.about-image-small {
    position: absolute;
    bottom: -2rem;
    right: -1.5rem;
    width: 55%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(101, 31, 64, 0.15);
    border: 5px solid #fef8fb;
}
.about-image-small img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}
.about-experience {
    position: absolute;
    top: -1.25rem;
    left: -1rem;
    background: linear-gradient(135deg, #b82d73, #d1468f);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(184, 45, 115, 0.35);
}
.about-experience .exp-number {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
}
.about-experience .exp-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.85;
}
.about-content .section-tag { margin-bottom: 1rem; }
.about-text {
    font-size: 1rem;
    color: #6b3a54;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1.5rem;
    margin-top: 1.75rem;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #3d1a30;
}
.feature-check {
    color: #b82d73;
    flex-shrink: 0;
}

/* ── Gallery ─────────────────────────────────────── */
.gallery {
    padding: 6rem 0;
    background: #fef8fb;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 1.25rem;
}
.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(101, 31, 64, 0.07);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item--large  { grid-column: span 5; grid-row: span 2; }
.gallery-item--tall   { grid-column: span 4; grid-row: span 2; }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(61,15,39,0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
    color: #fff;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 600;
}

/* ── Contact ─────────────────────────────────────── */
.contact {
    padding: 6rem 0;
    background: linear-gradient(160deg, #fdf0f7 0%, #fffbe6 100%);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.contact-info .section-tag { margin-bottom: 1rem; }
.contact-desc {
    font-size: 1rem;
    color: #6b3a54;
    line-height: 1.75;
    margin-bottom: 2rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.contact-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #fce4f0, #f8c4e1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b82d73;
    flex-shrink: 0;
}
.contact-detail strong {
    display: block;
    font-size: 0.95rem;
    color: #3d1a30;
    margin-bottom: 0.2rem;
}
.contact-detail p,
.contact-detail a {
    font-size: 0.9rem;
    color: #6b3a54;
    line-height: 1.6;
}
.contact-detail a:hover { color: #b82d73; text-decoration: underline; }

/* ── Form ────────────────────────────────────────── */
.contact-form-wrapper {
    background: #fff;
    border-radius: 24px;
    padding: 2.25rem;
    box-shadow: 0 8px 40px rgba(101, 31, 64, 0.08);
    border: 1px solid rgba(184, 45, 115, 0.07);
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #621c40;
}
.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.95rem;
    color: #3d1a30;
    background: #fef8fb;
    border: 1.5px solid rgba(184, 45, 115, 0.15);
    border-radius: 12px;
    padding: 0.7rem 1rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #b82d73;
    box-shadow: 0 0 0 3px rgba(184, 45, 115, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #b8879f; }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
    text-align: center;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}
.success-icon { color: #b82d73; }
.form-success h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    color: #3d1a30;
}
.form-success p {
    font-size: 0.95rem;
    color: #6b3a54;
    line-height: 1.6;
}

/* ── Footer ──────────────────────────────────────── */
.footer {
    background: #3d0f27;
    color: #fce4f0;
    padding: 4rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
}
.footer-tagline {
    font-size: 0.9rem;
    color: rgba(252, 228, 240, 0.65);
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 280px;
}
.footer-links strong,
.footer-contact strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #f5c518;
    margin-bottom: 1rem;
}
.footer-links ul,
.footer-contact ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a,
.footer-contact a {
    font-size: 0.9rem;
    color: rgba(252, 228, 240, 0.65);
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.footer-links a:hover,
.footer-contact a:hover { color: #f5c518; }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.9rem; color: rgba(252,228,240,0.65); }
.footer-contact svg { flex-shrink: 0; margin-top: 3px; color: #f5c518; }
.footer-bottom {
    border-top: 1px solid rgba(252, 228, 240, 0.1);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(252, 228, 240, 0.4);
}

/* ── Scroll to Top ───────────────────────────────── */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b82d73, #d1468f);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(184, 45, 115, 0.4);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
}
.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.scroll-top:hover { transform: translateY(-3px); box-shadow: 0 6px 28px rgba(184,45,115,0.5); }

/* ── Animations ──────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-image { display: none; }
    .hero { padding: 8rem 1.5rem 5rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-image-group { max-width: 500px; }
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .gallery-item--large { grid-column: span 8; grid-row: span 1; }
    .gallery-item--tall  { grid-column: span 4; grid-row: span 1; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: rgba(254, 248, 251, 0.98);
        backdrop-filter: blur(16px);
        padding: 5rem 2rem 2rem;
        transform: translateX(100%);
        transition: transform 0.35s ease;
        box-shadow: -8px 0 32px rgba(101,31,64,0.1);
        z-index: 1000;
    }
    .nav-menu.open { transform: translateX(0); }
    .nav-list { flex-direction: column; align-items: stretch; gap: 0.25rem; }
    .nav-link { padding: 0.75rem 1rem; font-size: 1rem; }
    .nav-cta { margin-left: 0; text-align: center; margin-top: 0.75rem; }
    .hero { min-height: auto; padding: 7rem 1.5rem 4rem; }
    .hero-title { font-size: clamp(1.75rem, 7vw, 2.5rem); }
    .services-grid { grid-template-columns: 1fr; }
    .about-image-main img { height: 400px; }
    .about-image-small { width: 60%; right: -0.75rem; bottom: -1.25rem; }
    .about-image-small img { height: 220px; }
    .about-features { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item--large { grid-column: span 2; }
    .gallery-item--tall  { grid-column: span 1; grid-row: span 1; }
    .gallery-item--large img,
    .gallery-item--tall img { height: 220px; }
    .contact-form-wrapper { padding: 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-trust { flex-direction: column; align-items: center; gap: 0.75rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item--large { grid-column: span 1; }
    .gallery-item--large img,
    .gallery-item img { height: 220px; }
}
