:root {
	--bg: #060606;
	--paper: #141414;
	--ink: #f3efe7;
	--muted: #bbb4aa;
	--accent: #c4512d;
	--accent-dark: #db8457;
	--olive: #4d6648;
	--gold: #ddb768;
	--card-shadow: 0 22px 46px rgba(0, 0, 0, 0.5);
	--radius: 20px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: "Manrope", sans-serif;
	color: var(--ink);
	background:
		radial-gradient(circle at 15% 20%, rgba(196, 81, 45, 0.26), transparent 38%),
		radial-gradient(circle at 85% 30%, rgba(77, 102, 72, 0.22), transparent 44%),
		linear-gradient(180deg, #080808 0%, #050505 48%, #000 100%);
	min-height: 100vh;
	line-height: 1.4;
}

.texture {
	position: fixed;
	inset: 0;
	pointer-events: none;
	background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 40px 40px;
	opacity: 0.22;
	z-index: -1;
}

.container {
	width: min(1120px, 92vw);
	margin: 0 auto;
	min-height: 100vh;
	display: grid;
	align-items: center;
}

header {
	padding: 28px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	line-height: 1;
}

.brand-logo {
	height: clamp(56px, 4.5vw, 82px);
	width: auto;
	display: block;
	filter: drop-shadow(0 8px 16px rgba(31, 29, 27, 0.18));
}

.brand-name {
	font-family: "Fraunces", serif;
	font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.2rem);
	letter-spacing: 0.03em;
	color: #f2eadf;
}

.tagline {
	color: var(--muted);
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.hero {
	display: block;
	align-items: stretch;
	margin: 0;
	animation: rise 0.9s ease-out;
}

.hero-main {
	background: var(--paper);
	border-radius: var(--radius);
	padding: clamp(30px, 4.8vw, 72px);
	box-shadow: var(--card-shadow);
	position: relative;
	overflow: hidden;
	min-height: min(78vh, 760px);
	max-width: 100%;
	display: grid;
	align-content: center;
}

.hero-main::after {
	content: "";
	position: absolute;
	width: 280px;
	height: 280px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(221, 183, 104, 0.35), rgba(221, 183, 104, 0));
	right: -120px;
	top: -120px;
}

.hero-logo {
	width: clamp(170px, 20vw, 340px);
	height: auto;
	display: block;
	margin-bottom: clamp(18px, 2.4vw, 30px);
	filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.38));
}

.hero-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--accent-dark);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-size: 0.8rem;
	margin-bottom: 16px;
}

.hero-kicker::before {
	content: "";
	width: 34px;
	height: 2px;
	background: var(--accent);
}

h1 {
	font-family: "Fraunces", serif;
	font-size: clamp(2.4rem, 1.8rem + 3vw, 5rem);
	line-height: 1.05;
	margin-bottom: 20px;
	max-width: 18ch;
}

.hero p {
	color: var(--muted);
	font-size: clamp(1.05rem, 0.98rem + 0.45vw, 1.3rem);
	max-width: 66ch;
	margin-bottom: 34px;
}

.action-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.action-btn {
	border: none;
	border-radius: 14px;
	padding: 16px 14px;
	font-family: inherit;
	cursor: pointer;
	font-weight: 700;
	font-size: 0.95rem;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
	min-height: 68px;
}

.action-btn.primary {
	background: var(--accent);
	color: #fff;
	box-shadow: 0 14px 26px rgba(196, 81, 45, 0.3);
}

.action-btn.secondary {
	background: #2b2b2b;
	color: #f1e9dc;
}

.action-btn.ghost {
	background: transparent;
	border: 2px solid #4a4a4a;
	color: #f1e9dc;
}

.action-btn:hover,
.action-btn:focus-visible {
	transform: translateY(-2px);
	outline: none;
	box-shadow: 0 10px 24px rgba(31, 29, 27, 0.17);
}

.hero-side {
	background: linear-gradient(160deg, #222c21 0%, #111711 100%);
	color: #f4e9d6;
	border-radius: var(--radius);
	box-shadow: var(--card-shadow);
	padding: clamp(24px, 4vw, 40px);
	display: grid;
	align-content: center;
	gap: 20px;
}

.hero-side h2 {
	font-family: "Fraunces", serif;
	font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.4rem);
	line-height: 1.15;
}

.hero-side p {
	color: rgba(244, 233, 214, 0.85);
	margin: 0;
	font-size: 1rem;
}

.pill {
	display: inline-flex;
	width: fit-content;
	background: rgba(221, 183, 104, 0.2);
	border: 1px solid rgba(221, 183, 104, 0.35);
	color: #f8e8c4;
	padding: 7px 12px;
	border-radius: 999px;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.03em;
}

.panel {
	background: var(--paper);
	border-radius: var(--radius);
	box-shadow: var(--card-shadow);
	padding: clamp(22px, 3.4vw, 36px);
	margin-bottom: 26px;
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.35s ease, transform 0.35s ease;
	display: none;
}

.panel.active {
	display: block;
	opacity: 1;
	transform: translateY(0);
}

.panel h3 {
	font-family: "Fraunces", serif;
	font-size: clamp(1.4rem, 1.15rem + 1vw, 2.1rem);
	margin-bottom: 8px;
}

.panel p {
	color: var(--muted);
	margin-bottom: 22px;
	max-width: 62ch;
}

.menu-grid,
.event-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 14px;
}

.menu-item,
.event-item {
	background: #1b1b1b;
	border: 1px solid #343434;
	border-radius: 14px;
	padding: 16px;
}

.menu-item strong,
.event-item strong {
	display: block;
	margin-bottom: 6px;
	font-size: 1.02rem;
}

.menu-item span {
	color: var(--accent-dark);
	font-weight: 700;
	display: inline-block;
	margin-top: 8px;
}

form {
	display: grid;
	gap: 14px;
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.field {
	display: grid;
	gap: 6px;
}

.panel.active .field {
	animation: fieldEnter 0.45s ease both;
}

.panel.active .field:nth-child(2) {
	animation-delay: 0.06s;
}

.panel.active .field:nth-child(3) {
	animation-delay: 0.12s;
}

.panel.active .field:nth-child(4) {
	animation-delay: 0.18s;
}

label {
	font-weight: 700;
	font-size: 0.92rem;
}

.form-label {
	color: #f0e7d8;
	margin-bottom: 2px;
}

input,
select,
textarea {
	width: 100%;
	border: 1px solid #3b3b3b;
	border-radius: 12px;
	padding: 12px 13px;
	font-size: 0.96rem;
	font-family: inherit;
	background: #111;
	color: #f7f2e8;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.stylish-input {
	backdrop-filter: blur(4px);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.stylish-input:hover {
	transform: translateY(-1px);
	border-color: #585858;
}

.form-hint {
	color: #c8bca8;
	font-size: 0.8rem;
	margin-top: 2px;
}

.form-control-lg,
.form-select-lg {
	padding-top: 0.7rem;
	padding-bottom: 0.7rem;
	font-size: 1rem;
	border-radius: 0.75rem;
}

input[type="date"],
input[type="time"] {
	color-scheme: dark;
	cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
	filter: brightness(0) invert(1);
	opacity: 1;
	cursor: pointer;
}

textarea {
	min-height: 102px;
	resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
	outline: none;
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(196, 81, 45, 0.2);
}

.submit-btn {
	border: none;
	background: var(--olive);
	color: #fff;
	border-radius: 12px;
	padding: 13px 18px;
	cursor: pointer;
	font-weight: 700;
	width: fit-content;
	transition: transform 0.2s ease, background 0.2s ease;
}

.wa-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #1fa855;
}

.wa-btn:hover,
.wa-btn:focus-visible {
	background: #178847;
}

.wa-icon {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	object-fit: cover;
	flex: 0 0 22px;
}

.submit-btn:hover,
.submit-btn:focus-visible {
	background: #263724;
	transform: translateY(-1px);
	outline: none;
}

.feedback {
	margin-top: 4px;
	color: #245b26;
	font-weight: 700;
	display: none;
}

footer {
	padding: 24px 0 34px;
	color: #9d968c;
	text-align: center;
	font-size: 0.92rem;
}

@keyframes rise {
	from {
		opacity: 0;
		transform: translateY(24px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fieldEnter {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 960px) {
	.action-grid {
		grid-template-columns: 1fr;
	}

	.container {
		width: min(1200px, 94vw);
		padding: 26px 0;
	}

	.hero-main {
		padding: 28px;
		min-height: auto;
	}
}

@media (max-width: 640px) {
	header {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.tagline {
		font-size: 0.82rem;
		letter-spacing: 0.08em;
	}

	.brand-logo {
		height: clamp(48px, 11vw, 64px);
	}

	.brand-name {
		font-size: clamp(1.2rem, 5vw, 1.6rem);
	}

	h1 {
		font-size: clamp(1.8rem, 8vw, 2.6rem);
	}

	.hero-logo {
		width: clamp(150px, 52vw, 220px);
		margin-bottom: 14px;
	}

	.hero p {
		margin-bottom: 24px;
	}

	.form-grid {
		grid-template-columns: 1fr;
	}

	.submit-btn {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 430px) {
	.container {
		width: min(1120px, 95vw);
		padding: 18px 0;
	}

	.hero {
		gap: 20px;
		margin-bottom: 0;
	}

	.hero-main,
	.panel {
		padding: 18px;
	}

	.action-btn {
		min-height: 56px;
		font-size: 0.9rem;
	}

	.hero-logo {
		width: clamp(140px, 58vw, 190px);
	}
}
