/*
 * Instant Restoration — default (non-homepage) styles.
 *
 * Deliberately minimal. The homepage uses the full dark-theme style.css.
 * Every other page (Elementor pages, blog posts, etc.) gets only this file
 * so existing content renders as it always did, with a clean neutral wrapper.
 */

/* ---------- Reset (light touch) ---------- */
* { box-sizing: border-box; }

html, body {
	margin: 0;
	padding: 0;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.55;
	color: #1a1a1a;
	background: #ffffff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

a { color: #FF4D03; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---------- Layout container ---------- */
.ir-default-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

/* ---------- Minimal header ---------- */
.ir-default-header {
	background: #ffffff;
	border-bottom: 1px solid #e6e6e6;
	padding: 16px 0;
}

.ir-default-header .ir-default-container {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.ir-default-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	color: #1a1a1a;
	font-size: 15px;
	text-decoration: none;
}

.ir-default-brand:hover { text-decoration: none; color: #FF4D03; }
.ir-default-brand img { width: 32px; height: 32px; flex-shrink: 0; }
.ir-default-brand .ir-default-brand-mark {
	display: inline-flex;
	align-items: center;
	flex-direction: column;
	line-height: 1;
}
.ir-default-brand .ir-default-brand-mark .b1 { font-weight: 700; letter-spacing: 0.02em; font-size: 14px; }
.ir-default-brand .ir-default-brand-mark .b2 { font-size: 10px; letter-spacing: 0.18em; color: #666; margin-top: 3px; font-weight: 500; }

.ir-default-nav {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
	margin-left: auto;
}

.ir-default-nav a {
	color: #444;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	padding: 6px 4px;
}
.ir-default-nav a:hover { color: #FF4D03; text-decoration: none; }

.ir-default-phone {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #1a1a1a;
	font-weight: 600;
	font-size: 14px;
	padding: 8px 14px;
	border: 1px solid #ddd;
	border-radius: 6px;
	text-decoration: none;
	min-height: 44px;
}
.ir-default-phone:hover {
	border-color: #FF4D03;
	color: #FF4D03;
	text-decoration: none;
}

/* ---------- Minimal footer ---------- */
.ir-default-footer {
	background: #f6f6f4;
	border-top: 1px solid #e6e6e4;
	padding: 36px 0 24px;
	margin-top: 48px;
	color: #4a4a4a;
	font-size: 13px;
	line-height: 1.6;
}
.ir-default-footer p { margin: 0 0 10px; }
.ir-default-footer .ir-default-nap strong { color: #1a1a1a; }
.ir-default-footer .ir-default-certs {
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #666;
	margin-top: 14px;
}
.ir-default-footer .ir-default-fine {
	margin-top: 18px;
	padding-top: 14px;
	border-top: 1px solid #e0e0de;
	font-size: 11px;
	color: #888;
	letter-spacing: 0.04em;
}
.ir-default-footer a { color: #1a1a1a; }
.ir-default-footer a:hover { color: #FF4D03; }

/* ---------- Default content wrappers (only used if no page builder) ---------- */
.ir-default-content {
	padding: 36px 0 8px;
}
.ir-default-content h1 {
	font-size: clamp(28px, 4vw, 44px);
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin: 0 0 12px;
}
.ir-default-content .entry-meta {
	color: #777;
	font-size: 13px;
	margin-bottom: 24px;
}

/* ---------- Responsive — minimal ---------- */
@media (max-width: 600px) {
	.ir-default-header .ir-default-container { gap: 12px; }
	.ir-default-nav { width: 100%; order: 3; gap: 12px; margin-left: 0; }
	.ir-default-phone { margin-left: auto; }
	.ir-default-footer { padding: 28px 0 18px; }
}
