/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy:    #0B1D3A;
    --navy-mid:#132D54;
    --navy-deep:#060F1F;
    --gold:    #C8A961;
    --gold-lt: #D4BA7A;
    --gold-dk: #A8893E;
    --cream:   #FAF7F0;
    --cream-dk:#F0EBE0;
    --white:   #FFFFFF;
    --text:    #1A1A1A;
    --text-lt: #F5F0E8;
    --gray:    #6B7280;
    --gray-lt: #E5E7EB;
    --serif:   'Playfair Display', Georgia, 'Times New Roman', serif;
    --sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow:  0 4px 24px rgba(11,29,58,0.08);
    --shadow-lg: 0 12px 48px rgba(11,29,58,0.12);
    --radius:  12px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--sans);
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    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; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
.section-eyebrow {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 20px;
}

.section-title em { font-style: italic; color: var(--gold-dk); }

.section-desc {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 540px;
    line-height: 1.7;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sans);
    font-weight: 500;
    font-size: 0.938rem;
    padding: 14px 28px;
    border-radius: 50px;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,169,97,0.35); }

.btn-dark {
    background: var(--navy);
    color: var(--white);
}
.btn-dark:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(11,29,58,0.3); }

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-ghost-light {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.18); }

.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── NAV ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(11,29,58,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(200,169,97,0.15);
    transition: var(--transition);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 72px;
    gap: 32px;
}

.nav-logo {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.01em;
}

.nav-logo-accent { color: var(--gold); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.nav-menu a {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    padding: 8px 14px;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-menu a:hover { color: var(--white); background: rgba(255,255,255,0.08); }

.nav-toggle {
    display: none;
    color: var(--white);
    padding: 8px;
    margin-left: auto;
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--navy);
    overflow: hidden;
    padding: 100px 24px 60px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/7447123/pexels-photo-7447123.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center/cover no-repeat;
    opacity: 0.22;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6,15,31,0.92) 0%, rgba(11,29,58,0.78) 50%, rgba(11,29,58,0.6) 100%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.hero-headline {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-accent { color: var(--gold); font-style: italic; }

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
    position: relative;
    height: 580px;
}

.hero-card {
    position: absolute;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-card-main {
    width: 300px;
    height: 400px;
    top: 40px;
    right: 0;
}

.hero-card-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-card-stat {
    bottom: 200px;
    left: -20px;
    background: var(--gold);
    color: var(--navy);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.hero-card-stat svg { flex-shrink: 0; }

.hero-card-services {
    bottom: 20px;
    right: 20px;
    background: var(--white);
    padding: 20px 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 260px;
}

.hc-tag {
    font-size: 0.813rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 50px;
    background: var(--cream);
    color: var(--navy);
    border: 1px solid var(--gray-lt);
}

/* ── SERVICES ── */
.services {
    padding: 100px 0;
    background: var(--cream);
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header .section-desc { margin: 0 auto; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.service-card-img {
    height: 220px;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card-img img { transform: scale(1.06); }

.service-card-body {
    padding: 24px 28px 28px;
}

.service-card-body h3 {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
}

.service-card-body p {
    font-size: 0.938rem;
    color: var(--gray);
    line-height: 1.65;
}

/* ── GALLERY ── */
.gallery {
    padding: 100px 0;
    background: var(--white);
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 240px);
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.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-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

/* ── ABOUT ── */
.about {
    padding: 100px 0;
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 64px;
    align-items: center;
}

.about-visual { position: relative; }

.about-img-main {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img { width: 100%; height: 480px; object-fit: cover; }

.about-img-accent {
    position: absolute;
    bottom: -32px;
    right: -32px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream);
}

.about-img-accent img { width: 240px; height: 180px; object-fit: cover; }

.about-content .section-desc { margin-bottom: 24px; }

.about-text {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 36px 0;
    padding: 28px 0;
    border-top: 1px solid var(--gray-lt);
    border-bottom: 1px solid var(--gray-lt);
}

.about-stat {
    text-align: center;
    flex: 1;
}

.about-stat-num {
    display: block;
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 8px;
}

.about-stat-label {
    font-size: 0.813rem;
    color: var(--gray);
    line-height: 1.4;
}

.about-stat-divider {
    width: 1px;
    height: 48px;
    background: var(--gray-lt);
    flex-shrink: 0;
}

.about-content .btn { margin-top: 8px; }

/* ── TESTIMONIALS ── */
.testimonials {
    padding: 100px 0;
    background: var(--navy);
}

.testimonials .section-title em { color: var(--gold); }

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 32px;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
}

.testimonial-quote {
    margin-bottom: 20px;
    opacity: 0.8;
}

.testimonial-card p {
    font-size: 0.97rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gold);
    font-style: normal;
}

/* ── CTA BANNER ── */
.cta-banner {
    position: relative;
    padding: 100px 0;
    background: var(--navy-deep);
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/6899554/pexels-photo-6899554.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=800') center/cover no-repeat;
    opacity: 0.12;
}

.cta-banner .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-eyebrow { color: var(--gold); }

.cta-title {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT ── */
.contact {
    padding: 100px 0;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-desc {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact-details { display: flex; flex-direction: column; gap: 24px; }

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-detail dt {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 4px;
}

.contact-detail dd {
    font-size: 1rem;
    color: var(--navy);
    font-weight: 500;
}

.contact-detail a:hover { color: var(--gold-dk); text-decoration: underline; }

/* ── FORM ── */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.form-note {
    font-size: 0.9rem;
    color: var(--gray);
    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.813rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-lt);
    border-radius: 8px;
    font-family: var(--sans);
    font-size: 0.938rem;
    color: var(--text);
    background: var(--cream);
    transition: var(--transition);
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200,169,97,0.15);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: 8px;
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
    color: #065F46;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-success svg { color: #059669; flex-shrink: 0; }

/* ── MAP ── */
.map-section { height: 380px; filter: grayscale(0.4); }

/* ── FOOTER ── */
.footer {
    background: var(--navy-deep);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    display: inline-block;
    margin-bottom: 16px;
}

.footer-logo-accent { color: var(--gold); }

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    transition: var(--transition);
}

.footer-links a:hover { color: var(--gold); }

.footer-contact p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
}

.footer-contact a:hover { color: var(--gold); text-decoration: underline; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.813rem;
    color: rgba(255,255,255,0.35);
}

/* ── MOBILE NAV ── */
@media (max-width: 900px) {
    .nav-toggle { display: block; }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(6,15,31,0.97);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        border-bottom: 1px solid rgba(200,169,97,0.15);
    }

    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-menu a {
        width: 100%;
        padding: 14px 16px;
        font-size: 1rem;
    }

    .nav-menu .btn-gold {
        text-align: center;
        margin-top: 8px;
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { display: none; }
    .hero-headline { font-size: clamp(2rem, 6vw, 3.2rem); }

    .services-grid { grid-template-columns: repeat(2, 1fr); }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
    }
    .gallery-item--tall { grid-row: span 1; }
    .gallery-item--wide { grid-column: span 1; }

    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-img-accent { right: 16px; bottom: -24px; }

    .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }

    .contact-grid { grid-template-columns: 1fr; gap: 48px; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .hero { padding: 90px 20px 60px; }
    .hero-headline { font-size: clamp(1.8rem, 7vw, 2.6rem); }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }

    .services { padding: 70px 0; }
    .services-grid { grid-template-columns: 1fr; }

    .gallery { padding: 70px 0; }
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .gallery-item { height: 240px; }
    .gallery-item--tall, .gallery-item--wide { grid-column: span 1; grid-row: span 1; }

    .about { padding: 70px 0; }
    .about-img-main img { height: 360px; }
    .about-img-accent { display: none; }
    .about-stats { flex-direction: column; gap: 20px; }
    .about-stat-divider { width: 48px; height: 1px; }

    .testimonials { padding: 70px 0; }

    .cta-banner { padding: 70px 0; }
    .cta-title { font-size: clamp(1.6rem, 5vw, 2.4rem); }
    .cta-actions { flex-direction: column; align-items: center; }

    .contact { padding: 70px 0; }
    .contact-form-wrap { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; }

    .footer { padding: 48px 0 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
