* {
    box-sizing: border-box;
}

:root {
    --bg: #0d0d0e;
    --panel: rgba(255,255,255,.055);
    --panel-hover: rgba(255,255,255,.09);
    --text: #f6f2ea;
    --muted: #a7a29a;
    --line: rgba(255,255,255,.12);
    --accent: #d8b46a;
    --accent-soft: #ead39e;
}

html {
    min-height: 100%;
    background: var(--bg);
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, Arial, Helvetica, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 50% -10%, rgba(154, 40, 55, .22), transparent 34%),
        radial-gradient(circle at 100% 45%, rgba(216, 180, 106, .07), transparent 25%),
        var(--bg);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .13;
    background-image:
        linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
    background-size: 38px 38px;
}

a {
    color: inherit;
}

.page {
    width: min(100% - 32px, 620px);
    margin: 0 auto;
    padding: 54px 0 34px;
    position: relative;
    z-index: 1;
}

.hero {
    text-align: center;
    margin-bottom: 31px;
}

.brand-mark {
    width: 66px;
    height: 66px;
    margin: 0 auto 17px;
    border: 1px solid rgba(216,180,106,.52);
    border-radius: 22px;
    display: grid;
    place-items: center;
    transform: rotate(45deg);
    background: linear-gradient(145deg, rgba(216,180,106,.12), rgba(255,255,255,.025));
    box-shadow: 0 18px 55px rgba(0,0,0,.28);
}

.brand-mark span {
    transform: rotate(-45deg);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    line-height: 1;
    color: var(--accent-soft);
}

.brand {
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: .24em;
    font-size: 27px;
    margin-left: .24em;
}

.tagline {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 10px;
    margin: 9px 0 30px;
}

h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    font-size: clamp(31px, 8vw, 44px);
    line-height: 1.04;
    margin: 0 0 13px;
}

.intro {
    color: var(--muted);
    line-height: 1.55;
    font-size: 15px;
    max-width: 480px;
    margin: 0 auto;
}

.links {
    display: grid;
    gap: 11px;
}

.link-card {
    min-height: 82px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--panel);
    text-decoration: none;
    display: grid;
    grid-template-columns: 44px 1fr 26px;
    align-items: center;
    gap: 13px;
    padding: 15px 17px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.link-card:hover {
    transform: translateY(-2px);
    background: var(--panel-hover);
    border-color: rgba(216,180,106,.34);
}

.link-card.featured {
    border-color: rgba(216,180,106,.48);
    background:
        linear-gradient(130deg, rgba(216,180,106,.14), rgba(255,255,255,.045));
}

.link-icon {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.035);
}

.link-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--accent-soft);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.link-copy {
    min-width: 0;
}

.link-copy strong,
.link-copy small {
    display: block;
}

.link-copy strong {
    font-size: 13px;
    letter-spacing: .075em;
    line-height: 1.25;
}

.link-copy small {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
    margin-top: 5px;
}

.arrow {
    color: var(--accent);
    font-size: 20px;
    text-align: right;
}

.event-card {
    margin-top: 27px;
    padding: 27px 24px 24px;
    border-radius: 23px;
    border: 1px solid rgba(216,180,106,.23);
    background:
        linear-gradient(145deg, rgba(105,18,31,.48), rgba(20,20,21,.86) 58%),
        var(--panel);
    box-shadow: 0 22px 70px rgba(0,0,0,.22);
}

.eyebrow {
    display: block;
    color: var(--accent);
    font-size: 10px;
    letter-spacing: .18em;
    margin-bottom: 11px;
}

.event-card h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(27px, 7vw, 35px);
    font-weight: 400;
    margin: 0;
}

.event-subtitle {
    color: #ded7cb;
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-size: 17px;
    margin: 5px 0 20px;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    font-size: 11px;
    letter-spacing: .11em;
    color: var(--accent-soft);
}

.event-meta i {
    display: inline-block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--accent);
}

.event-detail {
    color: var(--muted);
    font-size: 13px;
    margin: 13px 0 18px;
}

.event-button {
    display: block;
    text-align: center;
    text-decoration: none;
    background: var(--accent);
    color: #17120b;
    border-radius: 13px;
    padding: 15px 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .105em;
    transition: transform .2s ease, filter .2s ease;
}

.event-button:hover {
    transform: translateY(-1px);
    filter: brightness(1.06);
}

footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 26px 4px 0;
    color: #77736d;
    font-size: 11px;
}

.instagram {
    color: #aaa49c;
    text-decoration: none;
}

.instagram:hover {
    color: var(--text);
}

@media (max-width: 480px) {
    .page {
        width: min(100% - 24px, 620px);
        padding-top: 38px;
    }

    .hero {
        margin-bottom: 25px;
    }

    .link-card {
        grid-template-columns: 40px 1fr 22px;
        padding: 14px;
    }

    .link-icon {
        width: 40px;
        height: 40px;
    }

    footer {
        flex-direction: column;
        align-items: center;
        gap: 7px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}
