/* ==========================================================================
   QHF&B — Contact page (layout + page components only)
   Tokens, shared input/label/button styles and reveal behavior live in
   style.css — nothing here redefines them.
   ========================================================================== */

/* Page-hero content sits above the ::before overlay */
.qh-hero--page .qh-hero-inner {
	position: relative;
	z-index: 1;
	text-align: center;
}

/* --------------------------------------------------------------------------
   Two-column info (40%) / form (60%) — stack ≤920px
   -------------------------------------------------------------------------- */
.qh-contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 56px;
	align-items: start;
}

@media (min-width: 921px) {
	.qh-contact-grid {
		grid-template-columns: 2fr 3fr;
		gap: 64px;
	}
}

/* --------------------------------------------------------------------------
   Info icon rows
   -------------------------------------------------------------------------- */
.qh-info-rows {
	list-style: none;
	margin: 36px 0 0;
	padding: 0;
	display: grid;
	gap: 26px;
}

.qh-info-row {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.qh-info-icon {
	width: 20px;
	height: 20px;
	flex: 0 0 auto;
	margin-top: 3px;
	color: var(--qh-gold);
}

.qh-info-label {
	display: block;
	font-size: 15px;
	color: var(--qh-cream);
	margin-bottom: 4px;
}

.qh-info-value {
	display: block;
	font-size: 14px;
	line-height: 1.75;
	color: var(--qh-body);
}

.qh-info-value a {
	color: inherit;
	text-decoration: none;
	transition: color .3s ease;
}

.qh-info-value a:hover {
	color: var(--qh-gold);
}

.qh-hours-day {
	color: var(--qh-cream);
}

/* --------------------------------------------------------------------------
   Quick reservation card
   -------------------------------------------------------------------------- */
.qh-quick-card {
	border-color: var(--qh-line);
	padding: 26px;
	margin-top: 44px;
}

.qh-quick-label {
	font-family: var(--qh-font-body);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--qh-gold);
	margin: 0 0 10px;
}

.qh-quick-text {
	font-size: 14px;
	line-height: 1.7;
	color: var(--qh-body);
	margin: 0 0 18px;
}

/* --------------------------------------------------------------------------
   Form column — anchor target for #reserve (fixed header offset)
   -------------------------------------------------------------------------- */
.qh-contact-form-col {
	scroll-margin-top: 100px;
}

.qh-form {
	margin-top: 36px;
	display: grid;
	gap: 20px;
}

.qh-field {
	display: grid;
	gap: 8px;
	margin: 0;
}

.qh-field input,
.qh-field select,
.qh-field textarea {
	width: 100%;
}

/* date / time / guests on one 3-col row */
.qh-form-row--3 {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

@media (min-width: 640px) {
	.qh-form-row--3 {
		grid-template-columns: repeat(3, 1fr);
	}
}

.qh-form-submit {
	width: 100%;
	cursor: pointer;
}

.qh-form-note {
	font-size: 13px;
	color: var(--qh-body);
	text-align: center;
	margin: 2px 0 0;
}

/* Honeypot backup (inline display:none is primary) */
.qh-hp {
	display: none !important;
}

/* Success / error notes */
.qh-form-alert {
	border-color: var(--qh-line);
	padding: 18px 22px;
	margin-top: 28px;
	font-size: 14px;
	line-height: 1.7;
	color: var(--qh-cream);
}

.qh-form-alert--err {
	border-color: rgba(196, 92, 60, .55);
}

/* --------------------------------------------------------------------------
   Map section — full-width iframe, subtle desaturation
   -------------------------------------------------------------------------- */
.qh-map-head {
	text-align: center;
}

.qh-map-wrap {
	margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.qh-map-wrap iframe {
	display: block;
	width: 100%;
	height: 420px;
	border: 0;
	filter: grayscale(.2) contrast(.95);
}

.qh-map-actions {
	text-align: center;
	margin-top: 44px;
}
