* {
	box-sizing: border-box;
}

:root {
	color-scheme: light;
	--bg: #f7f7f7;
	--bg-accent: #e5e5e5;
	--surface: rgba(255, 255, 255, 0.74);
	--surface-strong: rgba(255, 255, 255, 0.94);
	--text: #111111;
	--muted: #5d5d5d;
	--line: rgba(17, 17, 17, 0.12);
	--rose: #1c1c1c;
	--rose-deep: #000000;
	--shadow: 0 24px 80px rgba(0, 0, 0, 0.1);
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-height: 100vh;
	width: 100%;
	font-family: "Inter", sans-serif;
	color: var(--text);
	overflow-x: hidden;
	background:
		radial-gradient(circle at top left, rgba(255, 255, 255, 0.8), transparent 34%),
		radial-gradient(circle at 80% 20%, rgba(0, 0, 0, 0.06), transparent 30%),
		linear-gradient(135deg, var(--bg), var(--bg-accent));
}

a {
	color: inherit;
	text-decoration: none;
}

.page-shell {
	min-height: 100vh;
	width: 100%;
	padding: 28px;
	display: flex;
	flex-direction: column;
	gap: 80px;
}

.topbar,
.hero {
	width: 100%;
}

.topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 18px 22px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(247, 247, 247, 0.74));
	backdrop-filter: blur(18px);
	box-shadow: var(--shadow);
}

.brand {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.62rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.nav {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 0.98rem;
	color: var(--muted);
	flex-wrap: wrap;
	justify-content: center;
}

.nav a {
	transition: color 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
	color: var(--text);
}

.social-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 11px 15px;
	border: 1px solid rgba(17, 17, 17, 0.08);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.5);
}

.social-link svg {
	width: 17px;
	height: 17px;
	fill: currentColor;
	flex: none;
}

.social-link:hover,
.social-link:focus-visible {
	border-color: rgba(17, 17, 17, 0.14);
	background: rgba(255, 255, 255, 0.76);
}

.hero {
	flex: 1;
	display: grid;
	place-items: center;
	text-align: center;
	padding: 24px 12px 60px;
}

.eyebrow {
	margin: 0 0 14px;
	text-transform: uppercase;
	letter-spacing: 0.28em;
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--text);
}

.hero h1 {
	margin: 0;
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(4rem, 10vw, 7.4rem);
	line-height: 0.9;
	letter-spacing: -0.03em;
}

.hero h1::after {
	content: "";
	display: block;
	width: 84px;
	height: 2px;
	margin: 18px auto 0;
	border-radius: 999px;
	background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.62), transparent);
}

.lead {
	max-width: 42rem;
	margin: 24px auto 0;
	font-size: clamp(1.08rem, 2.2vw, 1.34rem);
	line-height: 1.85;
	color: var(--muted);
}

.cta-row {
	margin-top: 34px;
	display: grid;
	justify-items: center;
	gap: 12px;
}

.cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 300px;
	padding: 18px 32px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--rose), var(--rose-deep));
	color: #fff;
	font-weight: 700;
	font-size: 1.08rem;
	letter-spacing: 0.01em;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
	transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.cta:hover,
.cta:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 20px 42px rgba(0, 0, 0, 0.22);
	filter: brightness(1.05);
}

.helper {
	margin: 0;
	font-size: 0.92rem;
	color: var(--muted);
}

@media (max-width: 720px) {
	.page-shell {
		padding: 16px;
		gap: 44px;
	}

	.topbar {
		border-radius: 28px;
		padding: 18px 20px;
		flex-direction: column;
		align-items: stretch;
		gap: 16px;
	}

	.brand {
		text-align: center;
		font-size: 1.72rem;
	}

	.nav {
		gap: 12px;
	}

	.social-link {
		padding: 12px 16px;
		font-size: 1rem;
	}

	.social-link svg {
		width: 18px;
		height: 18px;
	}

	.hero {
		padding: 10px 8px 28px;
	}

	.eyebrow {
		font-size: 0.82rem;
		letter-spacing: 0.24em;
	}

	.hero h1 {
		font-size: clamp(3.2rem, 15vw, 5rem);
		line-height: 0.88;
	}

	.hero h1::after {
		width: 88px;
	}

	.lead {
		font-size: 1.05rem;
		line-height: 1.82;
	}

	.cta-row {
		margin-top: 30px;
	}

	.cta {
		width: min(100%, 420px);
		padding: 18px 26px;
		font-size: 1.06rem;
	}
}

@media (max-width: 420px) {
	.page-shell {
		padding: 12px;
		gap: 32px;
	}

	.topbar {
		border-radius: 22px;
		padding: 14px;
	}

	.brand {
		font-size: 1.58rem;
	}

	.nav {
		gap: 8px;
	}

	.social-link {
		flex-basis: 100%;
		padding: 12px 14px;
	}

	.eyebrow {
		letter-spacing: 0.2em;
	}

	.hero h1::after {
		width: 72px;
		margin-top: 14px;
	}

	.cta {
		font-size: 1rem;
	}
}
