:root {
	--bg-main: #fffbf4;
	--bg-alt: #fffbf4;
	--text-main: #11120d;
	--text-muted: #565449;
	--line-soft: none !important;
	--card-bg: #fffbf4;
	--shadow-soft: 0 10px 30px rgba(22, 22, 22, 0.06);
	--radius-soft: 14px;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding-top: 58px;
	font-family: "Montserrat", sans-serif;
	color: var(--text-main);
	background: #fffbf4;
	line-height: 1.6;
}

h1,
h2,
h3,
.logo,
.footer-logo {
	font-family: "Playfair Display", serif;
	letter-spacing: 0.02em;
}

a {
	text-decoration: none;
}

.inquiry-hero {
	background: #fffbf4;
}

.section-kicker {
	text-transform: uppercase;
	letter-spacing: 0.16em;
	font-size: 0.75rem;
	font-weight: 600;
}

.section-title {
	font-size: clamp(2rem, 3.2vw, 3rem);
	line-height: 1.05;
}

.hero-copy {
	max-width: 720px;
	margin-inline: auto;
	color: var(--text-muted);
}

.inquiry-card {
	background-color: #fffbf4;
	border: 1px solid var(--line-soft);
	border-radius: 0;
	box-shadow: var(--shadow-soft);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.inquiry-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 36px rgba(22, 22, 22, 0.08);
}

.card-title {
	font-size: clamp(1.5rem, 2.1vw, 2rem);
	line-height: 1.15;
}

.form-label {
	font-size: 0.95rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 0.35rem;
}

.form-control,
.form-select {
	font-size: 0.95rem;
	border-color: rgba(17, 18, 13, 0.3);
	border-radius: 0;
	padding: 0.78rem 0.9rem;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus,
.form-select:focus {
	border-color: rgba(17, 18, 13, 0.3);
	box-shadow: 0 0 0 0.2rem rgba(80, 77, 72, 0.15);
	background-color: transparent;
}

.form-control.form-control-lg,
.form-select.form-control-lg {
	min-height: 52px;
	appearance: none;
	-webkit-appearance: none;
}

.form-control::placeholder {
	color: rgba(17, 18, 13, 0.3);
	opacity: 1;
	font: 0.95rem "Montserrat", sans-serif;
}

.summary-list {
	font-size: 0.98rem;
}

.summary-item {
	color: var(--text-main);
}

.info-panel {
	padding: 1rem;
	border: 1px solid rgba(17, 18, 13, 0.12);
	background: rgba(255, 255, 255, 0.32);
}

.inquiry-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 0.95rem 1.25rem;
	border: 1px solid #11120d;
	background-color: #11120d;
	color: #fffbf4;
	font-size: 0.88rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	transition: background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.inquiry-btn:hover,
.inquiry-btn:focus-visible {
	background-color: #565449;
	border-color: #565449;
	transform: translateY(-1px);
}

.inquiry-btn:focus,
.inquiry-btn:focus-visible {
	outline: none;
	box-shadow: none;
}

.mobile-inquiry-cta {
	position: sticky;
	bottom: 0;
	z-index: 1020;
	padding: 0.75rem 0;
	background: rgba(255, 251, 244, 0.92);
	backdrop-filter: blur(10px);
	border-top: 1px solid rgba(17, 18, 13, 0.08);
}

.inquiry-confirmation {
	border: 1px solid rgba(17, 18, 13, 0.12);
	background: rgba(255, 255, 255, 0.64);
	padding: 1rem;
	font-size: 0.95rem;
}

@media (min-width: 992px) {
	.sticky-lg-top {
		top: 84px;
	}
}