/* Footer — dark shell with columns + legal bar */

.ora-footer {
	--ora-footer-bg: #141414;
	--ora-footer-bg-deep: #0e0e0e;
	--ora-footer-muted: #a8a8a8;
	--ora-footer-line: rgba(255, 255, 255, 0.1);
	position: relative;
	overflow: hidden;
	margin-top: 0;
	background: var(--ora-footer-bg);
	color: var(--ora-footer-muted);
	font-family: var(--ora-font);
}

.ora-footer__glow {
	position: absolute;
	right: -8%;
	bottom: -35%;
	width: min(42vw, 420px);
	height: min(42vw, 420px);
	border-radius: 50%;
	background: radial-gradient(circle, rgba(201, 16, 120, 0.28) 0%, rgba(201, 16, 120, 0.06) 45%, transparent 70%);
	pointer-events: none;
	z-index: 0;
}

.ora-footer a {
	color: var(--ora-footer-muted);
	text-decoration: none;
	transition: color var(--ora-duration) var(--ora-ease);
}

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

.ora-footer .ora-container {
	position: relative;
	z-index: 1;
}

/* ——— Columns ——— */
.ora-footer__main {
	padding: clamp(3.75rem, 7vw, 5.5rem) 0 clamp(3.25rem, 6vw, 4.5rem);
}

.ora-footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.25rem;
}

@media (min-width: 720px) {
	.ora-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.ora-footer__grid {
		grid-template-columns: 1.2fr 1fr 1.1fr 1fr;
		gap: 2rem 2.5rem;
	}
}

.ora-footer__logo {
	display: inline-flex;
	align-items: center;
	margin-bottom: 1.25rem;
	line-height: 0;
}

.ora-footer__logo img,
.ora-footer__logo-img {
	display: block;
	width: clamp(110px, 14vw, 140px);
	height: auto;
}

.ora-footer__about {
	margin: 0;
	max-width: 22rem;
	font-size: 0.92rem;
	line-height: 1.65;
	color: var(--ora-footer-muted);
}

.ora-footer__heading {
	margin: 0 0 1.1rem;
	color: var(--ora-white);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.ora-footer__heading::after {
	content: "";
	display: block;
	width: 2.25rem;
	height: 2px;
	margin-top: 0.55rem;
	background: var(--ora-magenta);
	border-radius: 2px;
}

.ora-footer__links,
.ora-footer__contact {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ora-footer__links li + li,
.ora-footer__contact li + li {
	margin-top: 0.55rem;
}

.ora-footer__links a {
	font-size: 0.92rem;
}

.ora-footer__links--compact {
	margin-top: 1.15rem;
}

.ora-footer__contact li {
	display: flex;
	align-items: flex-start;
	gap: 0.7rem;
	font-size: 0.92rem;
	line-height: 1.45;
}

.ora-footer__icon {
	display: inline-flex;
	flex: 0 0 auto;
	margin-top: 0.1rem;
	color: var(--ora-red);
}

.ora-footer__icon svg {
	width: 16px;
	height: 16px;
}

.ora-footer__connect-text {
	margin: 0 0 1rem;
	font-size: 0.92rem;
	line-height: 1.55;
}

.ora-footer__social {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ora-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--ora-white);
}

.ora-footer__social a:hover {
	background: rgba(227, 6, 19, 0.2);
	border-color: rgba(227, 6, 19, 0.45);
	color: var(--ora-white);
}

.ora-footer__social svg {
	width: 16px;
	height: 16px;
}

/* ——— Legal bar ——— */
.ora-footer__legal {
	border-top: 1px solid var(--ora-footer-line);
	background: var(--ora-footer-bg-deep);
	padding: 1.5rem 0;
}

.ora-footer__legal-inner {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	align-items: center;
	justify-content: space-between;
	text-align: center;
}

@media (min-width: 768px) {
	.ora-footer__legal-inner {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 1.5rem;
		text-align: left;
	}
}

.ora-footer__legal p {
	margin: 0;
	max-width: 46rem;
	font-size: 0.78rem;
	line-height: 1.5;
	color: #7d7d7d;
	text-align: center;
}

@media (min-width: 768px) {
	.ora-footer__legal p {
		text-align: left;
	}
}

.ora-footer__legal-links,
.ora-footer__legal-nav {
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
	align-items: center;
	gap: 0.85rem 1.25rem;
	flex-shrink: 0;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ora-footer__legal-links li,
.ora-footer__legal-nav li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ora-footer__legal-links a,
.ora-footer__legal-nav a {
	font-size: 0.82rem;
	font-weight: 600;
	color: #b0b0b0;
	white-space: nowrap;
}

.ora-footer__legal-links a:hover,
.ora-footer__legal-nav a:hover {
	color: var(--ora-white);
}

/* Tips strip — same layout as featured, larger type */
.ora-tips {
	background: var(--ora-wash);
	padding: 3.25rem 0;
	text-align: center;
	border-top: 3px solid var(--ora-black);
	box-shadow: inset 0 3px 0 0 var(--ora-red);
}

.ora-tips__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.5rem, 2.8vw, 2.15rem);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: var(--ora-black);
}

.ora-tips__text {
	margin: 0 auto;
	max-width: 42rem;
	color: var(--ora-muted);
	font-size: clamp(1.05rem, 1.5vw, 1.2rem);
	line-height: 1.65;
}

/* Featured strip under footer */
.ora-featured {
	background: var(--ora-wash);
	padding: 2rem 0;
	text-align: center;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.ora-featured__title {
	margin: 0 0 0.5rem;
	font-size: 1.15rem;
	font-weight: 800;
	color: var(--ora-black);
}

.ora-featured p {
	margin: 0;
	color: var(--ora-muted);
	font-size: 0.95rem;
}

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