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

:root {
    --plum-50: #FAF5FF;
    --plum-100: #F3E8FF;
    --plum-200: #E9D5FF;
    --plum-300: #D8B4FE;
    --plum-400: #C084FC;
    --plum-500: #A855F7;
    --plum-600: #9333EA;
    --plum-700: #7E22CE;
    --plum-800: #6B21A8;
    --plum-900: #581C87;
    --plum-950: #3B0764;
    --amber-300: #FCD34D;
    --amber-400: #FBBF24;
    --amber-500: #F59E0B;
    --amber-600: #D97706;
    --neutral-50: #FAFAFA;
    --neutral-100: #F5F5F5;
    --neutral-200: #E5E5E5;
    --neutral-600: #525252;
    --neutral-700: #404040;
    --neutral-800: #262626;
    --neutral-900: #171717;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --shadow-sm: 0 1px 3px rgba(107, 31, 168, 0.08);
    --shadow-md: 0 4px 16px rgba(107, 31, 168, 0.1);
    --shadow-lg: 0 8px 32px rgba(107, 31, 168, 0.14);
    --shadow-xl: 0 16px 48px rgba(107, 31, 168, 0.18);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--neutral-800);
    background: var(--neutral-50);
    line-height: 1.65;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--plum-700);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 9999;
    font-weight: 700;
}
.skip-link:focus {
    top: 16px;
}

/* ─── Header ─── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 245, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(107, 31, 168, 0.08);
    transition: box-shadow var(--transition);
}
.site-header.scrolled {
    box-shadow: var(--shadow-md);
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--plum-800);
}
.logo-text {
    letter-spacing: -0.02em;
}
.logo-accent {
    color: var(--amber-600);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-menu a {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.925rem;
    color: var(--neutral-700);
    transition: color var(--transition), background var(--transition);
}
.nav-menu a:hover {
    color: var(--plum-700);
    background: var(--plum-100);
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: var(--radius-lg);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--plum-700);
    color: white;
    border-color: var(--plum-700);
}
.btn-primary:hover {
    background: var(--plum-800);
    border-color: var(--plum-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-outline {
    background: transparent;
    color: var(--plum-700);
    border-color: var(--plum-300);
}
.btn-outline:hover {
    background: var(--plum-100);
    border-color: var(--plum-500);
    transform: translateY(-2px);
}
.btn-outline-light {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
    transform: translateY(-2px);
}
.btn-cta {
    background: var(--amber-500);
    border-color: var(--amber-500);
    color: var(--neutral-900);
}
.btn-cta:hover {
    background: var(--amber-600);
    border-color: var(--amber-600);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}
.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}
.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

/* ─── Nav Toggle ─── */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--plum-800);
}
.nav-toggle-close {
    display: none;
}

/* ─── Hero ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #3B0764 0%, #6B21A8 30%, #9333EA 60%, #C084FC 100%);
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(147, 51, 234, 0.6) 0%, transparent 70%),
                radial-gradient(ellipse at 80% 20%, rgba(245, 158, 11, 0.2) 0%, transparent 50%);
}
.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: radial-gradient(circle, white 1px, transparent 1px);
    background-size: 32px 32px;
}
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-content {
    color: white;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--amber-300);
    margin-bottom: 24px;
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: white;
}
.hero-title .accent {
    color: var(--amber-400);
}
.hero-description {
    font-size: 1.125rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    max-width: 520px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
}
.hero-details {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.hero-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    font-weight: 600;
}
.hero-detail svg {
    color: var(--amber-400);
    flex-shrink: 0;
}

.hero-image {
    position: relative;
}
.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.hero-image-wrapper img {
    width: 100%;
    height: 620px;
    object-fit: cover;
}
.hero-image-accent {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    border: 2px solid rgba(255,255,255,0.15);
    pointer-events: none;
}
.hero-floating-card {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: white;
    border-radius: var(--radius-lg);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-xl);
    z-index: 2;
}
.hfc-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--plum-600), var(--plum-800));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}
.hfc-text {
    display: flex;
    flex-direction: column;
}
.hfc-label {
    font-size: 0.75rem;
    color: var(--neutral-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.hfc-value {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--plum-800);
}
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}
.hero-wave svg {
    width: 100%;
    height: 60px;
}

/* ─── Section Shared ─── */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--plum-600);
    background: var(--plum-100);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 14px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--neutral-900);
    line-height: 1.2;
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 1.075rem;
    color: var(--neutral-600);
    line-height: 1.7;
}

/* ─── Services ─── */
.services {
    padding: 96px 0;
    background: var(--plum-50);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--plum-100);
    transition: all var(--transition);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--plum-300);
}
.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--plum-100), var(--plum-200));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.service-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--neutral-900);
    margin-bottom: 10px;
}
.service-desc {
    font-size: 0.95rem;
    color: var(--neutral-600);
    line-height: 1.7;
}

/* ─── About ─── */
.about {
    padding: 96px 0;
    background: white;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-image-group {
    position: relative;
}
.about-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-image-main img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}
.about-image-secondary {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: white;
    border-radius: var(--radius-lg);
    padding: 12px;
    box-shadow: var(--shadow-lg);
}
.about-image-secondary img {
    border-radius: var(--radius-md);
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.about-stats {
    display: flex;
    gap: 24px;
    margin-top: 12px;
}
.about-stat {
    display: flex;
    flex-direction: column;
}
.as-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--plum-700);
    line-height: 1;
}
.as-label {
    font-size: 0.78rem;
    color: var(--neutral-600);
    font-weight: 600;
}
.about-content .section-tag {
    margin-bottom: 14px;
}
.about-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}
.about-text {
    font-size: 1.025rem;
    color: var(--neutral-600);
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-signature {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--plum-100);
}
.about-sig-img {
    border-radius: var(--radius-sm);
    opacity: 0.7;
}
.about-signature strong {
    display: block;
    font-size: 1.1rem;
    color: var(--neutral-900);
}
.about-signature span {
    font-size: 0.875rem;
    color: var(--neutral-600);
}

/* ─── Gallery ─── */
.gallery {
    padding: 96px 0;
    background: var(--plum-50);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 200px 200px;
    gap: 16px;
}
.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img {
    transform: scale(1.06);
}
.gallery-item--large {
    grid-column: span 5;
    grid-row: span 2;
}
.gallery-item--large img {
    height: 100%;
}
.gallery-item--wide {
    grid-column: span 7;
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(59, 7, 100, 0.2) 0%, transparent 50%);
    pointer-events: none;
    border-radius: inherit;
}

/* ─── Testimonials ─── */
.testimonials {
    padding: 96px 0;
    background: white;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--plum-50);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--plum-100);
    position: relative;
    transition: all var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.tc-quote {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1;
    color: var(--plum-300);
    position: absolute;
    top: 16px;
    left: 24px;
    pointer-events: none;
}
.tc-text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--neutral-700);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    padding-top: 20px;
}
.tc-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.tc-avatar {
    width: 40px;
    height: 40px;
    background: var(--plum-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.tc-info {
    display: flex;
    flex-direction: column;
}
.tc-info strong {
    font-size: 0.925rem;
    color: var(--neutral-900);
}
.tc-info span {
    font-size: 0.8rem;
    color: var(--neutral-600);
}

/* ─── Visit ─── */
.visit {
    padding: 96px 0;
    background: var(--plum-50);
}
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.visit-info .section-tag {
    margin-bottom: 14px;
}
.visit-info .section-title {
    text-align: left;
    margin-bottom: 16px;
}
.visit-intro {
    font-size: 1.025rem;
    color: var(--neutral-600);
    line-height: 1.75;
    margin-bottom: 36px;
}
.visit-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.visit-detail {
    display: flex;
    gap: 16px;
}
.vd-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}
.visit-detail strong {
    display: block;
    font-size: 0.95rem;
    color: var(--neutral-900);
    margin-bottom: 4px;
}
.visit-detail p {
    font-size: 0.9rem;
    color: var(--neutral-600);
    line-height: 1.6;
}
.visit-detail a {
    color: var(--plum-700);
    font-weight: 600;
    transition: color var(--transition);
}
.visit-detail a:hover {
    color: var(--plum-900);
    text-decoration: underline;
}
.visit-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 400px;
}

/* ─── CTA ─── */
.cta {
    padding: 96px 0;
    background: linear-gradient(135deg, #3B0764 0%, #6B21A8 50%, #9333EA 100%);
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(245, 158, 11, 0.15) 0%, transparent 60%);
    pointer-events: none;
}
.cta .container {
    position: relative;
    z-index: 1;
    text-align: center;
}
.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}
.cta-text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

/* ─── Footer ─── */
.site-footer {
    background: var(--neutral-900);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand p {
    margin-top: 16px;
    font-size: 0.925rem;
    line-height: 1.7;
    max-width: 300px;
}
.logo-text-light {
    color: white;
}
.footer-links h4,
.footer-contact h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: white;
    margin-bottom: 18px;
    font-weight: 800;
}
.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    font-size: 0.925rem;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}
.footer-links a:hover {
    color: var(--amber-400);
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    line-height: 1.6;
}
.footer-contact a {
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}
.footer-contact a:hover {
    color: var(--amber-400);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.825rem;
    color: rgba(255,255,255,0.4);
}

/* ─── Scroll Reveal ─── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content {
        order: 1;
    }
    .hero-image {
        order: 0;
        max-width: 480px;
        margin: 0 auto;
    }
    .hero-image-wrapper img {
        height: 400px;
    }
    .hero-floating-card {
        left: 50%;
        transform: translateX(-50%);
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-details {
        justify-content: center;
    }
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-content .section-title {
        text-align: center;
    }
    .about-content {
        text-align: center;
    }
    .about-signature {
        justify-content: center;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
    .visit-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px 200px;
    }
    .gallery-item--large {
        grid-column: span 2;
        grid-row: span 1;
    }
    .gallery-item--wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
    }
    .nav-toggle-close {
        display: block;
    }
    .nav-toggle svg:first-child:not(.nav-toggle-close) {
        display: none;
    }
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250, 245, 255, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        border-bottom: 1px solid var(--plum-100);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        transition: transform var(--transition), opacity var(--transition);
        pointer-events: none;
    }
    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav-menu a {
        width: 100%;
        text-align: center;
        padding: 14px;
    }
    .hero {
        padding: 100px 0 80px;
        min-height: auto;
    }
    .hero-image {
        max-width: 360px;
    }
    .hero-image-wrapper img {
        height: 320px;
    }
    .hero-floating-card {
        bottom: -10px;
        left: -10px;
        padding: 14px 16px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .gallery-item--large,
    .gallery-item--wide {
        grid-column: span 1;
    }
    .gallery-item img {
        height: 220px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .about-image-secondary {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 16px;
    }
    .about-image-main img {
        height: 360px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@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;
    }
}
