/* ── Reset & Base ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0e0a04;
    color: #e8dcc8;
    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; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ── Custom Properties ──────────────────────────── */
:root {
    --bg-dark: #0e0a04;
    --bg-card: #1a1208;
    --bg-card-hover: #221a0e;
    --accent: #c9956a;
    --accent-light: #dfb896;
    --accent-dark: #a07048;
    --sand: #e8dcc8;
    --sand-muted: #b8a890;
    --sand-dim: #7a6e60;
    --white: #faf6f0;
    --terracotta: #b8603a;
    --terracotta-light: #d4784f;
    --gold: #c9956a;
    --nav-height: 72px;
    --container: 1200px;
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Utilities ──────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}
.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}
.section-title .accent { color: var(--accent); }
.section-subtitle {
    font-size: 1.1rem;
    color: var(--sand-muted);
    max-width: 560px;
    line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-subtitle { margin: 0 auto; }

/* ── Buttons ────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--terracotta-light));
    color: var(--bg-dark);
    box-shadow: 0 4px 24px rgba(201, 149, 106, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201, 149, 106, 0.45);
}
.btn-outline {
    border: 1.5px solid rgba(201, 149, 106, 0.5);
    color: var(--sand);
}
.btn-outline:hover {
    border-color: var(--accent);
    background: rgba(201, 149, 106, 0.1);
    color: var(--accent-light);
}
.btn-outline-light {
    border: 1.5px solid var(--accent);
    color: var(--accent);
}
.btn-outline-light:hover {
    background: var(--accent);
    color: var(--bg-dark);
}
.btn-full { width: 100%; justify-content: center; }

/* ── Navigation ─────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
    background: rgba(14, 10, 4, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(201, 149, 106, 0.1);
}
.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
}
.nav-logo span { letter-spacing: -0.01em; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--sand-muted);
    transition: color var(--transition);
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
    background: linear-gradient(135deg, var(--accent), var(--terracotta-light));
    color: var(--bg-dark) !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600 !important;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--sand);
    border-radius: 2px;
    transition: all var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ───────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: 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(14, 10, 4, 0.92) 0%,
        rgba(14, 10, 4, 0.75) 50%,
        rgba(14, 10, 4, 0.88) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    padding: 0 24px;
    padding-top: var(--nav-height);
}
.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}
.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.hero-title .accent { color: var(--accent); }
.hero-subtitle {
    font-size: 1.15rem;
    color: var(--sand-muted);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 540px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 56px;
}
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--sand-muted);
    font-weight: 500;
}
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: var(--sand-dim);
    animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ── 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;
    background: radial-gradient(circle, rgba(201, 149, 106, 0.04) 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 rgba(201, 149, 106, 0.08);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}
.service-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(201, 149, 106, 0.15);
    transform: translateY(-4px);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(201, 149, 106, 0.1);
    margin-bottom: 24px;
}
.service-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}
.service-card p {
    font-size: 0.95rem;
    color: var(--sand-muted);
    line-height: 1.7;
}

/* ── About ──────────────────────────────────────── */
.about {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #120c05 100%);
    position: relative;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-images {
    position: relative;
}
.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 32px 64px 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: -40px;
    width: 55%;
    border-radius: var(--radius);
    overflow: hidden;
    border: 4px solid var(--bg-dark);
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.about-img-secondary img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.about-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: linear-gradient(135deg, var(--accent), var(--terracotta));
    color: var(--bg-dark);
    padding: 20px 24px;
    border-radius: var(--radius);
    box-shadow: 0 16px 48px rgba(201, 149, 106, 0.3);
}
.badge-number {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 4px;
}
.badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.about-content .section-eyebrow { text-align: left; }
.about-content .section-title { text-align: left; }
.about-text {
    font-size: 1.05rem;
    color: var(--sand-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(201, 149, 106, 0.12);
}
.stat-number {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 0.8rem;
    color: var(--sand-dim);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ── Gallery ────────────────────────────────────── */
.gallery {
    padding: 120px 0;
    background: #120c05;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 200px;
    gap: 16px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px 16px;
    background: linear-gradient(transparent, rgba(14,10,4,0.9));
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--sand);
    transform: translateY(100%);
    transition: transform var(--transition);
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }
.gallery-item:nth-child(1) { grid-column: span 4; grid-row: span 1; }
.gallery-item:nth-child(2) { grid-column: span 4; grid-row: span 1; }
.gallery-item:nth-child(3) { grid-column: span 4; grid-row: span 1; }
.gallery-item:nth-child(4) { grid-column: span 4; grid-row: span 1; }
.gallery-item:nth-child(5) { grid-column: span 8; grid-row: span 1; }

/* ── Testimonials ───────────────────────────────── */
.testimonials {
    padding: 120px 0;
    background: var(--bg-dark);
    position: relative;
}
.testimonials::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: linear-gradient(to top, rgba(201, 149, 106, 0.03), transparent);
    pointer-events: none;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid rgba(201, 149, 106, 0.08);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: all var(--transition);
}
.testimonial-card:hover {
    border-color: rgba(201, 149, 106, 0.2);
    transform: translateY(-4px);
}
.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}
.testimonial-text {
    font-size: 1rem;
    color: var(--sand);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--terracotta));
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.author-name {
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
}
.author-location {
    font-size: 0.8rem;
    color: var(--sand-dim);
}

/* ── CTA / Contact ──────────────────────────────── */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #120c05 100%);
    position: relative;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 149, 106, 0.05) 0%, transparent 60%);
    pointer-events: none;
}
.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
}
.cta-info .section-eyebrow { text-align: left; }
.cta-info .section-title { text-align: left; }
.cta-text {
    font-size: 1.05rem;
    color: var(--sand-muted);
    line-height: 1.75;
    margin-bottom: 40px;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-item svg { flex-shrink: 0; margin-top: 2px; }
.contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sand-dim);
    margin-bottom: 4px;
}
.contact-item p, .contact-item a {
    font-size: 0.95rem;
    color: var(--sand);
    line-height: 1.6;
}
.contact-item a:hover { color: var(--accent); }

/* Form */
.cta-form-wrapper {
    background: var(--bg-card);
    border: 1px solid rgba(201, 149, 106, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px;
}
.cta-form h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    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: 600;
    color: var(--sand-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(201, 149, 106, 0.06);
    border: 1px solid rgba(201, 149, 106, 0.15);
    border-radius: var(--radius);
    padding: 12px 16px;
    color: var(--sand);
    transition: all var(--transition);
    outline: none;
    width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--sand-dim);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: rgba(201, 149, 106, 0.1);
    box-shadow: 0 0 0 3px rgba(201, 149, 106, 0.1);
}
.form-group select {
    appearance: none;
    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='%23c9956a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer;
}
.form-group select option {
    background: var(--bg-card);
    color: var(--sand);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--sand-dim);
    margin-top: 12px;
}
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}
.form-success svg { margin: 0 auto 20px; }
.form-success h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 12px;
}
.form-success p {
    color: var(--sand-muted);
    margin-bottom: 24px;
}

/* ── Footer ─────────────────────────────────────── */
.footer {
    padding: 80px 0 0;
    background: #080603;
    border-top: 1px solid rgba(201, 149, 106, 0.08);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
}
.footer-brand p {
    font-size: 0.9rem;
    color: var(--sand-dim);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
}
.footer-links h4,
.footer-contact h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    font-size: 0.9rem;
    color: var(--sand-dim);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--sand); }
.footer-contact p {
    font-size: 0.9rem;
    color: var(--sand-dim);
    line-height: 1.7;
    margin-bottom: 4px;
}
.footer-contact a:hover { color: var(--accent); }
.footer-bottom {
    border-top: 1px solid rgba(201, 149, 106, 0.06);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    font-size: 0.8rem;
    color: var(--sand-dim);
}

/* ── Scroll Reveal (progressive enhancement) ────── */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid .testimonial-card:last-child { grid-column: span 2; }
    .about-grid { gap: 48px; }
    .cta-grid { gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    :root { --nav-height: 64px; }
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: rgba(14, 10, 4, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        transform: translateY(-120%);
        opacity: 0;
        transition: all var(--transition);
        border-bottom: 1px solid rgba(201, 149, 106, 0.1);
    }
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
    }
    .hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
    .hero-trust { gap: 16px; }
    .services-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-images { margin-bottom: 48px; }
    .about-img-secondary { right: 0; bottom: -24px; }
    .about-badge { top: -12px; left: -12px; }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 160px;
    }
    .gallery-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
    .gallery-item:nth-child(5) { grid-column: span 2; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonials-grid .testimonial-card:last-child { grid-column: span 1; }
    .cta-grid { grid-template-columns: 1fr; gap: 48px; }
    .cta-form-wrapper { padding: 28px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .section-header { margin-bottom: 48px; }
    .services, .about, .gallery, .testimonials, .cta-section { padding: 80px 0; }
}

@media (max-width: 480px) {
    .about-stats { grid-template-columns: 1fr; gap: 20px; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
    .gallery-item:nth-child(5) { grid-column: span 1; }
}
