/*
 * Foundation 2026 Gala page-scoped composition - OFF-WHITE REGISTER.
 * Ports prototypes/6/16-foundation-gala.html (Surface 16) into the theme.
 *
 * Foundation-cluster surface (after foundation-home / foundation-our-impact).
 * Reuses the v6 Off-White token register VALUES verbatim from foundation-home.css.
 * The register is scoped onto the .rhinory-foundation-gala wrapper (NOT :root) so
 * it is self-contained and cannot disturb the dark Reserve-cool wine-side tokens
 * (--rhinory-*). Shared chrome (.fh-marque / .found-bar / .found-status /
 * .found-btn / .eyebrow / .imp-section / .imp-head / .imp-eyebrow / .imp-h2 /
 * .lede / .imp-credibility / .imp-gala-cta) is carried here re-scoped to this
 * wrapper, because foundation-home.css / foundation-our-impact.css are gated on
 * other pages and do not load here. The page-local .gala-* vocabulary is ported
 * from the prototype's inline <style>.
 *
 * Brand-fact contrast (R1 a11y pass carried from prototype): gold fails AA on
 * cream, so accents + emphasized heading <em> use Reserve Green; Texas Gold is
 * reserved for price / year / scarcity figures. Em-dashes do not appear in this
 * file (brand hard prohibition); the prototype's en-dash price range is
 * de-dashed ($1,500 to $10,000) in render.php.
 * Brief docs/briefs/2026-06-02-port-16-foundation-gala.md.
 */

.rhinory-foundation-gala {
	/* v6 Off-White token register, scoped to this surface. */
	--off-white: #F3F2ED;
	--texas-gold: #B97727;
	--texas-gold-2: #D89248;
	--gold-soft: #E0B96A;
	--tonal-black: #24272A;
	--rich-black: #1C0F1C;
	--ink: #0A0807;
	--accent-green: #1F4F37;
	--rule-v6: rgba(36, 39, 42, 0.14);
	--rule-strong-v6: rgba(36, 39, 42, 0.32);
	--muted-v6: rgba(36, 39, 42, 0.74);
	--ff-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	--ff-body: "Inter Tight", system-ui, -apple-system, sans-serif;
	--ff-mono: "JetBrains Mono", ui-monospace, monospace;

	background: var(--off-white);
	color: var(--tonal-black);
	font-family: var(--ff-body);
	line-height: 1.62;
}

.rhinory-foundation-gala picture { display: contents; }
.rhinory-foundation-gala a { color: inherit; text-decoration: none; }

/* ===== Local eyebrow (Reserve Green default; gold fails AA on cream) ===== */
.rhinory-foundation-gala .eyebrow {
	font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.24em;
	text-transform: uppercase; color: var(--accent-green); font-weight: 500;
	display: inline-flex; align-items: center; gap: 14px;
}
.rhinory-foundation-gala .eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.rhinory-foundation-gala .eyebrow.green { color: var(--accent-green); }

/* ===== FOUNDATION TICKER ===== */
.rhinory-foundation-gala .fh-marque {
	background: var(--tonal-black); color: var(--off-white);
	border-top: 1px solid var(--rule-v6); border-bottom: 1px solid var(--rule-v6);
	overflow: hidden; white-space: nowrap; padding: 11px 0;
}
.rhinory-foundation-gala .fh-marque-track {
	display: inline-flex; align-items: center; gap: 0;
	font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.14em;
	text-transform: uppercase; animation: glMarque 48s linear infinite;
}
.rhinory-foundation-gala .fh-marque-track > span { padding: 0 4px; }
.rhinory-foundation-gala .fh-marque-track .sep { color: var(--texas-gold-2); padding: 0 18px; }
@keyframes glMarque { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .rhinory-foundation-gala .fh-marque-track { animation: none; } }

/* ===== STICKY BAR (tri-CTA variant) ===== */
.rhinory-foundation-gala .found-bar {
	position: fixed; bottom: 20px; left: 50%;
	transform: translateX(-50%) translateY(140%);
	display: inline-flex; align-items: center; gap: 6px;
	background: var(--off-white); color: var(--tonal-black);
	border: 1px solid var(--accent-green); padding: 8px 8px 8px 22px;
	border-radius: 999px; z-index: 120;
	box-shadow: 0 24px 60px rgba(36, 39, 42, 0.18), 0 4px 12px rgba(36, 39, 42, 0.12);
	transition: transform .35s ease, opacity .35s ease;
	opacity: 0; pointer-events: none; max-width: calc(100vw - 32px);
}
.rhinory-foundation-gala .found-bar.show {
	transform: translateX(-50%) translateY(0); opacity: 1; pointer-events: auto;
}
.rhinory-foundation-gala .found-bar .label {
	font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.18em;
	text-transform: uppercase; color: var(--tonal-black); opacity: .78; margin-right: 14px;
}
.rhinory-foundation-gala .found-bar a {
	padding: 10px 18px; border-radius: 999px; font-family: var(--ff-mono);
	font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
	font-weight: 500; text-decoration: none; transition: background .2s, color .2s;
}
.rhinory-foundation-gala .found-bar a.donate { background: var(--texas-gold); color: var(--ink); }
.rhinory-foundation-gala .found-bar a.donate:hover { background: var(--tonal-black); color: var(--off-white); }
.rhinory-foundation-gala .found-bar a.shop { color: var(--tonal-black); }
.rhinory-foundation-gala .found-bar a.shop:hover { color: var(--accent-green); }
/* tri-CTA modifier: third slot fits at desktop, label hides earlier, tighter padding */
.rhinory-foundation-gala .found-bar.found-bar-tri { flex-wrap: wrap; }
.rhinory-foundation-gala .found-bar.found-bar-tri .label { margin-right: 10px; }
.rhinory-foundation-gala .found-bar.found-bar-tri a { padding: 10px 14px; }
@media (max-width: 1100px) {
	.rhinory-foundation-gala .found-bar.found-bar-tri .label { display: none; }
}
@media (max-width: 780px) {
	.rhinory-foundation-gala .found-bar.found-bar-tri { gap: 6px; padding: 8px 8px 8px 14px; }
	.rhinory-foundation-gala .found-bar.found-bar-tri a { font-size: 10.5px; padding: 9px 12px; }
}

/* ===== BUTTONS ===== */
.rhinory-foundation-gala .found-btn-primary {
	display: inline-flex; align-items: center; gap: 12px; padding: 15px 26px;
	background: var(--texas-gold); color: var(--ink); font-family: var(--ff-mono);
	font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
	border: 1px solid var(--texas-gold); text-decoration: none;
	transition: background .18s, color .18s, border-color .18s;
}
.rhinory-foundation-gala .found-btn-primary:hover { background: var(--tonal-black); border-color: var(--tonal-black); color: var(--off-white); }
.rhinory-foundation-gala .found-btn-ghost {
	display: inline-flex; align-items: center; gap: 12px; padding: 15px 26px;
	background: transparent; color: var(--accent-green); border: 1px solid var(--accent-green);
	font-family: var(--ff-mono); font-size: 11.5px; letter-spacing: 0.18em;
	text-transform: uppercase; font-weight: 500; text-decoration: none;
	transition: background .18s, color .18s;
}
.rhinory-foundation-gala .found-btn-ghost:hover { background: var(--accent-green); color: var(--off-white); }

/* ===== STATUS LINE ===== */
.rhinory-foundation-gala .found-status { background: var(--off-white); padding: 22px 0; border-bottom: 1px solid var(--rule-v6); }
.rhinory-foundation-gala .found-status-inner {
	max-width: 1280px; margin: 0 auto; padding: 0 40px;
	display: flex; flex-wrap: wrap; gap: 8px 28px; align-items: center;
	font-family: var(--ff-mono); font-size: 12px; letter-spacing: 0.04em; color: var(--tonal-black);
}
.rhinory-foundation-gala .found-status-inner .green,
.rhinory-foundation-gala .found-status-inner .gold { color: var(--accent-green); font-weight: 500; }
.rhinory-foundation-gala .found-status-inner .sep { color: var(--muted-v6); margin: 0 8px; }

/* ===== SHARED IMP SECTION SHELL ===== */
.rhinory-foundation-gala .imp-section { padding: 96px 0; background: var(--off-white); color: var(--tonal-black); border-bottom: 1px solid var(--rule-v6); }
.rhinory-foundation-gala .imp-section.tight { padding: 64px 0; }
.rhinory-foundation-gala .imp-wrap { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

.rhinory-foundation-gala .imp-eyebrow {
	font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.24em;
	text-transform: uppercase; color: var(--accent-green); font-weight: 500;
	display: inline-flex; align-items: center; gap: 14px;
}
.rhinory-foundation-gala .imp-eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.rhinory-foundation-gala .imp-eyebrow.gold { color: var(--accent-green); }
.rhinory-foundation-gala .imp-eyebrow.muted { color: var(--muted-v6); }

.rhinory-foundation-gala .imp-h2 {
	font-family: var(--ff-display); font-style: italic; font-weight: 300;
	font-size: clamp(40px, 5vw, 64px); line-height: 1.02; letter-spacing: -0.015em;
	color: var(--tonal-black); margin: 14px 0 0; max-width: 16ch; text-wrap: balance;
}
.rhinory-foundation-gala .imp-h2 em { font-style: italic; font-weight: 300; color: var(--accent-green); }

.rhinory-foundation-gala .imp-head { display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px; align-items: end; margin-bottom: 56px; }
.rhinory-foundation-gala .imp-head .lede { font-size: 16.5px; line-height: 1.72; color: var(--tonal-black); max-width: 42ch; margin: 0; opacity: .88; }

/* ===== HERO - centered editorial title beat ===== */
.rhinory-foundation-gala .gala-hero {
	position: relative; background: var(--off-white); color: var(--tonal-black);
	padding: 96px 0 0; overflow: hidden;
}
.rhinory-foundation-gala .gala-hero-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; position: relative; z-index: 2; }
.rhinory-foundation-gala .gala-hero .gh-eyebrow {
	font-family: var(--ff-mono); font-size: 11.5px; letter-spacing: 0.32em; text-transform: uppercase;
	color: var(--accent-green); font-weight: 500;
	display: flex; justify-content: center; align-items: center; gap: 18px; text-align: center;
}
.rhinory-foundation-gala .gala-hero .gh-eyebrow::before,
.rhinory-foundation-gala .gala-hero .gh-eyebrow::after {
	content: ""; flex: 0 0 64px; height: 1px; background: var(--accent-green); opacity: .7;
}
.rhinory-foundation-gala .gala-hero h1 {
	font-family: var(--ff-display); font-style: italic; font-weight: 300;
	font-size: clamp(64px, 8.6vw, 128px); line-height: .92; letter-spacing: -0.02em;
	color: var(--tonal-black); margin: 32px auto 24px; max-width: 14ch; text-align: center; text-wrap: balance;
}
.rhinory-foundation-gala .gala-hero h1 .roman { font-style: normal; font-weight: 400; }
.rhinory-foundation-gala .gala-hero h1 .gold,
.rhinory-foundation-gala .gala-hero h1 em.gold { color: var(--texas-gold); font-style: italic; font-weight: 300; }
.rhinory-foundation-gala .gala-hero .gh-sub {
	text-align: center; font-family: var(--ff-display); font-style: italic; font-weight: 300;
	font-size: clamp(22px, 2.4vw, 30px); line-height: 1.32; color: var(--tonal-black);
	max-width: 36ch; margin: 0 auto 48px;
}
.rhinory-foundation-gala .gala-hero .gh-img {
	margin-top: 32px; aspect-ratio: 24/9; border-top: 1px solid var(--rule-v6);
	position: relative; overflow: hidden; background: var(--rich-black);
}
.rhinory-foundation-gala .gala-hero .gh-img > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .94; }
.rhinory-foundation-gala .gala-hero .gh-img::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(28, 15, 28, 0) 40%, rgba(28, 15, 28, 0.6) 100%);
}
.rhinory-foundation-gala .gala-hero .gh-img .stamp {
	position: absolute; left: 40px; bottom: 32px; color: var(--off-white);
	font-family: var(--ff-mono); font-size: 10.5px; letter-spacing: 0.26em; text-transform: uppercase;
	background: rgba(28, 15, 28, 0.6); padding: 8px 12px; border: 1px solid rgba(243, 242, 237, 0.18);
}

/* ===== EVENT DETAILS STRIP ===== */
.rhinory-foundation-gala .gala-details { background: #EDEAE0; border-bottom: 1px solid var(--rule-v6); padding: 32px 0; }
.rhinory-foundation-gala .gala-details-inner {
	max-width: 1280px; margin: 0 auto; padding: 0 40px;
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; align-items: start;
}
.rhinory-foundation-gala .gala-details .col .lbl {
	display: block; font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
	color: var(--muted-v6); margin-bottom: 8px;
}
.rhinory-foundation-gala .gala-details .col .val {
	font-family: var(--ff-display); font-style: normal; font-weight: 500; font-size: 22px; line-height: 1.2; color: var(--tonal-black);
	letter-spacing: -0.005em;
}
.rhinory-foundation-gala .gala-details .col .val .accent { color: var(--accent-green); font-style: italic; font-weight: 400; }
.rhinory-foundation-gala .gala-details .col .sm { font-family: var(--ff-mono); font-size: 12px; color: var(--muted-v6); margin-top: 6px; line-height: 1.5; }
@media (max-width: 980px) { .rhinory-foundation-gala .gala-details-inner { grid-template-columns: 1fr 1fr; gap: 24px; } }

/* ===== THE EXPERIENCE - verbatim block ===== */
.rhinory-foundation-gala .gala-experience { padding: 96px 0; background: var(--off-white); border-bottom: 1px solid var(--rule-v6); }
.rhinory-foundation-gala .gala-experience-inner { max-width: 880px; margin: 0 auto; padding: 0 40px; text-align: center; }
.rhinory-foundation-gala .gala-experience .imp-eyebrow { justify-content: center; }
.rhinory-foundation-gala .gala-experience p.verbatim {
	font-family: var(--ff-display); font-style: italic; font-weight: 300;
	font-size: clamp(24px, 3vw, 34px); line-height: 1.32; color: var(--tonal-black); margin: 24px 0 0; text-wrap: pretty;
}
.rhinory-foundation-gala .gala-experience p.verbatim::before { content: "\201C "; color: var(--texas-gold); opacity: .6; margin-right: 2px; }
.rhinory-foundation-gala .gala-experience p.verbatim::after { content: " \201D"; color: var(--texas-gold); opacity: .6; }
.rhinory-foundation-gala .gala-experience-ctas { margin-top: 48px; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ===== CATALYST AWARD honoree feature ===== */
.rhinory-foundation-gala .gala-catalyst { padding: 120px 0; background: #EDEAE0; border-bottom: 1px solid var(--rule-v6); }
.rhinory-foundation-gala .gala-catalyst-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.rhinory-foundation-gala .gala-catalyst-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
@media (max-width: 980px) { .rhinory-foundation-gala .gala-catalyst-grid { grid-template-columns: 1fr; gap: 40px; } }
.rhinory-foundation-gala .gala-catalyst-photo {
	aspect-ratio: 4/5; position: relative; overflow: hidden; background: var(--tonal-black); border: 1px solid var(--rule-v6);
}
.rhinory-foundation-gala .gala-catalyst-photo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.rhinory-foundation-gala .gala-catalyst-photo .stamp {
	position: absolute; bottom: 18px; left: 18px;
	font-family: var(--ff-mono); font-size: 9.5px; letter-spacing: 0.24em; text-transform: uppercase;
	color: var(--off-white); background: rgba(28, 15, 28, 0.78); padding: 6px 10px;
}
.rhinory-foundation-gala .gala-catalyst-h2 {
	font-family: var(--ff-display); font-style: italic; font-weight: 300;
	font-size: clamp(44px, 5vw, 72px); line-height: 1.02; letter-spacing: -0.015em; color: var(--tonal-black);
	margin: 14px 0 24px; max-width: 14ch; text-wrap: balance;
}
.rhinory-foundation-gala .gala-catalyst-h2 em { color: var(--texas-gold); font-style: italic; font-weight: 300; }
.rhinory-foundation-gala .gala-catalyst p { font-size: 17px; line-height: 1.72; color: var(--tonal-black); max-width: 50ch; margin: 0 0 18px; }
.rhinory-foundation-gala .gala-catalyst p strong { color: var(--accent-green); font-weight: 500; }
.rhinory-foundation-gala .gala-catalyst em.green { color: var(--accent-green); font-style: italic; }
.rhinory-foundation-gala .gala-catalyst .honoree-card {
	margin-top: 28px; padding: 28px 30px; background: var(--off-white); border: 1px solid var(--rule-v6);
	display: grid; grid-template-columns: auto 1fr; gap: 18px 28px; align-items: baseline;
}
.rhinory-foundation-gala .gala-catalyst .honoree-card .k {
	font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase;
	color: var(--muted-v6); white-space: nowrap;
}
.rhinory-foundation-gala .gala-catalyst .honoree-card .v {
	font-family: var(--ff-mono); font-size: 13.5px; letter-spacing: 0.02em; color: var(--tonal-black);
}
.rhinory-foundation-gala .gala-catalyst .honoree-card .v strong { color: var(--accent-green); font-weight: 500; }

/* ===== MISSION BEHIND THE GLASS ===== */
.rhinory-foundation-gala .gala-mission { padding: 120px 0; background: var(--off-white); border-bottom: 1px solid var(--rule-v6); }
.rhinory-foundation-gala .gala-mission-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.rhinory-foundation-gala .gala-mission-lede {
	font-family: var(--ff-display); font-style: italic; font-weight: 300;
	font-size: clamp(26px, 3vw, 36px); line-height: 1.32; color: var(--tonal-black);
	max-width: 46ch; margin: 24px 0 64px; text-wrap: pretty;
}
.rhinory-foundation-gala .gala-mission-lede em { color: var(--accent-green); }
.rhinory-foundation-gala .gala-partners-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 1080px) { .rhinory-foundation-gala .gala-partners-grid { grid-template-columns: 1fr; gap: 36px; } }
.rhinory-foundation-gala .gp-card {
	display: flex; flex-direction: column; gap: 14px; padding-top: 24px; border-top: 2px solid var(--accent-green);
}
.rhinory-foundation-gala .gp-card .meta {
	font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted-v6);
}
.rhinory-foundation-gala .gp-card h3 {
	font-family: var(--ff-display); font-style: italic; font-weight: 400;
	font-size: 30px; line-height: 1.1; color: var(--accent-green); margin: 0; letter-spacing: -0.005em;
}
.rhinory-foundation-gala .gp-card .blurb {
	font-family: var(--ff-display); font-style: italic; font-weight: 300;
	font-size: 18.5px; line-height: 1.52; color: var(--tonal-black); margin: 0; text-wrap: pretty;
}
.rhinory-foundation-gala .gp-card .blurb::before { content: "\201C "; color: var(--texas-gold); opacity: .6; }
.rhinory-foundation-gala .gp-card .blurb::after { content: " \201D"; color: var(--texas-gold); opacity: .6; }
.rhinory-foundation-gala .gp-card .out {
	margin-top: auto; padding-top: 18px; border-top: 1px solid var(--rule-v6);
	font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--tonal-black);
}
.rhinory-foundation-gala .gp-card .out:hover { color: var(--accent-green); }
.rhinory-foundation-gala .gala-mission-crosslink {
	margin: 64px auto 0; max-width: 62ch; text-align: center; font-size: 14.5px; line-height: 1.7; color: var(--muted-v6);
}
.rhinory-foundation-gala .gala-mission-crosslink .xl-eyebrow {
	font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase;
	color: var(--accent-green); display: block; margin-bottom: 10px;
}
.rhinory-foundation-gala .gala-mission-crosslink a { color: var(--tonal-black); border-bottom: 1px solid var(--rule-v6); padding-bottom: 1px; }
.rhinory-foundation-gala .gala-mission-crosslink a:hover { color: var(--accent-green); border-bottom-color: var(--accent-green); }
.rhinory-foundation-gala .gala-mission-crosslink strong { color: var(--tonal-black); font-weight: 500; }
.rhinory-foundation-gala .gala-mission-crosslink strong.green { color: var(--accent-green); }

/* ===== SPONSORSHIP TIER LADDER ===== */
.rhinory-foundation-gala .gala-tiers { padding: 120px 0; background: #EDEAE0; border-bottom: 1px solid var(--rule-v6); }
.rhinory-foundation-gala .gala-tiers-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.rhinory-foundation-gala .gala-tiers .lede-block { max-width: 46ch; font-size: 16.5px; line-height: 1.7; color: var(--tonal-black); margin: 0; }
.rhinory-foundation-gala .gala-tiers .lede-block strong { color: var(--tonal-black); font-weight: 500; }
.rhinory-foundation-gala .gala-tiers .lede-mail { color: var(--accent-green); font-weight: 500; border-bottom: 1px solid var(--accent-green); padding-bottom: 1px; }
.rhinory-foundation-gala .tier-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 1200px) { .rhinory-foundation-gala .tier-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .rhinory-foundation-gala .tier-grid { grid-template-columns: 1fr; } }
.rhinory-foundation-gala .tier {
	display: flex; flex-direction: column; padding: 36px 28px 28px;
	background: var(--off-white); border: 1px solid var(--rule-v6); position: relative;
	transition: border-color .2s, transform .2s;
}
.rhinory-foundation-gala .tier:hover { border-color: var(--accent-green); transform: translateY(-2px); }
.rhinory-foundation-gala .tier.platinum { border-top: 4px solid var(--texas-gold); }
.rhinory-foundation-gala .tier.gold { border-top: 4px solid var(--accent-green); }
.rhinory-foundation-gala .tier.silver { border-top: 4px solid var(--muted-v6); }
.rhinory-foundation-gala .tier.bronze { border-top: 4px solid rgba(36, 39, 42, 0.32); }
.rhinory-foundation-gala .tier .t-eyebrow {
	font-family: var(--ff-mono); font-size: 10.5px; letter-spacing: 0.26em; text-transform: uppercase;
	color: var(--muted-v6); font-weight: 500;
}
.rhinory-foundation-gala .tier h3 {
	font-family: var(--ff-display); font-style: italic; font-weight: 400; font-size: 30px; line-height: 1.1;
	color: var(--tonal-black); margin: 8px 0 0;
}
.rhinory-foundation-gala .tier .price {
	font-family: var(--ff-display); font-weight: 500; font-style: normal;
	font-size: 42px; line-height: 1; color: var(--texas-gold);
	letter-spacing: -0.015em; margin: 18px 0 24px; font-variant-numeric: tabular-nums;
}
.rhinory-foundation-gala .tier .price small {
	display: block; font-family: var(--ff-mono); font-size: 10px; font-weight: 500;
	letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted-v6); margin-top: 6px;
}
.rhinory-foundation-gala .tier .seat {
	font-family: var(--ff-mono); font-size: 11.5px; letter-spacing: 0.16em; color: var(--accent-green);
	font-weight: 500; margin-bottom: 14px;
}
.rhinory-foundation-gala .tier .desc { font-size: 14.5px; line-height: 1.68; color: var(--tonal-black); margin: 0 0 24px; flex: 1; }
.rhinory-foundation-gala .tier .t-cta {
	font-family: var(--ff-mono); font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
	color: var(--tonal-black); padding-top: 18px; border-top: 1px solid var(--rule-v6);
	display: flex; justify-content: space-between; align-items: center;
}
.rhinory-foundation-gala .tier .t-cta:hover { color: var(--accent-green); }
.rhinory-foundation-gala .gala-tiers .contact-line {
	margin-top: 48px; padding: 24px 28px; background: var(--off-white); border: 1px solid var(--rule-v6);
	display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
	font-family: var(--ff-mono); font-size: 13px; color: var(--tonal-black);
}
.rhinory-foundation-gala .gala-tiers .contact-line a { color: var(--accent-green); font-weight: 500; border-bottom: 1px solid var(--accent-green); padding-bottom: 1px; }

/* ===== PAST GALAS ARCHIVE ===== */
.rhinory-foundation-gala .gala-past { padding: 120px 0; background: var(--off-white); border-bottom: 1px solid var(--rule-v6); }
.rhinory-foundation-gala .gala-past-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.rhinory-foundation-gala .past-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
@media (max-width: 1080px) { .rhinory-foundation-gala .past-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .rhinory-foundation-gala .past-grid { grid-template-columns: 1fr; } }
.rhinory-foundation-gala .past-card {
	display: flex; flex-direction: column; gap: 12px; padding: 28px 24px; background: #EDEAE0; border: 1px solid var(--rule-v6);
}
.rhinory-foundation-gala .past-card.now { background: var(--accent-green); color: var(--off-white); }
.rhinory-foundation-gala .past-card .year {
	font-family: var(--ff-display); font-weight: 500; font-style: normal;
	font-size: 64px; line-height: 0.92; color: var(--texas-gold); letter-spacing: -0.02em;
}
.rhinory-foundation-gala .past-card.now .year { color: var(--gold-soft); }
.rhinory-foundation-gala .past-card .annual {
	font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted-v6);
}
.rhinory-foundation-gala .past-card.now .annual { color: rgba(243, 242, 237, 0.78); }
.rhinory-foundation-gala .past-card .title {
	font-family: var(--ff-display); font-style: italic; font-weight: 400; font-size: 21px; line-height: 1.18;
	color: var(--tonal-black); margin: 0;
}
.rhinory-foundation-gala .past-card .title em { font-style: italic; }
.rhinory-foundation-gala .past-card.now .title { color: var(--off-white); }
.rhinory-foundation-gala .past-card .out {
	margin-top: auto; padding-top: 16px; border-top: 1px solid var(--rule-v6);
	font-family: var(--ff-mono); font-size: 11.5px; line-height: 1.5; color: var(--accent-green); font-weight: 500;
}
.rhinory-foundation-gala .past-card.now .out { color: var(--gold-soft); border-top-color: rgba(243, 242, 237, 0.22); }

/* ===== 2025 ILLUMINATION SPONSOR LEDGER ===== */
.rhinory-foundation-gala .gala-ledger { padding: 96px 0; background: var(--off-white); border-bottom: 1px solid var(--rule-v6); }
.rhinory-foundation-gala .gala-ledger-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.rhinory-foundation-gala .gala-ledger .lede strong.green { color: var(--accent-green); font-weight: 500; }
.rhinory-foundation-gala .ledger-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; margin-top: 48px; }
@media (max-width: 980px) { .rhinory-foundation-gala .ledger-grid { grid-template-columns: 1fr; gap: 36px; } }
.rhinory-foundation-gala .ledger-tier { display: flex; flex-direction: column; gap: 10px; padding-top: 20px; border-top: 1px solid var(--rule-v6); }
.rhinory-foundation-gala .ledger-tier .lt-tier {
	font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 500;
}
.rhinory-foundation-gala .ledger-tier.platinum .lt-tier { color: var(--tonal-black); }
.rhinory-foundation-gala .ledger-tier.gold .lt-tier { color: var(--accent-green); }
.rhinory-foundation-gala .ledger-tier.bronze .lt-tier { color: var(--muted-v6); }
.rhinory-foundation-gala .ledger-tier ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.rhinory-foundation-gala .ledger-tier li {
	font-family: var(--ff-display); font-style: italic; font-weight: 300; font-size: 21px; line-height: 1.24; color: var(--tonal-black);
}
.rhinory-foundation-gala .ledger-artist {
	margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--rule-v6);
	font-family: var(--ff-mono); font-size: 11.5px; letter-spacing: 0.08em; color: var(--muted-v6);
}
.rhinory-foundation-gala .ledger-artist .artist-name {
	color: var(--accent-green); font-weight: 500; font-family: var(--ff-display); font-style: italic; font-size: 15px; letter-spacing: -0.005em;
}

/* ===== CATALYST CIRCLE ===== */
.rhinory-foundation-gala .gala-circle { padding: 120px 0; background: #EDEAE0; border-bottom: 1px solid var(--rule-v6); }
.rhinory-foundation-gala .gala-circle-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; text-align: center; }
.rhinory-foundation-gala .gala-circle .circle-eyebrow {
	font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
	color: var(--accent-green); font-weight: 500; display: inline-flex; align-items: center; gap: 14px;
}
.rhinory-foundation-gala .gala-circle .circle-eyebrow::before,
.rhinory-foundation-gala .gala-circle .circle-eyebrow::after { content: ""; width: 32px; height: 1px; background: currentColor; opacity: .7; }
.rhinory-foundation-gala .gala-circle h2 {
	font-family: var(--ff-display); font-style: italic; font-weight: 300;
	font-size: clamp(44px, 5vw, 72px); line-height: 1.02; letter-spacing: -0.015em; color: var(--tonal-black);
	margin: 18px auto 24px; max-width: 18ch; text-wrap: balance;
}
.rhinory-foundation-gala .gala-circle h2 em { color: var(--texas-gold); }
.rhinory-foundation-gala .gala-circle .lede {
	font-family: var(--ff-display); font-style: italic; font-weight: 300;
	font-size: 21px; line-height: 1.48; color: var(--tonal-black); max-width: 50ch; margin: 0 auto 56px; text-wrap: pretty;
}
.rhinory-foundation-gala .circle-logos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 920px; margin: 0 auto; }
@media (max-width: 760px) { .rhinory-foundation-gala .circle-logos { grid-template-columns: 1fr; } }
.rhinory-foundation-gala .circle-logo {
	background: var(--off-white); border: 1px solid var(--rule-v6); padding: 48px 24px;
	display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px; aspect-ratio: 5/3;
}
.rhinory-foundation-gala .circle-logo .name {
	font-family: var(--ff-display); font-style: normal; font-weight: 500; font-size: 22px; line-height: 1.1;
	color: var(--tonal-black); letter-spacing: -0.005em; text-align: center;
}
.rhinory-foundation-gala .circle-logo .role {
	font-family: var(--ff-mono); font-size: 9.5px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--muted-v6);
}

/* ===== CTA CLOSER ===== */
.rhinory-foundation-gala .gala-cta-closer { padding: 96px 0; background: var(--tonal-black); color: var(--off-white); }
.rhinory-foundation-gala .gala-cta-closer-inner {
	max-width: 1280px; margin: 0 auto; padding: 0 40px;
	display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap;
}
.rhinory-foundation-gala .gala-cta-closer h3 {
	font-family: var(--ff-display); font-style: italic; font-weight: 300;
	font-size: clamp(32px, 3.6vw, 44px); line-height: 1.06; margin: 0; color: var(--off-white); max-width: 18ch;
}
.rhinory-foundation-gala .gala-cta-closer h3 em { color: var(--texas-gold); }
.rhinory-foundation-gala .gala-cta-closer .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.rhinory-foundation-gala .imp-gala-cta-gold {
	display: inline-flex; align-items: center; gap: 10px; padding: 14px 22px; background: var(--texas-gold); color: var(--ink);
	font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; border: 1px solid var(--texas-gold);
}
.rhinory-foundation-gala .imp-gala-cta-gold:hover { background: var(--off-white); border-color: var(--off-white); }
.rhinory-foundation-gala .imp-gala-cta-ghost {
	display: inline-flex; align-items: center; gap: 10px; padding: 14px 22px; color: var(--off-white); border: 1px solid rgba(243, 242, 237, 0.34);
	font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
}
.rhinory-foundation-gala .imp-gala-cta-ghost:hover { border-color: var(--off-white); }
.rhinory-foundation-gala .gala-cta-closer .cta-tertiary {
	flex-basis: 100%; margin-top: 18px; display: flex; align-items: center; gap: 14px;
	font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(243, 242, 237, 0.7);
}
.rhinory-foundation-gala .gala-cta-closer .cta-tertiary::before { content: ""; flex: 0 0 32px; height: 1px; background: rgba(243, 242, 237, 0.28); }
.rhinory-foundation-gala .gala-cta-closer .cta-tertiary a {
	color: var(--off-white); border-bottom: 1px solid rgba(243, 242, 237, 0.34); padding-bottom: 2px; font-weight: 500;
}
.rhinory-foundation-gala .gala-cta-closer .cta-tertiary a:hover { color: var(--texas-gold); border-bottom-color: var(--texas-gold); }

/* ===== CROSS-LINK STRIP ===== */
.rhinory-foundation-gala .gala-crosslink-strip { background: #EDEAE0; }
.rhinory-foundation-gala .gala-crosslink-wrap { display: flex; justify-content: space-between; gap: 32px; align-items: center; flex-wrap: wrap; }
.rhinory-foundation-gala .gala-crosslink-text { display: flex; flex-direction: column; gap: 8px; }
.rhinory-foundation-gala .gala-crosslink-text p {
	font-family: var(--ff-display); font-style: italic; font-weight: 300; font-size: 24px; line-height: 1.3; color: var(--tonal-black); margin: 0; max-width: 38ch;
}
.rhinory-foundation-gala .gala-crosslink-text p em { color: var(--accent-green); }
.rhinory-foundation-gala .gala-crosslink-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== CREDIBILITY LINE ===== */
.rhinory-foundation-gala .imp-credibility { padding: 48px 0; background: var(--off-white); border-top: 1px solid var(--rule-v6); }
.rhinory-foundation-gala .imp-credibility-inner {
	max-width: 1280px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: auto 1fr auto; gap: 40px; align-items: center;
	font-family: var(--ff-mono); font-size: 12px; line-height: 1.85; letter-spacing: 0.04em; color: var(--tonal-black);
}
.rhinory-foundation-gala .imp-credibility-inner .label { font-size: 10.5px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent-green); font-weight: 500; white-space: nowrap; }
.rhinory-foundation-gala .imp-credibility-inner .ein,
.rhinory-foundation-gala .imp-credibility-inner .verified { color: var(--accent-green); font-weight: 500; }
.rhinory-foundation-gala .imp-credibility-inner a { color: var(--tonal-black); border-bottom: 1px solid var(--rule-v6); padding-bottom: 1px; }
.rhinory-foundation-gala .imp-credibility-inner a:hover { color: var(--accent-green); border-bottom-color: var(--accent-green); }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
	.rhinory-foundation-gala .imp-head { grid-template-columns: 1fr; gap: 24px; align-items: start; }
	.rhinory-foundation-gala .imp-credibility-inner { grid-template-columns: 1fr; gap: 14px; }
}
@media (max-width: 760px) {
	.rhinory-foundation-gala .imp-section { padding: 64px 0; }
	.rhinory-foundation-gala .gala-catalyst,
	.rhinory-foundation-gala .gala-mission,
	.rhinory-foundation-gala .gala-tiers,
	.rhinory-foundation-gala .gala-past,
	.rhinory-foundation-gala .gala-circle { padding: 72px 0; }
	.rhinory-foundation-gala .gala-cta-closer-inner { flex-direction: column; align-items: flex-start; }
}
