@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;1,9..144,300&family=DM+Sans:wght@300;400;500;700&display=swap');

:root,
[data-theme="light"] {
    color-scheme: light;
    --font-display: "Fraunces", Georgia, serif;
    --font-body: "DM Sans", Arial, sans-serif;
    --bg: #faf7f2;
    --bg-nav: #faf7f2;
    --surface: #fff;
    --surface-2: #f3ede3;
    --text: #1f1b16;
    --muted: #5f564d;
    --ink: #1f1b16;
    --ink-muted: #5f564d;
    --bg-callout: #f3ede3;
    --accent: #b05e3a;
    --accent-light: #f5eae4;
    --border: #e4dac8;
    --toggle-bg: #ede8df;
    --toggle-icon: #6b6459;
}

[data-theme="dark"] {
    --bg: #18150f;
    --bg-nav: #18150f;
    --surface: #201c14;
    --surface-2: #2a1a10;
    --text: #f0ebe1;
    --muted: #9a8f82;
    --ink: #f0ebe1;
    --ink-muted: #9a8f82;
    --bg-callout: #201c14;
    --accent: #d4825a;
    --accent-light: #2a1a10;
    --border: #2e2820;
    --toggle-bg: #2e2820;
    --toggle-icon: #9a8f82;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
}

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

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

.container {
    width: min(1080px, calc(100% - 1.5rem));
    margin: 0 auto;
}

nav {
    position: sticky;
    top: 0;
    z-index: 10;
    background: var(--bg-nav);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(8px);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
}

#cursor-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity .3s, width .2s, height .2s, background .3s;
}

body.cursor-on-link #cursor-dot {
    width: 20px;
    height: 20px;
    opacity: .25;
}

.theme-toggle {
    background: var(--toggle-bg);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    color: var(--toggle-icon);
    transition: background .3s, transform .2s;
}

.theme-toggle:hover {
    opacity: .85;
    transform: rotate(12deg);
}

.theme-toggle svg {
    width: 15px;
    height: 15px;
}

[data-theme="light"] .icon-sun {
    display: none;
}

[data-theme="light"] .icon-moon {
    display: block;
}

[data-theme="dark"] .icon-moon {
    display: none;
}

[data-theme="dark"] .icon-sun {
    display: block;
}

.brand {
    font-family: var(--font-display);
    font-size: 1.05rem;
    text-decoration: none;
    color: var(--text);
    letter-spacing: 0.01em;
}

.nav-links {
    display: flex;
    gap: 1.75rem;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width .25s;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--accent);
    font-weight: 500;
}

.nav-links a.active::after {
    width: 100%;
}

main {
    padding: 2rem 0 4rem;
}

.page-hero {
    margin-bottom: 1.25rem;
}

/* Break the hero out of centered containers for full-width presentation */
.page-hero-full {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.page-hero-banner {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid var(--border);
    min-height: clamp(420px, 70vh, 620px);
    background: linear-gradient(160deg, var(--accent-light) 0%, var(--border) 100%);
}

.page-hero-banner img {
    width: 100%;
    height: clamp(420px, 70vh, 620px);
    object-fit: cover;
    object-position: center 15%;
    filter: brightness(0.92) contrast(1.04);
}

/* Keep the About hero portrait framed higher so the face is visible. */
.about-hero-image {
    object-position: center 20%;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.08) 10%, rgba(0, 0, 0, 0.45) 72%, rgba(0, 0, 0, 0.72) 100%);
}

.page-hero-copy {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: .6rem;
    padding: 2rem 1.25rem 1.5rem;
    color: #fff;
    width: min(1080px, calc(100% - 1.5rem));
    margin: 0 auto;
}

.page-hero-copy h1,
.page-hero-copy p {
    color: #fff;
}

.section-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.35rem;
}

.page-section {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.hero-card,
.card,
.mini-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.25rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .04);
}

.hero-card {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}

.kicker {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent);
    font-size: .78rem;
    font-weight: 700;
}

h1,
h2,
h3 {
    line-height: 1.1;
    font-family: var(--font-display);
    font-weight: 300;
}

h1 {
    font-size: clamp(2rem, 6vw, 3.4rem);
    margin: 0;
}

h2 {
    font-size: clamp(1.4rem, 4vw, 2rem);
    margin-bottom: .5rem;
}

p {
    color: var(--muted);
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-d1 {
    transition-delay: .08s;
}

.reveal-d2 {
    transition-delay: .16s;
}

.reveal-d3 {
    transition-delay: .24s;
}

.reveal-d4 {
    transition-delay: .32s;
}

.reveal-d5 {
    transition-delay: .40s;
}

.card:hover {
    border-color: var(--accent);
    transform: translateY(-1px);
    transition: all .2s ease;
}

.badge-row {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}

.badge {
    display: inline-block;
    padding: .35rem .55rem;
    border-radius: 999px;
    background: var(--surface-2);
    color: var(--text);
    font-size: .82rem;
    border: 1px solid var(--border);
}

.grid {
    display: grid;
    gap: 1rem;
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.card-list {
    display: grid;
    gap: .75rem;
}

/* Keep wrapped links looking like plain cards, not underlined links */
a.card,
a.card-item,
a.card-featured {
    text-decoration: none;
}

.card a {
    text-decoration: none;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: .5rem;
}

.button {
    display: inline-block;
    padding: .75rem 1rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid var(--accent);
    background: var(--accent);
    color: #fff;
}

.button.secondary {
    background: transparent;
    color: var(--text);
}

.page-hero-copy .button.secondary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.08);
}

.page-hero-copy .button.secondary:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

/* ============================================================
           ABOUT
        ============================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--ink);
    font-weight: 300;
}

.about-text p+p {
    margin-top: 1.1rem;
}

.cred-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cred-item {
    background: var(--bg-callout);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    transition:
        background 0.3s,
        border-color 0.3s,
        transform 0.2s,
        box-shadow 0.2s;
    cursor: default;
}

/* Lift on hover */
.cred-item:hover {
    transform: translateX(4px);
    border-color: var(--accent);
}

.cred-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 0.2rem;
}

.cred-value {
    font-size: 0.88rem;
    color: var(--ink);
    font-weight: 400;
    line-height: 1.5;
}

/* ============================================================
       SECTION LABEL
    ============================================================ */
.section-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.collapse-toggle {
    appearance: none;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--ink-muted);
    border-radius: 999px;
    padding: 0.65rem 0.95rem;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s, transform 0.2s, background 0.2s;
}

.collapse-toggle:hover {
    color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-1px);
}

.section-body {
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.3s ease, margin 0.35s ease;
    max-height: 9999px;
    opacity: 1;
}

.section-collapsed .section-body {
    max-height: 0;
    opacity: 0;
    margin: 0;
}

/* ============================================================
           CARD LIST
        ============================================================ */
.card-list {
    display: flex;
    flex-direction: column;
}

.card-item {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition:
        border-color 0.3s,
        background 0.2s,
        padding-left 0.25s;
    border-radius: 4px;
}

.card-item:first-child {
    border-top: 1px solid var(--border);
}

.card-item-inner {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.card-tag {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--accent);
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.4;
    transition: color 0.2s;
}

.card-meta {
    font-size: 0.85rem;
    color: var(--ink-muted);
}

.card-arrow {
    font-size: 1rem;
    color: var(--border);
    align-self: center;
    transition:
        color 0.2s,
        transform 0.25s;
}

/* Slide-indent + arrow slide on hover */
a.card-item:hover {
    padding-left: 0.5rem;
}

a.card-item:hover .card-arrow {
    color: var(--accent);
    transform: translateX(5px);
}

a.card-item:hover .card-title {
    color: var(--accent);
}

/* ============================================================
       FEATURED CARD
    ============================================================ */
.card-featured {
    background: var(--bg-callout);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 0.5rem;
    text-decoration: none;
    color: inherit;
    display: block;
    transition:
        background 0.3s,
        border-color 0.25s,
        transform 0.25s,
        box-shadow 0.25s;
}

.card-featured:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
}

[data-theme="dark"] .card-featured:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.card-featured:hover .card-title {
    color: var(--accent);
}

.card-featured .card-tag {
    margin-bottom: 0.4rem;
    display: block;
}

.card-featured .card-title {
    font-size: 1.15rem;
    transition: color 0.2s;
}

.card-featured .card-meta {
    margin-top: 0.4rem;
}

.card-featured {
    background: var(--bg-callout);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 0.5rem;
    text-decoration: none;
    color: inherit;
    display: block;
    transition:
        background 0.3s,
        border-color 0.25s,
        transform 0.25s,
        box-shadow 0.25s;
}

.card-featured:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
}

[data-theme="dark"] .card-featured:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.card-featured:hover .card-title {
    color: var(--accent);
}

.card-featured .card-tag {
    margin-bottom: 0.4rem;
    display: block;
}

.card-featured .card-title {
    font-size: 1.15rem;
    transition: color 0.2s;
}

.card-featured .card-meta {
    margin-top: 0.4rem;
}

/* ============================================================
           EVENTS / SPEAKING
        ============================================================ */
.event-list {
    display: flex;
    flex-direction: column;
}

.event-item {
    display: grid;
    grid-template-columns: 4.5rem 1fr;
    gap: 1.5rem;
    padding: 1.4rem 0;
    border-bottom: 1px solid var(--border);
    align-items: start;
    transition:
        border-color 0.3s,
        padding-left 0.25s;
}

a.event-item {
    text-decoration: none;
    color: inherit;
}

.event-item:first-child {
    border-top: 1px solid var(--border);
}

/* Slide-indent on hover */
.event-item:hover {
    padding-left: 0.5rem;
}

.event-date {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--ink-muted);
    line-height: 1.5;
    padding-top: 0.15rem;
}

.event-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 0.2rem;
    transition: color 0.2s;
}

.event-item:hover .event-title {
    color: var(--accent);
}

.event-desc {
    font-size: 0.875rem;
    color: var(--ink-muted);
}

.event-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 3px;
    padding: 0.15rem 0.45rem;
    margin-right: 0.4rem;
    vertical-align: middle;
    transition: background 0.3s;
}

.media-kit-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.9fr);
    gap: 1rem;
    align-items: stretch;
}

.media-kit-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .04);
}

.media-kit-card h2,
.media-kit-card h3 {
    margin-top: 0;
    margin-bottom: 0.6rem;
}

.media-kit-card p {
    margin-top: 0;
}

.media-kit-list,
.media-kit-facts {
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}

.media-kit-list li,
.media-kit-facts li {
    padding: 0.7rem 0;
    border-top: 1px solid var(--border);
    color: var(--muted);
}

.media-kit-list li:first-child,
.media-kit-facts li:first-child {
    border-top: 0;
    padding-top: 0;
}

.media-kit-facts strong {
    color: var(--text);
}

.media-kit-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.media-kit-actions .button.secondary {
    border-color: var(--border);
}

.media-kit-downloads {
    display: grid;
    gap: 0.75rem;
    margin-top: 1rem;
}

.media-kit-download {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: center;
    padding: 0.95rem 1rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface-2);
    color: var(--text);
    transition: border-color 0.2s, transform 0.2s;
}

.media-kit-download:hover {
    border-color: var(--accent);
    transform: translateY(-1px);
}

.media-kit-download span {
    color: var(--muted);
    font-size: 0.88rem;
}

/* ============================================================
           EVENT DETAIL PAGES
        ============================================================ */
.event-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.8fr);
    gap: 1rem;
    align-items: start;
}

.event-detail-section {
    display: grid;
    gap: 1rem;
}

.event-meta-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.event-meta-list li {
    border-top: 1px solid var(--border);
    padding-top: 0.75rem;
    color: var(--muted);
}

.event-meta-list li:first-child {
    border-top: 0;
    padding-top: 0;
}

.event-meta-list strong {
    color: var(--text);
}

.event-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.event-gallery-item {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface-2);
}

.event-gallery-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center 18%;
}

.event-gallery-item figcaption {
    font-size: 0.78rem;
    color: var(--ink-muted);
    padding: 0.45rem 0.6rem 0.55rem;
}

.event-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.event-nav-row {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* ============================================================
           CONTACT & FOOTER
        ============================================================ */
#contact {
    padding-bottom: 4rem;
}

.contact-heading {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 1rem;
}

.contact-heading em {
    font-style: italic;
    color: var(--accent);
}

.contact-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1.75rem;
}

.contact-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1.5px solid var(--accent);
    padding-bottom: 1px;
    transition:
        color 0.2s,
        transform 0.2s;
}

.contact-links a:hover {
    color: var(--accent);
    transform: translateY(-1px);
}

/* ############ Featured Media Card ############ */
.featured {
    padding: 20rem 0;
    border-top: 20px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.featured-label {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.75rem;
}

.featured h2 {
    margin-bottom: 0.5rem;
}

.featured-description {
    max-width: 650px;
    margin: 0 auto 3rem;
    color: var(--muted);
}

.featured-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    align-items: center;
}

.featured-logos img {
    width: 100%;
    max-height: 55px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.25s ease;
}

.featured-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}


.footer-line {
    margin-top: 4rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    font-size: 0.78rem;
    color: var(--ink-muted);
    transition: border-color 0.3s;
}

footer {
    border-top: 1px solid var(--border);
    padding: 1rem 0 2rem;
    color: var(--muted);
    font-size: .92rem;
}

/* #Hero */

#hero {
    padding: 0;
    border-top: none;
    position: relative;
    overflow: hidden;
}

.hero-photo {
    width: 100%;
    height: clamp(420px, 70vh, 620px);
    object-fit: cover;
    object-position: center 20%;
    display: block;
    background: linear-gradient(160deg,
            var(--accent-light) 0%,
            var(--border) 100%);
    filter: brightness(0.88) contrast(1.04);
    /* Gentle scale-in on load */
    animation:
        fadeIn 0.8s ease both,
        heroScale 6s ease both;
}

.hero-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            transparent 30%,
            rgba(0, 0, 0, 0.15) 55%,
            rgba(0, 0, 0, 0.65) 100%);
    pointer-events: none;
}

.hero-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 1.5rem 2.75rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.6rem;
    animation: fadeUp 0.7s 0.3s ease both;
}

.hero-name {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 4rem);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: #fff;
    margin-bottom: 1rem;
    animation: fadeUp 0.7s 0.5s ease both;
}

.hero-name em {
    font-style: italic;
    color: #f4c5a8;
}

.hero-tagline {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    max-width: 460px;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.7s 0.7s ease both;
}

.hero-links {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    animation: fadeUp 0.7s 0.9s ease both;
}

.hero-links a {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 1px;
    transition:
        border-color 0.2s,
        color 0.2s,
        transform 0.2s;
}

.hero-links a:hover {
    color: #fff;
    border-color: #fff;
    transform: translateY(-1px);
}

/* #Hero */


@media (max-width: 840px) {

    .media-kit-grid {
        grid-template-columns: 1fr;
    }

    .event-detail-grid {
        grid-template-columns: 1fr;
    }

    .event-gallery {
        grid-template-columns: 1fr;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}