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

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

body {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 300;
    color: #0A1D3A;
    background: #FAFAF8;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* ── Section Labels & Titles ── */
.section-label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C8A961;
    margin-bottom: 1.25rem;
    display: block;
}

.section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.15;
    color: #0A1D3A;
    margin-bottom: 2rem;
}

.section-title em {
    font-style: italic;
    color: #C8A961;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 2.25rem;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.btn-gold {
    background: #C8A961;
    color: #0A1D3A;
}

.btn-gold:hover {
    background: #D4B878;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 169, 97, 0.3);
}

.btn-outline {
    background: transparent;
    color: #0A1D3A;
    border: 1px solid #0A1D3A;
}

.btn-outline:hover {
    background: #0A1D3A;
    color: #FAFAF8;
}

.btn-full {
    width: 100%;
}

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 250, 248, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(10, 29, 58, 0.06);
    transition: all 0.4s ease;
}

.nav.scrolled {
    box-shadow: 0 1px 20px rgba(10, 29, 58, 0.06);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.15rem;
    letter-spacing: 0.02em;
    color: #0A1D3A;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #0A1D3A;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #C8A961;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #C8A961;
}

.nav-cta {
    font-size: 0.75rem !important;
    letter-spacing: 0.08em !important;
    color: #C8A961 !important;
    border: 1px solid #C8A961 !important;
    padding: 0.6rem 1.25rem !important;
    transition: all 0.3s ease !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: #C8A961 !important;
    color: #0A1D3A !important;
}

.nav-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: #0A1D3A;
    padding: 0.5rem;
}

/* ── Mobile Menu ── */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: #FAFAF8;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-close {
    align-self: flex-end;
    background: none;
    border: none;
    cursor: pointer;
    color: #0A1D3A;
    padding: 0.5rem;
    margin-bottom: 2rem;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}

.mobile-menu-link {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: #0A1D3A;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(10, 29, 58, 0.08);
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-menu-link:hover {
    color: #C8A961;
    padding-left: 0.75rem;
}

.mobile-menu-divider {
    height: 1px;
    background: rgba(10, 29, 58, 0.08);
    margin: 1.5rem 0;
}

.mobile-menu-phone,
.mobile-menu-email {
    font-size: 0.85rem;
    color: #0A1D3A;
    padding: 0.6rem 0;
    transition: color 0.3s ease;
}

.mobile-menu-phone:hover,
.mobile-menu-email:hover {
    color: #C8A961;
}

.mobile-menu-email {
    color: #666;
}

.mobile-menu-address {
    font-size: 0.8rem;
    color: #888;
    margin-top: 1rem;
    line-height: 1.6;
}

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 72px 0 0;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 520px;
}

.hero-label {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C8A961;
    margin-bottom: 2rem;
}

.hero-headline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 300;
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    line-height: 1.05;
    color: #0A1D3A;
    margin-bottom: 2rem;
}

.hero-headline em {
    font-style: italic;
    color: #C8A961;
}

.hero-sub {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: #3a4a5c;
    margin-bottom: 2.5rem;
    max-width: 440px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.hero-stat-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: #0A1D3A;
}

.hero-stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #888;
}

.hero-stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(10, 29, 58, 0.15);
}

/* Hero Image */
.hero-image {
    position: relative;
}

.hero-image-wrap {
    position: relative;
    overflow: hidden;
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.hero-image-wrap:hover img {
    transform: scale(1.03);
}

.hero-image-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid #C8A961;
    z-index: -1;
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #888;
    animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Section Divider ── */
.section-divider {
    max-width: 1200px;
    margin: 0 auto;
    height: 1px;
    background: rgba(10, 29, 58, 0.08);
}

/* ── About ── */
.about {
    padding: 8rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: start;
}

.about-left .section-title {
    margin-bottom: 0;
}

.about-right p {
    font-size: 0.95rem;
    line-height: 1.85;
    color: #3a4a5c;
    margin-bottom: 1.5rem;
}

.about-signature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(10, 29, 58, 0.08);
}

.about-signature-text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: #0A1D3A;
}

/* ── Services ── */
.services {
    padding: 8rem 0;
}

.service-title {
    max-width: 600px;
    margin-bottom: 4rem;
}

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

.service-card {
    padding: 2.5rem 2rem;
    border: 1px solid rgba(10, 29, 58, 0.07);
    margin: -0.5px;
    transition: all 0.4s ease;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #C8A961;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    background: rgba(200, 169, 97, 0.03);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.3rem;
    color: #0A1D3A;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.service-desc {
    font-size: 0.85rem;
    line-height: 1.75;
    color: #666;
    font-weight: 300;
}

/* ── Approach ── */
.approach {
    padding: 8rem 0;
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.approach-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.approach-points {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 1rem;
}

.approach-point {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 1.5rem;
    align-items: start;
}

.approach-num {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 1.5rem;
    color: #C8A961;
    line-height: 1;
    padding-top: 0.25rem;
}

.approach-point-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.35rem;
    color: #0A1D3A;
    margin-bottom: 0.5rem;
}

.approach-point p {
    font-size: 0.88rem;
    line-height: 1.75;
    color: #666;
    font-weight: 300;
}

/* ── CTA / Contact ── */
.cta {
    padding: 8rem 0;
    background: #0A1D3A;
    color: #FAFAF8;
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.cta .section-label {
    color: #C8A961;
}

.cta .section-title {
    color: #FAFAF8;
}

.cta-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(250, 250, 248, 0.65);
    margin-bottom: 2.5rem;
    max-width: 400px;
}

.cta-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cta-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta-detail svg {
    flex-shrink: 0;
}

.cta-detail a,
.cta-detail span {
    font-size: 0.88rem;
    color: rgba(250, 250, 248, 0.8);
    font-weight: 300;
    transition: color 0.3s ease;
}

.cta-detail a:hover {
    color: #C8A961;
}

/* ── Contact Form ── */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(250, 250, 248, 0.5);
    font-weight: 400;
}

.form-input {
    background: rgba(250, 250, 248, 0.05);
    border: 1px solid rgba(250, 250, 248, 0.12);
    color: #FAFAF8;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    padding: 1rem 1.25rem;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
    width: 100%;
    border-radius: 0;
    -webkit-appearance: none;
}

.form-input::placeholder {
    color: rgba(250, 250, 248, 0.3);
}

.form-input:focus {
    border-color: #C8A961;
    background: rgba(250, 250, 248, 0.08);
}

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

.form-success {
    display: none;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem;
    background: rgba(200, 169, 97, 0.1);
    border: 1px solid rgba(200, 169, 97, 0.3);
    color: #C8A961;
    font-size: 0.85rem;
    font-weight: 400;
}

.form-success.visible {
    display: flex;
}

/* ── Footer ── */
.footer {
    background: #071528;
    color: rgba(250, 250, 248, 0.5);
    padding: 3.5rem 0 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(250, 250, 248, 0.06);
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: rgba(250, 250, 248, 0.85);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 300;
}

.footer-contact a {
    color: rgba(250, 250, 248, 0.5);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #C8A961;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(250, 250, 248, 0.3);
}

/* ── Scroll Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 2.5rem;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-menu-btn {
        display: flex;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-top: 2rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-image {
        order: -1;
    }

    .hero-image-wrap {
        height: 400px;
    }

    .hero-image-accent {
        display: none;
    }

    .hero-stats {
        flex-wrap: wrap;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .approach-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .approach-image-col {
        order: -1;
    }

    .approach-image-col img {
        height: 350px;
    }

    .cta-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .section-divider {
        margin: 0 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-image-wrap {
        height: 300px;
    }
}
