/* CSS Document */
:root {
    --navy: #061f46;
    --navy2: #082b61;
    --orange: #ff6b12;
    --soft: #fff8f1;
    --text: #243044;
    --muted: #667085;
    --white: #ffffff;
    --line: #e9edf3;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}
html {
    scroll-behavior: smooth;
}

.scroll-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(0,0,0,.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: .25s ease;
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--navy);
}
img {
    max-width: 100%;
    display: block;
}

a { color: inherit; }

.wrap {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 22px;
}

/* HERO */
.hero {
    min-height: 620px;
    display: flex;
    align-items: center;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(6,31,70,.96) 0%, rgba(6,31,70,.78) 42%, rgba(255,107,18,.18) 100%),
        url("../images/header.webp") center/cover no-repeat;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 50px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(44px, 7vw, 78px);
    line-height: 1.04;
    margin: 0 0 22px;
    letter-spacing: -2px;
}

.hero p {
    font-size: 20px;
    max-width: 620px;
    margin: 0;
}

.hero-logo {
    background: rgba(255,255,255,.96);
    border-radius: 28px;
    padding: 22px;
    box-shadow: 0 28px 70px rgba(0,0,0,.28);
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
}

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

.btn.secondary {
    border: 2px solid rgba(255,255,255,.85);
    color: var(--white);
}

/* SECTIONS */
section {
    padding: 78px 0;
}

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

h2 {
    color: var(--navy);
    font-size: clamp(34px, 5vw, 48px);
    line-height: 1.08;
    margin: 0 0 22px;
    letter-spacing: -1px;
}

.lead {
    font-size: 19px;
    color: var(--muted);
}

.photo-card {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(6,31,70,.16);
}

/* WHAT WE DO */
.what {
    background: #f7f9fc;
    text-align: center;
}

.cards {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 30px 24px;
    box-shadow: 0 14px 35px rgba(6,31,70,.07);
}

.icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 34px;
    background: #fff0e7;
}

.card:nth-child(2) .icon { background: #edf6ff; }
.card:nth-child(3) .icon { background: #ecf8ec; }
.card:nth-child(4) .icon { background: #fff0f0; }

.card h3 {
    color: var(--navy);
    font-size: 21px;
    margin: 0 0 10px;
}

.card p {
    margin: 0;
    color: var(--muted);
}

/* HELP */
.help {
    background:
        radial-gradient(circle at 12% 20%, rgba(255,255,255,.08), transparent 20%),
        linear-gradient(135deg, var(--navy), var(--navy2));
    color: var(--white);
    text-align: center;
}

.help h2,
.help .lead {
    color: var(--white);
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-top: 34px;
}

.help-item {
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 16px;
    padding: 24px 14px;
    font-weight: 800;
}

.help-item span {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 14px;
    background: var(--white);
    color: var(--orange);
    border-radius: 50%;
    font-size: 32px;
}

/* FOLLOW */
.follow {
    text-align: center;
    background: var(--white);
}

.instagram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--orange);
    font-weight: 900;
    font-size: 28px;
    text-decoration: none;
    margin: 8px 0 28px;
}

.insta-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.insta-strip img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
}

/* FINAL */
.final {
    background: linear-gradient(135deg, var(--orange), #ff8a2b);
    color: var(--white);
}

.final-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
}

.final h2 {
    color: var(--white);
    margin-bottom: 10px;
}

.final p {
    margin: 0;
    max-width: 650px;
}

/* FOOTER */
footer {
    background: #03152f;
    color: rgba(255,255,255,.76);
    padding: 24px 0;
    font-size: 14px;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero {
        min-height: auto;
        padding: 70px 0;
    }

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

    .hero-logo {
        max-width: 360px;
    }

    .cards,
    .help-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .insta-strip {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 560px) {
    section {
        padding: 56px 0;
    }

    .hero h1 {
        letter-spacing: -1px;
    }

    .cards,
    .help-grid,
    .insta-strip {
        grid-template-columns: 1fr;
    }

    .buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .footer-row {
        flex-direction: column;
        text-align: center;
    }
}
.insta-strip a {
    display: block;
    overflow: hidden;
    border-radius: 12px;
}

.insta-strip a img {
    transition: transform .25s ease, filter .25s ease;
}

.insta-strip a:hover img {
    transform: scale(1.05);
    filter: brightness(.9);
}

.gdesc-inner,
.gslide-title,
.gslide-desc {
    display: none !important;
}