
@font-face {
	font-family: NotoSerif;
	src: url(fonts/NotoSerif.ttf);
}

@font-face {
	font-family: NotoSerif-Italic;
	src: url(fonts/NotoSerif-Italic.ttf);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: #0f0f0f;
	color: #f2f0e8;
	font-family: NotoSerif, serif;
	line-height: 1.7;
}

.hero {
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #000;
	padding: 4vh 20px;
}

.hero-video {
	height: 90vh;
	width: auto;
	max-width: 95vw;
	object-fit: contain;
	display: block;
}

.page {
	max-width: 900px;
	margin: 0 auto;
	padding: 70px 20px 80px;
	text-align: center;
}

.intro {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
}

h1 {
	margin: 0;
	font-size: 44px;
	letter-spacing: 0.16em;
	font-weight: normal;
	color: #c8a35a;
}

h2 {
	margin: 8px 0 36px;
	font-size: 22px;
	font-weight: normal;
	color: #e1bf73;
}

p {
	font-size: 17px;
	margin: 0 0 22px;
}

.options {
	margin-top: 46px;
	display: grid;
	gap: 18px;
}

.option {
	border: 1px solid #3b2f1b;
	padding: 24px;
	text-align: left;
	background: #141414;
}

.option h3 {
	margin: 0 0 8px;
	color: #c8a35a;
	font-weight: normal;
	font-size: 22px;
}

.price {
	color: #e1bf73;
	font-size: 18px;
	margin-top: 8px;
}

.about {
	margin-top: 54px;
	padding-top: 34px;
	border-top: 1px solid #3b2f1b;
	text-align: left;
}

.buttons {
	margin-top: 44px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
}

a.button {
	display: inline-block;
	padding: 12px 22px;
	border: 1px solid #c8a35a;
	color: #c8a35a;
	text-decoration: none;
	letter-spacing: 0.03em;
	transition: 0.25s ease;
}

a.button:hover {
	background: #c8a35a;
	color: #111;
}

.footer {
	margin-top: 60px;
	text-align: center;
	font-size: 13px;
	color: #9d927e;
}

.video-wrap {
position: relative;
display: flex;
justify-content: center;
align-items: center;
}

.play-button {
	position: absolute;
	width: 50px;
	height: 50px;
 	border-radius: 50%;
	border: 1px solid #fff;
	background: rgba(0, 0, 0, 0.83);
	color: #fff;
	font-size: 29px;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-left: 10px;
	transition: 0.25s ease;
	 padding-bottom: 3px;
}

.play-button:hover {
	background: white;
	color: #111;
}

@media (max-width: 700px) {
	.hero {
padding: 0;
	}

	.hero-video {
width: 100vw;
height: 100vh;
object-fit: cover;
	}

	h1 {
font-size: 34px;
	}

	.page {
padding: 56px 16px 60px;
	}
}
