:root {
    --red: #e30613;
    --green: #009246;
    --blue: #1d2b5f;
    --light: #f7f7f7;
    --text: #1f2933;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--light);
}

.hero {
    text-align: center;
    padding: 36px 16px 28px;
    background: #fff;
    border-bottom: 6px solid var(--red);
}

.logo {
    width: min(220px, 60vw);
    height: auto;
    border-radius: 50%;
    display: block;
    margin: 0 auto 18px;
}

.hero h1 {
    margin: 0;
    color: var(--red);
    font-size: clamp(32px, 6vw, 56px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero p {
    margin: 8px 0 0;
    color: var(--blue);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.container {
    width: min(1100px, calc(100% - 32px));
    margin: 0 auto;
    padding: 36px 0;
}

.intro {
    text-align: center;
    margin-bottom: 28px;
}

.intro h2 {
    margin: 0 0 8px;
    color: var(--blue);
    font-size: 30px;
}

.intro p {
    margin: 0;
    color: #52616b;
}

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

.card {
    width: 100%;
    display: flex;
    gap: 14px;
    align-items: center;
    text-align: left;
    border: 0;
    border-radius: 18px;
    background: #fff;
    padding: 18px;
    box-shadow: 0 10px 26px rgba(0,0,0,.08);
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(0,0,0,.12);
}

.photoWrap {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--blue);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 32px;
    font-weight: 700;
}

.photoWrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card h3 {
    margin: 0 0 6px;
    color: var(--red);
    font-size: 20px;
}

.card p {
    margin: 0;
    color: #52616b;
    line-height: 1.4;
}

.empty {
    background: #fff;
    border-radius: 14px;
    text-align: center;
    padding: 28px;
    color: #52616b;
}

.modalBackdrop {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0,0,0,.55);
    z-index: 100;
}

.modalBackdrop.visible { display: flex; }

.modal {
    position: relative;
    width: min(520px, 100%);
    background: #fff;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 25px 80px rgba(0,0,0,.25);
    text-align: center;
}

.close {
    position: absolute;
    top: 10px;
    right: 14px;
    border: 0;
    background: transparent;
    font-size: 32px;
    cursor: pointer;
    color: #777;
}

.modalPhoto {
    margin: 0 auto 14px;
}

.modalPhoto img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
}

.modal h2 {
    color: var(--red);
    margin: 0 0 8px;
}

.modal p {
    color: #52616b;
    margin: 0 0 20px;
}

.downloadBox {
    display: grid;
    gap: 12px;
}

.downloadBtn {
    display: block;
    text-decoration: none;
    color: #fff;
    background: var(--red);
    border-radius: 12px;
    padding: 14px 18px;
    font-weight: 700;
}

.downloadBtn.secondary {
    background: var(--green);
}

footer {
    text-align: center;
    color: #64748b;
    padding: 24px;
}

