/* =========================================================
   Nothing Silent — Fullscreen deck theme
   ========================================================= */

:root {
	--black: #0d0d0d;
	--green-deep: #16271c;
	--cream: #e3d2a8;
	--cream-soft: #ede0c4;
	--white: #ffffff;
	--ink: #15171a;
	--muted: rgba(255, 255, 255, 0.72);

	--font-head: "Archivo", system-ui, sans-serif;
	--font-body: "Inter", system-ui, sans-serif;

	--header-h: 92px;
	--ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--white);
	background: var(--black);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

a { color: var(--cream); text-decoration: none; transition: color 0.2s var(--ease); }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.04; margin: 0; }

.accent { color: var(--cream); }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap;
}

.skip-link { position: absolute; left: -999px; }
.skip-link:focus { left: 1rem; top: 1rem; z-index: 9999; background: var(--cream); color: var(--ink); padding: 0.5rem 1rem; }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center;
	gap: 0.6rem;
	font-family: var(--font-head);
	font-weight: 600; font-size: 0.95rem; letter-spacing: 0.06em; text-transform: uppercase;
	padding: 0.95rem 2.4rem;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.25s var(--ease);
}
.btn--outline { background: transparent; border: 1.5px solid var(--cream); color: var(--cream); }
.btn--outline:hover { background: var(--cream); color: var(--ink); }
.btn--solid { background: var(--cream); border: 1.5px solid var(--cream); color: var(--ink); }
.btn--solid:hover { background: var(--cream-soft); }

/* =========================================================
   Header overlay
   ========================================================= */
.site-header { width: 100%; z-index: 60; }
.site-header--deck { position: fixed; top: 0; left: 0; right: 0; }
.site-header--solid { position: sticky; top: 0; background: var(--black); border-bottom: 1px solid rgba(227, 210, 168, 0.15); }

.site-header__inner {
	display: flex; align-items: center; gap: 1.5rem;
	padding: 20px clamp(20px, 4vw, 56px);
	min-height: var(--header-h);
}

.site-logo { display: inline-flex; flex: 0 0 auto; }
.site-logo img { height: 52px; width: auto; }

.site-nav { flex: 1 1 auto; display: flex; justify-content: center; }
.nav-menu { list-style: none; display: flex; gap: clamp(1rem, 2.4vw, 2.4rem); margin: 0; padding: 0; }
.nav-menu__link {
	color: var(--white); font-family: var(--font-head); font-weight: 600;
	font-size: 0.92rem; letter-spacing: 0.06em; text-transform: uppercase;
	padding: 0.4rem 0; position: relative;
}
.nav-menu__link::after {
	content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
	background: var(--cream); transition: width 0.25s var(--ease);
}
.nav-menu__link:hover, .nav-menu__link.is-active { color: var(--cream); }
.nav-menu__link.is-active::after { width: 100%; }

.site-socials { flex: 0 0 auto; display: flex; gap: 0.6rem; }
.social-btn {
	width: 38px; height: 38px; border-radius: 50%;
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--black); color: var(--white);
	border: 1px solid rgba(255, 255, 255, 0.25);
	transition: all 0.25s var(--ease);
}
.social-btn:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

.nav-toggle {
	display: none; order: 3; margin-left: auto;
	width: 46px; height: 46px; background: transparent; border: none; cursor: pointer; position: relative;
}
.nav-toggle__bar, .nav-toggle__bar::before, .nav-toggle__bar::after {
	content: ""; position: absolute; left: 11px; width: 24px; height: 2px; background: var(--cream);
	transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle__bar { top: 22px; }
.nav-toggle__bar::before { top: -7px; }
.nav-toggle__bar::after { top: 7px; }

/* =========================================================
   Intro splash
   ========================================================= */
.intro-splash {
	position: fixed; inset: 0; z-index: 999;
	background: var(--black);
	display: flex; align-items: center; justify-content: center;
	transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}
.intro-splash__logo { width: min(46vw, 540px); animation: ns-fade-in 1s var(--ease) both; }
.intro-splash__copy { position: absolute; bottom: 22px; right: 28px; font-size: 0.78rem; color: var(--muted); margin: 0; }
.intro-splash.is-hidden { opacity: 0; visibility: hidden; }
@keyframes ns-fade-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* =========================================================
   Deck & panels (mobile-first: normal scroll)
   ========================================================= */
.site-main--deck { padding: 0; }
.deck { position: relative; }

/* Base (no-JS fallback): panels stack and scroll normally. */
.panel {
	position: relative;
	min-height: 100vh;
	display: flex;
	background-color: var(--black);
	background-image: var(--bg, none);
	background-size: cover;
	background-position: center;
}
.panel__overlay { position: absolute; inset: 0; }
.panel__inner {
	position: relative; z-index: 2;
	width: 100%; max-width: 1200px; margin: 0 auto;
	padding: calc(var(--header-h) + 24px) clamp(20px, 4vw, 40px) 64px;
	display: flex; flex-direction: column; justify-content: center;
}

/* JS deck: fullscreen, one panel at a time, no page scroll — every device. */
.js body.ns-deck,
body.ns-deck.js { overflow: hidden; height: 100vh; height: 100svh; }
.js .deck { position: fixed; inset: 0; }
.js .panel {
	position: absolute; inset: 0;
	height: 100vh; height: 100svh; min-height: 0;
	opacity: 0; visibility: hidden; pointer-events: none;
	transform: translateY(34px) scale(0.992);
	transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), visibility 0.6s var(--ease);
}
.js .panel.is-active { opacity: 1; visibility: visible; pointer-events: auto; transform: none; z-index: 2; }
.js .panel.is-prev { transform: translateY(-34px) scale(0.992); }
.js .panel__inner {
	max-height: 100svh;
	justify-content: safe center;
	overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch;
}
.js .panel__inner::-webkit-scrollbar { width: 0; height: 0; }

.section-title {
	font-weight: 800; text-transform: uppercase;
	font-size: clamp(2.4rem, 6vw, 4.4rem); letter-spacing: -0.01em; color: var(--white);
}

.deck-copyright {
	position: fixed; bottom: 16px; right: 26px; z-index: 55;
	font-size: 0.76rem; color: var(--muted); margin: 0; pointer-events: none;
}

/* ---------- HOME ---------- */
.home-hero__video {
	position: absolute; inset: 0; z-index: 0;
	overflow: hidden; pointer-events: none;
}
.home-hero__video-inner {
	position: absolute; top: 50%; left: 50%;
	width: 100vw; height: 56.25vw;
	min-height: 100%; min-width: 177.78vh;
	transform: translate(-50%, -50%) scale(var(--home-video-scale, 1.08));
	filter: blur(var(--home-video-blur, 10px));
	-webkit-filter: blur(var(--home-video-blur, 10px));
}
.home-hero__iframe {
	width: 100%; height: 100%; border: 0;
	pointer-events: none;
}

.panel--home .panel__overlay {
	z-index: 1;
	background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.3) 45%, rgba(0,0,0,0.8) 100%);
}
.panel--home-video .panel__overlay {
	background: linear-gradient(180deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.38) 45%, rgba(0,0,0,0.82) 100%);
	opacity: var(--home-video-overlay, 1);
}
.home-hero { align-items: flex-start; gap: 1.8rem; }
.home-hero__title {
	font-weight: 800; text-transform: uppercase; color: var(--white);
	font-size: clamp(2.6rem, 7vw, 5.5rem); letter-spacing: -0.015em;
}

/* ---------- SHOW / ABOUT ---------- */
.show { flex-direction: row; align-items: center; gap: 2rem; min-height: 100%; }
.show__copy { flex: 1 1 50%; display: flex; flex-direction: column; align-items: flex-start; gap: 2rem; }
.show__logo { width: min(38vw, 460px); }
.show__art { flex: 1 1 50%; display: flex; justify-content: flex-end; align-self: flex-end; }
.show__art img { max-height: 80vh; width: auto; object-fit: contain; }

/* ---------- WHY ---------- */
.why { align-items: flex-start; gap: 0.5rem; }
.why__lead { font-family: var(--font-head); font-weight: 800; text-transform: uppercase; color: var(--cream); font-size: clamp(1.1rem, 2.4vw, 1.6rem); letter-spacing: 0.04em; margin: 1rem 0 1.5rem; }
.why__sub { color: var(--white); font-weight: 600; margin: 0 0 1rem; }
.why__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.9rem; font-size: clamp(1rem, 1.6vw, 1.25rem); }
.why__list li { display: flex; align-items: center; gap: 0.8rem; color: var(--white); }
.why__star { color: var(--cream); font-size: 1.1rem; }

/* ---------- CUSTOM SECTIONS (Customizer-added panels) ---------- */
.custom-section { align-items: flex-start; gap: 1rem; max-width: 900px; }
.custom-section__sub { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; color: var(--cream); letter-spacing: 0.04em; font-size: clamp(1rem, 2vw, 1.4rem); margin: 0.5rem 0 0.5rem; }
.custom-section__list { list-style: none; margin: 0.5rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 0.9rem; font-size: clamp(1rem, 1.6vw, 1.25rem); }
.custom-section__list li { display: flex; align-items: flex-start; gap: 0.8rem; color: var(--white); }
.custom-section__star { color: var(--cream); font-size: 1.1rem; line-height: 1.5; flex: 0 0 auto; }
.custom-section__btn { margin-top: 1.6rem; }

/* ---------- HOST ADVANTAGE ---------- */
.hosts { position: relative; gap: 0; }
.hosts__title {
	font-weight: 800; text-transform: uppercase; color: var(--white);
	font-size: clamp(1.5rem, 7vw, 6rem); letter-spacing: -0.02em;
	white-space: nowrap; max-width: 100%;
	margin-bottom: -3.2vw; position: relative; z-index: 1; pointer-events: none;
}
.hosts__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.4vw, 2rem); position: relative; z-index: 2; }
.host-card {
	display: flex; flex-direction: column; text-align: left;
	background: none; border: none; padding: 0; cursor: pointer; color: inherit;
}
.host-card__media {
	position: relative; display: block;
	background: transparent; overflow: visible;
	aspect-ratio: 1 / 1.04;
}
/* Black panel: bottom 50%, fully rounded top-right corner (Figma) */
.host-card__media::before {
	content: ""; position: absolute; z-index: 0;
	bottom: 0; left: 0; width: 100%; height: 70%;
	background: #000;
	border-top-right-radius: 16px;
}
.host-card__media img {
	position: relative; z-index: 1;
	width: 100%; height: 100%; object-fit: cover; object-position: top center;
	transition: transform 0.4s var(--ease);
}
.host-card:hover .host-card__media img { transform: scale(1.04); }
.host-card__bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.9rem 0.2rem 0; }
.host-card__info { display: flex; flex-direction: column; }
.host-card__name { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; color: var(--white); font-size: clamp(0.95rem, 1.5vw, 1.25rem); letter-spacing: 0.02em; }
.host-card__role { color: var(--cream); font-size: 0.82rem; }
.host-card__arrow { color: var(--white); flex: 0 0 auto; transition: transform 0.3s var(--ease), color 0.3s var(--ease); }
.host-card:hover .host-card__arrow { color: var(--cream); transform: translate(3px, -3px); }

/* ---------- AUDIENCE ---------- */
.audience { gap: 1.6rem; }
.audience__head .audience__sub { font-family: var(--font-head); font-weight: 700; color: var(--white); margin: 0.4rem 0 0; }
.audience__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 3vw, 2.5rem); }
.aud-card {
	position: relative; background: var(--white); color: var(--ink);
	border-radius: 26px; display: flex; align-items: center; gap: 1rem;
	padding: 2rem; min-height: 240px; overflow: visible;
}
.aud-card__media { flex: 0 0 38%; align-self: stretch; position: relative; }
.aud-card__media img { position: absolute; bottom: -2rem; max-height: 130%; width: auto; object-fit: contain; }
.aud-card__media--left img { left: -1rem; }
.aud-card__media--right img { right: -1rem; }
.aud-card__body { flex: 1; }
.aud-card__title { font-weight: 800; text-transform: uppercase; color: var(--ink); font-size: clamp(1.2rem, 2vw, 1.7rem); margin-bottom: 1rem; }
.aud-card__title .accent { color: #c7a85f; }
.aud-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.7rem; }
.aud-list li { display: flex; gap: 0.75rem; align-items: flex-start; color: #3a3d42; font-size: 0.96rem; line-height: 1.4; }
.aud-list__num { font-family: var(--font-head); font-weight: 700; color: #c7a85f; flex: 0 0 auto; }

/* ---------- SPONSORS ---------- */
.panel--sponsors { background: var(--black); }
.sponsors { gap: 2rem; }
.sponsors__head .sponsors__sub { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--white); margin: 0.5rem 0 0; }
.sponsors__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1rem, 2vw, 1.6rem); }
.tier-card {
	background: var(--cream); color: var(--ink); border-radius: 12px;
	padding: 1.6rem 1.7rem; min-height: 150px;
	display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem;
	transition: transform 0.25s var(--ease);
}
.tier-card:hover { transform: translateY(-4px); }
.tier-card__title { font-weight: 700; font-size: clamp(1.05rem, 1.5vw, 1.3rem); line-height: 1.15; align-self: flex-start; }
.tier-card__note { display: block; font-family: var(--font-body); font-weight: 400; color: #6a6450; font-size: 0.85rem; margin-top: 0.3rem; }
.tier-card__icon { width: 54px; height: 54px; flex: 0 0 auto; }

/* ---------- CONTACT ---------- */
.contact { gap: 1.6rem; }
.contact__head .contact__sub { color: var(--muted); margin: 0.5rem 0 0; }
.contact__grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2.5rem; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form__notice {
	padding: 0.9rem 1.1rem; border-radius: 8px; font-size: 0.95rem; line-height: 1.5;
	border: 1px solid rgba(227, 210, 168, 0.35);
}
.contact-form__notice--success { background: rgba(227, 210, 168, 0.15); color: var(--cream); }
.contact-form__notice--error { background: rgba(180, 40, 40, 0.2); color: #ffb4b4; border-color: rgba(255, 120, 120, 0.35); }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form input, .contact-form textarea {
	width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--white);
	background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(227, 210, 168, 0.25);
	border-radius: 6px; padding: 0.9rem 1.1rem; resize: vertical;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255, 255, 255, 0.5); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--cream); background: rgba(255, 255, 255, 0.1); }
.contact__label { text-transform: uppercase; letter-spacing: 0.1em; color: var(--cream); font-size: 0.8rem; margin: 0 0 0.4rem; }
.contact__email { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.1rem, 2vw, 1.5rem); color: var(--white); }
.contact__email:hover { color: var(--cream); }

/* =========================================================
   Host modal
   ========================================================= */
.host-modal {
	position: fixed; inset: 0; z-index: 200; display: none;
	align-items: center; justify-content: center; padding: 24px;
	background: rgba(5, 8, 6, 0.78); backdrop-filter: blur(4px);
}
.host-modal.is-open { display: flex; animation: ns-fade-in 0.3s var(--ease) both; }
.host-modal__card {
	position: relative; width: min(960px, 100%); max-height: 86vh;
	background: linear-gradient(135deg, #10211a, #0c0c0c 70%);
	border: 1px solid rgba(227, 210, 168, 0.25); border-radius: 22px;
	display: flex; gap: 2rem; padding: 2.5rem; overflow: hidden;
}
.host-modal__watermark {
	position: absolute; top: 1.4rem; right: 2rem; font-family: var(--font-head); font-weight: 800;
	text-transform: uppercase; color: rgba(255, 255, 255, 0.06); font-size: clamp(1.4rem, 3vw, 2.4rem); pointer-events: none;
}
.host-modal__close {
	position: absolute; top: 1rem; right: 1rem; z-index: 3; width: 40px; height: 40px;
	border-radius: 50%; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255,255,255,0.2);
	color: var(--white); font-size: 1.5rem; line-height: 1; cursor: pointer;
}
.host-modal__close:hover { background: var(--cream); color: var(--ink); }
.host-modal__media { flex: 0 0 38%; align-self: center; }
.host-modal__media img { width: 100%; border-radius: 12px; background: #000; }
.host-modal__body { flex: 1; overflow-y: auto; padding-right: 0.5rem; }
.host-modal__name { font-weight: 800; text-transform: uppercase; font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--white); line-height: 1; }
.host-modal__role { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; color: var(--cream); margin: 0.5rem 0 1.4rem; letter-spacing: 0.04em; }
.host-modal__bio p { color: var(--muted); margin: 0 0 1rem; }
.host-modal__body::-webkit-scrollbar { width: 6px; }
.host-modal__body::-webkit-scrollbar-thumb { background: rgba(227, 210, 168, 0.4); border-radius: 3px; }

body.modal-open { overflow: hidden; }

/* =========================================================
   Inner pages (blog/page) — basic styling
   ========================================================= */
.site-main:not(.site-main--deck) { padding: 3rem 0; }
.site-main:not(.site-main--deck) .container { max-width: 800px; margin: 0 auto; padding: 0 1.5rem; }
.entry-title { color: var(--white); }
.site-footer { background: #0a0a0a; border-top: 1px solid rgba(227,210,168,0.15); padding: 2rem 0; color: var(--muted); }
.site-footer .container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* =========================================================
   Tablet & phone (≤980px): full inline nav (no hamburger), compact chrome.
   Layout stays close to desktop; phones (≤767px) compact further.
   ========================================================= */
@media (max-width: 980px) {
	:root { --header-h: 76px; }

	.nav-toggle { display: none; }
	.site-header--deck { position: fixed; }

	.site-header__inner { gap: clamp(0.5rem, 2vw, 1.2rem); padding: 14px clamp(16px, 3vw, 32px); }
	.site-logo img { height: 44px; }

	/* Single inline row, just like desktop but tighter */
	.site-nav { position: static; max-height: none; overflow: visible; background: none; border: none; }
	.nav-menu {
		flex-direction: row; justify-content: center;
		gap: clamp(0.5rem, 2.4vw, 1.4rem); padding: 0;
	}
	.nav-menu__item { border: none; }
	.nav-menu__link { display: inline-block; padding: 0.3rem 0; font-size: clamp(0.74rem, 1.6vw, 0.86rem); }
	.site-socials { display: flex; gap: 0.45rem; }
	.social-btn { width: 34px; height: 34px; }

	.js .panel__inner { padding: calc(var(--header-h) + 16px) clamp(18px, 4vw, 36px) 56px; }

	/* The Show — slightly smaller artwork so it fits portrait tablets */
	.show__art img { max-height: 64svh; }

	/* Modal stacks */
	.host-modal__card { flex-direction: column; overflow-y: auto; padding: 2rem 1.4rem; }
	.host-modal__media { flex-basis: auto; max-width: 220px; align-self: center; }

	/* Controls + copyright placement */
	.deck-copyright { left: 16px; right: auto; text-align: left; bottom: 14px; font-size: 0.68rem; max-width: 60%; }
}

/* =========================================================
   Phones (≤767px): compact each panel to fit a tall, narrow screen.
   ========================================================= */
@media (max-width: 767px) {
	:root { --header-h: 100px; }

	/* Two-row header: logo + socials on top, full nav centered below — no hamburger */
	.site-header__inner {
		flex-wrap: wrap; align-items: center;
		gap: 0.35rem 0.75rem; padding: 10px 14px;
	}
	.site-logo { order: 1; }
	.site-logo img { height: 38px; }
	.site-socials { order: 2; margin-left: auto; }
	.social-btn { width: 32px; height: 32px; }
	.site-nav { order: 3; flex: 1 0 100%; }
	.nav-menu { gap: clamp(0.4rem, 3vw, 1rem); flex-wrap: wrap; }
	.nav-menu__link { font-size: clamp(0.62rem, 3vw, 0.78rem); letter-spacing: 0.03em; padding: 0.2rem 0; }

	.js .panel__inner { padding: calc(var(--header-h) + 14px) clamp(18px, 4vw, 28px) 60px; }

	/* Tighter type so panels fit the viewport */
	.section-title { font-size: clamp(2rem, 7.5vw, 3.2rem); }
	.home-hero__title { font-size: clamp(2.1rem, 9vw, 3.6rem); }
	.hosts__title { font-size: clamp(1.1rem, 7vw, 3.2rem); margin-bottom: 1rem; }

	/* HOME */
	.home-hero { gap: 1.2rem; }

	/* THE SHOW */
	.show { flex-direction: column; text-align: center; gap: 1.6rem; min-height: 0; }
	.show__copy { align-items: center; flex: 0 0 auto; gap: 1.4rem; }
	.show__logo { width: min(64vw, 300px); }
	.show__art { justify-content: center; align-self: center; flex: 0 1 auto; min-height: 0; }
	.show__art img { max-height: 40svh; }

	/* WHY */
	.why__lead { margin: 0.6rem 0 1rem; }
	.why__list { gap: 0.7rem; font-size: 1.02rem; }

	/* HOST ADVANTAGE — compact horizontal cards so all 3 fit */
	.hosts__grid { grid-template-columns: 1fr; gap: 0.7rem; max-width: 480px; margin: 0 auto; }
	.host-card { flex-direction: row; align-items: center; gap: 0.9rem; background: none; border-radius: 0; padding: 0.5rem 0.7rem; }
	.host-card__media { width: 60px; height: 70px; flex: 0 0 auto; aspect-ratio: auto; }
	.host-card__media::before { border-top-right-radius: 10px; }
	.host-card__media img { object-position: top center; }
	.host-card__bar { flex: 1; padding: 0; }

	/* AUDIENCE — side-by-side image + list inside each stacked card */
	.audience { gap: 1.1rem; }
	.audience__grid { grid-template-columns: 1fr; gap: 1rem; }
	.aud-card { flex-direction: row; align-items: center; padding: 1.1rem 1.2rem; min-height: 0; gap: 1rem; overflow: hidden; }
	.aud-card__media { position: relative; flex: 0 0 30%; align-self: center; }
	.aud-card__media img { position: static; max-height: 24svh; width: 100%; object-fit: contain; }
	.aud-card__media--left img, .aud-card__media--right img { left: auto; right: auto; }
	.aud-card__title { margin-bottom: 0.6rem; }
	.aud-list { gap: 0.45rem; }
	.aud-list li { font-size: 0.9rem; }

	/* SPONSORS — 2 cols (3 rows), compact */
	.sponsors { gap: 1.2rem; }
	.sponsors__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.7rem; }
	.tier-card { min-height: 0; padding: 1rem 1rem 0.9rem; border-radius: 10px; }
	.tier-card__title { font-size: 0.98rem; }
	.tier-card__icon { width: 38px; height: 38px; }

	/* CONTACT */
	.contact { gap: 1rem; }
	.contact__grid { grid-template-columns: 1fr; gap: 1.2rem; }
	.contact-form { gap: 0.8rem; }
	.contact-form__row { grid-template-columns: 1fr; gap: 0.8rem; }
	.contact-form input, .contact-form textarea { padding: 0.75rem 1rem; }
	.contact-form textarea { min-height: 84px; }
}

@media (max-width: 600px) {
	.tier-card__title { font-size: 0.9rem; }
	.aud-card__media { flex-basis: 34%; }
	.aud-list li { font-size: 0.86rem; line-height: 1.35; }
}

/* Short viewports (landscape phones): let panels scroll internally if needed. */
@media (max-height: 560px) {
	.js .panel__inner { justify-content: safe flex-start; padding-top: calc(var(--header-h) + 10px); }
}
