/* ================================
   GLOBAL
================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Manrope", sans-serif;
    background-color: #f7f5ef;
    color: #0b2638;
}

a {
    color: inherit;
    text-decoration: none;
}

.services-intro,
.why-full-sail,
.featured-work,
.process-section,
.packages-section {
    border-top: 2px solid #e2e0da;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid #123b55;
    outline-offset: 4px;
}





/* ================================
   NAVIGATION
================================ */

header {
    width: 100%;
    border-bottom: 1px solid #e2e0da;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #f7f5ef;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;
}

.logo {
    display: block;
}

.logo img {
    width: 250px;
    height: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 32px;
    display: flex;
    gap: 32px;
    margin-left: auto;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
}

.nav-links a:hover {
    color: #5f6b73;
}

.nav-cta {
    background-color: #0b2638;
    color: #f7f5ef;

    padding: 12px 20px;
    border-radius: 3px;

    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-left: 32px;
}

.nav-cta:hover {
    background-color: #0d2f44;
}

.nav-links a:focus-visible,
.nav-cta:focus-visible {
    outline: 2px solid #123b55;
    outline-offset: 4px;
}



/* ================================
   HERO
================================ */

.hero {
    max-width: 1200px;
    min-height: 80vh;

    margin: 0 auto;
    padding: 80px 40px;

    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 40px;
}

.hero-content {
    max-width: 750px;
}

.eyebrow {
    margin-bottom: 20px;

    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

h1 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(3rem, 4.5vw, 4.5rem);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 32px;
    max-width: 750px;
}

.hero-description {
    max-width: 550px;

    font-size: 1.1rem;
    line-height: 1.7;

    margin-bottom: 36px;
}


/* ================================
   BUTTONS
================================ */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.button {
    display: inline-block;

    padding: 14px 22px;

    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.button-primary {
    background-color: #0b2638;
    color: #f7f5ef;
}

.button-primary:hover {
    background-color: #0d2f44;
}

.button-secondary {
    border: 1px solid #0b2638;
}

.button-secondary:hover {
    background-color: #e2e0da;
}

.button-primary:focus-visible {
    outline: 2px solid #f7f5ef;
    outline-offset: 4px;
}

.button-secondary:focus-visible {
    outline: 2px solid #123b55;
    outline-offset: 4px;
}

/* ================================
   HERO VISUAL
================================ */

.hero-visual {
    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.sail-mark {
    width: 390px;
    height: auto;
}


/* ================================
   FOOTER
================================ */

footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;

    font-size: 0.8rem;
}

.hamburger {
    display: none;
}



/* ================================
   SERVICES INTRO
================================ */

.services-intro {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 40px;
}

.section-heading {
    max-width: 700px;
}

.section-heading h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 3rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.service-card {
    padding: 32px;
    border: 1px solid #e2e0da;
    background-color: #f7f5ef;

    display: flex;
    flex-direction: column;
}

.service-card h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.4rem;
    line-height: 1.2;
    margin-bottom: 16px;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #242a30;
    margin-bottom: 24px;
}

.service-card a {
    font-family: "Manrope", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #123b55;
    text-decoration: none;
    margin-top: auto;
}

.service-card a:hover {
    color: #5f6b73;
}

.section-heading  > p:not(.eyebrow) {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #242A30;
    max-width: 650px;
}


/* ================================
   WHY FULL SAIL
================================ */

.why-full-sail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 40px;

    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 100px;
    align-items: start;
}

.why-content h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 3rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    max-width: 600px;
}

.why-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #242a30;
    max-width: 600px;
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.why-number {
    display: block;
    font-size: 0.9rem;
    line-height: 1;
    color: #5f6b73;
    margin-bottom: 12px;
}

.why-point h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.4rem;
    line-height: 1.2;
    margin-bottom: 12px;
}

.why-point p {
    font-size: 1rem;
    line-height: 1.6;
    color: #242a30;
    max-width: 500px;
}


/* ================================
   FEATURED WORK
================================ */

.featured-work {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 40px;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 64px 24px;
    margin-top: 60px;
}

.work-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: #e2e0da;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.work-info {
    padding-top: 20px;
}

.work-category {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #5f6b73;
    margin-bottom: 8px;
}

.work-info h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 12px;
}

.work-info a {
    font-family: "Manrope", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #123b55;
    text-decoration: none;
}

.work-info a:hover {
    color: #5f6b73;
}


/* ================================
   PROCESS
================================ */

.process-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 40px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.process-number {
    display: block;
    font-size: 0.9rem;
    line-height: 1;
    color: #5f6b73;
    margin-bottom: 16px;
}

.process-step h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.4rem;
    line-height: 1.2;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 1rem;
    line-height: 1.6;
    color: #242a30;
}


/* ================================
   PACKAGES
================================ */

.packages-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 40px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.package-card {
    padding: 40px 32px;
    border: 1px solid #e2e0da;
    background-color: #f7f5ef;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, border-color 0.2s ease;
    text-decoration: none;
    color: inherit;
}

.package-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #5f6b73;
    margin-bottom: 16px;
}

.package-card h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.8rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.package-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #242a30;
    margin-bottom: 32px;
}

.package-link {
    margin-top: auto;
    font-size: 0.9rem;
    font-weight: 700;
    color: #123b55;
}

.package-card a:hover {
    color: #5f6b73;
}

.featured-package {
    border: 2px solid #123b55;
}

.package-card:hover {
    transform: translateY(-4px);
    border-color: #123b55;
}


/* ================================
   FINAL CTA
================================ */

.final-cta {
    width: 100%;
    padding: 120px 40px;
    background-color: #123b55;
}

.cta-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 3.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin-bottom: 20px;
    max-width: 700px;
}

.cta-content .eyebrow {
    color: #ffffff;
}

.cta-content > p:not(.eyebrow) {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    max-width: 600px;
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    padding: 14px 24px;
    background-color: #f7f5ef;
    color: #123b55;
    font-family: "Manrope", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #e2e0da;
}


/* ================================
   MOBILE
================================ */

@media (max-width: 768px) {

.nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    background-color: #f7f5ef;
    padding: 24px 40px;

    border-bottom: 1px solid #e2e0da;
    width: 100%;
    z-index: 100;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;
}

.nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 32px;
        height: 24px;
        padding: 0;
        border: none;
        background: none;
        cursor: pointer;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #123b55;
    }

    .hamburger.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

.hamburger span {
    transition: transform 0.2s ease, opacity 0.2s ease;
}

    .hero {
        grid-template-columns: 1fr !important;
        min-height: auto;
    }

    .hero-visual {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.05;
    }

    .service-grid {
        grid-template-columns: 1fr !important;
    }

    .why-full-sail {
        grid-template-columns: 1fr !important;
        gap: 48px !important;
    }

    .work-grid {
        grid-template-columns: 1fr !important;
    }

    .process-grid {
        grid-template-columns: 1fr !important;
    }

    .packages-grid {
        grid-template-columns: 1fr !important;
    }

    section:not(.final-cta) h2 {
        font-size: 2.4rem !important;
        line-height: 1.1;
    }


.services-intro,
.why-full-sail,
.featured-work,
.process-section,
.packages-section {
    padding: 72px 24px;
}

.final-cta {
    padding: 80px 24px;
}

.cta-content h2 {
    font-size: 2.8rem;
    line-height: 1.1;
}


}
