@font-face {
    font-family: "Itim";
    src: url("fonts/Itim-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: block;
}

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

:root {
    --black: #111111;
    --white: #ffffff;
    --muted: #888888;
    --border: #e8e8e8;
    --font: "DM Sans", system-ui, sans-serif;
}

body {
    font-family: var(--font);
    background: var(--white);
    color: var(--black);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1.5rem 2rem;
}

/* ── Header ── */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    z-index: 100;
    border-bottom: 1px solid var(--border);
}

.logo {
    font-family: "Itim", cursive;
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1;
}

/* ── Main ── */
main {
    width: 100%;
    max-width: 720px;
    margin-top: 64px;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ── Dividers ── */
.card-divider {
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        var(--border) 20%,
        var(--border) 80%,
        transparent
    );
    margin: 0;
}

/* ── Services ── */
.card-services {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.service {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    padding: 0 1rem;
}

.service i {
    font-size: 2rem;
    color: var(--black);
}

.service span {
    font-family: "Itim", cursive;
    font-size: 1.1rem;
    font-weight: 400;
    text-align: center;
    color: var(--black);
}

.service-divider {
    width: 1px;
    height: 4rem;
    background: var(--border);
    flex-shrink: 0;
    margin-top: 0.5rem;
}

/* ── Middle ── */
.card-middle {
    padding: 1.5rem 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.body-text {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--black);
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
}

/* ── Contact ── */
.card-bottom {
    background: var(--black);
    border-radius: 50%;
    width: 440px;
    height: 440px;
    align-self: center;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 2.5rem 0 1rem;
}

.contact-cta {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.4rem;
}

.contact-email {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--white);
    text-decoration: none;
}

.contact-email:hover {
    text-decoration: underline;
}

.contact-phones {
    display: flex;
    gap: 2rem;
    font-size: 1.05rem;
    font-weight: 300;
    margin-top: 0.4rem;
}

.contact-phones a {
    color: #cccccc;
    text-decoration: none;
}

.contact-phones a:hover {
    text-decoration: underline;
}

.contact-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.4rem;
}

.contact-social a {
    color: var(--white);
    font-size: 3rem;
    text-decoration: none;
}

.contact-social a:hover {
    opacity: 0.5;
}

/* ── Badge ── */
.badge {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 100px;
    height: 100px;
    background: var(--black);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.68rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.02em;
}

/* ── Mobile ── */
@media (max-width: 540px) {
    body {
        padding: 0 1.25rem 5rem;
    }

    .card-services {
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
        padding-bottom: 1.5rem;
    }

    .service {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        padding: 0;
        width: 100%;
        max-width: 220px;
    }

    .service i {
        font-size: 1.4rem;
        width: 24px;
        text-align: center;
    }

    .service span {
        font-size: 1rem;
        text-align: left;
    }

    .service-divider {
        display: none;
    }

    .card-middle {
        padding: 1.5rem 0 0.5rem;
    }

    .body-text {
        font-size: 1rem;
    }

    .card-bottom {
        width: min(75vw, 340px);
        height: min(75vw, 340px);
        padding: 1rem;
        margin: 1rem 0;
        gap: 0.3rem;
    }

    .contact-email {
        font-size: clamp(0.9rem, 4.5vw, 1.1rem);
    }

    .contact-phones {
        flex-direction: column;
        align-items: center;
        gap: 0.2rem;
        text-align: center;
        font-size: clamp(0.8rem, 3.8vw, 0.95rem);
    }

    .contact-social a {
        font-size: clamp(2rem, 9vw, 2.5rem);
    }

    .badge {
        width: 76px;
        height: 76px;
        font-size: 0.6rem;
        bottom: 1rem;
        right: 1rem;
    }
}

/* ── Small screens (iPhone SE etc) ── */
@media (max-width: 390px) {
    main {
        padding-top: 1rem;
    }

    .card-services {
        gap: 0.75rem;
        padding-bottom: 1rem;
    }

    .service i {
        font-size: 1.1rem;
    }

    .service span {
        font-size: 0.9rem;
    }

    .card-middle {
        padding: 1rem 0 0.25rem;
    }

    .body-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .card-bottom {
        width: 65vw;
        height: 65vw;
        margin: 0.75rem 0;
        gap: 0.2rem;
    }

    .contact-email {
        font-size: 3.8vw;
    }

    .contact-phones {
        font-size: 3.2vw;
    }

    .contact-social a {
        font-size: 7.5vw;
    }

    .badge {
        width: 60px;
        height: 60px;
        font-size: 0.5rem;
    }
}
