/**
 * BHHH parent homepage — 4-section splash router.
 *
 * Rewritten 18/05/2026 to match new 1-pager spec:
 *   1. Hero/banner (video stub + dual-CTA)
 *   2. About + Nivanta/Creaze explainer
 *   3. Twin-brand split (50/50 cards)
 *   4. Contact Us (map + drive times + CTAs)
 *
 * Tokens per `DESIGN-bhh-parent.md` (airbnb-inspired): Rausch #ff385c,
 * ink #222, surface #f7f7f7, Inter (substitutes Cereal VF), Cormorant
 * Garamond serif on hero italic accent. Container 90vw / max 1320px.
 */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@400;500;600;700&display=swap');

.bhh-home {
	--ab-primary:        #ff385c;
	--ab-primary-active: #e00b41;
	--ab-ink:            #222222;
	--ab-body:           #3f3f3f;
	--ab-muted:          #6a6a6a;
	--ab-hairline:       #dddddd;
	--ab-hairline-soft:  #ebebeb;
	--ab-canvas:         #ffffff;
	--ab-surface-soft:   #f7f7f7;
	--ab-radius-lg:      14px;
	--ab-radius-pill:    999px;
	--ab-font: "Inter", "Airbnb Cereal VF", Circular, -apple-system, BlinkMacSystemFont, system-ui, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
	--ab-serif: "Cormorant Garamond", "Times New Roman", serif;

	/* Brand-marker accents for the about + split cards (sourced from
	   DESIGN-nivanta-creaze.md so the BHHH parent surface signposts the
	   two child brands without adopting their full visual systems). */
	--nv-navy: #022E3D;
	--nv-lime: #A6CE39;
	--cr-sky:  #4CADE2;

	font-family: var(--ab-font);
	color: var(--ab-body);
	background: var(--ab-canvas);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

.bhh-home h1, .bhh-home h2, .bhh-home h3, .bhh-home h4 {
	font-family: var(--ab-font);
	color: var(--ab-ink);
	margin: 0;
	letter-spacing: -0.01em;
}

.bhh-home p { margin: 0; line-height: 1.6; }
.bhh-home a { color: inherit; text-decoration: none; }

.bhh-home__container {
	width: 90vw;
	max-width: 1320px;
	margin: 0 auto;
	padding: 0;
}

.bhh-home section { padding: 96px 0; }

/* Sticky header is ~96px tall — offset anchor jumps + smooth scroll. */
.bhh-home section[id] { scroll-margin-top: 100px; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
}

.bhh-home__small-eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	padding: 4px 12px;
	border-radius: var(--ab-radius-pill);
	background: var(--ab-surface-soft);
	color: var(--ab-muted);
	margin: 0 0 16px;
}

.bhh-home__small-eyebrow--on-dark {
	background: rgba(255, 255, 255, 0.14);
	color: rgba(255, 255, 255, 0.85);
}

.bhh-home__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 26px;
	border-radius: var(--ab-radius-pill);
	font-weight: 600;
	font-size: 15px;
	border: 1.5px solid transparent;
	background: transparent;
	cursor: pointer;
	transition: background 0.18s, color 0.18s, transform 0.18s, border-color 0.18s;
	text-decoration: none;
	white-space: nowrap;
}

.bhh-home__btn svg {
	flex-shrink: 0;
	display: inline-block;
	vertical-align: middle;
}

.bhh-home__btn--primary { background: var(--ab-primary); color: #fff; }
.bhh-home__btn--primary:hover {
	background: var(--ab-primary-active);
	transform: translateY(-1px);
	color: #fff;
}

.bhh-home__btn--ghost {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.6);
}
.bhh-home__btn--ghost:hover {
	background: #fff;
	color: var(--ab-ink);
	border-color: #fff;
}

.bhh-home__btn--ghost-dark {
	color: var(--ab-ink);
	border-color: var(--ab-ink);
}
.bhh-home__btn--ghost-dark:hover {
	background: var(--ab-ink);
	color: #fff;
}

/* ============================================================
   Section 1 — Hero / Banner / Video
   ============================================================ */

.bhh-home__hero {
	position: relative;
	min-height: 88vh;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
	color: #fff;
	padding: 0 !important;
}

.bhh-home__hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.bhh-home__hero-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0) 30%),
		linear-gradient(0deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 60%);
	z-index: 1;
	pointer-events: none;
}

.bhh-home__hero-inner {
	position: relative;
	z-index: 2;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 120px 16px 96px;
	gap: 0;
}

.bhh-home__hero-eyebrow {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.86);
	margin: 0 0 36px;
}

.bhh-home__hero-title,
.bhh-home__hero-title em {
	color: #fff !important;
}
.bhh-home__hero-title {
	font-family: var(--ab-font);
	font-weight: 600;
	font-size: clamp(44px, 6.4vw, 104px);
	line-height: 1.02;
	letter-spacing: -0.02em;
	margin: 0 0 28px;
	max-width: 16ch;
}

.bhh-home__hero-title em {
	font-family: var(--ab-serif);
	font-style: italic;
	font-weight: 500;
	display: inline-block;
	margin-top: 4px;
}

.bhh-home__hero-sub {
	font-family: var(--ab-font);
	font-size: clamp(16px, 1.2vw, 19px);
	line-height: 2;
	color: rgba(255, 255, 255, 0.92);
	max-width: 54ch;
	margin: 0 0 44px;
}

.bhh-home__hero-sub strong { color: #fff; font-weight: 600; }
.bhh-home__hero-sub:empty { display: none; }

.bhh-home__hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
	margin-top: 40px;
}

/* Brand-red primary for Variant A — re-bind ab-primary token to BHHH red
   so every accent (CTA, brand-link, section borders) tracks the logo color
   instead of falling back to airbnb-pink Rausch. */
.bhh-home--variant-a {
	--ab-primary:        #C8202F;
	--ab-primary-active: #a31525;
}
.bhh-home--variant-a .bhh-home__btn--primary {
	background: #C8202F;
	color: #fff;
}
.bhh-home--variant-a .bhh-home__btn--primary:hover {
	background: #a31525;
}

.bhh-home__hero-overlay {
	/* Flat 40% scrim across the whole hero so the title stays legible over the
	   bright building mid-frame (gradients left the centre transparent). */
	background: rgba(0, 0, 0, 0.4) !important;
}

.bhh-home__hero-scroll {
	position: absolute;
	bottom: 28px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	color: rgba(255, 255, 255, 0.78);
	font-family: var(--ab-font);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	text-decoration: none;
	animation: bhh-hero-scroll-pulse 2.4s ease-in-out infinite;
}

@keyframes bhh-hero-scroll-pulse {
	0%, 100% { transform: translate(-50%, 0); opacity: 0.78; }
	50%      { transform: translate(-50%, 6px); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
	.bhh-home__hero-scroll { animation: none; }
}

/* ============================================================
   Section 2 — Stat strip (Variant A trust line)
   ============================================================ */

.bhh-home__stats {
	background: #fff;
	border-bottom: 1px solid var(--ab-hairline-soft);
	padding: 64px 0 !important;
}

.bhh-home__stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	text-align: center;
}

.bhh-home__stat strong {
	display: block;
	font-family: "Bricolage Grotesque", var(--ab-font);
	font-weight: 800;
	font-size: clamp(36px, 5vw, 64px);
	line-height: 1;
	color: var(--ab-ink);
	letter-spacing: -0.02em;
	margin-bottom: 10px;
}

.bhh-home__stat span {
	font-family: var(--ab-font);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ab-muted);
}

@media (max-width: 720px) {
	.bhh-home__stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
	.bhh-home__stats { padding: 48px 0 !important; }
}

/* ============================================================
   Section 2 — About BHH + Nivanta/Creaze explainer
   ============================================================ */

.bhh-home__about {
	background: var(--ab-canvas);
}

.bhh-home__about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
}

.bhh-home__about-title {
	font-size: clamp(32px, 3.4vw, 48px);
	line-height: 1.04;
	font-weight: 600;
	color: var(--ab-ink);
	margin: 0 0 20px;
}

.bhh-home__about-text {
	font-size: 17px;
	line-height: 1.7;
	color: var(--ab-body);
	max-width: 52ch;
}
.bhh-home__about-text:empty { display: none; }

.bhh-home__about-text strong { color: var(--ab-ink); font-weight: 600; }

.bhh-home__about-brands {
	display: grid;
	gap: 24px;
}

.bhh-home__brand-blurb {
	display: grid;
	grid-template-columns: 140px 1fr;
	gap: 24px;
	padding: 28px;
	background: var(--ab-surface-soft);
	border-radius: var(--ab-radius-lg);
	border: 1px solid var(--ab-hairline-soft);
	transition: transform 0.25s ease-out, box-shadow 0.25s ease-out;
	align-items: start;
}

.bhh-home__brand-blurb:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
}

.bhh-home__brand-logo {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	width: 140px;
	height: 64px;
}

.bhh-home__brand-logo img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
}

.bhh-home__brand-link svg {
	flex-shrink: 0;
	vertical-align: middle;
	margin-left: 2px;
}

.bhh-home__brand-blurb h3 {
	font-size: 22px;
	line-height: 1.2;
	font-weight: 600;
	color: var(--ab-ink);
	margin: 0 0 8px;
}

.bhh-home__brand-blurb p {
	font-size: 15px;
	line-height: 1.6;
	color: var(--ab-body);
	margin: 0 0 14px;
}

.bhh-home__brand-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 600;
	color: var(--ab-primary, #C8202F);
	border-bottom: 1.5px solid currentColor;
	padding-bottom: 1px;
	transition: color 0.18s;
}

.bhh-home__brand-link:hover { color: var(--ab-primary-active, #a31525); }
/* Beat `.bhh-home a { color: inherit }` (0,1,1) so the Explore links stay brand-red on home + about. */
.bhh-home__brand-blurb .bhh-home__brand-link { color: #C8202F; }
.bhh-home__brand-blurb .bhh-home__brand-link:hover { color: #a31525; }

@media (max-width: 1000px) {
	.bhh-home__about-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================================
   Section 3 — Twin-brand split (50/50 cards)
   ============================================================ */

.bhh-home__split {
	background: var(--ab-surface-soft);
}

.bhh-home__split-head {
	max-width: 720px;
	margin: 0 0 48px;
}

.bhh-home__split-title-h2 {
	font-size: clamp(32px, 3.4vw, 48px);
	line-height: 1.04;
	font-weight: 600;
	color: var(--ab-ink);
	margin: 0;
}

.bhh-home__split-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.bhh-home__split-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--ab-canvas);
	border-radius: var(--ab-radius-lg);
	border: 1px solid var(--ab-hairline-soft);
	overflow: hidden;
	transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.bhh-home__split-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.bhh-home__split-media {
	aspect-ratio: 16 / 11;
	background-size: cover;
	background-position: center;
	background-color: #0a3a4d;
	transition: background-size 600ms ease-out;
}

.bhh-home__split-card:hover .bhh-home__split-media {
	background-size: 110%;
}

.bhh-home__split-card--nivanta .bhh-home__split-media {
	box-shadow: inset 0 0 0 4px transparent;
	border-bottom: 4px solid var(--nv-navy);
}

.bhh-home__split-card--creaze .bhh-home__split-media {
	border-bottom: 4px solid var(--nv-lime);
}

.bhh-home__split-body {
	padding: 36px 32px 32px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.bhh-home__split-eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--nv-navy);
	margin: 0 0 12px;
}

.bhh-home__split-card--creaze .bhh-home__split-eyebrow {
	color: var(--cr-sky);
}

.bhh-home__split-logo {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	height: 56px;
	max-width: 200px;
	margin: 0 0 16px;
}

.bhh-home__split-logo img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
}

.bhh-home__split-title {
	font-size: clamp(22px, 2vw, 28px);
	line-height: 1.18;
	font-weight: 600;
	color: var(--ab-ink);
	margin: 0 0 12px;
}

.bhh-home__split-text {
	font-size: 15px;
	line-height: 1.65;
	color: var(--ab-body);
	margin: 0 0 20px;
}

.bhh-home__split-list {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
	display: grid;
	gap: 10px;
}

.bhh-home__split-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: var(--ab-body);
}

.bhh-home__split-tick {
	display: inline-flex;
	width: 22px;
	height: 22px;
	align-items: center;
	justify-content: center;
	background: var(--ab-primary);
	color: #fff;
	border-radius: var(--ab-radius-pill);
	flex-shrink: 0;
}

.bhh-home__split-cta {
	margin-top: auto;
	font-size: 15px;
	font-weight: 600;
	color: var(--ab-primary);
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border-bottom: 1.5px solid var(--ab-primary);
	padding-bottom: 2px;
	align-self: flex-start;
	transition: color 0.18s, border-color 0.18s;
}

.bhh-home__split-cta svg { flex-shrink: 0; }

.bhh-home__split-card:hover .bhh-home__split-cta {
	color: var(--ab-primary-active);
	border-color: var(--ab-primary-active);
}

@media (max-width: 900px) {
	.bhh-home__split-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Section 4 — Contact Us
   ============================================================ */

.bhh-home__contact {
	background: var(--ab-canvas);
	border-top: 1px solid var(--ab-hairline-soft);
	padding: 0;
}

.bhh-home__contact-head {
	text-align: center;
	padding: 80px 0 48px;
}

.bhh-home__contact-head .bhh-home__small-eyebrow {
	display: inline-block;
	margin: 0 0 12px;
}

/* Matches the "Things to do near Lonavala" heading (.bhh-explore__title). */
.bhh-home__contact-title {
	font-size: clamp(28px, 3.2vw, 40px);
	line-height: 1.08;
	font-weight: 600;
	letter-spacing: -0.01em;
	color: var(--ab-ink);
	margin: 0 0 16px;
}
.bhh-home__contact-title:empty { display: none; }
/* Hide the eyebrow pill when it has no text (contact eyebrow now empty). */
.bhh-home__small-eyebrow:empty { display: none; }

.bhh-home__contact-head .bhh-home__contact-intro {
	font-size: 17px;
	line-height: 1.7;
	color: var(--ab-body);
	max-width: 56ch;
	margin: 0 auto;
}

/* Full-bleed map banner w/ floating contact card overlay. */
.bhh-home__contact-banner {
	position: relative;
	width: 100%;
	min-height: 560px;
	overflow: hidden;
}

.bhh-home__contact-map {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
	filter: grayscale(0.1);
}

.bhh-home__contact-card {
	position: absolute;
	top: 50%;
	right: clamp(20px, 5vw, 80px);
	transform: translateY(-50%);
	width: min(420px, calc(100% - 40px));
	background: #fff;
	border-radius: 14px;
	padding: 36px;
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
	display: flex;
	flex-direction: column;
	gap: 4px;
	z-index: 2;
}

.bhh-home__contact-card-row {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	padding: 16px 0;
	border-bottom: 1px solid var(--ab-hairline-soft);
}
.bhh-home__contact-card-row:last-of-type { border-bottom: 0; }

.bhh-home__contact-card-icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	border-radius: 10px;
	background: var(--ab-surface-soft);
	color: var(--ab-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.bhh-home__contact-card-body { flex: 1; min-width: 0; }

.bhh-home__contact-card-label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ab-muted);
	margin: 0 0 6px;
}

.bhh-home__contact-card-text {
	font-style: normal;
	font-size: 14px;
	line-height: 1.55;
	color: var(--ab-body);
	margin: 0;
}
.bhh-home__contact-card-text strong { color: var(--ab-ink); font-weight: 700; }

.bhh-home__contact-card-link {
	font-family: inherit;
	font-size: 15px;
	font-weight: 600;
	color: var(--ab-primary);
	text-decoration: none;
	letter-spacing: 0.01em;
}
.bhh-home__contact-card-link:hover { text-decoration: underline; }

.bhh-home__contact-card-drive {
	list-style: none;
	margin: 14px 0 0;
	padding: 14px 0 0;
	border-top: 1px solid var(--ab-hairline-soft);
	display: grid;
	gap: 6px;
}
.bhh-home__contact-card-drive li {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	font-size: 13px;
}
.bhh-home__contact-card-drive span { color: var(--ab-muted); }
.bhh-home__contact-card-drive strong {
	font-size: 14px;
	font-weight: 700;
	color: var(--ab-ink);
}

@media (max-width: 860px) {
	.bhh-home__contact-banner { min-height: 720px; padding-bottom: 0; }
	.bhh-home__contact-card {
		position: relative;
		top: auto;
		right: auto;
		transform: none;
		margin: 0 auto;
		width: calc(100% - 32px);
		max-width: 480px;
	}
	.bhh-home__contact-map {
		position: relative;
		height: 360px;
	}
}

/* ============================================================
   Mobile responsive padding
   ============================================================ */

@media (max-width: 720px) {
	.bhh-home section { padding: 64px 0; }
	.bhh-home__hero-inner { padding: 120px 0 64px; }
	.bhh-home__brand-blurb { grid-template-columns: 1fr; padding: 24px; }
	.bhh-home__brand-logo { margin-bottom: 8px; }
}

/* Explore-around section — restored 1 Jul 2026 (styles were absent on server; markup uses .bhh-explore__*). */
.bhh-home__explore { padding: 72px 0; background: #fff; }
.bhh-home__explore .bhh-explore__title { font-size: clamp(28px, 3.2vw, 40px); line-height: 1.08; font-weight: 600; letter-spacing: -0.01em; color: var(--ab-ink); margin: 12px 0 26px; }
.bhh-home__explore .bhh-explore__list { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 13px; }
.bhh-home__explore .bhh-explore__item { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; line-height: 1.55; color: var(--ab-body); }
.bhh-home__explore .bhh-explore__item strong { color: var(--ab-ink); font-weight: 600; }
.bhh-home__explore .bhh-explore__icon { flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; color: #C8202F; margin-top: 3px; }
.bhh-home__explore .bhh-explore__icon svg { stroke: currentColor; }
.bhh-home__explore .bhh-explore__note { font-size: 15px; line-height: 1.6; color: var(--ab-muted); margin: 0; }

/* Mobile hero normalization -> match Rooms hero 09/07/2026 */
@media (max-width: 600px) {
	.bhh-home__hero { min-height: 686px !important; }
	.bhh-home__hero-inner { min-height: 686px !important; }
	.bhh-home__hero .bhh-home__hero-title { font-size: 34px !important; }
	.bhh-home__hero .bhh-home__hero-sub { font-size: 14px !important; }
	.bhh-home__hero .bhh-home__hero-eyebrow { font-size: 11px !important; }
}
/* Desktop hero -> match Rooms (757px / 64 / 14 / 11) 09/07/2026 */
@media (min-width: 601px) {
	.bhh-home__hero { min-height: 757px !important; }
	.bhh-home__hero-inner { min-height: 757px !important; }
	.bhh-home__hero .bhh-home__hero-title { font-size: 64px !important; }
	.bhh-home__hero .bhh-home__hero-sub { font-size: 14px !important; }
	.bhh-home__hero .bhh-home__hero-eyebrow { font-size: 11px !important; }
}
