@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --lime: #d9dc59;
    --ink: #0b1779;
    --navy: #2f43a7;
    --coral: #df6873;
    --cream: #eae06e;
    --parchment: #fafaf7;
    --snow: #f5f5f0;
    --stone: #e8e6e1;
    --charcoal: #1a1a1a;
    --ash: #5c5c5c;
    --mist: #9a9a9a;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--charcoal);
    background-color: var(--parchment);
    line-height: 1.75;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    line-height: 1.15;
    color: var(--charcoal);
}

h1 {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.75rem;
    font-weight: 500;
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
}

a {
    color: var(--navy);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--coral);
}

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

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

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

.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    background-color: rgba(250, 250, 247, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--stone);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-brand img {
    height: 44px;
    width: auto;
    border-radius: 6px;
}

.nav-brand span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: -0.01em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--ash);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    position: relative;
    padding-bottom: 4px;
}

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

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

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

.nav-social {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.nav-social a {
    font-size: 1.1rem;
    color: var(--ash);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--stone);
    transition: all 0.3s ease;
}

.nav-social a:hover {
    color: var(--white);
    background-color: var(--ink);
    border-color: var(--ink);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--charcoal);
    cursor: pointer;
    padding: 0.5rem;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    background-color: var(--parchment);
    position: relative;
}

.hero .container-wide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.hero-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    filter: saturate(0.85);
    transition: transform 0.8s ease;
}

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

.hero-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid var(--stone);
    border-radius: 4px;
    z-index: -1;
    pointer-events: none;
}

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

.hero-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--coral);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background-color: var(--coral);
}

.hero h1 {
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 300;
}

.hero h1 strong {
    font-style: normal;
    font-weight: 600;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-style: italic;
    color: var(--ash);
    line-height: 1.5;
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
    border-left: 2px solid var(--lime);
}

.hero-body {
    color: var(--ash);
    line-height: 1.85;
    margin-bottom: 1.75rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-dark {
    background-color: var(--ink);
    color: var(--white);
}

.btn-dark:hover {
    background-color: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 23, 121, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: var(--charcoal);
    border: 1px solid var(--stone);
}

.btn-outline:hover {
    border-color: var(--ink);
    color: var(--ink);
    transform: translateY(-2px);
}

.divider-line {
    width: 60px;
    height: 1px;
    background-color: var(--coral);
    margin: 3rem 0;
}

.section {
    padding: 7rem 0;
    position: relative;
}

.section-alt {
    background-color: var(--white);
}

.section-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--coral);
    margin-bottom: 1.5rem;
}

.section-header {
    margin-bottom: 4rem;
    max-width: 640px;
}

.section-header h2 {
    margin-bottom: 1.25rem;
}

.section-header .lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--ash);
    line-height: 1.6;
}

.asymmetric-layout {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 4rem;
    align-items: start;
}

.asymmetric-layout-reverse {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 4rem;
    align-items: start;
}

.section-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.section-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: saturate(0.85);
    transition: transform 0.7s ease;
}

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

.section-image::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: -12px;
    width: 80px;
    height: 80px;
    border-bottom: 1px solid var(--lime);
    border-left: 1px solid var(--lime);
    pointer-events: none;
}

.body-text {
    color: var(--ash);
    line-height: 1.85;
    margin-bottom: 1.5rem;
}

.body-text strong {
    color: var(--charcoal);
    font-weight: 500;
}

.quote-block {
    margin: 3rem 0;
    padding: 2rem 2.5rem;
    background-color: var(--snow);
    border-left: 3px solid var(--lime);
    position: relative;
}

.quote-block p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.quote-block cite {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--coral);
    font-weight: 500;
}

.quote-block::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    width: 40px;
    height: 40px;
    border-top: 1px solid var(--lime);
    border-left: 1px solid var(--lime);
    pointer-events: none;
}

.cta-section {
    background-color: var(--ink);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section h3 {
    color: var(--white);
    font-size: 2.25rem;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 1.25rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background-color: var(--lime);
    color: var(--ink);
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-cta-primary:hover {
    background-color: var(--cream);
    color: var(--ink);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-cta-secondary:hover {
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--white);
    transform: translateY(-2px);
}

.site-footer {
    background-color: var(--charcoal);
    color: var(--white);
    padding: 0;
}

.footer-main {
    padding: 5rem 3rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-brand img {
    height: 56px;
    width: auto;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.footer-brand h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    font-style: italic;
}

.footer-col h5 {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--lime);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--lime);
    padding-left: 0.5rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact i {
    font-size: 1rem;
    color: var(--lime);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    line-height: 1.5;
    word-break: break-all;
}

.footer-contact a:hover {
    color: var(--lime);
}

.footer-newsletter {
    margin-top: 1.5rem;
}

.footer-newsletter p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-newsletter a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--lime);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.6rem 1.25rem;
    border: 1px solid rgba(217, 220, 89, 0.3);
    transition: all 0.3s ease;
}

.footer-newsletter a:hover {
    background-color: var(--lime);
    color: var(--ink);
    padding-left: 1.25rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.75rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
    letter-spacing: 0.05em;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--lime);
    border-color: var(--lime);
    color: var(--ink);
}

@media (max-width: 991px) {
    .top-nav {
        padding: 0 1.5rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background-color: rgba(250, 250, 247, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--stone);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero .container-wide {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-image img {
        height: 360px;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 4rem;
    }

    .asymmetric-layout,
    .asymmetric-layout-reverse {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .section {
        padding: 4rem 0;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        padding: 3rem 2rem 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem 2rem;
    }
}

@media (max-width: 575px) {
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.85rem;
    }

    .hero-image img {
        height: 280px;
    }

    .section-image img {
        height: 280px;
    }

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

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

    .footer-main {
        grid-template-columns: 1fr;
        padding: 2.5rem 1.5rem 1.5rem;
        gap: 2rem;
    }

    .footer-bottom {
        padding: 1.25rem 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .top-nav {
        padding: 0 1rem;
    }

    .nav-brand span {
        display: none;
    }
}
