:root {
    --bg: #f6f6f6;
    --surface: #ffffff;
    --text: #3c3c3c;
    --yellow: #f3e449;
    --pink: #f7a9ce;
    --orange: #ff8c2a;
    --blue: #45b5e6;
    --green: #75cf55;
    --purple: #b878d6;
    --line: #ebebeb;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', system-ui, sans-serif;
    color: var(--text);
    background: var(--bg);
}

.topbar {
    background: var(--purple);
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 8px 12px;
}

header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    font-family: 'Baloo 2', cursive;
    font-weight: 800;
    font-size: clamp(1.3rem, 2.2vw, 1.7rem);
    color: #d08f00;
}

.logo-image {
    height: clamp(34px, 3.2vw, 46px);
    width: auto;
    max-width: 150px;
    object-fit: contain;
    display: block;
}

.logo-text {
    white-space: nowrap;
}

nav {
    display: flex;
    gap: 1rem;
}

nav a {
    color: var(--text);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
}

nav a:hover {
    color: #d08f00;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.2px;
    background: linear-gradient(180deg, #fff57a 0%, #ffe858 100%);
    color: #5e5423;
    border: 2px solid #f3df53;
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 0.9rem;
    box-shadow: 0 8px 16px rgba(219, 191, 63, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(219, 191, 63, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    filter: saturate(1.05);
}

.header-cta:focus-visible {
    outline: 3px solid rgba(255, 170, 0, 0.35);
    outline-offset: 2px;
}

main {
    overflow: hidden;
}

.hero {
    position: relative;
    min-height: calc(80vh - 72px);
    padding: 48px 16px 24px;
    display: grid;
    place-items: center;
}

.hero-wrap {
    width: min(1120px, 100%);
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 16px;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

.hero-copy {
    background: var(--surface);
    border: 2px solid #efefef;
    border-radius: 24px;
    padding: clamp(22px, 3.5vw, 36px);
    box-shadow: 0 16px 40px rgba(28, 28, 28, 0.09);
}

.hero-media {
    border-radius: 24px;
    min-height: 380px;
    border: 2px solid #efefef;
    background-image: linear-gradient(135deg, rgba(247, 169, 206, 0.25), rgba(69, 181, 230, 0.2)), url('https://images.unsplash.com/photo-1503454537195-1dcabb73ffb9?auto=format&fit=crop&w=1000&q=80');
    background-size: cover;
    background-position: center;
    box-shadow: 0 16px 40px rgba(28, 28, 28, 0.09);
}

.shape {
    position: absolute;
    width: clamp(56px, 10vw, 110px);
    height: clamp(56px, 10vw, 110px);
    border-radius: 10px;
    opacity: 0.95;
}

.shape-pink {
    background: var(--pink);
    top: 7%;
    left: -20px;
}

.shape-blue {
    background: var(--blue);
    top: 35%;
    left: -26px;
}

.shape-green {
    background: var(--green);
    top: 10%;
    right: -16px;
}

.shape-orange {
    background: var(--orange);
    top: 40%;
    right: -20px;
}

.kicker {
    display: inline-block;
    background: #ffe8f4;
    border: 2px solid #ffc5df;
    border-radius: 999px;
    padding: 7px 14px;
    font-weight: 800;
    color: #aa4d78;
    margin-bottom: 14px;
}

h1 {
    font-family: 'Baloo 2', cursive;
    font-weight: 800;
    font-size: clamp(2rem, 5.6vw, 3.9rem);
    line-height: 0.98;
    letter-spacing: 0.3px;
    color: var(--yellow);
    text-shadow: -2px -2px 0 #6f6234, 2px -2px 0 #6f6234, -2px 2px 0 #6f6234, 2px 2px 0 #6f6234;
    margin-bottom: 14px;
}

.subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.55;
    max-width: 760px;
    margin: 0;
}

.highlight {
    width: fit-content;
    margin: 20px auto;
    padding: 10px 16px;
    border-radius: 10px;
    font-family: 'Baloo 2', cursive;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: #2f9bc9;
    background: #fff15e;
}

.quick-grid {
    width: min(1120px, 100%);
    margin: 18px auto 0;
    padding: 0 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.quick-card {
    background: #fff;
    border: 2px solid var(--line);
    border-radius: 18px;
    padding: 20px;
}

.quick-card h3 {
    font-family: 'Baloo 2', cursive;
    color: #535353;
    margin-bottom: 6px;
    font-size: 1.35rem;
}

.quick-card p {
    font-weight: 600;
    line-height: 1.5;
}

.split-section {
    width: min(1120px, 100%);
    margin: 16px auto 0;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 16px;
}

.split-image {
    border-radius: 20px;
    border: 2px solid var(--line);
    min-height: 360px;
    background-image: linear-gradient(180deg, rgba(117, 207, 85, 0.18), rgba(255, 140, 42, 0.17)), url('https://images.unsplash.com/photo-1516627145497-ae6968895b74?auto=format&fit=crop&w=900&q=80');
    background-size: cover;
    background-position: center;
}

.split-content {
    background: #fff;
    border: 2px solid var(--line);
    border-radius: 20px;
    padding: 24px;
}

.split-content h2 {
    font-family: 'Baloo 2', cursive;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.1;
    color: #515151;
    margin-bottom: 12px;
}

.service-list {
    list-style: none;
    margin: 14px auto 26px;
    width: min(620px, 100%);
    text-align: left;
    display: grid;
    gap: 8px;
}

.service-list li {
    background: #fff;
    border: 1px solid var(--line);
    border-left: 8px solid var(--orange);
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 1.05rem;
    font-weight: 700;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.2px;
    border-radius: 999px;
    padding: 11px 22px;
    border: 2px solid transparent;
    box-shadow: 0 8px 18px rgba(34, 34, 34, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.45);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(34, 34, 34, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.45);
    filter: saturate(1.05);
}

.btn:active {
    transform: translateY(0);
}

.btn:focus-visible {
    outline: 3px solid rgba(69, 181, 230, 0.35);
    outline-offset: 2px;
}

.btn-primary {
    background: linear-gradient(180deg, #44de7d 0%, #25d366 100%);
    border-color: #22be5d;
    color: #083318;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: linear-gradient(180deg, #ffe4f0 0%, #ffd8ea 100%);
    border-color: #f7a9ce;
    color: #7a2e56;
    box-shadow: 0 10px 20px rgba(247, 169, 206, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.section {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: 16px 16px 56px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.panel {
    background: #fff;
    border-radius: 20px;
    border: 2px solid var(--line);
    padding: 24px;
}

.panel h2 {
    font-family: 'Baloo 2', cursive;
    font-size: clamp(1.4rem, 3vw, 2rem);
    line-height: 1.1;
    color: #515151;
    margin-bottom: 10px;
}

.panel p {
    line-height: 1.6;
    font-weight: 600;
}

.location {
    background: linear-gradient(180deg, #fff7cc 0%, #fff2a8 100%);
    border-color: #f2dc69;
}

.address {
    margin-top: 10px;
    font-family: 'Baloo 2', cursive;
    font-size: clamp(1.4rem, 3.8vw, 2.2rem);
    line-height: 1.05;
    color: #444;
}

.small {
    margin-top: 8px;
    font-size: 0.95rem;
}

.cta-band {
    width: min(1120px, 100%);
    margin: 0 auto 54px;
    padding: 28px 16px;
    border-radius: 24px;
    background: linear-gradient(90deg, #ffd8ea 0%, #fff7cc 48%, #d5f5ca 100%);
    border: 2px solid #f0e7bf;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.cta-band h2 {
    font-family: 'Baloo 2', cursive;
    font-size: clamp(1.3rem, 2.6vw, 1.95rem);
    color: #4f4f4f;
    line-height: 1.15;
}

footer {
    text-align: center;
    padding: 16px;
    background: #404040;
    color: #fff;
    font-size: 0.92rem;
}

@media (max-width: 900px) {
    .hero-wrap,
    .split-section,
    .section {
        grid-template-columns: 1fr;
    }

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

    .hero-media {
        min-height: 280px;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .logo-image {
        height: 34px;
        max-width: 120px;
    }

    .logo-text {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .hero {
        padding-top: 26px;
    }

    .hero-content {
        border-radius: 20px;
    }

    .service-list li {
        font-size: 1rem;
    }

    .shape {
        opacity: 0.55;
    }

    .cta-band {
        margin-bottom: 34px;
    }
}