/* Life Travels — homepage */


.lt-home {
	flex: 1;
}

.lt-hero {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	min-height: calc(100svh - var(--lt-nav-h));
	min-height: calc(100dvh - var(--lt-nav-h));
	height: calc(100svh - var(--lt-nav-h));
	height: calc(100dvh - var(--lt-nav-h));
	overflow: hidden;
	background: var(--lt-sand);
}

@media (max-width: 899px) {
	.lt-hero {
		grid-template-rows: auto 1fr;
	}
}

@media (min-width: 900px) {
	.lt-hero {
		grid-template-columns: 1.05fr 0.95fr;
	}

	.lt-hero__panel {
		min-height: 100%;
	}
}

.lt-hero__panel {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: clamp(2.5rem, 6vw, 5rem) clamp(1.25rem, 4vw, 2.5rem);
	z-index: 1;
}

.lt-hero__panel--copy {
	background: var(--lt-cream);
	justify-content: center;
	align-items: flex-start;
	text-align: left;
}

.lt-hero__logo-mark {
	display: block;
	width: clamp(72px, 12vw, 96px);
	height: auto;
	margin-bottom: 1.25rem;
	object-fit: contain;
}

.lt-hero__panel--visual {
	padding: 0;
	align-items: stretch;
	justify-content: stretch;
	background: #000000;
	min-height: 0;
}

.lt-hero__image {
	position: absolute;
	inset: 0;
	z-index: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

@media (min-width: 900px) {
	.lt-hero__panel--visual {
		min-height: auto;
		clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
		margin-left: -4%;
	}
}

.lt-hero__title {
	font-size: clamp(2.8rem, 7vw, 5.2rem);
	margin: 0 0 0.75rem;
	max-width: 11ch;
}

.lt-hero__panel--copy .lt-lead {
	margin-left: 0;
	margin-right: 0;
	max-width: 42ch;
}

.lt-hero__tagline {
	font-family: var(--lt-font-body);
	font-size: clamp(1.2rem, 2.5vw, 1.65rem);
	font-style: italic;
	font-weight: 500;
	color: var(--lt-accent);
	margin: 0 0 1.75rem;
}

.lt-hero__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 0.75rem;
	margin-top: 0.5rem;
}

.lt-pathways {
	padding: clamp(3.5rem, 8vw, 6.5rem) clamp(1.25rem, 4vw, 2.5rem);
	width: 100%;
	background: var(--lt-sand);
}

.lt-pathways__header {
	margin-bottom: clamp(2.25rem, 4vw, 3.25rem);
}

.lt-pathways__header h2 {
	font-size: clamp(2rem, 4vw, 2.8rem);
	margin: 0.5rem 0 0.75rem;
}

.lt-pathways__header .lt-lead {
	margin-bottom: 0;
}

.lt-pathways__grid {
	display: grid;
	gap: clamp(1.25rem, 2.5vw, 1.75rem);
	align-items: stretch;
}

@media (min-width: 768px) {
	.lt-pathways__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: clamp(1.5rem, 3vw, 2rem);
	}
}

.lt-path-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: clamp(1.75rem, 3vw, 2.5rem);
	background: var(--lt-cream);
	border: 1px solid var(--lt-line);
	border-radius: var(--lt-radius-lg);
	box-shadow: var(--lt-shadow);
	transition: transform 0.45s var(--lt-ease), box-shadow 0.45s var(--lt-ease);
}

.lt-path-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 32px 70px rgba(0, 0, 0, 0.12);
}

.lt-path-card__label {
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--lt-accent);
	margin-bottom: 0.5rem;
}

.lt-path-card h3 {
	font-family: var(--lt-font-display);
	font-size: clamp(1.6rem, 3vw, 2rem);
	font-weight: 600;
	margin: 0 0 0.75rem;
	color: var(--lt-deep);
}

.lt-path-card__text {
	margin: 0 0 0;
	color: var(--lt-mist);
	font-size: 0.95rem;
	line-height: 1.65;
	flex: 1 1 auto;
}

.lt-path-card__footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem 1.25rem;
	margin-top: auto;
	padding-top: 1.5rem;
	border-top: 1px solid var(--lt-line);
}

.lt-path-card__phone {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	flex: 1 1 12rem;
	min-width: 0;
	font-family: var(--lt-font-display);
	font-weight: 600;
	color: var(--lt-deep);
	text-decoration: none;
	transition: color 0.25s var(--lt-ease);
}

.lt-path-card__phone .material-symbols-outlined {
	flex-shrink: 0;
	font-size: 1.35rem;
	color: var(--lt-accent);
}

.lt-path-card__number {
	font-size: clamp(1.05rem, 2vw, 1.35rem);
	line-height: 1.2;
	letter-spacing: -0.01em;
	white-space: nowrap;
}

.lt-path-card__phone:hover,
.lt-path-card__phone:focus-visible {
	color: var(--lt-accent);
	outline: none;
}

.lt-path-card__cta {
	flex: 0 0 auto;
	min-width: 11.5rem;
	justify-content: center;
	margin-top: 0;
	white-space: nowrap;
}

@media (max-width: 767px) {
	.lt-path-card__footer {
		flex-direction: column;
		align-items: stretch;
	}

	.lt-path-card__phone {
		flex: none;
	}

	.lt-path-card__number {
		white-space: normal;
	}

	.lt-path-card__cta {
		width: 100%;
		min-width: 0;
	}
}

/* Destinations — 3-column grid, large image on top */
.lt-destinations {
	padding: clamp(3.5rem, 8vw, 6.5rem) clamp(1.25rem, 4vw, 2.5rem);
	width: 100%;
	background: var(--lt-cream);
}

.lt-destinations__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1.25rem, 2.5vw, 1.75rem);
	width: 100%;
}

@media (min-width: 600px) {
	.lt-destinations__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 960px) {
	.lt-destinations__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: clamp(1.35rem, 2vw, 2rem);
	}
}

.lt-dest-card {
	margin: 0;
	height: 100%;
}

.lt-dest-card__surface {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
	color: inherit;
	border-radius: var(--lt-radius-lg);
	overflow: hidden;
	background: var(--lt-sand);
	border: 1px solid var(--lt-line);
	box-shadow: var(--lt-shadow);
	transition:
		transform 0.45s var(--lt-ease),
		box-shadow 0.45s var(--lt-ease),
		border-color 0.35s var(--lt-ease);
}

.lt-dest-card__surface:hover,
.lt-dest-card__surface:focus-visible {
	transform: translateY(-6px);
	box-shadow: 0 24px 56px rgba(0, 0, 0, 0.14);
	border-color: rgba(0, 0, 0, 0.18);
	outline: none;
}

.lt-dest-card__surface:focus-visible {
	box-shadow:
		var(--lt-shadow),
		0 0 0 3px var(--lt-cream),
		0 0 0 5px var(--lt-accent);
}

.lt-dest-card__media {
	position: relative;
	flex: 0 0 auto;
	aspect-ratio: 4 / 3;
	min-height: clamp(12rem, 28vw, 16rem);
	overflow: hidden;
}

.lt-dest-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transition: transform 0.6s var(--lt-ease);
}

.lt-dest-card__surface:hover .lt-dest-card__media img,
.lt-dest-card__surface:focus-visible .lt-dest-card__media img {
	transform: scale(1.05);
}

.lt-dest-card__body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	gap: 0.5rem;
	padding: clamp(1rem, 2vw, 1.25rem) clamp(1.1rem, 2vw, 1.35rem) clamp(1.15rem, 2vw, 1.4rem);
	background: var(--lt-cream);
}

.lt-dest-card__type {
	align-self: flex-start;
	padding: 0.35rem 0.7rem;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--lt-deep);
	background: var(--lt-sand);
	border: 1px solid var(--lt-line);
	border-radius: 999px;
}

.lt-dest-card__name {
	margin: 0;
	font-family: var(--lt-font-display);
	font-size: clamp(1.2rem, 1.8vw, 1.5rem);
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: var(--lt-deep);
}

.lt-dest-card__cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-top: auto;
	padding-top: 0.75rem;
	border-top: 1px solid var(--lt-line);
}

.lt-dest-card__cta-label {
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--lt-accent);
	transition: letter-spacing 0.3s var(--lt-ease);
}

.lt-dest-card__cta-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 2.1rem;
	height: 2.1rem;
	font-size: 1.1rem;
	color: var(--lt-cream);
	background: var(--lt-accent);
	border-radius: 50%;
	transition:
		transform 0.35s var(--lt-ease),
		background 0.25s var(--lt-ease);
}

.lt-dest-card__surface:hover .lt-dest-card__cta-label,
.lt-dest-card__surface:focus-visible .lt-dest-card__cta-label {
	letter-spacing: 0.18em;
}

.lt-dest-card__surface:hover .lt-dest-card__cta-icon,
.lt-dest-card__surface:focus-visible .lt-dest-card__cta-icon {
	transform: translateX(4px);
	background: var(--lt-accent-hover);
}

/* Subtle entrance (cards stay visible if animation is unsupported) */
@media (prefers-reduced-motion: no-preference) {
	.lt-home .lt-destinations__grid .lt-dest-card {
		animation: lt-dest-in 0.85s var(--lt-ease) both;
	}

	.lt-home .lt-destinations__grid .lt-dest-card:nth-child(1) { animation-delay: 0.05s; }
	.lt-home .lt-destinations__grid .lt-dest-card:nth-child(2) { animation-delay: 0.1s; }
	.lt-home .lt-destinations__grid .lt-dest-card:nth-child(3) { animation-delay: 0.15s; }
	.lt-home .lt-destinations__grid .lt-dest-card:nth-child(4) { animation-delay: 0.2s; }
	.lt-home .lt-destinations__grid .lt-dest-card:nth-child(5) { animation-delay: 0.25s; }
	.lt-home .lt-destinations__grid .lt-dest-card:nth-child(6) { animation-delay: 0.3s; }
	.lt-home .lt-destinations__grid .lt-dest-card:nth-child(n + 7) { animation-delay: 0.35s; }
}

@keyframes lt-dest-in {
	from {
		opacity: 0.6;
		transform: translateY(12px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.lt-strip {
	background: var(--lt-deep);
	color: var(--lt-cream);
	padding: clamp(2.5rem, 6vw, 4rem) clamp(1.25rem, 4vw, 2.5rem);
}

.lt-strip__inner {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

.lt-strip h2 {
	font-family: var(--lt-font-display);
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	margin: 0;
	font-weight: 600;
}

.lt-strip p {
	margin: 0.35rem 0 0;
	opacity: 0.8;
	font-size: 0.95rem;
}

.lt-strip__links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.lt-home .lt-reveal {
	opacity: 0;
	transform: translateY(24px);
	animation: lt-reveal 0.9s var(--lt-ease) forwards;
}

.lt-home .lt-reveal:nth-child(2) {
	animation-delay: 0.12s;
}

.lt-home .lt-reveal:nth-child(3) {
	animation-delay: 0.22s;
}

@keyframes lt-reveal {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.lt-home .lt-reveal {
		opacity: 1;
		transform: none;
		animation: none;
	}

	.lt-path-card:hover,
	.lt-dest-card__surface:hover,
	.lt-dest-card__surface:focus-visible {
		transform: none;
	}

	.lt-dest-card__surface:hover .lt-dest-card__media img,
	.lt-dest-card__surface:focus-visible .lt-dest-card__media img {
		transform: none;
	}

	.lt-home .lt-destinations__grid .lt-dest-card {
		animation: none;
	}
}
