:root {
    --gold: #C8A84E;
    --green: #1F6B3A;
    --ink: #0f172a;
    /* deep slate */
    --muted: #64748b;
    /* slate-500 */
    --bg: #ffffff;
    --panel: #f8fafc;
    /* slate-50 */
    --ring: rgba(200,168,78,.35);
}
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,"Helvetica Neue",Arial;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
}
.wrap {
    max-width: 1000px;
    margin: auto;
    padding: clamp(16px,4vw,40px);
}
.card {
    background: var(--panel);
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: clamp(20px,3vw,28px);
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}
.eyebrow {
    display: inline-block;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green);
    background: rgba(31,107,58,.08);
    border: 1px solid rgba(31,107,58,.18);
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    font-size: 0.78rem;
}
h1 {
    font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    margin: 0.6rem 0 0;
    line-height: 1.2;
}
.lead {
    color: var(--muted);
    font-size: 1.05rem;
    margin: 0.65rem 0 0;
}
.grid {
    display: grid;
    gap: 14px;
    margin: 22px 0 0;
    grid-template-columns: repeat(1,minmax(0,1fr));
}
@media (min-width:600px) {
    .grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
}
@media (min-width:900px) {
    .grid {
        grid-template-columns: repeat(3,minmax(0,1fr));
    }
}
.tile {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 16px 14px;
    border-radius: 14px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,.08);
    border-color: var(--gold);
}
.icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(200,168,78,.18), rgba(31,107,58,.18));
    border: 1px solid rgba(200,168,78,.35);
}
.tile h3 {
    margin: 0.15rem 0 0.2rem;
    font-size: 1.02rem;
}
.tile p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}
.tile a {
    margin-left: auto;
    align-self: center;
    white-space: nowrap;
    border: 1px solid var(--gold);
    color: #1b1b1b;
    text-decoration: none;
    font-weight: 600;
    padding: 0.45rem 0.7rem;
    border-radius: 10px;
    background: linear-gradient(#fff,#fff);
    box-shadow: 0 1px 0 rgba(0,0,0,.04);
}
.tile a:hover {
    background: linear-gradient(#fff7e0,#fff);
    box-shadow: 0 3px 10px var(--ring);
}
.meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 0.95rem;
}
.meta strong {
    color: var(--ink);
}
.contact {
    margin-top: 28px;
    padding: 16px;
    border: 1px dashed rgba(31,107,58,.35);
    border-radius: 14px;
    background: rgba(31,107,58,.04);
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.logo {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-block;
    background: conic-gradient(from 180deg at 50% 50%, var(--gold), var(--green), var(--gold));
    box-shadow: inset 0 0 0 2px #fff, 0 2px 14px rgba(0,0,0,.08);
    border: 1px solid rgba(0,0,0,.06);
}
.btn-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--green);
    color: #fff;
    background: var(--green);
    padding: 0.55rem 0.8rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}
.btn.alt {
    background: #fff;
    color: var(--green);
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}