:root {
	--ma-ink: #233449;
	--ma-ink-soft: #52657d;
	--ma-sky: #dce9f0;
	--ma-sky-deep: #8aa5b6;
	--ma-sand: #d6c1a7;
	--ma-sand-soft: #efe4d6;
	--ma-cream: #f8f6f2;
	--ma-white: #ffffff;
	--ma-line: rgba(35, 52, 73, 0.12);
	--ma-shadow: 0 28px 70px rgba(35, 52, 73, 0.08);
	--ma-radius: 28px;
	--ma-radius-sm: 18px;
	--ma-shell: min(1180px, calc(100vw - 40px));
	--ma-narrow: min(780px, calc(100vw - 40px));
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Manrope", sans-serif;
	color: var(--ma-ink);
	background:
		radial-gradient(circle at top left, rgba(220, 233, 240, 0.9), transparent 40%),
		linear-gradient(180deg, #fbfaf7 0%, #f5f1eb 100%);
	line-height: 1.7;
}

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

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

p,
ul {
	margin: 0 0 1rem;
}

.site-backdrop {
	position: fixed;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(circle at 85% 15%, rgba(214, 193, 167, 0.18), transparent 25%),
		radial-gradient(circle at 10% 25%, rgba(138, 165, 182, 0.14), transparent 25%);
	z-index: -1;
}

.shell {
	width: var(--ma-shell);
	margin: 0 auto;
}

.narrow-shell {
	width: var(--ma-narrow);
}

.section,
.page-hero,
.hero-section {
	padding: 88px 0;
}

.soft-surface {
	background: rgba(255, 255, 255, 0.45);
	backdrop-filter: blur(8px);
}

.section-kicker,
.footer-kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 0.78rem;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--ma-sky-deep);
}

.section-kicker::before,
.footer-kicker::before {
	content: "";
	display: block;
	width: 38px;
	height: 1px;
	background: currentColor;
}

h1,
h2,
h3,
.brand-name {
	font-family: "Cormorant Garamond", serif;
	line-height: 1.02;
	margin: 0 0 1rem;
	font-weight: 600;
}

h1 {
	font-size: clamp(3rem, 6vw, 5.8rem);
	letter-spacing: -0.04em;
}

h2 {
	font-size: clamp(2rem, 3.4vw, 3.35rem);
	letter-spacing: -0.03em;
}

h3 {
	font-size: clamp(1.45rem, 2vw, 2rem);
}

.lead {
	font-size: 1.08rem;
	color: var(--ma-ink-soft);
	max-width: 58ch;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border-radius: 999px;
	padding: 14px 24px;
	font-weight: 700;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-2px);
}

.button-primary {
	background: var(--ma-ink);
	color: var(--ma-white);
	box-shadow: 0 18px 36px rgba(35, 52, 73, 0.18);
}

.button-soft {
	background: linear-gradient(135deg, var(--ma-sky) 0%, var(--ma-sand-soft) 100%);
	color: var(--ma-ink);
}

.button-ghost {
	background: rgba(255, 255, 255, 0.68);
	border: 1px solid var(--ma-line);
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
}

.icon svg {
	width: 1rem;
	height: 1rem;
	fill: currentColor;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(248, 246, 242, 0.88);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(35, 52, 73, 0.08);
}

.header-utility,
.header-main {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header-utility {
	font-size: 0.82rem;
	padding: 12px 0;
	color: var(--ma-ink-soft);
}

.utility-links {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}

.header-main {
	padding: 18px 0;
	gap: 24px;
}

.brand-mark {
	display: inline-flex;
	flex-direction: column;
}

.brand-kicker {
	text-transform: uppercase;
	letter-spacing: 0.22em;
	font-size: 0.72rem;
	color: var(--ma-sky-deep);
}

.brand-name {
	font-size: 2.05rem;
}

.site-navigation {
	display: flex;
	align-items: center;
	gap: 28px;
}

.menu,
.footer-menu,
.contact-list,
.feature-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

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

.menu a,
.footer-menu a {
	font-weight: 600;
}

.nav-toggle {
	display: none;
	background: none;
	border: 0;
	padding: 0;
}

.nav-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	margin: 5px 0;
	background: var(--ma-ink);
}

.hero-section {
	padding-top: 70px;
}

.hero-grid,
.contact-grid,
.about-grid,
.gown-layout,
.calendar-layout {
	display: grid;
	gap: 42px;
}

.hero-grid {
	grid-template-columns: 1.1fr 0.9fr;
	align-items: center;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 2rem;
}

.hero-notes {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin-top: 2rem;
}

.hero-notes div,
.process-card,
.value-card,
.contact-card,
.theme-form,
.notice-panel,
.calendar-frame,
.gown-card,
.philosophy-panel,
.callout-card,
.schedule-card,
.about-image,
.gown-details {
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: var(--ma-radius);
	box-shadow: var(--ma-shadow);
}

.hero-notes div {
	padding: 20px;
}

.hero-notes strong,
.card-tag,
.status-pill,
.price-pill {
	display: inline-flex;
	margin-bottom: 0.65rem;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-weight: 800;
}

.hero-mosaic {
	position: relative;
	min-height: 720px;
}

.hero-image {
	position: absolute;
	overflow: hidden;
	border-radius: 34px;
	box-shadow: 0 24px 60px rgba(35, 52, 73, 0.18);
}

.hero-image img,
.about-image img,
.gown-card-image img,
.gown-featured-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-image-large {
	inset: 0 120px 90px 0;
}

.hero-image:not(.hero-image-large) {
	right: 0;
	top: 50px;
	width: 260px;
	height: 340px;
}

.hero-detail {
	right: 40px;
	bottom: 0;
	top: auto;
	height: 250px;
}

.section-header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 32px;
}

.section-header.left {
	margin-bottom: 20px;
}

.philosophy-panel {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 28px;
	padding: 36px;
}

.philosophy-aside {
	padding: 28px;
	border-radius: var(--ma-radius-sm);
	background: linear-gradient(160deg, rgba(220, 233, 240, 0.7), rgba(239, 228, 214, 0.65));
}

.card-grid,
.process-grid,
.values-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.gown-card {
	overflow: hidden;
}

.gown-card-image {
	display: block;
	aspect-ratio: 4 / 4.4;
}

.gown-card-content {
	padding: 22px;
}

.card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}

.price-pill,
.status-pill {
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(220, 233, 240, 0.5);
	color: var(--ma-ink);
}

.process-card,
.value-card {
	padding: 28px;
}

.step-number {
	color: var(--ma-sky-deep);
	font-size: 0.92rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.callout-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 34px 38px;
	background: linear-gradient(135deg, rgba(220, 233, 240, 0.78), rgba(239, 228, 214, 0.84));
}

.page-hero {
	padding-top: 72px;
}

.about-grid {
	grid-template-columns: 1.05fr 0.95fr;
	align-items: center;
}

.about-collage {
	position: relative;
	min-height: 720px;
}

.about-image {
	position: absolute;
	overflow: hidden;
}

.about-image:first-child {
	inset: 0 70px 110px 0;
}

.about-image-offset {
	right: 0;
	bottom: 0;
	width: 300px;
	height: 360px;
}

.feature-list li {
	padding-left: 1.2rem;
	position: relative;
	margin-bottom: 0.8rem;
}

.feature-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.8rem;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--ma-sand);
}

.contact-grid {
	grid-template-columns: 1fr 0.92fr;
	align-items: start;
}

.schedule-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.schedule-card,
.theme-form,
.contact-card {
	padding: 24px;
}

.schedule-card.is-hidden,
.gown-card.is-hidden {
	display: none;
}

.schedule-card p:last-child,
.theme-form p:last-child {
	margin-bottom: 0;
}

.schedule-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-top: 1rem;
	flex-wrap: wrap;
}

.status-pending {
	opacity: 0.8;
}

.status-booked {
	opacity: 0.65;
}

.filter-toolbar {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 26px;
}

.filter-chip {
	border: 1px solid var(--ma-line);
	background: rgba(255, 255, 255, 0.9);
	color: var(--ma-ink);
	padding: 12px 18px;
	border-radius: 999px;
	font-weight: 700;
}

.filter-chip.is-active {
	background: var(--ma-ink);
	color: var(--ma-white);
	border-color: var(--ma-ink);
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin-bottom: 20px;
}

.form-grid label {
	display: grid;
	gap: 8px;
	font-weight: 600;
}

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

.form-input {
	width: 100%;
	border: 1px solid var(--ma-line);
	border-radius: 16px;
	padding: 14px 16px;
	font: inherit;
	background: rgba(255, 255, 255, 0.88);
	color: var(--ma-ink);
}

textarea.form-input {
	resize: vertical;
	min-height: 150px;
}

.selected-slot-summary {
	padding: 16px 18px;
	border-radius: 18px;
	background: rgba(220, 233, 240, 0.45);
	color: var(--ma-ink-soft);
}

.secondary-form {
	margin-top: 24px;
}

.contact-list li {
	display: flex;
	align-items: start;
	gap: 12px;
	margin-bottom: 1rem;
}

.notice-panel {
	padding: 24px;
	margin-bottom: 0;
}

.notice-panel.success {
	background: rgba(220, 233, 240, 0.72);
}

.notice-panel.warning {
	background: rgba(239, 228, 214, 0.76);
}

.calendar-layout {
	grid-template-columns: 0.82fr 1.18fr;
	align-items: center;
}

.calendar-frame {
	min-height: 420px;
	overflow: hidden;
}

.calendar-frame iframe {
	border: 0;
	width: 100%;
	height: 100%;
	min-height: 420px;
}

.calendar-placeholder {
	display: grid;
	place-items: center;
	text-align: center;
	padding: 40px;
	min-height: 420px;
	color: var(--ma-ink-soft);
}

.calendar-placeholder .icon svg {
	width: 36px;
	height: 36px;
	margin-bottom: 14px;
}

.gown-layout {
	grid-template-columns: 0.95fr 1.05fr;
	align-items: start;
}

.gown-featured-image {
	border-radius: var(--ma-radius);
	box-shadow: var(--ma-shadow);
}

.gown-details {
	padding: 30px;
}

.detail-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-bottom: 24px;
}

.detail-list div {
	padding: 18px;
	border-radius: 18px;
	background: rgba(220, 233, 240, 0.34);
}

.detail-list span {
	display: block;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--ma-sky-deep);
	margin-bottom: 6px;
}

.prose p,
.prose ul {
	color: var(--ma-ink-soft);
}

.footer-grid,
.footer-base {
	display: grid;
	gap: 24px;
}

.site-footer {
	padding: 88px 0 34px;
	background: rgba(35, 52, 73, 0.95);
	color: rgba(255, 255, 255, 0.84);
}

.footer-grid {
	grid-template-columns: 1.3fr 0.7fr 1fr;
	align-items: start;
}

.footer-socials {
	display: flex;
	gap: 12px;
	margin-top: 18px;
}

.footer-socials a {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-menu li {
	margin-bottom: 0.75rem;
}

.footer-base {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 34px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.9rem;
}

@media (max-width: 1024px) {
	.hero-grid,
	.about-grid,
	.contact-grid,
	.gown-layout,
	.calendar-layout,
	.philosophy-panel,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.hero-mosaic,
	.about-collage {
		min-height: 560px;
	}

	.hero-image-large {
		inset: 0 100px 70px 0;
	}

	.card-grid,
	.process-grid,
	.values-grid,
	.schedule-grid,
	.detail-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 820px) {
	.header-utility {
		display: none;
	}

	.nav-toggle {
		display: block;
	}

	.site-navigation {
		position: absolute;
		top: 100%;
		left: 20px;
		right: 20px;
		padding: 18px;
		background: rgba(248, 246, 242, 0.98);
		border: 1px solid var(--ma-line);
		border-radius: 24px;
		box-shadow: var(--ma-shadow);
		display: none;
		flex-direction: column;
		align-items: stretch;
	}

	.site-navigation.is-open {
		display: flex;
	}

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

	.nav-cta {
		width: 100%;
	}

	.hero-notes,
	.form-grid,
	.footer-base {
		grid-template-columns: 1fr;
	}

	.hero-image:not(.hero-image-large) {
		width: 220px;
		height: 280px;
	}
}

@media (max-width: 640px) {
	.section,
	.page-hero,
	.hero-section {
		padding: 68px 0;
	}

	h1 {
		font-size: clamp(2.5rem, 12vw, 4rem);
	}

	.hero-mosaic,
	.about-collage {
		min-height: 460px;
	}

	.hero-image-large,
	.about-image:first-child {
		inset: 0 40px 80px 0;
	}

	.hero-image,
	.about-image-offset {
		width: 180px;
		height: 220px;
	}

	.card-grid,
	.process-grid,
	.values-grid,
	.schedule-grid,
	.detail-list {
		grid-template-columns: 1fr;
	}

	.callout-card,
	.section-header,
	.header-main {
		flex-direction: column;
		align-items: flex-start;
	}

	.callout-card {
		padding: 30px;
	}
}
