/* ── 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;
    background: #0B1320;
    color: #C8CDD5;
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    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 ── */
.skip-link {
    position: absolute; top: -100%; left: 16px;
    background: #C8A24E; color: #0B1320;
    padding: 8px 16px; border-radius: 4px;
    font-weight: 600; z-index: 9999;
}
.skip-link:focus { top: 12px; }

/* ── Typography ── */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #F0EDE6;
    line-height: 1.2;
    font-weight: 700;
}
.gold { color: #C8A24E; }

/* ── Section Shared ── */
.section-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em;
    text-transform: uppercase; color: #C8A24E; margin-bottom: 12px;
}
.section-label::before {
    content: ''; display: block; width: 24px; height: 1px;
    background: #C8A24E;
}
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 16px;
}
.section-desc {
    font-size: 1.05rem; color: #8A93A0;
    max-width: 560px;
}
.section-header { margin-bottom: 56px; }

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 6px;
    font-size: 0.95rem; font-weight: 500;
    transition: all 0.3s ease; cursor: pointer;
    border: none; font-family: inherit;
}
.btn-primary {
    background: linear-gradient(135deg, #C8A24E 0%, #A8842E 100%);
    color: #0B1320;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #D4AF60 0%, #B8943A 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 162, 78, 0.3);
}
.btn-outline {
    background: transparent;
    border: 1.5px solid rgba(200, 162, 78, 0.5);
    color: #C8A24E;
}
.btn-outline:hover {
    border-color: #C8A24E;
    background: rgba(200, 162, 78, 0.08);
    transform: translateY(-2px);
}
.btn-outline-light {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.4);
    color: #F0EDE6;
}
.btn-outline-light:hover {
    border-color: #F0EDE6;
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ── Navbar ── */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(11, 19, 32, 0.85);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(200, 162, 78, 0.1);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
    background: rgba(11, 19, 32, 0.96);
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-inner {
    display: flex; align-items: center;
    height: 76px; gap: 32px;
}
.logo {
    display: flex; align-items: center; gap: 10px;
    flex-shrink: 0;
}
.logo-icon { width: 36px; height: 36px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.85rem; font-weight: 700;
    color: #F0EDE6; letter-spacing: 0.08em;
}
.logo-tag {
    font-size: 0.6rem; font-weight: 500;
    color: #C8A24E; letter-spacing: 0.2em;
    text-transform: uppercase;
}
.nav-links {
    display: flex; align-items: center; gap: 32px;
    margin-left: auto;
}
.nav-links a:not(.nav-cta) {
    font-size: 0.875rem; font-weight: 400;
    color: #8A93A0; transition: color 0.2s;
    position: relative;
}
.nav-links a:not(.nav-cta):hover { color: #C8A24E; }
.nav-links a:not(.nav-cta)::after {
    content: ''; position: absolute;
    bottom: -4px; left: 0; width: 0; height: 1px;
    background: #C8A24E; transition: width 0.3s;
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.85rem; font-weight: 500;
    color: #C8A24E !important;
    background: rgba(200, 162, 78, 0.1);
    border: 1px solid rgba(200, 162, 78, 0.3);
    padding: 8px 16px; border-radius: 6px;
    transition: all 0.3s ease;
}
.nav-cta:hover {
    background: rgba(200, 162, 78, 0.18);
    border-color: #C8A24E;
}
.nav-cta svg { width: 14px; height: 14px; }

/* Mobile toggle */
.mobile-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer;
    padding: 8px; margin-left: auto;
}
.mobile-toggle span {
    display: block; width: 22px; height: 2px;
    background: #F0EDE6; border-radius: 2px;
    transition: all 0.3s ease;
}
.mobile-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Hero ── */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
    width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        135deg,
        rgba(11, 19, 32, 0.92) 0%,
        rgba(11, 19, 32, 0.78) 50%,
        rgba(11, 19, 32, 0.88) 100%
    );
}
.hero-content {
    position: relative; z-index: 1;
    padding: 120px 24px 80px;
    max-width: 780px;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(200, 162, 78, 0.1);
    border: 1px solid rgba(200, 162, 78, 0.3);
    padding: 8px 16px; border-radius: 50px;
    font-size: 0.8rem; font-weight: 500;
    color: #C8A24E; margin-bottom: 28px;
    letter-spacing: 0.04em;
}
.hero-badge svg { width: 14px; height: 14px; }
.hero-title {
    font-size: clamp(2.25rem, 5.5vw, 4rem);
    line-height: 1.1; margin-bottom: 24px;
    color: #F0EDE6;
}
.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: #8A93A0; max-width: 560px;
    margin-bottom: 40px; line-height: 1.8;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-scroll {
    position: absolute; bottom: 32px; left: 50%;
    transform: translateX(-50%); z-index: 1;
    display: flex; flex-direction: column; align-items: center;
    gap: 8px; color: #8A93A0; font-size: 0.7rem;
    letter-spacing: 0.15em; text-transform: uppercase;
}
.scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, #C8A24E, transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ── Services ── */
.services {
    padding: 100px 0;
    background: #0B1320;
    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(200,162,78,0.3));
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.service-card {
    position: relative;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(200,162,78,0.1);
    border-radius: 12px;
    padding: 40px 32px;
    transition: all 0.4s ease;
    overflow: hidden;
}
.service-card:hover {
    border-color: rgba(200,162,78,0.3);
    background: rgba(200,162,78,0.04);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.card-glow {
    position: absolute; top: -40px; right: -40px;
    width: 120px; height: 120px;
    background: radial-gradient(circle, rgba(200,162,78,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.card-icon {
    width: 56px; height: 56px;
    margin-bottom: 24px;
}
.card-icon svg { width: 100%; height: 100%; }
.service-card h3 {
    font-size: 1.25rem; margin-bottom: 12px;
    color: #F0EDE6;
}
.service-card p {
    font-size: 0.925rem; color: #8A93A0;
    line-height: 1.7;
}

/* ── About ── */
.about {
    padding: 100px 0;
    background: linear-gradient(180deg, #0B1320 0%, #0D1724 100%);
    position: relative;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
}
.about-images { position: relative; }
.about-img-main {
    border-radius: 12px; overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.about-img-main img { width: 100%; height: 400px; object-fit: cover; }
.about-img-secondary {
    position: absolute; bottom: -40px; right: -32px;
    border-radius: 10px; overflow: hidden;
    border: 3px solid #0B1320;
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.about-img-secondary img { width: 100%; height: 160px; object-fit: cover; }
.about-accent {
    position: absolute; top: -20px; left: -20px;
    width: 80px; height: 80px;
    border-left: 2px solid rgba(200,162,78,0.4);
    border-top: 2px solid rgba(200,162,78,0.4);
    pointer-events: none;
}
.about-content .section-desc { margin-bottom: 20px; }
.about-content p { color: #8A93A0; margin-bottom: 16px; font-size: 0.95rem; }
.about-stats {
    display: flex; gap: 40px;
    margin: 32px 0 40px;
    padding: 24px 0;
    border-top: 1px solid rgba(200,162,78,0.15);
    border-bottom: 1px solid rgba(200,162,78,0.15);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem; font-weight: 700;
    color: #C8A24E;
}
.stat-label { font-size: 0.8rem; color: #8A93A0; letter-spacing: 0.04em; }

/* ── Why Us ── */
.why {
    padding: 100px 0;
    background: #0B1320;
    position: relative;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.feature {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 20px;
    padding: 32px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(200,162,78,0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}
.feature:hover {
    border-color: rgba(200,162,78,0.25);
    background: rgba(200,162,78,0.03);
}
.feature-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem; font-weight: 700;
    color: rgba(200,162,78,0.3);
    line-height: 1;
}
.feature h3 {
    font-size: 1.1rem; margin-bottom: 8px;
    color: #F0EDE6;
}
.feature p { font-size: 0.9rem; color: #8A93A0; line-height: 1.7; }

/* ── CTA Banner ── */
.cta-banner {
    position: relative; padding: 80px 0;
    overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(11,19,32,0.94) 0%, rgba(11,19,32,0.86) 100%);
}
.cta-content {
    position: relative; z-index: 1;
    text-align: center; max-width: 680px;
}
.cta-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 16px; color: #F0EDE6;
}
.cta-content p {
    font-size: 1.05rem; color: #8A93A0;
    margin-bottom: 32px;
}
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── Contact ── */
.contact {
    padding: 100px 0;
    background: linear-gradient(180deg, #0B1320 0%, #0D1724 100%);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: start;
}
.contact-intro {
    font-size: 0.95rem; color: #8A93A0;
    margin-bottom: 32px; line-height: 1.8;
}
.contact-details { display: flex; flex-direction: column; gap: 28px; }
.contact-item dt {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem; font-weight: 600;
    color: #F0EDE6; margin-bottom: 4px;
}
.contact-item dt svg { width: 18px; height: 18px; flex-shrink: 0; }
.contact-item dd {
    padding-left: 28px;
    font-size: 0.925rem; color: #8A93A0;
    line-height: 1.7;
}
.contact-item dd a { color: #C8A24E; transition: color 0.2s; }
.contact-item dd a:hover { color: #D4AF60; }

/* Form */
.form-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(200,162,78,0.15);
    border-radius: 16px;
    padding: 40px;
}
.form-card h3 {
    font-size: 1.35rem; margin-bottom: 8px; color: #F0EDE6;
}
.form-note {
    font-size: 0.875rem; color: #8A93A0;
    margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
    font-size: 0.8rem; font-weight: 500;
    color: #8A93A0; letter-spacing: 0.06em;
    text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(200,162,78,0.15);
    border-radius: 8px; padding: 12px 16px;
    color: #F0EDE6; font-size: 0.95rem;
    font-family: inherit; line-height: 1.5;
    transition: border-color 0.3s, background 0.3s;
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #4A5568; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #C8A24E;
    background: rgba(200,162,78,0.06);
}
.form-group select {
    appearance: none; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C8A24E' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}
.form-group select option { background: #1A2638; color: #F0EDE6; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
    display: flex; align-items: center; gap: 12px;
    margin-top: 16px; padding: 16px;
    background: rgba(200,162,78,0.08);
    border: 1px solid rgba(200,162,78,0.25);
    border-radius: 8px;
    font-size: 0.9rem; color: #C8A24E;
}
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ── Footer ── */
.footer {
    padding: 64px 0 0;
    background: #080F1A;
    border-top: 1px solid rgba(200,162,78,0.1);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px; padding-bottom: 48px;
}
.footer-brand p {
    font-size: 0.875rem; color: #6B7585;
    margin-top: 16px; line-height: 1.7;
    max-width: 300px;
}
.footer-links h4,
.footer-contact h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: #C8A24E; margin-bottom: 16px;
}
.footer-links ul,
.footer-contact ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    font-size: 0.875rem; color: #6B7585;
    transition: color 0.2s;
}
.footer-links a:hover { color: #C8A24E; }
.footer-contact li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.875rem; color: #6B7585;
}
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; }
.footer-contact a { color: #6B7585; transition: color 0.2s; }
.footer-contact a:hover { color: #C8A24E; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 20px 0;
    display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: #4A5568; }
.footer-bottom a { color: #6B7585; transition: color 0.2s; }
.footer-bottom a:hover { color: #C8A24E; }

/* ── Scroll Reveal ── */
.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal[data-revealed="true"] {
    opacity: 1;
    transform: translateY(0);
}
.reveal {
    transform: translateY(24px);
    opacity: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .about-grid,
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-img-secondary { right: 0; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-links {
        position: fixed; top: 76px; left: 0; right: 0;
        background: rgba(11,19,32,0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(200,162,78,0.1);
        transform: translateY(-120%);
        opacity: 0;
        transition: transform 0.4s ease, opacity 0.4s ease;
        pointer-events: none;
    }
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .mobile-toggle { display: flex; }
    .hero-content { padding: 120px 24px 100px; }
    .hero-scroll { display: none; }
    .form-row { grid-template-columns: 1fr; }
    .form-card { padding: 28px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .about-stats { gap: 24px; }
}
@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn { width: 100%; justify-content: center; }
}
