/* =============================================================================
   Sestiere Porta Bonomini - Stylesheet
   Mobile-first, dark theme
   Colori sestiere: oro (#d4a017), rosso (#c81d25), verde (#1f7a3a)
   ========================================================================== */

/* ---------- Reset & Base -------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --color-bg:        #000000;
    --color-bg-alt:    #0d0d0d;
    --color-surface:   #141414;
    --color-border:    #2a2a2a;
    --color-text:      #f0e9d8;
    --color-text-mute: #b3a98f;
    --color-gold:      #d4a017;
    --color-gold-soft: #e8c46a;
    --color-red:       #c81d25;
    --color-green:     #1f7a3a;
    --shadow-soft:     0 6px 24px rgba(0, 0, 0, 0.6);
    --radius:          12px;
    --max-width:       1180px;
    --font-display:    'Cinzel', 'Times New Roman', serif;
    --font-body:       'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.65;
    font-size: 16px;
    overflow-x: hidden;
    min-height: 100vh;
}

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

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color .2s ease;
}
a:hover, a:focus { color: var(--color-gold-soft); }

h1, h2, h3 {
    font-family: var(--font-display);
    line-height: 1.2;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: .02em;
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

ul { list-style: none; }

/* ---------- Skip link ----------------------------------------------------- */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-gold);
    color: #000;
    padding: 8px 16px;
    z-index: 1000;
    border-radius: 0 0 8px 0;
    font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ---------- Layout helpers ------------------------------------------------ */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.25rem;
}

.section {
    padding: 3.5rem 0;
    position: relative;
}
.section--alt { background: var(--color-bg-alt); }

.section--cta {
    background:
        radial-gradient(1200px 400px at 80% -10%, rgba(212, 160, 23, 0.18), transparent 60%),
        linear-gradient(180deg, #1a0707, #2a0e10);
    border-top: 3px solid var(--color-gold);
    border-bottom: 3px solid var(--color-gold);
}
.section--cta .section__title { color: var(--color-gold-soft); }
.section--cta .section__lead { color: rgba(255, 255, 255, 0.92); }

.support-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}
.support-grid__figure {
    margin: 0;
    text-align: center;
}
.support-grid__poster {
    max-width: 360px;
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}
.support-grid__content .section__header {
    text-align: left;
    margin-bottom: 1.5rem;
}
.support-grid__hint {
    color: rgba(255, 255, 255, 0.78);
    font-size: .95rem;
    margin-top: 1.25rem;
}

.cf-box {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .25rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.45);
    border: 2px dashed var(--color-gold);
    border-radius: var(--radius);
    user-select: all;
}
.cf-box__label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--color-gold-soft);
}
.cf-box__value {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    color: #fff;
    letter-spacing: .08em;
}

@media (min-width: 760px) {
    .support-grid {
        grid-template-columns: minmax(260px, 360px) 1fr;
        gap: 3rem;
    }
}

.nav-cta {
    color: var(--color-red) !important;
    font-weight: 700;
}
.nav-cta:hover, .nav-cta:focus { color: var(--color-gold) !important; }

/* ---------- Video ----------------------------------------------------- */
.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
}
.video-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}
.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.video-card figcaption {
    padding: .9rem 1.1rem;
    font-size: .9rem;
    color: var(--color-text-mute);
    text-align: center;
    border-top: 1px solid var(--color-border);
}
@media (min-width: 760px) {
    .video-grid { grid-template-columns: 1fr 1fr; }
}

.section__header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.section__title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    color: var(--color-gold);
    margin-bottom: .75rem;
    position: relative;
    display: inline-block;
}
.section__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-red), var(--color-gold), var(--color-green));
    margin: .75rem auto 0;
    border-radius: 2px;
}
.section__lead {
    font-size: 1.05rem;
    color: var(--color-text-mute);
    max-width: 720px;
    margin: 0 auto;
}

/* ---------- Header -------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--color-border);
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: .75rem;
    padding-bottom: .75rem;
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: var(--color-text);
}
.brand__logo {
    width: 48px;
    height: auto;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,.6));
}
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-gold);
}
.brand__motto {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--color-text-mute);
    font-style: italic;
}

.site-nav__toggle {
    background: transparent;
    border: 1px solid var(--color-border);
    width: 44px;
    height: 44px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 0;
}
.site-nav__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-gold);
    transition: transform .25s ease, opacity .25s ease;
}
.site-nav__toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.site-nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.site-nav__toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.site-nav__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg-alt);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 1.25rem 1.5rem;
    flex-direction: column;
    gap: .25rem;
}
.site-nav__menu.is-open { display: flex; }
.site-nav__menu li a {
    display: block;
    padding: .85rem 1rem;
    color: var(--color-text);
    font-weight: 500;
    border-radius: 8px;
    transition: background .2s ease, color .2s ease;
}
.site-nav__menu li a:hover,
.site-nav__menu li a:focus {
    background: rgba(212, 160, 23, 0.12);
    color: var(--color-gold);
}

/* ---------- Hero ---------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 4rem 0 3rem;
}
.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at top, rgba(200, 29, 37, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse at bottom right, rgba(31, 122, 58, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse at bottom left, rgba(212, 160, 23, 0.12) 0%, transparent 60%),
        #000;
    z-index: 0;
}
.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg, rgba(255,255,255,0.015) 0 2px, transparent 2px 14px);
    pointer-events: none;
}
.hero__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero__crest {
    width: 160px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 6px 24px rgba(0,0,0,.8));
    animation: floatIn .8s ease-out;
}
@keyframes floatIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero__title {
    font-size: clamp(2rem, 7vw, 4rem);
    color: var(--color-gold);
    margin-bottom: .5rem;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .8);
}
.hero__subtitle {
    font-family: var(--font-display);
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: var(--color-text);
    margin-bottom: 1rem;
    letter-spacing: .15em;
    text-transform: uppercase;
}
.hero__motto {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--color-gold-soft);
    margin-bottom: 1.5rem;
}
.hero__badge {
    display: inline-block;
    background: rgba(212, 160, 23, 0.1);
    border: 1px solid rgba(212, 160, 23, 0.4);
    color: var(--color-gold-soft);
    padding: .5rem 1.1rem;
    border-radius: 999px;
    font-size: .8rem;
    letter-spacing: .05em;
    margin-bottom: 2rem;
}
.hero__cta {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* ---------- Buttons ------------------------------------------------------- */
.btn {
    display: inline-block;
    padding: .85rem 1.6rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: .03em;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    text-align: center;
    border: 2px solid transparent;
    cursor: pointer;
}
.btn--primary {
    background: linear-gradient(135deg, var(--color-gold), #b8860b);
    color: #000;
    box-shadow: 0 4px 14px rgba(212, 160, 23, .25);
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 160, 23, .4);
    color: #000;
}
.btn--outline {
    background: transparent;
    color: var(--color-gold);
    border-color: var(--color-gold);
}
.btn--outline:hover {
    background: var(--color-gold);
    color: #000;
}

/* ---------- Cards & Grid -------------------------------------------------- */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }

.card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}
.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-red), var(--color-gold), var(--color-green));
}
.card h3 {
    color: var(--color-gold);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}
.card--wide { padding: 2rem 1.75rem; }

.check-list li {
    padding: .5rem 0 .5rem 1.75rem;
    position: relative;
    color: var(--color-text);
    border-bottom: 1px dashed var(--color-border);
}
.check-list li:last-child { border-bottom: 0; }
.check-list li::before {
    content: '⚜';
    position: absolute;
    left: 0;
    top: .4rem;
    color: var(--color-gold);
    font-size: 1rem;
}

/* ---------- Blasone Section ---------------------------------------------- */
.blasone-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}
.blasone-grid__figure {
    text-align: center;
    padding: 2rem;
    background:
        radial-gradient(circle at center, rgba(212, 160, 23, 0.08), transparent 70%),
        var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
}
.blasone-grid__figure img {
    margin: 0 auto;
    max-width: 240px;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,.7));
}
.blasone-grid__figure figcaption {
    margin-top: 1rem;
    color: var(--color-text-mute);
    font-style: italic;
    font-size: .9rem;
}
.defs dt {
    font-family: var(--font-display);
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .85rem;
    margin-top: 1.25rem;
    margin-bottom: .35rem;
}
.defs dt:first-child { margin-top: 0; }
.defs dd {
    color: var(--color-text);
    line-height: 1.6;
}
.dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-right: .25rem;
    margin-left: .35rem;
    vertical-align: middle;
    border: 1px solid rgba(255,255,255,.2);
}
.defs dd .dot:first-child { margin-left: 0; }

/* ---------- Features ----------------------------------------------------- */
.feature {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: transform .25s ease, border-color .25s ease;
}
.feature:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 160, 23, 0.4);
}
.feature__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}
.feature h3 {
    color: var(--color-gold);
    font-size: 1.15rem;
    margin-bottom: .75rem;
}
.feature p {
    color: var(--color-text-mute);
    font-size: .95rem;
}

/* ---------- Palmarès / Trophies ------------------------------------------ */
.palmares { gap: 1.25rem; }
.trophy {
    background: linear-gradient(180deg, var(--color-surface), #0a0a0a);
    border: 1px solid var(--color-border);
    border-top: 3px solid var(--color-gold);
    border-radius: var(--radius);
    padding: 1.75rem 1.25rem;
    text-align: center;
    position: relative;
}
.trophy__year {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: .25rem;
    text-shadow: 0 2px 10px rgba(212, 160, 23, .3);
}
.trophy h3 {
    font-size: 1.05rem;
    color: var(--color-text);
    margin-bottom: .35rem;
}
.trophy p {
    color: var(--color-text-mute);
    font-size: .9rem;
    margin-bottom: 0;
}

/* ---------- Socials ------------------------------------------------------ */
.socials {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 720px;
    margin: 0 auto;
}
.social {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    color: var(--color-text);
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.social:hover {
    transform: translateX(4px);
    border-color: var(--color-gold);
    color: var(--color-text);
}
.social__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    font-weight: 700;
    flex-shrink: 0;
    color: #000;
}
.social--fb .social__icon { background: #1877f2; color: #fff; }
.social--ig .social__icon {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
}
.social--web .social__icon { background: transparent; padding: 0; overflow: hidden; }
.social__icon-img { width: 100%; height: 100%; object-fit: contain; display: block; }
.social__text { display: flex; flex-direction: column; line-height: 1.3; }
.social__text strong { color: var(--color-gold); font-size: 1rem; }
.social__text small { color: var(--color-text-mute); font-size: .85rem; }

/* ---------- Footer ------------------------------------------------------- */
.site-footer {
    background: #000;
    border-top: 1px solid var(--color-border);
    padding: 2.5rem 0 2rem;
    margin-top: 2rem;
    position: relative;
}
.site-footer::before {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(90deg, var(--color-red), var(--color-gold), var(--color-green));
    position: absolute;
    top: 0; left: 0; right: 0;
}
.site-footer__inner { text-align: center; }
.site-footer__brand {
    color: var(--color-gold);
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: .5rem;
}
.site-footer__meta {
    color: var(--color-text-mute);
    font-size: .9rem;
    margin-bottom: .75rem;
}
.site-footer__copy {
    color: var(--color-text-mute);
    font-size: .85rem;
    margin-bottom: 0;
}

/* ---------- Tablet ≥ 640px ----------------------------------------------- */
@media (min-width: 640px) {
    .grid--2 { grid-template-columns: 1fr 1fr; }
    .grid--3 { grid-template-columns: repeat(2, 1fr); }
    .hero__crest { width: 200px; }
    .socials { grid-template-columns: 1fr 1fr; }
    .palmares { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Desktop ≥ 960px ---------------------------------------------- */
@media (min-width: 960px) {
    .container { padding: 0 2rem; }
    .section { padding: 5rem 0; }
    .grid--3 { grid-template-columns: repeat(3, 1fr); }
    .blasone-grid { grid-template-columns: 320px 1fr; gap: 3rem; }
    .socials { grid-template-columns: repeat(3, 1fr); }
    .hero__crest { width: 220px; }

    /* Desktop nav: torna orizzontale */
    .site-nav__toggle { display: none; }
    .site-nav__menu {
        display: flex !important;
        position: static;
        background: transparent;
        border: 0;
        padding: 0;
        flex-direction: row;
        gap: .25rem;
    }
    .site-nav__menu li a {
        padding: .55rem .9rem;
        font-size: .95rem;
    }
}

/* ---------- Reduced motion ----------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ---------- Image placeholder (foto non ancora caricate) ----------------- */
.img-placeholder {
    aspect-ratio: 4 / 3;
    width: 100%;
    background:
        repeating-linear-gradient(45deg,
            rgba(212, 160, 23, 0.05) 0 12px,
            rgba(0, 0, 0, 0.4) 12px 24px),
        var(--color-surface);
    border: 1px dashed rgba(212, 160, 23, 0.4);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    color: var(--color-gold-soft);
    gap: .5rem;
}
.img-placeholder__icon {
    font-size: 2rem;
    line-height: 1;
}
.img-placeholder__text {
    font-family: var(--font-display);
    font-size: .95rem;
    font-weight: 600;
    color: var(--color-gold);
    line-height: 1.3;
}
.img-placeholder__hint {
    color: var(--color-text-mute);
    font-size: .75rem;
    line-height: 1.4;
}
.img-placeholder__hint code {
    background: rgba(0, 0, 0, .5);
    padding: 1px 6px;
    border-radius: 4px;
    color: var(--color-gold-soft);
    font-size: .75rem;
}

/* ---------- People (Capitano & Cavaliere) -------------------------------- */
.people {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}
.person {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
}
.person__photo,
.person .img-placeholder {
    width: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid var(--color-border);
}
.person__body { padding: 1.5rem; }
.person__role {
    display: inline-block;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--color-gold);
    background: rgba(212, 160, 23, 0.1);
    padding: .25rem .65rem;
    border-radius: 4px;
    margin-bottom: .75rem;
}
.person__name {
    font-size: 1.4rem;
    color: var(--color-text);
    margin-bottom: .75rem;
}
.person p {
    color: var(--color-text-mute);
    font-size: .95rem;
    margin-bottom: 0;
}

/* ---------- Territorio con immagine -------------------------------------- */
.territory-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: stretch;
}
.territory-grid__figure {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
}
.territory-grid__figure img,
.territory-grid__figure .img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    display: block;
    border: 0;
    border-radius: 0;
}
.territory-grid__figure figcaption {
    padding: .85rem 1rem;
    font-size: .85rem;
    color: var(--color-text-mute);
    font-style: italic;
    text-align: center;
    border-top: 1px solid var(--color-border);
    background: var(--color-bg-alt);
}

/* ---------- Galleria fotografica ----------------------------------------- */
.gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
.gallery__item {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    transition: transform .25s ease, border-color .25s ease;
}
.gallery__item:hover {
    transform: translateY(-3px);
    border-color: rgba(212, 160, 23, 0.4);
}
.gallery__item img,
.gallery__item .img-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    border: 0;
    border-radius: 0;
}
.gallery__credits {
    text-align: center;
    color: var(--color-text-mute);
    font-size: .85rem;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

/* ---------- Eventi ------------------------------------------------------- */
.event-card {
    display: grid;
    grid-template-columns: 90px 1fr;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform .25s ease, border-color .25s ease;
}
.event-card:hover {
    transform: translateY(-3px);
    border-color: rgba(212, 160, 23, 0.4);
}
.event-card__date {
    background: linear-gradient(180deg, var(--color-red), #8b0e15);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem .5rem;
    text-align: center;
    border-right: 3px solid var(--color-gold);
}
.event-card__day {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
}
.event-card__month {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-top: .3rem;
    color: var(--color-gold-soft);
}
.event-card__body { padding: 1.5rem 1.4rem; }
.event-card__tag {
    display: inline-block;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--color-green);
    font-weight: 600;
    margin-bottom: .5rem;
}
.event-card__body h3 {
    color: var(--color-gold);
    font-size: 1.25rem;
    margin-bottom: .75rem;
}
.event-card__body p {
    font-size: .95rem;
    color: var(--color-text);
}
.event-card__meta {
    color: var(--color-text-mute);
    font-size: .85rem;
    font-style: italic;
    margin-top: .75rem;
}
.event-card__cta {
    margin-top: 1rem;
    margin-bottom: 0;
}

.event-card--featured {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    border-color: rgba(212, 160, 23, 0.55);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}
.event-card--featured .event-card__date {
    display: none;
}
.event-card--featured .event-card__body {
    padding: 1.75rem 1.6rem 1.6rem;
}
.event-card--featured .event-card__body h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}
.event-card__poster {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    display: block;
    background: linear-gradient(180deg, #1a0707, #2a0e10);
    border-bottom: 3px solid var(--color-gold);
}

@media (min-width: 880px) {
    .event-card--featured {
        grid-template-columns: minmax(300px, 420px) 1fr;
    }
    .event-card--featured .event-card__poster {
        height: 100%;
        max-height: none;
        border-bottom: 0;
        border-right: 3px solid var(--color-gold);
    }
}

.section__subtitle {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--color-gold);
    margin: 2.5rem 0 1.25rem;
    letter-spacing: .04em;
}
.section__subtitle:first-of-type { margin-top: 0; }

/* ---------- Tablet ≥ 640px (extra) --------------------------------------- */
@media (min-width: 640px) {
    .people { grid-template-columns: 1fr 1fr; }
    .gallery { grid-template-columns: repeat(2, 1fr); }
    .territory-grid { grid-template-columns: 1.2fr 1fr; }
}

/* ---------- Desktop ≥ 960px (extra) -------------------------------------- */
@media (min-width: 960px) {
    .gallery { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
