:root {
	color-scheme: light;
	--navy-950: #020c1d;
	--navy-900: #04152f;
	--navy-800: #082653;
	--blue-600: #066cff;
	--blue-400: #18b8ff;
	--blue-100: #dff4ff;
	--ink: #071327;
	--muted: #56647a;
	--surface: #ffffff;
	--soft: #f2f7fc;
	--line: #dce7f2;
	--radius: 24px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	background: var(--surface);
}

a {
	color: inherit;
}

.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 100;
	padding: 10px 14px;
	color: #ffffff;
	background: var(--navy-950);
	border-radius: 8px;
	transform: translateY(-150%);
}

.skip-link:focus {
	transform: translateY(0);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 10;
	background: rgb(2 12 29 / 92%);
	border-bottom: 1px solid rgb(255 255 255 / 12%);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

section[id] {
	scroll-margin-top: 90px;
}

.site-header__inner,
.section-shell,
.hero__inner {
	width: min(calc(100% - 40px), 1180px);
	margin: 0 auto;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 74px;
	gap: 24px;
}

.brand {
	display: block;
	width: min(220px, 48vw);
}

.brand img {
	display: block;
	width: 100%;
	height: auto;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 24px;
	color: #dcecff;
	font-size: 0.9rem;
	font-weight: 650;
}

.site-nav a {
	text-decoration: none;
}

.site-nav a:not(.button):hover {
	color: #ffffff;
}

.hero {
	position: relative;
	overflow: hidden;
	min-height: 646px;
	color: #ffffff;
	background:
		radial-gradient(circle at 78% 45%, rgb(0 136 255 / 32%), transparent 28%),
		linear-gradient(135deg, var(--navy-950), var(--navy-900) 52%, #06346a);
}

.hero::after {
	position: absolute;
	right: -10%;
	bottom: -240px;
	left: -10%;
	height: 320px;
	background: var(--surface);
	border-radius: 50% 50% 0 0;
	content: "";
}

.hero__glow {
	position: absolute;
	top: 22%;
	right: 10%;
	width: 360px;
	height: 360px;
	background: rgb(0 174 255 / 20%);
	border-radius: 50%;
	filter: blur(90px);
}

.hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
	align-items: center;
	gap: 64px;
	min-height: 646px;
	padding: 72px 0 110px;
}

.eyebrow {
	margin: 0 0 18px;
	color: var(--blue-400);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.hero h1 {
	max-width: 720px;
	margin: 0;
	font-size: clamp(3rem, 7vw, 6.6rem);
	letter-spacing: -0.055em;
	line-height: 0.96;
}

.hero__lead {
	max-width: 670px;
	margin: 28px 0 0;
	color: #c8d9ed;
	font-size: clamp(1.05rem, 2vw, 1.3rem);
	line-height: 1.65;
}

.hero__actions {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-top: 36px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 12px 22px;
	color: #ffffff;
	font-weight: 800;
	text-decoration: none;
	background: linear-gradient(135deg, var(--blue-600), #079ee8);
	border: 1px solid transparent;
	border-radius: 999px;
	box-shadow: 0 12px 30px rgb(0 108 255 / 30%);
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
	box-shadow: 0 16px 36px rgb(0 108 255 / 42%);
	transform: translateY(-2px);
}

.button--small {
	min-height: 40px;
	padding: 8px 17px;
}

.button--outline {
	background: rgb(255 255 255 / 7%);
	border-color: rgb(255 255 255 / 40%);
	box-shadow: none;
}

.button--light {
	color: var(--navy-900);
	background: #ffffff;
	box-shadow: none;
}

.text-link {
	color: #ffffff;
	font-weight: 750;
	text-underline-offset: 5px;
}

.hero__visual {
	position: relative;
	display: grid;
	place-items: center;
	aspect-ratio: 1;
}

.hero__visual img {
	position: relative;
	z-index: 2;
	display: block;
	width: min(88%, 480px);
	height: auto;
	filter: drop-shadow(0 30px 55px rgb(0 0 0 / 38%));
}

.hero__orbit {
	position: absolute;
	border: 1px solid rgb(91 196 255 / 30%);
	border-radius: 50%;
}

.hero__orbit--outer {
	inset: 1%;
}

.hero__orbit--inner {
	inset: 10%;
	border-style: dashed;
}

.promise {
	position: relative;
	z-index: 2;
	padding: 0 0 72px;
}

.promise__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	background: #ffffff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 24px 70px rgb(7 19 39 / 10%);
}

.promise__grid div {
	padding: 28px 32px;
}

.promise__grid div + div {
	border-left: 1px solid var(--line);
}

.promise strong,
.promise span {
	display: block;
}

.promise strong {
	margin-bottom: 6px;
	font-size: 1.05rem;
}

.promise span {
	color: var(--muted);
	font-size: 0.94rem;
	line-height: 1.5;
}

.section {
	padding: 104px 0;
}

.section--soft {
	background: var(--soft);
}

.section-heading {
	max-width: 730px;
}

.section h2,
.closing h2 {
	margin: 0;
	font-size: clamp(2.25rem, 5vw, 4rem);
	letter-spacing: -0.04em;
	line-height: 1.05;
}

.section-heading > p:last-child,
.photographer-callout__copy p,
.closing p {
	color: var(--muted);
	font-size: 1.08rem;
	line-height: 1.7;
}

.steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin: 54px 0 0;
	padding: 0;
	list-style: none;
}

.organizer-benefits {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 54px;
}

.organizer-benefits article {
	padding: 30px;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 18px 50px rgb(7 19 39 / 6%);
}

.organizer-benefits h3 {
	margin: 0 0 12px;
	font-size: 1.3rem;
	line-height: 1.25;
}

.organizer-benefits p {
	margin: 0;
	color: var(--muted);
	line-height: 1.65;
}

.steps li {
	padding: 30px;
	background: var(--soft);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.steps__number {
	display: inline-block;
	margin-bottom: 42px;
	color: var(--blue-600);
	font-size: 0.78rem;
	font-weight: 850;
	letter-spacing: 0.16em;
}

.steps h3 {
	margin: 0 0 12px;
	font-size: 1.3rem;
	line-height: 1.25;
}

.steps p {
	margin: 0;
	color: var(--muted);
	line-height: 1.65;
}

.section--dark {
	color: #ffffff;
	background: var(--navy-900);
}

.photographer-callout {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
	gap: 80px;
	align-items: end;
}

.photographer-callout__copy p {
	margin: 0 0 26px;
	color: #bfd1e7;
}

.closing {
	padding: 112px 0;
	text-align: center;
	background: linear-gradient(180deg, #ffffff, var(--soft));
}

.closing__inner {
	max-width: 820px;
}

.closing img {
	width: 92px;
	height: 92px;
	margin-bottom: 28px;
}

.closing p {
	max-width: 650px;
	margin: 22px auto 0;
}

.closing__button {
	margin-top: 28px;
}

.contact-section {
	padding: 104px 0;
	color: #ffffff;
	background:
		radial-gradient(circle at 18% 20%, rgb(24 184 255 / 20%), transparent 28%),
		linear-gradient(135deg, var(--navy-950), var(--navy-900));
}

.contact-section__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
	align-items: start;
	gap: clamp(48px, 8vw, 104px);
}

.contact-section__intro h2 {
	margin: 0;
	font-size: clamp(2.5rem, 6vw, 4.6rem);
	letter-spacing: -0.05em;
	line-height: 1;
}

.contact-section__intro > p:last-child {
	margin: 24px 0 0;
	color: #bfd1e7;
	font-size: 1.08rem;
	line-height: 1.7;
}

.contact-form {
	position: relative;
	display: grid;
	gap: 22px;
	padding: clamp(24px, 5vw, 42px);
	color: var(--ink);
	background: #ffffff;
	border: 1px solid rgb(255 255 255 / 18%);
	border-radius: var(--radius);
	box-shadow: 0 24px 80px rgb(0 0 0 / 28%);
}

.contact-form__trap {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
}

.form-field {
	display: grid;
	gap: 8px;
}

.form-field label {
	font-size: 0.9rem;
	font-weight: 800;
}

.form-field input,
.form-field textarea {
	width: 100%;
	padding: 13px 15px;
	color: var(--ink);
	font: inherit;
	background: #ffffff;
	border: 1px solid #b9c9da;
	border-radius: 12px;
}

.form-field textarea {
	resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
	border-color: var(--blue-600);
	outline: 3px solid rgb(6 108 255 / 16%);
}

.form-field [aria-invalid="true"] {
	border-color: #b42318;
}

.form-field__error {
	margin: 0;
	color: #b42318;
	font-size: 0.84rem;
	font-weight: 700;
}

.form-notice {
	padding: 14px 16px;
	font-weight: 700;
	border-radius: 12px;
}

.form-notice--success {
	color: #075e3b;
	background: #dcfaec;
	border: 1px solid #75d4ad;
}

.form-notice--error {
	color: #912018;
	background: #fee4e2;
	border: 1px solid #fda29b;
}

.contact-form .button {
	width: 100%;
	border: 0;
	cursor: pointer;
}

.site-footer {
	padding: 34px 0;
	color: #9fb1c9;
	background: var(--navy-950);
}

.site-footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.site-footer p {
	margin: 0;
}

.site-footer strong {
	color: #ffffff;
}

.site-footer a {
	font-weight: 700;
	text-underline-offset: 4px;
}

.site-footer__links {
	display: flex;
	align-items: center;
	gap: 20px;
}

.social-links {
	display: inline-flex;
	align-items: center;
	gap: 9px;
}

.social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 1px solid currentColor;
	border-radius: 50%;
	opacity: 0.88;
}

.social-link:hover {
	opacity: 1;
}

.social-link svg {
	width: 19px;
	height: 19px;
	fill: currentColor;
}

.public-page {
	background: var(--soft);
}

.page-header,
.page-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(calc(100% - 40px), 900px);
	margin: 0 auto;
	gap: 24px;
}

.page-footer nav {
	display: flex;
	align-items: center;
	gap: 20px;
}

.page-header {
	min-height: 84px;
	border-bottom: 1px solid var(--line);
}

.page-header .brand {
	width: 210px;
}

.page-header > a:last-child,
.page-footer a {
	font-weight: 750;
	text-underline-offset: 4px;
}

.legal-page {
	width: min(calc(100% - 40px), 780px);
	margin: 0 auto;
	padding: 88px 0;
}

.legal-page h1 {
	margin: 0;
	font-size: clamp(2.8rem, 8vw, 5rem);
	letter-spacing: -0.05em;
	line-height: 1;
}

.legal-page h2 {
	margin: 48px 0 12px;
	font-size: 1.45rem;
	letter-spacing: -0.02em;
}

.legal-page p,
.legal-page li {
	color: #3f4d62;
	font-size: 1.02rem;
	line-height: 1.75;
}

.legal-page ul {
	padding-left: 24px;
}

.legal-page li + li {
	margin-top: 9px;
}

.legal-page__updated {
	margin: 18px 0 42px;
	font-size: 0.9rem !important;
	font-weight: 700;
}

.legal-page__note {
	margin-top: 56px;
	padding: 20px;
	background: #ffffff;
	border: 1px solid var(--line);
	border-radius: 16px;
}

.page-footer {
	padding: 30px 0 44px;
	border-top: 1px solid var(--line);
}

.error-page {
	display: grid;
	place-items: center;
	min-height: 100vh;
	padding: 32px 20px;
	color: #ffffff;
	text-align: center;
	background:
		radial-gradient(circle at 50% 25%, rgb(0 139 255 / 30%), transparent 28%),
		var(--navy-950);
}

.error-page main {
	max-width: 680px;
}

.error-page__brand img {
	display: block;
	width: 150px;
	height: 150px;
	margin: 0 auto 36px;
}

.error-page h1 {
	margin: 0;
	font-size: clamp(3rem, 10vw, 6rem);
	letter-spacing: -0.055em;
	line-height: 1;
}

.error-page main > p:not(.eyebrow) {
	margin: 24px 0 32px;
	color: #bed0e5;
	font-size: 1.15rem;
}

a:focus-visible {
	outline: 3px solid var(--blue-400);
	outline-offset: 4px;
}

@media (max-width: 820px) {
	.site-nav > a:not(.button):not(.site-nav__contact) {
		display: none;
	}

	.hero {
		min-height: 0;
	}

	.hero::after {
		display: none;
	}

	.hero__inner {
		grid-template-columns: 1fr;
		gap: 32px;
		min-height: 0;
		padding: 64px 0 72px;
	}

	.hero__content {
		text-align: center;
	}

	.hero__lead {
		margin-right: auto;
		margin-left: auto;
	}

	.hero__actions {
		justify-content: center;
	}

	.hero__visual {
		width: min(80vw, 430px);
		margin: 0 auto;
	}

	.promise {
		padding: 32px 0 56px;
	}

	.promise__grid,
	.steps,
	.organizer-benefits,
	.photographer-callout {
		grid-template-columns: 1fr;
	}

	.promise__grid div + div {
		border-top: 1px solid var(--line);
		border-left: 0;
	}

	.photographer-callout {
		gap: 30px;
	}

	.contact-section__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 520px) {
	.site-header__inner,
	.section-shell,
	.hero__inner {
		width: min(calc(100% - 28px), 1180px);
	}

	.site-header__inner {
		min-height: 66px;
	}

	.site-nav {
		gap: 14px;
	}

	.brand {
		width: 166px;
	}

	.button--small {
		min-height: 38px;
		padding: 7px 14px;
	}

	.hero__inner {
		padding-top: 52px;
	}

	.hero h1 {
		font-size: clamp(2.7rem, 15vw, 4.4rem);
	}

	.hero__actions {
		align-items: stretch;
		flex-direction: column;
		gap: 18px;
	}

	.hero__visual {
		width: min(86vw, 360px);
	}

	.promise__grid div,
	.steps li {
		padding: 24px;
	}

	.section,
	.contact-section,
	.closing {
		padding: 76px 0;
	}

	.steps__number {
		margin-bottom: 28px;
	}

	.site-footer__inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.site-footer__links {
		align-items: flex-start;
		flex-direction: column;
		gap: 12px;
	}

	.site-footer p span {
		display: block;
		margin-top: 4px;
	}

	.page-header,
	.page-footer,
	.legal-page {
		width: min(calc(100% - 28px), 900px);
	}

	.page-header .brand {
		width: 165px;
	}

	.page-footer {
		align-items: flex-start;
		flex-direction: column;
	}

	.legal-page {
		padding: 64px 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.button {
		transition: none;
	}
}
