/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #1a1a2e;
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
.skip-link {
    position: absolute; top: -100%; left: 1rem;
    background: #4A1942; color: #fff; padding: 0.5rem 1rem;
    border-radius: 0 0 0.5rem 0; z-index: 9999; font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ===== CUSTOM PROPERTIES ===== */
:root {
    --plum: #4A1942;
    --plum-light: #6B2558;
    --plum-dark: #351230;
    --plum-muted: #F5EFF5;
    --amber: #D4A017;
    --amber-light: #E8B828;
    --amber-dark: #B8890F;
    --neutral-50: #FAFAFA;
    --neutral-100: #F5F5F5;
    --neutral-200: #EEEEEE;
    --neutral-300: #E0E0E0;
    --neutral-600: #757575;
    --neutral-800: #2C2C2C;
    --neutral-900: #1A1A1A;
    --white: #ffffff;
    --radius-sm: 0.375rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --shadow-sm: 0 1px 3px rgba(74,25,66,0.08);
    --shadow-md: 0 4px 20px rgba(74,25,66,0.1);
    --shadow-lg: 0 10px 40px rgba(74,25,66,0.15);
    --shadow-xl: 0 20px 60px rgba(74,25,66,0.2);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
}

/* ===== CONTAINER ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; color: var(--neutral-900); }
.section-label {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--plum); margin-bottom: 0.75rem;
}
.section-label::before {
    content: ''; display: block; width: 2rem; height: 2px;
    background: var(--amber); border-radius: 2px;
}
.section-title { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 1rem; }
.section-subtitle { font-size: 1.1rem; color: var(--neutral-600); max-width: 600px; margin: 0 auto; line-height: 1.7; }
.lead { font-size: 1.125rem; color: var(--neutral-600); line-height: 1.8; }
.text-center { text-align: center; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.875rem 1.75rem; border-radius: var(--radius-sm);
    font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
    border: 2px solid transparent; cursor: pointer;
    transition: var(--transition); white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; }
.btn-amber {
    background: var(--amber); color: var(--neutral-900);
    border-color: var(--amber);
}
.btn-amber:hover { background: var(--amber-light); border-color: var(--amber-light); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline-white {
    background: transparent; color: var(--white);
    border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: var(--white); color: var(--plum); border-color: var(--white); transform: translateY(-2px); }
.btn-outline-plum {
    background: transparent; color: var(--plum);
    border-color: var(--plum);
}
.btn-outline-plum:hover { background: var(--plum); color: var(--white); transform: translateY(-2px); }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; }

/* ===== HEADER ===== */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(74,25,66,0.08);
    transition: var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; padding-bottom: 1rem; }
.logo { display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--plum); }
.logo-light { color: var(--white); }
.logo-icon { color: var(--amber); }
.logo-text { letter-spacing: -0.02em; }

/* NAV */
.nav-list { display: flex; align-items: center; gap: 0.25rem; }
.nav-list a {
    padding: 0.5rem 0.875rem; border-radius: var(--radius-sm);
    font-size: 0.9rem; font-weight: 500; color: var(--neutral-800);
    transition: var(--transition);
}
.nav-list a:hover { color: var(--plum); background: var(--plum-muted); }
.nav-toggle {
    display: none; background: none; border: none; cursor: pointer;
    width: 2.5rem; height: 2.5rem; position: relative;
}
.hamburger {
    display: block; width: 22px; height: 2px; background: var(--plum);
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition);
}
.hamburger::before, .hamburger::after {
    content: ''; position: absolute; left: 0; width: 100%; height: 2px;
    background: var(--plum); transition: var(--transition);
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

/* ===== HERO ===== */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    justify-content: center; overflow: hidden;
    background: linear-gradient(145deg, var(--plum-dark) 0%, var(--plum) 35%, var(--plum-light) 65%, #8B3A6A 100%);
    padding: 8rem 1.5rem 6rem;
}
.hero-bg {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(212,160,23,0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(212,160,23,0.1) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 50% 50%, rgba(107,37,88,0.3) 0%, transparent 70%);
    pointer-events: none;
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 800px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(212,160,23,0.15); color: var(--amber-light);
    padding: 0.5rem 1.25rem; border-radius: 2rem;
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em;
    border: 1px solid rgba(212,160,23,0.3); margin-bottom: 1.5rem;
}
.hero-title {
    font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white); font-weight: 700; line-height: 1.15;
    margin-bottom: 1.25rem; letter-spacing: -0.02em;
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,0.8);
    line-height: 1.7; margin-bottom: 2rem; 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-stats {
    display: flex; align-items: center; justify-content: center; gap: 2rem;
    padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat { text-align: center; }
.stat-number { display: block; font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--amber-light); }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.08em; }
.hero-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }
.hero-wave {
    position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ===== SECTIONS ===== */
.section { padding: 5rem 0; }
.section-alt { background: var(--neutral-50); }

/* ===== ABOUT ===== */
.about-image-wrap { position: relative; }
.about-image-main {
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.about-image-main img { width: 100%; height: 100%; object-fit: cover; }
.about-image-accent {
    position: absolute; bottom: -1.5rem; right: -1.5rem;
    width: 120px; height: 120px;
    background: var(--amber); border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    color: var(--neutral-900); box-shadow: var(--shadow-lg);
}
.about-content { padding: 2rem 0; }
.about-features { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.about-features li {
    display: inline-flex; align-items: center; gap: 0.75rem;
    font-size: 0.95rem; color: var(--neutral-800);
}
.about-features svg { color: var(--amber); flex-shrink: 0; }

/* ===== SERVICES ===== */
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
    margin-top: 3rem;
}
.service-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 2rem; position: relative;
    border: 1px solid var(--neutral-200);
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-4px); box-shadow: var(--shadow-lg);
    border-color: var(--plum-muted);
}
.service-card-featured {
    border: 2px solid var(--amber);
    background: linear-gradient(180deg, #FFFBF0 0%, var(--white) 100%);
}
.service-badge {
    position: absolute; top: -0.75rem; left: 2rem;
    background: var(--amber); color: var(--neutral-900);
    padding: 0.25rem 0.75rem; border-radius: 2rem;
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
}
.service-icon {
    width: 56px; height: 56px; border-radius: var(--radius-md);
    background: var(--plum-muted); color: var(--plum);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
}
.service-card-featured .service-icon { background: var(--amber); color: var(--neutral-900); }
.service-title { font-size: 1.25rem; margin-bottom: 0.75rem; }
.service-card > p { font-size: 0.95rem; color: var(--neutral-600); margin-bottom: 1.25rem; line-height: 1.7; }
.service-list { display: flex; flex-direction: column; gap: 0.5rem; }
.service-list li {
    display: flex; align-items: flex-start; gap: 0.5rem;
    font-size: 0.875rem; color: var(--neutral-800);
}
.service-list li::before {
    content: ''; display: block; width: 6px; height: 6px;
    background: var(--amber); border-radius: 50%; flex-shrink: 0; margin-top: 0.5rem;
}

/* ===== AREAS ===== */
.areas-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
    margin-top: 3rem;
}
.area-card {
    border-radius: var(--radius-lg); overflow: hidden;
    background: var(--white); border: 1px solid var(--neutral-200);
    transition: var(--transition);
}
.area-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.area-image {
    height: 200px; position: relative; overflow: hidden;
    background-size: cover; background-position: center;
}
.area-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(74,25,66,0.8) 0%, transparent 60%);
    display: flex; align-items: flex-end; padding: 1.25rem;
}
.area-overlay span {
    font-family: var(--font-display); font-size: 1.25rem;
    font-weight: 700; color: var(--white);
}
.area-info { padding: 1.25rem; }
.area-info h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.area-info p { font-size: 0.9rem; color: var(--neutral-600); line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
    margin-top: 3rem;
}
.testimonial-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 2rem; border: 1px solid var(--neutral-200);
    transition: var(--transition); position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--plum-muted); }
.testimonial-quote {
    color: var(--amber); margin-bottom: 1rem; opacity: 0.6;
}
.testimonial-text {
    font-size: 0.95rem; color: var(--neutral-800); line-height: 1.75;
    margin-bottom: 1.5rem; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar { color: var(--plum); opacity: 0.4; }
.author-name { display: block; font-weight: 600; font-size: 0.9rem; color: var(--neutral-900); }
.author-detail { display: block; font-size: 0.8rem; color: var(--neutral-600); }

/* ===== CTA ===== */
.cta-section {
    position: relative; padding: 5rem 0; overflow: hidden;
    background: linear-gradient(135deg, var(--plum-dark) 0%, var(--plum) 50%, var(--plum-light) 100%);
}
.cta-bg {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(ellipse 50% 80% at 0% 50%, rgba(212,160,23,0.2) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 100% 50%, rgba(212,160,23,0.15) 0%, transparent 60%);
    pointer-events: none;
}
.cta-content { position: relative; z-index: 2; text-align: center; max-width: 650px; margin: 0 auto; }
.section-label-light { color: var(--amber-light); }
.section-label-light::before { background: var(--amber-light); }
.cta-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: var(--white); margin-bottom: 1rem;
}
.cta-text { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 2rem; line-height: 1.7; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ===== CONTACT ===== */
.contact { padding: 5rem 0; }
.contact-info { padding: 1rem 0; }
.contact-details { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon {
    width: 44px; height: 44px; border-radius: var(--radius-md);
    background: var(--plum-muted); color: var(--plum);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--plum); margin-bottom: 0.2rem; }
.contact-item span, .contact-item a { font-size: 0.95rem; color: var(--neutral-600); }
.contact-item a:hover { color: var(--plum); text-decoration: underline; }
.contact-brand {
    margin-top: 2.5rem; padding-top: 1.5rem;
    border-top: 1px solid var(--neutral-200);
}
.brand-label { display: block; font-size: 0.75rem; color: var(--neutral-600); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.brand-logo { color: var(--neutral-600); }
.contact-form-wrap {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 2rem; border: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
    display: block; font-size: 0.85rem; font-weight: 600;
    color: var(--neutral-800); margin-bottom: 0.375rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 0.75rem 1rem;
    border: 1.5px solid var(--neutral-300); border-radius: var(--radius-sm);
    font-family: var(--font-body); font-size: 0.95rem; color: var(--neutral-900);
    transition: var(--transition); background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none; border-color: var(--plum);
    box-shadow: 0 0 0 3px rgba(74,25,66,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--neutral-600); }
.form-note { font-size: 0.8rem; color: var(--neutral-600); text-align: center; margin-top: 0.75rem; }
.form-success {
    text-align: center; padding: 2rem;
}
.success-icon { color: var(--plum); margin: 0 auto 1rem; }
.success-title { font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--plum); }
.form-success p { color: var(--neutral-600); margin-bottom: 1.5rem; }

/* ===== FOOTER ===== */
.site-footer {
    background: var(--neutral-900); color: rgba(255,255,255,0.7);
    padding: 4rem 0 0;
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2rem;
    padding-bottom: 3rem;
}
.footer-tagline { font-size: 0.9rem; line-height: 1.7; margin-top: 1rem; max-width: 280px; }
.footer-links h4, .footer-contact h4 {
    font-family: var(--font-body); font-size: 0.85rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em; color: var(--white);
    margin-bottom: 1rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
    font-size: 0.9rem; color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
.footer-links a:hover { color: var(--amber-light); }
.footer-contact address p { font-size: 0.9rem; margin-bottom: 0.5rem; }
.footer-contact a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-contact a:hover { color: var(--amber-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-disclaimer { font-size: 0.75rem !important; }

/* ===== GRID LAYOUT ===== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== MOBILE NAV ===== */
@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-list {
        position: fixed; top: 4rem; left: 0; right: 0;
        background: var(--white); flex-direction: column;
        padding: 1rem 1.5rem 1.5rem; gap: 0.25rem;
        border-bottom: 1px solid var(--neutral-200);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%); opacity: 0;
        transition: var(--transition); pointer-events: none;
    }
    .nav-list.open { transform: translateY(0); opacity: 1; pointer-events: all; }
    .nav-list a { padding: 0.75rem 1rem; width: 100%; }
    .hero { padding: 7rem 1.5rem 5rem; }
    .hero-stats { flex-direction: column; gap: 1rem; }
    .hero-stat-divider { width: 40px; height: 1px; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid,
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .grid-2 { grid-template-columns: 1fr; gap: 2rem; }
    .about-image-wrap { max-width: 400px; }
    .about-image-accent { width: 80px; height: 80px; bottom: -1rem; right: -0.75rem; }
    .about-image-accent svg { width: 32px; height: 32px; }
    .services-grid,
    .testimonials-grid,
    .areas-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .section { padding: 3.5rem 0; }
}
@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .cta-actions { flex-direction: column; }
    .cta-actions .btn { width: 100%; }
}
