*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Montserrat", system-ui, sans-serif;
	background: var(--bg);
	color: var(--text);
	overflow-x: hidden;
}

h1 {
	font-family: "Pacifico", cursive;
	font-weight: 400;
	font-style: normal;
}

.intro-content h1 {
	color: var(--accent);
}

/* ── ORBS ── */
.orb {
	position: fixed;
	border-radius: 50%;
	filter: blur(110px);
	opacity: 0.1;
	pointer-events: none;
	z-index: 0;
	will-change: transform;
}

.orb-1 {
	width: 600px;
	height: 600px;
	background: var(--accent);
	top: 0;
	left: -12%;
}

.orb-2 {
	width: 480px;
	height: 480px;
	background: var(--accent2);
	bottom: 5%;
	right: -12%;
}

/* ── NAV BAR ── */
.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.8rem 3rem;
	transition:
		background 0.4s,
		backdrop-filter 0.4s,
		border-color 0.4s;
}

.nav.scrolled {
	background: rgba(14, 13, 12, 0.72);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--border);
}

.nav-logo {
	position: relative;
	z-index: 1001;
	transition: opacity 0.3s;
}

.nav-logo img {
	width: 100%;
	height: auto;
	max-width: 160px;
}

/* ── MENU BUTTON ── */
.menu-btn {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	background: none;
	border: 1px solid rgba(240, 237, 232, 0.18);
	border-radius: 50px;
	padding: 0.55rem 1.1rem 0.55rem 0.8rem;
	cursor: pointer;
	position: relative;
	z-index: 1001;
	color: var(--text);
	font-family: "Montserrat", sans-serif;
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.3px;
	transition:
		border-color 0.4s,
		color 0.4s;
}

.nav.open .menu-btn {
	color: var(--text);
	border-color: rgba(240, 237, 232, 0.2);
}

.burger {
	width: 18px;
	height: 11px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.burger span {
	display: block;
	height: 1.5px;
	background: currentColor;
	border-radius: 2px;
	transform-origin: left center;
	transition:
		transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.burger span:last-child {
	width: 60%;
}

.nav.open .burger span:first-child {
	transform: rotate(45deg);
	width: 18px;
}

.nav.open .burger span:last-child {
	transform: rotate(-45deg);
	width: 18px;
}

/* ── OVERLAY ── */
.overlay {
	position: fixed;
	inset: 0;
	background: #0e0d0c;
	z-index: 999;
	clip-path: circle(0% at calc(100% - 3.6rem) 3.4rem);
	transition: clip-path 0.9s cubic-bezier(0.77, 0, 0.175, 1);
	pointer-events: none;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 7rem 3.5rem 3rem;
}

.overlay.open {
	clip-path: circle(170% at calc(100% - 3.6rem) 3.4rem);
	pointer-events: all;
}

.menu-links {
	display: flex;
	flex-direction: column;
}

.menu-links a {
	display: block;
	overflow: hidden;
	text-decoration: none;
	transition: opacity 0.25s;
}

.menu-links a .divider {
	display: block;
	height: 1px;
	background: rgba(240, 237, 232, 0.06);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-links a .inner {
	display: flex;
	align-items: baseline;
	gap: 1.2rem;
	padding: 0.15rem 0;
	transform: translateY(115%);
	transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.overlay.open .menu-links a .divider {
	transform: scaleX(1);
}

.overlay.open .menu-links a .inner {
	transform: translateY(0);
}

.menu-links a:nth-child(1) .inner,
.menu-links a:nth-child(1) .divider {
	transition-delay: 0.2s;
}

.menu-links a:nth-child(2) .inner,
.menu-links a:nth-child(2) .divider {
	transition-delay: 0.28s;
}

.menu-links a:nth-child(3) .inner,
.menu-links a:nth-child(3) .divider {
	transition-delay: 0.36s;
}

.menu-links a:nth-child(4) .inner,
.menu-links a:nth-child(4) .divider {
	transition-delay: 0.44s;
}

.menu-links a:nth-child(5) .inner,
.menu-links a:nth-child(5) .divider {
	transition-delay: 0.52s;
}

.link-text {
	font-family: "Dongle", sans-serif;
	font-size: clamp(3.2rem, 9vw, 8rem);
	font-weight: 700;
	color: var(--text);
	letter-spacing: -1px;
	line-height: 1.05;
	transition: color 0.25s;
}

.link-num {
	font-family: "Montserrat", sans-serif;
	font-size: 0.72rem;
	font-weight: 300;
	color: rgba(240, 237, 232, 0.22);
	letter-spacing: 1.5px;
	align-self: center;
	flex-shrink: 0;
}

.link-arrow {
	font-size: 1.8rem;
	color: var(--accent);
	margin-left: auto;
	align-self: center;
	transform: translateX(-10px);
	opacity: 0;
	transition:
		transform 0.3s,
		opacity 0.3s;
}

.menu-links:hover a {
	opacity: 0.12;
}

.menu-links a:hover {
	opacity: 1 !important;
}

.menu-links a:hover .link-text {
	color: var(--accent);
}

.menu-links a:hover .link-arrow {
	transform: translateX(0);
	opacity: 1;
}

.overlay-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
	padding-top: 2.5rem;
	color: rgba(240, 237, 232, 0.22);
	font-size: 0.76rem;
	font-weight: 300;
	opacity: 0;
	transform: translateY(8px);
	transition:
		opacity 0.4s 0.6s,
		transform 0.4s 0.6s;
}

.overlay.open .overlay-footer {
	opacity: 1;
	transform: translateY(0);
}

.footer-socials {
	display: flex;
	gap: 1.8rem;
}

.footer-socials a {
	color: rgba(240, 237, 232, 0.3);
	text-decoration: none;
	font-size: 0.76rem;
	transition: color 0.2s;
}

.footer-socials a:hover {
	color: var(--text);
}

/* ── HERO ── */
.hero {
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: relative;
	overflow: hidden;
	padding: 2rem;
}

.hero-bg {
	position: absolute;
	inset: -50%;
	background:
		radial-gradient(
			ellipse at 28% 42%,
			rgba(232, 147, 90, 0.28) 0%,
			transparent 58%
		),
		radial-gradient(
			ellipse at 76% 58%,
			rgba(196, 91, 138, 0.2) 0%,
			transparent 55%
		);
	will-change: transform;
	pointer-events: none;
}

.hero-eyebrow {
	font-size: 0.72rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 4px;
	color: var(--accent);
	opacity: 0.85;
	position: relative;
	z-index: 1;
	margin-bottom: 1rem;
}

.hero h1 {
	font-family: "Pacifico", cursive;
	color: white;
	font-size: clamp(5rem, 14vw, 12rem);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -2px;
	position: relative;
	z-index: 1;
}

.hero h1 em {
	font-style: normal;
	color: var(--accent);
}

.hero-sub {
	margin-top: 1.4rem;
	font-size: 0.98rem;
	font-weight: 300;
	color: var(--muted);
	max-width: 440px;
	line-height: 1.75;
	position: relative;
	z-index: 1;
}

.hero-actions {
	display: flex;
	gap: 0.9rem;
	margin-top: 2.5rem;
	position: relative;
	z-index: 1;
	flex-wrap: wrap;
	justify-content: center;
}

.btn-primary {
	padding: 0.82rem 2rem;
	background: var(--accent);
	color: #0e0d0c;
	border: none;
	border-radius: 50px;
	font-family: "Montserrat", sans-serif;
	font-size: 0.88rem;
	font-weight: 700;
	cursor: pointer;
	text-decoration: none;
	transition:
		transform 0.2s,
		box-shadow 0.2s;
	box-shadow: 0 4px 28px rgba(232, 147, 90, 0.35);
	letter-spacing: 0.2px;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 36px rgba(232, 147, 90, 0.5);
}

.btn-ghost {
	padding: 0.82rem 2rem;
	background: none;
	color: var(--text);
	border: 1px solid var(--border);
	border-radius: 50px;
	font-family: "Montserrat", sans-serif;
	font-size: 0.88rem;
	font-weight: 500;
	cursor: pointer;
	text-decoration: none;
	transition: border-color 0.25s;
}

.btn-ghost:hover {
	border-color: rgba(240, 237, 232, 0.28);
}

.scroll-hint {
	position: absolute;
	bottom: 2.2rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.4rem;
	color: rgba(240, 237, 232, 0.28);
	font-size: 0.68rem;
	font-weight: 500;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	z-index: 1;
}

.scroll-hint::after {
	content: "";
	width: 1px;
	height: 36px;
	background: linear-gradient(to bottom, rgba(240, 237, 232, 0.3), transparent);
	animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
	0%,
	100% {
		opacity: 0.3;
		transform: scaleY(1);
	}
	50% {
		opacity: 0.8;
		transform: scaleY(1.15);
	}
}

/* ── CONTENT SECTION ── */
.section {
	padding: 9rem 4rem;
	max-width: 1160px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.section-label {
	font-size: 0.7rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 3.5px;
	color: var(--accent);
	margin-bottom: 0.6rem;
}

.section-title {
	font-family: "Dongle", sans-serif;
	font-size: clamp(3rem, 7vw, 6rem);
	font-weight: 700;
	letter-spacing: -1px;
	line-height: 1;
	margin-bottom: 3.5rem;
}

.cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
	gap: 1.4rem;
}

/* ── BTS CARD ── */
.card {
	position: relative;
	width: min(100%, 1200px);
	aspect-ratio: 285 / 195;
	background: var(--card-bg);
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	overflow: hidden;
	color: white;
	text-decoration: none;
	margin: 0 auto;
	transition: transform 0.2s ease-in-out;
}

.card-image {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	max-width: 600px;
	height: auto;
	object-fit: contain;
	transition:
		filter 0.2s ease-in-out,
		width 0.2s ease-in-out,
		transform 0.2s ease-in-out;
	z-index: 1;
}

.textBox {
	position: relative;
	z-index: 2;
	opacity: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.7rem;
	text-align: center;
	transition: opacity 0.2s ease-in-out;
	padding: 0 0.5rem;
	width: 100%;
	pointer-events: none;
}

.textBox > .text {
	font-weight: bold;
	margin: 0;
	text-align: center;
}

.textBox > .head {
	font-size: clamp(2rem, 4vw, 4rem);
	font-family: "Pacifico", cursive;
	color: #fff;
	line-height: 1.1;
	text-align: center;
}

.textBox > .subbts {
	font-size: clamp(1rem, 2vw, 1.4rem);
	font-family: "Montserrat", sans-serif;
	color: var(--accent);
	text-align: center;
}

.card:hover > .textBox {
	opacity: 1;
}

.card:hover > .card-image {
	width: 65%;
	filter: blur(7px);
	animation: anim 3s infinite;
}

.card:hover {
	transform: scale(1.04) rotate(-1deg);
}

@keyframes anim {
	0% {
		transform: translate(-50%, -50%) translateY(0);
	}
	50% {
		transform: translate(-50%, -50%) translateY(-20px);
	}
	100% {
		transform: translate(-50%, -50%) translateY(0);
	}
}

/* ── TRAVEL CARDS ── */
.work-scroll-block {
	padding: 40px 0 140px;
}

.container {
	max-width: 1350px;
	margin: 0 auto;
	padding: 0 20px;
}

.work-collection {
	position: relative;
}

.work-card {
	position: sticky;
	top: calc(180px + (var(--i) * 18px));
	margin: 0 auto 28px;
	border-radius: 28px;
	transform-origin: 50% 80%;
	will-change: transform;
}

.work-card--intro {
	display: grid;
	place-items: center;
	min-height: 60vh;
	padding: 64px 48px;
	border-radius: 28px;
	margin-bottom: 120px;
}

.work-card--intro .intro-content {
	max-width: 720px;
	text-align: center;
}

.work-card--intro h2 {
	margin: 0 0 16px;
	font-size: clamp(36px, 6vw, 64px);
	letter-spacing: -0.02em;
}

.work-card--intro p {
	margin: 0;
	font-size: 18px;
	line-height: 1.6;
	opacity: 0.85;
}

.work-media {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	aspect-ratio: 16 / 9;
}

.work-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	position: relative;
	z-index: 0;
}

.work-media::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
	background: radial-gradient(
		circle at center,
		rgba(0, 0, 0, 0) 55%,
		rgba(0, 0, 0, 0.5) 75%,
		rgba(0, 0, 0, 0.9) 100%
	);
}

.card-meta {
	display: flex;
	position: absolute;
	left: 18px;
	right: 18px;
	top: 18px;
	padding: 14px 16px;
	border-radius: 14px;
	background: rgba(0, 0, 0, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.14);
	z-index: 2;
}

.work-meta {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding: 16px 6px 2px;
}

.title {
	font-size: 20px;
}

.tag {
	font-size: 14px;
}

.work-card--intro .work-media {
	display: none;
}

.actives {
	box-shadow: 0 40px 80px rgba(0, 0, 0, 0.65);
	transition:
		box-shadow 0.35s ease,
		transform 0.35s ease;
}

.actives:hover {
	box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
}

.card-title h2 {
	font-family: "Dongle", sans-serif;
	font-size: 3rem;
	color: #fff;
}

.card-sub p {
	font-family: "Montserrat", system-ui, sans-serif;
	font-size: 18px;
	font-weight: bold;
	color: #aa0900;
}

.clickme {
	padding: 8px 12px;
	cursor: pointer;
	align-self: center;
	margin-left: auto;
}

.clickme a {
	text-decoration: none;
	color: #fff;
}

.work-media a {
	z-index: 1001110;
	cursor: pointer;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
	.section {
		padding: 7rem 2.5rem;
	}
}

@media (max-width: 768px) {
	.card {
		width: min(100%, 600px);
		aspect-ratio: 285 / 195;
		border-radius: 18px;
	}

	.card-image {
		width: 100%;
		max-width: 400px;
	}

	.card:hover > .card-image {
		width: 70%;
		filter: blur(5px);
	}

	.work-scroll-block {
		padding: 20px 0 80px;
	}

	.overlay {
		padding: 7.6rem 1.8rem 2.5rem;
	}

	.container {
		padding: 0 14px;
	}

	.work-collection {
		display: flex;
		flex-direction: column;
		gap: 18px;
	}

	.work-card {
		position: relative;
		top: auto;
		margin: 0;
		border-radius: 20px;
	}

	.work-card--intro {
		min-height: auto;
		padding: 20px 12px 8px;
		margin-bottom: 0;
	}

	.work-card--intro h1 {
		font-size: clamp(2rem, 8vw, 3rem);
		line-height: 1;
	}

	.work-card--intro h2 {
		font-size: clamp(1.6rem, 6vw, 2.5rem);
		line-height: 0.95;
		margin: 0;
	}

	.work-media {
		aspect-ratio: 4 / 5;
		border-radius: 18px;
	}

	.card-meta {
		left: 12px;
		right: 12px;
		top: 12px;
		padding: 10px 12px;
		border-radius: 12px;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
	}

	.card-title h2 {
		font-size: 2rem;
		line-height: 0.9;
	}

	.card-sub p {
		font-size: 14px;
	}

	.clickme {
		margin-left: 0;
		padding: 0;
		align-self: flex-start;
	}

	.clickme a p {
		font-size: 14px;
	}
}

@media (max-width: 600px) {
	.nav {
		padding: 1.4rem 1.5rem;
	}

	.overlay {
		padding: 6.8rem 1.8rem 2.5rem;
	}

	.section {
		padding: 5rem 1.5rem;
	}

	.cards-grid {
		grid-template-columns: 1fr;
	}

	.hero-actions {
		flex-direction: column;
		align-items: center;
	}

	.btn-primary,
	.btn-ghost {
		width: 100%;
		max-width: 280px;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.card {
		width: min(100%, 250px);
		aspect-ratio: 195 / 285;
		padding: 0.8rem;
		border-radius: 16px;
	}

	.card-image {
		width: 100%;
		max-width: 200px;
	}

	.textBox {
		gap: 0.5rem;
	}

	.card:hover {
		transform: scale(1.02);
	}

	.card:hover > .card-image {
		width: 72%;
		filter: blur(4px);
	}

	.section {
		padding: 4rem 1rem;
	}

	.section-title {
		font-size: clamp(2.2rem, 12vw, 3.4rem);
		margin-bottom: 2rem;
	}

	.work-card--intro {
		padding: 12px 6px 0;
	}

	.work-card--intro h1 {
		font-size: 2rem;
	}

	.work-card--intro h2 {
		font-size: 1.9rem;
	}

	.work-media {
		aspect-ratio: 3 / 4;
	}

	.card-title h2 {
		font-size: 1.7rem;
	}

	.card-sub p,
	.clickme a p {
		font-size: 13px;
	}
}
