:root {
	--bg: #050516;
	--bg-2: #0B0B25;
	--deep: #151040;
	--cyan: #00E5FF;
	--violet: #6C4DFF;
	--magenta: #FF35D1;
	--white: #FFFFFF;
	--muted: rgba(255, 255, 255, .72);
	--glass: rgba(255, 255, 255, .075);
	--glass-strong: rgba(255, 255, 255, .12);
	--line: rgba(0, 229, 255, .34);
	--radius: 28px;
	--max: 1360px;
	--header: 82px;
	--shadow-cyan: 0 0 18px rgba(0, 229, 255, .55), 0 0 58px rgba(0, 229, 255, .2);
	--shadow-violet: 0 0 24px rgba(108, 77, 255, .55), 0 0 70px rgba(255, 53, 209, .2);
}

.content_object {
	margin: 0;
	font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: var(--white);
	background:
		radial-gradient(circle at 18% 8%, rgba(108, 77, 255, .25), transparent 32vw),
		radial-gradient(circle at 86% 14%, rgba(255, 53, 209, .18), transparent 34vw),
		radial-gradient(circle at 50% 70%, rgba(0, 229, 255, .1), transparent 35vw),
		var(--bg);
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	display: block;
}

.site-noise {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 60;
	opacity: .08;
	mix-blend-mode: screen;
	background-image:
		linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, .22) 43%, transparent 44% 100%),
		radial-gradient(circle, rgba(255, 255, 255, .45) 1px, transparent 1.4px);
	background-size: 220px 220px, 24px 24px;
	animation: noiseDrift 18s linear infinite;
}

.particles,
.snow {
	position: fixed;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
	z-index: 5;
}

.particles span,
.snow span {
	position: absolute;
	display: block;
	border-radius: 999px;
	opacity: .65;
	filter: blur(.2px);
	animation: floatParticle var(--dur, 14s) ease-in-out infinite;
	animation-delay: var(--delay, 0s);
}

.particles span {
	width: var(--size, 8px);
	height: var(--size, 8px);
	left: var(--x, 50%);
	top: var(--y, 50%);
	background: radial-gradient(circle, rgba(255, 255, 255, .98), rgba(0, 229, 255, .55) 42%, transparent 70%);
	box-shadow: 0 0 22px rgba(0, 229, 255, .8), 0 0 44px rgba(255, 53, 209, .32);
}

.snow span {
	width: var(--size, 5px);
	height: var(--size, 5px);
	left: var(--x, 50%);
	top: -5vh;
	background: rgba(255, 255, 255, .82);
	box-shadow: 0 0 12px rgba(255, 255, 255, .65);
	animation-name: snowFall;
	animation-timing-function: linear;
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: var(--header);
	z-index: 50;
	background: linear-gradient(180deg, rgba(5, 5, 22, .86), rgba(5, 5, 22, .44));
	backdrop-filter: blur(24px);
	border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.nav {
	max-width: var(--max);
	height: 100%;
	margin: 0 auto;
	padding: 0 28px;
	display: flex;
	align-items: center;
	gap: 28px;
}

.logo-wrap {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 220px;
}

.logo-wrap img {
	width: 138px;
	max-height: 50px;
	object-fit: contain;
	filter: drop-shadow(0 0 15px rgba(0, 229, 255, .28));
}

.brand-mini {
	display: none;
	font-size: 11px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .76);
}

.links {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 24px;
	font-size: 12px;
	letter-spacing: .09em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .78);
}

.links a {
	transition: .25s ease;
	white-space: nowrap;
}

.links a:hover {
	color: var(--cyan);
	text-shadow: var(--shadow-cyan);
}

.phones {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 3px;
	font-weight: 700;
	font-size: 13px;
	color: #fff;
}

.section {
	position: relative;
	z-index: 10;
	padding: 110px 28px;
}

.container {
	max-width: var(--max);
	margin: 0 auto;
}

.hero {
	position: relative;
	min-height: 100vh;
	padding: calc(var(--header) + 72px) 28px 70px;
	display: grid;
	align-items: center;
	overflow: hidden;
	isolation: isolate;
	background: url(images/bg1.jpg) no-repeat center;
	background-size: cover;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -3;
	background:
		linear-gradient(90deg, rgba(5, 5, 22, .96) 0%, rgba(5, 5, 22, .72) 38%, rgba(5, 5, 22, .37) 100%),
		linear-gradient(180deg, rgba(5, 5, 22, .5), rgba(5, 5, 22, .2) 45%, rgba(5, 5, 22, .96) 100%),
		url('./ChatGPT Image 17 авг. 2026 г., 00_45_57.png') center / cover no-repeat;
	transform: scale(1.04);
	animation: parallaxPulse 18s ease-in-out infinite alternate;
}

.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	background:
		radial-gradient(circle at 20% 38%, rgba(0, 229, 255, .3), transparent 23vw),
		radial-gradient(circle at 75% 26%, rgba(255, 53, 209, .28), transparent 24vw),
		radial-gradient(circle at 70% 78%, rgba(108, 77, 255, .3), transparent 25vw);
	mix-blend-mode: screen;
}

.hero-grid {
	max-width: var(--max);
	width: 100%;
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 440px;
	gap: 56px;
	align-items: center;
}

.eyebrow-script {
	font-family: "Unbounded", Manrope, sans-serif;
	font-size: clamp(28px, 4vw, 58px);
	line-height: 1;
	margin: 0 0 10px;
	color: rgba(255, 255, 255, .88);
	font-weight: 500;
	letter-spacing: -.04em;
	text-shadow: 0 0 32px rgba(255, 53, 209, .55), 0 0 58px rgba(0, 229, 255, .18);
}

ul {
	list-style-type: circle;
	padding-left: 20px;
}

h1,
h2,
h3 {
	margin: 0;
	color: white;
	font-family: "Unbounded", Manrope, sans-serif;
}

h1 {
	max-width: 980px;
	font-size: clamp(50px, 9vw, 110px);
	line-height: 1.1;
	font-weight: 800;
	letter-spacing: -.065em;
	text-transform: uppercase;
	text-wrap: balance;
	text-shadow:
		0 0 2px #fff,
		0 0 16px rgba(0, 229, 255, .85),
		0 0 46px rgba(0, 229, 255, .48),
		0 0 84px rgba(108, 77, 255, .35);
	animation: neonBreathe 4.5s ease-in-out infinite;
}

.hero-sub {
	max-width: 720px;
	margin: 26px 0 0;
	font-size: clamp(18px, 2vw, 25px);
	line-height: 1.32;
	color: rgba(255, 255, 255, .88);
	font-weight: 600;
}

.booking-line {
	margin-top: 26px;
	display: inline-flex;
	gap: 12px;
	align-items: center;
	padding: 14px 18px;
	border: 1px solid rgba(0, 229, 255, .32);
	border-radius: 999px;
	background: rgba(5, 5, 22, .48);
	backdrop-filter: blur(18px);
	font-weight: 800;
	font-size: 14px;
	letter-spacing: .12em;
	text-transform: uppercase;
	box-shadow: inset 0 0 30px rgba(0, 229, 255, .08), 0 0 34px rgba(0, 229, 255, .12);
}

.booking-line::before {
	content: "✦";
	color: var(--cyan);
	text-shadow: var(--shadow-cyan);
}

.cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 34px;
}

.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	padding: 0 26px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, .18);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	overflow: hidden;
	transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.btn-primary {
	border: 0;
	background: linear-gradient(100deg, var(--cyan), var(--violet) 58%, var(--magenta));
	color: #fff;
	box-shadow: 0 0 26px rgba(0, 229, 255, .34), 0 0 52px rgba(255, 53, 209, .18);
}

.btn-secondary {
	background: rgba(5, 5, 22, .36);
	border-color: rgba(0, 229, 255, .45);
	color: #fff;
	backdrop-filter: blur(16px);
	box-shadow: inset 0 0 25px rgba(0, 229, 255, .07);
}

.btn:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-cyan), var(--shadow-violet);
}

.hero-card {
	position: relative;
	min-height: 535px;
	border-radius: 34px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .16);
	background: rgba(255, 255, 255, .08);
	backdrop-filter: blur(24px);
	box-shadow: 0 30px 90px rgba(0, 0, 0, .5), inset 0 0 90px rgba(0, 229, 255, .06);
}

.hero-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(5, 5, 22, .1), rgba(5, 5, 22, .75)),
		url('./AMAKS_LOGO_NG.png') center 24px / 82% auto no-repeat,
		url('./ChatGPT Image 17 авг. 2026 г., 00_34_30.png') center bottom / cover no-repeat;
	filter: saturate(1.25) contrast(1.04);
}

.hero-card .glass-caption {
	position: absolute;
	left: 24px;
	right: 24px;
	bottom: 24px;
	padding: 24px;
	border-radius: 24px;
	border: 1px solid rgba(0, 229, 255, .28);
	background: rgba(5, 5, 22, .64);
	backdrop-filter: blur(24px);
}

.glass-caption strong {
	display: block;
	font-family: "Unbounded", sans-serif;
	text-transform: uppercase;
	letter-spacing: -.03em;
	font-size: 22px;
	margin-bottom: 10px;
}

.glass-caption p {
	margin: 0;
	color: var(--muted);
	line-height: 1.55;
}

.ornament {
	position: absolute;
	z-index: -1;
	pointer-events: none;
	opacity: .9;
	filter: drop-shadow(0 0 20px rgba(0, 229, 255, .45));
}

.dates {
	max-width: 1400px;
	margin: 0 auto;
	text-align: center;
}

.dates ._list {
	display: flex;
	gap: 20px;
	margin-top: 50px;
	justify-content: center;
}

.dates ._list>div {
	border: 2px solid white;
	padding: 15px 40px;
	border-radius: 10px;
	flex: 0 0 220px;
	background: #0c11379e;
	text-transform: uppercase;
	font-size: 21px;
	font-weight: bold;
	text-align: center;
}



.dates ._prices {
	display: flex;
	gap: 20px;
	margin-top: 50px;
	justify-content: center;
}

.dates ._prices>div {
	border: 2px solid white;
	padding: 15px 40px;
	border-radius: 10px;
	flex: 0 0 250px;
	background: #0c11379e;
	text-transform: uppercase;
	font-size: 40px;
	font-weight: bold;
	text-align: center;
}

.dates ._comment {
	margin-top: 30px;
}

.dates .cta-row {
	justify-content: center;
}

.geo-a {
	top: 18%;
	right: 10%;
	width: 160px;
	height: 160px;
	border: 1px solid rgba(0, 229, 255, .42);
	transform: rotate(18deg);
	border-radius: 30px;
	animation: spinSlow 28s linear infinite;
}

.geo-b {
	bottom: 14%;
	left: 7%;
	width: 130px;
	height: 130px;
	border: 1px solid rgba(255, 53, 209, .42);
	clip-path: polygon(50% 0, 100% 90%, 0 90%);
	animation: floatOnly 9s ease-in-out infinite;
}

.champagne {
	position: absolute;
	right: 7vw;
	top: 18vh;
	z-index: 0;
	font-size: clamp(48px, 5vw, 86px);
	opacity: .85;
	filter: drop-shadow(0 0 28px rgba(0, 229, 255, .6));
	animation: floatOnly 6s ease-in-out infinite;
}

.section-title {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 42px;
}

.section-title h2 {
	font-size: clamp(36px, 5vw, 76px);
	line-height: .94;
	text-transform: uppercase;
	letter-spacing: -.055em;
	text-shadow: 0 0 28px rgba(0, 229, 255, .32);
}

.section-title p {
	max-width: 460px;
	margin: 0;
	color: var(--muted);
	line-height: 1.65;
	font-size: 16px;
}

.pprogram {
	background:
		radial-gradient(circle at 5% 12%, rgba(0, 229, 255, .12), transparent 28vw),
		radial-gradient(circle at 95% 8%, rgba(255, 53, 209, .16), transparent 32vw),
		linear-gradient(180deg, var(--bg), var(--bg-2));
}

.cards-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.circles {
	display: flex;
	gap: 50px;
	align-items: flex-start;
	justify-content: space-between;
	margin-top: 100px;
}

.circles>div {
	flex: 0 0 200px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-items: center;
	text-align: center;
	gap: 25px;
}


.circles>div>img {
	aspect-ratio: 1;
	border-radius: 100%;
	overflow: hidden;
	object-fit: cover;
	object-position: top center;
}



.zals {
	display: flex;
	gap: 50px;
	align-items: flex-start;
	justify-content: space-between;
	padding-top: 100px;
	max-width: 1200px;
	margin: 0 auto;
}

.zals>div {
	flex: 0 0 300px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-items: center;
	text-align: center;
	gap: 25px;
}


.zals>div>img {
	aspect-ratio: 16/10;
	border-radius: 10px;
	overflow: hidden;
	object-fit: cover;
	object-position: top center;
}

.contacts {
	border: 2px dotted #fff;
	border-radius: 50px;
	text-decoration: none;
	color: #fff;
	min-width: 275px;
	width: fit-content;
	padding: 0px 20px;
	height: 60px;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: #fff;
	font-size: 22px;
	font-weight: 600;
	line-height: 1;
	padding-top: 17px;
	text-align: center;
	box-sizing: border-box;
	margin-bottom: 5px;
}

A.linkcontacts {
	text-decoration: none;
	color: #fff !important;
	font-size: 22px;
	font-weight: 600;
	line-height: 1;
}

A:hover.linkcontacts {
	color: #499ab1;
	transition: all 0.1s ease-in-out;
}

.pult-holder {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.pult-holder img {
	border-radius: 30px;
	overflow: hidden;
}

.pprogram-card {
	position: relative;
	min-height: 190px;
	padding: 26px;
	border-radius: 26px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .045)),
		radial-gradient(circle at 15% 0, rgba(0, 229, 255, .18), transparent 65%);
	border: 1px solid rgba(0, 229, 255, .22);
	box-shadow: inset 0 0 40px rgba(255, 255, 255, .025), 0 26px 70px rgba(0, 0, 0, .22);
	backdrop-filter: blur(24px);
	transform: translateY(18px);
	opacity: 0;
	animation: cardIn .8s ease forwards;
	animation-delay: calc(var(--i) * .08s);
	overflow: hidden;
}

.pprogram-card::after {
	content: "";
	position: absolute;
	inset: auto -20% -45% auto;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 53, 209, .28), transparent 68%);
	filter: blur(4px);
}

.icon {
	width: 46px;
	height: 46px;
	display: grid;
	place-items: center;
	margin-bottom: 22px;
	border-radius: 16px;
	background: rgba(5, 5, 22, .45);
	border: 1px solid rgba(255, 255, 255, .13);
	box-shadow: inset 0 0 18px rgba(0, 229, 255, .1), 0 0 28px rgba(0, 229, 255, .12);
	font-size: 23px;
}

.pprogram-card h3 {
	font-family: Manrope, sans-serif;
	font-size: 19px;
	line-height: 1.22;
	letter-spacing: -.02em;
}

.pprogram-card p {
	margin: 12px 0 0;
	color: rgba(255, 255, 255, .62);
	line-height: 1.5;
	font-size: 14px;
}

.photo-section {
	min-height: 72vh;
	display: grid;
	align-items: center;
	overflow: hidden;
	background-attachment: fixed;
	background-size: cover;
	background-position: center;
}

.photo-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(5, 5, 22, .9), rgba(5, 5, 22, .48), rgba(5, 5, 22, .78)),
		radial-gradient(circle at 72% 32%, rgba(255, 53, 209, .23), transparent 26vw),
		radial-gradient(circle at 24% 64%, rgba(0, 229, 255, .18), transparent 24vw);
	z-index: -1;
}

.disco {}


.disco::before {
	content: '';
	background-image: url('images/bg2.jpg');
	opacity: 0.2;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	z-index: -1;
}


.special {
	background-image: url('./ChatGPT Image 17 авг. 2026 г., 00_45_57.png');
}

.restaurant {
	background-image: url('./ChatGPT Image 17 авг. 2026 г., 00_34_30.png');
}

.photo-copy {
	max-width: 780px;
}

.photo-copy h2 {
	font-size: clamp(44px, 6.8vw, 104px);
	line-height: .9;
	text-transform: uppercase;
	letter-spacing: -.06em;
	margin-bottom: 22px;
	text-shadow: 0 0 36px rgba(0, 229, 255, .45), 0 0 80px rgba(255, 53, 209, .28);
}

.photo-copy p {
	max-width: 620px;
	margin: 0 0 26px;
	font-size: clamp(18px, 2vw, 26px);
	line-height: 1.45;
	color: rgba(255, 255, 255, .86);
	font-weight: 600;
}

.neon-line {
	width: min(460px, 75vw);
	height: 2px;
	background: linear-gradient(90deg, var(--cyan), var(--violet), var(--magenta), transparent);
	box-shadow: var(--shadow-cyan);
}

.restaurant {
	min-height: 84vh;
	align-items: end;
	padding-bottom: 140px;
}

.booking {
	background:
		radial-gradient(circle at 16% 18%, rgba(0, 229, 255, .17), transparent 30vw),
		radial-gradient(circle at 82% 18%, rgba(255, 53, 209, .15), transparent 28vw),
		radial-gradient(circle at 50% 88%, rgba(108, 77, 255, .18), transparent 35vw),
		linear-gradient(180deg, var(--bg-2), var(--bg));
	overflow: hidden;
}

.booking::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(circle at 20% 35%, rgba(255, 255, 255, .14) 0 2px, transparent 4px),
		radial-gradient(circle at 75% 20%, rgba(0, 229, 255, .2) 0 3px, transparent 6px),
		radial-gradient(circle at 60% 70%, rgba(255, 53, 209, .18) 0 3px, transparent 7px);
	background-size: 170px 170px, 230px 230px, 310px 310px;
	filter: blur(1px);
	animation: bokehMove 20s ease-in-out infinite alternate;
	opacity: .85;
}

.booking-wrap {
	position: relative;
	display: grid;
	grid-template-columns: .82fr 1.18fr;
	gap: 34px;
	align-items: stretch;
}

.booking-info,
.form-panel {
	border-radius: 34px;
	border: 1px solid rgba(0, 229, 255, .22);
	background: linear-gradient(145deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .04));
	backdrop-filter: blur(30px);
	box-shadow: 0 30px 90px rgba(0, 0, 0, .34), inset 0 0 70px rgba(255, 255, 255, .025);
}

.booking-info {
	padding: 42px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 520px;
}

.booking-info h2 {
	font-size: clamp(36px, 5vw, 70px);
	line-height: .94;
	text-transform: uppercase;
	letter-spacing: -.055em;
}

.booking-info p {
	color: var(--muted);
	font-size: 18px;
	line-height: 1.65;
	max-width: 500px;
}

.contact-stack {
	display: grid;
	gap: 12px;
	color: rgba(255, 255, 255, .82);
	font-weight: 700;
}

.form-panel {
	padding: 34px;
}

.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.field {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.field.full {
	grid-column: 1 / -1;
}

label {
	font-size: 12px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .62);
	font-weight: 800;
}

input,
textarea {
	width: 100%;
	border: 1px solid rgba(255, 255, 255, .13);
	border-radius: 18px;
	min-height: 58px;
	padding: 0 18px;
	background: rgba(5, 5, 22, .5);
	color: #fff;
	outline: none;
	font: 600 16px Manrope, sans-serif;
	box-shadow: inset 0 0 22px rgba(0, 0, 0, .18);
	transition: border-color .25s ease, box-shadow .25s ease;
}

textarea {
	min-height: 138px;
	padding-top: 18px;
	resize: vertical;
}

input:focus,
textarea:focus {
	border-color: rgba(0, 229, 255, .72);
	box-shadow: var(--shadow-cyan), inset 0 0 22px rgba(0, 0, 0, .18);
}

.form-panel .btn {
	width: 100%;
	margin-top: 22px;
	min-height: 66px;
}

.footer {
	position: relative;
	padding: 92px 28px 38px;
	overflow: hidden;
	background:
		linear-gradient(180deg, rgba(5, 5, 22, .4), rgba(5, 5, 22, .96)),
		url('./ChatGPT Image 17 авг. 2026 г., 00_45_57.png') center / cover no-repeat;
}

.footer::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 10%, rgba(0, 229, 255, .2), transparent 36vw), rgba(5, 5, 22, .62);
}

.footer-inner {
	position: relative;
	max-width: var(--max);
	margin: 0 auto;
	display: grid;
	gap: 44px;
}

.footer-logo {
	width: min(360px, 74vw);
	filter: drop-shadow(0 0 24px rgba(0, 229, 255, .28));
}

.footer-top {
	display: flex;
	justify-content: space-between;
	gap: 40px;
	align-items: flex-end;
	border-bottom: 1px solid rgba(255, 255, 255, .12);
	padding-bottom: 42px;
}

.footer-title {
	font-family: "Unbounded", sans-serif;
	max-width: 760px;
	font-size: clamp(36px, 5.5vw, 88px);
	line-height: .9;
	letter-spacing: -.06em;
	text-transform: uppercase;
	margin: 0;
	text-shadow: var(--shadow-cyan);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	color: rgba(255, 255, 255, .68);
	font-size: 14px;
	flex-wrap: wrap;
}

.reveal {
	animation: sectionFade .9s ease both;
	animation-timeline: view();
	animation-range: entry 0% cover 32%;
}

@keyframes neonBreathe {

	0%,
	100% {
		filter: brightness(1);
	}

	50% {
		filter: brightness(1.18);
	}
}

@keyframes floatParticle {

	0%,
	100% {
		transform: translate3d(0, 0, 0) scale(1);
		opacity: .45;
	}

	50% {
		transform: translate3d(24px, -42px, 0) scale(1.35);
		opacity: .9;
	}
}

@keyframes snowFall {
	from {
		transform: translate3d(0, -10vh, 0) rotate(0deg);
		opacity: .15;
	}

	16% {
		opacity: .85;
	}

	to {
		transform: translate3d(var(--drift, 40px), 110vh, 0) rotate(360deg);
		opacity: .05;
	}
}

@keyframes parallaxPulse {
	to {
		transform: scale(1.09) translate3d(-1.4%, 1.1%, 0);
	}
}

@keyframes spinSlow {
	to {
		transform: rotate(378deg);
	}
}

@keyframes floatOnly {

	0%,
	100% {
		transform: translateY(0) rotate(-4deg);
	}

	50% {
		transform: translateY(-22px) rotate(4deg);
	}
}

@keyframes cardIn {
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes sectionFade {
	from {
		opacity: 0;
		transform: translateY(42px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes bokehMove {
	to {
		transform: translate3d(-34px, 26px, 0) scale(1.08);
	}
}

@keyframes noiseDrift {
	to {
		background-position: 220px 220px, 24px 24px;
	}
}

@media (max-width: 1120px) {

	.dates ._list {
		display: grid;
		grid-template-columns: 1fr;
	}

	.dates ._prices {
		display: grid;
		grid-template-columns: 1fr;
	}

	.container {
		max-width: 90vw;
	}

	.photo-copy h2 {
		font-size: clamp(35px, 6.8vw, 104px);
	}

	.circles {
		display: grid;
		grid-template-columns: 1fr;
		padding: 0px 15%;
	}

	.pult-holder {
		display: grid;
		grid-template-columns: 1fr;
	}

	.links {
		display: none;
	}

	.brand-mini {
		display: block;
	}

	.hero-grid,
	.booking-wrap {
		grid-template-columns: 1fr;
	}

	.hero-card {
		min-height: 480px;
		max-width: 620px;
	}

	.cards-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.section-title {
		align-items: start;
		flex-direction: column;
	}

	.photo-section {
		background-attachment: scroll;
	}
}

@media (max-width: 720px) {
	:root {
		--header: 72px;
		--radius: 22px;
	}

	.nav {
		padding: 0 18px;
		gap: 14px;
	}

	.logo-wrap {
		min-width: 0;
	}

	.logo-wrap img {
		width: 108px;
	}

	.brand-mini,
	.phones {
		display: none;
	}

	.hero {
		padding: calc(var(--header) + 54px) 18px 54px;
	}

	.hero-grid {
		gap: 32px;
	}

	h1 {
		font-size: clamp(48px, 15vw, 76px);
	}

	.hero-sub {
		font-size: 18px;
	}

	.booking-line {
		border-radius: 24px;
		align-items: flex-start;
		font-size: 12px;
		line-height: 1.45;
	}

	.cta-row {
		flex-direction: column;
	}

	.btn {
		width: 100%;
	}

	.champagne,
	.geo-a,
	.geo-b {
		display: none;
	}

	.hero-card {
		min-height: 410px;
		border-radius: 26px;
	}

	.glass-caption {
		left: 16px !important;
		right: 16px !important;
		bottom: 16px !important;
		padding: 18px !important;
	}

	.section {
		padding: 78px 18px;
	}

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

	.pprogram-card {
		min-height: 154px;
	}

	.photo-section {
		min-height: 68vh;
		padding: 92px 18px;
	}

	.booking-info,
	.form-panel {
		padding: 0px;
		border-radius: 26px;
		background: transparent;
		box-shadow: none;
		backdrop-filter: none;
		border: 0px;
	}

	.booking-info {
		min-height: auto;
		gap: 28px;
	}

	.footer {
		padding: 72px 18px 30px;
	}

	.footer-top {
		display: grid;
		align-items: start;
	}
}

@media (prefers-reduced-motion: reduce) {

	*,
	*::before,
	*::after {
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
	}
}