:root {
	--page-bg: #e8e0d3;
	--page-bg-deep: #ddd2c1;
	--paper: #f7f1e6;
	--paper-strong: #fffaf1;
	--ink: #14110f;
	--ink-muted: rgba(20, 17, 15, 0.74);
	--ink-soft: rgba(20, 17, 15, 0.5);
	--line: rgba(20, 17, 15, 0.14);
	--rust: #9a4321;
	--charcoal: #14110f;
	--charcoal-raised: #1d1814;
	--frame-gutter: 1.5rem;
	--frame-width: calc(100% - (var(--frame-gutter) * 2));
}

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

html {
	background: var(--page-bg);
	color: var(--ink);
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-height: 100vh;
	color: var(--ink);
	font-family: "Source Serif 4", serif;
	background:
		radial-gradient(circle at 12% 9%, rgba(154, 67, 33, 0.16), transparent 22rem),
		radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.34), transparent 20rem),
		linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 22rem),
		linear-gradient(90deg, transparent 0, transparent calc(50% - 0.5px), rgba(20, 17, 15, 0.06) calc(50% - 0.5px), rgba(20, 17, 15, 0.06) calc(50% + 0.5px), transparent calc(50% + 0.5px), transparent 100%),
		linear-gradient(180deg, var(--page-bg), var(--page-bg-deep));
}

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

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

::selection {
	background: rgba(154, 67, 33, 0.18);
	color: var(--ink);
}

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

.screen-reader-text:focus {
	position: fixed;
	top: 1rem;
	left: 1rem;
	width: auto;
	height: auto;
	padding: 0.75rem 1rem;
	margin: 0;
	clip: auto;
	background: var(--paper-strong);
	color: var(--ink);
	z-index: 9999;
}

.type-display {
	font-family: "Oswald", sans-serif;
	letter-spacing: -0.05em;
}

.type-meta {
	font-family: "Oswald", sans-serif;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.theme-paper {
	--section-text: var(--ink);
	--section-muted: var(--ink-muted);
	--section-soft: var(--ink-soft);
	--line-color: var(--line);
	--panel-bg: rgba(255, 250, 241, 0.6);
	--panel-ghost: rgba(255, 250, 241, 0.32);
}

.theme-ink {
	--section-text: var(--paper-strong);
	--section-muted: rgba(255, 250, 241, 0.72);
	--section-soft: rgba(255, 250, 241, 0.46);
	--line-color: rgba(255, 250, 241, 0.16);
	--panel-bg: rgba(255, 250, 241, 0.08);
	--panel-ghost: rgba(255, 250, 241, 0.04);
}

.site-frame {
	position: relative;
	min-height: 100vh;
	overflow-x: hidden;
	isolation: isolate;
}

.site-frame::before,
.site-frame::after {
	content: "";
	position: fixed;
	top: 0;
	bottom: 0;
	width: 1px;
	background: rgba(20, 17, 15, 0.12);
	pointer-events: none;
	z-index: 90;
}

.site-frame::before {
	left: var(--frame-gutter);
}

.site-frame::after {
	right: var(--frame-gutter);
}

.site-top-line,
.site-bottom-line {
	position: fixed;
	left: 0;
	right: 0;
	height: 1px;
	pointer-events: none;
	z-index: 90;
}

.site-top-line {
	top: 0;
	background: rgba(20, 17, 15, 0.14);
}

.site-bottom-line {
	bottom: 0;
	background: rgba(20, 17, 15, 0.1);
}

.site-orbit {
	position: fixed;
	border-radius: 999px;
	border: 1px solid rgba(20, 17, 15, 0.08);
	pointer-events: none;
	z-index: 90;
	display: none;
}

.site-orbit--left {
	top: 6rem;
	left: 12%;
	width: 12rem;
	height: 12rem;
}

.site-orbit--right {
	right: 10%;
	bottom: 5rem;
	width: 18rem;
	height: 18rem;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 40;
	border-bottom: 1px solid rgba(20, 17, 15, 0.12);
	background: rgba(232, 224, 211, 0.84);
	backdrop-filter: blur(12px);
}

.site-header__inner,
.site-footer__inner {
	width: min(88rem, var(--frame-width));
	margin: 0 auto;
}

.site-header__inner {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	padding: 1.25rem 0 1.1rem;
}

.site-header__brand {
	font-size: clamp(2.35rem, 7vw, 3rem);
	line-height: 1;
	color: var(--ink);
	transition: color 0.2s ease;
}

.site-header__brand:hover {
	color: var(--rust);
}

.site-header__nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem 1.25rem;
	font-size: 0.92rem;
	color: var(--ink-soft);
}

.site-header__link {
	transition: color 0.2s ease;
}

.site-header__link:hover,
.site-header__link.is-current {
	color: var(--ink);
}

.site-main {
	position: relative;
	z-index: 10;
	padding-bottom: 3rem;
}

.site-footer {
	position: relative;
	z-index: 10;
	border-top: 1px solid rgba(20, 17, 15, 0.12);
}

.site-footer__inner {
	display: grid;
	gap: 2rem;
	padding: 3rem 0;
}

.site-footer__copy,
.site-footer__meta {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.site-footer__eyebrow {
	font-size: 0.9rem;
	color: var(--ink-soft);
	margin: 0;
}

.site-footer__text {
	max-width: 38rem;
	font-size: 1.05rem;
	line-height: 1.8;
	color: var(--ink-muted);
	margin: 0;
}

.site-footer__mail {
	font-size: clamp(1.65rem, 4vw, 2rem);
	line-height: 1;
	transition: color 0.2s ease;
}

.site-footer__mail:hover,
.site-footer__link:hover {
	color: var(--rust);
}

.site-footer__links {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	font-size: 0.85rem;
	color: var(--ink-soft);
}

.flama-section {
	position: relative;
	z-index: 10;
}

.flama-section--mist {
	background: rgba(255, 250, 241, 0.2);
}

.flama-section--panel {
	background: linear-gradient(180deg, rgba(255, 250, 241, 0.48), rgba(255, 250, 241, 0.18));
}

.flama-section--contrast {
	background: linear-gradient(180deg, #4b3a31, #352821);
}

.flama-section--glow {
	background:
		radial-gradient(circle at top left, rgba(154, 67, 33, 0.16), transparent 28rem),
		linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08));
}

.flama-container {
	width: min(100%, var(--frame-width));
	margin: 0 auto;
}

.flama-container--narrow {
	max-width: 64rem;
}

.flama-container--standard {
	max-width: 74rem;
}

.flama-container--wide {
	max-width: 88rem;
}

.flama-container--full {
	max-width: none;
}

.flama-spacing-top--tight {
	padding-top: 2.5rem;
}

.flama-spacing-top--normal {
	padding-top: 4rem;
}

.flama-spacing-top--relaxed {
	padding-top: 5rem;
}

.flama-spacing-top--xl {
	padding-top: 7rem;
}

.flama-spacing-bottom--tight {
	padding-bottom: 2.5rem;
}

.flama-spacing-bottom--normal {
	padding-bottom: 4rem;
}

.flama-spacing-bottom--relaxed {
	padding-bottom: 5rem;
}

.flama-spacing-bottom--xl {
	padding-bottom: 7rem;
}

.flama-content-width--compact {
	max-width: 40rem;
}

.flama-content-width--measure {
	max-width: 48rem;
}

.flama-content-width--wide {
	max-width: 62rem;
}

.flama-content-width--full {
	max-width: none;
}

.is-align-center,
.flama-section-title.is-align-center,
.flama-hero__intro.is-align-center,
.flama-text-block.is-align-center {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.flama-section-title {
	max-width: 68rem;
	margin-bottom: 2.5rem;
}

.flama-section-title__eyebrow-row {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.25rem;
}

.is-align-center .flama-section-title__eyebrow-row,
.flama-section-title.is-align-center .flama-section-title__eyebrow-row {
	justify-content: center;
}

.flama-section-title__eyebrow {
	font-size: 0.85rem;
	color: var(--section-soft);
}

.flama-section-title__line {
	display: block;
	width: 4rem;
	height: 1px;
	background: var(--line-color);
}

.flama-section-title__headline,
.flama-hero__title,
.flama-feature-card__title,
.flama-card__title,
.flama-members-list__name,
.flama-events-list__title,
.flama-contact-panel__mail,
.flama-cta__title {
	color: var(--section-text);
	margin: 0;
	line-height: 0.92;
}

.flama-title-scale--medium {
	font-size: clamp(2.3rem, 5.2vw, 3.75rem);
}

.flama-title-scale--large {
	font-size: clamp(2.8rem, 6vw, 4.75rem);
}

.flama-title-scale--xl {
	font-size: clamp(3rem, 7vw, 6.5rem);
}

.flama-title-scale--monumental {
	font-size: clamp(4.4rem, 12vw, 11.5rem);
	line-height: 0.8;
}

.flama-text-block {
	color: var(--section-muted);
}

.flama-text-block p {
	margin: 0 0 1.2rem;
}

.flama-text-block p:last-child {
	margin-bottom: 0;
}

.flama-text-block--base {
	font-size: 1rem;
	line-height: 1.85;
}

.flama-text-block--large {
	font-size: 1.08rem;
	line-height: 1.95;
}

.flama-text-block.has-two-columns {
	column-gap: 2.5rem;
}

.flama-text-block.has-two-columns p {
	break-inside: avoid;
}

.flama-panel--none {
	background: transparent;
}

.flama-panel--soft,
.flama-panel--glass,
.flama-panel--outline,
.flama-panel--accent {
	border-radius: 0.45rem;
	border: 1px solid var(--line-color);
}

.flama-panel--soft {
	background: var(--panel-bg);
	box-shadow: 0 18px 50px rgba(30, 20, 12, 0.08);
}

.flama-panel--glass {
	background: var(--panel-ghost);
	box-shadow: 0 18px 40px rgba(30, 20, 12, 0.08);
	backdrop-filter: blur(2px);
}

.flama-panel--outline {
	background: transparent;
}

.flama-panel--accent {
	background: linear-gradient(180deg, #14110f, #1d1814);
	box-shadow: 0 28px 70px rgba(30, 20, 12, 0.14);
}

.flama-block-padding {
	padding: 1.5rem;
}

.flama-image-frame {
	overflow: hidden;
}

.flama-panel--soft.flama-image-frame,
.flama-panel--glass.flama-image-frame,
.flama-panel--outline.flama-image-frame,
.flama-panel--accent.flama-image-frame {
	padding: 0.65rem;
}

.flama-image-frame--portrait {
	aspect-ratio: 4 / 5;
}

.flama-image-frame--square {
	aspect-ratio: 1 / 1;
}

.flama-image-frame--landscape {
	aspect-ratio: 4 / 3;
}

.flama-image-frame--cinema {
	aspect-ratio: 16 / 9;
}

.flama-image {
	width: 100%;
	height: 100%;
	background: var(--panel-bg);
	border: 1px solid var(--line-color);
}

.flama-panel--none .flama-image {
	border: 0;
	background: transparent;
}

.flama-image.is-fit-cover {
	object-fit: cover;
}

.flama-image.is-fit-contain {
	object-fit: contain;
}

.flama-hero--poster,
.flama-hero--split {
	border-top: 1px solid var(--line-color);
	border-bottom: 1px solid var(--line-color);
	padding-top: 2rem;
	padding-bottom: 2rem;
}

.flama-hero__intro {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.flama-hero__center-panel {
	padding: 2rem 1.5rem;
}

.flama-hero__center-image {
	margin-top: 2rem;
}

.flama-hero__poster-intro {
	margin-bottom: 2rem;
}

.flama-hero--poster .flama-image-frame {
	aspect-ratio: auto;
	overflow: hidden;
}

.flama-hero--poster .flama-image {
	display: block;
	width: 100%;
	max-width: none;
	height: auto;
}

.flama-media-grid {
	display: grid;
	gap: 2rem;
}

.flama-hero__split-copy {
	height: 100%;
	padding: 1.5rem;
}

.is-order-first {
	order: -1;
}

.flama-grid {
	display: grid;
	gap: 1.5rem;
}

.flama-card,
.flama-feature-card,
.flama-contact-panel,
.flama-cta {
	border-top: 1px solid var(--line-color);
	border-bottom: 1px solid var(--line-color);
}

.flama-feature-card {
	display: grid;
	gap: 2rem;
	padding: 2rem 0;
}

.flama-feature-card__content,
.flama-card__body {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.flama-feature-card__meta,
.flama-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	font-size: 0.85rem;
	color: var(--section-soft);
}

.flama-card__meta {
	justify-content: space-between;
}

.flama-feature-card__summary,
.flama-card__description,
.flama-events-list__meta,
.flama-members-list__role {
	margin: 0;
	color: var(--section-muted);
	line-height: 1.8;
}

.flama-card__body {
	padding: 1.5rem;
}

.flama-card__link {
	font-size: 0.85rem;
	color: var(--section-soft);
}

.flama-card__index {
	margin: 0;
	font-size: 0.85rem;
	color: var(--section-soft);
}

.flama-events-list,
.flama-members-list {
	border-top: 1px solid var(--line-color);
}

.flama-events-list__item,
.flama-members-list__item {
	display: grid;
	gap: 1rem;
	padding: 1.5rem 0;
	border-bottom: 1px solid var(--line-color);
}

.flama-events-list.is-compact .flama-events-list__item {
	padding-top: 1.2rem;
	padding-bottom: 1.2rem;
}

.flama-events-list__date,
.flama-events-list__badge,
.flama-members-list__index {
	margin: 0;
	font-size: 0.82rem;
	color: var(--section-soft);
}

.flama-events-list__badge {
	display: inline-flex;
	width: fit-content;
	align-items: center;
	padding: 0.65rem 0.85rem;
	border: 1px solid var(--line-color);
	border-radius: 0.3rem;
	background: var(--panel-ghost);
	color: var(--section-text);
}

.flama-contact-panel {
	display: grid;
	gap: 2rem;
	padding: 2rem 0;
}

.flama-contact-panel__details {
	border-top: 1px solid var(--line-color);
}

.flama-contact-panel__mail,
.flama-contact-panel__link {
	display: block;
	padding: 1rem 0;
	border-bottom: 1px solid var(--line-color);
}

.flama-contact-panel__link {
	font-size: 0.85rem;
	color: var(--section-soft);
}

.flama-gallery__item {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.flama-gallery__caption {
	font-size: 0.92rem;
	line-height: 1.7;
	color: var(--section-soft);
}

.flama-divider {
	height: 1px;
	background: var(--line-color);
}

.flama-divider--solid {
	background: var(--section-text);
}

.flama-divider--accent {
	background: var(--rust);
}

.flama-spacer--tight {
	height: 1.5rem;
}

.flama-spacer--normal {
	height: 3rem;
}

.flama-spacer--relaxed {
	height: 5rem;
}

.flama-spacer--xl {
	height: 7rem;
}

.flama-quote-panel,
.flama-cta {
	padding: 1.75rem 1.5rem;
}

.flama-quote-panel__eyebrow,
.flama-quote-panel__attribution,
.flama-cta__eyebrow {
	margin: 0 0 1.5rem;
	font-size: 0.85rem;
	color: var(--section-soft);
}

.flama-quote-panel__text {
	margin: 0;
	color: var(--section-text);
}

.flama-quote--regular {
	font-size: clamp(2rem, 5vw, 3rem);
}

.flama-quote--large {
	font-size: clamp(2.3rem, 6vw, 4rem);
}

.flama-quote--monumental {
	font-size: clamp(3rem, 7vw, 6.75rem);
	line-height: 0.9;
}

.flama-cta {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.flama-cta.is-horizontal {
	justify-content: space-between;
}

.flama-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	padding: 0.85rem 1.3rem;
	border-radius: 0.3rem;
	font-size: 0.85rem;
	transition: all 0.2s ease;
}

.flama-button--accent {
	background: var(--ink);
	border: 1px solid var(--ink);
	color: var(--paper-strong);
}

.flama-button--accent:hover {
	background: var(--rust);
	border-color: var(--rust);
}

.flama-button--soft {
	background: var(--paper-strong);
	border: 1px solid var(--ink);
	color: var(--ink);
}

.flama-button--glass {
	background: var(--panel-ghost);
	border: 1px solid var(--line-color);
	color: var(--section-text);
}

.flama-button--outline {
	background: transparent;
	border: 1px solid var(--line-color);
	color: var(--section-text);
}

.flama-empty-panel {
	border-top: 1px solid var(--line-color);
	border-bottom: 1px solid var(--line-color);
	padding: 2rem 0;
}

.flama-empty-panel .type-meta {
	margin: 0;
	font-size: 0.85rem;
	color: var(--section-soft);
}

.flama-empty-panel__message {
	margin: 1rem 0 0;
	max-width: 48rem;
	font-size: clamp(1.8rem, 4.5vw, 3rem);
	line-height: 1.2;
	color: var(--section-text);
}

.flama-generic-entry__media {
	margin-bottom: 1.5rem;
}

.flama-generic-list {
	display: grid;
	gap: 2rem;
}

@media (min-width: 768px) {
	:root {
		--frame-gutter: 2.5rem;
	}

	.site-frame::before {
		left: var(--frame-gutter);
	}

	.site-frame::after {
		right: var(--frame-gutter);
	}

	.site-header__inner {
		flex-direction: row;
		align-items: flex-end;
		justify-content: space-between;
	}

	.site-header__nav {
		justify-content: flex-end;
	}

	.site-footer__inner {
		grid-template-columns: 1.2fr 0.8fr;
	}

	.site-footer__meta {
		text-align: right;
		align-items: flex-end;
	}

	.flama-spacing-top--tight {
		padding-top: 3.5rem;
	}

	.flama-spacing-top--normal {
		padding-top: 6rem;
	}

	.flama-spacing-top--relaxed {
		padding-top: 8rem;
	}

	.flama-spacing-top--xl {
		padding-top: 10rem;
	}

	.flama-spacing-bottom--tight {
		padding-bottom: 3.5rem;
	}

	.flama-spacing-bottom--normal {
		padding-bottom: 6rem;
	}

	.flama-spacing-bottom--relaxed {
		padding-bottom: 8rem;
	}

	.flama-spacing-bottom--xl {
		padding-bottom: 10rem;
	}

	.flama-text-block--base {
		font-size: 1.08rem;
	}

	.flama-text-block--large {
		font-size: 1.26rem;
	}

	.flama-text-block.has-two-columns {
		columns: 2;
	}

	.flama-block-padding,
	.flama-quote-panel,
	.flama-hero__center-panel,
	.flama-hero__split-copy,
	.flama-cta {
		padding: 2.25rem 2.5rem;
	}

	.flama-media-grid--balanced {
		grid-template-columns: 1fr 1fr;
		align-items: center;
	}

	.flama-media-grid--image-heavy {
		grid-template-columns: 0.82fr 1.18fr;
		align-items: center;
	}

	.flama-media-grid--text-heavy {
		grid-template-columns: 1.18fr 0.82fr;
		align-items: center;
	}

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

	.flama-grid--3 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.flama-grid--4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.flama-feature-card--release,
	.flama-feature-card--release-single {
		grid-template-columns: 20rem 1fr;
		align-items: start;
	}

	.flama-feature-card--event {
		grid-template-columns: 14rem 1fr;
		align-items: start;
	}

	.flama-events-list__item {
		grid-template-columns: 14rem 1fr auto;
		align-items: center;
		gap: 1.5rem;
	}

	.flama-members-list__item {
		grid-template-columns: 4.5rem 16rem 1fr;
		gap: 1.5rem;
	}

	.flama-contact-panel {
		grid-template-columns: 1.1fr 0.9fr;
		align-items: start;
	}

	.flama-cta.is-horizontal {
		flex-direction: row;
		align-items: flex-end;
	}
}

@media (min-width: 1100px) {
	.site-orbit {
		display: block;
	}

	.flama-grid--4 {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.flama-container {
		width: var(--frame-width);
	}

	.site-footer__links {
		justify-content: flex-start;
	}
}
