:root {
    --yellow: #fffa4b;
    --magenta: #ce0f68;
    --magenta-dark: #a80c54;
    --ink: #191919;
    --paper: #ffffff;
    --display: "Anton", "Arial Narrow", Impact, sans-serif;
    --body: "Open Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
    --maxw: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--body);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.display {
    font-family: var(--display);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .5px;
    line-height: .95;
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    border: 3px solid currentColor;
    border-radius: 999px;
    padding: .45rem 1.15rem;
    font-family: var(--display);
    text-transform: uppercase;
    font-size: clamp(.95rem, 2.2vw, 1.35rem);
    letter-spacing: 1px;
    white-space: nowrap;
}
.brand-badge .plus {
    width: 1.35em;
    height: 1.35em;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

/* ---------- Top bar ---------- */
.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--magenta);
    color: #fff;
}
.topbar .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 64px;
}
.topbar nav { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.topbar nav a {
    text-decoration: none;
    font-weight: 700;
    font-size: .95rem;
    opacity: .92;
}
.topbar nav a:hover { opacity: 1; text-decoration: underline; }
@media (max-width: 760px) { .topbar nav { display: none; } }

/* ---------- Hero ---------- */
.hero {
    background: var(--yellow);
    position: relative;
    overflow: hidden;
}
.hero .wrap {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 2.5rem;
    align-items: center;
    padding-top: 56px;
    padding-bottom: 56px;
}
.hero h1 {
    font-family: var(--display);
    font-weight: 400;
    text-transform: uppercase;
    font-size: clamp(2.6rem, 6.6vw, 5rem);
    line-height: .92;
    margin: 1.2rem 0 1.4rem;
}
.hero .hl {
    display: inline-block;
    background: var(--magenta);
    color: #fff;
    padding: .04em .35em;
    transform: rotate(-2deg);
}
.hero-figure { position: relative; }
.hero-photo-frame {
    width: 100%;
    max-width: 560px;
    margin-left: auto;
    aspect-ratio: 1;
    border-radius: 999px;
    overflow: hidden;
    border: 12px solid #fff;
    box-shadow: 0 30px 60px rgba(0,0,0,.18);
    background: var(--magenta);
}
.hero-figure .photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pear-badge {
    position: absolute;
    right: -4%;
    bottom: 12%;
    width: clamp(88px, 20vw, 150px);
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 10px 18px rgba(0,0,0,.18));
}
.name-tag {
    position: absolute;
    left: -8px;
    bottom: 38px;
    background: var(--magenta);
    color: #fff;
    font-family: var(--display);
    text-transform: uppercase;
    padding: .5rem 1.3rem;
    border-radius: 12px;
    font-size: clamp(1.1rem, 2.6vw, 1.7rem);
    transform: rotate(-3deg);
    box-shadow: 0 12px 24px rgba(0,0,0,.2);
}
.hero-meta { margin-top: 1.6rem; }
.btn {
    display: inline-block;
    background: var(--magenta);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: .85rem 1.8rem;
    border-radius: 999px;
    transition: transform .12s ease, background .15s ease;
}
.btn:hover { background: var(--magenta-dark); transform: translateY(-2px); }
.btn.ghost { background: transparent; color: var(--ink); border: 3px solid var(--ink); }
.btn.ghost:hover { background: var(--ink); color: #fff; }

@media (max-width: 880px) {
    .hero .wrap { grid-template-columns: 1fr; text-align: left; }
    .hero-figure { max-width: 360px; margin: 0 auto; }
}

/* ---------- Sections ---------- */
section { padding: 72px 0; }
.section-title {
    font-family: var(--display);
    text-transform: uppercase;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1;
    margin: 0 0 2.2rem;
}
.eyebrow {
    display: inline-block;
    background: var(--magenta);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: .25rem .8rem;
    border-radius: 6px;
    font-size: .8rem;
    margin-left: .6rem;
    vertical-align: middle;
}

.band-yellow { background: var(--yellow); }
.band-magenta { background: var(--magenta); color: #fff; }
.band-ink { background: var(--ink); color: #fff; }

/* ---------- Story ---------- */
.story .wrap {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 3rem;
    align-items: start;
}
.story-photo {
    border-radius: 999px;
    border: 10px solid var(--magenta);
    aspect-ratio: 1;
    object-fit: cover;
    width: 100%;
    background: #ddd;
}
.story p { font-size: 1.08rem; margin: 0 0 1.1rem; }
.social { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.6rem; }
.social a {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: var(--ink);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: .7rem 1.2rem;
    border-radius: 999px;
}
.social a:hover { background: var(--magenta); }
.social svg { width: 20px; height: 20px; fill: currentColor; }
@media (max-width: 760px) {
    .story .wrap { grid-template-columns: 1fr; }
    .story-photo { max-width: 240px; }
}

/* ---------- Team ---------- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem 1.4rem;
}
.member { text-align: center; }
.member .m-photo {
    position: relative;
    width: 100%;
    max-width: 190px;
    margin: 0 auto .9rem;
}
.member .m-num {
    left: auto;
    right: -6px;
    bottom: 14px;
    padding: .25rem .9rem;
    font-size: 1.25rem;
    border-radius: 10px;
}
.member .frame {
    width: 100%;
    margin: 0 auto;
    aspect-ratio: 1;
    border-radius: 999px;
    overflow: hidden;
    border: 6px solid #fff;
    box-shadow: 0 10px 26px rgba(0,0,0,.14);
    background: #cfe3f5;
}
.member .frame img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.06);
}
.member .m-name {
    font-family: var(--display);
    text-transform: uppercase;
    font-size: 1.35rem;
    letter-spacing: .4px;
}
.member .m-role { font-size: 1.1rem; opacity: .82; max-width: 220px; margin: .15rem auto 0; }
@media (max-width: 860px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Achievements / plans ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 2.4rem; } }

.num-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.2rem; }
.num-list li { display: grid; grid-template-columns: 44px 1fr; gap: 1rem; align-items: start; }
.num-list .n {
    width: 44px; height: 44px;
    border-radius: 999px;
    border: 3px solid currentColor;
    display: grid; place-items: center;
    font-family: var(--display);
    font-size: 1.3rem;
}
.num-list li p { margin: 0; font-weight: 600; }

.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .95rem; }
.check-list li { display: grid; grid-template-columns: 28px 1fr; gap: .8rem; align-items: start; }
.check-list .tick {
    width: 26px;
    height: 26px;
    margin-top: 2px;
}

/* ---------- Primátor block ---------- */
.primator .wrap { display: grid; grid-template-columns: 1fr 360px; gap: 3rem; align-items: center; }
.primator-photo {
    border-radius: 999px;
    border: 12px solid var(--yellow);
    aspect-ratio: 1;
    object-fit: cover;
    width: 100%;
    background: #cfe3f5;
}
.leaders { display: flex; gap: 1.4rem; flex-wrap: wrap; margin: 1.4rem 0 1.8rem; }
.leader .l-name { font-family: var(--display); text-transform: uppercase; font-size: 1.15rem; }
.leader .l-role { opacity: .82; font-size: .92rem; }
.qr-row { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; margin-top: 1.4rem; }
.qr-row img { width: 116px; height: 116px; border-radius: 12px; border: 6px solid #fff; }
.qr-row a { font-weight: 800; text-decoration: none; border-bottom: 3px solid currentColor; }
@media (max-width: 880px) { .primator .wrap { grid-template-columns: 1fr; } .primator-photo { max-width: 320px; } }

/* ---------- Endorsements ---------- */
.endorse-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.quote {
    background: #fff;
    color: var(--ink);
    border-radius: 18px;
    padding: 1.4rem 1.5rem 1.5rem;
    box-shadow: 0 14px 30px rgba(0,0,0,.12);
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 1.1rem;
    align-items: start;
}
.quote .frame {
    width: 84px; height: 84px;
    border-radius: 999px;
    overflow: hidden;
    border: 4px solid var(--magenta);
    background: #cfe3f5;
}
.quote .frame img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); }
.quote .q-name { font-family: var(--display); text-transform: uppercase; font-size: 1.05rem; }
.quote .q-role { color: var(--magenta); font-weight: 700; font-size: .85rem; margin-bottom: .5rem; }
.quote .q-text { font-size: .96rem; }
@media (max-width: 820px) { .endorse-grid { grid-template-columns: 1fr; } }

/* ---------- CTA / footer ---------- */
.cta { text-align: center; }
.cta h2 { font-family: var(--display); text-transform: uppercase; font-size: clamp(2rem, 6vw, 3.6rem); margin: 0 0 1.6rem; }
footer { background: var(--ink); color: #fff; padding: 40px 0; }
footer .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
footer .f-brand { font-family: var(--display); text-transform: uppercase; font-size: 1.2rem; }
footer .f-note { opacity: .7; font-size: .85rem; }
