/* NovaCore frontend card family – PHASE 08 A1/B1 baseline. */
:root {
	--novacore-front-text: #0c2d45;
	--novacore-front-muted: #627482;
	--novacore-front-border: #e3e8eb;
	--novacore-front-surface: #fff;
	--novacore-front-soft: #f5f8f9;
	--novacore-front-accent: #0b7290;
	--novacore-front-navy: #0d3148;
	--novacore-front-warm: #d6a73f;
	--novacore-front-coral: #e66f51;
	--novacore-front-tip: #fff1ec;
	--novacore-front-radius: 22px;
}

.novacore-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(340px, 420px));
	gap: 30px;
	align-items: stretch;
	margin: 28px 0;
}

.novacore-list--empty {
	display: block;
	padding: 18px 20px;
	border: 1px solid var(--novacore-front-border);
	border-radius: 14px;
	background: var(--novacore-front-soft);
	color: var(--novacore-front-muted);
}

.novacore-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	border: 1px solid var(--novacore-front-border);
	border-radius: var(--novacore-front-radius);
	overflow: hidden;
	background: var(--novacore-front-surface);
	box-shadow: 0 10px 30px rgba(15, 46, 65, .08);
	transition: transform .22s ease, box-shadow .22s ease;
}

.novacore-card:hover,
.novacore-card:focus-within {
	transform: translateY(-3px);
	box-shadow: 0 16px 40px rgba(15, 46, 65, .13);
}

.novacore-card__visual {
	position: relative;
	min-height: 270px;
	background: linear-gradient(180deg, #e8eef0, #d8e2e6);
	overflow: hidden;
}

.novacore-card__media {
	display: block;
	position: absolute;
	inset: 0;
}

.novacore-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
}

.novacore-card:hover .novacore-card__image,
.novacore-card:focus-within .novacore-card__image {
	transform: scale(1.035);
}

.novacore-card__visual::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(7, 29, 44, .13), rgba(7, 29, 44, .02) 40%, rgba(7, 29, 44, .28));
	pointer-events: none;
}

.novacore-card__badges {
	position: relative;
	z-index: 4;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 10px;
	padding: 16px;
}

.novacore-card__badge {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-height: 34px;
	max-width: 52%;
	padding: 6px 13px;
	border-radius: 999px;
	background: rgba(12, 43, 62, .88);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	backdrop-filter: blur(9px);
}

.novacore-card__badge--secondary {
	margin-left: auto;
	background: rgba(255, 255, 255, .95);
	color: var(--novacore-front-navy);
	box-shadow: 0 4px 14px rgba(14, 43, 61, .08);
}

/* Bottom drawer: only the handle is visible until hover/focus/tap. */
.novacore-card__drawer {
	position: absolute;
	z-index: 3;
	left: 14px;
	right: 14px;
	bottom: 0;
	transform: translateY(calc(100% - 46px));
	transition: transform .28s cubic-bezier(.2,.7,.2,1);
	border-radius: 18px 18px 0 0;
	background: rgba(18, 39, 52, .48);
	color: #fff;
	backdrop-filter: blur(11px);
	overflow: hidden;
}

.novacore-card__visual:hover .novacore-card__drawer,
.novacore-card__visual:focus-within .novacore-card__drawer,
.novacore-card.is-drawer-open .novacore-card__drawer {
	transform: translateY(0);
}

.novacore-card__drawer-toggle {
	display: flex;
	align-items: center;
	gap: 9px;
	width: 100%;
	min-height: 46px;
	padding: 8px 14px;
	border: 0;
	background: transparent;
	color: #fff;
	font: inherit;
	font-size: 13px;
	font-weight: 650;
	text-align: left;
	cursor: pointer;
}

.novacore-card__drawer-chevron {
	margin-left: auto;
	font-size: 18px;
	transition: transform .2s ease;
}

.novacore-card.is-drawer-open .novacore-card__drawer-chevron,
.novacore-card__visual:hover .novacore-card__drawer-chevron,
.novacore-card__visual:focus-within .novacore-card__drawer-chevron {
	transform: rotate(180deg);
}

.novacore-card__drawer-content {
	display: grid;
	padding: 0 12px 10px;
}

.novacore-card__highlight {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 40px;
	padding: 8px 3px;
	border-top: 1px solid rgba(255,255,255,.15);
	font-size: 13px;
	line-height: 1.3;
}

.novacore-card__highlight:first-child { border-top: 0; }
.novacore-card__highlight-arrow { margin-left: auto; font-size: 22px; opacity: .8; }
.novacore-card__highlight-icon,
.novacore-card__highlight-icon img { width: 21px; height: 21px; object-fit: contain; flex: 0 0 21px; }

.novacore-card__body {
	position: relative;
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 22px 24px 20px;
}

.novacore-card__title {
	margin: 0 0 5px;
	font-size: clamp(21px, 2vw, 25px);
	line-height: 1.22;
	color: var(--novacore-front-navy);
}
.novacore-card__title a { color: inherit; text-decoration: none; }

.novacore-card__subtitle {
	margin: 0 0 11px;
	color: #6f8190;
	font-size: 14px;
	line-height: 1.42;
}

.novacore-card__excerpt {
	margin: 0 0 13px;
	color: #4d626f;
	font-size: 14px;
	line-height: 1.5;
}

.novacore-card__excerpt--clamp {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.novacore-card__features {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
	margin: 0 0 13px;
}

.novacore-card__feature,
.novacore-card__geography,
.novacore-card__season,
.novacore-card__audience,
.novacore-card__related {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--novacore-front-text);
	font-size: 13px;
	line-height: 1.35;
}

.novacore-card__geography { margin: 0 0 11px; color: #536b79; }

.novacore-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 24px;
	margin-top: 2px;
	padding-top: 2px;
}

.novacore-card__meta-item,
.novacore-card__price {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--novacore-front-text);
	font-size: 13.5px;
	line-height: 1.3;
}

.novacore-card__season,
.novacore-card__audience {
	margin-top: 10px;
}


.novacore-card__expert-tip {
	position: absolute;
	z-index: 7;
	left: 18px;
	right: 18px;
	bottom: 86px;
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 12px 14px;
	border: 1px solid #f4d8cf;
	border-radius: 14px;
	background: rgba(255, 241, 236, .98);
	color: var(--novacore-front-coral);
	box-shadow: 0 14px 30px rgba(61, 38, 29, .13);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.novacore-card__expert-tip p { margin: 0; font-size: 12.5px; line-height: 1.42; }
.novacore-card__body:hover .novacore-card__expert-tip,
.novacore-card__body:focus-within .novacore-card__expert-tip {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.novacore-card__price-row {
	margin-top: 13px;
	padding-top: 13px;
	border-top: 1px solid #efd8d1;
}

.novacore-card__price {
	color: var(--novacore-front-accent);
	font-size: 19px;
	font-weight: 780;
}

.novacore-card__personalization {
	margin: 10px 0 0;
	padding-top: 10px;
	border-top: 1px solid #f0d8d0;
	color: var(--novacore-front-coral);
	font-size: 12.5px;
	font-style: italic;
	line-height: 1.45;
}

.novacore-card__related {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-top: 13px;
	padding-top: 13px;
	border-top: 1px solid var(--novacore-front-border);
	color: var(--novacore-front-accent);
	font-size: 15px;
	font-weight: 750;
	text-decoration: none;
}

.novacore-card__related-main,
.novacore-card__related-cta {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.novacore-card__related-cta {
	margin-left: auto;
	padding: 7px 13px;
	border: 1px solid var(--novacore-front-accent);
	border-radius: 999px;
	background: rgba(255, 255, 255, .88);
	color: var(--novacore-front-accent);
	font-size: 12px;
	font-weight: 800;
	transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.novacore-card__related-cta > span[aria-hidden="true"] {
	display: inline-block;
	transition: transform .2s ease;
}

.novacore-card__related:hover .novacore-card__related-cta,
.novacore-card__related:focus-visible .novacore-card__related-cta {
	border-color: var(--novacore-front-navy);
	background: var(--novacore-front-navy);
	color: #fff;
}

.novacore-card__related:hover .novacore-card__related-cta > span[aria-hidden="true"],
.novacore-card__related:focus-visible .novacore-card__related-cta > span[aria-hidden="true"] {
	transform: translateX(2px);
}

.novacore-card .novacore-term-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	flex: 0 0 20px;
}
.novacore-card .novacore-term-icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.novacore-card__badge .novacore-term-icon {
	width: 16px;
	height: 16px;
	flex-basis: 16px;
}

.novacore-card .novacore-semantic-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	flex: 0 0 20px;
	color: var(--novacore-front-accent);
}
.novacore-card .novacore-semantic-icon img { display: block; width: 100%; height: 100%; object-fit: contain; }
.novacore-card .novacore-semantic-icon--fallback { font-size: 19px; line-height: 20px; }
.novacore-card__drawer .novacore-semantic-icon { color: #fff; }
.novacore-card__expert-tip .novacore-semantic-icon { color: var(--novacore-front-coral); }

.novacore-card--b1 .novacore-card__visual { min-height: 270px; }
.novacore-card--b1 .novacore-card__body { padding-bottom: 22px; }


/* PHASE 08 A1/B1 interaction and icon polish. */
.novacore-card__body--link {
	cursor: pointer;
	outline: none;
}

.novacore-card__body--link:focus-visible {
	box-shadow: inset 0 0 0 2px rgba(11, 114, 144, .22);
}

.novacore-card__highlight {
	color: inherit;
	text-decoration: none;
	border-radius: 10px;
	transition: background .18s ease, transform .18s ease;
}

.novacore-card__highlight:hover,
.novacore-card__highlight:focus-visible {
	background: rgba(255, 255, 255, .18);
	transform: translateX(2px);
	outline: none;
}

.novacore-card__badge--domain .novacore-term-icon,
.novacore-card__badge--domain .novacore-semantic-icon {
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
	padding: 4px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .94);
	box-sizing: border-box;
	color: var(--novacore-front-accent);
}

.novacore-card__badge--domain .novacore-term-icon img,
.novacore-card__badge--domain .novacore-semantic-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.novacore-card__highlight > .novacore-term-icon,
.novacore-card__highlight > .novacore-semantic-icon,
.novacore-card__highlight > .novacore-card__highlight-icon {
	width: 30px;
	height: 30px;
	flex: 0 0 30px;
	padding: 5px;
	border-radius: 9px;
	background: rgba(255, 255, 255, .92);
	box-sizing: border-box;
	color: var(--novacore-front-accent);
}

.novacore-card__highlight > .novacore-term-icon img,
.novacore-card__highlight > .novacore-semantic-icon img,
.novacore-card__highlight > .novacore-card__highlight-icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.novacore-card__highlight-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	flex: 0 0 28px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .10);
	font-size: 22px;
	opacity: .95;
	transition: background .18s ease, transform .18s ease;
}

.novacore-card__highlight:hover .novacore-card__highlight-arrow,
.novacore-card__highlight:focus-visible .novacore-card__highlight-arrow {
	background: rgba(255, 255, 255, .26);
	transform: translateX(2px);
}


.novacore-card__drawer-toggle .novacore-semantic-icon {
	width: 22px;
	height: 22px;
	flex: 0 0 22px;
}

.novacore-card__audience--trip {
	margin-top: 0;
	margin-bottom: 11px;
}

@media (max-width: 760px) {
	.novacore-list { grid-template-columns: 1fr; gap: 20px; }
	.novacore-card__visual { min-height: 245px; }
	.novacore-card__body { padding: 19px 19px 17px; }
	.novacore-card__drawer { left: 10px; right: 10px; }
	.novacore-card__expert-tip { left: 12px; right: 12px; bottom: 80px; }
}

@media (hover: none) {
	.novacore-card:hover { transform: none; }
	.novacore-card__visual:hover .novacore-card__drawer { transform: translateY(calc(100% - 46px)); }
	.novacore-card.is-drawer-open .novacore-card__drawer { transform: translateY(0); }
}

/* PHASE 08 – modular homepage shortcode system. */
.novacore-home-section { margin: clamp(42px,6vw,78px) 0; }
.novacore-home-section__header {
	display:flex; align-items:flex-end; justify-content:space-between; gap:24px; margin-bottom:24px;
}
.novacore-home-section__header h2 { margin:0; color:var(--novacore-front-navy); font-size:clamp(28px,3vw,42px); line-height:1.1; }
.novacore-home-section__header p { margin:7px 0 0; color:var(--novacore-front-muted); font-size:15px; }
.novacore-home-section__more { display:inline-flex; align-items:center; gap:7px; white-space:nowrap; color:var(--novacore-front-accent); font-weight:700; text-decoration:none; }
.novacore-home-section__more:hover span { transform:translateX(3px); }
.novacore-home-section__more span { transition:transform .2s ease; }

.novacore-home-hero { position:relative; min-height:clamp(440px,52vw,720px); overflow:hidden; border-radius:0 0 28px 28px; background:#14394e; }
.novacore-home-hero__media,.novacore-home-hero__image { position:absolute; inset:0; width:100%; height:100%; }
.novacore-home-hero__image { object-fit:cover; }
.novacore-home-hero__overlay { position:absolute; inset:0; background:linear-gradient(90deg,rgba(6,31,48,.78) 0%,rgba(6,31,48,.50) 42%,rgba(6,31,48,.08) 76%); }
.novacore-home-hero__content { position:relative; z-index:2; max-width:720px; padding:clamp(70px,10vw,140px) clamp(24px,7vw,100px); color:#fff; }
.novacore-home-hero__content h1 { margin:0 0 18px; font-size:clamp(46px,6vw,82px); line-height:.98; letter-spacing:-.025em; }
.novacore-home-hero__content p { max-width:650px; margin:0 0 25px; font-size:clamp(18px,2vw,25px); line-height:1.45; }
.novacore-home-actions { display:flex; flex-wrap:wrap; gap:12px; }
.novacore-home-button { display:inline-flex; align-items:center; gap:9px; min-height:48px; padding:11px 20px; border-radius:10px; font-weight:800; text-decoration:none; transition:transform .2s ease,background .2s ease,color .2s ease; }
.novacore-home-button:hover { transform:translateY(-2px); }
.novacore-home-button--primary { background:#efc35e; color:#15374b; box-shadow:0 8px 22px rgba(0,0,0,.12); }
.novacore-home-button--secondary { border:1px solid rgba(255,255,255,.7); background:rgba(9,47,67,.24); color:#fff; backdrop-filter:blur(8px); }

.novacore-home-inspiration__grid { display:grid; grid-template-columns:repeat(6,minmax(145px,1fr)); gap:12px; }
.novacore-inspiration-tile { position:relative; display:block; min-height:210px; border-radius:15px; overflow:hidden; color:#fff; text-decoration:none; box-shadow:0 9px 24px rgba(12,46,64,.09); }
.novacore-inspiration-tile__image { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform .35s ease; }
.novacore-inspiration-tile:hover .novacore-inspiration-tile__image { transform:scale(1.05); }
.novacore-inspiration-tile__shade { position:absolute; inset:0; background:linear-gradient(180deg,rgba(7,28,42,.04),rgba(7,28,42,.78)); }
.novacore-inspiration-tile__content { position:absolute; z-index:2; left:14px; right:14px; bottom:14px; display:grid; justify-items:center; gap:6px; text-align:center; }
.novacore-inspiration-tile__content strong { font-size:19px; }
.novacore-inspiration-tile__content small { font-size:10px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.novacore-home-custom-icon { display:inline-flex; width:30px; height:30px; align-items:center; justify-content:center; }
.novacore-home-custom-icon img { width:100%; height:100%; object-fit:contain; }
.novacore-inspiration-tile .novacore-semantic-icon { width:30px; height:30px; color:#fff; }

.novacore-scroll-module { position:relative; display:flex; align-items:center; gap:8px; }
.novacore-scroll-module__viewport { flex:1; min-width:0; overflow-x:auto; overflow-y:hidden; scroll-behavior:smooth; scroll-snap-type:x proximity; scrollbar-width:none; }
.novacore-scroll-module__viewport::-webkit-scrollbar { display:none; }
.novacore-scroll-module__control { position:relative; z-index:3; display:flex; align-items:center; justify-content:center; width:38px; height:38px; flex:0 0 38px; border:1px solid #d7e2e6; border-radius:999px; background:#fff; color:var(--novacore-front-navy); font-size:25px; box-shadow:0 4px 14px rgba(12,46,64,.08); cursor:pointer; transition:opacity .2s ease,transform .2s ease; }
.novacore-scroll-module__control:hover { transform:scale(1.04); }
.novacore-scroll-module__control[hidden] { display:none; }
.novacore-scroll-module__control:disabled { opacity:.25; cursor:default; }

.novacore-destination-nav { margin:28px 0 36px; }
.novacore-destination-nav__track { display:flex; width:max-content; min-width:100%; gap:8px; align-items:stretch; }
.novacore-destination-nav__item { display:inline-flex; align-items:center; gap:8px; min-height:46px; padding:9px 16px; border:1px solid #dce5e8; border-radius:10px; background:#fff; color:var(--novacore-front-navy); text-decoration:none; font-weight:700; white-space:nowrap; scroll-snap-align:start; box-shadow:0 3px 12px rgba(12,46,64,.04); }
.novacore-destination-nav__item:hover,.novacore-destination-nav__item:focus-visible,.novacore-destination-nav__item.is-active { border-color:var(--novacore-front-navy); background:var(--novacore-front-navy); color:#fff; }
.novacore-destination-nav__item .novacore-term-icon,.novacore-destination-nav__item .novacore-home-custom-icon,.novacore-destination-nav__item .novacore-semantic-icon { width:22px; height:22px; flex:0 0 22px; }
.novacore-destination-nav__item img { width:100%; height:100%; object-fit:contain; }

.novacore-home-featured .novacore-list { grid-template-columns:repeat(3,minmax(0,1fr)); gap:22px; margin:0; }

.novacore-home-recommendations__track { display:flex; gap:14px; width:max-content; min-width:100%; }
.novacore-recommendation-card { display:grid; grid-template-columns:120px minmax(180px,1fr) 34px; align-items:center; width:clamp(340px,32vw,470px); min-height:105px; border:1px solid var(--novacore-front-border); border-radius:14px; overflow:hidden; background:#fff; color:var(--novacore-front-navy); text-decoration:none; scroll-snap-align:start; box-shadow:0 5px 18px rgba(12,46,64,.05); }
.novacore-recommendation-card__media { align-self:stretch; min-height:105px; overflow:hidden; }
.novacore-recommendation-card__media img { width:100%; height:100%; object-fit:cover; }
.novacore-recommendation-card__content { display:grid; gap:5px; padding:13px 15px; }
.novacore-recommendation-card__content strong { font-size:16px; }
.novacore-recommendation-card__content small { color:var(--novacore-front-muted); line-height:1.4; }
.novacore-recommendation-card__arrow { display:flex; align-items:center; justify-content:center; width:28px; height:28px; border-radius:999px; background:#e6f4f7; color:var(--novacore-front-accent); font-size:21px; transition:transform .2s ease,background .2s ease,color .2s ease; }
.novacore-recommendation-card:hover .novacore-recommendation-card__arrow { transform:translateX(2px); background:var(--novacore-front-accent); color:#fff; }

.novacore-how-it-works__grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }
.novacore-how-step { display:grid; grid-template-columns:62px 1fr; gap:16px; align-items:start; padding:22px; border:1px solid var(--novacore-front-border); border-radius:16px; background:#fff; box-shadow:0 6px 20px rgba(12,46,64,.04); }
.novacore-how-step__icon { display:flex; align-items:center; justify-content:center; width:62px; height:62px; border-radius:999px; background:#eaf7fa; color:var(--novacore-front-accent); }
.novacore-how-step__icon .novacore-home-custom-icon,.novacore-how-step__icon .novacore-semantic-icon { width:32px; height:32px; }
.novacore-how-step strong { display:block; color:var(--novacore-front-navy); font-size:17px; }
.novacore-how-step p { margin:7px 0 0; color:var(--novacore-front-muted); line-height:1.5; }
.novacore-how-step__number { color:var(--novacore-front-accent); }

.novacore-home-cta { position:relative; min-height:210px; margin-top:clamp(54px,7vw,90px); border-radius:24px; overflow:hidden; background:#0b4962 center/cover no-repeat; color:#fff; }
.novacore-home-cta__overlay { position:absolute; inset:0; background:linear-gradient(90deg,rgba(4,46,67,.90),rgba(4,74,94,.58),rgba(4,46,67,.18)); }
.novacore-home-cta__content { position:relative; z-index:2; display:flex; align-items:center; justify-content:space-between; gap:28px; min-height:210px; padding:34px clamp(24px,5vw,65px); }
.novacore-home-cta h2 { margin:0 0 8px; font-size:clamp(30px,4vw,48px); line-height:1.08; }
.novacore-home-cta p { margin:0; font-size:17px; }

@media (max-width:1100px) {
	.novacore-home-inspiration__grid { grid-template-columns:repeat(3,minmax(0,1fr)); }
	.novacore-home-featured .novacore-list { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:760px) {
	.novacore-home-hero { min-height:520px; border-radius:0 0 18px 18px; }
	.novacore-home-hero__overlay { background:linear-gradient(180deg,rgba(6,31,48,.30),rgba(6,31,48,.80)); }
	.novacore-home-hero__content { padding:210px 22px 42px; }
	.novacore-home-section__header { align-items:flex-start; flex-direction:column; gap:10px; }
	.novacore-home-inspiration__grid { display:flex; overflow-x:auto; scroll-snap-type:x mandatory; scrollbar-width:none; }
	.novacore-home-inspiration__grid::-webkit-scrollbar { display:none; }
	.novacore-inspiration-tile { min-width:72vw; scroll-snap-align:start; }
	.novacore-home-featured .novacore-list { grid-template-columns:1fr; }
	.novacore-how-it-works__grid { grid-template-columns:1fr; }
	.novacore-home-cta__content { align-items:flex-start; flex-direction:column; justify-content:center; }
	.novacore-recommendation-card { width:82vw; grid-template-columns:96px 1fr 32px; }
}
