@font-face {
	font-family: "Nyght Serif";
	src: url("nyght-serif-main/fonts/WEB/NyghtSerif-Regular.woff2") format("woff2"),
		 url("nyght-serif-main/fonts/WEB/NyghtSerif-Regular.woff") format("woff");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
  }
  
  @font-face {
	font-family: "Nyght Serif";
	src: url("nyght-serif-main/fonts/WEB/NyghtSerif-RegularItalic.woff2") format("woff2"),
		 url("nyght-serif-main/fonts/WEB/NyghtSerif-RegularItalic.woff") format("woff");
	font-weight: 400;
	font-style: italic;
	font-display: swap;
  }
  
  @font-face {
	font-family: "Nyght Serif";
	src: url("nyght-serif-main/fonts/WEB/NyghtSerif-LightItalic.woff2") format("woff2"),
		 url("nyght-serif-main/fonts/WEB/NyghtSerif-LightItalic.woff") format("woff");
	font-weight: 300;
	font-style: italic;
	font-display: swap;
  }
  
  @font-face {
	font-family: "Nyght Serif";
	src: url("nyght-serif-main/fonts/WEB/NyghtSerif-MediumItalic.woff2") format("woff2"),
		 url("nyght-serif-main/fonts/WEB/NyghtSerif-MediumItalic.woff") format("woff");
	font-weight: 500;
	font-style: italic;
	font-display: swap;
  }
  
  :root {
	--bg: #0b0b0b;
	--text: #eae6d2;
	--accent: #e1d9b7;
  }
  
  * {
	box-sizing: border-box;
  }
  
  html,
  body {
	height: 100%;
  }
  
  body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: "Nyght Serif", serif;
  }
  
  /* HEADER */
  
  .site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 10px 12px;
	z-index: 40;
	pointer-events: none;
  }
  
  .hamburger {
	position: absolute;
	top: 12px;
	left: 12px;
	width: 42px;
	height: 38px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 10px;
	background: rgba(15, 15, 15, 0.75);
	backdrop-filter: blur(8px);
	display: none;
	align-items: center;
	justify-content: center;
	gap: 4px;
	cursor: pointer;
	pointer-events: auto;
  }
  
  .hamburger span {
	display: block;
	width: 22px;
	height: 2px;
	background: #efe9d0;
	border-radius: 2px;
	transition: 0.2s;
  }
  
  .hamburger[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
  }
  .hamburger[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
  }
  .hamburger[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
  }
  
  /* NAMES - desktop menu on the right */
  
  .names {
	position: fixed;
	right: clamp(16px, 2vw, 32px);
	top: clamp(60px, 8vh, 100px);
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: clamp(40px, 10vh, 108px);
	z-index: 45;
	pointer-events: auto;
  }
  
  .name {
	background: transparent;
	border: none;
	color: var(--accent);
	font-family: "Nyght Serif", serif;
	font-style: italic;
	font-size: clamp(13px, 1.1vw, 18px);
	cursor: pointer;
	white-space: nowrap;
  }
  
  .name[aria-current="page"],
  .name:hover {
	color: white;
  }
  
  /* MAIN layout - desktop */
  
  .stage {
	position: relative;
	min-height: 100vh;
	display: grid;
	place-items: center;
	overflow: hidden;
  }
  
  /* LETTER */
  
  #letter {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	z-index: 5;
	pointer-events: none;
  }
  
  .letter-inner {
	width: 100%;
	max-width: 100%;
	font-family: "Nyght Serif", serif;
	font-style: italic;
	font-weight: 500;
	background: linear-gradient(180deg, #ffffe7 0%, #efeeb6 50%, #393939 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
  }
  
  .letter-inner.desktop {
	font-size: clamp(28px, 5.5vw, 120px);
	filter: blur(1px);
	padding: clamp(1vh, 1.5vh, 2vh) clamp(2vw, 3vw, 5vw);
	line-height: 1.05;
  }
  
  .letter-inner.mobile {
	display: none;
  }
  
  /* JEWEL */
  
  .jewel-wrap {
	position: relative;
	z-index: 10;
	display: grid;
	place-items: center;
	min-height: 100vh;
  }
  
  .jewel-svg {
	width: min(50vw, 560px, max(280px, 35vw));
	height: auto;
	filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.65));
  }
  
  /* FOOTER */
  
  .site-footer {
	position: fixed;
	bottom: 0;
	width: 100%;
	text-align: center;
	z-index: 20;
	color: #aaa;
	font-size: 12px;
	padding-bottom: 8px;
  }
  
  /* MOBILE: <= 767px */
  
  @media (max-width: 767px) {
	/* header menu */
	.hamburger {
	  display: flex;
	  left: auto;
	  right: 12px;
	}
  
	.names {
	  position: fixed;
	  top: 64px;
	  right: 12px;
	  background: rgba(0, 0, 0, 0.85);
	  backdrop-filter: blur(8px);
	  padding: 16px 20px;
	  border-radius: 12px;
	  gap: 16px;
	  transform: translateX(120%);
	  opacity: 0;
	  pointer-events: none;
	  transition: transform 0.25s ease, opacity 0.25s ease;
	}
  
	.names.open {
	  transform: translateX(0);
	  opacity: 1;
	  pointer-events: auto;
	}
  
	.name {
	  font-size: 14px;
	  font-style: normal;
	  text-align: right;
	}
  
	/* main layout */
	.stage {
	  min-height: 100vh;
	  display: flex;
	  flex-direction: column;
	  justify-content: center;
	  align-items: center;
	  padding: 96px 20px 40px;
	  gap: 32px;
	}
  
	.jewel-wrap {
	  position: static;
	  min-height: auto;
	  width: 100%;
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  order: 1;
	}

	.jewel-svg {
	  width: clamp(240px, 60vw, 380px);
	  height: auto;
	  max-height: 320px;
	}

	#letter {
	  position: static;
	  width: 100%;
	  display: block;
	  margin: 0;
	  order: 2;
	}
  
	.letter-inner.desktop {
	  display: none;
	}
  
	.letter-inner.mobile {
	  display: block;
	  font-size: clamp(36px, 8.5vw, 52px);
	  font-weight: 300;
	  font-style: italic;
	  line-height: 1.2;
	  letter-spacing: 0.01em;
	  background: linear-gradient(180deg, #ffffe7 0%, #efeeb6 50%, #393939 100%);
	  -webkit-background-clip: text;
	  background-clip: text;
	  color: transparent;
	  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
	  margin: 0;
	}
  
	.letter-inner.mobile p {
	  margin: 0;
	}
  
	.site-footer {
	  position: static;
	  padding-bottom: 16px;
	}
  }
  
  /* TABLET: 768px - 1024px */
  
  @media (min-width: 768px) and (max-width: 1024px) {
	/* hide hamburger, show desktop menu */
	.hamburger {
	  display: none;
	}
  
	.names {
	  position: fixed;
	  right: clamp(16px, 2vw, 32px);
	  top: clamp(60px, 8vh, 100px);
	  display: flex;
	  flex-direction: column;
	  align-items: flex-end;
	  gap: clamp(40px, 10vh, 108px);
	  background: transparent;
	  backdrop-filter: none;
	  padding: 0;
	  border-radius: 0;
	  transform: none;
	  opacity: 1;
	  pointer-events: auto;
	}
  
	.name {
	  font-size: clamp(13px, 1.1vw, 18px);
	  font-style: italic;
	  text-align: right;
	}
  
	/* main layout */
	.stage {
	  min-height: 100vh;
	  display: flex;
	  flex-direction: column;
	  justify-content: center;
	  align-items: center;
	  padding: 96px 20px 40px;
	  gap: 32px;
	}
  
	.jewel-wrap {
	  position: static;
	  min-height: auto;
	  width: 100%;
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  order: 1;
	}

	.jewel-svg {
	  width: clamp(240px, 60vw, 380px);
	  height: auto;
	  max-height: 320px;
	}

	#letter {
	  position: static;
	  width: 100%;
	  display: block;
	  margin: 0;
	  order: 2;
	}
  
	.letter-inner.desktop {
	  display: none;
	}
  
	.letter-inner.mobile {
	  display: block;
	  font-size: clamp(48px, 10vw, 72px);
	  font-weight: 300;
	  font-style: italic;
	  line-height: 1.2;
	  letter-spacing: 0.01em;
	  background: linear-gradient(180deg, #ffffe7 0%, #efeeb6 50%, #393939 100%);
	  -webkit-background-clip: text;
	  background-clip: text;
	  color: transparent;
	  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
	  margin: 0;
	}
  
	.letter-inner.mobile p {
	  margin: 0;
	}
  
	.site-footer {
	  position: static;
	  padding-bottom: 16px;
	}
  }
  
  /* FADE ANIMATIONS */
  
  .fade-enter {
	opacity: 0.01;
  }
  .fade-enter-active {
	opacity: 1;
	transition: opacity 0.35s ease;
  }
  .fade-exit {
	opacity: 1;
  }
  .fade-exit-active {
	opacity: 0.01;
	transition: opacity 0.25s ease;
  }
  