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

:root {
    --navy: #1e3a5f;
    --navy-deep: #152a45;
    --navy-light: #2a4f78;
    --gold: #c8a45e;
    --gold-light: #d4b76e;
    --gold-pale: #f5ecd7;
    --white: #ffffff;
    --off-white: #faf9f7;
    --gray-50: #f7f7f5;
    --gray-100: #efeee9;
    --gray-200: #e2e0d9;
    --gray-400: #9e9c94;
    --gray-600: #6b6960;
    --gray-800: #2e2d28;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--gray-800);
    background: var(--off-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

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

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--navy);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 4px;
    z-index: 200;
    font-size: 0.875rem;
}
.skip-link:focus {
    top: 16px;
}

/* ─── Typography ─── */
.eyebrow {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    color: var(--navy);
}

h1 {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    letter-spacing: -0.01em;
}

h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    letter-spacing: -0.005em;
}

h3 {
    font-size: 1.25rem;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: -0.01em;
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    border: 1px solid transparent;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    text-decoration: none;
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.btn-primary:hover {
    background: var(--navy-deep);
    border-color: var(--navy-deep);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(30, 58, 95, 0.25);
}

.btn-ghost {
    background: transparent;
    color: var(--navy);
    border-color: var(--gray-200);
}
.btn-ghost:hover {
    border-color: var(--navy);
    color: var(--navy);
}

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

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ─── Navbar ─── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 249, 247, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-100);
    transition: box-shadow 0.3s var(--ease);
}
.navbar.scrolled {
    box-shadow: 0 1px 20px rgba(30, 58, 95, 0.06);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--navy);
    letter-spacing: -0.01em;
}

.logo-mark {
    width: 28px;
    height: 28px;
    background: var(--navy);
    position: relative;
    flex-shrink: 0;
}
.logo-mark::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 1px solid var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray-600);
    transition: color 0.2s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease);
}
.nav-links a:hover {
    color: var(--navy);
}
.nav-links a:hover::after {
    width: 100%;
}

.btn-nav {
    font-size: 0.8125rem !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase;
    color: var(--gold) !important;
    font-weight: 500 !important;
}
.btn-nav::after { display: none !important; }
.btn-nav:hover { color: var(--gold-light) !important; }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.mobile-toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--navy);
    transition: all 0.3s var(--ease);
    transform-origin: center;
}
.mobile-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}
.mobile-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* ─── Hero ─── */
.hero {
    padding-top: 144px;
    padding-bottom: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid var(--gray-100);
    pointer-events: none;
}

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

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

.hero-content h1 {
    margin-bottom: 24px;
}

.hero-sub {
    font-size: 1.0625rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 440px;
}

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

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

.hero-card {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(30, 58, 95, 0.08);
}

.hero-card--main {
    width: 100%;
    position: relative;
    z-index: 2;
}
.hero-card--main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.hero-card--stat {
    position: absolute;
    bottom: -32px;
    left: -32px;
    z-index: 3;
    background: var(--white);
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 4px 24px rgba(30, 58, 95, 0.1);
    border: 1px solid var(--gray-100);
}
.hero-card--stat .stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--navy);
    line-height: 1;
}
.hero-card--stat .stat-label {
    font-size: 0.75rem;
    color: var(--gray-400);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-card--accent {
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: 3;
    background: var(--navy);
    color: var(--white);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.2);
}
.hero-card--accent svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
}
.hero-card--accent span {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
}

/* ─── Section shared ─── */
.section-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 64px;
}
.section-header h2 {
    margin-bottom: 16px;
}
.section-header p {
    color: var(--gray-600);
    font-size: 1rem;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--gray-100);
    border: 1px solid var(--gray-100);
}

.service-card {
    background: var(--white);
    padding: 48px 40px;
    transition: all 0.4s var(--ease);
    position: relative;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.4s var(--ease);
}
.service-card:hover::before {
    width: 100%;
}
.service-card:hover {
    background: var(--off-white);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    color: var(--navy);
}
.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.75;
}

/* ─── About ─── */
.about {
    padding: 100px 0;
    background: var(--off-white);
}

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

.about-images {
    position: relative;
    min-height: 560px;
}

.about-img {
    border-radius: 4px;
    overflow: hidden;
    position: absolute;
}
.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-img--primary {
    width: 75%;
    top: 0;
    left: 0;
    box-shadow: 0 8px 40px rgba(30, 58, 95, 0.1);
}
.about-img--primary img {
    height: 560px;
}

.about-img--secondary {
    width: 55%;
    bottom: 0;
    right: 0;
    box-shadow: 0 8px 40px rgba(30, 58, 95, 0.1);
    border: 4px solid var(--off-white);
}
.about-img--secondary img {
    height: 240px;
}

.about-accent-line {
    position: absolute;
    bottom: 80px;
    left: -24px;
    width: 80px;
    height: 1px;
    background: var(--gold);
}

.about-content {
    max-width: 480px;
}

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

.about-content > p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 32px 0;
    padding: 24px 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.value-item::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    flex-shrink: 0;
}

.value-label {
    font-size: 0.875rem;
    color: var(--gray-800);
    letter-spacing: 0.02em;
}

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

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

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

.gallery-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.gallery-item:hover img {
    transform: scale(1.03);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 58, 95, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 28px;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay span {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--white);
    font-style: italic;
}

/* ─── CTA ─── */
.cta {
    padding: 100px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(200, 164, 94, 0.15);
    pointer-events: none;
}
.cta::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(200, 164, 94, 0.1);
    pointer-events: none;
}

.cta-card {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.cta-card .eyebrow {
    color: var(--gold);
    margin-bottom: 20px;
}
.cta-card h2 {
    color: var(--white);
    margin-bottom: 20px;
}
.cta-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}
.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── Contact ─── */
.contact {
    padding: 100px 0;
    background: var(--off-white);
}

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

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 36px;
}

.info-icon {
    width: 24px;
    height: 24px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.info-label {
    display: block;
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 4px;
}

.info-value {
    font-size: 0.9375rem;
    color: var(--gray-800);
    line-height: 1.7;
}
.info-value a {
    color: var(--navy);
    border-bottom: 1px solid var(--gray-200);
    transition: border-color 0.2s;
}
.info-value a:hover {
    border-color: var(--gold);
}

.contact-form {
    background: var(--white);
    padding: 48px;
    border: 1px solid var(--gray-100);
    border-radius: 4px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--gray-800);
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-radius: 2px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.06);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    margin-top: 16px;
    padding: 16px 20px;
    background: var(--gold-pale);
    border: 1px solid var(--gold);
    color: var(--navy);
    font-size: 0.875rem;
    border-radius: 2px;
    text-align: center;
}

/* ─── Footer ─── */
.footer {
    background: var(--navy-deep);
    padding: 48px 0;
    border-top: 1px solid rgba(200, 164, 94, 0.15);
}

.footer-inner {
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand .logo-mark {
    background: var(--gold);
}
.footer-brand .logo-mark::before {
    border-color: var(--navy-deep);
}

.footer-copy {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 8px;
}

.footer-address {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ─── Animations ─── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

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

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
        z-index: 110;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--off-white);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        padding: 40px;
        box-shadow: -8px 0 32px rgba(0,0,0,0.1);
        transition: right 0.4s var(--ease);
    }
    .nav-links.open {
        right: 0;
    }

    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
        min-height: auto;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero-visual {
        min-height: 360px;
        order: -1;
    }
    .hero-card--main img {
        height: 320px;
    }
    .hero-card--stat {
        bottom: -20px;
        left: 16px;
        padding: 18px 22px;
    }
    .hero-card--accent {
        top: -12px;
        right: 16px;
        padding: 12px 16px;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-images {
        min-height: 400px;
        order: -1;
    }
    .about-img--primary img {
        height: 400px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item img {
        height: 320px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .contact-form {
        padding: 32px 24px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    .hero-actions {
        flex-direction: column;
    }
    .hero-actions .btn {
        justify-content: center;
    }
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
