@import url('https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&display=swap');

:root {
  --orange: #ff9000;
  --pink: #ff017b;
  --charcoal: #393836;
  --gray: #6a6a6a;
  --footer: #191919;
  --line: #e6e6e6;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: #fff; color: var(--gray); font-family: 'PT Sans', sans-serif; font-size: 18px; line-height: 1.55; }
a { color: inherit; }
img { max-width: 100%; height: auto; }
:focus-visible { outline: 3px solid var(--pink); outline-offset: 4px; }
.hidden { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.h-3 { height: 0; }
.w-full { width: 100%; }
.bg-custom-blue { background: var(--orange); }
.bg-custom-green { background: var(--orange); }
.bg-light-brown { background: #fff; }
.text-custom-blue { color: var(--charcoal); }
.text-custom-green, .text-custom-brown { color: var(--orange); }

:root { --header-h: 135px; --header-h-stuck: 75px; --logo-h: 75px; --logo-scale-stuck: .667; }

/* fixed + spacer: shrinking the header never reflows the page below it */
.main-header { position: fixed; top: 0; right: 0; left: 0; z-index: 100; display: flex; height: var(--header-h); align-items: center; background: #fff; border-top: 1px solid var(--orange); border-bottom: 1px solid var(--line); will-change: height; }
.header-spacer { position: relative; height: var(--header-h); }
.header-sentinel { position: absolute; top: 0; left: 0; width: 1px; height: 61px; pointer-events: none; }
.main-header .container { position: relative; display: grid; width: min(1140px, calc(100% - 40px)); height: 100%; grid-template-columns: auto 1fr; align-items: center; margin: 0 auto; }
.logo { display: flex; height: var(--logo-h); align-items: center; text-decoration: none; transform-origin: left center; will-change: transform; }
.logo::before { display: none; }
.logo img { display: block; width: auto; height: 100%; object-fit: contain; }
.main_menu { grid-column: 2; }
.main_menu ul { margin: 0; padding: 0; list-style: none; }
.main_menu > ul { display: flex; align-items: center; justify-content: flex-end; gap: 0; }
.mobile.nav { display: none; }
.main_menu li { position: relative; }
.main_menu a { position: relative; display: block; padding: 0 17px; color: #666; font-size: 12px; font-weight: 400; letter-spacing: .02em; line-height: 1.6; text-decoration: none; text-transform: uppercase; transition: color .2s ease; }
.main_menu a:hover, .main_menu .current a { color: var(--orange); }
.main_menu li.current > a { color: var(--orange); }
.main_menu li ul { position: absolute; top: 100%; left: 0; display: none; min-width: 200px; padding: 0; border-top: 1px solid var(--orange); background: #393836; box-shadow: 0 12px 25px rgba(0,0,0,.18); }
.main_menu li:hover > ul { display: block; }
.main_menu li ul a { padding: 10px 17px; color: #fff; }
.main_menu li ul a:hover { background: var(--orange); color: #000; }
.search_item { display: flex; align-items: center; }
.search_toggle { width: 40px; height: 40px; margin: 0 0 0 4px; padding: 9px; border: 0; background: transparent; color: #666; }
.search_toggle:hover { background: transparent; color: var(--orange); box-shadow: none; transform: none; }
.search_toggle svg { display: block; width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.2; }

/* sticky shrink (135px -> 75px), driven by the scroll position itself */
@keyframes etk-header-shrink {
  from { height: var(--header-h); box-shadow: 0 2px 6px rgba(0,0,0,0); }
  to { height: var(--header-h-stuck); box-shadow: 0 2px 6px rgba(0,0,0,.06); }
}
@keyframes etk-logo-shrink {
  from { transform: scale(1); }
  to { transform: scale(var(--logo-scale-stuck)); }
}

@supports (animation-timeline: scroll()) {
  .main-header { animation: etk-header-shrink linear both; animation-timeline: scroll(root block); animation-range: 0 120px; }
  .main-header .logo { animation: etk-logo-shrink linear both; animation-timeline: scroll(root block); animation-range: 0 120px; }
}

/* fallback for browsers without scroll-driven animations (IntersectionObserver toggles .is-stuck) */
@supports not (animation-timeline: scroll()) {
  .main-header { transition: height .3s cubic-bezier(.25,.1,.25,1), box-shadow .3s ease; }
  .main-header .logo { transition: transform .3s cubic-bezier(.25,.1,.25,1); }
  .main-header.is-stuck { height: var(--header-h-stuck); box-shadow: 0 2px 6px rgba(0,0,0,.06); }
  .main-header.is-stuck .logo { transform: scale(var(--logo-scale-stuck)); }
}

@media (prefers-reduced-motion: reduce) {
  .main-header, .main-header .logo { animation: none !important; transition: none !important; }
}

.site-search { position: absolute; top: 0; right: 0; display: flex; width: min(650px, calc(100% - 280px)); height: 100%; align-items: center; justify-content: flex-end; gap: 16px; min-width: 0; }
.site-search[hidden] { display: none; }
.site-search__field, .search-page__field { display: flex; min-width: 0; flex: 1; gap: 8px; }
.site-search input, .search-page input { min-width: 0; flex: 1; padding: 9px 0; border: 0; border-bottom: 1px solid #cfcfcf; border-radius: 0; outline: 0; color: var(--charcoal); background: transparent; font: inherit; }
.site-search input:focus { border-bottom-color: var(--orange); }
.site-search button, .search-page button { margin: 0; padding: 11px 18px; border: 0; border-radius: 999px; background: var(--pink); color: #fff; font: inherit; font-weight: 700; cursor: pointer; }
.site-search__field > button { display: none; }
.site-search__close { width: 40px; height: 40px; padding: 8px !important; border-radius: 0 !important; background: transparent !important; color: #666 !important; }
.site-search__close:hover { color: var(--orange) !important; transform: none; box-shadow: none; }
.site-search__close svg { display: block; width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 3; }
.search-is-open .main_menu { display: none; }

.main__panel { min-height: 45vh; }
.layer_rows > * { position: relative; }
.layer_rows > .hero_wrapper { width: 100%; }
.layer_rows > h1, .layer_rows > h2, .layer_rows > h3, .layer_rows > p, .layer_rows > .inline_btn, .layer_rows > .max-w-5xl { width: min(1140px, calc(100% - 40px)); margin-inline: auto; }
.section-wrapper { width: 100%; max-width: none; padding: 20px 20px 36px; overflow: visible; background: var(--wrapper-bg, #ffffff); }
.section-wrapper--has-image { background-image: var(--wrapper-image); background-position: var(--wrapper-image-position, center center); background-size: var(--wrapper-image-fit, cover); background-repeat: no-repeat; }
.section-wrapper > .content_holder { width: min(1140px, 100%); margin-inline: auto; }
.section-wrapper--bottom-orange-v { padding-bottom: 130px; }
.section-wrapper--bottom-orange-v::after { position: absolute; right: 0; bottom: 0; left: 0; height: 130px; background-image: url('/assets/edge-orange-v.svg'); background-repeat: no-repeat; background-position: center bottom; background-size: 100% 100%; content: ''; pointer-events: none; }
.section-wrapper--bottom-orange-v > .content_holder { position: relative; z-index: 1; }
.section-wrapper--top-gray-diagonal { padding-top: 130px; background: #898989; color: #fff; }
.section-wrapper--top-gray-diagonal::before { position: absolute; top: 0; right: 0; left: 0; height: 130px; background-image: url('/assets/edge-orange-diagonal.svg'); background-repeat: no-repeat; background-position: center top; background-size: 100% 100%; content: ''; pointer-events: none; }
.section-wrapper--top-gray-diagonal > .content_holder { position: relative; z-index: 1; }
.section-wrapper .content_holder > h2 { padding: 55px 0 22px; font-size: clamp(2rem, 4vw, 2.8rem); text-align: center; }
.section-wrapper .content_holder > h3 { padding: 10px 0 16px; font-size: clamp(1.5rem, 2.6vw, 1.9rem); text-align: center; }
.section-wrapper .content_holder > p { max-width: 940px; margin: 0 auto; padding: 0 0 25px; font-size: 21px; line-height: 1.55; text-align: center; }
.section-wrapper .content_holder > .inline_btn { display: flex; width: max-content; margin-inline: auto; }
.section-wrapper .content_holder > .max-w-5xl { margin-inline: auto; }
.section-wrapper .content_holder .coll__2 p { font-size: 18px; line-height: 1.6; text-align: left; }
.section-wrapper .content_holder .coll__2 h3 { padding-bottom: 12px; font-size: 1.5rem; text-align: left; }
.organized_by { padding-top: 24px; }
figure.organized_by_logo { display: block; width: 300px; max-width: 100%; margin: 0 auto 24px; }
.organized_by_logo img { width: 100%; }
.venue_title { padding: 40px 0 26px; }
figure.venue_main { display: block; width: 260px; max-width: 100%; margin: 0 auto 20px; }
.venue_main img { width: 100%; }
.section-wrapper--top-gray-diagonal .col_img { display: block; margin-inline: auto; }
.section-wrapper--top-gray-diagonal .col_img img { width: 100%; max-height: 120px; object-fit: contain; }
.layer_rows .section-wrapper--top-gray-diagonal h1, .layer_rows .section-wrapper--top-gray-diagonal h2, .layer_rows .section-wrapper--top-gray-diagonal h3, .layer_rows .section-wrapper--top-gray-diagonal p { color: #fff; }
.layer_rows > .header:first-child { padding-top: 70px; }
.layer_rows h1, .layer_rows h2, .layer_rows h3 { margin: 0; color: var(--charcoal); font-weight: 700; line-height: 1.08; }
.layer_rows h1 { padding: 70px 0 25px; font-size: clamp(2.8rem, 6vw, 4.5rem); text-align: center; }
.layer_rows h2 { padding: 55px 0 22px; font-size: clamp(2rem, 4vw, 2.8rem); text-align: center; }
.layer_rows h3 { font-size: 1.8rem; }
.layer_rows > p { max-width: 940px; margin: 0 auto; padding: 0 20px 25px; font-size: calc(21px * var(--paragraph-scale, 1)); line-height: 1.55; text-align: center; }
.layer_rows > .home_intro { width: min(1140px, calc(100% - 40px)); max-width: 1140px; margin-right: auto; margin-left: auto; padding-right: 0; padding-left: 0; text-align: left; }
.layer_rows > h2.home_intro { padding-top: 50px; }
.layer_rows > p + p { padding-top: 0; }
.layer_rows *:not(button):not(input[type="submit"]):not([class~="btn"]):not([class~="inline_btn"]):not([class~="inline-btn"]):not([class~="circle-btn"]):not([class~="group-button"]) { padding-top: 0 !important; }
.section-wrapper .content_holder > p { font-size: calc(21px * var(--paragraph-scale, 1)); }
.layer_rows .coll__2 p, .section-wrapper .content_holder .coll__2 p { font-size: calc(18px * var(--paragraph-scale, 1)); }

.shape-divider { position: relative; z-index: 7; width: 100%; height: 0; overflow: visible; line-height: 0; background: transparent; }
.shape-divider svg { position: absolute; right: 0; left: 0; display: block; width: 100%; height: var(--shape-divider-height, 130px); }
.shape-divider--top svg { top: 0; }
.shape-divider--bottom svg { bottom: 0; }
.shape-divider--mirror svg { transform: scaleX(-1); }

.wrapper-text-light { color: #fff; }
.wrapper-text-light h1, .wrapper-text-light h2, .wrapper-text-light h3, .wrapper-text-light p, .wrapper-text-light a { color: #fff; }
.wrapper-text-dark { color: var(--charcoal); }

.quote_block { display: grid; min-height: 320px; grid-template-columns: minmax(40px, 1fr) auto minmax(40px, 1fr); align-items: center; gap: 28px; width: 100%; padding: 55px 7%; overflow: hidden; background: linear-gradient(112deg, #ff982f 0%, #f75a48 48%, #ed2871 100%); color: #fff; text-align: center; }
.quote_block__rule { width: 108px; height: 8px; justify-self: center; background: rgba(255, 255, 255, .48); }
.quote_block__content { width: min(1500px, 100%); margin: 0; padding: 0; }
.quote_block--horizontal { grid-template-columns: 1fr; grid-template-rows: auto 1fr auto; }
.quote_block--horizontal .quote_block__rule { width: 108px; height: 8px; }
.quote_block__text { margin: 0; color: #fff; font-size: clamp(2.35rem, 4vw, 4.2rem); font-weight: 400; line-height: 1.08; }
.quote_block__caption { display: block; margin-top: 22px; color: rgba(255, 255, 255, .78); font-size: 1rem; font-style: normal; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.section-wrapper .quote_block { background: transparent; color: inherit; }
.section-wrapper .quote_block__text { color: inherit; }
.section-wrapper .quote_block__caption { color: inherit; opacity: .78; }
.section-wrapper .quote_block__rule { background: currentColor; opacity: .48; }

.hero_wrapper { position: relative; display: block; min-height: 590px; overflow: hidden; background-color: #29212d; background-position: center; background-repeat: no-repeat; background-size: cover; color: #fff; }
.hero_wrapper > .absolute { position: absolute; inset: 0; }
.hero_wrapper > .bg-rgba-custom-blue { background: rgba(0, 0, 0, .52); }
.hero_wrapper > .bg-rgba-custom-green { background: linear-gradient(135deg, rgba(255, 144, 0, .17), rgba(255, 1, 123, .18)); }
.hero_wrapper > .max-w-screen-xl { position: relative; z-index: 1; display: flex; width: min(1140px, calc(100% - 40px)); min-height: 590px; align-items: center; justify-content: center; margin: 0 auto; }
.hero_wrapper .big_title { display: flex; max-width: 980px; min-height: 590px; flex-direction: column; align-items: center; justify-content: center; padding: 70px 20px; text-align: center; }
.hero_wrapper .hero_content_col { display: flex; width: 100%; max-width: 980px; min-height: 590px; flex-direction: column; align-items: center; justify-content: center; margin: 0 auto; padding: 70px 20px; text-align: center; }
.hero_wrapper .hero_eyebrow, .hero_wrapper .btns, .hero_wrapper .hero_content_col > * { text-align: center; }
.hero_wrapper h1, .hero_wrapper h2 { max-width: 940px; margin: 0; padding: 0; color: #fff; font-size: clamp(2.1rem, 3.4vw, 3.05rem); font-weight: 700; line-height: 1.12; text-shadow: 0 2px 20px rgba(0,0,0,.35); }
.hero_wrapper .hero_eyebrow p { margin: 0 0 6px; color: rgba(255,255,255,.94); font-size: clamp(1.05rem, 1.6vw, 1.35rem); font-weight: 400; line-height: 1.3; }
.hero_wrapper .btns { padding-top: 26px; }
.hero_wrapper .btns a { margin-bottom: 0; }
.hero_foreground { position: relative; z-index: 2; display: block; width: min(1024px, 100%); margin: 44px auto 0; }
.hero_foreground img { display: block; width: 100%; box-shadow: 0 15px 35px rgba(0,0,0,.34); }

button, .button, a.button, .inline_btn, input[type=submit], .btns a { display: inline-flex; align-items: center; justify-content: center; margin: 8px 6px 32px; padding: 15px 28px; border: 0; border-radius: 999px; background: var(--pink); color: #fff; cursor: pointer; font-family: 'PT Sans', sans-serif; font-size: 16px; font-weight: 700; line-height: 1.25; text-decoration: none; text-transform: none; transition: background .2s ease, transform .2s ease, box-shadow .2s ease; }
button:hover, .button:hover, a.button:hover, .inline_btn:hover, input[type=submit]:hover, .btns a:hover { background: #d90169; box-shadow: 0 9px 22px rgba(217, 1, 105, .24); transform: translateY(-2px); }
.layer_rows > .inline_btn { width: max-content; max-width: calc(100% - 40px); margin-right: auto; margin-left: auto; }
.layer_rows > .home_intro_button { display: flex; width: max-content; margin-top: 8px; margin-right: auto; margin-left: auto; }

.btns.flex { display: flex; flex-wrap: wrap; }
.btns.flex-col { flex-direction: column; }
.layer_rows .group-buttons { width: 100%; gap: 0; }
.layer_rows .group-buttons a.group-button { position: relative; display: inline-block; width: auto; max-width: calc(100% - 40px); min-height: 0; margin: 0 0 25px; padding: 32px 60px !important; border: 0; border-radius: 50px; background-color: var(--pink); color: #fff; cursor: pointer; font-family: 'PT Sans', Verdana, Geneva, sans-serif; font-size: 15px; font-weight: 700; line-height: 100%; outline: 0; text-align: center; text-decoration: none; vertical-align: middle; word-wrap: break-word; transition: color .2s ease-in-out, background .2s ease-in-out, border .2s ease-in-out; }
@media (max-width: 640px) { .layer_rows .group-buttons a.group-button { padding: 24px 32px !important; } }
.btns.justify-start { justify-content: flex-start; }
.btns.justify-center { justify-content: center; }
.btns.justify-end { justify-content: flex-end; }
.btns.items-start { align-items: flex-start; }
.btns.items-center { align-items: center; }
.btns.items-end { align-items: flex-end; }

.max-w-5xl { width: min(1024px, 100%); }
.mx-auto { margin-inline: auto; }
.colls { display: flex; flex-wrap: wrap; }
.colls > * { min-width: 0; padding: 24px; }
.max-w-5xl > .colls { display: block; }
.max-w-5xl > .colls > * { display: flex; width: 100%; flex-wrap: wrap; align-items: stretch; padding: 0; }
.max-w-5xl > .colls [class*=coll__] { min-width: 0; padding: 24px; }
.col_img { margin: 0; }
.col_img img { display: block; }
.col_img figcaption { padding-top: 8px; color: var(--gray); font-size: 15px; text-align: center; }
.clients_layer { padding: 18px 0 56px; }
.clients_layer__title { margin: 0 0 30px; padding: 0; color: var(--charcoal); font-size: clamp(1.9rem, 3.4vw, 2.5rem); font-weight: 700; line-height: 1.1; text-align: center; text-transform: uppercase; }
.sponsor_tier { margin: 0 auto; padding-bottom: 48px; }
.sponsor_tier h3 { margin: 0 0 25px; color: #6a6a6a; font-size: clamp(1.4rem, 2.6vw, 1.875rem); font-weight: 400; line-height: 1.15; text-align: center; }
.sponsor_tier--main h3 { font-weight: 700; }
.sponsor_grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: center; gap: 30px 40px; }
.sponsor_card { display: flex; min-height: 88px; align-items: center; justify-content: center; padding: 10px; color: inherit; text-decoration: none; transition: transform .2s ease; }
.sponsor_card:hover { transform: translateY(-3px); }
.sponsor_card img { display: block; width: 100%; max-height: 92px; object-fit: contain; }
.sponsor_name { display: inline-flex; align-items: center; justify-content: center; color: var(--gray); font-size: .9rem; font-weight: 700; text-align: center; text-transform: uppercase; }
.sponsor_tier--main .sponsor_grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.sponsor_tier--main .sponsor_card { min-height: 112px; }
.sponsor_tier--silver .sponsor_grid { grid-template-columns: minmax(180px, 280px); justify-content: center; }

.gallery_block { width: min(1140px, calc(100% - 40px)); margin: 0 auto; padding: 44px 0 72px; }
.gallery_block__title { margin: 0 0 46px; color: var(--charcoal); font-size: clamp(2.2rem, 4vw, 3.2rem); text-align: center; }
.gallery_album { margin: 0 0 64px; }
.gallery_album__header { margin-bottom: 24px; text-align: center; }
.gallery_album__header h3 { margin: 0 0 8px; color: var(--orange); font-size: clamp(1.6rem, 3vw, 2.25rem); }
.gallery_album__header p { max-width: 760px; margin: 0 auto 12px; }
.gallery_album__link { color: var(--pink); font-weight: 700; }
.gallery_grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 0; }
.gallery_item { position: relative; min-width: 0; margin: 0; }
.gallery_item a { position: relative; display: block; overflow: hidden; background: #f1f1f1; }
.gallery_item img { display: block; width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .35s ease, filter .35s ease; }
.gallery_item a::after { position: absolute; inset: 0; background: rgba(25,25,25,.35); content: ''; opacity: 0; transition: opacity .35s ease; }
.gallery_item a:hover img, .gallery_item a:focus-visible img { transform: scale(1.06); }
.gallery_item a:hover::after, .gallery_item a:focus-visible::after { opacity: 1; }
.gallery_item__zoom { position: absolute; top: 50%; left: 50%; z-index: 2; display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; background: var(--orange); color: #fff; font-size: 26px; line-height: 1; opacity: 0; transform: translate(-50%, -50%) scale(.6); transition: opacity .3s ease, transform .3s ease; }
.gallery_item a:hover .gallery_item__zoom, .gallery_item a:focus-visible .gallery_item__zoom { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.gallery_item figcaption { padding: 8px 4px; color: var(--gray); font-size: 14px; text-align: center; }

@keyframes gallery_lightbox_in { from { opacity: 0; transform: translateY(18px) scale(.96); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes gallery_lightbox_out { from { opacity: 1; transform: translateY(0) scale(1); } to { opacity: 0; transform: translateY(12px) scale(.97); } }
@keyframes gallery_backdrop_in { from { opacity: 0; } to { opacity: 1; } }
@keyframes gallery_photo_in { from { opacity: 0; transform: scale(.985); } to { opacity: 1; transform: scale(1); } }

.gallery_lightbox { position: fixed; width: min(1180px, calc(100% - 28px)); max-width: none; padding: 62px 76px 46px; border: 0; border-radius: 4px; background: rgba(18,18,18,.97); color: #fff; box-shadow: 0 30px 80px rgba(0,0,0,.55); }
.gallery_lightbox[open] { animation: gallery_lightbox_in .32s cubic-bezier(.2,.8,.25,1) both; }
.gallery_lightbox[open]::backdrop { animation: gallery_backdrop_in .32s ease both; }
.gallery_lightbox.is-closing { animation: gallery_lightbox_out .2s ease both; }
.gallery_lightbox::backdrop { background: rgba(0,0,0,.86); backdrop-filter: blur(6px); }
.gallery_lightbox figure { position: relative; display: flex; min-height: 62vh; margin: 0; flex-direction: column; align-items: center; justify-content: center; }
.gallery_lightbox img { width: auto; max-width: 100%; max-height: 74vh; object-fit: contain; border-radius: 2px; }
.gallery_lightbox.is-swapping img { animation: none; opacity: 0; }
.gallery_lightbox img.is-loaded { animation: gallery_photo_in .34s ease both; }
.gallery_lightbox figcaption { padding-top: 16px; color: #fff; font-size: 16px; text-align: center; }
.gallery_lightbox button { position: absolute; z-index: 2; display: grid; width: 52px; height: 52px; margin: 0; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.08); color: #fff; font-size: 34px; line-height: 1; place-items: center; box-shadow: none; transition: background .25s ease, color .25s ease, transform .25s ease; transform: none; }
.gallery_lightbox button:hover { background: var(--orange); color: #fff; box-shadow: none; transform: scale(1.08); }
.gallery_lightbox button:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
.gallery_lightbox__close { top: 14px; right: 16px; }
.gallery_lightbox__prev, .gallery_lightbox__next { top: 50%; transform: translateY(-50%) !important; }
.gallery_lightbox__prev:hover, .gallery_lightbox__next:hover { background: var(--orange); }
.gallery_lightbox__prev { left: 16px; }
.gallery_lightbox__next { right: 16px; }
.gallery_lightbox__count { margin: 14px 0 0; color: #9a9a9a; font-size: 14px; letter-spacing: .08em; text-align: center; }

@media (prefers-reduced-motion: reduce) {
  .gallery_item img, .gallery_item a::after, .gallery_item__zoom, .gallery_lightbox button { transition: none; }
  .gallery_lightbox[open], .gallery_lightbox[open]::backdrop, .gallery_lightbox.is-closing, .gallery_lightbox img.is-loaded { animation: none; }
}

.error-page { display: grid; min-height: 58vh; place-items: center; padding: 5rem 1.25rem; background: var(--charcoal); color: #fff; }
.error-page__inner { width: min(720px, 100%); }
.error-page__eyebrow { color: var(--orange); font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.error-page h1 { max-width: 650px; margin: .5rem 0 1rem; color: #fff; font-size: clamp(3rem, 8vw, 7rem); line-height: .95; }
.search-page { min-height: 60vh; padding-bottom: 90px; background: #fff; }
.search-page__banner { background: #f7f7f7; border-bottom: 1px solid #f1f1f1; }
.search-page__banner-inner { display: flex; width: min(1140px, calc(100% - 40px)); min-height: 142px; align-items: center; justify-content: space-between; gap: 30px; margin: 0 auto; }
.search-page h1 { margin: 0; color: #555; font-size: 27px; font-weight: 400; line-height: 1.2; }
.search-page__breadcrumb { display: flex; align-items: center; gap: 7px; margin: 0; color: #aaa; font-size: 17px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; }
.search-page__breadcrumb a { color: #aaa; text-decoration: none; }
.search-page__breadcrumb a:hover { color: var(--orange); }
.search-page__breadcrumb strong { color: #555; font-weight: 700; }
.search-page__inner { width: min(1140px, calc(100% - 40px)); margin: 0 auto; padding-top: 63px; }
.search-page__form { max-width: 700px; padding: 28px; background: #f5f5f5; }
.search-page__form label { color: var(--charcoal); }
.search-results { width: min(965px, 100%); display: grid; gap: 62px; }
.search-result { display: grid; grid-template-columns: 66px minmax(0, 1fr); align-items: center; gap: 33px; color: #111; text-decoration: none; }
.search-result__icon { position: relative; display: grid; width: 62px; height: 62px; place-items: center; border: 3px solid #a5a5a5; color: #777; }
.search-result__icon::before { width: 17px; height: 19px; border: 1px solid currentColor; content: ''; }
.search-result__icon span, .search-result__icon span::before, .search-result__icon span::after { position: absolute; width: 11px; height: 1px; background: currentColor; content: ''; }
.search-result__icon span { margin-top: -2px; }
.search-result__icon span::before { margin-top: 4px; }
.search-result__icon span::after { margin-top: 8px; }
.search-result__title { display: block; padding: 9px 0 10px; border-top: 3px solid #f0f0f0; border-bottom: 3px solid #f0f0f0; font-size: 18px; line-height: 1.25; }
.search-result:hover { color: var(--orange); }
.search-result:hover .search-result__icon { border-color: var(--orange); color: var(--orange); }
.search-result:hover .search-result__title { border-color: #e9e9e9; }
.search-page__empty { color: #555; }

footer, footer.bg-light-brown { position: relative; display: flex; min-height: 360px; flex-direction: column; align-items: center; justify-content: center; padding: 55px 24px 35px; background: var(--footer); color: #aaa; text-align: center; }
footer ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; margin: 0 0 35px; padding: 0; list-style: none; }
footer a { color: #fff; text-decoration: none; }
footer a:hover { color: var(--orange); }
.footer-brand { display: flex; align-items: center; flex-direction: column; }
.footer-brand img { width: 180px; margin-bottom: 18px; filter: brightness(0) invert(1); }
footer .absolute { position: static; margin-top: 32px; }

@media (max-width: 760px) {
  /* no shrink on mobile: pin both ends of the animation to the same height */
  .main-header { --header-h: 88px; --header-h-stuck: 88px; --logo-scale-stuck: 1; height: 88px; }
  .header-spacer { height: 88px; }
  .logo { height: auto; }
  .main-header .container { display: flex; width: calc(100% - 28px); height: 100%; }
  .logo { position: static; z-index: 102; }
  .logo img { width: 145px; height: auto; }
  .mobile.nav { position: absolute; top: 25px; right: 0; z-index: 103; display: block; width: 44px; padding: 8px; cursor: pointer; }
  .burger span { display: block; height: 3px; margin-bottom: 5px; background: var(--orange); transition: transform .2s ease; }
  .main_menu { position: static; }
  .main_menu > ul { position: fixed; inset: 0; z-index: 101; display: flex; align-items: stretch; flex-direction: column; justify-content: flex-start; padding: 110px 25px 30px; overflow: auto; background: #fff; }
  #toggle_nav:not(:checked) + .main_menu > ul { display: none; }
  #toggle_nav:checked + .main_menu > ul { display: flex; }
  .main_menu a { padding: 15px 8px; border-bottom: 1px solid var(--line); font-size: 16px; }
  .main_menu li ul { position: static; display: block; min-width: 0; border: 0; background: transparent; box-shadow: none; }
  .main_menu li ul a { padding-left: 24px; color: #666; }
  .search_item { display: block; padding-top: 12px; }
  .search_toggle { display: inline-flex; margin: 0; }
  .site-search { position: absolute; top: 0; right: 0; left: 0; display: flex; width: 100%; height: 87px; padding: 0 14px; background: #fff; }
  .site-search__field { gap: 12px; }
  .site-search input { padding: 10px 0; font-size: 17px; }
  .site-search__close { flex: 0 0 40px; }
  .hero_wrapper, .hero_wrapper > .max-w-screen-xl, .hero_wrapper .big_title, .hero_wrapper .hero_content_col { min-height: 510px; }
  .hero_wrapper .big_title, .hero_wrapper .hero_content_col { padding: 55px 5px; }
  .layer_rows > h1, .layer_rows > h2, .layer_rows > h3, .layer_rows > p, .layer_rows > .max-w-5xl { width: calc(100% - 28px); }
  .layer_rows h1 { padding-top: 50px; }
  .layer_rows > p { padding-inline: 0; font-size: calc(19px * var(--paragraph-scale, 1)); }
  .layer_rows > .home_intro { width: calc(100% - 28px); padding-right: 0; padding-left: 0; text-align: center; }
  .layer_rows > h2.home_intro { padding-top: 50px; }
  .layer_rows > .home_intro_button { margin-right: auto; margin-left: auto; }
  .quote_block { min-height: 280px; grid-template-columns: 34px minmax(0, 1fr) 34px; gap: 12px; padding: 48px 12px; }
  .quote_block__rule { width: 34px; height: 5px; }
  .quote_block--horizontal { grid-template-columns: 1fr; grid-template-rows: auto 1fr auto; }
  .quote_block--horizontal .quote_block__rule { width: 34px; height: 5px; }
  .quote_block__text { font-size: clamp(2rem, 9vw, 3rem); line-height: 1.12; }
  .colls { display: block; }
  .colls > * { width: 100% !important; padding: 18px 0; }
  .max-w-5xl > .colls > * { display: block; padding: 0; }
  .max-w-5xl > .colls [class*=coll__] { width: 100% !important; flex: 0 0 100% !important; padding: 18px 0; }
  .section-wrapper { padding-right: 14px; padding-left: 14px; }
  .section-wrapper--bottom-orange-v { padding-bottom: 76px; }
  .section-wrapper--bottom-orange-v::after { height: 62px; clip-path: polygon(0 0, 50% 100%, 100% 0, 100% 100%, 0 100%); }
  .section-wrapper--top-gray-diagonal { padding-top: 72px; clip-path: polygon(0 72px, 100% 0, 100% 100%, 0 100%); }
  .clients_layer { padding-top: 8px; }
  .clients_layer__title { padding-bottom: 30px; }
  .sponsor_tier { padding-bottom: 28px; }
  .sponsor_tier h3 { margin-bottom: 16px; }
  .sponsor_grid, .sponsor_tier--main .sponsor_grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .sponsor_tier--main .sponsor_card { min-height: 82px; }
  .sponsor_card { min-height: 70px; padding: 6px; }
  .sponsor_card img { max-height: 64px; }
  .sponsor_tier--silver .sponsor_grid { grid-template-columns: minmax(160px, 220px); }
  .hero_wrapper .hero_eyebrow p { font-size: 1.1rem; }
  .hero_foreground { margin-top: 24px; }
  .gallery_block { width: calc(100% - 28px); padding-top: 28px; }
  .gallery_grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; }
  .gallery_album { margin-bottom: 42px; }
  .gallery_lightbox { padding: 56px 14px 26px; }
  .gallery_lightbox figure { min-height: 52vh; }
  .gallery_lightbox button { width: 44px; height: 44px; font-size: 28px; }
  .gallery_lightbox__prev { left: 6px; }
  .gallery_lightbox__next { right: 6px; }
  .search-page { padding-bottom: 55px; }
  .search-page__banner-inner { display: block; width: calc(100% - 28px); min-height: 0; padding: 28px 0 24px; }
  .search-page h1 { margin-bottom: 15px; font-size: 25px; }
  .search-page__breadcrumb { flex-wrap: wrap; font-size: 13px; }
  .search-page__inner { width: calc(100% - 28px); padding-top: 38px; }
  .search-page__form { padding: 20px; }
  .search-results { gap: 28px; }
  .search-result { grid-template-columns: 48px minmax(0, 1fr); gap: 15px; }
  .search-result__icon { width: 48px; height: 48px; border-width: 2px; }
  .search-result__title { font-size: 16px; }
  footer { min-height: 320px; }
}

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

/* ---------------------------------------------------------------------------
   Sponsor form (Socrates forms module) - matches the public ETK form design.
   --------------------------------------------------------------------------- */

.socrates-form { width: 100%; padding-top: 10px; }

.socrates-form__title {
  margin: 10px 0 40px;
  color: #000;
  font-family: 'PT Sans', Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  text-align: left;
}

.socrates-form__form { display: block; width: 100%; }

.socrates-form .form_row { margin-bottom: 14px; }

.socrates-form .form_row__label,
.socrates-form .form_row__legend {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.socrates-form .form_field {
  display: flex;
  align-items: stretch;
  width: 100%;
  border: 2px solid #e6e6e6;
  background: #fff;
}

.socrates-form .form_field__icon {
  display: flex;
  flex: 0 0 62px;
  align-items: center;
  justify-content: center;
  border-right: 2px solid #e6e6e6;
  color: #444;
}

.socrates-form .form_field__icon svg { width: 22px; height: 22px; }

/* Hard cap: keeps icons sane even if this stylesheet is cached/stale. */
.socrates-form svg { max-width: 22px; max-height: 22px; }

.socrates-form .form_field__control {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: #444;
  font-family: 'PT Sans', Arial, sans-serif;
  font-size: 15px;
  letter-spacing: .04em;
  line-height: 1.5;
  outline: none;
  appearance: none;
}

.socrates-form .form_field__control::placeholder {
  color: #a5a5a5;
  text-transform: uppercase;
  letter-spacing: .06em;
  opacity: 1;
}

.socrates-form .form_field--textarea .form_field__control {
  min-height: 275px;
  padding: 20px;
  resize: vertical;
}

.socrates-form .form_field:focus-within { border-color: #ff9000; }

.socrates-form .form_field:focus-within .form_field__icon {
  border-right-color: #ff9000;
  color: #ff9000;
}

.socrates-form .form_row__info {
  padding: 6px 2px 0;
  color: #8a8a8a;
  font-size: 13px;
  line-height: 1.45;
}

.socrates-form .form_row__choices {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 4px 2px;
}

.socrates-form .checks_boxes {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #444;
  font-size: 15px;
}

.socrates-form .form_row--captcha {
  display: flex;
  align-items: stretch;
  min-height: 74px;
  border: 2px solid #e6e6e6;
  background: #fff;
}

.socrates-form .form_row--captcha .form_field__icon {
  display: flex;
  flex: 0 0 62px;
  align-items: center;
  justify-content: center;
  border-right: 2px solid #e6e6e6;
  color: #444;
}

.socrates-form .form_row--captcha .form_field__icon svg { width: 22px; height: 22px; }

.socrates-form .form_row--captcha .cf-turnstile {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  padding: 8px 12px;
  overflow-x: auto;
}

.socrates-form__actions {
  display: flex;
  justify-content: center;
  padding-top: 26px;
}

.socrates-form__submit {
  display: inline-flex;
  min-width: 190px;
  margin: 0;
  padding: 20px 34px;
  border: 2px solid #e6e6e6;
  border-radius: 0;
  background: transparent;
  color: #444;
  font-family: 'PT Sans', Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color .25s ease, border-color .25s ease, color .25s ease;
}

.socrates-form__submit:hover:not(:disabled),
.socrates-form__submit:focus-visible:not(:disabled) {
  border-color: #ff9000;
  background: #ff9000;
  color: #fff;
}

.socrates-form__submit:disabled { cursor: not-allowed; opacity: .6; }

.socrates-form__message {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-left: 4px solid #ff9000;
  background: #faf7f4;
  color: #444;
  font-size: 15px;
  line-height: 1.5;
  text-align: left;
}

.socrates-form__message--success { border-left-color: #2f9e44; }
.socrates-form__message--error { border-left-color: #ff017b; }

@media only screen and (max-width: 1024px) {
  .socrates-form__title { margin-bottom: 28px; }
  .socrates-form .form_field__icon,
  .socrates-form .form_row--captcha .form_field__icon { flex-basis: 52px; }
  .socrates-form .form_field__control { padding: 15px 16px; }
  .socrates-form .form_field--textarea .form_field__control { min-height: 200px; }
  .socrates-form__submit { width: 100%; }
}
