@font-face {
    font-family: Ppfraktionmono;
    src: url(../fonts/PPFraktionMono-Light.otf) format("opentype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Ppfraktionmono;
    src: url(../fonts/PPFraktionMono-Regular.otf) format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Ppfraktionmono;
    src: url(../fonts/PPFraktionMono-Bold.otf) format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'PP Fraktion Mono';
    src: url('../fonts/PPFraktionMono-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

:root {
    --main-background: #0a0a0a;
}
html, body {
    margin: 0;
    padding: 0;
    background-color: var(--main-background);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--main-background);
    font-family: Ppfraktionmono, Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* ── Hero ─────────────────────────────────────── */
.section_hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: var(--main-background);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.25rem 0 1.25rem;
    overflow: hidden;
}

.section_hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 75%;
    background-image: url(../img/pattern.svg);
    opacity: 1;
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    z-index: 0;
}

.hero-logo {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: auto;
    z-index: 100;
}
.hero-logo img {
    width: 100%;
    display: block;
}

.hero-constellation2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-constellation2 svg {
    width: 80%;
    height: auto;
    display: block;
}
.hero-main-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    padding: 0 3.5rem;
    display: block;
}


@keyframes starFadeIn {
    0%   { opacity: 0;   filter: brightness(1); }
    50%  { opacity: 1;   filter: brightness(2) drop-shadow(0 0 8px #fff) drop-shadow(0 0 16px #ba0000); }
    75%  { opacity: 0.7; filter: brightness(1.2) drop-shadow(0 0 3px #fff); }
    100% { opacity: 1;   filter: brightness(1); }
}

@keyframes starFadeOut {
    0%   { opacity: 1;   filter: brightness(1); }
    100% { opacity: 0;   filter: brightness(1); }
}

@keyframes starTwinkleLoop {
    0%   { opacity: 1;   filter: brightness(1); }
    25%  { opacity: 0.5; filter: brightness(1.5) drop-shadow(0 0 4px #fff); }
    50%  { opacity: 1;   filter: brightness(2) drop-shadow(0 0 8px #fff) drop-shadow(0 0 16px #ba0000); }
    75%  { opacity: 0.6; filter: brightness(1.2) drop-shadow(0 0 3px #fff); }
    100% { opacity: 1;   filter: brightness(1); }
}

.star-name {
    opacity: 0;
}

.star-name.fadein {
    animation: starFadeIn 0.8s ease-in-out forwards;
}

.star-name.twinkling {
    opacity: 1;
    animation: starTwinkleLoop 3s ease-in-out infinite;
}

.hero-main {
    position: relative;
    z-index: 1;
    width: 100%;
    display: block;
    height: auto;
    padding: 0;
}


@media (max-width: 1024px) {
    .section_hero {
        padding-top: 4rem;
        min-height: 80%;
    }
    .hero-main-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-main-wrapper {
        max-width: 100%;
        width: 100%;
        margin-top: 2rem;
        padding: 0;

    }
    .hero-constellation {
        width: 70%;
    }
}

@media (max-width: 480px) {
    .section_hero {
        padding-top: 4rem;
        min-height: 80%;
    }
    .hero-main-wrapper {
        max-width: 100%;
        width: 100%;
        margin-top: 1.5rem;
        padding: 0;

    }
    .hero-constellation {
        width: 80%;
    }
}

/* ── What is Matariki Nights ──────────────────── */
.section_what {
    background-color: var(--main-background);
    display: flex;
    justify-content: center;
    padding: 0 1.25rem 5rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.what-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 680px;
    width: 100%;
    position: relative;
    z-index: 1;
}
.star-dot {
    position: absolute;
    border-radius: 50%;
    background: #fff;
    pointer-events: none;
    z-index: 0;
    animation: dotTwinkle var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
}
.view-events-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 12px 32px;
    border: 0.5px solid #b7b7b7;
    color: #fff;
    font-family: Ppfraktionmono, Arial, sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 110%;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: background 0.3s ease, color 0.3s ease;
}

.view-events-btn:hover {
    background: #fff;
    color: #0a0a0a;
}
@keyframes dotTwinkle {
    0%   { opacity: 0;   transform: scale(0.5); }
    50%  { opacity: 1;   transform: scale(1); }
    100% { opacity: 0;   transform: scale(0.5); }
}
.what-title {
    color: #fff;
    text-align: center;
    font-family: Ppfraktionmono, Arial, sans-serif;
    font-size: clamp(28px, 3.5vw, 35px);
    font-weight: 300;
    line-height: 100%;
    text-transform: capitalize;
    align-self: stretch;
    margin-bottom: 1rem;
    margin-top: 3rem;
}

.what-body {
    color: #b7b7b7;
    text-align: center;
    font-family: Ppfraktionmono, Arial, sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 110%;
    align-self: stretch;
    /*max-width: 1800px;*/
    /*margin: 0 auto;*/
}

.what-soon {
    color: #b7b7b7;
    text-align: center;
    font-family: Ppfraktionmono, Arial, sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 110%;
    text-transform: uppercase;
    align-self: stretch;
    margin-top: 2rem;
}

.what-divider {
    display: flex;
    justify-content: center;
}

/* ── About / Principles (merged) ─────────────── */
.section_about {
    background-color: var(--main-background);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0 0 4rem;
    position: relative;
    overflow: hidden;
}

.about-divider-v {
    display: flex;
    justify-content: center;
    margin-top: 0;
}

@keyframes drawDown {
    from { clip-path: inset(0 0 100% 0); }
    to   { clip-path: inset(0 0 0% 0); }
}

@keyframes expandWidth {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}

.about-divider-h {
    width: 100%;
    height: 0;
    border-top: 0.75px solid #b7b7b7;
    transform: scaleX(0);
    transform-origin: center;
}

.about-divider-v svg {
    clip-path: inset(0 0 100% 0);
}

.about-divider-h.animate {
    animation: expandWidth 2s ease forwards;
}

.about-divider-v.animate svg {
    animation: drawDown 2s ease forwards;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    align-self: stretch;
    width: 100%;
    margin: 0 auto;
    padding-top: 2rem;
    position: relative;
    z-index: 1;
}

.about-title {
    color: #fff;
    text-align: center;
    font-family: Ppfraktionmono, Arial, sans-serif;
    font-size: clamp(28px, 3.5vw, 35px);
    font-weight: 300;
    line-height: 100%;
    text-transform: capitalize;
    align-self: stretch;
}
.about-body {
    color: #b7b7b7;
    text-align: center;
    font-family: Ppfraktionmono, Arial, sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 110%;
    align-self: stretch;
    padding: 0 1.25rem 3rem 1.25rem;
    max-width: 1100px;
    width: 90%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .about-body {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box;
    }
}
/* ── Principles ───────────────────────────────── */
.section_principles {
    position: relative;
    background-color: var(--main-background);
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.section_principles > img {
    position: absolute;
    left: 50%;
    top: 30%;
    transform: translate(-50%, -50%);
    width: clamp(400px, 120vw, 1200px);
    max-width: none;
    z-index: 0;
    pointer-events: none;
}

.about-divider-h,
.about-divider-v,
.about-content {
    position: relative;
    z-index: 1;
}

.principles-grid {
    position: relative;
    z-index: 1;
    display: flex;
    border: 0.5px solid #b7b7b7;
    margin: 0 1.25rem;
    width: calc(100% - 2.5rem);
}

.principle-card {
    display: flex;
    height: 200px;
    padding: clamp(12px, 2vw, 24px);
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    flex: 1 0 0;
}

.principle-card.border-right {
    border-right: 0.5px solid #b7b7b7;
}

.principle-header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-height: 60px;
    align-self: stretch;
}

.principle-dot {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    background-color: #ba0000;
    flex-shrink: 0;
}

.principle-title {
    color: #fff;
    font-family: Ppfraktionmono, Arial, sans-serif;
    font-size: clamp(12px, 1.2vw, 16px);
    font-weight: 300;
    line-height: 110%;
    text-transform: uppercase;
}

.principle-body {
    color: #b7b7b7;
    font-family: Ppfraktionmono, Arial, sans-serif;
    font-size: clamp(15px, 1.5vw, 18px);
    font-weight: 300;
    line-height: 110%;
    align-self: stretch;
    min-height: 60px;
    display: flex;
    align-items: flex-start;
}

.theme-text {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
    font-family: Ppfraktionmono, Arial, sans-serif;
    font-size: 24px;
    font-weight: 300;
    line-height: 100%;
    text-transform: uppercase;
    width: 1400px;
    max-width: 90%;
    padding: 2rem 1.25rem;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .principles-grid {
        flex-direction: column;
    }
    .principle-card {
        height: auto;
        min-height: 160px;
        border-right: none !important;
        border-bottom: 0.5px solid #b7b7b7;
    }
    .principle-card:last-child {
        border-bottom: none;
    }
    .theme-text {
        font-size: 18px;
        padding: 3rem 1.25rem;
    }
}

/* ── Events ───────────────────────────────────── */
.section_events {
    background-color: var(--main-background);
    padding: 0 1.25rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.events-tabs {
    display: flex;
    align-items: stretch;
    padding-top: 3rem;
    justify-content: center;
    flex-wrap: nowrap;
}

.events-tab {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-family: Ppfraktionmono, Arial, sans-serif;
    font-size: clamp(14px, 2vw, 24px);
    font-weight: 300;
    line-height: 100%;
    text-transform: capitalize;
    cursor: pointer;
    border: none;
    background: transparent;
    white-space: nowrap;
}

.events-tab--active {
    background: #fff;
    color: #0a0a0a;
    padding: 8px 24px 12px 24px;
}

.events-tab:not(.events-tab--active) {
    color: #fff;
    padding: 4px 24px 8px 24px;
    border: 0.5px solid #b7b7b7;
    align-self: stretch;
}

@media (max-width: 768px) {
    .events-tabs {
        padding-top: 3rem;
        width: 100%;
    }
    .events-tab--active {
        padding: 8px 16px 12px 16px;
    }
    .events-tab:not(.events-tab--active) {
        padding: 4px 16px 8px 16px;
    }
}

@media (max-width: 480px) {
    .events-tab--active {
        padding: 8px 10px 12px 10px;
    }
    .events-tab:not(.events-tab--active) {
        padding: 4px 10px 8px 10px;
    }
}

.events-desc {
    color: #b7b7b7;
    text-align: center;
    font-family: Ppfraktionmono, Arial, sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 110%;
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .events-desc {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
}

.events-panel {
    display: none;
    margin-bottom: 3rem;
}

.events-panel.events-panel--active {
    display: grid;
}

.events-coming-soon {
    grid-column: 1 / -1;
    color: #b7b7b7;
    text-align: center;
    font-family: Ppfraktionmono, Arial, sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 110%;
    padding: 3rem 1.25rem;
}

.event-card {
    display: flex;
    flex-direction: column;
    padding: 8px 8px 16px 8px;
    gap: 6px;
    border: 0.5px solid #b7b7b7;
    margin: -0.25px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.event-card::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(186,0,0,0.5) 0%, rgba(186,0,0,0.18) 45%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    left: var(--gx, 50%);
    top: var(--gy, 50%);
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease, left 0.55s cubic-bezier(0.23, 1, 0.32, 1), top 0.55s cubic-bezier(0.23, 1, 0.32, 1);
    filter: blur(38px);
    z-index: 0;
    mix-blend-mode: multiply;
}

.event-card:hover::before {
    opacity: 1;
}

.event-card:hover {
    border-color: rgba(186,0,0,0.6);
}

.event-card > * {
    position: relative;
    z-index: 1;
}

.event-card__image {
    position: relative;
    width: 100%;
    aspect-ratio: 187 / 113;
    overflow: hidden;
}

.event-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.event-card:hover .event-card__image img {
    opacity: 0.75;
}

/* Food cards: greyscale/colour crossfade on hover */
.event-card__image--food {
    position: relative;
}

.event-card__image--food img {
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.4s ease;
}

.event-card__image--food .event-card__img-grey {
    position: relative;
    opacity: 1;
}

.event-card__image--food .event-card__img-color {
    opacity: 0;
}

.event-card--food:hover .event-card__img-grey {
    opacity: 0;
}

.event-card--food:hover .event-card__img-color {
    opacity: 1;
}

.event-card__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background-color: #ba0000;
    color: #fff;
    font-family: Ppfraktionmono, Arial, sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 100%;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 8px;
    z-index: 2;
}

.event-card__meta {
    color: #0a0a0a;
    text-align: center;
    font-family: Ppfraktionmono, Arial, sans-serif;
    font-size: clamp(12px, 1.2vw, 16px);
    font-weight: 300;
    line-height: 110%;
    align-self: stretch;
    padding-top: 8px;
}

.event-card__name {
    color: #0a0a0a;
    text-align: center;
    font-family: Ppfraktionmono, Arial, sans-serif;
    font-size: clamp(14px, 1.5vw, 20px);
    font-weight: 300;
    line-height: 110%;
    text-transform: uppercase;
    align-self: stretch;
    padding-top: 1rem;
}

.section_events .divider-line {
    margin-bottom: 0;
    margin-top: 0;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    line-height: 0;
}

.section_events .divider-ellipse {
    position: relative;
    z-index: 2;
    margin-top: clamp(-260px, -20vw, -80px);
}


@media (max-width: 900px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
}
/* ── Divider lines ────────────────────────────── */
.section_dividers {
    background: linear-gradient(to bottom, #0a0a0a 50%, #fff 50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.section_events .about-divider-v {
    display: flex;
    justify-content: center;
    line-height: 0;
    margin: -2rem 0;
}

.section_events .about-divider-v svg {
    display: block;
}

.section_events .divider-ellipse {
    line-height: 0;
    padding-bottom: 0;
}
.divider-line {
    display: flex;
    justify-content: center;
    line-height: 0;
}

.divider-line svg {
    display: block;
}

.divider-line--top {
    margin-bottom: -132px;
    position: relative;
    z-index: 2;
}

.divider-line--bottom {
    position: relative;
    z-index: 2;
}

.divider-ellipse {
    display: flex;
    justify-content: center;
    line-height: 0;
    width: 100%;
}

.divider-ellipse img {
    display: block;
    width: auto;
    height: auto;
}

.ellipse-responsive {
    display: block;
    width: clamp(40px, 5vw, 80px);
    height: auto;
    max-width: 100%;
}

/* ── Footer ───────────────────────────────────── */
.footer {
    position: relative;
    background-color: #ecd5d5;
    overflow: hidden;
}


@keyframes drawDown {
    from { clip-path: inset(0 0 100% 0); }
    to   { clip-path: inset(0 0 0% 0); }
}

.footer-top-line {
    display: flex;
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 2;
    line-height: 0;
    margin-top: -1px;
}

.footer-top-line svg {
    display: block;
    clip-path: inset(0 0 100% 0);
}

.footer-top-line.animate svg {
    animation: drawDown 0.8s ease forwards;
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}


@keyframes gradientDrift {
    0%   { transform: scale(1.1) translate(0, -4%);    filter: brightness(1) saturate(1); }
    25%  { transform: scale(1.15) translate(4%, 0);    filter: brightness(1.1) saturate(1.2); }
    50%  { transform: scale(1.1) translate(0, 4%);     filter: brightness(0.95) saturate(0.9); }
    75%  { transform: scale(1.15) translate(-4%, 0);   filter: brightness(1.1) saturate(1.2); }
    100% { transform: scale(1.1) translate(0, -4%);    filter: brightness(1) saturate(1); }
}

.footer-bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transform: scale(1.1);
    animation: gradientDrift 16s linear infinite;
    will-change: transform, filter;
}
.footer-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
    margin-bottom: 0;
}

.footer-venues {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem 1.25rem;
}

.footer-venues__title {
    color: #0a0a0a;
    text-align: center;
    font-family: Ppfraktionmono, Arial, sans-serif;
    font-size: 32px;
    font-weight: 300;
    line-height: 100%;
    text-transform: capitalize;
    align-self: stretch;
}

.footer-venues__body {
    color: #0a0a0a;
    text-align: center;
    font-family: Ppfraktionmono, Arial, sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 110%;
    align-self: stretch;
}

.footer-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    border: 0.5px solid #b7b7b7;
}

.footer-card {
    display: grid;
    grid-template-rows: auto 1fr;
    padding: 24px;
    align-self: stretch;
    gap: 0;
}
.footer-card--border {
    border-right: 0.5px solid #b7b7b7;
}

.footer-card__header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 58px;
}

.footer-card__dot {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    background-color: #ba0000;
    flex-shrink: 0;
}

.footer-card__title {
    color: #0a0a0a;
    font-family: Ppfraktionmono, Arial, sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 110%;
    text-transform: uppercase;
}

.footer-card__body {
    color: #0a0a0a;
    font-family: Ppfraktionmono, Arial, sans-serif;
    font-size: clamp(15px, 1.5vw, 18px);
    font-weight: 300;
    line-height: 110%;
    align-self: start;
    min-height: unset;
}

.footer-divider {
    width: 100%;
    height: 0;
    border-top: 0.5px solid #b7b7b7;
}

.footer-bottom {
    display: flex;
    width: 100%;
    padding: 80px 20px 80px 20px;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8rem;
    margin-bottom: 0;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
}

.footer-contact__title {
    color: #0a0a0a;
    font-family: Ppfraktionmono, Arial, sans-serif;
    font-size: 32px;
    font-weight: 300;
    line-height: 100%;
    text-transform: capitalize;
}

.footer-signup {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.footer-signup__header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-signup__dot {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    background-color: #ba0000;
    flex-shrink: 0;
}

.footer-card__title {
    color: #0a0a0a;
    font-family: Ppfraktionmono, Arial, sans-serif;
    font-size: clamp(14px, 1.5vw, 20px);
    font-weight: 300;
    line-height: 110%;
    text-transform: uppercase;
}

.footer-signup__body {
    color: #0a0a0a;
    font-family: Ppfraktionmono, Arial, sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 110%;
}

.footer-signup__form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-signup__row {
    display: flex;
    padding: 8px 0;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-bottom: 0.5px solid #0a0a0a;
}

.footer-signup__input {
    background: transparent;
    border: none;
    outline: none;
    color: #0a0a0a;
    font-family: Ppfraktionmono, Arial, sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 110%;
    flex: 1;
}

.footer-signup__input::placeholder {
    color: #0a0a0a;
    opacity: 0.6;
}
.footer-signup__title {
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 110%; /* 22px */
    text-transform: uppercase;
}

.footer-signup__btn {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #0a0a0a;
    font-family: Ppfraktionmono, Arial, sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 110%;
    text-transform: uppercase;
    padding: 0;
}

.footer-signup__btn:hover { opacity: 0.6; }

.footer-signup__success {
    display: none;
    color: #0a0a0a;
    font-family: Ppfraktionmono, Arial, sans-serif;
    font-size: 14px;
    font-weight: 300;
    opacity: 0.7;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 0.7;
}

.footer-info__body {
    color: #0a0a0a;
    font-family: Ppfraktionmono, Arial, sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 110%;
}

@media (max-width: 900px) {
    .footer-bottom {
        flex-direction: column;
        padding: 3rem 1.25rem;
        gap: 3rem;
    }

    .footer-contact {
        padding-bottom: 1.5rem;
    }

    .footer-signup {
        max-width: 100%;
        padding-bottom: 2rem;
    }

    .footer-cards {
        grid-template-columns: 1fr;
    }

    .footer-card--border {
        border-right: none;
        border-bottom: 0.5px solid #b7b7b7;
    }
}


/* Animations */

/* Divider animations */
@keyframes drawDown {
    from { clip-path: inset(0 0 100% 0); }
    to   { clip-path: inset(0 0 0% 0); }
}
@keyframes expandWidth {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}

.section_dividers .divider-v--top svg { clip-path: inset(0 0 100% 0); }
.section_dividers .divider-h--mid { transform: scaleX(0); transform-origin: center; }
.section_dividers .divider-v--bottom svg { clip-path: inset(0 0 100% 0); }

.section_dividers.animate .divider-v--top svg { animation: drawDown 0.6s ease forwards; }
.section_dividers.animate .divider-h--mid { animation: expandWidth 0.5s ease 0.6s forwards; }
.section_dividers.animate .divider-v--bottom svg { animation: drawDown 0.6s ease 1.1s forwards; }

/* about matariki animation */

/*@keyframes ellipseDrift {*/
/*    0%   { transform: translate(-50%, -50%) scale(1) rotate(0deg);    filter: brightness(1) saturate(1); }*/
/*    25%  { transform: translate(-48%, -52%) scale(1.05) rotate(2deg); filter: brightness(1.1) saturate(1.2); }*/
/*    50%  { transform: translate(-50%, -48%) scale(1) rotate(0deg);    filter: brightness(0.95) saturate(0.9); }*/
/*    75%  { transform: translate(-52%, -52%) scale(1.05) rotate(-2deg);filter: brightness(1.1) saturate(1.2); }*/
/*    100% { transform: translate(-50%, -50%) scale(1) rotate(0deg);    filter: brightness(1) saturate(1); }*/
/*}*/

/*.ellipse-bg {*/
/*    animation: ellipseFade 6s ease-in-out infinite;*/
/*    will-change: opacity, transform;*/
/*}*/

@keyframes ellipseFade {
    0%   { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
    50%  { opacity: 1;   transform: translate(-50%, -50%) scale(1.05); }
    100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
}

.ellipse-bg {
    animation: ellipseFade 6s ease-in-out infinite;
    will-change: opacity, transform;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
}

.reveal.visible {
    animation: fadeUp 0.8s ease forwards;
}

/* ── Event Modal ──────────────────────────────── */
.event-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.85);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}
.event-modal-overlay.active { display: flex; }

.event-modal {
    background: #0a0a0a;
    border: 0.5px solid #b7b7b7;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem 2rem 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 0.25rem 0.5rem;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.event-modal__close:hover { opacity: 1; }

.event-modal__title {
    color: #fff;
    font-family: Ppfraktionmono, Arial, sans-serif;
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 300;
    line-height: 110%;
    text-transform: uppercase;
    text-align: center;
    padding-right: 2rem;
}

.event-modal__meta {
    color: #b7b7b7;
    font-family: Ppfraktionmono, Arial, sans-serif;
    font-size: 13px;
    font-weight: 300;
    text-align: center;
}

.event-modal__image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.event-modal__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.event-modal__desc {
    color: #b7b7b7;
    font-family: Ppfraktionmono, Arial, sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 150%;
    text-align: center;
}

.event-modal__btn {
    display: inline-block;
    align-self: center;
    margin-top: 0.5rem;
    padding: 10px 28px;
    background: #fff;
    color: #0a0a0a;
    font-family: Ppfraktionmono, Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: background 0.2s, color 0.2s;
}
.event-modal__btn:hover { background: #ba0000; color: #fff; }
.event-modal__btn.hidden { display: none; }
