/**
 * Niche China — homepage redesign (Sections 1–3)
 */

:root {
	--nc-content-max: 1280px;
	--nc-page-gutter: clamp(20px, 5vw, 50px);
}

/* Hide legacy Elementor hero — replaced by cinematic hero */
.home .elementor-element-2a924ea0 {
	display: none !important;
}

/* Hide re-added "Best Experiences" block and legacy Elementor blog widget */
.home .elementor-element-6cf94bb0,
.home .elementor-element-6373f145:has(.elementor-element-6cf94bb0),
.home .elementor-element-140422a6 {
	display: none !important;
}

/* Hide legacy Elementor cities carousel — replaced by nc-cities-section */
.home .elementor-element-2354b05 {
	display: none !important;
}

/* Shared horizontal alignment */
.nc-wrap,
.nc-product-line__inner,
.nc-themes__inner,
.nc-cities__inner,
.nc-blog__inner,
.home .niche-newsletter__inner,
.niche-site-footer__inner {
	max-width: var(--nc-content-max);
	margin-inline: auto;
	padding-inline: var(--nc-page-gutter);
}

/* ── Section 1: Cinematic hero with inline fantasy ── */
.nc-hero {
	position: relative;
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(80px, 12vw, 120px) var(--nc-page-gutter) clamp(72px, 10vw, 100px);
	overflow: hidden;
	color: #f4f0ea;
	background-color: #0a0c10;
	background-image:
		linear-gradient(135deg, rgba(8, 10, 16, 0.92) 0%, rgba(17, 17, 17, 0.78) 45%, rgba(255, 90, 0, 0.18) 100%),
		radial-gradient(ellipse 80% 60% at 70% 20%, rgba(255, 90, 0, 0.12) 0%, transparent 55%),
		radial-gradient(circle at 20% 80%, rgba(100, 180, 255, 0.08) 0%, transparent 40%),
		url("https://images.pexels.com/photos/2387873/pexels-photo-2387873.jpeg?auto=compress&cs=tinysrgb&w=1920");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.nc-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		repeating-linear-gradient(
			0deg,
			transparent,
			transparent 2px,
			rgba(255, 255, 255, 0.015) 2px,
			rgba(255, 255, 255, 0.015) 4px
		);
	pointer-events: none;
	opacity: 0.5;
}

.nc-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 760px;
	width: 100%;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
}

.nc-hero__copy {
	width: 100%;
}

.nc-hero__eyebrow {
	margin: 0 0 12px;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--nc-orange, #ff5a00);
}

.nc-hero__title {
	margin: 0 0 16px;
	font-size: clamp(2rem, 5.8vw, 3.25rem);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #fff;
}

.nc-hero__accent {
	color: var(--nc-orange, #ff5a00);
}

.nc-hero__subtitle {
	margin: 0 auto;
	max-width: 36rem;
	font-size: clamp(0.95rem, 2vw, 1.08rem);
	line-height: 1.6;
	color: rgba(255, 246, 235, 0.78);
}

/* Fantasy inside hero */
.nc-fantasy--hero {
	width: 100%;
	max-width: 100%;
	margin-top: clamp(48px, 7vw, 72px);
	text-align: left;
}

.nc-fantasy--hero .nc-fantasy__inner {
	max-width: 100%;
	margin: 0;
}

.nc-fantasy--hero .nc-fantasy__bubble {
	margin-bottom: 24px;
}

.nc-fantasy--hero .nc-fantasy__bubble-body {
	padding: 18px 20px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 246, 235, 0.18);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.nc-fantasy--hero .nc-fantasy__prompt {
	font-size: clamp(1.05rem, 2.5vw, 1.25rem);
	font-weight: 600;
	line-height: 1.5;
	color: #fff;
}

.nc-fantasy--hero .nc-fantasy__avatar {
	width: 44px;
	height: 44px;
	font-size: 0.72rem;
	background: rgba(255, 90, 0, 0.9);
	color: #fff;
	border: 2px solid rgba(255, 246, 235, 0.25);
}

.nc-fantasy--hero .nc-fantasy__form {
	padding-left: 58px;
	gap: 14px;
}

.nc-fantasy--hero .nc-fantasy__textarea {
	min-height: 120px;
	padding: 16px 18px;
	font-size: 1rem;
	line-height: 1.55;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 246, 235, 0.22);
	color: #fff;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.nc-fantasy--hero .nc-fantasy__textarea::placeholder {
	color: rgba(255, 246, 235, 0.55);
}

.nc-fantasy--hero .nc-fantasy__textarea:focus {
	border-color: var(--nc-orange, #ff5a00);
	box-shadow: 0 0 0 3px rgba(255, 90, 0, 0.25);
}

.nc-fantasy--hero .nc-fantasy__field-error {
	color: #fecaca;
}

.nc-fantasy--hero .nc-fantasy__submit {
	min-height: 48px;
	padding: 0 24px;
	font-size: 0.95rem;
	background: var(--nc-orange, #ff5a00);
	box-shadow: 0 8px 32px rgba(255, 90, 0, 0.35);
}

.nc-fantasy--hero .nc-fantasy__submit:hover,
.nc-fantasy--hero .nc-fantasy__submit:focus {
	background: var(--nc-orange-dark, #e04f00);
}

.nc-hero__browse {
	margin: 20px 0 0;
	width: 100%;
	text-align: center;
}

.nc-hero__browse-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 22px;
	font-size: 0.92rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--nc-cream, #fff6eb);
	text-decoration: none !important;
	border: 1.5px solid rgba(255, 246, 235, 0.55);
	border-radius: 999px;
	background: transparent;
	transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.nc-hero__browse-link:hover,
.nc-hero__browse-link:focus {
	color: #fff;
	border-color: var(--nc-orange, #ff5a00);
	background: rgba(255, 90, 0, 0.12);
}

/* ── Standalone fantasy (legacy fallback) ── */
.nc-fantasy:not(.nc-fantasy--hero) {
	background: var(--nc-cream, #fff6eb);
	padding: clamp(48px, 8vw, 72px) clamp(16px, 4vw, 32px);
}

.nc-fantasy__inner {
	max-width: 720px;
	margin: 0 auto;
}

.nc-fantasy__bubble {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	margin-bottom: 24px;
}

.nc-fantasy__avatar {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--nc-black, #111);
	color: var(--nc-orange, #ff5a00);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	display: flex;
	align-items: center;
	justify-content: center;
	text-transform: lowercase;
}

.nc-fantasy__bubble-body {
	flex: 1;
	background: #fff;
	border: 1px solid rgba(17, 17, 17, 0.08);
	border-radius: 4px 20px 20px 20px;
	padding: 18px 20px;
	box-shadow: 0 4px 24px rgba(17, 17, 17, 0.06);
}

.nc-fantasy__prompt {
	margin: 0;
	font-size: clamp(1.05rem, 2.5vw, 1.25rem);
	font-weight: 600;
	line-height: 1.5;
	color: var(--nc-black, #111);
}

.nc-fantasy__form {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding-left: 58px;
}

.nc-fantasy__hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.nc-fantasy__textarea {
	width: 100%;
	min-height: 120px;
	padding: 16px 18px;
	border: 2px solid rgba(17, 17, 17, 0.12);
	border-radius: 16px;
	font-family: inherit;
	font-size: 1rem;
	line-height: 1.55;
	resize: vertical;
	background: #fff;
	color: var(--nc-black, #111);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nc-fantasy__textarea:focus {
	outline: none;
	border-color: var(--nc-orange, #ff5a00);
	box-shadow: 0 0 0 3px rgba(255, 90, 0, 0.15);
}

.nc-fantasy__textarea--invalid {
	border-color: #dc2626;
}

.nc-fantasy__textarea--invalid:focus {
	border-color: #dc2626;
	box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

.nc-fantasy__field-error {
	margin: -6px 0 0;
	font-size: 0.9rem;
	line-height: 1.4;
	color: #991b1b;
}

.nc-fantasy__submit {
	align-self: flex-start;
	min-height: 48px;
	padding: 0 24px;
	border: 0;
	border-radius: 999px;
	background: var(--nc-black, #111);
	color: #fff;
	font-family: inherit;
	font-size: 0.95rem;
	font-weight: 700;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.nc-fantasy__submit:hover,
.nc-fantasy__submit:focus {
	background: var(--nc-orange, #ff5a00);
}

.nc-fantasy__notice {
	margin: 0 0 16px 58px;
	padding: 12px 16px;
	border-radius: 12px;
	font-size: 0.95rem;
	line-height: 1.5;
}

.nc-fantasy__notice--success {
	background: #ecfdf3;
	color: #166534;
	border: 1px solid #bbf7d0;
}

.nc-fantasy__notice--error {
	background: #fef2f2;
	color: #991b1b;
	border: 1px solid #fecaca;
}

/* ── Section 3+: Product lines & themes ── */
.nc-product-line {
	padding: clamp(56px, 8vw, 88px) 0;
}

.nc-product-line--local {
	background: var(--nc-cream, #fff6eb);
}

.nc-product-line--expert {
	background: var(--nc-black, #111);
	color: var(--nc-cream, #fff6eb);
}

.nc-product-line__inner {
	max-width: var(--nc-content-max);
	margin-inline: auto;
	padding-inline: var(--nc-page-gutter);
}

.nc-product-line__header {
	max-width: 720px;
	margin-bottom: clamp(28px, 4vw, 40px);
}

.nc-product-line__eyebrow {
	margin: 0 0 8px;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--nc-orange-ink, #c44500);
}

.nc-product-line--expert .nc-product-line__eyebrow {
	color: var(--nc-orange, #ff5a00);
}

.nc-product-line__title {
	margin: 0 0 16px;
	font-size: clamp(1.6rem, 3.5vw, 2.2rem);
	line-height: 1.2;
	font-weight: 700;
}

.nc-product-line--expert .nc-product-line__title {
	color: #fff;
}

.nc-product-line__body {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.7;
	color: #595349;
}

.nc-product-line--expert .nc-product-line__body {
	color: rgba(255, 246, 235, 0.78);
}

.nc-product-line__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.nc-product-line__cta {
	margin-top: 32px;
	text-align: center;
}

.nc-product-line__cta a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--nc-orange-ink, #c44500);
	text-decoration: none !important;
	transition: opacity 0.2s ease;
}

.nc-product-line__cta a:hover,
.nc-product-line__cta a:focus {
	opacity: 0.85;
	color: var(--nc-orange-dark, #b33d00);
}

.nc-product-line--expert .nc-product-line__cta a {
	color: var(--nc-cream, #fff6eb);
}

.nc-product-line__cta svg {
	width: 20px;
	height: 12px;
	flex-shrink: 0;
}

/* Tour cards */
.nc-tour-card {
	display: flex;
	flex-direction: column;
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 4px 24px rgba(17, 17, 17, 0.06);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nc-tour-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 32px rgba(17, 17, 17, 0.1);
}

.nc-tour-card--dark {
	background: #1a1a1a;
	box-shadow: none;
	border: 1px solid rgba(255, 246, 235, 0.08);
}

.nc-tour-card--dark:hover {
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.nc-tour-card__thumb {
	display: block;
	height: 180px;
	min-height: 180px;
	background-color: rgba(17, 17, 17, 0.08);
	background-size: cover;
	background-position: center;
	text-decoration: none !important;
}

.nc-tour-card--dark .nc-tour-card__thumb {
	background-color: #222;
}

.nc-tour-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 14px 16px 16px;
}

.nc-tour-card__title {
	margin: 0 0 8px;
	font-size: 0.95rem;
	line-height: 1.35;
	font-weight: 700;
}

.nc-tour-card__title a {
	color: var(--nc-black, #111);
	text-decoration: none !important;
}

.nc-tour-card__title a:hover,
.nc-tour-card__title a:focus {
	color: var(--nc-orange-ink, #c44500);
}

.nc-tour-card--dark .nc-tour-card__title a {
	color: var(--nc-cream, #fff6eb);
}

.nc-tour-card--dark .nc-tour-card__title a:hover,
.nc-tour-card--dark .nc-tour-card__title a:focus {
	color: var(--nc-orange, #ff5a00);
}

.nc-tour-card__location,
.nc-tour-card__duration {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0;
	font-size: 0.8rem;
	line-height: 1.4;
	color: #595349;
}

.nc-tour-card--dark .nc-tour-card__location,
.nc-tour-card--dark .nc-tour-card__duration {
	color: #999;
}

.nc-tour-card__location svg,
.nc-tour-card__duration svg {
	flex-shrink: 0;
	opacity: 0.85;
}

.nc-tour-card__meta {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.nc-tour-card__price {
	margin: 0;
	font-size: 0.88rem;
	font-weight: 700;
	line-height: 1.3;
	color: var(--nc-black, #111);
}

.nc-tour-card--dark .nc-tour-card__price {
	color: var(--nc-cream, #fff6eb);
}

.nc-tour-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
	padding-top: 12px;
}

.nc-tour-card__link {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 6px 14px;
	border-radius: 999px;
	background: var(--nc-black, #111);
	color: #fff !important;
	font-size: 0.8rem;
	font-weight: 700;
	text-decoration: none !important;
	white-space: nowrap;
	transition: background-color 0.2s ease;
}

.nc-tour-card__link:hover,
.nc-tour-card__link:focus {
	background: var(--nc-orange-ink, #c44500);
	color: #fff !important;
}

.nc-tour-card--dark .nc-tour-card__link {
	background: var(--nc-orange-ink, #c44500);
}

.nc-tour-card--dark .nc-tour-card__link:hover,
.nc-tour-card--dark .nc-tour-card__link:focus {
	background: var(--nc-orange-dark, #b33d00);
}

/* Themes carousel */
.nc-themes {
	background: var(--nc-cream, #fff6eb);
	padding: clamp(48px, 7vw, 72px) 0 clamp(40px, 5vw, 56px);
}

.nc-themes__inner {
	max-width: var(--nc-content-max);
	margin-inline: auto;
	padding-inline: var(--nc-page-gutter);
}

.nc-themes__header {
	max-width: 720px;
	margin-bottom: 32px;
}

.nc-themes__eyebrow {
	margin: 0 0 8px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--nc-orange-ink, #c44500);
}

.nc-themes__title {
	margin: 0 0 12px;
	font-size: clamp(1.5rem, 3.5vw, 2rem);
	line-height: 1.2;
	font-weight: 700;
	color: var(--nc-black, #111);
}

.nc-themes__desc {
	margin: 0;
	font-size: 1rem;
	line-height: 1.6;
	color: #595349;
}

.nc-themes__track {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	margin: 0;
	padding: 0 0 8px;
	list-style: none;
	scrollbar-width: thin;
	scrollbar-color: rgba(0, 0, 0, 0.15) transparent;
}

.nc-themes__track > li {
	/* list-item + flex can collapse width/height; force a definite card box */
	display: block;
	flex: 0 0 220px;
	width: 220px;
	min-width: 220px;
	max-width: 220px;
	scroll-snap-align: start;
	margin: 0;
	padding: 0;
	list-style: none;
}

.nc-themes__track::-webkit-scrollbar {
	height: 4px;
}

.nc-themes__track::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.15);
	border-radius: 4px;
}

.nc-theme-card {
	position: relative;
	display: block;
	width: 100%;
	/* Do NOT use height:100% here — li has no intrinsic height and all
	   card children are absolutely positioned, so % height collapses the card. */
	height: auto;
	min-height: 0;
	border-radius: 14px;
	overflow: hidden;
	aspect-ratio: 3 / 4;
	background-color: #2a2a2a;
	text-decoration: none !important;
	color: #fff;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nc-theme-card:hover,
.nc-theme-card:focus {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
	color: #fff;
}

.nc-theme-card__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.4s ease;
}

.nc-theme-card:hover .nc-theme-card__bg,
.nc-theme-card:focus .nc-theme-card__bg {
	transform: scale(1.06);
}

.nc-theme-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.12) 55%, rgba(0, 0, 0, 0.05) 100%);
}

.nc-theme-card__body {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px 18px;
}

.nc-theme-card__label {
	display: block;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--nc-orange, #ff5a00);
	margin-bottom: 6px;
}

.nc-theme-card__title {
	display: block;
	font-size: 1.05rem;
	font-weight: 600;
	line-height: 1.3;
}

.nc-theme-card__count {
	display: block;
	margin-top: 8px;
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.72);
}

.nc-themes__cta {
	margin-top: 28px;
	text-align: center;
}

.nc-themes__cta a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--nc-orange-ink, #c44500) !important;
	font-weight: 700;
	font-size: 0.95rem;
	text-decoration: none !important;
}

.nc-themes__cta a:hover,
.nc-themes__cta a:focus {
	gap: 14px;
	color: var(--nc-orange-dark, #b33d00) !important;
}

.nc-themes__cta svg {
	width: 20px;
	height: 12px;
}

/* ── Cities section ── */
.nc-cities-section {
	background: var(--nc-black, #111);
	color: var(--nc-cream, #fff6eb);
	padding: clamp(48px, 6vw, 72px) 0;
}

.nc-cities__header {
	max-width: 720px;
	margin-bottom: clamp(24px, 3.5vw, 32px);
}

.nc-cities__eyebrow {
	margin: 0 0 8px;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--nc-orange, #ff5a00);
}

.nc-cities__title {
	margin: 0 0 12px;
	font-size: clamp(1.6rem, 3.5vw, 2.2rem);
	line-height: 1.2;
	font-weight: 700;
	color: #f4f0ea;
}

.nc-cities__desc {
	margin: 0;
	font-size: 1rem;
	line-height: 1.6;
	color: rgba(255, 246, 235, 0.78);
}

.nc-cities__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.nc-city-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(17, 17, 17, 0.06);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	display: flex;
	flex-direction: column;
}

.nc-city-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 32px rgba(17, 17, 17, 0.1);
}

.nc-city-card .nc-card__thumb {
	display: block;
	aspect-ratio: 16 / 10;
	height: clamp(140px, 16vw, 180px);
	max-height: 180px;
	background-size: cover;
	background-position: center;
	background-color: rgba(17, 17, 17, 0.08);
	text-decoration: none !important;
}

.nc-city-card .nc-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 14px 16px 16px;
}

.nc-city-card .nc-card__title {
	margin: 0 0 6px;
	font-size: 0.95rem;
	line-height: 1.35;
	font-weight: 700;
}

.nc-city-card .nc-card__title a {
	color: var(--nc-black, #111);
	text-decoration: none !important;
}

.nc-city-card .nc-card__title a:hover,
.nc-city-card .nc-card__title a:focus {
	color: var(--nc-orange-ink, #c44500);
}

.nc-city-card__tagline {
	margin: 0 0 10px;
	font-size: 0.88rem;
	line-height: 1.45;
	color: #595349;
}

.nc-city-card .nc-card__foot {
	margin-top: auto;
	padding-top: 0;
}

.nc-city-card .nc-card__cta {
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--nc-orange-ink, #c44500);
	text-decoration: none;
}

.nc-city-card .nc-card__cta:hover {
	color: var(--nc-orange-dark, #b33d00);
	opacity: 1;
}

/* ── Blog section ── */
.nc-blog-section {
	background: var(--nc-cream, #fff6eb);
	padding: clamp(48px, 6vw, 72px) 0;
}

.nc-blog__header {
	max-width: 720px;
	margin-bottom: clamp(28px, 4vw, 36px);
}

.nc-blog__eyebrow {
	margin: 0 0 8px;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--nc-orange-ink, #c44500);
}

.nc-blog__title {
	margin: 0;
	font-size: clamp(1.6rem, 3.5vw, 2.2rem);
	line-height: 1.2;
	font-weight: 700;
	color: var(--nc-black, #111);
}

.nc-blog__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.nc-blog-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(17, 17, 17, 0.06);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	display: flex;
	flex-direction: column;
}

.nc-blog-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 32px rgba(17, 17, 17, 0.1);
}

.nc-blog-card .nc-card__thumb {
	display: block;
	height: 180px;
	min-height: 180px;
	background-size: cover;
	background-position: center;
	background-color: rgba(17, 17, 17, 0.08);
	text-decoration: none !important;
}

.nc-blog-card .nc-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 14px 16px 16px;
}

.nc-blog-card .nc-card__title {
	margin: 0 0 8px;
	font-size: 0.95rem;
	line-height: 1.35;
	font-weight: 700;
}

.nc-blog-card .nc-card__title a {
	color: var(--nc-black, #111);
	text-decoration: none !important;
}

.nc-blog-card .nc-card__title a:hover,
.nc-blog-card .nc-card__title a:focus {
	color: var(--nc-orange-ink, #c44500);
}

.nc-blog-card__excerpt {
	margin: 0 0 12px;
	font-size: 0.88rem;
	line-height: 1.55;
	color: #595349;
}

.nc-blog-card__excerpt p {
	margin: 0;
}

.nc-blog-card .nc-card__foot {
	margin-top: auto;
	padding-top: 0;
}

.nc-blog-card .nc-card__cta {
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--nc-orange-ink, #c44500);
	text-decoration: none;
}

.nc-blog-card .nc-card__cta:hover {
	color: var(--nc-orange-dark, #b33d00);
	opacity: 1;
}

.nc-blog__cta {
	margin-top: 32px;
	text-align: center;
}

.nc-blog__cta a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--nc-orange-ink, #c44500);
	text-decoration: none !important;
	transition: color 0.2s ease;
}

.nc-blog__cta a:hover,
.nc-blog__cta a:focus {
	opacity: 1;
	color: var(--nc-orange-dark, #b33d00);
}

.nc-blog__cta svg {
	width: 20px;
	height: 12px;
	flex-shrink: 0;
}

/* ── Fantasy email modal ── */
body.nc-fantasy-modal-open {
	overflow: hidden;
}

.nc-fantasy-modal[hidden] {
	display: none !important;
}

.nc-fantasy-modal {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.nc-fantasy-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(17, 17, 17, 0.55);
}

.nc-fantasy-modal__dialog {
	position: relative;
	width: min(440px, 100%);
	background: #fff;
	border-radius: 18px;
	padding: 28px 26px 24px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.nc-fantasy-modal__close {
	position: absolute;
	top: 12px;
	right: 14px;
	border: 0;
	background: transparent;
	font-size: 1.5rem;
	line-height: 1;
	color: #8a827a;
	cursor: pointer;
	padding: 4px;
}

.nc-fantasy-modal__close:hover,
.nc-fantasy-modal__close:focus {
	color: var(--nc-black, #111);
}

.nc-fantasy-modal__title {
	margin: 0 0 10px;
	font-size: 1.35rem;
	font-weight: 600;
	color: var(--nc-black, #111);
}

.nc-fantasy-modal__desc {
	margin: 0 0 18px;
	font-size: 0.95rem;
	line-height: 1.55;
	color: #595349;
}

.nc-fantasy-modal__desc--success {
	color: #166534;
}

.nc-fantasy-modal__form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.nc-fantasy-modal__label {
	display: block;
	margin-bottom: 6px;
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--nc-black, #111);
}

.nc-fantasy-modal__password-wrap {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.nc-fantasy-modal__password-helper {
	margin: 0;
	font-size: 0.82rem;
	line-height: 1.45;
	color: #8a827a;
}

.nc-fantasy-modal__input {
	width: 100%;
	min-height: 48px;
	padding: 0 14px;
	border: 2px solid rgba(17, 17, 17, 0.12);
	border-radius: 12px;
	font: inherit;
}

.nc-fantasy-modal__input:focus {
	outline: none;
	border-color: var(--nc-orange, #ff5a00);
	box-shadow: 0 0 0 3px rgba(255, 90, 0, 0.15);
}

.nc-fantasy-modal__error {
	margin: 0;
	font-size: 0.88rem;
	color: #991b1b;
}

.nc-fantasy-modal__submit,
.nc-fantasy-modal__done,
.nc-fantasy-modal__cta {
	align-self: flex-start;
	min-height: 44px;
	padding: 0 22px;
	border: 0;
	border-radius: 999px;
	background: var(--nc-black, #111);
	color: #fff;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.nc-fantasy-modal__submit:hover,
.nc-fantasy-modal__submit:focus,
.nc-fantasy-modal__done:hover,
.nc-fantasy-modal__done:focus,
.nc-fantasy-modal__cta:hover,
.nc-fantasy-modal__cta:focus {
	background: var(--nc-orange, #ff5a00);
	color: #fff;
}

.nc-fantasy-modal__cta {
	margin-bottom: 10px;
}

.nc-fantasy-modal__done {
	background: transparent;
	color: #595349;
	border: 2px solid rgba(17, 17, 17, 0.12);
}

.nc-fantasy-modal__done:hover,
.nc-fantasy-modal__done:focus {
	background: rgba(17, 17, 17, 0.04);
	color: var(--nc-black, #111);
	border-color: rgba(17, 17, 17, 0.2);
}

.nc-fantasy-modal__loading {
	margin: 12px 0;
	text-align: center;
	color: #595349;
}

/* ── Homepage newsletter ── */
.home .niche-newsletter {
	position: relative;
	background: linear-gradient(165deg, #0a0c10 0%, #1a1410 42%, #2a1810 78%, var(--nc-cream, #fff6eb) 100%);
	color: var(--nc-cream, #fff6eb);
	padding: clamp(56px, 7vw, 80px) 0 clamp(64px, 8vw, 88px);
	margin-top: 0;
	padding-inline: 0;
}

.home .niche-newsletter::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: min(720px, 80%);
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 90, 0, 0.35), transparent);
}

.home .niche-newsletter__inner {
	max-width: var(--nc-content-max);
	margin-inline: auto;
	padding-inline: var(--nc-page-gutter);
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
	gap: 40px 56px;
	align-items: center;
}

.home .niche-newsletter__eyebrow {
	margin: 0 0 10px;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--nc-orange, #ff5a00);
}

.home .niche-newsletter__copy h2 {
	margin: 0 0 14px;
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: 700;
	line-height: 1.15;
	color: inherit;
}

.home .niche-newsletter__desc {
	margin: 0;
	max-width: 36rem;
	font-size: clamp(1rem, 2vw, 1.1rem);
	line-height: 1.65;
	opacity: 0.9;
}

.home .niche-newsletter__form .mailpoet_form {
	background: transparent !important;
	border: 0 !important;
	padding: 0 !important;
}

.home .niche-newsletter__form form.mailpoet_form {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: stretch;
}

.home .niche-newsletter__form .mailpoet_paragraph {
	flex: 1 1 220px;
	margin: 0 !important;
}

.home .niche-newsletter__form .mailpoet_text {
	width: 100% !important;
	min-height: 50px;
	padding: 0 18px !important;
	border-radius: 999px !important;
	border: 1px solid rgba(255, 246, 235, 0.22) !important;
	background: rgba(255, 255, 255, 0.1) !important;
	color: #fff !important;
	backdrop-filter: blur(8px);
}

.home .niche-newsletter__form .mailpoet_text::placeholder {
	color: rgba(255, 246, 235, 0.55);
}

.home .niche-newsletter__form .mailpoet_submit {
	min-height: 50px;
	min-width: 140px;
	padding-left: 28px !important;
	padding-right: 28px !important;
	border-radius: 999px !important;
	background: var(--nc-orange-ink, #c44500) !important;
	font-weight: 700 !important;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.2s ease;
	box-shadow: 0 8px 32px rgba(196, 69, 0, 0.3);
}

.home .niche-newsletter__form .mailpoet_submit:hover,
.home .niche-newsletter__form .mailpoet_submit:focus {
	background-color: var(--nc-orange-dark, #b33d00) !important;
	transform: translateY(-1px);
}

.home .niche-newsletter__form .mailpoet_message,
.home .niche-newsletter__form .mailpoet_validate_success,
.home .niche-newsletter__form .mailpoet_validate_error {
	flex: 1 1 100%;
	margin: 8px 0 0;
	font-size: 0.95rem;
}

@media (max-width: 767px) {
	.home .niche-newsletter {
		padding: clamp(48px, 10vw, 64px) 0 clamp(56px, 12vw, 72px);
	}

	.home .niche-newsletter__inner {
		grid-template-columns: 1fr;
		gap: 28px;
		text-align: center;
	}

	.home .niche-newsletter__desc {
		margin-inline: auto;
	}

	.home .niche-newsletter__form form.mailpoet_form {
		flex-direction: column;
	}

	.home .niche-newsletter__form .mailpoet_submit {
		width: 100%;
	}
}

/* ── Responsive ── */
@media (max-width: 767px) {
	.nc-fantasy__form,
	.nc-fantasy__notice {
		padding-left: 0;
		margin-left: 0;
	}

	.nc-fantasy__bubble {
		flex-direction: column;
		align-items: flex-start;
	}

	.nc-fantasy--hero .nc-fantasy__form {
		padding-left: 0;
	}

	.nc-hero__browse {
		margin-top: 16px;
	}

	.nc-hero__browse-link {
		width: 100%;
		max-width: 320px;
	}

	.nc-product-line__grid {
		grid-template-columns: 1fr;
	}

	.nc-themes__track > li {
		flex: 0 0 170px;
		width: 170px;
		min-width: 170px;
		max-width: 170px;
	}

	.nc-theme-card {
		aspect-ratio: 2 / 3;
	}

	.nc-cities__grid {
		grid-template-columns: 1fr;
	}

	.nc-blog__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 900px) {
	.nc-product-line__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

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

@media (max-width: 580px) {
	.nc-product-line__grid {
		grid-template-columns: 1fr;
	}

	.nc-cities__grid {
		grid-template-columns: 1fr;
	}

	.nc-blog__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 374px) {
	.nc-hero {
		padding-top: 64px;
	}
}
