:root {
    --red: #ad1d38;
    --red-dark: #86172f;
    --ink: #19172a;
    --navy: #302b4b;
    --cream: #fff8ef;
    --paper: #ffffff;
    --mist: #f3f5f8;
    --gold: #d9a44a;
    --green: #206a5d;
    --text: #363342;
    --muted: #686476;
    --line: rgba(25, 23, 42, 0.12);
    --shadow: 0 24px 70px rgba(25, 23, 42, 0.14);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    min-height: 100vh;
    margin: 0;
    background: var(--cream);
    color: var(--text);
}

body::before {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 0;
    width: min(760px, 68vw);
    aspect-ratio: 1.35 / 1;
    content: "";
    background: url("TSMIT_logo/TSMIT_logo_2024_transparent.png") center /
        contain no-repeat;
    opacity: 0.1;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

main,
.site-footer {
    position: relative;
    z-index: 1;
}

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

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1180px, calc(100% - 32px));
    min-height: 72px;
    margin: 16px auto 0;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 12px 40px rgba(25, 23, 42, 0.08);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    font-weight: 800;
    letter-spacing: 0;
    color: var(--ink);
}

.brand span {
    line-height: 1.05;
}

.brand img {
    width: 48px;
    height: 38px;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 12px;
    border-radius: 999px;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
    background: var(--mist);
    outline: none;
}

.site-nav .nav-action {
    background: var(--ink);
    color: white;
}

.site-nav .nav-action:hover,
.site-nav .nav-action:focus-visible {
    background: var(--red);
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--ink);
}

.menu-button span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 2px;
    background: white;
}

.hero,
.page-hero,
.section,
.site-footer {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

.hero {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 36px;
    align-items: center;
    min-height: calc(100vh - 104px);
    padding: 56px 0 72px;
}

.hero-copy {
    max-width: 720px;
}

.eyebrow,
.section-kicker,
.event-type {
    margin: 0 0 14px;
    color: var(--red);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 16px;
    color: var(--ink);
    font-size: clamp(3rem, 7.5vw, 6rem);
    line-height: 0.82;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 0;
    color: var(--ink);
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 12px;
    color: var(--ink);
    font-size: 1.35rem;
    line-height: 1.15;
}

.hero-lede {
    max-width: 650px;
    margin-bottom: 30px;
    color: var(--text);
    font-size: clamp(1.08rem, 2vw, 1.35rem);
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.page-hero {
    position: relative;
    isolation: isolate;
    padding: 112px 0 56px;
}

.page-hero h1 {
    max-width: 940px;
    font-size: clamp(2.5rem, 9vw, 4.5rem);
    line-height: 0.92;
}

.page-hero p:not(.eyebrow) {
    max-width: 760px;
    color: var(--text);
    font-size: clamp(1.08rem, 2vw, 1.35rem);
    line-height: 1.6;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-weight: 800;
}

.button.primary {
    background: var(--red);
    color: white;
    border-color: var(--red);
}

.button.secondary {
    background: rgba(255, 255, 255, 0.68);
    color: var(--ink);
}

.button:hover,
.button:focus-visible,
.text-link:hover,
.text-link:focus-visible,
.contact-list a:hover,
.contact-list a:focus-visible {
    transform: translateY(-2px);
    outline: none;
}

.hero-panel {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    border-radius: 8px;
    background:
        linear-gradient(
            135deg,
            rgba(134, 23, 47, 0.94),
            rgba(48, 43, 75, 0.94)
        ),
        var(--navy);
    box-shadow: var(--shadow);
}

.hero-panel::before {
    position: absolute;
    inset: 22px;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.hero-panel::after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 62%;
    height: 54%;
    content: "";
    background:
        linear-gradient(
            90deg,
            transparent 0 18%,
            rgba(255, 255, 255, 0.12) 18% 22%,
            transparent 22% 44%,
            rgba(255, 255, 255, 0.12) 44% 48%,
            transparent 48%
        ),
        linear-gradient(0deg, rgba(217, 164, 74, 0.95), rgba(32, 106, 93, 0.95));
    clip-path: polygon(42% 0, 100% 28%, 100% 100%, 0 100%);
}

.hero-panel img {
    position: relative;
    z-index: 2;
    max-width: min(72%, 350px);
    max-height: 50%;
    margin: 76px auto 0;
}

.hero-facts {
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 28px;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-facts span {
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    font-size: 0.85rem;
    font-weight: 800;
}

.section {
    padding: 92px 0;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.85fr);
    gap: 56px;
    align-items: start;
}

.body-copy p,
.connect-copy p,
.event-content p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}

.body-copy p {
    font-size: 1.08rem;
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 44px;
}

.stat-row div {
    min-height: 132px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.7);
}

.stat-row strong {
    display: block;
    color: var(--red);
    font-size: 2.35rem;
    line-height: 1;
}

.stat-row span {
    display: block;
    margin-top: 12px;
    color: var(--muted);
    font-weight: 700;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.quick-card,
.timeline-list div,
.gallery-preview > div {
    border: 1px solid rgba(255, 255, 255, 0.86);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 18px 50px rgba(25, 23, 42, 0.08);
}

.quick-card {
    display: grid;
    align-content: space-between;
    padding: 24px;
}

.quick-card span,
.timeline-list span,
.staff-card span {
    color: var(--red);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.quick-card strong {
    color: var(--ink);
    font-size: 1.25rem;
    line-height: 1.35;
}

.social-feed-section {
    display: grid;
    grid-template-columns: minmax(250px, 0.86fr) minmax(360px, 520px);
    gap: 42px;
    align-items: start;
}

.social-feed-copy {
    position: sticky;
    top: 116px;
    padding: 36px;
    border: 1px solid rgba(255, 255, 255, 0.86);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 18px 50px rgba(25, 23, 42, 0.08);
}

.social-feed-copy h2 {
    max-width: 620px;
    font-size: clamp(2rem, 5vw, 4.2rem);
}

.social-feed-copy p {
    max-width: 560px;
    margin: 22px 0 28px;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.65;
}

.facebook-live-panel {
    width: min(100%, 540px);
    height: 760px;
    overflow: hidden;
    padding: 12px;
    border: 1px solid rgba(25, 23, 42, 0.12);
    border-left: 8px solid #3659b8;
    border-radius: 8px;
    background: #f4f6ff;
    box-shadow: var(--shadow);
}

.facebook-live-panel iframe {
    display: block;
    width: 100%;
    height: 100%;
    background: white;
}

.compact-title {
    max-width: 820px;
    margin-bottom: 28px;
    font-size: clamp(2rem, 5vw, 4rem);
}

.timeline-list {
    display: grid;
    gap: 14px;
}

.event-season-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 18px;
}

.timeline-list div {
    display: grid;
    gap: 8px;
    padding: 22px;
}

.timeline-list strong {
    color: var(--ink);
    font-size: 1.1rem;
    line-height: 1.45;
}

.timeline-list p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

.gallery-preview {
    display: grid;
    grid-template-columns: 0.8fr repeat(3, 1fr);
    gap: 16px;
}

.gallery-preview > div {
    display: grid;
    align-content: center;
    min-height: 260px;
    padding: 26px;
}

.gallery-preview img {
    width: min(260px, 100%);
    margin: auto;
}

.gallery-preview strong {
    color: var(--ink);
    font-size: 1.6rem;
    line-height: 1.15;
}

.gallery-preview span {
    margin-top: 12px;
    color: var(--muted);
    line-height: 1.65;
}

.gallery-preview a {
    margin-top: 18px;
    color: var(--red);
    font-weight: 800;
}

.latest-social {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.6fr);
    gap: 28px;
    align-items: center;
    margin-bottom: 42px;
    padding: 44px;
    border-radius: 8px;
    background: var(--ink);
    color: white;
    box-shadow: var(--shadow);
}

.latest-social h2,
.latest-social .section-kicker {
    color: white;
}

.latest-social p {
    max-width: 660px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 1.05rem;
    line-height: 1.65;
}

.instagram-card {
    display: grid;
    gap: 8px;
    justify-items: start;
    min-height: 260px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background:
        linear-gradient(
            135deg,
            rgba(173, 29, 56, 0.32),
            rgba(217, 164, 74, 0.24)
        ),
        rgba(255, 255, 255, 0.08);
}

.instagram-card img {
    width: 128px;
    height: 98px;
    object-fit: contain;
    margin-bottom: 16px;
}

.instagram-card span {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.instagram-card strong {
    color: white;
    font-size: 1.55rem;
    line-height: 1.15;
}

.instagram-card small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    line-height: 1.45;
}

.org-chart {
    position: relative;
}

.org-root {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 22px;
    align-items: center;
    width: min(620px, 100%);
    margin: 0 auto;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow);
}

.org-root img {
    width: 120px;
    height: 92px;
    object-fit: contain;
    flex: 0 0 auto;
}

.org-root span {
    color: var(--red);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.org-root h2 {
    margin: 6px 0 8px;
    font-size: clamp(1.9rem, 4vw, 3rem);
}

.org-root p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.org-branch {
    display: none;
}

.staff-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.role-chart {
    display: grid;
    gap: 0;
}

.role-chart .org-branch {
    height: 58px;
}

.role-chart .org-branch.short {
    width: 50%;
    height: 48px;
}

.role-chart .org-branch.wide {
    width: min(72%, 760px);
    height: 58px;
}

.org-level {
    position: relative;
    display: grid;
    gap: 18px;
    margin: 34px auto 0;
    width: 100%;
}

.president-level {
    width: min(360px, 100%);
}

.vp-level {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(760px, 100%);
}

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

.event-level,
.standalone-officer-level,
.puzzle-level {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.standalone-officer-level {
    width: min(760px, 100%);
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.org-section-label {
    width: fit-content;
    margin: 42px auto 18px;
    padding: 10px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--red);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.staff-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.86);
    border-radius: 8px;
    background: white;
    box-shadow: 0 18px 50px rgba(25, 23, 42, 0.08);
}

.staff-card::before {
    display: none;
}

.staff-card img {
    width: 100%;
    aspect-ratio: 1 / 1.1;
    object-fit: cover;
    background: var(--mist);
}

.staff-card div {
    padding: 18px;
}

.staff-card h3 {
    margin: 8px 0 0;
    font-size: 1.08rem;
    line-height: 1.25;
}

.staff-card p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.45;
}

.role-card img {
    aspect-ratio: 1 / 0.95;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}

.section-heading h2 {
    max-width: 760px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
    font-weight: 800;
    white-space: nowrap;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.event-card {
    overflow: hidden;
    min-height: 430px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    background: white;
    box-shadow: 0 18px 50px rgba(25, 23, 42, 0.08);
}

.event-art {
    position: relative;
    height: 188px;
    overflow: hidden;
    background: var(--mist);
}

.event-art.has-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-art::before,
.event-art::after,
.event-art span {
    position: absolute;
    content: "";
}

.foliage .event-art {
    background: linear-gradient(160deg, #f2c46d, #a94f2c 54%, #335c57);
}

.foliage .event-art::before {
    right: -40px;
    bottom: -34px;
    width: 210px;
    height: 120px;
    background: #203c49;
    clip-path: polygon(0 100%, 42% 0, 100% 100%);
}

.foliage .event-art span {
    left: 26px;
    bottom: 26px;
    width: 108px;
    height: 108px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.lights .event-art {
    background: linear-gradient(160deg, #241f3b, #7d2143 58%, #d9a44a);
}

.lights .event-art::before {
    inset: 40px 62px auto auto;
    width: 58px;
    height: 58px;
    border-radius: 50% 50% 45% 45%;
    background: #ffd983;
    box-shadow:
        -82px 44px 0 rgba(255, 217, 131, 0.66),
        74px 78px 0 rgba(255, 217, 131, 0.48);
}

.lights .event-art span {
    left: 34px;
    right: 34px;
    bottom: 28px;
    height: 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
}

.welcome .event-art {
    background: linear-gradient(145deg, #ffffff, #ecedf3 45%, #ad1d38);
}

.welcome .event-art::before {
    left: 28px;
    top: 30px;
    width: 96px;
    height: 96px;
    border: 14px solid var(--red);
    border-radius: 50%;
}

.welcome .event-art::after {
    right: 34px;
    bottom: 26px;
    width: 112px;
    height: 72px;
    border-radius: 8px;
    background: var(--navy);
}

.night .event-art {
    background: linear-gradient(155deg, #151425, #302b4b 48%, #206a5d);
}

.night .event-art::before {
    left: 28px;
    right: 28px;
    bottom: 0;
    height: 72px;
    background: rgba(255, 255, 255, 0.16);
    clip-path: polygon(
        0 100%,
        10% 36%,
        20% 100%,
        32% 20%,
        45% 100%,
        58% 34%,
        72% 100%,
        84% 18%,
        100% 100%
    );
}

.night .event-art span {
    right: 34px;
    top: 30px;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: var(--gold);
}

.event-card-photo .event-art,
.event-card .event-art.has-photo {
    background: none;
}

.event-card-photo .event-art::before,
.event-card-photo .event-art::after,
.event-card-photo .event-art span,
.event-card .event-art.has-photo::before,
.event-card .event-art.has-photo::after,
.event-card .event-art.has-photo span {
    display: none !important;
    content: none !important;
}

.event-content {
    padding: 24px;
}

.event-content p:last-child {
    margin-bottom: 0;
}

.event-contact-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    margin-bottom: 38px;
    padding: 40px;
    border-radius: 8px;
    background: var(--ink);
    color: white;
    box-shadow: var(--shadow);
}

.event-contact-section h2,
.event-contact-section .section-kicker {
    color: white;
}

.event-contact-section h2 {
    font-size: clamp(2rem, 5vw, 3.6rem);
}

.event-contact-section p {
    max-width: 680px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 1.05rem;
    line-height: 1.65;
}

.connect-section {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
    gap: 48px;
    align-items: center;
    margin-bottom: 56px;
    padding: 56px;
    border-radius: 8px;
    background: var(--ink);
    color: white;
    box-shadow: var(--shadow);
}

.connect-section h2,
.connect-section .section-kicker {
    color: white;
}

.connect-copy p {
    max-width: 640px;
    color: rgba(255, 255, 255, 0.76);
}

.contact-panel {
    display: grid;
    gap: 14px;
}

.message-form {
    display: grid;
    gap: 10px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.message-form label {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.message-form input,
.message-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    font: inherit;
}

.message-form input {
    min-height: 44px;
    padding: 0 12px;
}

.message-form textarea {
    min-height: 112px;
    padding: 12px;
    resize: vertical;
}

.message-form input:focus,
.message-form textarea:focus {
    border-color: var(--gold);
    outline: 3px solid rgba(217, 164, 74, 0.24);
}

.message-form .button {
    width: 100%;
    border: 0;
    cursor: pointer;
    font: inherit;
}

.form-note {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.86rem;
    line-height: 1.5;
}

.contact-list {
    display: grid;
    gap: 12px;
}

.contact-list a {
    display: grid;
    gap: 4px;
    min-height: 86px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.contact-list span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.contact-list strong {
    color: white;
    overflow-wrap: anywhere;
}

.site-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0 40px;
    color: var(--muted);
    font-size: 0.92rem;
}

.site-footer p {
    margin: 0;
    color: var(--ink);
    font-weight: 800;
}

.site-footer a {
    font-weight: 800;
}

@media (max-width: 980px) {
    .hero,
    .split,
    .connect-section {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-top: 44px;
    }

    .hero-panel {
        min-height: 430px;
    }

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

@media (max-width: 720px) {
    .site-header {
        width: calc(100% - 20px);
        margin-top: 10px;
        border-radius: 8px;
    }

    .menu-button {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: white;
        box-shadow: 0 18px 50px rgba(25, 23, 42, 0.1);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        justify-content: flex-start;
    }

    .hero,
    .page-hero,
    .section,
    .site-footer {
        width: calc(100% - 24px);
    }

    .hero-panel {
        min-height: 360px;
    }

    .hero-panel img {
        width: min(82%, 300px);
        margin-top: 54px;
    }

    .section {
        padding: 64px 0;
    }
    .latest-social{
        padding: 64px 22px;
    }

    .stat-row,
    .event-grid,
    .quick-grid,
    .gallery-preview,
    .social-feed-section,
    .latest-social,
    .staff-grid,
    .vp-level,
    .officer-level,
    .standalone-officer-level,
    .event-level,
    .puzzle-level {
        grid-template-columns: 1fr;
    }

    .gallery-preview > div {
        min-height: 0px;
    }


    .org-root {
        display: grid;
        text-align: center;
    }

    .org-root img {
        margin: 0 auto;
    }

    .org-branch {
        width: 2px;
        height: 38px;
    }

    .role-chart .org-branch,
    .role-chart .org-branch.short,
    .role-chart .org-branch.wide {
        width: 2px;
        height: 38px;
    }

    .org-branch::after {
        display: none;
    }

    .staff-card::before {
        display: none;
    }

    .section-heading {
        display: block;
    }

    .section-heading .text-link {
        margin-top: 22px;
    }

    .social-feed-copy {
        position: static;
        padding: 28px 22px;
    }

    .facebook-live-panel {
        width: 100%;
        height: 680px;
    }

    .event-card {
        min-height: 0;
    }

    .connect-section {
        width: calc(100% - 24px);
        padding: 32px 20px;
    }

    .event-contact-section {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
}

@media (max-width: 431px) {
    .hero-panel img {
        width: min(82%, 250px);
        margin-top: 54px;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .button,
    .text-link,
    .contact-list a {
        transition:
            transform 180ms ease,
            background 180ms ease,
            color 180ms ease;
    }
}
