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

body {
    font-family: 'Nunito', Arial, sans-serif;
    background-color: #f5f0e8;
    color: #333;
    line-height: 1.6;
}

nav {
    background: #ECDFC8;
    padding: 0 20px;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 180px;
}

.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo {
    height: 170px;
    width: auto;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
    z-index: 101;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #2b4c7e;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    align-items: center;
}

nav ul li {
    margin: 0;
}

nav a {
    color: #2b4c7e;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: color 0.3s ease;
    display: inline-block;
}

nav a:hover,
nav a[aria-current="page"] {
    color: #d56f96;
}

.nav-cta {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white !important;
    padding: 10px 22px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 800;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
}

.nav-cta:hover {
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.5);
}

.nav-instagram,
.mobile-instagram-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-instagram svg,
.mobile-instagram-btn svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.mobile-instagram-btn {
    display: none;
}

.nav-overlay {
    display: none;
}

.hero {
    min-height: 520px;
    background:
        linear-gradient(135deg, rgba(43, 76, 126, 0.78), rgba(216, 111, 150, 0.45)),
        url('/hero.jpg') center/cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
    color: white;
}

.hero h1 {
    font-family: 'Baloo 2', cursive;
    font-size: clamp(42px, 7vw, 78px);
    line-height: 1.02;
    max-width: 980px;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.hero h1 span {
    color: #ffd86b;
}

.hero p {
    max-width: 780px;
    margin-top: 18px;
    font-size: 22px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hero-actions {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
}

.cta-button.secondary {
    background: white;
    color: #2b4c7e;
}

.section {
    padding: 72px 24px;
}

.section.alt {
    background: #fffaf0;
}

.section-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.eyebrow {
    color: #d56f96;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 13px;
    margin-bottom: 8px;
}

h2 {
    font-family: 'Baloo 2', cursive;
    color: #2b4c7e;
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 18px;
}

h3 {
    color: #2b4c7e;
    font-size: 22px;
    margin-bottom: 8px;
}

.lead {
    font-size: 20px;
    max-width: 840px;
    color: #445;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
    margin-top: 28px;
}

.card {
    background: white;
    border-radius: 8px;
    padding: 26px;
    box-shadow: 0 8px 22px rgba(43, 76, 126, 0.08);
    border: 2px solid rgba(216, 111, 150, 0.12);
}

.market-card {
    min-height: 100%;
}

.market-card a,
.text-link {
    color: #2b4c7e;
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 26px;
}

.service-list span {
    background: white;
    border: 2px solid rgba(43, 76, 126, 0.12);
    border-radius: 999px;
    padding: 10px 16px;
    color: #2b4c7e;
    font-weight: 800;
    text-align: center;
}

.proof-band {
    background: #2b4c7e;
    color: white;
    padding: 34px 24px;
}

.proof-band .section-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 18px;
}

.proof-item {
    text-align: center;
    font-size: 18px;
    font-weight: 800;
}

.proof-item strong {
    display: block;
    color: #ffd86b;
    font-family: 'Baloo 2', cursive;
    font-size: 34px;
    line-height: 1;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 34px;
    align-items: start;
}

.note-box {
    background: #ECDFC8;
    border-left: 6px solid #FF6B35;
    padding: 24px;
    border-radius: 8px;
    color: #2b4c7e;
    font-weight: 700;
}

.faq-list {
    display: grid;
    gap: 18px;
    margin-top: 26px;
}

.faq-item {
    background: white;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 6px 16px rgba(43, 76, 126, 0.07);
}

.breadcrumb {
    max-width: 1120px;
    margin: 0 auto;
    padding: 18px 24px 0;
    font-size: 14px;
    color: #5b6170;
}

.breadcrumb a {
    color: #2b4c7e;
    font-weight: 800;
    text-decoration: none;
}

footer {
    background: #2b4c7e;
    color: white;
    text-align: center;
    padding: 42px 24px;
}

footer a {
    color: white;
}

.footer-location-links {
    margin: 18px 0 8px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

.footer-location-links a {
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: white;
    text-decoration: none;
    font-weight: 700;
}

.instagram-link svg {
    width: 22px;
    height: 22px;
    fill: white;
}

@media (max-width: 900px) {
    nav {
        height: 120px;
    }

    .nav-logo {
        height: 110px;
    }

    .mobile-instagram-btn {
        display: inline-flex;
        position: absolute;
        right: 78px;
        top: 40px;
    }

    .hamburger {
        display: flex;
    }

    nav ul {
        position: fixed;
        top: 120px;
        right: -100%;
        width: min(84vw, 340px);
        height: calc(100vh - 120px);
        background: #ECDFC8;
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        transition: right 0.3s ease;
        box-shadow: -4px 0 16px rgba(0, 0, 0, 0.12);
        overflow-y: auto;
    }

    nav ul.active {
        right: 0;
    }

    .nav-overlay.active {
        display: block;
        position: fixed;
        inset: 120px 0 0 0;
        background: rgba(0, 0, 0, 0.35);
        z-index: 90;
    }

    .nav-instagram {
        display: none;
    }

    .hero {
        min-height: 460px;
        padding: 70px 18px;
    }

    .hero p {
        font-size: 18px;
    }

    .section {
        padding: 54px 18px;
    }

    h2 {
        font-size: 34px;
    }

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

@media (max-width: 520px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }
}
