/* Luxury Beauty Pro - Elementor widget styles
 * Palette: primary #D7C6A3 | secondary #2A2323 | bg #F7F3F4
 * Fonts:   Cormorant Garamond (headings + script accents via italic) | Poppins (body)
 * Loaded on the Elementor front end.
 */

/* ======================================================================
 * ENTRANCE ANIMATIONS
 * The hidden state only applies once JS adds .lbp-anim-ready (no FOUC if
 * JS is off) and only when the user hasn't requested reduced motion.
 * ==================================================================== */
@media (prefers-reduced-motion: no-preference) {
	.lbp-anim-ready .lbp-animate {
		opacity: 0;
		transform: translateY(28px);
		transition: opacity 0.7s ease, transform 0.7s ease;
		transition-delay: var(--lbp-delay, 0s);
		will-change: opacity, transform;
	}
	.lbp-anim-ready .lbp-animate.is-visible {
		opacity: 1;
		transform: none;
	}

	/* Hero: on page load each element rises up from the bottom, one by one.
	 * Pure CSS (render-blocking) so it plays immediately with no flash. */
	@keyframes lbpHeroRise {
		from { opacity: 0; transform: translateY(46px); }
		to   { opacity: 1; transform: none; }
	}
	.lbp-hero__subtitle,
	.lbp-hero__title,
	.lbp-hero__desc,
	.lbp-hero__button {
		opacity: 0;
		animation: lbpHeroRise 1s cubic-bezier(0.22, 1, 0.36, 1) both;
	}
	.lbp-hero__subtitle { animation-delay: 0.25s; }
	.lbp-hero__title    { animation-delay: 0.55s; }
	.lbp-hero__desc     { animation-delay: 0.9s; }
	.lbp-hero__button   { animation-delay: 1.25s; }
}

:root {
	--lbp-primary:  #D7C6A3;
	--lbp-secondary: #2A2323;
	--lbp-background: #F7F3F4;
	--lbp-white: #FFFFFF;
	--lbp-muted: #6b6160;
	--lbp-font-heading: "Cormorant Garamond", Georgia, serif;
	--lbp-font-body: "Poppins", -apple-system, sans-serif;
	--lbp-font-script: "Cormorant Garamond", Georgia, serif;
}

.lbp-container {
	max-width: 100%;
	margin-inline: auto;
	padding-inline: 40px;
	width: 100%;
}

/* Shared eyebrow label */
.lbp-services__eyebrow,
.lbp-about__eyebrow {
	margin: 0 0 0.75rem;
	font-family: var(--lbp-font-body);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--lbp-primary) !important;
}

/* Shared buttons -------------------------------------------------------- */
.lbp-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--lbp-font-body);
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 14px 34px;
	border-radius: 50px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.lbp-btn--primary {
	background-color: var(--lbp-primary) !important;
	color: var(--lbp-white);
}
.lbp-btn--primary:hover,
.lbp-btn--primary:focus {
	background-color: var(--lbp-secondary);
	color: var(--lbp-white);
}
.lbp-btn--light {
	background-color: var(--lbp-white);
	color: var(--lbp-secondary);
}
.lbp-btn--light:hover,
.lbp-btn--light:focus {
	background-color: var(--lbp-secondary);
	color: var(--lbp-white);
}

/* ======================================================================
 * HERO
 * ==================================================================== */
.lbp-hero {
	position: relative;
	display: flex;
	background-color: var(--lbp-background);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	overflow: hidden;
}
.lbp-hero__slides {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}
.lbp-hero__slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	opacity: 0;
	transition: opacity 1.4s ease-in-out;
}
.lbp-hero__slide.is-active {
	opacity: 1;
}
@media (prefers-reduced-motion: no-preference) {
	.lbp-hero__slides--kenburns .lbp-hero__slide.is-active {
		animation: lbpKenBurns 8s ease-out both;
	}
	@keyframes lbpKenBurns {
		from { transform: scale(1); }
		to   { transform: scale(1.12); }
	}
}
.lbp-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
}
.lbp-hero__inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	width: 100%;
}
.lbp-hero__subtitle {
	margin: 0 0 1rem;
	font-family: var(--lbp-font-body);
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--lbp-primary) !important;
}
.lbp-hero__title {
	margin: 0 0 1.5rem;
	font-family: var(--lbp-font-heading);
	font-size: clamp(2.25rem, 5vw, 3.5rem);
	font-weight: 500;
	line-height: 1.1;
}
.lbp-hero__desc {
	margin: 0 0 2rem;
	font-size: 1rem;
	line-height: 1.7;
	max-width: 38ch;
}
.lbp-hero__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--lbp-font-body);
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	border: 2px solid #d7c6a3 !important;
	cursor: pointer;
	transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.lbp-hero__button:hover {
	border-color: var(--lbp-primary) !important;
}

/* ======================================================================
 * SERVICES
 * ==================================================================== */
.lbp-services {
	padding: 90px 0;
	background-color: var(--lbp-white);
}
.lbp-services__head {
	text-align: center;
	margin-bottom: 48px;
}
.lbp-services__title {
	margin: 0;
	font-family: var(--lbp-font-heading);
	font-size: clamp(1.9rem, 3.5vw, 2.6rem);
	font-weight: 500;
	color: var(--lbp-secondary);
}
.lbp-services__subtitle {
	max-width: 560px;
	margin: 14px auto 0;
	color: var(--lbp-muted);
	font-size: 0.95rem;
	line-height: 1.7;
}
.lbp-services__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.lbp-card {
	position: relative;
	display: block;
	height: 540px;
	border-radius: 8px;
	overflow: hidden;
	color: var(--lbp-white);
	background-color: var(--lbp-secondary);
	text-decoration: none;
	box-shadow: 0 14px 40px rgba(42, 35, 35, 0.1);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.lbp-card__media {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	background-color: var(--lbp-background);
}
.lbp-card__img {
	display: block;
	width: 100%;
	height: 100% !important;
	object-fit: cover;
	object-position: center center;
	transition: transform 0.6s ease;
}
.lbp-card__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(to top, rgba(42, 35, 35, 0.88) 0%, rgba(42, 35, 35, 0.35) 35%, rgba(42, 35, 35, 0) 60%);
}
.lbp-card__body {
	position: absolute;
	z-index: 2;
	inset-inline: 0;
	bottom: 0;
	padding: 24px;
	transition: transform 0.4s ease;
}
/* Hover effects: lift the card, zoom the image, raise the caption. */
.lbp-card:hover,
.lbp-card:focus-visible {
	transform: translateY(-6px);
	box-shadow: 0 26px 60px rgba(42, 35, 35, 0.22);
}
.lbp-card:hover .lbp-card__img,
.lbp-card:focus-visible .lbp-card__img {
	transform: scale(1.12);
}
.lbp-card:hover .lbp-card__body,
.lbp-card:focus-visible .lbp-card__body {
	transform: translateY(-6px);
}
.lbp-card__title {
	margin: 0 0 0.5rem;
	font-family: var(--lbp-font-heading);
	font-size: 1.4rem;
	font-weight: 500;
	color: var(--lbp-white);
}
.lbp-card__desc {
	margin: 0;
	font-size: 0.82rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
}
.lbp-card__btn {
	display: inline-block;
	margin-top: 16px;
	font-family: var(--lbp-font-body);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--lbp-primary) !important;
	text-decoration: none;
	transition: color 0.2s ease, letter-spacing 0.2s ease;
}
.lbp-card__btn:hover,
.lbp-card__btn:focus {
	color: #c63d83;
	letter-spacing: 0.18em;
}
.lbp-services__foot {
	text-align: center;
	margin-top: 40px;
}
.lbp-services__viewall {
	font-family: var(--lbp-font-body);
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--lbp-primary) !important;
	text-decoration: none;
}
.lbp-services__viewall:hover {
	color: var(--lbp-secondary);
}

/* ======================================================================
 * ABOUT
 * ==================================================================== */
.lbp-about {
	padding: 0px 0px 100px 0px;
	background-color: #FFFFF0;
}
.lbp-about__inner {
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 64px;
	align-items: center;
}
.lbp-about--img-right .lbp-about__inner {
	grid-template-columns: 1fr 320px;
}
.lbp-about--img-right .lbp-about__media {
	order: 2;
}
.lbp-about__media {
	position: relative;
	border: 3px solid var(--lbp-primary) !important;
	border-radius: 18px;
	padding: 10px;
	background: var(--lbp-white);
	max-width: 320px;
	/* Elegant double frame: a soft gap ring, a light-pink outer ring, and a gentle drop shadow. */
	box-shadow: 0 0 0 5px var(--lbp-background), 0 0 0 7px rgb(0 0 0 / 35%), 0 22px 45px rgb(0 0 0 / 14%);
}
.lbp-about__media img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 11px;
}
.lbp-about__title {
	margin: 0 0 1.5rem;
	font-family: var(--lbp-font-heading);
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	font-weight: 500;
	color: var(--lbp-secondary);
}
.lbp-about__text {
	color: var(--lbp-muted);
	font-size: 0.95rem;
	line-height: 1.8;
}
.lbp-about__text p {
	margin: 0 0 1.25rem;
}
.lbp-about__button {
	margin-top: 1rem;
}

/* ======================================================================
 * PHILOSOPHY
 * ==================================================================== */
.lbp-philosophy {
	padding: 90px 0;
	background-color: #FFFFF0;
}
.lbp-philosophy__head {
	text-align: center;
	margin-bottom: 48px;
}
.lbp-philosophy__eyebrow {
	margin: 0 0 0.75rem;
	font-family: var(--lbp-font-body);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--lbp-primary) !important;
}
.lbp-philosophy__title {
	margin: 0;
	font-family: var(--lbp-font-heading);
	font-size: clamp(1.9rem, 3.5vw, 2.6rem);
	font-weight: 500;
	color: var(--lbp-secondary);
}
.lbp-philosophy__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.lbp-philo-card {
	text-align: center;
	padding: 44px 32px;
	border-radius: 16px;
	background-color: #FCECF3;
	border: 1px solid #D7C6A3;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lbp-philo-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px #d7c6a3e8;
}
.lbp-philo-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin-bottom: 22px;
	border-radius: 50%;
	background-color: #F8D7E6;
	color: var(--lbp-primary) !important;
	font-size: 1.25rem;
}
.lbp-philo-card__icon svg {
	width: 1.25rem;
	height: 1.25rem;
	fill: currentColor;
}
.lbp-philo-card__title {
	margin: 0 0 0.75rem;
	font-family: var(--lbp-font-heading);
	font-size: 1.3rem;
	font-weight: 500;
	color: var(--lbp-secondary);
}
.lbp-philo-card__desc {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.7;
	color: var(--lbp-muted);
}

/* ======================================================================
 * CTA BANNER
 * ==================================================================== */
.lbp-cta-wrap {
	padding: 40px 0;
	background-color: #fff;
}
.lbp-cta {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	background-color: var(--lbp-primary) !important;
	background-size: cover;
	background-position: center center;
	text-align: center;
}
.lbp-cta__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
}
.lbp-cta__inner {
	position: relative;
	z-index: 2;
	max-width: 640px;
	margin-inline: auto;
	color: var(--lbp-white);
}
.lbp-cta__subtitle {
	margin: 0 0 0.5rem;
	font-family: var(--lbp-font-script);
	font-style: italic;
	font-size: 1.5rem;
	font-weight: 500;
}
.lbp-cta__title {
	margin: 0 0 1rem;
	font-family: var(--lbp-font-heading);
	font-size: clamp(1.9rem, 3.5vw, 2.8rem);
	font-weight: 500;
}
.lbp-cta__desc {
	margin: 0 0 2rem;
	font-size: 0.95rem;
	line-height: 1.7;
	opacity: 0.95;
}

/* ======================================================================
 * HEADER
 * ==================================================================== */
.lbp-header {
	background-color: var(--lbp-white);
	border-bottom: 1px solid rgba(42, 35, 35, 0.06);
}
/* Transparent overlay header: sits on top of the full-height hero. */
.lbp-header--overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99;
}
.lbp-header--overlay .lbp-header {
	background-color: transparent;
	border-bottom-color: transparent;
}
/* Sticky wins if both modes are enabled. */
.lbp-header--is-sticky {
	position: sticky;
	top: 0;
	z-index: 999;
}
.lbp-header__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.lbp-header__logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
}
.lbp-header__logo img {
	max-height: 48px;
	width: auto;
}
.lbp-header__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 2px solid var(--lbp-primary) !important;
	border-radius: 50%;
	font-family: var(--lbp-font-heading);
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--lbp-primary) !important;
}
.lbp-header__name {
	font-family: var(--lbp-font-script);
	font-style: italic;
	font-size: 1.3rem;
	color: var(--lbp-secondary);
}
.lbp-header__menu {
	flex: 1 1 auto;
}
.lbp-header__menu .lbp-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.lbp-header__brand,
.lbp-header__actions {
	flex: 0 0 auto;
}

/* Hamburger toggle (hidden on desktop, shown on mobile). */
.lbp-header__toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 42px;
	height: 42px;
	padding: 0;
	margin-left: 8px;
	background: transparent;
	border: 0;
	cursor: pointer;
}
.lbp-header__toggle-bar {
	display: block;
	width: 24px;
	height: 2px;
	margin-inline: auto;
	background-color: var(--lbp-secondary);
	transition: transform 0.25s ease, opacity 0.25s ease;
}
.lbp-header__toggle.is-active .lbp-header__toggle-bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.lbp-header__toggle.is-active .lbp-header__toggle-bar:nth-child(2) {
	opacity: 0;
}
.lbp-header__toggle.is-active .lbp-header__toggle-bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}
.lbp-header__menu a {
	font-family: var(--lbp-font-body);
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--lbp-secondary);
	text-decoration: none;
	transition: color 0.2s ease;
}
.lbp-header__menu a:hover {
	color: var(--lbp-primary) !important;
}
.lbp-header__actions {
	display: flex;
	align-items: center;
	gap: 18px;
}
.lbp-header__cta {
	padding: 11px 26px;
	font-size: 0.72rem;
}
.lbp-header__signin {
	font-family: var(--lbp-font-body);
	font-size: 0.78rem;
	color: var(--lbp-muted);
	text-decoration: none;
}
.lbp-header__signin:hover {
	color: var(--lbp-primary) !important;
}

/* ======================================================================
 * GALLERY
 * ==================================================================== */
.lbp-gallery {
	padding: 70px 0 90px;
	background-color: #fff;
}
.lbp-gallery__head {
	text-align: center;
	margin-bottom: 40px;
}
.lbp-gallery__eyebrow {
	margin: 0 0 0.5rem;
	font-family: var(--lbp-font-body);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--lbp-primary) !important;
}
.lbp-gallery__title {
	margin: 0;
	font-family: var(--lbp-font-heading);
	font-size: clamp(1.7rem, 3vw, 2.4rem);
	font-weight: 500;
	color: var(--lbp-secondary);
}
.lbp-gallery__grid {
	column-count: 3;
	column-gap: 16px;
}
.lbp-gallery__item {
	position: relative;
	display: block;
	break-inside: avoid;
	margin-bottom: 16px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(42, 35, 35, 0.08);
	text-decoration: none;
}
.lbp-gallery__img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 8px;
	transition: transform 0.5s ease;
}
.lbp-gallery__item::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(232, 79, 158, 0);
	transition: background 0.3s ease;
}
.lbp-gallery__item:hover .lbp-gallery__img {
	transform: scale(1.05);
}
.lbp-gallery__item:hover::after {
	background: rgba(232, 79, 158, 0.12);
}
.lbp-gallery__num {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: rgba(42, 35, 35, 0.7);
	color: #fff;
	font-family: var(--lbp-font-body);
	font-size: 0.7rem;
	font-weight: 600;
}
.lbp-gallery__empty {
	text-align: center;
	color: var(--lbp-muted);
}
@media (max-width: 1024px) {
	.lbp-gallery__grid { column-count: 2; }
}
@media (max-width: 600px) {
	.lbp-gallery__grid { column-count: 1; }
}

/* ======================================================================
 * CONTACT
 * ==================================================================== */
.lbp-contact {
	padding: 80px 0;
	background-color: #D7C6A3;
}
.lbp-contact__head {
	text-align: center;
	margin-bottom: 48px;
}
.lbp-contact__eyebrow {
	margin: 0 0 0.75rem;
	font-family: var(--lbp-font-body);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--lbp-primary) !important;
}
.lbp-contact__title {
	margin: 0 0 1rem;
	font-family: var(--lbp-font-heading);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 500;
	color: var(--lbp-secondary);
}
.lbp-contact__subtitle {
	max-width: 640px;
	margin: 0 auto;
	color: var(--lbp-muted);
	font-size: 0.98rem;
	line-height: 1.7;
}
.lbp-contact__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: start;
}

/* Form */
.lbp-form__row {
	margin: 0 0 20px;
}
.lbp-form label {
	display: block;
	margin-bottom: 8px;
	font-size: 0.9rem;
	color: var(--lbp-secondary);
}
.lbp-form input,
.lbp-form textarea {
	width: 100%;
	padding: 14px 18px;
	font-family: var(--lbp-font-body);
	font-size: 0.95rem;
	color: var(--lbp-secondary);
	background-color: #FCE9F1;
	border: 1px solid rgba(232, 79, 158, 0.18);
	border-radius: 10px;
	box-sizing: border-box;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.lbp-form input::placeholder,
.lbp-form textarea::placeholder {
	color: rgba(42, 35, 35, 0.45);
}
.lbp-form input:focus,
.lbp-form textarea:focus {
	outline: none;
	border-color: var(--lbp-primary) !important;
	box-shadow: 0 0 0 3px rgba(232, 79, 158, 0.12);
}
.lbp-form textarea {
	resize: vertical;
	min-height: 120px;
}
.lbp-form__submit {
	width: 100%;
	justify-content: center;
	margin-top: 6px;
	border: 0;
	background: #FFFFF0 !important;
	color:#2A2323 !important;
}
.lbp-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
.lbp-form__notice {
	margin: 0 0 20px;
	padding: 14px 18px;
	border-radius: 10px;
	font-size: 0.92rem;
}
.lbp-form__notice--success {
	background-color: #e8f6ec;
	color: #1f7a3d;
}
.lbp-form__notice--error {
	background-color: #fdecec;
	color: #b3261e;
}

/* Info card */
.lbp-contact__info {
	background-color: #FCE9F1;
	border: 1px solid rgba(232, 79, 158, 0.16);
	border-radius: 16px;
	padding: 32px;
	margin-bottom: 24px;
}
.lbp-contact__info-row {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	margin-bottom: 22px;
}
.lbp-contact__info-row:last-child {
	margin-bottom: 0;
}
.lbp-contact__info-icon {
	flex: 0 0 auto;
	color: var(--lbp-primary) !important;
	font-size: 1.05rem;
	margin-top: 2px;
}
.lbp-contact__info-label {
	display: block;
	font-family: var(--lbp-font-heading);
	font-size: 0.95rem;
	color: var(--lbp-secondary);
	margin-bottom: 2px;
}
.lbp-contact__info-value,
.lbp-contact__info a {
	font-size: 0.92rem;
	color: #d7c6a3 !important;
	text-decoration: none;
}
.lbp-contact__info a:hover {
	color: var(--lbp-primary) !important;
}

/* Map */
.lbp-contact__map {
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid rgba(232, 79, 158, 0.16);
	line-height: 0;
}
.lbp-contact__map iframe {
	display: block;
	width: 100%;
	height: 260px;
	border: 0;
}

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

/* ======================================================================
 * BOOKING
 * ==================================================================== */
.lbp-booking {
	padding: 80px 0;
	background-color: #fff;
}
.lbp-booking__head {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 48px;
}
.lbp-booking__eyebrow {
	margin: 0 0 0.75rem;
	font-family: var(--lbp-font-body);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--lbp-primary) !important;
}
.lbp-booking__title {
	margin: 0 0 1rem;
	font-family: var(--lbp-font-heading);
	font-size: clamp(2.2rem, 5vw, 3.4rem);
	font-weight: 500;
	color: var(--lbp-secondary);
}
.lbp-booking__subtitle {
	margin: 0 0 0.75rem;
	color: var(--lbp-muted);
	font-size: 0.98rem;
	line-height: 1.7;
}
.lbp-booking__note {
	margin: 0;
	color: var(--lbp-muted);
	font-size: 0.9rem;
}
.lbp-booking__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
}
.lbp-booking__col-title {
	margin: 0 0 18px;
	font-family: var(--lbp-font-body);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--lbp-muted);
}
.lbp-field {
	margin-bottom: 22px;
}
.lbp-field__label {
	display: block;
	margin-bottom: 8px;
	font-size: 0.9rem;
	color: var(--lbp-secondary);
}
.lbp-field__label i {
	color: var(--lbp-primary) !important;
	margin-right: 4px;
}
.lbp-booking-form input,
.lbp-booking-form select,
.lbp-booking-form textarea {
	width: 100%;
	padding: 14px 18px;
	font-family: var(--lbp-font-body);
	font-size: 0.95rem;
	color: var(--lbp-secondary);
	background-color: #FCE9F1;
	border: 1px solid rgba(232, 79, 158, 0.18);
	border-radius: 10px;
	box-sizing: border-box;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.lbp-booking-form input:focus,
.lbp-booking-form select:focus,
.lbp-booking-form textarea:focus {
	outline: none;
	border-color: var(--lbp-primary) !important;
	box-shadow: 0 0 0 3px rgba(232, 79, 158, 0.12);
}
.lbp-booking-form textarea {
	resize: vertical;
	min-height: 110px;
}
.lbp-booking__submit {
	width: 100%;
	justify-content: center;
	border: 0;
	margin-top: 6px;
}

/* Calendar */
.lbp-cal {
	background-color: #FCE9F1;
	border: 1px solid rgba(232, 79, 158, 0.18);
	border-radius: 12px;
	padding: 18px;
}
.lbp-cal__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}
.lbp-cal__label {
	font-family: var(--lbp-font-heading);
	font-size: 1.05rem;
	color: var(--lbp-secondary);
}
.lbp-cal__nav {
	width: 32px;
	height: 32px;
	border: 0;
	background: transparent;
	border-radius: 50%;
	font-size: 1.2rem;
	line-height: 1;
	color: var(--lbp-secondary);
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}
.lbp-cal__nav:hover:not(:disabled) {
	background-color: rgba(232, 79, 158, 0.12);
	color: var(--lbp-primary) !important;
}
.lbp-cal__nav:disabled {
	opacity: 0.3;
	cursor: default;
}
.lbp-cal__dow,
.lbp-cal__grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 4px;
}
.lbp-cal__dow {
	margin-bottom: 6px;
}
.lbp-cal__dow span {
	text-align: center;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: var(--lbp-muted);
	padding: 4px 0;
}
.lbp-cal__day {
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0;
	background: transparent;
	border-radius: 50%;
	font-size: 0.85rem;
	color: var(--lbp-secondary);
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}
.lbp-cal__day:hover:not(.is-disabled) {
	background-color: rgba(232, 79, 158, 0.16);
}
.lbp-cal__day.is-selected {
	background-color: var(--lbp-primary) !important;
	color: #fff;
}
.lbp-cal__day.is-disabled {
	color: rgba(42, 35, 35, 0.28);
	cursor: default;
}

@media (max-width: 900px) {
	.lbp-booking__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

/* ======================================================================
 * FOOTER
 * ==================================================================== */
.lbp-footer {
	background-color: #ffffff !important;
	color: var(--lbp-muted);
	padding: 70px 0 30px;
	font-size: 0.9rem;
}
.lbp-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1.2fr;
	gap: 48px;
}
.lbp-footer__logo {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
}
.lbp-footer__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 2px solid var(--lbp-primary) !important;
	border-radius: 50%;
	font-family: var(--lbp-font-heading);
	font-weight: 600;
	color: var(--lbp-primary) !important;
}
.lbp-footer__name {
	font-family: var(--lbp-font-script);
	font-style: italic;
	font-size: 1.2rem;
	color: var(--lbp-secondary);
}
.lbp-footer__tagline {
	margin: 0 0 18px;
	max-width: 30ch;
	line-height: 1.7;
}
.lbp-footer__social {
	display: flex;
	gap: 14px;
}
.lbp-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	color: var(--lbp-primary) !important;
	font-size: 1rem;
	text-decoration: none;
}
.lbp-footer__col h4 {
	margin: 0 0 18px;
	font-family: var(--lbp-font-heading);
	font-size: 1.05rem;
	font-weight: 500;
	color: var(--lbp-secondary);
}
.lbp-footer__links,
.lbp-footer__contact {
	list-style: none;
	margin: 0;
	padding: 0;
}
.lbp-footer__links li,
.lbp-footer__contact li {
	margin-bottom: 10px;
}
.lbp-footer__contact li {
	display: flex;
	align-items: center;
	gap: 8px;
}
.lbp-footer a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}
.lbp-footer a:hover {
	color: var(--lbp-primary) !important;
}
.lbp-footer__hours-title {
	margin-top: 22px;
}
.lbp-footer__hours-text {
	margin: 0;
	color: var(--lbp-primary) !important;
}
.lbp-footer__bar {
	margin-top: 48px;
	padding-top: 24px;
	border-top: 1px solid rgba(42, 35, 35, 0.1);
	text-align: center;
	font-size: 0.82rem;
}
.lbp-footer__bar p {
	margin: 0;
}

/* ======================================================================
 * RESPONSIVE
 * ==================================================================== */
@media (max-width: 1024px) {
	.lbp-services__grid { grid-template-columns: repeat(2, 1fr); }
	.lbp-about__inner,
	.lbp-about--img-right .lbp-about__inner { grid-template-columns: 1fr; gap: 32px; }
	.lbp-about__media { margin-inline: auto; }
	.lbp-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 767px) {
	.lbp-services,
	.lbp-about { padding: 60px 0; }
	.lbp-services__grid { grid-template-columns: 1fr; }
	.lbp-footer__grid { grid-template-columns: 1fr; }
	.lbp-hero__desc { max-width: none; }

	/* Mobile navigation: hamburger reveals a collapsible drawer. */
	.lbp-header__bar { flex-wrap: wrap; }
	.lbp-header__brand { order: 1; }
	.lbp-header__actions { order: 2; }
	.lbp-header__toggle { display: flex; order: 3; }
	.lbp-header__menu {
		flex: 1 0 100%;
		order: 4;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
	}
	.lbp-header__menu.is-open {
		max-height: 70vh;
	}
	.lbp-header__menu .lbp-menu {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding-block: 8px;
	}
	.lbp-header__menu .lbp-menu li {
		border-top: 1px solid rgba(42, 35, 35, 0.08);
	}
	.lbp-header__menu .lbp-menu a {
		display: block;
		padding: 14px 4px;
	}
	.lbp-header__signin { display: none; }
}
