:root {
	--color-bg: #f3ebe0;
	--color-surface: #fffdf9;
	--color-border: #ddd0c0;
	--color-text: #2a1f1a;
	--color-muted: #6b5d52;
	--color-accent: #b8860b;
	--color-accent-hover: #9a7209;
	--color-navy: #3d1524;
	--color-navy-light: #5c1a2e;
	--color-burgundy: #5c1a2e;
	--color-selection-bg: rgba(184, 134, 11, 0.22);
	--color-selection-text: #2a1f1a;
}

body {
	background-color: var(--color-bg);
	background-image:
		radial-gradient(circle at 0% 0%, rgba(184, 134, 11, 0.06), transparent 42%),
		radial-gradient(circle at 100% 100%, rgba(92, 26, 46, 0.05), transparent 38%);
	transition: background-color 0.2s ease, color 0.2s ease;
}

::selection {
	background-color: var(--color-selection-bg);
	color: var(--color-selection-text);
}

/* Top bar */
.heritage-top-bar {
	background: var(--color-burgundy);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 0.875rem;
	line-height: 1.45;
}

.heritage-top-bar-inner {
	padding-top: 0.65rem;
	padding-bottom: 0.65rem;
}

.heritage-top-bar a {
	color: rgba(255, 255, 255, 0.82);
	transition: color 0.15s ease;
}

.heritage-top-bar a svg {
	width: 1rem;
	height: 1rem;
	flex-shrink: 0;
}

.heritage-top-bar a:hover {
	color: var(--color-accent);
}

/* Language switch */
.lang-switch {
	display: inline-flex;
	align-items: center;
	position: relative;
}

.lang-switch-select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	min-width: 6.5rem;
	padding: 0.4rem 1.85rem 0.4rem 0.7rem;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--color-text);
	background-color: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 999px;
	cursor: pointer;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b5d52' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.65rem center;
	background-size: 0.75rem;
}

.lang-switch-select:hover,
.lang-switch-select:focus {
	outline: none;
	border-color: var(--color-accent);
	box-shadow: 0 0 0 2px var(--color-selection-bg);
}

/* Site header */
.site-header {
	background: rgba(255, 253, 249, 0.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--color-border);
	transition: box-shadow 0.2s ease, background-color 0.2s ease;
}

.site-header.is-scrolled {
	box-shadow: 0 8px 30px rgba(42, 31, 26, 0.08);
	background: rgba(255, 253, 249, 0.98);
}

.site-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.site-header-brand img {
	border-radius: 999px;
	border: 2px solid rgba(184, 134, 11, 0.35);
}

.site-nav-desktop {
	display: none;
	align-items: center;
	gap: 0.15rem;
}

@media (min-width: 1024px) {
	.site-nav-desktop {
		display: flex;
	}
}

.site-nav-link {
	display: inline-block;
	padding: 0.55rem 0.85rem;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--color-muted);
	border-radius: 999px;
	transition: color 0.15s ease, background-color 0.15s ease;
}

.site-nav-link:hover {
	color: var(--color-burgundy);
	background: rgba(92, 26, 46, 0.06);
}

.site-nav-link.is-active {
	color: var(--color-burgundy);
	background: rgba(184, 134, 11, 0.12);
}

.site-nav-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.6rem;
	height: 2.6rem;
	border-radius: 999px;
	color: var(--color-burgundy);
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	cursor: pointer;
	transition: background-color 0.15s ease, border-color 0.15s ease;
}

@media (min-width: 1024px) {
	.site-nav-toggle {
		display: none;
	}
}

.site-nav-toggle:hover {
	border-color: var(--color-accent);
	background: rgba(184, 134, 11, 0.08);
}

.site-nav-toggle-icon--close {
	display: none;
}

.site-nav-toggle.is-open .site-nav-toggle-icon--open {
	display: none;
}

.site-nav-toggle.is-open .site-nav-toggle-icon--close {
	display: block;
}

.site-nav-modal {
	position: fixed;
	inset: 0;
	z-index: 50;
	pointer-events: none;
}

.site-nav-modal.is-open {
	pointer-events: auto;
}

.site-nav-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(42, 31, 26, 0.55);
	opacity: 0;
	transition: opacity 0.25s ease;
}

.site-nav-modal.is-open .site-nav-backdrop {
	opacity: 1;
}

.site-nav-panel {
	position: absolute;
	top: 0;
	right: 0;
	width: min(21rem, 100%);
	height: 100%;
	background: var(--color-surface);
	box-shadow: -8px 0 40px rgba(42, 31, 26, 0.15);
	transform: translateX(100%);
	transition: transform 0.25s ease;
	display: flex;
	flex-direction: column;
}

.site-nav-modal.is-open .site-nav-panel {
	transform: translateX(0);
}

.site-nav-panel-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.1rem 1.25rem;
	border-bottom: 1px solid var(--color-border);
	background: var(--color-burgundy);
	color: white;
}

.site-nav-panel-title {
	font-size: 1.15rem;
	color: white;
}

.site-nav-close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 999px;
	color: rgba(255, 255, 255, 0.8);
	cursor: pointer;
	background: rgba(255, 255, 255, 0.08);
	border: none;
}

.site-nav-close:hover {
	background: rgba(255, 255, 255, 0.16);
	color: white;
}

.site-nav-mobile {
	list-style: none;
	padding: 0.85rem;
	flex: 1;
	overflow-y: auto;
}

.site-nav-mobile-link {
	display: block;
	padding: 0.9rem 1rem;
	font-size: 1rem;
	font-weight: 600;
	color: var(--color-text);
	border-radius: 0.75rem;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.site-nav-mobile-link:hover,
.site-nav-mobile-link.is-active {
	background: rgba(184, 134, 11, 0.1);
	color: var(--color-burgundy);
}

body.site-nav-open {
	overflow: hidden;
}

/* Footer */
.site-footer {
	background: var(--color-burgundy);
	color: rgba(255, 255, 255, 0.72);
	position: relative;
}

.site-footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.footer-link {
	color: rgba(255, 255, 255, 0.72);
	transition: color 0.15s ease;
}

.footer-link:hover {
	color: var(--color-accent);
}

.footer-social-link {
	display: inline-flex;
	padding: 0.4rem 0.9rem;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	color: rgba(255, 255, 255, 0.72);
	transition: border-color 0.15s ease, color 0.15s ease, background-color 0.15s ease;
}

.footer-social-link:hover {
	border-color: var(--color-accent);
	color: var(--color-accent);
	background: rgba(184, 134, 11, 0.1);
}

/* Buttons */
.btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 1.85rem;
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: white;
	background: var(--color-burgundy);
	border-radius: 999px;
	box-shadow: 0 4px 14px rgba(92, 26, 46, 0.22);
	transition: background-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary:hover {
	background: var(--color-navy-light);
	transform: translateY(-1px);
	box-shadow: 0 8px 20px rgba(92, 26, 46, 0.28);
}

.btn-primary--light {
	background: var(--color-accent);
	color: var(--color-text);
	box-shadow: 0 4px 14px rgba(184, 134, 11, 0.25);
}

.btn-primary--light:hover {
	background: var(--color-accent-hover);
	color: white;
}

.btn-primary-sm {
	display: inline-flex;
	align-items: center;
	padding: 0.55rem 1.15rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	white-space: nowrap;
	color: white;
	background: var(--color-burgundy);
	border-radius: 999px;
	transition: background-color 0.15s ease;
}

.btn-primary-sm:hover {
	background: var(--color-navy-light);
}

.btn-secondary {
	display: inline-flex;
	align-items: center;
	padding: 0.85rem 1.85rem;
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--color-burgundy);
	background: transparent;
	border: 2px solid var(--color-burgundy);
	border-radius: 999px;
	transition: border-color 0.15s ease, color 0.15s ease, background-color 0.15s ease;
}

.btn-secondary:hover {
	border-color: var(--color-accent);
	color: var(--color-accent);
	background: rgba(184, 134, 11, 0.08);
}

.btn-outline-light {
	display: inline-flex;
	align-items: center;
	padding: 0.85rem 1.85rem;
	font-size: 0.875rem;
	font-weight: 700;
	color: white;
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.55);
	border-radius: 999px;
	transition: border-color 0.15s ease, background-color 0.15s ease;
}

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

/* Split hero */
.hero-section--split {
	background: var(--color-burgundy);
	position: relative;
	overflow: hidden;
	color: #ffffff;
}

.hero-section--split .hero-lead {
	color: rgba(255, 255, 255, 0.82);
}

.hero-section--split h1 {
	color: #ffffff;
}

.hero-split-panel .hero-split-stat-label {
	color: rgba(255, 255, 255, 0.68);
}

.hero-split-grid {
	display: grid;
	min-height: 28rem;
}

@media (min-width: 1024px) {
	.hero-split-grid {
		grid-template-columns: 1.1fr 0.9fr;
		min-height: 34rem;
	}
}

.hero-split-content {
	display: flex;
	align-items: center;
	padding: 4rem 1.5rem;
	position: relative;
	z-index: 1;
}

@media (min-width: 640px) {
	.hero-split-content {
		padding: 5rem 2rem;
	}
}

@media (min-width: 1024px) {
	.hero-split-content {
		padding: 5rem 3rem 5rem max(1.5rem, calc((100vw - 72rem) / 2 + 1.5rem));
	}
}

.hero-split-panel {
	display: none;
	position: relative;
	background:
		linear-gradient(135deg, rgba(184, 134, 11, 0.18), transparent 55%),
		repeating-linear-gradient(
			-12deg,
			rgba(255, 255, 255, 0.04) 0,
			rgba(255, 255, 255, 0.04) 2px,
			transparent 2px,
			transparent 14px
		);
	border-left: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 1024px) {
	.hero-split-panel {
		display: block;
	}
}

.hero-split-panel-inner {
	position: absolute;
	inset: 2.5rem;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 1.5rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 2rem;
}

.hero-split-stat {
	font-family: "Lora", Georgia, serif;
	font-size: clamp(2.5rem, 4vw, 3.5rem);
	font-weight: 600;
	color: var(--color-accent);
	line-height: 1;
}

.hero-split-stat-label {
	margin-top: 0.5rem;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.65);
	max-width: 14rem;
}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-accent);
	margin-bottom: 1.25rem;
}

.hero-eyebrow::before {
	content: "";
	width: 2.5rem;
	height: 2px;
	background: var(--color-accent);
}

/* Page hero */
.page-hero {
	background: linear-gradient(135deg, var(--color-burgundy), var(--color-navy-light));
	position: relative;
	overflow: hidden;
	color: #ffffff;
}

.page-hero h1 {
	color: #ffffff;
}

.page-hero .hero-lead {
	color: rgba(255, 255, 255, 0.8);
}

.page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 85% 20%, rgba(184, 134, 11, 0.15), transparent 40%);
	pointer-events: none;
}

.page-hero-inner {
	position: relative;
	z-index: 1;
}

.page-hero-badge {
	display: inline-block;
	padding: 0.35rem 0.9rem;
	margin-bottom: 1rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-accent);
	border: 1px solid rgba(184, 134, 11, 0.45);
	border-radius: 999px;
	background: rgba(184, 134, 11, 0.1);
}

/* Section typography */
.section-kicker {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: var(--color-accent);
	margin-bottom: 0.75rem;
}

.section-title {
	font-family: "Lora", Georgia, serif;
	font-size: clamp(2rem, 4.5vw, 2.85rem);
	font-weight: 600;
	color: var(--color-burgundy);
	line-height: 1.2;
}

.section-divider {
	width: 4rem;
	height: 3px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--color-accent), transparent);
	margin: 1rem 0 0;
}

.section-divider--center {
	margin-left: auto;
	margin-right: auto;
}

/* Service cards */
.service-card {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 1.25rem;
	padding: 1.75rem;
	box-shadow: 0 10px 30px rgba(42, 31, 26, 0.05);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
	border-color: rgba(184, 134, 11, 0.45);
	box-shadow: 0 16px 40px rgba(42, 31, 26, 0.1);
	transform: translateY(-4px);
}

.service-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 1rem;
	background: rgba(92, 26, 46, 0.08);
	color: var(--color-burgundy);
	margin-bottom: 1.15rem;
}

/* Stats */
.stats-section {
	background: var(--color-burgundy);
	position: relative;
}

.stats-section::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 6px;
	background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.stats-section .font-serif {
	color: var(--color-accent);
}

.stats-section .stats-intro,
.stats-section .stat-label-on-dark {
	color: rgba(255, 255, 255, 0.72);
}

.stats-section .stat-value-on-dark {
	color: var(--color-accent);
}

.about-card .about-role {
	color: rgba(255, 255, 255, 0.65);
}

.about-card .about-bio {
	color: rgba(255, 255, 255, 0.8);
}

/* Why us */
.why-card {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 1rem;
	padding: 1.35rem 1.5rem;
	box-shadow: 0 4px 16px rgba(42, 31, 26, 0.04);
}

.why-card-index {
	font-family: "Lora", Georgia, serif;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--color-accent);
	line-height: 1;
}

/* Process timeline — vertical */
.process-timeline {
	list-style: none;
	margin: 0;
	padding: 0 0 0 1.5rem;
	border-left: 2px solid var(--color-border);
}

.process-timeline-entry {
	position: relative;
	padding: 0 0 2.5rem 1.75rem;
}

.process-timeline-entry:last-child {
	padding-bottom: 0;
}

.process-timeline-marker {
	position: absolute;
	left: -1.5rem;
	top: 0.15rem;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 999px;
	background: var(--color-surface);
	border: 2px solid var(--color-accent);
	color: var(--color-burgundy);
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translateX(-50%);
	box-shadow: 0 4px 12px rgba(42, 31, 26, 0.08);
}

.process-timeline-phase {
	display: block;
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--color-accent);
}

.process-timeline-phase-name {
	display: block;
	font-family: "Lora", Georgia, serif;
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--color-burgundy);
	margin-top: 0.2rem;
}

.process-timeline-card {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 1rem;
	padding: 1.35rem 1.5rem;
	margin-top: 0.85rem;
}

.process-timeline-card-title {
	font-family: "Lora", Georgia, serif;
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--color-text);
	margin-bottom: 0.5rem;
}

.process-timeline-card-desc {
	font-size: 0.9375rem;
	color: var(--color-muted);
	line-height: 1.65;
	margin: 0;
}

/* Testimonials */
.testimonials-slider {
	position: relative;
}

.testimonials-slider-viewport {
	overflow: hidden;
}

.testimonials-slider-track {
	display: flex;
	transition: transform 0.45s ease;
	will-change: transform;
}

.testimonials-slider-slide {
	flex: 0 0 100%;
	min-width: 0;
	padding: 0 0.35rem;
	box-sizing: border-box;
}

@media (min-width: 768px) {
	.testimonials-slider-slide {
		flex: 0 0 50%;
		padding: 0 0.5rem;
	}
}

.testimonials-slider-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-top: 1.75rem;
}

.testimonials-slider-controls.is-hidden {
	display: none;
}

.testimonials-slider-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.6rem;
	height: 2.6rem;
	border-radius: 999px;
	border: 1px solid var(--color-border);
	background: var(--color-surface);
	color: var(--color-burgundy);
	cursor: pointer;
	transition: border-color 0.15s ease, color 0.15s ease, background-color 0.15s ease;
}

.testimonials-slider-btn:hover:not(:disabled) {
	border-color: var(--color-accent);
	color: var(--color-accent);
}

.testimonials-slider-btn:disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

.testimonials-slider-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	min-height: 2.6rem;
}

.testimonials-slider-dot {
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 999px;
	border: none;
	padding: 0;
	background: var(--color-border);
	cursor: pointer;
	transition: background-color 0.15s ease, transform 0.15s ease;
}

.testimonials-slider-dot.is-active {
	background: var(--color-accent);
	transform: scale(1.2);
}

.testimonial-card {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 1.25rem;
	padding: 2rem;
	box-shadow: 0 8px 24px rgba(42, 31, 26, 0.05);
}

/* About card */
.about-card {
	background: linear-gradient(145deg, var(--color-burgundy), var(--color-navy-light));
	border-radius: 1.5rem;
	box-shadow: 0 20px 50px rgba(92, 26, 46, 0.25);
}

.bg-navy,
.bg-burgundy {
	background-color: var(--color-burgundy);
}

/* Team */
.team-card,
.team-card-featured {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 1.25rem;
	padding: 2rem;
}

.team-card-featured {
	border-color: rgba(184, 134, 11, 0.45);
	box-shadow: 0 12px 32px rgba(42, 31, 26, 0.08);
}

.team-avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 5rem;
	height: 5rem;
	border-radius: 999px;
	background: rgba(92, 26, 46, 0.08);
	border: 2px solid rgba(184, 134, 11, 0.35);
	color: var(--color-burgundy);
}

/* Contact */
.contact-card {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 1.25rem;
	padding: 2rem;
	box-shadow: 0 8px 24px rgba(42, 31, 26, 0.05);
}

.social-link {
	display: inline-flex;
	padding: 0.45rem 1rem;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--color-text);
	border: 1px solid var(--color-border);
	border-radius: 999px;
	transition: border-color 0.15s ease, color 0.15s ease;
}

.social-link:hover {
	border-color: var(--color-accent);
	color: var(--color-accent);
}

.social-link--whatsapp:hover {
	border-color: #25d366;
	color: #25d366;
}

/* CTA */
.cta-section {
	background: linear-gradient(160deg, var(--color-burgundy), #2d0f18);
	position: relative;
	overflow: hidden;
}

.cta-ornament {
	position: absolute;
	top: -4rem;
	right: -4rem;
	width: 14rem;
	height: 14rem;
	border-radius: 999px;
	border: 1px solid rgba(184, 134, 11, 0.2);
	pointer-events: none;
}

/* Category pills */
.category-pill {
	display: inline-flex;
	padding: 0.45rem 1rem;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--color-muted);
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 999px;
	transition: border-color 0.15s ease, color 0.15s ease, background-color 0.15s ease;
}

.category-pill:hover {
	border-color: var(--color-accent);
	color: var(--color-accent);
}

.category-pill.is-active {
	background: var(--color-burgundy);
	border-color: var(--color-burgundy);
	color: white;
}

/* Article cards */
.article-card {
	transition: background-color 0.15s ease, border-color 0.2s ease, box-shadow 0.2s ease;
	border-radius: 1rem;
}

#article-list > li {
	list-style: none;
}

/* Prose */
.prose-custom p {
	margin-top: 0;
}

.prose-custom p + p {
	margin-top: 1rem;
}

/* Animations */
.animate-in {
	opacity: 1;
	transform: none;
}

html.js .animate-in {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.55s ease, transform 0.55s ease;
}

html.js .animate-in.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Utilities */
.line-clamp-2 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.line-clamp-3 {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.bg-surface {
	background-color: var(--color-surface);
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.sr-only:focus {
	position: static;
	width: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	clip: auto;
	white-space: normal;
}
