
:root {
    --bg:#f4f0e8;
    --paper:#fffaf2;
    --ink:#162033;
    --muted:#627087;
    --blue:#092b52;
    --gold:#f1c96b;
    --border:rgba(9,43,82,.16);
    --shadow:0 18px 45px rgba(10,24,45,.12);
}

* {
    box-sizing:border-box;
}

body {
    margin:0;
    background:
        radial-gradient(circle at top left, rgba(201,154,51,.20), transparent 34rem),
        linear-gradient(180deg, #fff8ec 0%, var(--bg) 48%, #e9dfcd 100%);
    font-family:Georgia, "Times New Roman", serif;
    color:var(--ink);
    line-height:1.65;
}

a {
    color:inherit;
    text-decoration:none;
}


.ad-card{
    grid-column: span 2;
    grid-row: span 2;
    min-height: 290px; /* περίπου 2 κάρτες των 135px + κενό */
    overflow: hidden;
}







.topbar {
    position:sticky;
    top:0;
    z-index:20;
    background:rgba(7,21,39,.96);
    border-bottom:1px solid rgba(255,255,255,.12);
}

.menu {
    max-width:1180px;
    width:calc(100% - 28px);
    margin:auto;
    padding:13px 0;
    display:flex;
    flex-wrap:wrap;
    gap:9px;
    align-items:center;
	justify-content:center;
}

.brand {
    color:white;
    font:bold 16px Arial, sans-serif;
    letter-spacing:.06em;
    text-transform:uppercase;
    margin-right:auto;
}

.menu a:not(.brand) {
    color:white;
    background:rgba(255,255,255,.07);
    border:1px solid rgba(255,255,255,.18);
    padding:9px 13px;
    border-radius:30px;
    font-family:Arial, sans-serif;
    font-size:16px;
    font-weight:bold;
    text-transform:uppercase;
}

.menu a:hover {
    background:rgba(255,255,255,.15);
}

.hero {
    max-width:1180px;
    width:calc(100% - 28px);
    margin:30px auto 22px;
    padding:22px 34px;
    color:white;
    background:linear-gradient(135deg, #071527, #092b52);
    border-radius:30px;
    box-shadow:var(--shadow);
}

.hero h1 {
    margin:0;
    max-width:none;
   font-size:clamp(1.3rem,5vw,2rem);
    line-height:1.35;
    letter-spacing:-.04em;
    text-align:center;
}

.hero p {
    max-width:780px;
    margin:2px auto 0;
    color:rgba(255,255,255,.86);
    font-size:clamp(1.2rem, 2.2vw, 1.7rem);
    text-align:center;
}

.actions,
.summary,
.container {
    max-width:1180px;
    width:calc(100% - 28px);
    margin-left:auto;
    margin-right:auto;
}

.actions {
    margin-bottom:20px;
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.action-btn {
    display:inline-block;
    background:var(--blue);
    color:white;
    padding:10px 15px;
    border-radius:30px;
    font-family:Arial, sans-serif;
    font-size:13px;
    font-weight:bold;
    text-transform:uppercase;
}

.action-btn.gold {
    background:var(--gold);
    color:#081729;
}

.summary {
    margin-bottom:20px;
    color:var(--muted);
    font:bold 14px Arial, sans-serif;
    letter-spacing:.04em;
    text-transform:uppercase;
}

.search-panel {
    max-width:1180px;
    width:calc(100% - 28px);
    margin:0 auto 22px;
    background:white;
    padding:22px;
    border-radius:24px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.search-row {
    display:flex;
    gap:10px;
}

.search-row input {
    flex:1;
    padding:15px 18px;
    border:2px solid rgba(9,43,82,.18);
    border-radius:999px;
    font-size:16px;
    outline:none;
}

.search-row input:focus {
    border-color:var(--gold);
}

.search-row button {
    border:0;
    background:var(--gold);
    color:#081729;
    border-radius:999px;
    padding:0 24px;
    font:bold 14px Arial, sans-serif;
    cursor:pointer;
}

.alpha-filter {
    margin-top:16px;
    display:flex;
    flex-wrap:wrap;
    gap:7px;
    justify-content:center;
}

.alpha-filter button {
    border:1px solid rgba(9,43,82,.18);
    background:#fffaf2;
    color:#092b52;
    border-radius:12px;
    padding:8px 11px;
    font:bold 14px Arial,sans-serif;
    cursor:pointer;
}


.alpha-filter button.active,
.alpha-filter button:hover {
    background:var(--gold);
    color:#081729;
}

.no-results {
    display:none;
    margin-top:16px;
    background:#fff3cd;
    padding:15px;
    border-radius:14px;
    font:bold 14px Arial, sans-serif;
}

.work-grid {
    display:grid;
    grid-template-columns:repeat(6, minmax(0, 1fr));
    gap:14px;
    margin-bottom:40px;
}

.work-card {
    display:block;
    min-height:135px;
    background:rgba(255,250,242,.96);
    border:1px solid var(--border);
    border-radius:20px;
    padding:16px;
    box-shadow:0 14px 35px rgba(10,24,45,.10);
    transition:transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.work-card:hover {
    transform:translateY(-3px);
    box-shadow:0 20px 45px rgba(10,24,45,.15);
    border-color:rgba(201,154,51,.65);
}

.year {
    display:inline-block;
    margin-bottom:10px;
    padding:4px 9px;
    background:var(--gold);
    color:#081729;
    border-radius:999px;
    font:bold 12px Arial, sans-serif;
}

.work-title {
    margin:0;
    color:var(--blue);
    font-size:15px;
    line-height:1.25;
    overflow:hidden;
    display:-webkit-box;
    -webkit-line-clamp:4;
    -webkit-box-orient:vertical;
    word-break:break-word;
}

.footer {
    background:#071527;
    color:white;
    text-align:center;
    padding:28px;
    margin-top:35px;
}

@media(max-width:1000px) {
    .work-grid {
        grid-template-columns:repeat(4, minmax(0, 1fr));
    }

    .brand {
        width:100%;
        margin-bottom:3px;
    }
}

@media(max-width:760px) {
    .work-grid {
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap:10px;
    }

    .work-card {
        min-height:115px;
        padding:12px;
        border-radius:16px;
    }

    .work-title {
        font-size:14px;
    }

    .year {
        font-size:10px;
        padding:3px 7px;
    }
}

@media(max-width:520px) {
    .hero {
        padding:28px 22px;
        margin-top:20px;
    }

    .search-row {
        display:block;
    }

    .search-row button {
        width:100%;
        margin-top:10px;
        padding:12px;
    }

    .work-grid {
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap:8px;
    }

    .work-card {
        min-height:105px;
        padding:9px;
        border-radius:14px;
    }

    .work-title {
        font-size:12px;
    }
}