    :root {
        --cream: #f6efe4;
        --ink: #141414;
        --flame: #f1552a;
        --sun: #f8f17b;
        --rose: #eab2a5;
        --muted: #6b6b6b;
    }

    * {
        -webkit-font-smoothing: antialiased;
    }

    html,
    body {
        overflow-x: clip;
    }

    body {
        background: var(--cream);
        color: var(--ink);
        font-family: "Inter", sans-serif;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: "Fira Sans Condensed", sans-serif !important;
    }

    .font-display {
        font-family: "Fira Sans Condensed", sans-serif;
        letter-spacing: -.02em;
        line-height: .9;
    }



    .text-flame {
        color: var(--flame) !important;
    }

    .text-sun {
        color: var(--sun) !important;
    }

    .text-cream {
        color: var(--cream) !important;
    }

    .text-ink {
        color: var(--ink) !important;
    }

    .text-muted-2 {
        color: var(--muted);
    }

    .bg-flame {
        background: var(--flame) !important;
    }

    .bg-sun {
        background: var(--sun) !important;
    }

    .bg-cream {
        background: var(--cream) !important;
    }

    .bg-ink {
        background: var(--ink) !important;
    }

    .bg-rose {
        background: var(--rose) !important;
    }

    .brutal-border {
        border: 2px solid var(--ink);
    }

    .brutal-border-cream {
        border: 2px solid var(--cream);
    }

    .brutal-shadow {
        box-shadow: 8px 8px 0 var(--ink);
    }

    .brutal-shadow-sm {
        box-shadow: 4px 4px 0 var(--ink);
    }

    .btn-brutal {
        display: inline-flex;
        align-items: center;
        gap: .5rem;
        padding: .9rem 1.5rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: .12em;
        border: 2px solid var(--ink);
        background: var(--flame);
        color: #ffffff;
        box-shadow: 8px 8px 0 var(--ink);
        text-decoration: none;
        transition: transform .15s ease, box-shadow .15s ease, background .2s;
    }

    .btn-brutal:hover {
        transform: translate(2px, 2px);
        box-shadow: 2px 2px 0 var(--ink);
        color: var(--ink);
    }

    .btn-brutal.sm {
        padding: .55rem 1rem;
        box-shadow: 4px 4px 0 var(--ink);
        font-size: .8rem;
    }

    .btn-outline-cream {
        display: inline-flex;
        align-items: center;
        gap: .5rem;
        padding: .9rem 1.5rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: .12em;
        border: 2px solid #000000;
        color: black;
        background: transparent;
        text-decoration: none;
    }

    .btn-outline-cream:hover {
        background: var(--cream);
        color: var(--ink);
    }

    /* Nav */
    .navbar-reframe {
        position: sticky;
        top: 0;
        z-index: 1030;
        background: rgba(246, 239, 228, .9);
        backdrop-filter: blur(8px);
        border-bottom: 2px solid var(--ink);
    }

    .nav-link-brutal {
        color: var(--ink);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .08em;
        font-size: .85rem;
        text-decoration: none;
    }

    .nav-link-brutal:hover {
        color: var(--flame);
    }

    /* Hero */
    .hero {
        position: relative;

        color: var(--cream);
        border-bottom: 2px solid var(--ink);
        overflow: hidden;
    }

    .hero .blob {
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
        will-change: transform;
    }

    .hero .blob.sun {
        background: #f8f17b1c;
        mix-blend-mode: screen;
        width: 420px;
        height: 420px;
        right: -80px;
        top: -80px;
        opacity: .9;
    }

    .hero .blob.rose {
        background: #eab2a552;
        width: 260px;
        height: 260px;
        left: -96px;
        bottom: 40px;
        opacity: .8;
    }

    .hero h1 {
        font-size: clamp(4rem, 18vw, 4.2rem);
        color: black;
        line-height: 90px;
    }

    .hero .frame-chip {
        display: inline-block;
        background: var(--sun);
        color: var(--ink);
        padding: 0 .8rem;
        border: 2px solid var(--ink);
    }

    .save-card {
        background: var(--cream);
        color: var(--ink);
        padding: 1.5rem;
    }

    .blink {
        animation: blink 1.2s infinite;
    }

    @keyframes blink {
        50% {
            opacity: .2;
        }
    }

    /* Marquee */
    .marquee {
        overflow: hidden;
        border-bottom: 2px solid var(--ink);
    }

    .marquee .track {
        display: flex;
        gap: 2.5rem;
        white-space: nowrap;
        font-size: clamp(1rem, 3.5vw, 1rem);
        animation: scroll 30s linear infinite;
        font-weight: 600;
    }

    @keyframes scroll {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-50%);
        }
    }

    /* Section title spacing */
    .section {
        border-bottom: 2px solid var(--ink);
    }

    .section-pad {
        padding: 6rem;
    }

    .eyebrow {
        font-family: "Inter", sans-serif;
        ;
        font-size: .75rem;
        text-transform: uppercase;
        letter-spacing: .2em;
        color: var(--flame);
    }

    h2.display-heading {

        font-size: clamp(2.5rem, 6vw, 5rem);
        line-height: .9;
    }

    /* Stats */
    .stat {
        background: #fff;
        border: 2px solid var(--ink);
        padding: 1rem;
    }

    .stat .n {
        font-size: 2.5rem;
        line-height: 1;
        font-weight: 700;
        line-height: 50px;
    }

    .stat .l {
        font-size: .7rem;
        text-transform: uppercase;
        letter-spacing: .2em;
        color: var(--muted);
    }

    /* Countdown */
    .countdown {
        background: var(--ink);
        color: var(--cream);
    }

    .cd-cell {
        border: 2px solid rgba(246, 239, 228, .3);
        background: rgba(246, 239, 228, .05);
        padding: 1.5rem;
        text-align: center;
    }

    .cd-cell .v {

        font-size: clamp(3rem, 7vw, 6rem);
        font-variant-numeric: tabular-nums;
    }

    .cd-cell .l {
        margin-top: .6rem;
        font-family: "Inter", sans-serif;
        ;
        font-size: .7rem;
        text-transform: uppercase;
        letter-spacing: .2em;
        color: var(--sun);
    }

    /* Speakers */
    .keynote {
        background: var(--flame);
        color: var(--cream);
        padding: 2rem;
        border: 2px solid var(--ink);
        box-shadow: 8px 8px 0 var(--ink);
    }

    .avatar-big {
        width: 160px;
        height: 160px;
        background: var(--sun);
        color: var(--ink);
        border: 2px solid var(--ink);
        display: flex;
        align-items: center;
        justify-content: center;

        font-size: 3rem;
        flex-shrink: 0;
    }

    .speakers-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2px;
        background: var(--ink);
        border: 2px solid var(--ink);
    }

    @media(min-width:768px) {
        .speakers-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media(min-width:1024px) {
        .speakers-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    .sp-card {
        background: var(--cream);
        padding: 1.25rem;
        position: relative;
        cursor: pointer;
        transition: background .2s;
    }

    .sp-card:hover {
        background: var(--sun);
    }

    .sp-card .init {
        width: 48px;
        height: 48px;
        border: 2px solid var(--ink);
        display: flex;
        align-items: center;
        justify-content: center;

        background: var(--cream);
    }

    .sp-card:hover .init {
        background: var(--flame);
        color: var(--cream);
    }

    .sp-card .arrow {
        position: absolute;
        right: .75rem;
        top: .75rem;
        transition: transform .2s;
    }

    .sp-card:hover .arrow {
        transform: rotate(45deg);
    }

    /* Schedule */
    .day-btn {
        border: 2px solid var(--ink);
        background: var(--cream);
        color: var(--ink);
        padding: .55rem 1rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .8rem;
        cursor: pointer;
    }

    .day-btn.active {
        background: var(--ink);
        color: var(--cream);
    }

    .day-btn:not(.active):hover {
        background: var(--flame);
        color: var(--cream);
    }

    .sched-list {
        border: 2px solid var(--ink);
        background: var(--cream);
    }

    .sched-item {
        display: grid;
        grid-template-columns: 80px 1fr auto;
        gap: 1rem;
        align-items: center;
        padding: 1.1rem 1.2rem;
        border-bottom: 2px solid var(--ink);
        transition: background .2s, color .2s;
    }

    .sched-item:last-child {
        border-bottom: 0;
    }

    .sched-item:hover {
        background: var(--flame);
        color: var(--cream);
    }

    .sched-item .t {
        font-family: "Inter", sans-serif;
        ;
        font-size: 1.1rem;
        font-variant-numeric: tabular-nums;
    }

    .sched-item .title {

        font-size: 1.15rem;
    }

    .tag {
        border: 2px solid var(--ink);
        background: var(--sun);
        color: var(--ink);
        padding: .15rem .5rem;
        font-size: .65rem;
        text-transform: uppercase;
        letter-spacing: .2em;
    }

    /* Map */
    .map-wrap {
        border: 2px solid var(--ink);
        box-shadow: 8px 8px 0 var(--ink);
        background: var(--cream);
    }

    .map-wrap iframe {
        display: block;
        width: 100%;
        height: 420px;
        border: 0;
    }

    .map-foot {
        border-top: 2px solid var(--ink);
        padding: .55rem 1rem;
        display: flex;
        justify-content: space-between;
        font-family: "Inter", sans-serif;
        ;
        font-size: .72rem;
        text-transform: uppercase;
        letter-spacing: .2em;
    }

    /* Archive */
    .archive {
        background: var(--ink);
        color: var(--cream);
    }

    .archive .year {

        color: var(--sun);
        font-size: clamp(6rem, 18vw, 14rem);
        line-height: .85;
    }

    .archive .theme {

        font-size: clamp(1.8rem, 4vw, 3rem);
    }

    .archive .quote-box {
        border: 2px solid var(--cream);
        background: rgba(246, 239, 228, .06);
        padding: 1.5rem;
    }

    .arch-btn {
        border: 2px solid var(--cream);
        background: transparent;
        color: var(--cream);
        padding: .7rem .8rem;
        cursor: pointer;
    }

    .arch-btn:hover {
        background: var(--cream);
        color: var(--ink);
    }

    .arch-dot {
        flex: 1;
        height: 8px;
        background: rgba(246, 239, 228, .2);
        border: 0;
        cursor: pointer;
    }

    .arch-dot.active {
        background: var(--sun);
    }

    .arch-btn.small {
        padding: .4rem .7rem;
        font-size: .72rem;
        text-transform: uppercase;
        letter-spacing: .12em;
    }

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

    .gallery-thumb {
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        border: 2px solid var(--cream);
        display: block;
        transition: transform .2s ease, opacity .2s ease;
    }

    .gallery-thumb:hover {
        transform: scale(1.02);
    }

    .gallery-thumb.is-hidden {
        display: none;
    }

    .stat-dark {
        border: 2px solid rgba(246, 239, 228, .3);
        padding: 1rem;
    }

    .stat-dark .n {

        font-size: 1.8rem;
    }

    .stat-dark .l {
        font-size: .7rem;
        text-transform: uppercase;
        letter-spacing: .2em;
        color: rgba(246, 239, 228, .7);
    }

    /* Register */
    .register {

        color: var(--cream);
    }

    .form-brutal {
        background: var(--cream);
        color: var(--ink);
        padding: 2rem;
        border: 2px solid var(--ink);
        box-shadow: 8px 8px 0 var(--ink);
    }

    .form-brutal .wpcf7-list-item-label,
    .form-brutal label {
        font-family: "Inter", sans-serif;
        ;
        font-size: .72rem;
        text-transform: uppercase;
        letter-spacing: .2em;
    }

    .form-brutal .form-control,
    .form-brutal .form-select {
        border: 2px solid var(--ink);
        border-radius: 0;
        background: var(--cream);
        padding: .85rem .8rem;
        font-weight: 500;
        box-shadow: none;
    }

    .form-brutal .form-control:focus,
    .form-brutal .form-select:focus {
        background: var(--sun);
        border-color: var(--ink);
        box-shadow: none;
    }

    .btn-submit {
        width: 100%;
        border: 2px solid var(--flame) !important;
        background: var(--flame)!important;
        color: var(--cream)!important;
        padding: 1rem!important;
        font-weight: 800!important;
        text-transform: uppercase!important;
        letter-spacing: .2em!important;
		border-radius: 0 !important;
    }

    .btn-submit:hover {
        background: var(--cream) !important;
        color: var(--flame) !important;
    }

    /* Footer */
    footer.site {
        background: var(--cream);
    }

    .foot-marquee {
        overflow: hidden;
        background: var(--sun);
        border-bottom: 2px solid var(--ink);
        border-top: 2px solid var(--ink);
        padding: 1.2rem 0;
    }

    .hover-flame:hover {
        color: var(--flame);
    }

    .terms-condtions .form-check-input{
        background: transparent;
    }
    .terms-condtions .wpcf7-list-item { 
        margin-bottom: 20px;
        display: block;
    }
.terms-condtions .wpcf7-list-item.last{
    margin: 0 !important;
}

.terms-condtions .wpcf7-list-item label {
  display: flex;
    gap: 5px;
}


.screen-reader-response ul {
display: none;
}
select.form-select,
select.form-control {
    appearance: auto;
    -webkit-appearance: auto;
    -moz-appearance: auto;
}

.wpcf7-not-valid-tip{
    color: red;
}




.wpcf7-form.init p {
 margin-bottom: 0;

}


.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500 !important;
    line-height: 1.2;
    color: var(--bs-heading-color);
}