:root {
	--brand: #0a6ea1;
	--brand-dark: #075a85;
	--accent: #15a05a;
	--accent-dark: #128049;
	--ink: #1f2937;
	--muted: #6b7280;
	--bg: #eef3f7;
	--card: #ffffff;
	--line: #e3e8ee;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
	font-family: "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
	color: var(--ink);
	background: var(--bg);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
.container {
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	padding: 0 20px;
}
a { color: var(--brand); }

/* Header */
.site-header {
	background: #ffffff;
	border-bottom: 1px solid var(--line);
}
.header-inner {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 20px;
}
.logo-cross {
	width: 40px;
	height: auto;
	border-radius: 8px;
}
.brand {
	font-size: 20px;
	font-weight: 700;
	color: var(--brand);
	line-height: 1.1;
}
.brand-sub {
	font-size: 14px;
	color: var(--muted);
}

/* Hero */
.hero {
	background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
	color: #ffffff;
}
.hero-inner {
	display: flex;
	align-items: center;
	gap: 30px;
	padding: 40px 20px;
}
.hero-text { flex: 1 1 auto; }
.hero h1 {
	font-size: 26px;
	margin: 0 0 10px;
	font-weight: 700;
	line-height: 1.25;
}
.hero p {
	margin: 0 0 22px;
	font-size: 16px;
	color: #dceaf4;
	max-width: 36em;
}
.cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--accent);
	color: #ffffff;
	text-decoration: none;
	font-size: 17px;
	font-weight: 600;
	padding: 13px 24px;
	border-radius: 10px;
	box-shadow: 0 6px 16px rgba(0,0,0,0.18);
	transition: background .15s ease, transform .15s ease;
}
.cta:hover { background: var(--accent-dark); transform: translateY(-1px); }
.cta-note {
	margin-top: 12px;
	font-size: 13px;
	color: #cfe2f0;
}
.hero-image {
	flex: 0 0 auto;
	width: 200px;
	border-radius: 14px;
	box-shadow: 0 10px 24px rgba(0,0,0,0.25);
	display: block;
}

/* Main cards */
.main {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
	padding: 34px 0 10px;
}
.card {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 22px 24px;
	box-shadow: 0 2px 10px rgba(16,42,67,0.05);
}
.card h2 {
	font-size: 18px;
	margin: 0 0 16px;
	color: var(--brand);
	display: flex;
	align-items: center;
	gap: 9px;
}
.card h2 svg { flex: 0 0 auto; }

/* Hours table */
.hours {
	width: 100%;
	border-collapse: collapse;
}
.hours th, .hours td {
	text-align: left;
	padding: 9px 6px;
	border-bottom: 1px solid var(--line);
	font-size: 15px;
}
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }
.hours .day { color: var(--muted); font-weight: 600; }
.hours .time { text-align: right; font-weight: 700; color: var(--ink); }

/* Contact list */
.contact-block { margin-bottom: 18px; }
.contact-block:last-child { margin-bottom: 0; }
.contact-label {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: var(--muted);
	margin: 0 0 3px;
	font-weight: 600;
}
.contact-value {
	margin: 0;
	font-size: 16px;
}
.contact-value a { font-weight: 600; text-decoration: none; }
.contact-value a:hover { text-decoration: underline; }
.phone { font-weight: 700; white-space: nowrap; }

/* Footer */
.site-footer {
	margin-top: 30px;
	border-top: 1px solid var(--line);
	background: #ffffff;
	color: var(--muted);
	font-size: 13px;
}
.footer-inner { padding: 18px 20px; text-align: center; }

/* Responsive */
@media (max-width: 760px) {
	.main { grid-template-columns: 1fr; }
	.hero-inner { flex-direction: column; align-items: flex-start; padding: 30px 20px; gap: 24px; }
	.hero-image { width: 150px; align-self: center; }
	.hero h1 { font-size: 22px; }
	.cta { width: 100%; justify-content: center; }
}
