/* ===== 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, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a2e;
    background: #faf9f7;
    -webkit-font-smoothing: antialiased;
}
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 ===== */
.skip-link {
    position: absolute; top: -100%; left: 16px;
    background: #4A1942; color: #fff; padding: 8px 16px;
    border-radius: 0 0 8px 8px; z-index: 9999; font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.2; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border-radius: 8px; font-weight: 600;
    font-size: 0.938rem; border: 2px solid transparent;
    transition: all 0.25s ease; cursor: pointer; white-space: nowrap;
}
.btn--primary { background: #4A1942; color: #fff; border-color: #4A1942; }
.btn--primary:hover { background: #3a1234; border-color: #3a1234; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(74,25,66,0.3); }
.btn--amber { background: #F5A623; color: #1a1a2e; border-color: #F5A623; }
.btn--amber:hover { background: #e0951a; border-color: #e0951a; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(245,166,35,0.4); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn--outline { background: transparent; color: #4A1942; border-color: #4A1942; }
.btn--outline:hover { background: #4A1942; color: #fff; }
.btn--outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn--outline-white:hover { background: #fff; color: #4A1942; }
.btn--sm { padding: 8px 18px; font-size: 0.875rem; border-radius: 6px; }
.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(250,249,247,0.92); backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(74,25,66,0.08);
    transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 30px rgba(74,25,66,0.1); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.15rem; color: #4A1942; }
.logo-accent { color: #F5A623; }
.logo-text--light { color: #fff; }
.logo-text--light .logo-accent { color: #F5A623; }
.nav-list { display: flex; gap: 32px; }
.nav-list a { font-size: 0.938rem; font-weight: 500; color: #1a1a2e; position: relative; padding: 4px 0; transition: color 0.2s; }
.nav-list a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: #F5A623; transition: width 0.3s ease; }
.nav-list a:hover { color: #4A1942; }
.nav-list a:hover::after { width: 100%; }
.header-cta { display: none; }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger, .hamburger::before, .hamburger::after { display: block; width: 22px; height: 2px; background: #4A1942; border-radius: 2px; transition: all 0.3s; }
.hamburger { position: relative; }
.hamburger::before, .hamburger::after { content: ''; position: absolute; left: 0; }
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.mobile-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.mobile-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.mobile-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(250,249,247,0.98); backdrop-filter: blur(20px);
    z-index: 999; display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.mobile-menu.active { opacity: 1; pointer-events: all; }
.mobile-menu-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.mobile-menu a { font-size: 1.5rem; font-weight: 600; color: #4A1942; font-family: 'Playfair Display', serif; }
.mobile-menu .btn--primary { font-size: 1.1rem; padding: 14px 40px; }

/* ===== HERO ===== */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    padding: 120px 0 80px; overflow: hidden;
    background: linear-gradient(135deg, #1a0a18 0%, #2d1028 40%, #4A1942 100%);
}
.hero-bg-pattern {
    position: absolute; inset: 0; opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F5A623' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    aria-hidden: true;
}
.hero-grid {
    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(245,166,35,0.12); border: 1px solid rgba(245,166,35,0.3);
    padding: 8px 16px; border-radius: 100px; font-size: 0.813rem;
    font-weight: 600; color: #F5A623; letter-spacing: 0.04em; text-transform: uppercase;
    margin-bottom: 24px;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #F5A623; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-title { font-size: clamp(2.5rem, 5vw, 4rem); color: #fff; margin-bottom: 20px; line-height: 1.08; }
.text-gradient {
    background: linear-gradient(135deg, #F5A623 0%, #f7c06a 50%, #e8911e 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-desc { font-size: 1.125rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual { position: relative; height: 500px; }
.hero-card { border-radius: 16px; overflow: hidden; position: absolute; }
.hero-card--main { width: 340px; height: 320px; top: 20px; right: 0; box-shadow: 0 25px 60px rgba(0,0,0,0.4); }
.hero-card--main img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; background: linear-gradient(to top, rgba(26,10,24,0.9), transparent); }
.overlay-tag { display: inline-block; background: #F5A623; color: #1a1a2e; font-size: 0.75rem; font-weight: 700; padding: 4px 12px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.05em; }
.stat-card {
    background: rgba(255,255,255,0.08); backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12); padding: 20px 24px;
    display: flex; align-items: center; gap: 14px; min-width: 200px;
}
.stat-card--1 { bottom: 140px; left: -20px; }
.stat-card--2 { bottom: 60px; right: 20px; }
.stat-card--3 { bottom: 0; left: 40px; }
.stat-icon { color: #F5A623; flex-shrink: 0; }
.stat-value { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: #fff; }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.55); }
.hero-scroll {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.4); font-size: 0.688rem; letter-spacing: 0.15em; text-transform: uppercase;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(245,166,35,0.6), transparent); animation: scrollLine 2s infinite; }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-header { margin-bottom: 60px; }
.section-header--centered { text-align: center; }
.section-tag {
    display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: #F5A623; margin-bottom: 12px;
}
.section-title { font-size: clamp(2rem, 4vw, 2.75rem); color: #1a1a2e; margin-bottom: 16px; }
.section-desc { font-size: 1.063rem; color: #666; max-width: 560px; }
.section-header--centered .section-desc { margin: 0 auto; }

/* ===== SERVICES ===== */
.services { background: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
    background: #faf9f7; border: 1px solid rgba(74,25,66,0.06);
    border-radius: 16px; padding: 36px 28px; 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, #4A1942, #F5A623);
    transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(74,25,66,0.1); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { color: #4A1942; margin-bottom: 20px; }
.service-card h3 { font-size: 1.188rem; margin-bottom: 10px; color: #1a1a2e; }
.service-card p { font-size: 0.938rem; color: #666; line-height: 1.65; }

/* ===== ABOUT ===== */
.about { background: #faf9f7; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-images { position: relative; height: 480px; }
.about-img-main { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px rgba(74,25,66,0.15); }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
    position: absolute; bottom: -30px; right: -30px;
    border-radius: 16px; overflow: hidden; box-shadow: 0 16px 40px rgba(74,25,66,0.2);
    border: 4px solid #faf9f7;
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }
.about-floating-badge {
    display: flex; align-items: center; gap: 8px;
    background: #fff; padding: 10px 16px; font-size: 0.813rem;
    font-weight: 700; color: #4A1942;
}
.about-content .section-tag { margin-bottom: 12px; }
.about-content .section-title { margin-bottom: 20px; }
.about-body { font-size: 1rem; color: #555; line-height: 1.75; margin-bottom: 16px; }
.about-checklist { margin-top: 28px; display: grid; gap: 14px; }
.check-item { display: flex; align-items: center; gap: 12px; font-size: 0.938rem; font-weight: 500; color: #1a1a2e; }

/* ===== WHY ===== */
.why { background: #1a0a18; position: relative; overflow: hidden; }
.why::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(74,25,66,0.5) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 50%, rgba(245,166,35,0.08) 0%, transparent 50%);
}
.why .container { position: relative; z-index: 1; }
.why .section-title { color: #fff; }
.why .section-desc { color: rgba(255,255,255,0.6); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.why-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px; padding: 40px 32px; transition: all 0.3s ease;
}
.why-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(245,166,35,0.3); transform: translateY(-2px); }
.why-number { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 800; color: rgba(245,166,35,0.2); line-height: 1; margin-bottom: 16px; }
.why-card h3 { font-size: 1.25rem; color: #fff; margin-bottom: 12px; }
.why-card p { font-size: 0.938rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, #4A1942 0%, #2d1028 100%);
    padding: 80px 0; position: relative; overflow: hidden;
}
.cta-banner::before {
    content: ''; position: absolute; inset: 0; opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23F5A623' fill-opacity='1' fill-rule='evenodd'%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-title { font-size: clamp(1.75rem, 3vw, 2.5rem); color: #fff; margin-bottom: 12px; }
.cta-desc { font-size: 1.063rem; color: rgba(255,255,255,0.65); max-width: 520px; line-height: 1.7; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact { background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-desc { font-size: 1rem; color: #666; line-height: 1.7; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.contact-row { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon { flex-shrink: 0; margin-top: 2px; }
.contact-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #999; margin-bottom: 4px; }
.contact-row a { font-size: 1rem; color: #4A1942; font-weight: 500; transition: color 0.2s; }
.contact-row a:hover { color: #F5A623; }
.contact-map { border-radius: 12px; overflow: hidden; box-shadow: 0 8px 24px rgba(74,25,66,0.1); }
.form-card {
    background: #faf9f7; border: 1px solid rgba(74,25,66,0.08);
    border-radius: 20px; padding: 40px;
}
.form-title { font-size: 1.5rem; margin-bottom: 8px; color: #1a1a2e; }
.form-subtitle { font-size: 0.938rem; color: #888; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.813rem; font-weight: 600; color: #4A1942; margin-bottom: 6px; letter-spacing: 0.02em; }
.form-group input, .form-group textarea {
    width: 100%; padding: 12px 16px; border: 1.5px solid rgba(74,25,66,0.15);
    border-radius: 10px; font-family: 'Inter', sans-serif; font-size: 0.938rem;
    color: #1a1a2e; background: #fff; transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: #4A1942; box-shadow: 0 0 0 3px rgba(74,25,66,0.08); }
.form-group input::placeholder, .form-group textarea::placeholder { color: #bbb; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.visible { display: block; }
.success-icon { color: #F5A623; margin-bottom: 16px; }
.form-success h4 { font-size: 1.25rem; color: #1a1a2e; margin-bottom: 8px; }
.form-success p { font-size: 0.938rem; color: #666; }
.form-group input:invalid:not(:placeholder-shown) { border-color: #d32f2f; }

/* ===== FOOTER ===== */
.site-footer { background: #1a0a18; padding: 60px 0 0; color: rgba(255,255,255,0.6); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-tagline { font-size: 0.938rem; margin-top: 16px; line-height: 1.6; max-width: 280px; }
.footer-col h4 { font-family: 'Inter', sans-serif; font-size: 0.813rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #F5A623; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.938rem; transition: color 0.2s; }
.footer-col a:hover { color: #F5A623; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; line-height: 1.6; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; padding: 24px 0; font-size: 0.813rem; color: rgba(255,255,255,0.35); }

/* ===== SCROLL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { height: 400px; order: -1; }
    .hero-card--main { width: 260px; height: 240px; right: 10px; }
    .stat-card { padding: 14px 18px; min-width: 160px; }
    .stat-card--1 { left: 0; bottom: 120px; }
    .stat-card--2 { right: 0; bottom: 50px; }
    .stat-card--3 { left: 20px; bottom: 0; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .about-images { height: 360px; }
    .about-img-float { right: -10px; bottom: -20px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav, .header-cta { display: none; }
    .mobile-toggle { display: block; }
    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero-visual { height: 300px; }
    .hero-card--main { width: 200px; height: 180px; }
    .stat-card { min-width: 140px; padding: 12px 14px; }
    .stat-value { font-size: 0.95rem; }
    .stat-label { font-size: 0.688rem; }
    .stat-card--1 { bottom: 90px; left: -10px; }
    .stat-card--2 { right: -10px; bottom: 30px; }
    .stat-card--3 { display: none; }
    .hero-scroll { display: none; }
    .section { padding: 70px 0; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .cta-inner { flex-direction: column; text-align: center; }
    .cta-actions { justify-content: center; }
    .form-row { grid-template-columns: 1fr; }
    .form-card { padding: 28px 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .about-img-float { right: 0; bottom: -15px; }
}
@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-visual { height: 240px; }
    .hero-card--main { width: 160px; height: 140px; }
    .stat-card--1 { display: none; }
    .stat-card--2 { right: 0; bottom: 20px; }
}
