/* /contact/ page — BHH Holiday parent surface (root template page-contact.php).
   Strict 3-color system: red #C8202F, white #FFF, black #000.
   Greys derived from black via opacity only. Uses global .bhh-container + .bhh-btn.
*/

.bhh-contact {
	--c-red:           #C8202F;
	--c-red-active:    #A91826;
	--c-black:         #000000;
	--c-white:         #FFFFFF;
	--c-body:          rgba(0,0,0,0.72);
	--c-muted:         rgba(0,0,0,0.55);
	--c-hairline:      rgba(0,0,0,0.10);
	--c-hairline-soft: rgba(0,0,0,0.06);
	--c-surface-tint:  rgba(0,0,0,0.03);
	--c-radius-lg:     14px;
	--c-radius-md:     10px;
	--c-radius-pill:   999px;

	color: var(--c-body);
	background: var(--c-white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.bhh-contact h1, .bhh-contact h2, .bhh-contact h3 { color: var(--c-black); margin: 0; letter-spacing: -0.01em; }
.bhh-contact p { margin: 0; line-height: 1.6; }
.bhh-contact a { color: inherit; text-decoration: none; }
.bhh-contact section { padding: 72px 0; }

/* Eyebrows */
.bhh-contact__eyebrow {
	display: inline-block;
	font-size: 13px; font-weight: 700;
	letter-spacing: 0.08em; text-transform: uppercase;
	padding: 6px 14px;
	border-radius: var(--c-radius-pill);
	background: var(--c-red);
	color: var(--c-white);
	margin: 0 0 18px;
}
.bhh-contact__eyebrow--quiet { background: var(--c-surface-tint); color: var(--c-red); }
.bhh-contact__eyebrow--on-dark { background: var(--c-red); color: var(--c-white); }

/* Local buttons (separate from global .bhh-btn used inside the form) */
.bhh-contact__btn {
	display: inline-flex; align-items: center; justify-content: center;
	padding: 14px 26px;
	border-radius: var(--c-radius-pill);
	font-weight: 600; font-size: 15px;
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: background .15s, color .15s, transform .15s, border-color .15s;
}
.bhh-contact__btn--primary { background: var(--c-red); color: var(--c-white); }
.bhh-contact__btn--primary:hover { background: var(--c-red-active); transform: translateY(-1px); }
.bhh-contact__btn--ghost { background: transparent; color: var(--c-black); border-color: var(--c-black); }
.bhh-contact__btn--ghost:hover { background: var(--c-black); color: var(--c-white); }
.bhh-contact__btn--ghost-dark { background: transparent; color: var(--c-white); border-color: rgba(255,255,255,0.55); }
.bhh-contact__btn--ghost-dark:hover { background: var(--c-white); color: var(--c-black); }

/* Hero — solid black.
   NOTE: bhh-parent.css defines `.bhh-contact__hero h1` (specificity 0-2-0)
   and `.bhh-contact__hero` padding/navy bg. We prefix `main.bhh-contact`
   (0-2-x) to win on specificity regardless of stylesheet load order. */
main.bhh-contact .bhh-contact__hero {
	background: var(--c-black);
	color: var(--c-white);
	padding: 132px 0 140px;
}
.bhh-contact__hero-inner { position: relative; }
main.bhh-contact .bhh-contact__hero .bhh-contact__h1,
main.bhh-contact .bhh-contact__hero h1 {
	font-size: clamp(34px, 5vw, 56px);
	font-weight: 600;
	color: var(--c-white);
	line-height: 1.08;
	margin: 0 0 18px;
}
.bhh-contact__h1::after {
	content: ""; display: block;
	width: 64px; height: 4px;
	background: var(--c-red);
	border-radius: 4px;
	margin: 24px 0 0;
}
main.bhh-contact .bhh-contact__hero .bhh-contact__lead,
main.bhh-contact .bhh-contact__hero p {
	font-size: 17px;
	color: rgba(255,255,255,0.78);
	max-width: 640px;
}

/* Section h2 on light */
.bhh-contact__visit .bhh-contact__h2,
.bhh-contact__form-section .bhh-contact__h2 {
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 700;
	margin: 0 0 16px;
}

/* Channel cards (3) — overlap up into hero */
.bhh-contact__channels-section { padding: 56px 0; background: var(--c-white); }
.bhh-contact__channel-grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
	margin-top: -110px;
	position: relative; z-index: 2;
}
.bhh-contact__channel {
	display: flex; align-items: flex-start; gap: 16px;
	background: var(--c-white);
	border: 1px solid var(--c-hairline-soft);
	border-radius: var(--c-radius-lg);
	padding: 24px;
	box-shadow: 0 12px 32px rgba(0,0,0,0.08);
	transition: transform .15s, border-color .15s, box-shadow .15s;
}
.bhh-contact__channel:hover { transform: translateY(-3px); border-color: var(--c-red); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.bhh-contact__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 48px; height: 48px;
	border-radius: 12px;
	background: var(--c-red);
	flex-shrink: 0;
}
.bhh-contact__icon svg { stroke: var(--c-white); }
.bhh-contact__channel-meta { display: flex; flex-direction: column; gap: 2px; }
.bhh-contact__channel-label {
	font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
	color: var(--c-muted);
}
.bhh-contact__channel-value {
	font-size: 18px; font-weight: 700; color: var(--c-black);
	margin: 2px 0;
	font-variant-numeric: tabular-nums;
}
.bhh-contact__channel-sub { font-size: 13px; color: var(--c-muted); }

/* Visit */
.bhh-contact__visit { background: var(--c-surface-tint); padding-top: 56px; }
.bhh-contact__visit-grid {
	display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: stretch;
}
.bhh-contact__address {
	font-style: normal; line-height: 1.7; color: var(--c-body);
	margin: 0 0 20px;
}
.bhh-contact__address strong { color: var(--c-black); }
.bhh-contact__drive {
	list-style: none; padding: 0; margin: 0 0 24px;
	display: grid; gap: 8px;
}
.bhh-contact__drive li {
	display: flex; justify-content: space-between; align-items: baseline;
	padding: 10px 14px;
	background: var(--c-white);
	border: 1px solid var(--c-hairline-soft);
	border-left: 3px solid var(--c-red);
	border-radius: var(--c-radius-md);
	font-size: 14px;
}
.bhh-contact__drive span { color: var(--c-muted); }
.bhh-contact__drive strong { color: var(--c-black); font-weight: 700; }
.bhh-contact__visit-ctas { display: flex; gap: 10px; flex-wrap: wrap; }
.bhh-contact__map-wrap {
	border-radius: var(--c-radius-lg);
	overflow: hidden;
	min-height: 420px;
	background: var(--c-white);
	border: 1px solid var(--c-hairline);
}
.bhh-contact__map { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* Form section */
.bhh-contact__form-section { background: var(--c-white); }
.bhh-contact__form-grid {
	display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start;
}
.bhh-contact__form-body p { color: var(--c-body); margin: 0 0 16px; }
.bhh-contact__form-bullets {
	list-style: none; padding: 0; display: grid; gap: 10px;
	margin: 16px 0 0;
}
.bhh-contact__form-bullets li {
	padding-left: 28px; position: relative; color: var(--c-body);
}
.bhh-contact__form-bullets li::before {
	content: ""; position: absolute; left: 0; top: 5px;
	width: 16px; height: 16px;
	background: var(--c-red) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/11px no-repeat;
	border-radius: 999px;
}

/* Form card */
.bhh-contact__form-wrap {
	background: var(--c-white);
	border: 1px solid var(--c-hairline);
	border-radius: var(--c-radius-lg);
	padding: 28px;
	box-shadow: 0 10px 24px rgba(0,0,0,0.05);
}
.bhh-contact__form-title { font-size: 20px; font-weight: 700; margin: 0 0 18px; }
.bhh-contact__form { display: grid; gap: 14px; }
.bhh-contact__form label {
	display: flex; flex-direction: column; gap: 6px;
	font-size: 13px; font-weight: 600; color: var(--c-muted);
}
.bhh-contact__form input,
.bhh-contact__form select,
.bhh-contact__form textarea {
	font: inherit;
	color: var(--c-black);
	background: var(--c-white);
	border: 1px solid var(--c-hairline);
	border-radius: 8px;
	padding: 12px 14px;
	transition: border-color .15s, box-shadow .15s;
}
.bhh-contact__form input:focus,
.bhh-contact__form select:focus,
.bhh-contact__form textarea:focus {
	border-color: var(--c-red);
	outline: none;
	box-shadow: 0 0 0 1px var(--c-red);
}
.bhh-contact__form .bhh-contact__full { width: 100%; }
.bhh-contact__form button.bhh-btn,
.bhh-contact__form .bhh-btn--primary {
	background: var(--c-red);
	color: var(--c-white);
	border: 0;
	border-radius: var(--c-radius-pill);
	padding: 14px 26px;
	font-weight: 600; font-size: 15px;
	cursor: pointer;
	transition: background .15s, transform .15s;
}
.bhh-contact__form button.bhh-btn:hover { background: var(--c-red-active); transform: translateY(-1px); }
.bhh-contact__small { font-size: 12px; color: var(--c-muted); margin-top: 4px; }

/* Alerts */
.bhh-contact__alert { padding: 12px 16px; border-radius: var(--c-radius-md); margin: 0 0 16px; font-size: 14px; }
.bhh-contact__alert--ok  { background: rgba(0,0,0,0.04); color: var(--c-black); border-left: 3px solid var(--c-red); }
.bhh-contact__alert--err { background: rgba(200,32,47,0.08); color: var(--c-red-active); border-left: 3px solid var(--c-red); }

/* Bottom CTA — solid black */
.bhh-contact__bottom-cta { background: var(--c-black); color: var(--c-white); padding: 72px 0; }
.bhh-contact__bottom-cta :where(h2, h3) { color: var(--c-white); }
.bhh-contact__bottom-cta p { color: rgba(255,255,255,0.82); margin: 0 0 8px; }
.bhh-contact__bottom-cta .bhh-contact__h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 700; margin: 0 0 12px; color: #fff; }
.bhh-contact__bottom-cta-inner {
	display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: center;
}
.bhh-contact__bottom-ctas { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }

/* Sticky mobile bar */
.bhh-contact__sticky {
	display: none;
	position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
	background: var(--c-black); color: var(--c-white);
	padding: 8px;
	box-shadow: 0 -8px 24px rgba(0,0,0,0.18);
}
.bhh-contact__sticky a {
	flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px;
	color: var(--c-white); padding: 8px; font-size: 11px; font-weight: 600;
}
.bhh-contact__sticky a svg { stroke: var(--c-red); }

@media (max-width: 1024px) {
	.bhh-contact__channel-grid { grid-template-columns: 1fr; margin-top: -72px; }
	.bhh-contact__visit-grid, .bhh-contact__form-grid, .bhh-contact__bottom-cta-inner { grid-template-columns: 1fr; gap: 32px; }
	.bhh-contact__map-wrap { min-height: 320px; }
	.bhh-contact__map { min-height: 320px; }
}
@media (max-width: 720px) {
	.bhh-contact section { padding: 56px 0; }
	main.bhh-contact .bhh-contact__hero { padding: 108px 0 96px; }
	.bhh-contact__sticky { display: flex; }
	.bhh-contact { padding-bottom: 64px; }
}

/* Mobile hero normalization -> match Rooms hero 09/07/2026 */
@media (max-width: 600px) {
	main.bhh-contact .bhh-contact__hero { min-height: 686px !important; display: flex; align-items: center; }
	main.bhh-contact .bhh-contact__hero .bhh-contact__h1,
	main.bhh-contact .bhh-contact__hero h1 { font-size: 34px !important; }
	main.bhh-contact .bhh-contact__hero .bhh-contact__lead,
	main.bhh-contact .bhh-contact__hero p { font-size: 14px !important; }
	main.bhh-contact .bhh-contact__hero .bhh-contact__eyebrow { font-size: 11px !important; }
}
/* Desktop hero -> match Rooms (757px / 64 / 14 / 11) 09/07/2026 */
@media (min-width: 601px) {
	main.bhh-contact .bhh-contact__hero { min-height: 757px !important; display: flex; align-items: center; }
	main.bhh-contact .bhh-contact__hero .bhh-contact__h1,
	main.bhh-contact .bhh-contact__hero h1 { font-size: 64px !important; }
	main.bhh-contact .bhh-contact__hero .bhh-contact__lead,
	main.bhh-contact .bhh-contact__hero p { font-size: 14px !important; }
	main.bhh-contact .bhh-contact__hero .bhh-contact__eyebrow { font-size: 11px !important; }
}
