/**
 * UMAN template family - shared tokens, base reset, buttons, placeholders
 * and footer info band. Loaded before every per-template stylesheet.
 * Everything is scoped under .uman-landing so nothing leaks site-wide.
 */

.uman-landing {
	--uman-c-ink: #101010;
	--uman-c-bg: #fff;
	--uman-c-line: #dcdcdc;
	--uman-c-muted-on-light: #666666;
	--uman-c-muted-on-dark: #9a9a9a;
	--uman-c-panel-dark: #191919;
	--uman-c-navy: #001b54;
	--uman-c-gold: #bbad80;
	--uman-space-section-y: 3.5rem;
	--uman-space-section-x: 1.25rem;
	font-family: "Archivo", system-ui, sans-serif !important;
	color: var(--uman-c-ink) !important;
	background: var(--uman-c-bg);
}

.uman-landing * {
	box-sizing: border-box;
}

/*
 * Flatsome/WooCommerce set color, font-family, font-weight etc. directly
 * on bare h1-h6/p/a/li selectors. An explicit rule on an element always
 * wins over an inherited value no matter its specificity, so without this
 * every heading/paragraph below fell back to the theme's own type styles
 * instead of ours. `.uman-landing *` matches every descendant at a flat
 * (0,1,0) specificity - high enough to beat Flatsome's plain element
 * selectors, but tied with (and therefore overridden by, via source
 * order) any of our own more specific component rules further down this
 * cascade, so per-component colors/weights defined later still win.
 */
.uman-landing * {
	color: inherit !important;
	font-family: inherit !important;
	font-weight: inherit !important;
	font-style: inherit !important;
	line-height: inherit !important;
	text-transform: inherit !important;
	letter-spacing: inherit !important;
	text-decoration: inherit !important;
	text-align: inherit !important;
	list-style: inherit !important;
}

.uman-landing :focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

/*
 * :where() keeps these two resets at (0,1,0) specificity (same as any
 * single-class component selector) instead of (0,1,1) - a plain
 * ".uman-landing h1/p/ul" descendant selector would otherwise outrank
 * component rules like .uman-hero__eyebrow{margin-bottom:...} or
 * .uman-cultural-list{padding:...} and silently zero them back out.
 */
.uman-landing :where(h1, h2, p) {
	margin: 0;
}

.uman-landing :where(ul) {
	margin: 0;
	padding: 0;
}

.uman-landing ul {
	list-style: none !important;
}

.uman-landing address {
	font-style: normal !important;
}

.uman-landing :where(li) {
	margin: 0;
}

/*
 * flatsome.css puts a colored left border, italic style and left padding
 * on every bare <blockquote>, and puts font-size:.85em, opacity:.9 and
 * text-transform:uppercase on every bare <dl> (the opacity in particular
 * visibly washes out anything inside, not just text color/weight). Both
 * used by the Voci quotes and the Inscriere practical-info list.
 */
.uman-landing :where(blockquote) {
	margin: 0;
	padding: 0;
	border: 0;
}

.uman-landing dl {
	font-size: inherit;
	opacity: 1;
}

/* Buttons / links ------------------------------------------------------ */

.uman-btn {
	display: inline-block;
	padding: 0.9rem 1.75rem;
	font-size: 0.7rem;
	font-weight: 400 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.08em !important;
	text-decoration: none !important;
	text-align: center !important;
	border: 1px solid transparent;
}

.uman-btn--light {
	background: #fff;
	color: var(--uman-c-ink) !important;
}

.uman-btn--dark {
	background: var(--uman-c-ink);
	color: #fff !important;
}

.uman-btn--outline {
	border-color: #fff;
	color: #fff !important;
}

/*
 * Rendered as a <span>, not an <a> - a disabled link with no href is
 * still keyboard-focusable and misleads screen readers into announcing
 * it as navigable. A plain, unfocusable span with aria-disabled avoids
 * both problems for a sold-out/blocked registration state.
 */
.uman-btn--disabled {
	background: transparent;
	border-color: var(--uman-c-line);
	color: var(--uman-c-muted-on-light) !important;
	cursor: not-allowed;
}

.uman-link {
	display: inline-block;
	padding-bottom: 0.4rem;
	border-bottom: 1px solid var(--uman-c-ink);
	font-size: 0.7rem;
	text-transform: uppercase !important;
	letter-spacing: 0.07em !important;
	text-decoration: none !important;
	color: var(--uman-c-ink) !important;
}

/* Image placeholders (replace with real <img> before launch) ----------- */

.uman-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 12rem;
	border: 1px dashed rgba(0, 0, 0, 0.25);
	background: rgba(127, 127, 127, 0.08);
	color: rgba(0, 0, 0, 0.4) !important;
	font-size: 0.7rem;
	text-align: center !important;
	padding: 1rem;
}

.uman-placeholder--avatar {
	min-height: 0;
	width: 3.25rem;
	height: 3.25rem;
	border-radius: 50%;
	flex-shrink: 0;
	font-size: 0.55rem;
	padding: 0.25rem;
	object-fit: cover;
	display: block;
}

/* Footer info band ------------------------------------------------------ */

.uman-info-band {
	background: var(--uman-c-ink);
	color: #fff !important;
	border-top: 1px solid #333;
	padding: 2.5rem var(--uman-space-section-x) 1.25rem;
}

.uman-info-band__columns {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	margin-bottom: 1.5rem;
}

.uman-info-band__col {
	font-size: 0.7rem;
	text-transform: uppercase !important;
	letter-spacing: 0.05em !important;
	line-height: 1.7 !important;
}

.uman-info-band__col a {
	color: inherit !important;
	text-decoration: none !important;
}

.uman-info-band__col a:hover,
.uman-info-band__col a:focus-visible {
	text-decoration: underline !important;
}

.uman-info-band__legal {
	border-top: 1px solid #333;
	padding-top: 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	font-size: 0.6rem;
	text-transform: uppercase !important;
	letter-spacing: 0.04em !important;
	color: #7a7a7a !important;
	margin-bottom: 1.5rem;
}

.uman-info-band__legal a {
	color: inherit !important;
	text-decoration: underline !important;
}

.uman-info-band__legal a:hover,
.uman-info-band__legal a:focus-visible {
	color: #fff !important;
}

.uman-info-band__wordmark {
	font-size: clamp(2.5rem, 16vw, 8rem);
	font-weight: 700 !important;
	letter-spacing: -0.03em !important;
	line-height: 1 !important;
	overflow-wrap: break-word;
}

/* Tablet up -------------------------------------------------------------- */

@media only screen and (min-width: 48em) {
	.uman-landing {
		--uman-space-section-x: 2.5rem;
		--uman-space-section-y: 5.5rem;
	}

	.uman-info-band__columns {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* Desktop up --------------------------------------------------------------- */

@media only screen and (min-width: 64em) {
	.uman-landing {
		--uman-space-section-x: 3.5rem;
	}
}
