:root {
    --plum: #6B3A6E;
    --plum-dark: #522A54;
    --plum-light: #8B5A8E;
    --plum-bg: #F3EDF5;
    --amber: #F5A623;
    --amber-dark: #D4891A;
    --amber-light: #FDC870;
    --cream: #FDF8F4;
    --warm-white: #FEFCFA;
    --text-dark: #2A1A2E;
    --text-mid: #5C4A60;
    --text-light: #8A7890;
    --border: #E8DDE8;
    --shadow-sm: 0 2px 8px rgba(107, 58, 110, 0.06);
    --shadow-md: 0 4px 20px rgba(107, 58, 110, 0.10);
    --shadow-lg: 0 8px 40px rgba(107, 58, 110, 0.14);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;
}

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

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

body {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--warm-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'DM Serif Display', serif;
    line-height: 1.2;
    color: var(--text-dark);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

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

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 244, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
    box-shadow: var(--shadow-md);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-text {
    font-family: 'DM Serif Display', serif;
    font-size: 1.15rem;
    color: var(--plum);
    line-height: 1.2;
}
.logo-sub {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--amber);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-mid);
    transition: color 0.2s;
    position: relative;
}
.nav-links a:not(.nav-cta):hover { color: var(--plum); }
.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--amber);
    border-radius: 2px;
    transition: width 0.3s;
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--plum);
    color: white !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover {
    background: var(--plum-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.nav-cta svg { flex-shrink: 0; }

/* Mobile toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}
.mobile-toggle span {
    display: block;
    height: 2.5px;
    background: var(--plum);
    border-radius: 3px;
    transition: transform 0.3s, opacity 0.3s;
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(253, 248, 244, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: all; }
.mobile-nav-item {
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
    color: var(--plum);
    transition: color 0.2s;
}
.mobile-nav-item:hover { color: var(--amber); }
.mobile-nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--plum);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 12px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--plum-bg) 50%, #F5E6F0 100%);
}
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
}
.blob-1 {
    width: 500px; height: 500px;
    background: var(--amber-light);
    top: -100px; right: -100px;
}
.blob-2 {
    width: 400px; height: 400px;
    background: var(--plum-light);
    bottom: -80px; left: -80px;
    opacity: 0.2;
}
.blob-3 {
    width: 250px; height: 250px;
    background: var(--amber);
    top: 40%; left: 45%;
    opacity: 0.15;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(107, 58, 110, 0.08);
    border: 1px solid rgba(107, 58, 110, 0.15);
    color: var(--plum);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 24px;
}
.hero-headline {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    margin-bottom: 24px;
    color: var(--text-dark);
}
.hero-headline em {
    color: var(--plum);
    font-style: italic;
}
.hero-sub {
    font-size: 1.15rem;
    color: var(--text-mid);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.8;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    background: var(--plum);
    color: white;
    box-shadow: 0 4px 16px rgba(107, 58, 110, 0.3);
}
.btn-primary:hover {
    background: var(--plum-dark);
    box-shadow: 0 6px 24px rgba(107, 58, 110, 0.4);
}
.btn-secondary {
    background: white;
    color: var(--plum);
    border: 2px solid var(--border);
}
.btn-secondary:hover {
    border-color: var(--plum);
    box-shadow: var(--shadow-md);
}
.btn-light {
    background: white;
    color: var(--plum);
    box-shadow: var(--shadow-md);
}
.btn-light:hover { box-shadow: var(--shadow-lg); }
.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
}
.btn-full { width: 100%; justify-content: center; }
.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-mid);
}

/* Hero image */
.hero-image {
    position: relative;
}
.hero-img-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.hero-img-card img {
    width: 100%;
    height: 620px;
    object-fit: cover;
}
.hero-img-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--plum);
    box-shadow: var(--shadow-md);
}
.hero-floating-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    border-radius: var(--radius-md);
    padding: 24px 28px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
}
.floating-stat { text-align: left; }
.stat-number {
    display: block;
    font-family: 'DM Serif Display', serif;
    font-size: 2.2rem;
    color: var(--amber);
    line-height: 1;
}
.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
}

/* ===== SECTION COMMONS ===== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--amber-dark);
    margin-bottom: 12px;
}
.section-label::before {
    content: '';
    width: 24px;
    height: 3px;
    background: var(--amber);
    border-radius: 3px;
}
.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 16px;
}
.section-sub {
    font-size: 1.1rem;
    color: var(--text-mid);
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 48px;
}

/* ===== SERVICES ===== */
.services {
    padding: 100px 0;
    background: var(--warm-white);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 36px 28px;
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--plum-light);
}
.service-icon {
    width: 64px;
    height: 64px;
    background: var(--plum-bg);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum);
    margin-bottom: 20px;
    transition: background 0.3s, color 0.3s;
}
.service-card:hover .service-icon {
    background: var(--plum);
    color: white;
}
.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}
.service-card p {
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== ABOUT ===== */
.about {
    padding: 100px 0;
    background: var(--plum-bg);
}
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-images {
    position: relative;
}
.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-main img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}
.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--plum-bg);
}
.about-img-secondary img {
    width: 400px;
    height: 280px;
    object-fit: cover;
}
.about-experience {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--amber);
    color: white;
    border-radius: var(--radius-md);
    padding: 20px 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
}
.about-experience .exp-number {
    display: block;
    font-family: 'DM Serif Display', serif;
    font-size: 2.4rem;
    line-height: 1;
}
.about-experience .exp-text {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.about-content .section-title { margin-bottom: 20px; }
.about-body {
    color: var(--text-mid);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 16px;
}
.about-values {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.value-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-weight: 600;
    color: var(--text-dark);
}
.value-check {
    width: 24px;
    height: 24px;
    background: var(--amber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    margin-top: 2px;
}

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

/* ===== REVIEWS ===== */
.reviews {
    padding: 100px 0;
    background: var(--plum-bg);
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.review-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 32px 28px;
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}
.review-text {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--plum);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.author-name {
    display: block;
    font-weight: 700;
    color: var(--text-dark);
}
.author-location {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ===== CTA BANNER ===== */
.cta-banner {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--plum) 0%, var(--plum-dark) 100%);
    overflow: hidden;
}
.cta-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}
.cta-blob-1 {
    width: 400px; height: 400px;
    background: var(--amber);
    opacity: 0.2;
    top: -100px; left: -100px;
}
.cta-blob-2 {
    width: 300px; height: 300px;
    background: var(--amber-light);
    opacity: 0.15;
    bottom: -80px; right: -80px;
}
.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}
.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 16px;
}
.cta-text {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.8;
}
.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ===== CONTACT ===== */
.contact {
    padding: 100px 0;
    background: var(--warm-white);
}
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-body {
    color: var(--text-mid);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 32px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-icon {
    width: 52px;
    height: 52px;
    background: var(--plum-bg);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum);
    flex-shrink: 0;
}
.contact-item strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-light);
    margin-bottom: 2px;
}
.contact-item span, .contact-item a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
}
.contact-item a:hover { color: var(--plum); }
.contact-map { border-radius: var(--radius-md); overflow: hidden; }

/* Contact form */
.contact-form-wrap { position: relative; }
.contact-form-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}
.contact-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 6px;
}
.form-sub {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 28px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--cream);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--plum);
    box-shadow: 0 0 0 3px rgba(107, 58, 110, 0.1);
    background: white;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}
.form-success.show { display: block; }
.success-icon {
    width: 72px;
    height: 72px;
    background: var(--plum-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.form-success h4 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--plum);
}
.form-success p { color: var(--text-mid); }

/* ===== FOOTER ===== */
.footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding-bottom: 48px;
}
.footer-brand .logo-text { color: white; }
.footer-tagline {
    margin-top: 16px;
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 300px;
    color: rgba(255,255,255,0.5);
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col strong {
    color: white;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}
.footer-col a, .footer-col span {
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--amber); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.35);
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-inner { gap: 40px; }
    .hero-img-card img { height: 480px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-toggle { display: flex; }
    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-image { order: -1; max-width: 400px; margin: 0 auto; }
    .hero-img-card img { height: 360px; }
    .hero-floating-card { right: 0; bottom: -16px; }
    .hero-trust { gap: 16px; }
    .about-inner { grid-template-columns: 1fr; }
    .about-images { max-width: 480px; margin: 0 auto; }
    .about-img-main img { height: 400px; }
    .about-img-secondary { right: -10px; bottom: -20px; }
    .about-img-secondary img { width: 260px; height: 180px; }
    .about-experience { left: -10px; top: -14px; }
    .services-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-inner { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .footer-links { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .form-row { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .footer-links { grid-template-columns: 1fr; }
    .contact-form-card { padding: 28px 20px; }
}
