/**
 * One Custom Heading widget styles.
 *
 * Editorial split-heading: horizontal rule + tracked eyebrow above a
 * two-part serif title with an italic accent word (bronze). Matches
 * the luxury Euro brand (obsidian + bronze, Playfair Display).
 */

.one-custom-heading {
	display: block;
	width: 100%;
	color: var(--one-obsidian, #1C1C1E);
	text-align: left;
}

/* ==================== Eyebrow ==================== */

.one-custom-heading__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
}

.one-custom-heading__line {
	display: inline-block;
	width: 32px;
	height: 1px;
	background-color: var(--one-bronze, #B08D57);
	flex-shrink: 0;
}

.one-custom-heading__eyebrow-text {
	display: inline-block;
	font-family: var(--one-font-nav, 'JetBrains Mono', 'Menlo', 'Consolas', ui-monospace, monospace);
	font-size: 11px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--one-obsidian-3, #6a6a70);
}

/* Center + right alignment: eyebrow follows the text-align */
.one-custom-heading[style*="text-align: center"] .one-custom-heading__eyebrow,
.one-custom-heading[style*="text-align:center"] .one-custom-heading__eyebrow {
	margin-left: auto;
	margin-right: auto;
}

.one-custom-heading[style*="text-align: right"] .one-custom-heading__eyebrow,
.one-custom-heading[style*="text-align:right"] .one-custom-heading__eyebrow {
	margin-left: auto;
}

/* ==================== Heading ==================== */

.one-custom-heading__title {
	margin: 0;
	padding: 0;
	font-family: var(--one-font-heading, 'Playfair Display', Georgia, 'Times New Roman', serif);
	font-weight: 500;
	font-style: normal;
	line-height: 1.08;
	letter-spacing: -0.015em;
	color: var(--one-obsidian, #1C1C1E);
	font-size: clamp(2rem, 5vw, 4rem);
}

.one-custom-heading__text {
	display: inline;
	font-style: normal;
	color: inherit;
}

/* Italic accent word — italic + bronze by default */
.one-custom-heading__accent {
	display: inline;
	font-style: italic;
	font-weight: 500;
	color: var(--one-bronze, #B08D57);
}

/* ==================== Responsive tweaks ==================== */

@media (max-width: 767px) {
	.one-custom-heading__eyebrow {
		gap: 10px;
		margin-bottom: 14px;
	}

	.one-custom-heading__line {
		width: 24px;
	}

	.one-custom-heading__eyebrow-text {
		font-size: 10px;
		letter-spacing: 0.16em;
	}

	.one-custom-heading__title {
		font-size: clamp(1.75rem, 8vw, 2.5rem);
		line-height: 1.1;
	}
}

/* ==================== Scroll reveal ==================== */

.one-custom-heading--reveal {
	opacity: 0;
	transform: translateY(40px);
	transition:
		opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
		transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.one-custom-heading--reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* In the Elementor editor, always show the heading so authors can edit it. */
.elementor-editor-active .one-custom-heading--reveal {
	opacity: 1;
	transform: none;
}

/* Respect reduced-motion preferences. */
@media (prefers-reduced-motion: reduce) {
	.one-custom-heading--reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}
