/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', sans-serif;
    background: #0a0f0d;
    color: #f5f0e8;
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

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

/* ── Navigation ── */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 0;
    transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
    background: rgba(10, 15, 13, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 1px 0 rgba(212, 168, 83, 0.15);
}
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-text { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1rem; color: #f5f0e8; white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.875rem; font-weight: 500; color: #c4b99a; transition: color 0.3s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: #d4a853; transition: width 0.3s; }
.nav-links a:hover { color: #d4a853; }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    background: linear-gradient(135deg, #d4a853, #b8923e);
    color: #0a0f0d !important;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: transform 0.3s, box-shadow 0.3s;
}
.nav-cta::after { display: none; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212, 168, 83, 0.3); color: #0a0f0d !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { width: 24px; height: 2px; background: #f5f0e8; border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-gradient {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(6, 78, 59, 0.6) 0%, rgba(10, 15, 13, 0.9) 60%, #0a0f0d 100%);
}
.hero-pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(212, 168, 83, 0.06) 1px, transparent 1px);
    background-size: 32px 32px;
}
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 800px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(212, 168, 83, 0.1);
    border: 1px solid rgba(212, 168, 83, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #d4a853;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease both;
}
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s 0.1s ease both;
}
.hero-title-accent {
    display: block;
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(135deg, #d4a853, #e8c97a, #d4a853);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #b8a88a;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeInUp 0.8s 0.2s ease both;
}
.hero-actions {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
    margin-bottom: 56px;
    animation: fadeInUp 0.8s 0.3s ease both;
}
.hero-stats {
    display: flex; gap: 32px; justify-content: center; align-items: center;
    animation: fadeInUp 0.8s 0.4s ease both;
}
.hero-stat { text-align: center; }
.hero-stat-number { display: block; font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: #d4a853; }
.hero-stat-label { font-size: 0.75rem; color: #8a7e6b; text-transform: uppercase; letter-spacing: 0.1em; }
.hero-stat-divider { width: 1px; height: 40px; background: rgba(212, 168, 83, 0.2); }
.hero-scroll {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    color: rgba(212, 168, 83, 0.5);
    animation: bounce 2s infinite;
}

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}
.btn-primary {
    background: linear-gradient(135deg, #d4a853, #b8923e);
    color: #0a0f0d;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(212, 168, 83, 0.35); }
.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(212, 168, 83, 0.3);
    color: #d4a853;
}
.btn-secondary:hover { background: rgba(212, 168, 83, 0.1); transform: translateY(-2px); }
.btn-outline {
    background: transparent;
    border: 1px solid rgba(212, 168, 83, 0.4);
    color: #d4a853;
}
.btn-outline:hover { background: rgba(212, 168, 83, 0.08); transform: translateY(-2px); }
.btn-ghost {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(245, 240, 232, 0.2);
    color: #f5f0e8;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ── Section Shared ── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #d4a853;
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}
.section-title-accent {
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(135deg, #d4a853, #e8c97a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-subtitle { color: #8a7e6b; font-size: 1.0625rem; max-width: 560px; margin: 0 auto; }

/* ── Services ── */
.services { padding: 120px 0; position: relative; }
.services::before {
    content: '';
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 1px; height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(212, 168, 83, 0.3));
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 168, 83, 0.1);
    border-radius: 16px;
    padding: 40px 32px;
    transition: transform 0.4s, border-color 0.4s, background 0.4s, box-shadow 0.4s;
}
.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 168, 83, 0.3);
    background: rgba(212, 168, 83, 0.04);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.service-icon { margin-bottom: 24px; }
.service-title { font-size: 1.25rem; margin-bottom: 12px; color: #f5f0e8; }
.service-desc { color: #8a7e6b; font-size: 0.9375rem; line-height: 1.7; }

/* ── About ── */
.about { padding: 120px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-image { position: relative; }
.about-image img { border-radius: 16px; width: 100%; height: 700px; object-fit: cover; }
.about-image-accent {
    position: absolute; bottom: -24px; right: -24px;
    width: 200px; height: 200px;
    border: 2px solid rgba(212, 168, 83, 0.2);
    border-radius: 16px;
    z-index: -1;
}
.about-content .section-tag { text-align: left; }
.about-content .section-title { text-align: left; margin-bottom: 24px; }
.about-text { color: #b8a88a; font-size: 1rem; line-height: 1.8; margin-bottom: 16px; }
.about-values { display: flex; flex-direction: column; gap: 20px; margin: 32px 0; }
.about-value { display: flex; gap: 16px; align-items: flex-start; }
.about-value-icon { flex-shrink: 0; width: 40px; height: 40px; background: rgba(212, 168, 83, 0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.about-value strong { display: block; color: #f5f0e8; font-size: 0.9375rem; margin-bottom: 2px; }
.about-value span { color: #8a7e6b; font-size: 0.875rem; }
.about-content .btn { margin-top: 8px; }

/* ── Why Us ── */
.why-us { padding: 120px 0; background: rgba(212, 168, 83, 0.02); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.why-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 168, 83, 0.08);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s, border-color 0.4s;
}
.why-card:hover { transform: translateY(-4px); border-color: rgba(212, 168, 83, 0.25); }
.why-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(212, 168, 83, 0.15);
    position: absolute; top: 20px; right: 28px;
    line-height: 1;
}
.why-title { font-size: 1.25rem; margin-bottom: 12px; color: #f5f0e8; padding-right: 80px; }
.why-desc { color: #8a7e6b; font-size: 0.9375rem; line-height: 1.7; }

/* ── CTA Banner ── */
.cta-banner { padding: 100px 0; position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; }
.cta-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.5) 0%, rgba(10, 15, 13, 0.95) 100%);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-content { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; }
.cta-text { color: #b8a88a; font-size: 1.0625rem; line-height: 1.7; margin-bottom: 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Contact ── */
.contact { padding: 120px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-item { display: flex; gap: 20px; margin-bottom: 32px; }
.contact-icon {
    flex-shrink: 0; width: 52px; height: 52px;
    background: rgba(212, 168, 83, 0.08);
    border: 1px solid rgba(212, 168, 83, 0.15);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
}
.contact-item strong { display: block; color: #f5f0e8; font-size: 0.9375rem; margin-bottom: 4px; }
.contact-item p { color: #8a7e6b; font-size: 0.9375rem; line-height: 1.6; }
.contact-item a { color: #d4a853; transition: color 0.3s; }
.contact-item a:hover { color: #e8c97a; }
.contact-map { margin-top: 8px; border-radius: 12px; overflow: hidden; }
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 168, 83, 0.1);
    border-radius: 20px;
    padding: 48px;
}
.contact-form-title { font-size: 1.5rem; margin-bottom: 32px; color: #f5f0e8; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.8125rem; font-weight: 500; color: #b8a88a; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 168, 83, 0.15);
    border-radius: 10px;
    padding: 14px 16px;
    color: #f5f0e8;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    transition: border-color 0.3s, background 0.3s;
    outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #5a5040; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: rgba(212, 168, 83, 0.5);
    background: rgba(212, 168, 83, 0.04);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: #1a2019; color: #f5f0e8; }
.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 { margin-bottom: 20px; }
.form-success h4 { font-size: 1.5rem; margin-bottom: 12px; color: #d4a853; }
.form-success p { color: #8a7e6b; }

/* ── Footer ── */
.footer { padding: 80px 0 0; border-top: 1px solid rgba(212, 168, 83, 0.08); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 60px; }
.footer-brand p { color: #8a7e6b; font-size: 0.9375rem; line-height: 1.7; margin-top: 16px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo-text { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links strong { color: #d4a853; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.footer-links a { color: #8a7e6b; font-size: 0.9375rem; transition: color 0.3s; }
.footer-links a:hover { color: #d4a853; }
.footer-links span { color: #8a7e6b; font-size: 0.9375rem; }
.footer-bottom { border-top: 1px solid rgba(212, 168, 83, 0.06); padding: 24px 0; text-align: center; }
.footer-bottom p { color: #5a5040; font-size: 0.8125rem; }

/* ── Animations ── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
    .nav-links { 
        position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
        background: rgba(10, 15, 13, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        gap: 24px;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(212, 168, 83, 0.1);
    }
    .nav-links.open { right: 0; }
    .nav-toggle { display: flex; }
    .hero { padding: 100px 24px 60px; }
    .hero-stats { gap: 20px; }
    .services-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image img { height: 400px; }
    .about-image-accent { display: none; }
    .about-content .section-tag, .about-content .section-title { text-align: center; }
    .about-text { text-align: center; }
    .about-content .btn { display: inline-flex; }
    .why-grid { grid-template-columns: 1fr; }
    .why-number { font-size: 2rem; }
    .why-title { padding-right: 0; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .contact-form-wrapper { padding: 32px 24px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .hero-stat-divider { width: 40px; height: 1px; }
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn { width: 100%; justify-content: center; }
}
