/* ===== 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, sans-serif;
    background: #0d0608;
    color: #f5e6e0;
    line-height: 1.6;
    overflow-x: hidden;
    -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; }

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

/* ===== COLOR VARIABLES ===== */
:root {
    --bg-dark: #0d0608;
    --bg-card: #1a0e12;
    --bg-card-hover: #221218;
    --burgundy: #722f37;
    --burgundy-light: #8b3a42;
    --blush: #c8967b;
    --blush-light: #e8c4b0;
    --gold: #c9a84c;
    --gold-light: #e0c06e;
    --text-light: #f5e6e0;
    --text-muted: #b89a8e;
    --text-dark: #1a0e12;
    --border-subtle: rgba(200, 150, 123, 0.15);
    --border-gold: rgba(201, 168, 76, 0.3);
}

/* ===== NAV ===== */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(13, 6, 8, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    transition: background 0.3s;
}
.nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; height: 72px; gap: 32px;
}
.logo {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700;
    color: var(--text-light); letter-spacing: 0.02em;
}
.logo-icon { color: var(--blush); }
.logo-light { color: var(--text-light); }
.nav-links {
    display: flex; align-items: center; gap: 32px; margin-left: auto;
}
.nav-links a {
    font-size: 0.9rem; font-weight: 400; color: var(--text-muted);
    transition: color 0.25s; letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--blush-light); }
.nav-toggle {
    display: none; background: none; border: none; cursor: pointer;
    flex-direction: column; gap: 5px; padding: 4px; margin-left: auto;
}
.nav-toggle span {
    display: block; width: 24px; height: 2px; background: var(--text-light);
    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); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 50px; font-size: 0.95rem;
    font-weight: 500; cursor: pointer; border: none; transition: all 0.3s;
    letter-spacing: 0.02em;
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--text-dark);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.45);
}
.btn-outline-light {
    background: transparent;
    border: 1.5px solid rgba(245, 230, 224, 0.35);
    color: var(--text-light);
}
.btn-outline-light:hover {
    border-color: var(--blush-light);
    background: rgba(200, 150, 123, 0.1);
}
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== HERO ===== */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    overflow: hidden; padding: 100px 24px 60px;
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
}
.hero-img {
    width: 100%; height: 100%; object-fit: cover;
}
.hero-scrim {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(13,6,8,0.92) 0%, rgba(26,14,18,0.85) 50%, rgba(13,6,8,0.7) 100%);
}
.hero-content {
    position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1fr 280px; gap: 60px; align-items: center;
}
.hero-card { max-width: 640px; }
.hero-badge {
    display: inline-block; padding: 8px 18px; border-radius: 50px;
    background: rgba(201, 168, 76, 0.15); border: 1px solid var(--border-gold);
    color: var(--gold); font-size: 0.8rem; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 24px;
}
.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4.2rem); color: var(--text-light);
    margin-bottom: 24px; line-height: 1.1;
}
.hero-headline em { color: var(--blush-light); font-style: italic; }
.hero-sub {
    font-size: 1.1rem; color: var(--text-muted); line-height: 1.7;
    margin-bottom: 36px; max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
    display: flex; flex-direction: column; gap: 16px;
}
.stat-card {
    background: rgba(26, 14, 18, 0.8);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    border-radius: 16px; padding: 24px 20px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}
.stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-gold);
}
.stat-number {
    display: block; font-family: 'Playfair Display', serif;
    font-size: 2.2rem; font-weight: 700; color: var(--gold);
    line-height: 1; margin-bottom: 8px;
}
.stat-label {
    font-size: 0.8rem; color: var(--text-muted);
    letter-spacing: 0.04em; line-height: 1.4;
}

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
    display: inline-block; font-size: 0.75rem; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase; color: var(--blush);
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem); color: var(--text-light);
    margin-bottom: 20px;
}
.section-title em { color: var(--blush-light); font-style: italic; }
.section-desc {
    font-size: 1.05rem; color: var(--text-muted); max-width: 600px; margin: 0 auto;
}

/* ===== SERVICES ===== */
.services {
    padding: 120px 0;
    background: var(--bg-dark);
    position: relative;
}
.services::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(114,47,55,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px; padding: 40px 32px;
    transition: transform 0.3s, border-color 0.3s, background 0.3s;
}
.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-gold);
    background: var(--bg-card-hover);
}
.service-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(200,150,123,0.1));
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); margin-bottom: 24px;
    border: 1px solid var(--border-gold);
}
.service-card h3 {
    font-size: 1.25rem; color: var(--text-light); margin-bottom: 12px;
}
.service-card p {
    font-size: 0.95rem; color: var(--text-muted); line-height: 1.7;
}

/* ===== ABOUT ===== */
.about {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #130a0d 100%);
}
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-image { position: relative; }
.about-image img {
    border-radius: 24px; width: 100%; height: 500px; object-fit: cover;
    border: 1px solid var(--border-subtle);
}
.about-image-accent {
    position: absolute; bottom: -20px; right: -20px;
    width: 200px; height: 200px; border-radius: 20px;
    background: linear-gradient(135deg, var(--burgundy), var(--blush));
    opacity: 0.3; z-index: -1; filter: blur(40px);
}
.about-content .section-tag { text-align: left; }
.about-content .section-title { text-align: left; margin-bottom: 24px; }
.about-text {
    font-size: 1rem; color: var(--text-muted); line-height: 1.8;
    margin-bottom: 16px;
}
.about-features {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
    margin-top: 32px;
}
.about-feature {
    display: flex; align-items: center; gap: 12px;
    font-size: 0.9rem; color: var(--text-light);
}
.about-feature svg { color: var(--gold); flex-shrink: 0; }

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 120px 0;
    background: var(--bg-dark);
    position: relative;
}
.testimonials::before {
    content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 800px; height: 800px; border-radius: 50%;
    background: radial-gradient(circle, rgba(200,150,123,0.05) 0%, transparent 70%);
    pointer-events: none;
}
.testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px; padding: 40px 32px;
    transition: transform 0.3s, border-color 0.3s;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-gold);
}
.testimonial-stars {
    display: flex; gap: 4px; color: var(--gold); margin-bottom: 20px;
}
.testimonial-text {
    font-size: 1rem; color: var(--text-muted); line-height: 1.8;
    margin-bottom: 24px; font-style: italic;
}
.testimonial-author {
    font-size: 0.9rem; color: var(--blush-light); font-weight: 500;
}

/* ===== CTA ===== */
.cta {
    position: relative; padding: 120px 0; overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; }
.cta-img { width: 100%; height: 100%; object-fit: cover; }
.cta-scrim {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(13,6,8,0.9) 0%, rgba(26,14,18,0.85) 100%);
}
.cta-content {
    position: relative; z-index: 1; text-align: center;
    display: flex; flex-direction: column; align-items: center;
}
.cta-title {
    font-size: clamp(2rem, 4vw, 3.2rem); color: var(--text-light);
    margin-bottom: 20px;
}
.cta-title em { color: var(--blush-light); font-style: italic; }
.cta-text {
    font-size: 1.1rem; color: var(--text-muted); margin-bottom: 40px;
    max-width: 560px;
}
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ===== CONTACT ===== */
.contact {
    padding: 120px 0;
    background: linear-gradient(180deg, #130a0d 0%, var(--bg-dark) 100%);
}
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.contact-info .section-tag { text-align: left; }
.contact-info .section-title { text-align: left; margin-bottom: 20px; }
.contact-desc {
    font-size: 1rem; color: var(--text-muted); line-height: 1.7;
    margin-bottom: 40px;
}
.contact-details { display: flex; flex-direction: column; gap: 28px; }
.contact-item {
    display: flex; gap: 20px; align-items: flex-start;
}
.contact-icon {
    width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
    background: rgba(201, 168, 76, 0.1); border: 1px solid var(--border-gold);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
}
.contact-item strong {
    display: block; font-size: 0.8rem; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--blush); margin-bottom: 4px;
}
.contact-item p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }
.contact-item a {
    color: var(--text-muted); transition: color 0.25s;
}
.contact-item a:hover { color: var(--blush-light); }

/* ===== FORM ===== */
.contact-form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 24px; padding: 48px 40px;
}
.contact-form h3 {
    font-size: 1.5rem; color: var(--text-light); margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; font-size: 0.8rem; font-weight: 500;
    letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted);
    margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
    width: 100%; padding: 14px 18px; border-radius: 12px;
    border: 1px solid var(--border-subtle); background: rgba(13,6,8,0.6);
    color: var(--text-light); font-family: 'Inter', sans-serif;
    font-size: 0.95rem; transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(184,154,142,0.5); }
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
    display: flex; align-items: center; gap: 12px;
    padding: 16px 20px; border-radius: 12px; margin-top: 20px;
    background: rgba(201, 168, 76, 0.1); border: 1px solid var(--border-gold);
    color: var(--gold); font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.footer {
    padding: 80px 0 40px;
    background: #080405;
    border-top: 1px solid var(--border-subtle);
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
    margin-bottom: 60px;
}
.footer-brand p {
    font-size: 0.9rem; color: var(--text-muted); margin-top: 16px; line-height: 1.7;
}
.footer-links h4,
.footer-contact h4 {
    font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase; color: var(--blush);
    margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
    font-size: 0.9rem; color: var(--text-muted); transition: color 0.25s;
}
.footer-links a:hover { color: var(--blush-light); }
.footer-contact p {
    font-size: 0.9rem; color: var(--text-muted); line-height: 1.8;
}
.footer-contact a { transition: color 0.25s; }
.footer-contact a:hover { color: var(--blush-light); }
.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding-top: 32px; text-align: center;
}
.footer-bottom p { font-size: 0.85rem; color: rgba(184,154,142,0.5); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
/* Default visible state for progressive enhancement */
.reveal { transform: translateY(0); opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
    .reveal { transform: translateY(30px); opacity: 0; }
    .reveal.revealed { transform: translateY(0); opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: row; flex-wrap: wrap; }
    .stat-card { flex: 1; min-width: 120px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-image img { height: 400px; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-links {
        position: fixed; top: 72px; left: 0; right: 0;
        background: rgba(13,6,8,0.97);
        backdrop-filter: blur(20px);
        flex-direction: column; padding: 32px 24px;
        gap: 24px;
        border-bottom: 1px solid var(--border-subtle);
        transform: translateY(-120%);
        transition: transform 0.35s ease;
    }
    .nav-links.open { transform: translateY(0); }
    .nav-toggle { display: flex; }
    .hero { padding: 120px 24px 80px; min-height: auto; }
    .hero-headline { font-size: clamp(2rem, 8vw, 3rem); }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { text-align: center; justify-content: center; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 32px 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}
