/* ============================================================
   SBDWM — Soo Bahk Do Moo Duk Kwan · Do Jang Walker Martínez
   ============================================================ */

/* ====== Custom Properties ====== */
:root {
	/* Korean-inspired light palette */
	--sbdwm-ink: #1A1A2E;              /* Deep indigo — 남색 namsaek */
	--sbdwm-ink-soft: #2D2D44;
	--sbdwm-navy: #1A1A2E;
	--sbdwm-blue: #2B4570;             /* Traditional blue — 남색 */
	--sbdwm-blue-light: #3D6B9E;
	--sbdwm-red: #ff3c00;              /* Korean red — 홍색 hongsaek */
	--sbdwm-red-dark: #A00D24;
	--sbdwm-red-glow: rgba(200, 16, 46, 0.08);
	--sbdwm-celadon: #6B9E7A;          /* Celadon green — 청자색 */
	--sbdwm-celadon-soft: rgba(107, 158, 122, 0.1);
	--sbdwm-gold: #B8860B;             /* Gold — 금색 geumsaek */
	--sbdwm-gold-soft: rgba(184, 134, 11, 0.1);
	--sbdwm-white: #FAFAF8;            /* Hanji paper white */
	--sbdwm-cream: #F3F1EC;            /* Warm hanji cream */
	--sbdwm-sand: #EAE6DD;             /* Warm sand */
	--sbdwm-warm-gray: #E8E4DC;
	--sbdwm-dark: #1A1A2E;
	--sbdwm-gray-900: #1A1D23;
	--sbdwm-gray-700: #4A4A5A;
	--sbdwm-gray-500: #7A7A8A;
	--sbdwm-gray-300: #C8C4BC;
	--sbdwm-gray-100: #F0EDE7;

	/* Typography — Cormorant Garamond (display) + Plus Jakarta Sans (body) */
	--font-display: 'Cormorant Garamond', 'Georgia', serif;
	--font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	--font-mono: 'JetBrains Mono', monospace;

	/* Spacing */
	--section-py: clamp(4.5rem, 9vw, 8rem);
	--container-px: clamp(1.25rem, 4vw, 2rem);

	/* Transitions */
	--ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
	--ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
	--transition-base: 0.35s var(--ease-out-expo);
	--transition-slow: 0.6s var(--ease-out-expo);

	/* Shadows — warm-toned for light theme */
	--shadow-sm: 0 1px 3px rgba(26, 26, 46, 0.04);
	--shadow-md: 0 4px 20px rgba(26, 26, 46, 0.06);
	--shadow-lg: 0 12px 40px rgba(26, 26, 46, 0.08);
	--shadow-xl: 0 20px 60px rgba(26, 26, 46, 0.1);
	--shadow-red: 0 8px 30px rgba(200, 16, 46, 0.15);

	/* Borders */
	--radius-sm: 6px;
	--radius-md: 12px;
	--radius-lg: 20px;
	--radius-xl: 28px;
}

/* ====== Reset & Base ====== */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.75;
	color: var(--sbdwm-gray-700);
	background-color: var(--sbdwm-white);
	overflow-x: hidden;
	font-weight: 400;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: var(--sbdwm-red);
	text-decoration: none;
	transition: color var(--transition-base);
}

a:hover {
	color: var(--sbdwm-red-dark);
}

::selection {
	background: var(--sbdwm-red);
	color: white;
}

/* ====== Typography — Yin & Yang of Serif + Sans ====== */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: 600;
	line-height: 1.15;
	color: var(--sbdwm-ink);
	letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.75rem, 7vw, 4.5rem); font-weight: 500; }
h2 { font-size: clamp(2.25rem, 5.5vw, 3.5rem); font-weight: 500; }
h3 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h4 { font-size: clamp(1.35rem, 3vw, 1.75rem); }

.section-label {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	font-family: var(--font-body);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--sbdwm-red);
	margin-bottom: 1.25rem;
}

.section-label::before {
	content: '';
	display: inline-block;
	width: 28px;
	height: 1.5px;
	background: var(--sbdwm-red);
}

.section-heading {
	margin-bottom: 1.25rem;
	font-style: italic;
}

.section-heading .accent {
	color: var(--sbdwm-red);
	font-style: italic;
}

.section-subtitle {
	font-family: var(--font-body);
	font-size: 1.05rem;
	color: var(--sbdwm-gray-500);
	max-width: 560px;
	line-height: 1.8;
	font-weight: 400;
}

.section-subtitle.centered {
	margin-left: auto;
	margin-right: auto;
}

.lead {
	font-size: 1.05rem;
	font-weight: 400;
	color: var(--sbdwm-gray-500);
	line-height: 1.85;
}

/* ====== Section Divider — Soft wave motif ====== */
.section-slash {
	position: relative;
}

.section-slash::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	right: 0;
	height: 60px;
	background: inherit;
	clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
	z-index: 2;
}

/* Korean geometric accent — inspired by 단청 Dancheong patterns */
.korean-accent {
	position: relative;
}

.korean-accent::before,
.korean-accent::after {
	content: '';
	position: absolute;
	width: 36px;
	height: 36px;
	border: 1.5px solid var(--sbdwm-red);
	opacity: 0.15;
	pointer-events: none;
}

.korean-accent::before {
	top: -10px;
	left: -10px;
	border-right: none;
	border-bottom: none;
}

.korean-accent::after {
	bottom: -10px;
	right: -10px;
	border-left: none;
	border-top: none;
}

/* ====== Yin-Yang Decorative Element ====== */
.yin-yang-deco {
	position: relative;
	display: inline-block;
}

.yin-yang-deco::after {
	content: '☯';
	position: absolute;
	font-size: 1.5rem;
	color: var(--sbdwm-red);
	opacity: 0.12;
	pointer-events: none;
}

/* ====== Layout ====== */
.wrapper {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.wrapper > main,
.wrapper > .wrapper-inner {
	flex: 1;
}

.container {
	max-width: 1200px;
}

section {
	padding: var(--section-py) 0;
	position: relative;
}

/* ====== Floating Pill Navbar ====== */
.navbar-float {
	position: fixed;
	top: 20px;
	left: 0;
	right: 0;
	z-index: 1030;
	padding: 1rem 1.5rem;
	transition: all 0.4s var(--ease-out-expo);
	/* pointer-events: none; */
}

.navbar-pill {
	max-width: 860px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	border: 1px solid rgba(26, 26, 46, 0.06);
	border-radius: 100px;
	padding: 0.4rem 0.5rem;
	box-shadow: 0 4px 30px rgba(26, 26, 46, 0.06);
	transition: all 0.4s var(--ease-out-expo);
	pointer-events: auto;
}

/* Nav link groups */
.nav-pill-left,
.nav-pill-right {
	display: flex;
	align-items: center;
	gap: 0.15rem;
}

.nav-pill-left {
	margin-right: auto;
}

.nav-pill-right {
	margin-left: auto;
}

/* Individual nav links */
.nav-pill-link {
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 0.78rem;
	color: var(--sbdwm-gray-700);
	padding: 0.5rem 0.85rem;
	border-radius: 50px;
	transition: all var(--transition-base);
	text-decoration: none;
	letter-spacing: 0.02em;
	white-space: nowrap;
}

.nav-pill-link:hover {
	color: var(--sbdwm-ink);
	background: rgba(26, 26, 46, 0.04);
}

.nav-pill-link.active {
	color: var(--sbdwm-ink);
	background: rgba(26, 26, 46, 0.06);
}

/* Center Logo */
.nav-pill-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.15rem 1rem;
	flex-shrink: 0;
	text-decoration: none;
	transition: transform var(--transition-base);
}

.nav-pill-logo:hover {
	transform: scale(1.05);
}

.nav-pill-logo .nav-logo-img {
	height: 40px;
	width: 40px;
	object-fit: contain;
	border-radius: 50%;
	transition: all var(--transition-base);
	transform: scale(2.5);
}

.nav-logo-text {
	font-family: var(--font-display);
	font-size: 1.3rem;
	font-weight: 600;
	font-style: italic;
	color: var(--sbdwm-ink);
}

/* CTA Button inside pill */
.nav-pill-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 0.72rem;
	letter-spacing: 0.03em;
	color: white;
	background: var(--sbdwm-red);
	padding: 0.5rem 1rem;
	border-radius: 50px;
	text-decoration: none;
	transition: all var(--transition-base);
	white-space: nowrap;
	margin-left: 0.25rem;
}

.nav-pill-cta:hover {
	background: var(--sbdwm-red-dark);
	color: white;
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(200, 16, 46, 0.25);
}

.nav-pill-cta i {
	font-size: 0.85rem;
}

/* Mobile hamburger toggle */
.navbar-float-toggle {
	display: flex;
	flex-direction: column;
	gap: 5px;
	padding: 0.5rem;
	background: none;
	border: none;
	cursor: pointer;
	margin-left: auto;
}

.navbar-float-toggle span {
	display: block;
	width: 20px;
	height: 2px;
	background: var(--sbdwm-ink);
	border-radius: 2px;
	transition: all var(--transition-base);
}

.navbar-float-toggle:hover span {
	background: var(--sbdwm-red);
}

/* Legacy nav-link styles (for offcanvas mobile menu) */
.offcanvas .nav-link {
	font-family: var(--font-body) !important;
	font-weight: 600 !important;
	font-size: 0.9rem !important;
	color: var(--sbdwm-gray-700) !important;
	padding: 0.65rem 0.5rem !important;
	letter-spacing: 0.02em;
	transition: color var(--transition-base) !important;
	border-radius: var(--radius-sm);
}

.offcanvas .nav-link:hover,
.offcanvas .nav-link.active {
	color: var(--sbdwm-ink) !important;
	background: var(--sbdwm-cream);
}

.dropdown-menu {
	border: 1px solid var(--sbdwm-sand);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-lg);
	padding: 0.5rem;
	animation: dropdownFade 0.25s var(--ease-out-expo);
	background: rgba(250, 250, 248, 0.98);
	backdrop-filter: blur(16px);
}

@keyframes dropdownFade {
	from { opacity: 0; transform: translateY(-8px); }
	to { opacity: 1; transform: translateY(0); }
}

.dropdown-menu .nav-link {
	border-radius: var(--radius-sm);
	padding: 0.6rem 1rem !important;
}

.dropdown-menu .nav-link::after {
	display: none;
}

.dropdown-menu .nav-link:hover {
	background: var(--sbdwm-cream);
	color: var(--sbdwm-red) !important;
}

/* ====== Buttons — Refined with tradition ====== */
.btn {
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 0.85rem;
	letter-spacing: 0.04em;
	border-radius: var(--radius-sm);
	padding: 0.7rem 1.75rem;
	transition: all var(--transition-base);
	border: 1.5px solid transparent;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.btn-danger,
.btn-primary-red {
	background: var(--sbdwm-red);
	color: white;
	border-color: var(--sbdwm-red);
}

.btn-danger:hover,
.btn-primary-red:hover {
	background: var(--sbdwm-red-dark);
	border-color: var(--sbdwm-red-dark);
	color: white;
	transform: translateY(-2px);
	box-shadow: var(--shadow-red);
}

.btn-outline-danger {
	color: var(--sbdwm-red);
	border-color: var(--sbdwm-red);
	background: transparent;
}

.btn-outline-danger:hover {
	background: var(--sbdwm-red);
	color: white;
	transform: translateY(-2px);
	box-shadow: var(--shadow-red);
}

.btn-outline-dark {
	color: var(--sbdwm-ink);
	border-color: var(--sbdwm-ink);
	background: transparent;
}

.btn-outline-dark:hover {
	background: var(--sbdwm-ink);
	color: white;
	transform: translateY(-2px);
}

.btn-outline-light {
	color: white;
	border-color: rgba(255, 255, 255, 0.4);
	background: transparent;
}

.btn-outline-light:hover {
	background: white;
	color: var(--sbdwm-ink);
	border-color: white;
	transform: translateY(-2px);
}

.btn-light {
	background: white;
	color: var(--sbdwm-red);
	border-color: white;
}

.btn-light:hover {
	background: var(--sbdwm-cream);
	color: var(--sbdwm-red-dark);
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

.btn-lg {
	padding: 0.85rem 2.25rem;
	font-size: 0.9rem;
}

.btn-sm {
	padding: 0.45rem 1.1rem;
	font-size: 0.78rem;
}

/* ====== Hero Section — Light with Korean spirit ====== */
.hero-section {
	position: relative;
	background: var(--sbdwm-cream);
	overflow: hidden;
	min-height: 72vh;
	display: flex;
	align-items: center;
}

.hero-bg {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

/* Light overlay with warm tones */
.hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	background:
		linear-gradient(135deg,
			rgba(250, 250, 248, 0.84) 0%,
			rgba(243, 241, 236, 0.75) 40%,
			rgba(243, 241, 236, 0.6) 70%,
			rgba(200, 16, 46, 0.08) 100%
		);
}

.hero-overlay::before {
	content: '';
	position: absolute;
	background: linear-gradient(to bottom, transparent, var(--sbdwm-white));
	pointer-events: none;
	left: 0;
	right: 0;
	bottom: 0;
	height: 600px;
}

.hero-content {
	position: relative;
	z-index: 4;
	padding: 6rem 0 0;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--sbdwm-red-glow);
	border: 1px solid rgba(200, 16, 46, 0.15);
	color: var(--sbdwm-red);
	font-family: var(--font-body);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	padding: 0.5rem 1.1rem;
	border-radius: 50px;
	margin-bottom: 1.5rem;
}

.hero-badge i {
	color: var(--sbdwm-red);
}

.hero-title {
	color: var(--sbdwm-ink) !important;
	font-size: clamp(3rem, 8vw, 5.5rem) !important;
	line-height: 1.0 !important;
	margin-bottom: 0.3rem;
	letter-spacing: -0.02em;
	font-weight: 400 !important;
	font-style: italic;
}

.hero-title .hero-accent {
	display: block;
	color: var(--sbdwm-red);
	font-family: var(--font-body);
	font-size: 0.28em;
	font-weight: 700;
	font-style: normal;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	margin-top: 0.6em;
}

.hero-subtitle {
	color: var(--sbdwm-gray-500);
	font-size: clamp(0.95rem, 2.5vw, 1.1rem);
	line-height: 1.8;
	max-width: 500px;
	margin-bottom: 2rem;
	font-weight: 400;
	margin: 0 auto;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin: 1rem auto !important;
	justify-content: center;
}

/* Adapt outline button for light hero */
.hero-actions .btn-outline-light {
	color: var(--sbdwm-ink);
	border-color: var(--sbdwm-ink);
}

.hero-actions .btn-outline-light:hover {
	background: var(--sbdwm-ink);
	color: white;
	border-color: var(--sbdwm-ink);
}

.hero-stats {
	display: flex;
	gap: 2.5rem;
	padding-top: 2rem;
	border-top: 1px solid var(--sbdwm-sand);
}

.hero-stat {
	text-align: left;
}

.hero-stat-number {
	font-family: var(--font-display);
	font-size: 2.5rem;
	font-weight: 400;
	color: var(--sbdwm-ink);
	line-height: 1;
	margin-bottom: 0.25rem;
	font-style: italic;
}

.hero-stat-number .counter-suffix {
	color: var(--sbdwm-red);
	font-style: normal;
}

.hero-stat-label {
	font-family: var(--font-body);
	font-size: 0.7rem;
	font-weight: 700;
	color: var(--sbdwm-gray-500);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

/* Decorative side element — Yin-Yang inspired concentric circles */
.hero-deco {
	position: absolute;
	right: 5%;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	width: 300px;
	height: 300px;
	border: 1px solid rgba(200, 16, 46, 0.06);
	border-radius: 50%;
	pointer-events: none;
}

.hero-deco::before {
	content: '';
	position: absolute;
	inset: 30px;
	border: 1px solid rgba(107, 158, 122, 0.1);
	border-radius: 50%;
}

.hero-deco::after {
	content: '';
	position: absolute;
	inset: 60px;
	border: 1px solid rgba(200, 16, 46, 0.04);
	border-radius: 50%;
}

/* ====== Scroll Indicator ====== */
.scroll-indicator {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	pointer-events: none;
}

.scroll-mouse {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 50px;
	border: 2px solid var(--sbdwm-red);
	border-radius: 16px;
	position: relative;
	opacity: 0.6;
	transition: opacity var(--transition-base);
}

.scroll-indicator:hover .scroll-mouse {
	opacity: 1;
}

.scroll-dot {
	display: block;
	width: 4px;
	height: 8px;
	background: var(--sbdwm-red);
	border-radius: 2px;
	animation: scrollDotMove 2s var(--ease-out-expo) infinite;
}

.scroll-arrow {
	display: block;
	font-size: 1.2rem;
	color: var(--sbdwm-red);
	font-weight: 300;
	animation: scrollArrowBounce 2s var(--ease-out-expo) infinite;
	opacity: 0.6;
	transition: opacity var(--transition-base);
}

.scroll-indicator:hover .scroll-arrow {
	opacity: 1;
}

@keyframes scrollDotMove {
	0% {
		opacity: 1;
		transform: translateY(0);
	}
	50% {
		opacity: 0.5;
	}
	100% {
		opacity: 0;
		transform: translateY(20px);
	}
}

@keyframes scrollArrowBounce {
	0%, 100% {
		opacity: 0.4;
		transform: translateY(0);
	}
	50% {
		opacity: 1;
		transform: translateY(4px);
	}
}

/* ====== About Section ====== */
#sobre-nosotros {
	background: var(--sbdwm-white);
	padding-top: 0px;
}

.about-image-wrapper {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.about-image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--radius-lg);
	aspect-ratio: 4 / 5;
}

.about-image-wrapper::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100px;
	height: 100px;
	background: var(--sbdwm-celadon);
	opacity: 0.08;
	clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.about-feature {
	display: flex;
	gap: 1rem;
	padding: 1rem 0;
}

.about-feature-icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	border-radius: var(--radius-sm);
	background: var(--sbdwm-red-glow);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--sbdwm-red);
	font-size: 1.1rem;
}

.about-feature h5 {
	font-family: var(--font-display);
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--sbdwm-ink);
	margin-bottom: 0.25rem;
	font-style: italic;
}

.about-feature p {
	font-size: 0.85rem;
	color: var(--sbdwm-gray-500);
	margin-bottom: 0;
	line-height: 1.6;
}

/* ====== Programs Section ====== */
#programas {
	background: var(--sbdwm-cream);
	position: relative;
}

/* Korean-inspired subtle lattice pattern — 격자 gyeokja */
#programas::before {
	content: '';
	position: absolute;
	inset: 0;
	opacity: 0.2;
	background-image:
		linear-gradient(0deg, var(--sbdwm-sand) 1px, transparent 1px),
		linear-gradient(90deg, var(--sbdwm-sand) 1px, transparent 1px);
	background-size: 48px 48px;
	pointer-events: none;
}

.program-card {
	background: var(--sbdwm-white);
	border-radius: var(--radius-md);
	overflow: hidden;
	border: 1px solid var(--sbdwm-sand);
	transition: all var(--transition-base);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.program-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-xl);
	border-color: transparent;
}

.program-card .card-img-top {
	height: 220px;
	object-fit: cover;
	transition: transform 0.6s var(--ease-out-expo);
}

.program-card:hover .card-img-top {
	transform: scale(1.04);
}

.program-card .card-img-wrapper {
	overflow: hidden;
	position: relative;
}

.program-card .card-img-wrapper::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 60px;
	background: linear-gradient(to top, rgba(26, 26, 46, 0.06), transparent);
	pointer-events: none;
}

.program-card .card-body {
	padding: 1.5rem;
	flex: 1;
}

.program-card .card-title {
	font-family: var(--font-display);
	font-size: 1.35rem;
	color: var(--sbdwm-ink);
	margin-bottom: 0.5rem;
	font-style: italic;
}

.program-card .card-text {
	font-size: 0.9rem;
	color: var(--sbdwm-gray-500);
	line-height: 1.65;
}

.program-card .schedule-info {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid var(--sbdwm-gray-100);
}

.program-card .schedule-info small {
	font-weight: 700;
	color: var(--sbdwm-ink);
	font-size: 0.7rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.program-card .card-footer {
	padding: 1rem 1.5rem;
	background: transparent;
	border-top: 1px solid var(--sbdwm-gray-100);
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.program-card .card-footer *{
	flex-grow: 0 !important;
	flex-shrink: 0;
}
/* ====== Benefits Section ====== */
.benefits-section {
	background: var(--sbdwm-white);
	position: relative;
}

.benefit-card {
	text-align: center;
	padding: 2.25rem 1.5rem;
	border-radius: var(--radius-md);
	transition: all var(--transition-base);
	position: relative;
	background: var(--sbdwm-white);
	border: 1px solid var(--sbdwm-sand);
}

.benefit-card:hover {
	background: var(--sbdwm-ink);
	border-color: var(--sbdwm-ink);
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}

.benefit-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--sbdwm-red-glow);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	color: var(--sbdwm-red);
	margin-bottom: 1.25rem;
	transition: all var(--transition-base);
}

.benefit-card:hover .benefit-icon {
	background: rgba(200, 16, 46, 0.15);
	color: var(--sbdwm-red);
}

.benefit-card h5 {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 1.15rem;
	color: var(--sbdwm-ink);
	margin-bottom: 0.5rem;
	transition: color var(--transition-base);
	font-style: italic;
}

.benefit-card p {
	font-size: 0.875rem;
	color: var(--sbdwm-gray-500);
	margin-bottom: 0;
	line-height: 1.65;
	transition: color var(--transition-base);
}

/* Benefits Carousel & Tabs */
.benefits-carousel {
	min-height: 350px;
}

.benefits-carousel .item {
	display: flex;
	align-items: center;
	justify-content: center;
	animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.benefits-carousel .benefit-card {
	text-align: center;
	padding: 3rem 2.5rem;
	border-radius: var(--radius-md);
	transition: all var(--transition-base);
	position: relative;
	background: var(--sbdwm-white);
	border: 1px solid var(--sbdwm-sand);
	max-width: 600px;
	margin: 0 auto;
}

.benefit-description {
	font-size: 0.95rem;
	color: var(--sbdwm-gray-700);
	margin: 1rem 0;
	line-height: 1.8;
}

.benefit-detail {
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 2px solid var(--sbdwm-sand);
	font-size: 0.875rem;
	color: var(--sbdwm-gray-500);
	line-height: 1.7;
}

.benefit-detail strong {
	color: var(--sbdwm-ink);
	font-weight: 600;
}

.benefits-tabs {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 2rem;
}

.benefits-tab {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 2px solid var(--sbdwm-sand);
	background: var(--sbdwm-white);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all var(--transition-base);
	color: var(--sbdwm-gray-700);
	font-size: 1.5rem;
}

.benefits-tab:hover {
	border-color: var(--sbdwm-red);
	color: var(--sbdwm-red);
	transform: scale(1.1);
}

.benefits-tab.active {
	background: var(--sbdwm-red);
	border-color: var(--sbdwm-red);
	color: white;
	box-shadow: 0 4px 15px rgba(255, 60, 0, 0.25);
}

/* ====== Gallery Section ====== */
.gallery-section {
	background: var(--sbdwm-cream);
}

.gallery-item {
	position: relative;
	aspect-ratio: 1;
	overflow: hidden;
	border-radius: var(--radius-md);
	cursor: pointer;
	background: var(--sbdwm-warm-gray);
	display: block;
	text-decoration: none;
	color: inherit;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s var(--ease-out-expo);
}

.gallery-item::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(26, 26, 46, 0.5), transparent 60%);
	opacity: 0;
	transition: opacity var(--transition-base);
}

.gallery-item:hover img {
	transform: scale(1.08);
}

.gallery-item:hover::after {
	opacity: 1;
}

.gallery-item .gallery-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1.25rem;
	z-index: 2;
	transform: translateY(10px);
	opacity: 0;
	transition: all var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
	transform: translateY(0);
	opacity: 1;
}

.gallery-overlay i {
	color: white;
	font-size: 1.25rem;
}

/* ====== Testimonials Section ====== */
.testimonials-section {
	background: var(--sbdwm-white);
	position: relative;
}

.testimonial-card {
	background: var(--sbdwm-white);
	border: 1px solid var(--sbdwm-sand);
	border-radius: var(--radius-md);
	padding: 2rem;
	height: 100%;
	transition: all var(--transition-base);
	position: relative;
	display: flex;
	flex-direction: column;
}

.testimonials-carousel .owl-item {
	display: flex;
}

.testimonials-carousel .owl-item .testimonial-card {
	min-height: 350px;
}

.testimonial-card::before {
	content: '\201C';
	font-family: var(--font-display);
	font-size: 5rem;
	line-height: 1;
	color: var(--sbdwm-red);
	opacity: 0.08;
	position: absolute;
	top: 0.75rem;
	right: 1.5rem;
	font-style: italic;
}

.testimonial-card:hover {
	border-color: var(--sbdwm-red);
	box-shadow: var(--shadow-md);
}

.testimonial-stars {
	margin-bottom: 1rem;
}

.testimonial-stars i {
	color: var(--sbdwm-gold);
	font-size: 0.8rem;
	margin-right: 2px;
}

.testimonial-text {
	font-family: var(--font-display);
	font-size: 1.1rem;
	font-style: italic;
	color: var(--sbdwm-gray-700);
	line-height: 1.75;
	margin-bottom: 1.5rem;
	font-weight: 400;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-top: auto;
}

.testimonial-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--sbdwm-sand);
}

.testimonial-avatar-placeholder {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--sbdwm-red-glow);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--sbdwm-red);
	font-weight: 700;
	font-size: 1rem;
}

.testimonial-name {
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 0.85rem;
	color: var(--sbdwm-ink);
	margin-bottom: 0;
	letter-spacing: 0.01em;
}

.testimonial-role {
	font-size: 0.75rem;
	color: var(--sbdwm-gray-500);
	text-transform: capitalize;
}

/* ====== Owl Carousel Custom Styles ====== */
.testimonials-carousel {
	position: relative;
}

.testimonials-carousel .owl-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	padding: 0;
	pointer-events: none;
	display: flex;
	justify-content: space-between;
	z-index: 10;
}

.testimonials-carousel .owl-nav button {
	pointer-events: all;
	background: rgba(255, 60, 0, 0.8);
	border: none;
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all var(--transition-base);
	font-size: 0.75rem;
	outline: none;
}

.testimonials-carousel .owl-nav button:hover {
	background: var(--sbdwm-red);
	color: white !important;
	transform: scale(1.1);
}

.testimonials-carousel .owl-nav button.disabled {
	opacity: 0.5;
	cursor: not-allowed;
}
@media (min-width: 992px){
	.testimonials-carousel .owl-nav button.owl-prev{
		position: relative;
		left: -50px;
	}
	.testimonials-carousel .owl-nav button.owl-next{
		position: relative;
		right: -50px;
	}
}
.testimonials-carousel .owl-dots {
	text-align: center;
	margin-top: 2rem;
}

.testimonials-carousel .owl-dot {
	height: 10px;
	width: 10px;
	margin: 0 4px;
	background-color: var(--sbdwm-sand) !important;
	border-radius: 50%;
	display: inline-block;
	cursor: pointer;
	transition: all var(--transition-base);
}

.testimonials-carousel .owl-dot.active {
	background-color: var(--sbdwm-red) !important;
	transform: scale(1.2);
}

/* ====== Team Section ====== */
.team-section {
	background: var(--sbdwm-cream);
	position: relative;
}

.team-card {
	background: var(--sbdwm-white);
	border-radius: var(--radius-md);
	overflow: hidden;
	border: 1px solid var(--sbdwm-sand);
	transition: all var(--transition-base);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.team-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-xl);
	border-color: transparent;
}

.team-card-image {
	position: relative;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	background: var(--sbdwm-warm-gray);
}

.team-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s var(--ease-out-expo);
}

.team-card:hover .team-card-image img {
	transform: scale(1.06);
}

.team-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(26, 26, 46, 0.85), rgba(26, 26, 46, 0.4) 60%, transparent);
	opacity: 0;
	transition: opacity var(--transition-base);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding-bottom: 1.5rem;
	z-index: 2;
}

.team-card:hover .team-card-overlay {
	opacity: 1;
}

.team-card-contact {
	display: flex;
	gap: 0.75rem;
}

.team-card-contact .btn {
	width: 44px;
	height: 44px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 1rem;
}

.team-card-body {
	padding: 1.5rem;
	text-align: center;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.team-card-name {
	font-family: var(--font-display);
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--sbdwm-ink);
	margin-bottom: 0.25rem;
	font-style: italic;
}

.team-card-type {
	display: inline-block;
	font-family: var(--font-body);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--sbdwm-red);
	margin-bottom: 0.5rem;
	background: var(--sbdwm-red-glow);
	padding: 0.3rem 0.8rem;
	border-radius: 50px;
	align-self: center;
}

.team-card-grade {
	font-size: 0.9rem;
	color: var(--sbdwm-gray-500);
	margin-bottom: 0;
	font-weight: 500;
}

/* ====== Location Section ====== */
#ubicacion {
	position: relative;
	background: var(--sbdwm-cream);
	padding: 0;
	margin: 0;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}

/* Mapa de fondo */
.location-map {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

/* Container del contenido en frente del mapa */
.location-container {
	position: relative;
	z-index: 5;
	padding: var(--section-py) var(--container-px);
}

.location-card {
	background: var(--sbdwm-white);
	border-radius: var(--radius-md);
	padding: 2rem;
	border: 1px solid var(--sbdwm-sand);
	box-shadow: var(--shadow-lg);
	backdrop-filter: blur(4px);
}

.location-item {
	display: flex;
	gap: 1rem;
	padding: 0.75rem 0;
}

.location-item i {
	color: var(--sbdwm-red);
	font-size: 1rem;
	margin-top: 0.15rem;
	flex-shrink: 0;
}

.location-item p {
	margin-bottom: 0;
	font-size: 0.95rem;
	color: var(--sbdwm-gray-700);
}

.location-item strong {
	display: block;
	font-family: var(--font-body);
	color: var(--sbdwm-ink);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 0.15rem;
}

/* Pin marker visual */
.location-pin-marker {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 6;
	animation: pinPulse 2s ease-out infinite;
}

.pin-icon {
	width: 80px;
	height: 80px;
	background: var(--sbdwm-red);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 2.5rem;
	box-shadow: 0 10px 40px rgba(200, 16, 46, 0.35);
	position: relative;
	border: 4px solid white;
	transition: all var(--transition-base);
}

.location-pin-marker:hover .pin-icon {
	transform: scale(1.1);
	box-shadow: 0 15px 50px rgba(200, 16, 46, 0.45);
}

/* Mapbox marker styling */
.mapbox-marker {
	width: 60px;
	height: 60px;
	background: none;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	cursor: pointer;
	filter: drop-shadow(0 2px 8px rgba(200, 16, 46, 0.3));
	animation: mapboxMarkerBounce 0.6s var(--ease-out-back);
}

@keyframes mapboxMarkerBounce {
	0% {
		transform: scale(0) translateY(20px);
		opacity: 0;
	}
	100% {
		transform: scale(1) translateY(0);
		opacity: 1;
	}
}

/* Pulso animado del pin */
@keyframes pinPulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

/* Overlay sutil sobre el mapa para mejorar legibilidad del contenido */
#ubicacion::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 50%;
	height: 100%;
	background: linear-gradient(to right, rgba(250, 250, 248, 0.92), rgba(250, 250, 248, 0.7) 60%, transparent);
	z-index: 2;
	pointer-events: none;
}

.map-wrapper {
	border-radius: var(--radius-md);
	overflow: hidden;
	border: 1px solid var(--sbdwm-sand);
	box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
	display: block;
	width: 100%;
	height: 100%;
}

/* Responsive adjustments */
@media (max-width: 992px) {
	#ubicacion {
		min-height: auto;
		padding: var(--section-py) 0;
	}

	#ubicacion::before {
		width: 100%;
		background: linear-gradient(to bottom, rgba(250, 250, 248, 0.92), rgba(250, 250, 248, 0.85));
		height: 50%;
	}

	.location-map {
		height: 300px;
	}

	.location-container {
		padding: 2rem var(--container-px);
	}

	.location-pin-marker {
		margin-top: 2rem;
	}
}

@media (max-width: 768px) {
	#ubicacion {
		min-height: auto;
	}

	#ubicacion::before {
		width: 100%;
		height: 40%;
	}

	.location-map {
		height: 250px;
	}

	.pin-icon {
		width: 60px;
		height: 60px;
		font-size: 2rem;
	}

	.location-card {
		padding: 1.5rem;
	}
}

/* ====== FAQ Section ====== */
#faq {
	background: var(--sbdwm-white);
}

.accordion-item {
	border: none !important;
	margin-bottom: 0.75rem;
	border-radius: var(--radius-md) !important;
	overflow: hidden;
}

.accordion-button {
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--sbdwm-ink);
	background: var(--sbdwm-cream);
	border: none;
	padding: 1.1rem 1.5rem;
	border-radius: var(--radius-md) !important;
	box-shadow: none !important;
	letter-spacing: 0.01em;
}

.accordion-button:not(.collapsed) {
	background: var(--sbdwm-ink);
	color: white;
	border-radius: var(--radius-md) var(--radius-md) 0 0 !important;
}

.accordion-button::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23C8102E' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
	transition: transform var(--transition-base);
}

.accordion-button:not(.collapsed)::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.accordion-body {
	padding: 1.25rem 1.5rem;
	font-size: 0.95rem;
	color: var(--sbdwm-gray-500);
	line-height: 1.75;
	background: var(--sbdwm-white);
	border: 1px solid var(--sbdwm-sand);
	border-top: none;
	border-radius: 0 0 var(--radius-md) var(--radius-md);
}

/* ====== News / Blog Section ====== */
.news-section {
	background: var(--sbdwm-cream);
}

.news-card {
	background: var(--sbdwm-white);
	border-radius: var(--radius-md);
	overflow: hidden;
	border: 1px solid var(--sbdwm-sand);
	transition: all var(--transition-base);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.news-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
	border-color: transparent;
}

.news-card .card-img-wrapper {
	overflow: hidden;
	position: relative;
}

.news-card .card-img-top {
	height: 200px;
	object-fit: cover;
	transition: transform 0.6s var(--ease-out-expo);
}

.news-card:hover .card-img-top {
	transform: scale(1.04);
}

.news-card .card-body {
	padding: 1.5rem;
	flex: 1;
}

.news-date {
	font-family: var(--font-body);
	font-size: 0.7rem;
	font-weight: 700;
	color: var(--sbdwm-gray-500);
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
}

.news-date i {
	color: var(--sbdwm-red);
	margin-right: 0.3rem;
}

.news-card .card-title {
	font-family: var(--font-display);
	font-size: 1.2rem;
	color: var(--sbdwm-ink);
	margin-bottom: 0.5rem;
	line-height: 1.3;
	font-style: italic;
}

.news-card .card-title a {
	color: var(--sbdwm-ink);
	transition: color var(--transition-base);
}

.news-card .card-title a:hover {
	color: var(--sbdwm-red);
}

.news-card .card-text {
	font-size: 0.9rem;
	color: var(--sbdwm-gray-500);
	line-height: 1.65;
}

.news-card .card-footer {
	padding: 1rem 1.5rem;
	background: transparent;
	border-top: 1px solid var(--sbdwm-gray-100);
}

/* ====== CTA Section ====== */
.cta-section {
	position: relative;
	overflow: hidden;
	padding: 6rem 0;
	margin-top: 10rem;
}
body.home .cta-section {
	margin-top: 0rem;
}

/* Background image — same as interior hero */
.cta-section__bg {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.cta-section__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* Dark overlay */
.cta-section__overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(
		135deg,
		rgba(26, 26, 46, 0.92) 0%,
		rgba(26, 26, 46, 0.78) 50%,
		rgba(160, 13, 36, 0.55) 100%
	);
}

/* Lattice pattern */
.cta-section__lattice {
	position: absolute;
	inset: 0;
	z-index: 3;
	opacity: 0.04;
	background-image:
		repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.6) 39px, rgba(255,255,255,0.6) 40px),
		repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.6) 39px, rgba(255,255,255,0.6) 40px);
}

/* Corner accents — same as interior-hero */
.cta-section__corner {
	position: absolute;
	z-index: 4;
	width: 80px;
	height: 80px;
	border-color: var(--sbdwm-red);
	border-style: solid;
	opacity: 0.4;
}

.cta-section__corner--tl {
	top: 1.5rem;
	left: 1.5rem;
	border-width: 2px 0 0 2px;
}

.cta-section__corner--br {
	bottom: 1.5rem;
	right: 1.5rem;
	border-width: 0 2px 2px 0;
}

/* Label override — white on dark bg */
.cta-section__label {
	color: rgba(255,255,255,0.55) !important;
}

.cta-section__label::before {
	background: rgba(255,255,255,0.4) !important;
}

/* Heading */
.cta-section__heading {
	color: var(--sbdwm-white);
	margin-bottom: 1.25rem;
}

/* Body copy */
.cta-section__sub {
	color: rgba(255, 255, 255, 0.65);
	font-size: 1.05rem;
	line-height: 1.75;
	margin-bottom: 1.75rem;
	max-width: 520px;
}

/* Checklist */
.cta-section__checklist {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.cta-section__checklist li {
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.95rem;
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.cta-section__checklist li .fas {
	color: var(--sbdwm-red);
	font-size: 0.75rem;
	flex-shrink: 0;
}

/* Card on the right */
.cta-section__card {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-radius: 4px;
	padding: 2.5rem 2rem;
	text-align: center;
}

.cta-section__card-eyebrow {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.75rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 0.25rem;
}

.cta-section__card-price {
	color: var(--sbdwm-white);
	font-size: clamp(2.5rem, 6vw, 3.5rem);
	font-weight: 500;
	font-style: italic;
	line-height: 1;
	margin-bottom: 0.35rem;
}

.cta-section__card-note {
	color: rgba(255, 255, 255, 0.45);
	font-size: 0.8rem;
	margin-bottom: 2rem;
}

@media (max-width: 991.98px) {
	.cta-section {
		padding: 4rem 0;
	}

	.cta-section__sub {
		max-width: 100%;
	}

	.cta-section__corner {
		width: 50px;
		height: 50px;
	}
}

/* ====== Events Widget (front-page sidebar) ====== */
.events-widget {
	background: var(--sbdwm-white);
	border: 1px solid var(--sbdwm-sand);
	border-radius: var(--radius-md);
	padding: 2rem;
	height: 100%;
}

.events-widget__header {
	margin-bottom: 1.5rem;
	padding-bottom: 1.25rem;
	border-bottom: 1px solid var(--sbdwm-sand);
}

.events-widget__header .section-label {
	margin-bottom: 0.5rem;
}

.events-widget__header .section-heading {
	font-size: clamp(1.5rem, 3vw, 2rem);
	margin-bottom: 0;
}

.events-widget__list {
	display: flex;
	flex-direction: column;
}

/* Individual event row in widget */
.event-item {
	display: flex;
	align-items: flex-start;
	gap: 0.9rem;
	padding: 0.85rem 0;
	border-bottom: 1px solid var(--sbdwm-gray-100);
}

.event-item:last-child {
	border-bottom: none;
}

.event-item__badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 50px;
	background: var(--sbdwm-ink);
	border-radius: 4px;
	flex-shrink: 0;
}

.event-item__day {
	color: var(--sbdwm-white);
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 500;
	line-height: 1;
}

.event-item__month {
	color: var(--sbdwm-red);
	font-family: var(--font-body);
	font-size: 0.58rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-top: 2px;
}

.event-item__body {
	flex: 1;
	min-width: 0;
}

.event-item__title {
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--sbdwm-ink);
	margin: 0 0 0.3rem;
	line-height: 1.3;
}

.event-item__meta {
	display: flex;
	align-items: center;
	gap: 0.3rem;
	font-size: 0.73rem;
	color: var(--sbdwm-gray-500);
	margin-bottom: 0.15rem;
}

.event-item__meta .fas,
.event-item__meta .far {
	color: var(--sbdwm-red);
	font-size: 0.63rem;
	width: 10px;
	text-align: center;
	flex-shrink: 0;
}

/* ====== Calendar Page — Event Cards ====== */
.cal-month {
	margin-bottom: 3.5rem;
}

.cal-month__header {
	margin-bottom: 1.5rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid var(--sbdwm-sand);
}

.cal-month__title {
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-style: italic;
	color: var(--sbdwm-ink);
	margin: 0;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.cal-month__title::before {
	content: '';
	display: inline-block;
	width: 28px;
	height: 2px;
	background: var(--sbdwm-red);
	flex-shrink: 0;
}

.event-card {
	display: flex;
	background: var(--sbdwm-white);
	border: 1px solid var(--sbdwm-sand);
	border-radius: var(--radius-md);
	overflow: hidden;
	height: 100%;
	transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.event-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: transparent;
}

.event-card__date-col {
	background: var(--sbdwm-ink);
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 1.25rem 1rem;
	flex-shrink: 0;
}

.event-card__badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.event-card__day {
	display: block;
	color: var(--sbdwm-white);
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 500;
	line-height: 1;
}

.event-card__month {
	display: block;
	color: var(--sbdwm-red);
	font-family: var(--font-body);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-top: 3px;
}

.event-card__body {
	padding: 1.25rem;
	flex: 1;
}

.event-card__title {
	font-family: var(--font-display);
	font-size: 1.15rem;
	font-style: italic;
	color: var(--sbdwm-ink);
	margin: 0 0 0.75rem;
	line-height: 1.3;
}

.event-card__meta {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
	margin-bottom: 0.75rem;
}

.event-card__meta span {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.8rem;
	color: var(--sbdwm-gray-500);
}

.event-card__meta .fas,
.event-card__meta .far {
	color: var(--sbdwm-red);
	font-size: 0.7rem;
	width: 12px;
	text-align: center;
	flex-shrink: 0;
}

.event-card__desc {
	font-size: 0.85rem;
	color: var(--sbdwm-gray-500);
	line-height: 1.6;
	margin: 0;
}

/* ====== Partners Band ====== */
.footer-partners {
	background: var(--sbdwm-cream);
	border-top: 1px solid var(--sbdwm-sand);
	border-bottom: 1px solid var(--sbdwm-sand);
	padding: 2.25rem 0;
}

.footer-partners .container {
	display: flex;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.footer-partners__group {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	flex: 1;
	min-width: 160px;
}

.footer-partners__label {
	font-family: var(--font-body);
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--sbdwm-gray-500);
}

.footer-partners__logos {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	flex-wrap: wrap;
	min-height: 52px;
}

.footer-partners__item {
	display: flex;
	align-items: center;
}
.footer-partners__item img {
	height: 80px;
	width: auto;
	object-fit: contain;
	mix-blend-mode: multiply;
}

.footer-partners__divider {
	width: 1px;
	height: 56px;
	background: var(--sbdwm-gray-300);
	flex-shrink: 0;
	align-self: center;
}

.footer-partners__logos--empty {
	align-items: center;
}

.footer-partners__placeholder {
	font-size: 0.75rem;
	color: var(--sbdwm-gray-300);
	font-style: italic;
}

@media (max-width: 767.98px) {
	.footer-partners .container {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.5rem;
	}

	.footer-partners__divider {
		width: 32px;
		height: 1px;
	}
}

/* ====== Footer — Dark & Refined ====== */
footer {
	background: var(--sbdwm-ink);
	color: rgba(255, 255, 255, 0.5);
	padding-top: 0;
	margin-top: 0;
	border-top: 3px solid var(--sbdwm-red);
}

.footer-main {
	padding: 4rem 0 3rem;
}

footer h5 {
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.9) !important;
	margin-bottom: 1.25rem;
}

footer p,
footer li {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.7;
}

footer a {
	color: rgba(255, 255, 255, 0.5);
	transition: all var(--transition-base);
}

footer a:hover {
	color: var(--sbdwm-white);
}

/* Brand column */
.footer-brand {
	display: flex;
	flex-direction: column;
}

.footer-brand .custom-logo,
.footer-brand .footer-logo {
	max-height: 130px;
	width: auto;
	margin-bottom: 1rem;
}

.footer-brand__tagline {
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.45);
	line-height: 1.65;
	margin: 0;
}

/* Links list */
.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 0.5rem;
}

.footer-links a,
.footer-links span {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.88rem;
}

.footer-links a::before {
	content: '';
	width: 6px;
	height: 1px;
	background: var(--sbdwm-red);
	flex-shrink: 0;
	transition: width var(--transition-base);
}

.footer-links a:hover::before {
	width: 14px;
}

/* Contact list — icon replaces the red dash */
.footer-contact a::before,
.footer-contact span::before {
	display: none;
}

.footer-contact__icon {
	color: var(--sbdwm-red);
	font-size: 0.8rem;
	width: 14px;
	text-align: center;
	flex-shrink: 0;
}

/* Social icons */
.footer-social {
	display: flex;
	gap: 0.5rem;
}

.footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.85rem;
	transition: all var(--transition-base);
}

.footer-social a:hover {
	background: var(--sbdwm-red);
	border-color: var(--sbdwm-red);
	color: white;
	transform: translateY(-2px);
}

/* Bottom bar */
.footer-bottom {
	padding: 1.1rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom p {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.25);
	margin: 0;
}

.footer-bottom a {
	color: rgba(255, 255, 255, 0.35);
	font-size: 0.75rem;
}

.footer-bottom a:hover {
	color: var(--sbdwm-white);
}

.footer-bottom__sep {
	display: inline-block;
	margin: 0 0.5rem;
	color: rgba(255, 255, 255, 0.2);
}

/* ====== WhatsApp Floating Button ====== */
.whatsapp-float {
	position: fixed;
	width: 56px;
	height: 56px;
	bottom: 28px;
	right: 28px;
	background: #25D366;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
	z-index: 999;
	transition: all var(--transition-base);
	text-decoration: none;
}

.whatsapp-float:hover {
	background: #20c653;
	color: white;
	transform: scale(1.08) translateY(-2px);
	box-shadow: 0 6px 28px rgba(37, 211, 102, 0.4);
}

/* Pulse animation */
.whatsapp-float::before {
	content: '';
	position: absolute;
	inset: -4px;
	border-radius: 50%;
	border: 2px solid #25D366;
	animation: waPulse 2s ease-out infinite;
}

@keyframes waPulse {
	0% { transform: scale(1); opacity: 0.5; }
	100% { transform: scale(1.35); opacity: 0; }
}

/* ====== Offcanvas ====== */
.offcanvas {
	width: 300px !important;
	border-left: none !important;
	pointer-events: auto;
}

.offcanvas-header {
	background: var(--sbdwm-white);
	border-bottom: 1px solid var(--sbdwm-sand);
	padding: 1.25rem 1.5rem;
}

.offcanvas-body {
	padding: 1.5rem;
	background: var(--sbdwm-white);
}

.offcanvas-body .nav-link::after {
	display: none;
}

/* ====== Scroll Animations ====== */
.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.reveal.revealed {
	opacity: 1;
	transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Scale-in animation */
.reveal-scale {
	opacity: 0;
	transform: scale(0.95);
	transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

.reveal-scale.revealed {
	opacity: 1;
	transform: scale(1);
}

/* ====== Badges ====== */
.badge {
	border-radius: 50px;
	padding: 0.35rem 0.85rem;
	font-weight: 600;
	font-size: 0.68rem;
	letter-spacing: 0.04em;
	font-family: var(--font-body);
}

.badge.bg-danger {
	background-color: var(--sbdwm-red) !important;
}

/* ====== Forms ====== */
.form-control,
.form-select {
	border-radius: var(--radius-sm);
	border: 1.5px solid var(--sbdwm-sand);
	padding: 0.75rem 1rem;
	font-size: 0.95rem;
	font-family: var(--font-body);
	transition: all var(--transition-base);
	background: var(--sbdwm-white);
}

.form-control:focus,
.form-select:focus {
	border-color: var(--sbdwm-blue);
	box-shadow: 0 0 0 3px rgba(43, 69, 112, 0.08);
}

.form-label {
	font-weight: 600;
	font-size: 0.85rem;
	color: var(--sbdwm-ink);
	margin-bottom: 0.4rem;
	letter-spacing: 0.02em;
}

/* ====== Search ====== */
.search-form {
	display: flex;
	gap: 0.5rem;
}

.search-form input {
	flex: 1;
	border-radius: var(--radius-sm);
	border: 1.5px solid var(--sbdwm-sand);
	padding: 0.75rem 1rem;
	font-family: var(--font-body);
	background: var(--sbdwm-white);
}

.search-form button {
	border-radius: var(--radius-sm);
	padding: 0.75rem 1.5rem;
	background: var(--sbdwm-red);
	color: white;
	border: none;
	font-weight: 600;
	font-family: var(--font-body);
	cursor: pointer;
	transition: all var(--transition-base);
}

.search-form button:hover {
	background: var(--sbdwm-red-dark);
}

/* ====== Utility ====== */
.text-danger {
	color: var(--sbdwm-red) !important;
}

.text-secondary {
	color: var(--sbdwm-gray-500) !important;
}

.text-muted {
	color: var(--sbdwm-gray-500) !important;
}

.text-white-50 {
	color: rgba(255, 255, 255, 0.5) !important;
}

.bg-light {
	background-color: var(--sbdwm-cream) !important;
}

.bg-dark {
	background-color: var(--sbdwm-ink) !important;
}

.shadow-sm {
	box-shadow: var(--shadow-sm) !important;
}

/* ====== Responsive ====== */
@media (max-width: 992px) {
	.hero-section {
		min-height: 80vh;
	}

	.hero-deco {
		display: none;
	}

	.hero-stats {
		gap: 1.5rem;
	}

	.hero-stat-number {
		font-size: 2rem;
	}

	/* Floating navbar adjusts for tablet/mobile */
	.navbar-float {
		padding: 0.75rem 1rem;
	}

	.navbar-pill {
		max-width: 100%;
		padding: 0.35rem 0.5rem 0.35rem 0.75rem;
	}
}

@media (max-width: 768px) {
	:root {
		--section-py: clamp(3rem, 6vw, 5rem);
	}

	.hero-section {
		min-height: 75vh;
	}

	.hero-title {
		font-size: clamp(2.5rem, 9vw, 3.5rem) !important;
	}

	.hero-stats {
		flex-wrap: wrap;
		gap: 1.25rem;
	}

	.hero-stat {
		min-width: 80px;
	}

	.hero-actions {
		flex-direction: column;
	}

	.hero-actions .btn {
		text-align: center;
	}

	.navbar-float {
		padding: 0.5rem 0.75rem;
	}

	.navbar-pill {
		border-radius: 60px;
		padding: 0.3rem 0.35rem 0.3rem 0.65rem;
	}

	.nav-pill-logo .nav-logo-img {
		height: 34px;
		width: 34px;
	}

	.whatsapp-float {
		width: 50px;
		height: 50px;
		bottom: 20px;
		right: 20px;
		font-size: 24px;
	}

	.benefit-card {
		padding: 1.5rem 1rem;
	}

	.testimonial-card {
		padding: 1.5rem;
	}
}

@media (max-width: 576px) {
	.hero-section {
		min-height: 100vh;
	}

	.hero-subtitle {
		font-size: 0.95rem;
	}

	.btn-lg {
		padding: 0.75rem 1.5rem;
		font-size: 0.9rem;
	}

	.offcanvas {
		width: 100% !important;
	}

	.whatsapp-float {
		width: 48px;
		height: 48px;
		bottom: 16px;
		right: 16px;
		font-size: 22px;
	}

	.gallery-item {
		aspect-ratio: 1;
	}
}

/* ====== Interior Pages — Hero & Content ====== */
.interior-hero {
	position: relative;
	min-height: 55vh;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	background: var(--sbdwm-ink);
}

.interior-hero--post {
	min-height: 65vh;
	align-items: center;
}

.interior-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.interior-hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transition: transform 8s linear;
}

.interior-hero:hover .interior-hero__bg img {
	transform: scale(1.03);
}

/* Default overlay — warm dark gradient for pages */
.interior-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	background:
		linear-gradient(160deg,
			rgba(26, 26, 46, 0.82) 0%,
			rgba(26, 26, 46, 0.65) 40%,
			rgba(26, 26, 46, 0.50) 70%,
			rgba(200, 16, 46, 0.10) 100%
		);
}

.interior-hero__overlay::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 200px;
	background: linear-gradient(to bottom, transparent, var(--sbdwm-white));
	pointer-events: none;
	z-index: 1;
}

/* Dark overlay variant for single posts */
.interior-hero__overlay--dark {
	background:
		linear-gradient(160deg,
			rgba(26, 26, 46, 0.88) 0%,
			rgba(26, 26, 46, 0.72) 40%,
			rgba(26, 26, 46, 0.60) 70%,
			rgba(200, 16, 46, 0.08) 100%
		);
}

.interior-hero__overlay--dark::before {
	background: linear-gradient(to bottom, transparent, var(--sbdwm-white));
}

/* Lattice pattern overlay */
.interior-hero__lattice {
	position: absolute;
	inset: 0;
	z-index: 3;
	opacity: 0.04;
	background-image:
		linear-gradient(0deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
	background-size: 48px 48px;
	pointer-events: none;
}

/* Content area */
.interior-hero__content {
	padding: 8rem 0 4rem;
	max-width: 700px;
}

.interior-hero__content--center {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
	padding: 0;
}

/* Breadcrumb */
.interior-hero__breadcrumb {
	margin-bottom: 1.5rem;
}

.interior-hero__breadcrumb nav {
	font-family: var(--font-body);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.interior-hero__breadcrumb a {
	color: rgba(255, 255, 255, 0.5);
	transition: color var(--transition-base);
}

.interior-hero__breadcrumb a:hover {
	color: white;
}

.interior-hero__breadcrumb .breadcrumb_last,
.interior-hero__breadcrumb span[aria-current] {
	color: var(--sbdwm-red);
}

.interior-hero__breadcrumb .separator {
	color: rgba(255, 255, 255, 0.3);
	margin: 0 0.4rem;
}

/* Title */
.interior-hero__title {
	color: white !important;
	font-size: clamp(2.75rem, 7vw, 4.5rem) !important;
	font-weight: 400 !important;
	font-style: italic;
	line-height: 1.05 !important;
	letter-spacing: -0.02em;
	margin-bottom: 1.25rem;
}

.interior-hero__title--light {
	text-shadow: 0 2px 40px rgba(0, 0, 0, 0.15);
}

/* Accent bar below title */
.interior-hero__bar {
	width: 60px;
	height: 3px;
	background: var(--sbdwm-red);
	border-radius: 2px;
}

.interior-hero__bar--center {
	margin: 0 auto;
}

/* Meta info for posts */
.interior-hero__meta {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	font-family: var(--font-body);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 1.25rem;
}

.interior-hero__meta i {
	color: var(--sbdwm-red);
	margin-right: 0.25rem;
}

.interior-hero__sep {
	color: rgba(255, 255, 255, 0.25);
}

.interior-hero__cat {
	color: var(--sbdwm-red);
	font-weight: 700;
}

/* Decorative corner accents */
.interior-hero__corner {
	position: absolute;
	width: 80px;
	height: 80px;
	z-index: 4;
	pointer-events: none;
}

.interior-hero__corner--tl {
	top: 100px;
	left: 40px;
	border-top: 1.5px solid rgba(255, 255, 255, 0.08);
	border-left: 1.5px solid rgba(255, 255, 255, 0.08);
}

.interior-hero__corner--br {
	bottom: 40px;
	right: 40px;
	border-bottom: 1.5px solid rgba(200, 16, 46, 0.15);
	border-right: 1.5px solid rgba(200, 16, 46, 0.15);
}

/* ====== Interior Content Section ====== */
.interior-content {
	padding: var(--section-py) 0;
	background: var(--sbdwm-white);
}

.interior-article {
	margin-bottom: 2rem;
}

.interior-article__featured {
	margin-bottom: 2.5rem;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-md);
}

.interior-article__img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.6s var(--ease-out-expo);
}

.interior-article__featured:hover .interior-article__img {
	transform: scale(1.02);
}

.interior-article__body {
	font-size: 1.05rem;
	line-height: 1.85;
	color: var(--sbdwm-gray-700);
}

.interior-article__body h2,
.interior-article__body h3,
.interior-article__body h4 {
	margin-top: 2.5rem;
	margin-bottom: 1rem;
}

.interior-article__body p {
	margin-bottom: 1.5rem;
}

.interior-article__body img {
	border-radius: var(--radius-md);
	margin: 2rem 0;
}

.interior-article__body blockquote {
	border-left: 3px solid var(--sbdwm-red);
	padding: 1.25rem 1.75rem;
	margin: 2rem 0;
	background: var(--sbdwm-cream);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	font-family: var(--font-display);
	font-size: 1.2rem;
	font-style: italic;
	color: var(--sbdwm-ink);
	line-height: 1.7;
}

.interior-article__body ul,
.interior-article__body ol {
	padding-left: 1.5rem;
	margin-bottom: 1.5rem;
}

.interior-article__body li {
	margin-bottom: 0.5rem;
}

/* ====== Post Navigation ====== */
.interior-post-nav {
	margin-top: 3.5rem;
	padding-top: 2.5rem;
	border-top: 1px solid var(--sbdwm-sand);
}

.interior-post-nav__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.interior-post-nav__link {
	display: block;
	padding: 1.25rem 1.5rem;
	background: var(--sbdwm-cream);
	border-radius: var(--radius-md);
	text-decoration: none;
	transition: all var(--transition-base);
	border: 1px solid transparent;
}

.interior-post-nav__link:hover {
	background: var(--sbdwm-white);
	border-color: var(--sbdwm-sand);
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}

.interior-post-nav__link--next {
	text-align: right;
}

.interior-post-nav__label {
	display: block;
	font-family: var(--font-body);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--sbdwm-red);
	margin-bottom: 0.4rem;
}

.interior-post-nav__label i {
	font-size: 0.6rem;
}

.interior-post-nav__title {
	display: block;
	font-family: var(--font-display);
	font-size: 1.1rem;
	font-weight: 600;
	font-style: italic;
	color: var(--sbdwm-ink);
	line-height: 1.3;
	transition: color var(--transition-base);
}

.interior-post-nav__link:hover .interior-post-nav__title {
	color: var(--sbdwm-red);
}

/* ====== Related Posts ====== */
.interior-related {
	margin-top: 4rem;
	padding-top: 3rem;
	border-top: 1px solid var(--sbdwm-sand);
}

.interior-related__heading {
	font-family: var(--font-display);
	font-size: 1.75rem;
	font-weight: 500;
	font-style: italic;
	color: var(--sbdwm-ink);
	margin-bottom: 1.75rem;
}

.interior-related__card {
	display: block;
	text-decoration: none;
	background: var(--sbdwm-white);
	border: 1px solid var(--sbdwm-sand);
	border-radius: var(--radius-md);
	overflow: hidden;
	transition: all var(--transition-base);
	height: 100%;
}

.interior-related__card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: transparent;
}

.interior-related__img-wrap {
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.interior-related__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s var(--ease-out-expo);
}

.interior-related__card:hover .interior-related__img {
	transform: scale(1.06);
}

.interior-related__body {
	padding: 1.25rem;
}

.interior-related__date {
	display: block;
	font-family: var(--font-body);
	font-size: 0.68rem;
	font-weight: 700;
	color: var(--sbdwm-gray-500);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 0.35rem;
}

.interior-related__title {
	font-family: var(--font-display);
	font-size: 1.05rem;
	font-weight: 600;
	font-style: italic;
	color: var(--sbdwm-ink);
	line-height: 1.3;
	margin-bottom: 0;
	transition: color var(--transition-base);
}

.interior-related__card:hover .interior-related__title {
	color: var(--sbdwm-red);
}

/* ====== Interior Responsive ====== */
@media (max-width: 992px) {
	.interior-hero {
		min-height: 45vh;
	}

	.interior-hero--post {
		min-height: 50vh;
	}

	.interior-hero__corner {
		display: none;
	}
}

@media (max-width: 768px) {
	.interior-hero {
		min-height: 40vh;
	}

	.interior-hero--post {
		min-height: 45vh;
	}

	.interior-hero__content {
		padding: 7rem 0 3rem;
	}

	.interior-hero__title {
		font-size: clamp(2rem, 8vw, 3rem) !important;
	}

	.interior-post-nav__grid {
		grid-template-columns: 1fr;
	}

	.interior-post-nav__link--next {
		text-align: left;
	}
}

@media (max-width: 576px) {
	.interior-hero {
		min-height: 35vh;
	}

	.interior-hero__content {
		padding: 6.5rem 0 2.5rem;
	}
}

/* ====== Choose Program Section ====== */
.choose-program-section {
	padding: var(--section-py) var(--container-px);
	background: var(--sbdwm-white);
	position: relative;
}

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

.choose-program-list li {
	display: flex;
	gap: 1.5rem;
	margin-bottom: 2rem;
	padding: 0;
	align-items: flex-start;
}

.choose-program-list .list-icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--sbdwm-red-glow);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--sbdwm-red);
	font-size: 1.25rem;
	flex-shrink: 0;
	transition: all var(--transition-base);
}

.choose-program-list li:hover .list-icon {
	background: var(--sbdwm-red);
	color: white;
	transform: scale(1.1);
}

.choose-program-list li strong {
	display: block;
	color: var(--sbdwm-ink);
	font-weight: 600;
	margin-bottom: 0.25rem;
	font-family: var(--font-display);
	font-size: 1.05rem;
}

.choose-program-list li p {
	margin: 0;
	font-size: 0.95rem;
	color: var(--sbdwm-gray-500);
	line-height: 1.6;
}

.choose-program-visual {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	min-height: 350px;
}

.choose-program-card {
	text-align: center;
	padding: 3rem 2rem;
	border-radius: var(--radius-lg);
	background: linear-gradient(135deg, var(--sbdwm-ink-soft), var(--sbdwm-navy));
	color: white;
	position: relative;
	overflow: hidden;
	box-shadow: var(--shadow-xl);
}

.choose-program-card::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
	animation: float 6s ease-in-out infinite;
}

@keyframes float {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-20px);
	}
}

.choose-program-card-icon {
	font-size: 4rem;
	color: var(--sbdwm-red);
	margin-bottom: 1.5rem;
	position: relative;
	z-index: 1;
	animation: bounce 3s ease-in-out infinite;
}

@keyframes bounce {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

.choose-program-card h4 {
	font-family: var(--font-display);
	font-size: 1.8rem;
	margin-bottom: 0.5rem;
	position: relative;
	z-index: 1;
}

.choose-program-card p {
	font-size: 0.95rem;
	margin: 0;
	position: relative;
	z-index: 1;
	opacity: 0.9;
	line-height: 1.6;
}

@media (max-width: 768px) {
	.choose-program-visual {
		min-height: 300px;
	}

	.choose-program-card {
		padding: 2rem;
	}

	.choose-program-card-icon {
		font-size: 3rem;
	}

	.choose-program-card h4 {
		font-size: 1.4rem;
	}
}

/* Choose Program Carousel */
.choose-program-carousel {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-xl);
	min-height: 350px;
}

.choose-program-carousel .item {
	display: flex;
	align-items: center;
	justify-content: center;
	animation: fadeInCarousel 0.8s ease-in-out;
}

@keyframes fadeInCarousel {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.choose-program-carousel img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.choose-program-carousel .owl-stage {
	min-height: 350px;
}

.choose-program-carousel .owl-item {
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ====== Print ====== */
@media print {
	.navbar,
	footer,
	.whatsapp-float,
	.btn {
		display: none !important;
	}

	body {
		background: white;
		color: black;
	}

	section {
		padding: 1rem 0;
		break-inside: avoid;
	}
}
