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

:root {
    --navy: #0A2342;
    --navy-light: #1A3A5C;
    --mint: #5FB8A5;
    --mint-light: #7EC8B8;
    --mint-pale: #E8F5F1;
    --white: #FFFFFF;
    --off-white: #FAFBFC;
    --gray-50: #F8FAFB;
    --gray-100: #F0F4F6;
    --gray-200: #E2E8EC;
    --gray-300: #C8D3DA;
    --gray-400: #9AAFB8;
    --gray-500: #6B8A96;
    --gray-600: #4A6670;
    --gray-700: #2D4A54;
    --gray-800: #1A3038;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.7;
    font-size: 15px;
    overflow-x: hidden;
}

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

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

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

/* ── Typography ── */
.section-eyebrow {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.15;
    color: var(--navy);
    letter-spacing: -0.01em;
}

.section-title--center {
    text-align: center;
}

.section-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-600);
    max-width: 520px;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 32px;
    border: 1px solid transparent;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.35s var(--ease-out);
    white-space: nowrap;
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.btn-primary:hover {
    background: var(--navy-light);
    border-color: var(--navy-light);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-1px);
}

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

.btn-outline-light:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 14px;
}

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

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    border-bottom: 1px solid var(--gray-200);
    transition: box-shadow 0.3s ease;
}

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

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

.nav-logo {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 20px;
    color: var(--navy);
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle-line {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--navy);
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.nav-toggle.active .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

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

.nav-links a {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-600);
    transition: color 0.25s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--mint);
    transition: width 0.3s var(--ease-out);
}

.nav-links a:hover {
    color: var(--navy);
}

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

.nav-cta {
    font-size: 12px !important;
    font-weight: 500 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase;
    color: var(--white) !important;
    background: var(--navy);
    padding: 10px 24px;
    transition: background 0.25s ease !important;
}

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

.nav-cta:hover {
    background: var(--navy-light) !important;
    color: var(--white) !important;
}

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 72px;
    background: var(--white);
}

.hero-inner {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    align-items: center;
    min-height: calc(100vh - 72px);
}

.hero-content {
    padding: 60px 60px 60px 0;
}

.hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 24px;
    font-weight: 400;
}

.hero-headline {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

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

.hero-body {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-500);
    max-width: 440px;
    margin-bottom: 40px;
}

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

.hero-image-wrap {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid var(--mint);
    opacity: 0.4;
    pointer-events: none;
}

.hero-divider {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.hero-divider::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--gray-300);
}

/* ── Intro ── */
.intro {
    padding: 120px 0;
    background: var(--white);
}

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

.intro-text .section-title {
    margin-bottom: 24px;
}

.intro-text .section-body {
    max-width: 100%;
    margin-bottom: 48px;
}

.intro-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    padding: 40px 0;
}

.stat {
    flex: 1;
    text-align: center;
    padding: 0 24px;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 42px;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-500);
    font-weight: 400;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--gray-200);
}

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

.services .section-eyebrow,
.services .section-title {
    text-align: center;
    margin-bottom: 12px;
}

.services .section-title {
    margin-bottom: 64px;
}

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

.service-card {
    background: var(--white);
    padding: 48px 36px;
    transition: all 0.4s var(--ease-out);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--mint);
    transition: width 0.4s var(--ease-out);
}

.service-card:hover {
    background: var(--gray-50);
}

.service-card:hover::before {
    width: 100%;
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--mint);
}

.service-icon svg {
    stroke: var(--mint);
}

.service-name {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.service-desc {
    font-size: 14px;
    line-height: 1.75;
    color: var(--gray-500);
}

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

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

.about-image-col img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

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

.about-content .section-body {
    max-width: 100%;
    margin-bottom: 20px;
}

.about-content .section-body:last-of-type {
    margin-bottom: 40px;
}

.about-signature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.about-signature-text {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 300;
    font-size: 18px;
    color: var(--navy);
    letter-spacing: 0.02em;
}

/* ── Gallery ── */
.gallery {
    padding: 120px 0;
    background: var(--gray-50);
}

.gallery .section-eyebrow,
.gallery .section-title {
    text-align: center;
    margin-bottom: 12px;
}

.gallery .section-title {
    margin-bottom: 64px;
}

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

.gallery-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease-out);
}

.gallery-item:nth-child(1) img,
.gallery-item:nth-child(4) img {
    height: 500px;
}

.gallery-item:nth-child(2) img,
.gallery-item:nth-child(3) img,
.gallery-item:nth-child(5) img,
.gallery-item:nth-child(6) img {
    height: 320px;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10,35,66,0);
    transition: background 0.4s ease;
    pointer-events: none;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-item:hover::after {
    background: rgba(10,35,66,0.08);
}

/* ── Testimonials ── */
.testimonials {
    padding: 120px 0;
    background: var(--white);
}

.testimonials .section-eyebrow,
.testimonials .section-title {
    text-align: center;
    margin-bottom: 12px;
}

.testimonials .section-title {
    margin-bottom: 64px;
}

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

.testimonial-card {
    padding: 40px 32px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    transition: all 0.35s var(--ease-out);
    position: relative;
}

.testimonial-card:hover {
    border-color: var(--mint);
    box-shadow: 0 8px 40px rgba(95,184,165,0.08);
    transform: translateY(-2px);
}

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

.testimonial-text {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: var(--navy);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-400);
    font-weight: 400;
}

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

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(95,184,165,0.1);
    border-radius: 50%;
    pointer-events: none;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(95,184,165,0.08);
    border-radius: 50%;
    pointer-events: none;
}

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

.cta .section-eyebrow {
    color: var(--mint);
    margin-bottom: 20px;
}

.cta-headline {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-body {
    font-size: 17px;
    color: rgba(255,255,255,0.6);
    max-width: 480px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

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

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

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

.contact-info .section-title {
    margin-bottom: 40px;
}

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

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

.contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 4px;
    font-weight: 400;
}

.contact-item span,
.contact-item a {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.6;
}

.contact-item a:hover {
    color: var(--mint);
}

/* ── Form ── */
.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 48px;
}

.contact-form-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 32px;
}

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

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

.form-group label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 8px;
    font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid var(--gray-200);
    background: transparent;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: var(--navy);
    outline: none;
    transition: border-color 0.25s ease;
    border-radius: 0;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: var(--mint);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-300);
}

.form-group select {
    cursor: pointer;
    color: var(--gray-400);
}

.form-group select option {
    color: var(--navy);
}

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

.form-success {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 16px 0;
    font-size: 14px;
    color: var(--mint);
    font-weight: 400;
    margin-top: 16px;
}

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

/* ── Footer ── */
.footer {
    background: var(--navy);
    padding: 60px 0 40px;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 20px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.footer-brand p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
}

.footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    transition: color 0.25s ease;
}

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

.footer-copy p {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

/* ── Scroll Reveal (progressive enhancement) ── */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    }

    .reveal.revealed {
        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; }
}

/* ── Mobile Navigation ── */
@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 32px 24px;
        gap: 24px;
        border-bottom: 1px solid var(--gray-200);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.35s var(--ease-out);
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-links a {
        font-size: 13px;
    }

    .nav-cta {
        display: inline-block !important;
    }
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .hero-content {
        padding: 0 0 48px 0;
        text-align: center;
    }

    .hero-body {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

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

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

    .intro-stats {
        flex-direction: column;
        gap: 24px;
        padding: 40px 32px;
    }

    .stat-divider {
        width: 48px;
        height: 1px;
    }

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

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

    .gallery-item:nth-child(1) img,
    .gallery-item:nth-child(4) img {
        height: 320px;
    }

    .gallery-item:nth-child(n) img {
        height: 260px;
    }

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

    .contact-form-wrap {
        padding: 32px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .about-image-col img {
        height: 400px;
    }
}

@media (max-width: 600px) {
    .hero-content {
        padding: 0 0 40px 0;
    }

    .hero-headline {
        font-size: 32px;
    }

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

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

    .gallery-item img {
        height: 280px !important;
    }

    .btn-lg {
        padding: 16px 28px;
        font-size: 13px;
    }
}
