:root {
	--brand: #8a5a3b;
	--brand-dark: #6d442b;
	--gold: #c9a96a;
	--ink: #2f2a26;
	--muted: #6e665e;
	--cream: #faf7f2;
	--line: #e7dfd3;
	--gradient-brand: linear-gradient(135deg, #c08a52 0%, #8a5a3b 55%, #5f452c 100%);
	--gradient-brand-hover: linear-gradient(135deg, #d09a5c 0%, #96603e 55%, #5f452c 100%);
	--gradient-gold: linear-gradient(135deg, #f7ead0 0%, #dcbd84 100%);
	--bs-body-font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--bs-body-color: var(--ink);
	--bs-heading-color: var(--ink);
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--bs-body-font-family);
	color: var(--ink);
	background: #fff;
	padding-top: 74px;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Playfair Display", serif;
	font-weight: 700;
}

section[id] {
	scroll-margin-top: 86px;
}

/* ---- Navbar ---- */
.main-nav {
	background: #fff;
	border-bottom: 1px solid var(--line);
	box-shadow: 0 1px 8px rgba(0, 0, 0, .05);
}

.main-nav .navbar-brand {
	display: flex;
	align-items: center;
	gap: .6rem;
}

.brand-mark {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--brand);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	flex: 0 0 auto;
}

.brand-name {
	font-family: "Playfair Display", serif;
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--ink);
	line-height: 1.1;
}

.brand-sub {
	font-size: .72rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--muted);
}

.main-nav .nav-link {
	color: var(--ink);
	font-weight: 500;
	margin-inline: .25rem;
}

.main-nav .nav-link:hover {
	color: var(--brand);
}

.main-nav .navbar-toggler:focus {
	box-shadow: none;
}

/* ---- Buttons ---- */
.btn-primary {
	--bs-btn-bg: var(--brand);
	--bs-btn-border-color: var(--brand);
	--bs-btn-color: #fff;
	--bs-btn-hover-bg: var(--brand-dark);
	--bs-btn-hover-border-color: var(--brand-dark);
	--bs-btn-hover-color: #fff;
	--bs-btn-active-bg: var(--brand-dark);
	--bs-btn-active-border-color: var(--brand-dark);
	--bs-btn-active-color: #fff;
	--bs-btn-disabled-bg: var(--brand);
	--bs-btn-disabled-border-color: var(--brand);
	background-image: var(--gradient-brand);
	background-color: var(--brand);
	border: none;
	box-shadow: 0 6px 16px rgba(0, 0, 0, .22);
	transition: transform .15s ease, box-shadow .15s ease, background-image .15s ease;
}

.btn-primary:hover,
.btn-primary:focus {
	background-image: var(--gradient-brand-hover);
	box-shadow: 0 9px 22px rgba(0, 0, 0, .3);
	transform: translateY(-1px);
}

.btn-primary:active {
	background-image: linear-gradient(135deg, #6d442b 0%, #8a5a3b 100%);
	transform: translateY(0);
}

.btn-primary:disabled {
	background-image: var(--gradient-brand);
}

.btn-outline-primary {
	--bs-btn-color: var(--brand);
	--bs-btn-border-color: var(--brand);
	--bs-btn-hover-bg: var(--brand);
	--bs-btn-hover-border-color: var(--brand);
	--bs-btn-hover-color: #fff;
	--bs-btn-active-bg: var(--brand-dark);
	--bs-btn-active-border-color: var(--brand-dark);
	--bs-btn-active-color: #fff;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
	background-image: var(--gradient-brand);
	border-color: transparent;
	color: #fff;
	box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
}

.btn-call-nav {
	border-radius: 2rem;
	padding: .5rem 1.25rem;
	font-weight: 600;
}

/* ---- Hero ---- */
.hero {
	position: relative;
	min-height: 78vh;
	display: flex;
	align-items: center;
	color: #fff;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}

.hero-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 95% 78% at 50% 48%, rgba(0, 0, 0, .6) 0%, rgba(0, 0, 0, .34) 62%, rgba(0, 0, 0, .3) 100%),
		linear-gradient(180deg, rgba(0, 0, 0, .25) 0%, rgba(0, 0, 0, .55) 100%);
}

.hero-content {
	position: relative;
	z-index: 2;
	padding: 4.5rem 0;
}

.hero-eyebrow {
	letter-spacing: .22em;
	text-transform: uppercase;
	font-size: .85rem;
	color: #f0dcb6;
	font-weight: 600;
	text-shadow: 0 1px 4px rgba(0, 0, 0, .7);
}

.hero-title {
	font-size: clamp(2.4rem, 6vw, 4.2rem);
	margin: .6rem 0 1rem;
	background: linear-gradient(180deg, #ffffff 0%, #f7ead0 55%, #dcbd84 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	filter: drop-shadow(0 4px 14px rgba(0, 0, 0, .65));
}

.hero-sub {
	font-size: 1.1rem;
	max-width: 640px;
	margin: 0 auto 2rem;
	color: rgba(255, 255, 255, .95);
	text-shadow: 0 1px 4px rgba(0, 0, 0, .6);
}

.hero .btn-light {
	background: var(--gradient-gold);
	color: #5f452c;
	border: none;
	font-weight: 600;
	box-shadow: 0 6px 18px rgba(0, 0, 0, .3);
	transition: transform .15s ease, box-shadow .15s ease, background-image .15s ease;
}

.hero .btn-light:hover {
	background: linear-gradient(135deg, #ffeccb 0%, #e6c489 100%);
	color: #4a3625;
	transform: translateY(-1px);
	box-shadow: 0 9px 22px rgba(0, 0, 0, .38);
}

.hero .btn-outline-light {
	font-weight: 600;
	box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
}

.hero .btn-outline-light:hover {
	color: #fff;
	background: rgba(255, 255, 255, .16);
	border-color: #fff;
	box-shadow: 0 6px 16px rgba(0, 0, 0, .3);
}

/* ---- Info strip ---- */
.info-strip {
	background: var(--cream);
	border-bottom: 1px solid var(--line);
	padding: 1rem 0;
	font-size: .95rem;
}

.info-strip .bi {
	color: var(--brand);
}

/* ---- Sections ---- */
.section {
	padding: 4.5rem 0;
}

.section-title {
	text-align: center;
	font-size: clamp(1.8rem, 4vw, 2.5rem);
	margin-bottom: .5rem;
	color: var(--ink);
	background: linear-gradient(135deg, #6d442b 0%, #8a5a3b 60%, #a5784f 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.section-title::after {
	content: "";
	display: block;
	width: 64px;
	height: 4px;
	border-radius: 2px;
	background: linear-gradient(90deg, #b98a5a, #e0bd7c, #b98a5a);
	margin: .8rem auto 0;
}

.section-title.text-start::after {
	margin-left: 0;
}

.section-sub {
	text-align: center;
	color: var(--muted);
	max-width: 640px;
	margin: 1rem auto 2.5rem;
}

/* ---- Services ---- */
.service-card {
	border: none;
	box-shadow: 0 1px 3px rgba(0, 0, 0, .08);
	border-radius: .75rem;
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease;
}

.service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 28px rgba(0, 0, 0, .1);
}

.service-img {
	height: 220px;
	object-fit: cover;
}

.service-card .card-title {
	font-size: 1.35rem;
	margin-bottom: .6rem;
}

.service-excerpt {
	color: var(--muted);
	font-size: .95rem;
}

.service-excerpt p:last-child {
	margin-bottom: 0;
}

/* Treatment lists (estética) */
.treatment-title {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: .35rem;
	color: var(--brand);
}

.treatment-items {
	margin: 0;
	padding-left: 1.1rem;
	color: var(--muted);
	font-size: .92rem;
}

.treatment-items li {
	margin-bottom: .2rem;
}

/* ---- Social / Instagram ---- */
.social {
	background: var(--cream);
}

.instagram-item {
	display: block;
	border-radius: .5rem;
	overflow: hidden;
	box-shadow: 0 1px 4px rgba(0, 0, 0, .12);
}

.instagram-item img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
	transition: transform .3s ease;
}

.instagram-item:hover img {
	transform: scale(1.05);
}

/* ---- About ---- */
.about-text {
	color: var(--muted);
}

.about-text strong {
	color: var(--ink);
}

.map-wrap {
	border-radius: .75rem;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .12);
}

.map-wrap iframe {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 340px;
	border: 0;
}

.contact-map {
	height: 250px;
}

/* ---- Contact ---- */
.contact {
	background: var(--cream);
}

.contact-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.contact-list li {
	display: flex;
	gap: .9rem;
	align-items: flex-start;
	padding: .65rem 0;
	border-bottom: 1px solid var(--line);
}

.contact-list li .bi {
	color: var(--brand);
	font-size: 1.25rem;
	margin-top: .2rem;
}

.contact-list li strong {
	display: block;
	font-size: .78rem;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--muted);
	margin-bottom: .1rem;
}

.contact-list a {
	text-decoration: none;
	color: var(--ink);
	display: flex;
	gap: .9rem;
}

.contact-list a:hover span {
	color: var(--brand);
}

.contact-form .form-control {
	border-color: var(--line);
	padding: .65rem .9rem;
}

.contact-form .form-control:focus {
	border-color: var(--brand);
	box-shadow: 0 0 0 .2rem rgba(138, 90, 59, .15);
}

.form-check-input:checked {
	background-color: var(--brand);
	border-color: var(--brand);
}

.form-check-input:focus {
	border-color: var(--brand);
	box-shadow: 0 0 0 .2rem rgba(138, 90, 59, .15);
}

/* ---- Footer ---- */
.footer {
	background: #2b2622;
	color: #8f867c;
	padding: 1.5rem 0;
	font-size: .9rem;
}

.footer a {
	color: #c9c2ba;
	text-decoration: none;
}

.footer a:hover {
	color: #fff;
}

.social-text-link {
	color: var(--brand);
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
}

.social-text-link:hover {
	color: var(--brand-dark);
	text-decoration: underline;
}

/* ---- Floating call button ---- */
.btn-call-float {
	position: fixed;
	right: 1rem;
	bottom: 1rem;
	z-index: 1030;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-image: var(--gradient-brand);
	background-color: var(--brand);
	color: #fff;
	font-size: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 20px rgba(0, 0, 0, .35);
	text-decoration: none;
	transition: transform .15s ease, background-image .15s ease, box-shadow .15s ease;
}

.btn-call-float:hover {
	background-image: var(--gradient-brand-hover);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, .42);
}

/* ---- Instagram banner ---- */
.instagram-banner {
	background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
	padding: 3rem 0;
	color: #fff;
}

.instagram-banner .banner-icon {
	font-size: 3.2rem;
	color: #fff;
	flex: 0 0 auto;
}

.instagram-banner .banner-title {
	color: #fff;
	font-size: clamp(1.5rem, 3.5vw, 2.1rem);
	margin: 0;
}

.instagram-banner .banner-sub {
	color: rgba(255, 255, 255, .92);
	margin: 0;
}

.instagram-banner .banner-cta {
	border-radius: 2rem;
	font-weight: 600;
	color: #1c1c1c;
	white-space: nowrap;
}

.instagram-banner .banner-cta:hover {
	background: #fff;
	color: var(--brand-dark);
}

/* ---- Renovación (Sobre nosotros) ---- */
.renovation {
	background: #fff;
	border: 1px solid var(--line);
	border-left: 4px solid var(--gold);
	border-radius: .75rem;
	padding: 1.75rem;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}

.renovation-title {
	font-family: "Playfair Display", serif;
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--brand);
	margin-bottom: .75rem;
}

.renovation p {
	color: var(--muted);
	margin-bottom: .75rem;
}

.renovation p:last-child {
	margin-bottom: 0;
}

.renovation ul {
	margin: 0 0 .75rem;
	padding-left: 1.2rem;
	color: var(--muted);
}

.renovation li {
	margin-bottom: .35rem;
}

@media (max-width: 991.98px) {
	body {
		padding-top: 60px;
	}

	.brand-sub {
		display: none;
	}

	.hero {
		min-height: 70vh;
	}

	.instagram-banner {
		padding: 2.5rem 0;
	}
}
