/* Base */
:root {
	--bg: #000;
	--bg-2: #151515;
	--text: #fff;
	--text-2: #111;
	--muted: #dadada;
	--brand: #ffe2a6;
	/* warm gold */
	--brand-2: #9d7b3a;
	--card: #1b1b1b;
	--border: #262626;
	--shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	background: var(--bg);
	color: var(--text);
	/* font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji"; */
	font-family: Noto Sans Display, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
	line-height: 1.6;
	scroll-behavior: smooth;
}

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

a {
	color: var(--text);
	text-decoration: none;
}

.container {
	width: min(1120px, 92vw);
	margin: 0 auto;
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(15, 15, 15, 0.7);
	backdrop-filter: saturate(140%) blur(10px);
	border-bottom: 1px solid var(--border);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 0;
}

.brand {
	font-family: "Noto Sans Display", sans-serif;
	font-weight: 700;
	letter-spacing: .3px;
}

.nav {
	display: flex;
	gap: 18px;
	align-items: center;
}

.nav a {
	color: var(--muted);
	font-weight: 500;
}

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

.nav a.btn {
	color: var(--text-2)
}

/* Buttons */
.btn {
	background: var(--brand);
	color: #111;
	padding: 12px 18px;
	border-radius: 999px;
	font-weight: 700;
	display: inline-block;
	box-shadow: var(--shadow);
}

.btn:hover {
	background: var(--brand-2);
	color: #000;
}

.btn-secondary {
	background: transparent;
	border: 1px solid var(--brand);
	color: var(--text);
}

.btn-secondary:hover {
	background: rgba(213, 176, 107, .12);
}

.btn-ghost {
	background: transparent;
	border: 1px solid var(--border);
	color: var(--text);
}

.btn-ghost:hover {
	border-color: var(--brand);
	color: var(--brand);
}

.btn-small {
	padding: 8px 12px;
	font-size: 14px;
}

/* Hero */
.hero {
	position: relative;
	min-height: 72vh;
	display: flex;
	align-items: center;
	flex-direction: column;
}

.hero-overlay {
	/* position: absolute; */
	/* inset: 0; */
	/* background: linear-gradient(180deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, .65)); */
	display: grid;
	align-items: center;
}

.eyebrow {
	color: var(--brand);
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 18px;
	text-align: center;
	margin-block-start: 2rem;
	/* margin: 0 0 12px; */
}

.hero h1 {
	font-family: "Noto Sans Display", sans-serif;
	font-size: clamp(32px, 5vw, 54px);
	line-height: 1.1;
	text-align: center;
	text-transform: uppercase;
	margin-block-end: 10px;
}

.lead {
	color: var(--muted);
	font-size: 1rem;
	font-weight: 200;
	text-align: center;
	margin-block-end: 3rem;
}

.hero-ctas {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

/* Sections */
.section {
	padding: 64px 0;
	border-top: 1px solid var(--border);
	background: var(--bg);
}

.section-header {
	margin-block-end: 3rem;
}

.section-header h2 {
	font-family: "Noto Sans Display", sans-serif;
	font-weight: 700;
	font-size: clamp(26px, 3.4vw, 40px);
	margin-block-end: 0.2rem;
	text-transform: uppercase;
}

.section-header p {
	margin: 0;
	color: var(--muted);
	font-weight: 200;
}

section.video video {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 12px;
	box-shadow: var(--shadow);
	margin-bottom: 4rem;
}

section.contact {
	margin-bottom: 4rem;
}

/* Contact */
.contact-grid {
	display: grid;
	/* grid-template-columns: repeat(6, 1fr); */
	/* grid-template-columns: repeat(auto-fill, minmax(3rem, 1fr)); */
	grid-template-columns: repeat(auto-fill, minmax(min(4rem, 100%), 1fr));
	/* gap: 1rem; */
	align-items: center;
	gap: 2rem;
}

.contact-card {
	/* grid-column: span 12; */
	/* background: var(--card);
	border: 1px solid var(--border);
	border-radius: 12px; */
	padding: 0;

	text-align: center;
}

.contact-card h3 {
	margin-block-end: 6px;
	/* font-size: 18px; */
}

.contact-card .brand-logo {
	display: inline-block;
	margin-block-end: 0.5rem;
}

.contact-card .brand-logo img {
	/* height: 4rem;
	width: auto;
	display: block; */
}

.contact-card .brand-logo picture {
	object-fit: fill;
	/* display: inline-block; */
}

.contact-card .contact-info {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
	font-weight: 200;
	line-height: 1.4;

	a {
		color: var(--muted);
	}
}

.cta-center {
	text-align: center;
	margin-top: 22px;
}

@media (min-width: 860px) {
	.contact-card {
		grid-column: span 4;
	}
}

/* Footer */
.site-footer {
	border-top: 1px solid var(--border);
	background: rgba(15, 15, 15, 0.7);
	backdrop-filter: saturate(140%) blur(10px);
}

.footer-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-block: 1rem;
	gap: 12px;
}

.footer-links {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.footer-links a {
	color: var(--muted);
	font-weight: 200;
}

.footer-links a:hover {
	color: var(--brand);
}

/* Helpers */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Places */
.places {
	background: var(--bg-2);
}

.places-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 18px;
}

.place-card {
	grid-column: span 12;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: var(--shadow);
	display: grid;
	grid-template-columns: 1fr;
}

.place-media img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.place-body {
	padding: 18px;
}

.place-body h3 {
	margin: 0 0 6px;
	font-size: 22px;
	font-weight: 700;
}

.place-tag {
	color: var(--brand);
	margin: 0 0 12px;
	font-weight: 600;
}

.bullets {
	padding-left: 18px;
	margin: 0 0 14px;
	color: var(--muted);
}

.bullets li {
	margin: 6px 0;
}

.card-ctas {
	display: flex;
	gap: 10px;
}

@media (min-width: 780px) {
	.place-card {
		grid-template-columns: 1.1fr 1.4fr;
	}

	.place-media img {
		height: 100%;
		min-height: 100%;
	}
}

@media (min-width: 940px) {
	.place-card {
		grid-column: span 6;
	}
}

/* Loyalty */
.loyalty {
	background: radial-gradient(80% 120% at 50% 0%, rgba(213, 176, 107, .08), rgba(0, 0, 0, 0)), var(--bg);
}

.loyalty-inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 26px;
	align-items: center;
}

.loyalty-copy h2 {
	margin: 0 0 10px;
	font-family: "Noto Sans Display", sans-serif;
}

.checklist {
	list-style: none;
	padding: 0;
	margin: 14px 0;
}

.checklist li {
	margin: 8px 0;
	padding-left: 26px;
	position: relative;
	color: var(--muted);
}

.checklist li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--brand);
	font-weight: 900;
}

.steps {
	counter-reset: step;
	padding-left: 18px;
	color: var(--muted);
}

.steps li {
	margin: 6px 0;
}

.loyalty-media img {
	border-radius: 12px;
	border: 1px solid var(--border);
	box-shadow: var(--shadow);
}

@media (min-width: 900px) {
	.loyalty-inner {
		grid-template-columns: 1.2fr 1fr;
	}
}