/* =============================================================================
 * TR Homepage Master Pro — Stylesheet
 * Scoped under .trhmp to avoid theme conflicts.
 * Mobile-first. Grid + Flex. No external assets.
 * ============================================================================= */

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

.trhmp {
	/* Design tokens ------------------------------------------------------- */
	--trhmp-bg: #fbfaf7;
	--trhmp-surface: #ffffff;
	--trhmp-ink: #17110d;
	--trhmp-ink-2: #3c342e;
	--trhmp-muted: #7a6f67;
	--trhmp-line: #ece6de;
	--trhmp-line-2: #e3dbd0;

	--trhmp-accent: #d94e1f;       /* warm saffron-orange */
	--trhmp-accent-ink: #ffffff;
	--trhmp-accent-2: #f4a259;     /* sand */
	--trhmp-accent-deep: #8b2e1f;  /* paprika */

	--trhmp-dark: #13110f;
	--trhmp-dark-2: #1d1a16;
	--trhmp-dark-ink: #f6efe4;
	--trhmp-dark-muted: #a69a8b;

	--trhmp-radius-sm: 10px;
	--trhmp-radius: 18px;
	--trhmp-radius-lg: 28px;

	--trhmp-shadow-sm: 0 1px 2px rgba(23, 17, 13, 0.04), 0 2px 6px rgba(23, 17, 13, 0.05);
	--trhmp-shadow: 0 6px 20px rgba(23, 17, 13, 0.08), 0 2px 6px rgba(23, 17, 13, 0.05);
	--trhmp-shadow-lg: 0 20px 50px -12px rgba(23, 17, 13, 0.25);

	--trhmp-ease: cubic-bezier(0.22, 1, 0.36, 1);

	--trhmp-container: 1240px;
	--trhmp-gutter: clamp(16px, 3vw, 32px);

	/* Typography ---------------------------------------------------------- */
	--trhmp-font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--trhmp-font-serif: "Playfair Display", "Cormorant Garamond", Georgia, "Times New Roman", serif;

	background: var(--trhmp-bg);
	color: var(--trhmp-ink);
	font-family: var(--trhmp-font-sans);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

.trhmp a {
	color: inherit;
	text-decoration: none;
	transition: color 0.25s var(--trhmp-ease);
}

.trhmp img {
	max-width: 100%;
	display: block;
	height: auto;
}

.trhmp button {
	font: inherit;
	cursor: pointer;
}

.trhmp-container {
	width: 100%;
	max-width: var(--trhmp-container);
	margin: 0 auto;
	padding: 0 var(--trhmp-gutter);
}

/* Screen reader only (in case the theme doesn't provide it) */
.trhmp .screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px;
	height: 1px;
	overflow: hidden;
	word-wrap: normal !important;
}

/* =============================================================================
 * SHARED ATOMS
 * ============================================================================= */

/* Eyebrow label */
.trhmp-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--trhmp-accent-deep);
	padding: 6px 12px 6px 10px;
	background: rgba(217, 78, 31, 0.08);
	border-radius: 999px;
}
.trhmp-eyebrow--dark { color: var(--trhmp-accent-deep); }
.trhmp-eyebrow--light {
	color: var(--trhmp-accent-2);
	background: rgba(244, 162, 89, 0.12);
}
.trhmp-eyebrow__dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: currentColor;
	box-shadow: 0 0 0 4px rgba(217, 78, 31, 0.15);
}
.trhmp-eyebrow__dot--live {
	background: #e11d48;
	box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.18);
	animation: trhmp-pulse 2s infinite;
}
@keyframes trhmp-pulse {
	0%, 100% { box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.18); }
	50%      { box-shadow: 0 0 0 8px rgba(225, 29, 72, 0.05); }
}

/* Section head */
.trhmp-sectionhead {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 32px;
	flex-wrap: wrap;
}
.trhmp-sectionhead__title {
	font-family: var(--trhmp-font-serif);
	font-size: clamp(28px, 4vw, 44px);
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin: 14px 0 0;
	font-weight: 600;
	color: var(--trhmp-ink);
}
.trhmp-sectionhead__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 600;
	font-size: 14px;
	color: var(--trhmp-ink);
	padding: 8px 14px;
	border-radius: 999px;
	border: 1px solid var(--trhmp-line-2);
	background: var(--trhmp-surface);
	transition: all 0.25s var(--trhmp-ease);
}
.trhmp-sectionhead__link:hover {
	color: var(--trhmp-accent);
	border-color: var(--trhmp-accent);
	transform: translateX(2px);
}

/* Badges */
.trhmp-badge {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 5px 10px;
	border-radius: 4px;
	background: var(--trhmp-accent);
	color: var(--trhmp-accent-ink);
	align-self: flex-start;
}
.trhmp-badge--onimg {
	position: absolute;
	top: 14px;
	left: 14px;
	background: rgba(255, 255, 255, 0.95);
	color: var(--trhmp-ink);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

/* Buttons */
.trhmp-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 24px;
	font-size: 15px;
	font-weight: 600;
	border-radius: 999px;
	border: 1.5px solid transparent;
	transition: all 0.3s var(--trhmp-ease);
	white-space: nowrap;
	line-height: 1;
}
.trhmp-btn--primary {
	background: var(--trhmp-ink);
	color: #fff;
}
.trhmp-btn--primary:hover {
	background: var(--trhmp-accent);
	transform: translateY(-2px);
	box-shadow: 0 10px 25px -10px rgba(217, 78, 31, 0.6);
}
.trhmp-btn--primary:hover .trhmp-btn__arrow { transform: translateX(3px); }
.trhmp-btn__arrow { transition: transform 0.3s var(--trhmp-ease); }

.trhmp-btn--ghost {
	background: transparent;
	color: var(--trhmp-ink);
	border-color: var(--trhmp-line-2);
}
.trhmp-btn--ghost:hover {
	border-color: var(--trhmp-ink);
	background: var(--trhmp-ink);
	color: #fff;
}
.trhmp-btn--ghostlight {
	background: transparent;
	color: var(--trhmp-dark-ink);
	border-color: rgba(246, 239, 228, 0.25);
}
.trhmp-btn--ghostlight:hover {
	background: var(--trhmp-dark-ink);
	color: var(--trhmp-dark);
	border-color: var(--trhmp-dark-ink);
}

/* =============================================================================
 * 1. HERO
 * ============================================================================= */

.trhmp-hero {
	position: relative;
	padding: clamp(40px, 7vw, 90px) 0 clamp(60px, 8vw, 110px);
	overflow: hidden;
	isolation: isolate;
}
.trhmp-hero__bg {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(ellipse 70% 50% at 100% 0%, rgba(244, 162, 89, 0.28), transparent 60%),
		radial-gradient(ellipse 50% 40% at 0% 100%, rgba(217, 78, 31, 0.12), transparent 60%),
		linear-gradient(180deg, #fdfbf6 0%, var(--trhmp-bg) 100%);
}
.trhmp-hero__bg::after {
	/* subtle grain / noise */
	content: "";
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.25'/></svg>");
	opacity: 0.25;
	mix-blend-mode: multiply;
	pointer-events: none;
}

.trhmp-hero__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(32px, 5vw, 60px);
	align-items: center;
}
@media (min-width: 900px) {
	.trhmp-hero__inner {
		grid-template-columns: 1.05fr 1fr;
	}
}

.trhmp-hero__left > * + * { margin-top: 20px; }
.trhmp-hero__title {
	font-family: var(--trhmp-font-serif);
	font-size: clamp(38px, 6.2vw, 72px);
	line-height: 1.02;
	letter-spacing: -0.025em;
	font-weight: 600;
	margin: 12px 0 0;
	color: var(--trhmp-ink);
}
.trhmp-hero__subtitle {
	font-size: clamp(16px, 1.25vw, 19px);
	line-height: 1.6;
	color: var(--trhmp-ink-2);
	max-width: 54ch;
}
.trhmp-hero__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}
.trhmp-hero__stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(12px, 2vw, 28px);
	margin-top: 40px;
	padding-top: 28px;
	border-top: 1px solid var(--trhmp-line);
	max-width: 520px;
}
.trhmp-stat__num {
	display: block;
	font-family: var(--trhmp-font-serif);
	font-size: clamp(28px, 3.5vw, 40px);
	font-weight: 600;
	line-height: 1;
	color: var(--trhmp-ink);
	letter-spacing: -0.02em;
}
.trhmp-stat__suffix {
	font-size: 0.6em;
	color: var(--trhmp-accent);
	margin-left: 2px;
}
.trhmp-stat__label {
	display: block;
	margin-top: 8px;
	font-size: 13px;
	color: var(--trhmp-muted);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-weight: 500;
}

/* Hero right: image + floating elements */
.trhmp-hero__right { position: relative; }
.trhmp-hero__frame {
	position: relative;
	aspect-ratio: 4 / 5;
	max-height: 640px;
}
@media (min-width: 900px) {
	.trhmp-hero__frame { margin-left: auto; }
}
.trhmp-hero__imgwrap {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: var(--trhmp-radius-lg);
	overflow: hidden;
	display: block;
	box-shadow: var(--trhmp-shadow-lg);
}
.trhmp-hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s var(--trhmp-ease);
}
.trhmp-hero__imgwrap:hover .trhmp-hero__img { transform: scale(1.04); }
.trhmp-hero__imgshade {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.25), transparent 50%);
	pointer-events: none;
}

/* Floating micro-card */
.trhmp-microcard {
	position: absolute;
	bottom: -28px;
	left: -28px;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 20px 14px 14px;
	background: var(--trhmp-surface);
	border-radius: var(--trhmp-radius);
	box-shadow: var(--trhmp-shadow-lg);
	border: 1px solid var(--trhmp-line);
	transition: transform 0.3s var(--trhmp-ease);
}
.trhmp-microcard:hover { transform: translateY(-3px); }
@media (max-width: 500px) {
	.trhmp-microcard { left: 50%; transform: translateX(-50%); bottom: -24px; }
	.trhmp-microcard:hover { transform: translateX(-50%) translateY(-3px); }
}
.trhmp-microcard__icon {
	width: 40px; height: 40px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--trhmp-accent-2), var(--trhmp-accent));
	color: #fff;
	display: grid;
	place-items: center;
	flex-shrink: 0;
}
.trhmp-microcard__body { display: flex; flex-direction: column; line-height: 1.2; }
.trhmp-microcard__label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--trhmp-muted);
	font-weight: 600;
}
.trhmp-microcard__value {
	font-family: var(--trhmp-font-serif);
	font-size: 18px;
	color: var(--trhmp-ink);
	margin-top: 2px;
}

/* Floating category pill */
.trhmp-floatpill {
	position: absolute;
	top: 20px;
	right: 20px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px 8px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	font-size: 13px;
	font-weight: 600;
	color: var(--trhmp-ink);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	transition: transform 0.25s var(--trhmp-ease);
}
.trhmp-floatpill:hover { transform: translateY(-2px); color: var(--trhmp-accent); }
.trhmp-floatpill__dot {
	width: 6px; height: 6px;
	border-radius: 50%;
	background: var(--trhmp-accent);
}

/* =============================================================================
 * 6. SEARCH
 * ============================================================================= */

.trhmp-search {
	padding: 0 0 clamp(40px, 6vw, 72px);
	margin-top: -30px; /* slight overlap into hero bottom for layered feel */
	position: relative;
	z-index: 2;
}
.trhmp-search__box {
	max-width: 780px;
	margin: 0 auto;
	background: var(--trhmp-surface);
	padding: clamp(20px, 3vw, 32px);
	border-radius: var(--trhmp-radius-lg);
	box-shadow: var(--trhmp-shadow-lg);
	border: 1px solid var(--trhmp-line);
	text-align: center;
}
.trhmp-search__label {
	display: block;
	font-family: var(--trhmp-font-serif);
	font-size: clamp(18px, 2vw, 22px);
	color: var(--trhmp-ink);
	margin-bottom: 16px;
	font-weight: 500;
}
.trhmp-search__form {
	display: flex;
	align-items: center;
	gap: 6px;
	background: var(--trhmp-bg);
	border: 1.5px solid var(--trhmp-line-2);
	border-radius: 999px;
	padding: 6px 6px 6px 18px;
	transition: border-color 0.25s var(--trhmp-ease), box-shadow 0.25s var(--trhmp-ease);
}
.trhmp-search__form:focus-within {
	border-color: var(--trhmp-accent);
	box-shadow: 0 0 0 4px rgba(217, 78, 31, 0.12);
}
.trhmp-search__icon {
	color: var(--trhmp-muted);
	flex-shrink: 0;
}
.trhmp-search__input {
	flex: 1;
	min-width: 0;
	border: 0;
	background: transparent;
	padding: 12px 4px;
	font-size: 15px;
	color: var(--trhmp-ink);
	outline: none;
	font-family: inherit;
}
.trhmp-search__input::placeholder { color: var(--trhmp-muted); }
.trhmp-search__submit {
	border: 0;
	background: var(--trhmp-ink);
	color: #fff;
	padding: 12px 22px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 14px;
	transition: background 0.25s var(--trhmp-ease);
	flex-shrink: 0;
}
.trhmp-search__submit:hover { background: var(--trhmp-accent); }

.trhmp-search__suggest {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-top: 18px;
	font-size: 13px;
}
.trhmp-search__suggestlabel {
	color: var(--trhmp-muted);
	font-weight: 500;
	margin-right: 4px;
}
.trhmp-search__chip {
	padding: 6px 14px;
	border-radius: 999px;
	background: var(--trhmp-bg);
	border: 1px solid var(--trhmp-line);
	color: var(--trhmp-ink-2);
	font-weight: 500;
	transition: all 0.2s var(--trhmp-ease);
}
.trhmp-search__chip:hover {
	border-color: var(--trhmp-accent);
	color: var(--trhmp-accent);
	background: rgba(217, 78, 31, 0.05);
}

/* =============================================================================
 * 2. CATEGORY GRID — Pinterest-style asymmetry
 * ============================================================================= */

.trhmp-cats {
	padding: clamp(60px, 8vw, 100px) 0;
}
.trhmp-cats__grid {
	display: grid;
	gap: 16px;
	grid-template-columns: 1fr;
	grid-auto-rows: 220px;
}
@media (min-width: 640px) {
	.trhmp-cats__grid {
		grid-template-columns: repeat(4, 1fr);
		grid-auto-rows: 200px;
	}
	/* Asymmetric layout — first card big, others varied */
	.trhmp-cat--1 { grid-column: span 2; grid-row: span 2; }
	.trhmp-cat--2 { grid-column: span 2; grid-row: span 1; }
	.trhmp-cat--3 { grid-column: span 1; grid-row: span 1; }
	.trhmp-cat--4 { grid-column: span 1; grid-row: span 1; }
	.trhmp-cat--5 { grid-column: span 2; grid-row: span 1; }
}

.trhmp-cat {
	position: relative;
	overflow: hidden;
	border-radius: var(--trhmp-radius);
	background: var(--trhmp-ink);
	display: block;
	min-height: 200px;
	transition: transform 0.4s var(--trhmp-ease), box-shadow 0.4s var(--trhmp-ease);
}
.trhmp-cat:hover {
	transform: translateY(-4px);
	box-shadow: var(--trhmp-shadow-lg);
}
.trhmp-cat__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s var(--trhmp-ease);
}
.trhmp-cat:hover .trhmp-cat__img { transform: scale(1.08); }
.trhmp-cat__shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.55) 65%, rgba(0, 0, 0, 0.75) 100%);
	transition: background 0.4s var(--trhmp-ease);
}
.trhmp-cat:hover .trhmp-cat__shade {
	background: linear-gradient(180deg, rgba(139, 46, 31, 0.25) 0%, rgba(23, 17, 13, 0.85) 100%);
}
.trhmp-cat__body {
	position: absolute;
	inset: auto 0 0 0;
	padding: 20px 22px;
	color: #fff;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
}
.trhmp-cat__name {
	font-family: var(--trhmp-font-serif);
	font-size: clamp(20px, 2.2vw, 28px);
	line-height: 1.15;
	margin: 6px 0 0;
	font-weight: 600;
	letter-spacing: -0.01em;
}
.trhmp-cat--1 .trhmp-cat__name { font-size: clamp(24px, 3vw, 36px); }
.trhmp-cat__count {
	display: inline-block;
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.85);
}
.trhmp-cat__arrow {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	color: #fff;
	display: grid;
	place-items: center;
	flex-shrink: 0;
	transition: background 0.3s var(--trhmp-ease), transform 0.3s var(--trhmp-ease);
}
.trhmp-cat:hover .trhmp-cat__arrow {
	background: var(--trhmp-accent);
	transform: translateX(4px);
}

/* =============================================================================
 * 3. TRENDING — asymmetric 3-card
 * ============================================================================= */

.trhmp-trend {
	padding: clamp(60px, 8vw, 100px) 0;
	background: linear-gradient(180deg, transparent, rgba(244, 162, 89, 0.06));
}
.trhmp-trend__grid {
	display: grid;
	gap: 16px;
	grid-template-columns: 1fr;
}
@media (min-width: 900px) {
	.trhmp-trend__grid {
		grid-template-columns: 1.5fr 1fr;
		grid-template-rows: 1fr 1fr;
		height: 620px;
	}
	.trhmp-tcard--1 { grid-column: 1 / 2; grid-row: 1 / 3; }
	.trhmp-tcard--2 { grid-column: 2 / 3; grid-row: 1 / 2; }
	.trhmp-tcard--3 { grid-column: 2 / 3; grid-row: 2 / 3; }
}

.trhmp-tcard {
	position: relative;
	overflow: hidden;
	border-radius: var(--trhmp-radius);
	display: block;
	min-height: 280px;
	background: var(--trhmp-ink);
	transition: transform 0.4s var(--trhmp-ease);
}
.trhmp-tcard:hover { transform: translateY(-3px); }
.trhmp-tcard__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s var(--trhmp-ease);
}
.trhmp-tcard:hover .trhmp-tcard__img { transform: scale(1.06); }
.trhmp-tcard__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.75) 100%);
}
.trhmp-tcard__body {
	position: absolute;
	inset: auto 0 0 0;
	padding: clamp(18px, 2.5vw, 30px);
	color: #fff;
}
.trhmp-tcard__title {
	font-family: var(--trhmp-font-serif);
	font-size: clamp(20px, 2.2vw, 30px);
	line-height: 1.15;
	margin: 12px 0 0;
	font-weight: 600;
	letter-spacing: -0.015em;
}
.trhmp-tcard--1 .trhmp-tcard__title { font-size: clamp(24px, 3.2vw, 40px); }
.trhmp-tcard__meta {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-top: 14px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.85);
	font-weight: 500;
}
.trhmp-tcard__meta span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

/* =============================================================================
 * 4. LATEST RECIPES
 * ============================================================================= */

.trhmp-latest {
	padding: clamp(60px, 8vw, 100px) 0;
}
.trhmp-latest__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(24px, 3vw, 36px);
}
@media (min-width: 640px) {
	.trhmp-latest__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
	.trhmp-latest__grid { grid-template-columns: repeat(3, 1fr); }
}

.trhmp-lcard {
	display: flex;
	flex-direction: column;
	transition: transform 0.3s var(--trhmp-ease);
}
.trhmp-lcard:hover { transform: translateY(-4px); }
.trhmp-lcard__imgwrap {
	position: relative;
	aspect-ratio: 4 / 3;
	border-radius: var(--trhmp-radius);
	overflow: hidden;
	background: var(--trhmp-line);
	display: block;
}
.trhmp-lcard__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s var(--trhmp-ease);
}
.trhmp-lcard:hover .trhmp-lcard__img { transform: scale(1.06); }
.trhmp-lcard__body {
	padding: 18px 4px 0;
}
.trhmp-lcard__meta {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: var(--trhmp-muted);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 600;
}
.trhmp-lcard__title {
	font-family: var(--trhmp-font-serif);
	font-size: clamp(20px, 1.7vw, 24px);
	line-height: 1.2;
	margin: 10px 0 10px;
	font-weight: 600;
	letter-spacing: -0.01em;
}
.trhmp-lcard__title a { transition: color 0.25s var(--trhmp-ease); }
.trhmp-lcard__title a:hover { color: var(--trhmp-accent); }
.trhmp-lcard__excerpt {
	font-size: 15px;
	line-height: 1.6;
	color: var(--trhmp-ink-2);
	margin: 0 0 16px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.trhmp-lcard__cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 700;
	color: var(--trhmp-ink);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	border-bottom: 1.5px solid var(--trhmp-ink);
	padding-bottom: 3px;
	transition: all 0.3s var(--trhmp-ease);
	align-self: flex-start;
}
.trhmp-lcard__cta svg { transition: transform 0.3s var(--trhmp-ease); }
.trhmp-lcard__cta:hover {
	color: var(--trhmp-accent);
	border-bottom-color: var(--trhmp-accent);
}
.trhmp-lcard__cta:hover svg { transform: translateX(3px); }

/* =============================================================================
 * 5. BRAND / TRUST
 * ============================================================================= */

.trhmp-brand {
	position: relative;
	padding: clamp(70px, 10vw, 120px) 0;
	color: var(--trhmp-dark-ink);
	overflow: hidden;
	isolation: isolate;
}
.trhmp-brand__bg {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(ellipse 60% 80% at 85% 30%, rgba(217, 78, 31, 0.22), transparent 55%),
		radial-gradient(ellipse 50% 60% at 10% 90%, rgba(244, 162, 89, 0.1), transparent 60%),
		linear-gradient(140deg, var(--trhmp-dark) 0%, var(--trhmp-dark-2) 100%);
}
.trhmp-brand__inner {
	text-align: center;
	max-width: 820px;
}
.trhmp-brand__inner .trhmp-eyebrow { margin-bottom: 20px; }
.trhmp-brand__title {
	font-family: var(--trhmp-font-serif);
	font-size: clamp(32px, 5vw, 56px);
	line-height: 1.1;
	letter-spacing: -0.02em;
	font-weight: 600;
	margin: 0 0 20px;
	color: #fff;
}
.trhmp-brand__text {
	font-size: clamp(16px, 1.3vw, 18px);
	line-height: 1.7;
	color: var(--trhmp-dark-muted);
	margin: 0 0 36px;
	max-width: 62ch;
	margin-left: auto;
	margin-right: auto;
}
.trhmp-brand__tags {
	list-style: none;
	padding: 0;
	margin: 0 0 40px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}
.trhmp-brand__tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px 10px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 14px;
	font-weight: 500;
	color: var(--trhmp-dark-ink);
	transition: background 0.25s var(--trhmp-ease), border-color 0.25s var(--trhmp-ease), transform 0.25s var(--trhmp-ease);
}
.trhmp-brand__tag:hover {
	background: rgba(217, 78, 31, 0.2);
	border-color: var(--trhmp-accent);
	transform: translateY(-2px);
}
.trhmp-brand__tagicon { color: var(--trhmp-accent-2); display: inline-flex; }
.trhmp-brand__ctas {
	display: flex;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
}

/* =============================================================================
 * RESPONSIVE / MICRO-ADJUSTMENTS
 * ============================================================================= */

@media (max-width: 600px) {
	.trhmp-sectionhead { align-items: flex-start; }
	.trhmp-hero__stats { grid-template-columns: repeat(3, 1fr); }
	.trhmp-hero__frame { aspect-ratio: 3 / 4; }
	.trhmp-btn { padding: 12px 20px; font-size: 14px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	.trhmp *,
	.trhmp *::before,
	.trhmp *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
	.trhmp-hero__imgwrap:hover .trhmp-hero__img,
	.trhmp-cat:hover .trhmp-cat__img,
	.trhmp-tcard:hover .trhmp-tcard__img,
	.trhmp-lcard:hover .trhmp-lcard__img {
		transform: none;
	}
}

/* Focus visibility (accessibility) */
.trhmp a:focus-visible,
.trhmp button:focus-visible,
.trhmp input:focus-visible {
	outline: 2px solid var(--trhmp-accent);
	outline-offset: 3px;
	border-radius: 6px;
}
