:root {
	--navy: #1a2842;
	--navy-dark: #111c30;
	--navy-light: #243753;
	--accent: #c9a961;
	--accent-hover: #b8964c;
	--text: #1f2937;
	--text-muted: #6b7280;
	--bg-light: #f7f6f2;
	--bg-white: #ffffff;
	--border: #e5e7eb;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: var(--text);
	background: var(--bg-white);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

a { color: var(--navy); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--accent); }

h1, h2, h3, h4 {
	font-family: "Georgia", "Times New Roman", serif;
	color: var(--navy);
	font-weight: 600;
	letter-spacing: -0.01em;
}

/* ===== Buttons ===== */
.btn-accent {
	background: var(--accent);
	border: 1px solid var(--accent);
	color: var(--navy-dark);
	font-weight: 600;
	letter-spacing: 0.02em;
	padding: 0.6rem 1.4rem;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn-accent:hover,
.btn-accent:focus {
	background: var(--accent-hover);
	border-color: var(--accent-hover);
	color: var(--navy-dark);
}
.btn-outline-light {
	border-color: rgba(255, 255, 255, 0.6);
	color: #fff;
}
.btn-outline-light:hover {
	background: #fff;
	color: var(--navy);
	border-color: #fff;
}
.btn-lg { padding: 0.8rem 1.8rem; font-size: 1.05rem; }

/* ===== Header ===== */
.site-header {
	background: var(--navy-dark);
	border-bottom: 1px solid rgba(201, 169, 97, 0.18);
	position: sticky;
	top: 0;
	z-index: 100;
}
.brand {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	color: #fff;
}
.brand:hover { color: var(--accent); }
.brand-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1.5px solid var(--accent);
	border-radius: 50%;
	color: var(--accent);
	font-family: "Georgia", serif;
	font-weight: 700;
	font-size: 0.95rem;
	letter-spacing: 0.03em;
}
.brand-name {
	font-family: "Georgia", serif;
	font-size: 1.1rem;
	font-weight: 600;
	color: #fff;
}
.site-nav a {
	color: rgba(255, 255, 255, 0.8);
	margin: 0 0.9rem;
	font-size: 0.95rem;
	transition: color 0.2s ease;
}
.site-nav a:hover { color: var(--accent); }

/* ===== Hero ===== */
.hero {
	background:
		linear-gradient(135deg, rgba(17, 28, 48, 0.94), rgba(26, 40, 66, 0.92)),
		linear-gradient(45deg, var(--navy-dark), var(--navy));
	color: #fff;
	padding: 6rem 0 7rem;
	position: relative;
	overflow: hidden;
}
.hero::before {
	content: "";
	position: absolute;
	top: -50%;
	right: -10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(201, 169, 97, 0.08) 0%, transparent 60%);
	pointer-events: none;
}
.hero-eyebrow {
	color: var(--accent);
	font-size: 0.9rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin-bottom: 1.2rem;
	font-weight: 600;
}
.hero-title {
	color: #fff;
	font-size: clamp(2rem, 5vw, 3.4rem);
	margin-bottom: 1.5rem;
	line-height: 1.15;
}
.hero-lead {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.85);
	max-width: 640px;
	margin-bottom: 2.4rem;
}
.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}
.hero-actions .btn {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
}
.btn-ico { flex-shrink: 0; }
.btn-ico-group {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding-left: 0.7rem;
	margin-left: 0.2rem;
	border-left: 1px solid rgba(255, 255, 255, 0.35);
}
.hero-logo-wrap {
	margin: 0;
	text-align: center;
	position: relative;
	z-index: 1;
}
.hero-logo {
	max-width: 240px;
	width: 100%;
	height: auto;
	filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.35));
	opacity: 0.95;
}
.hero-logo-caption {
	margin-top: 1rem;
	font-family: "Georgia", serif;
	font-size: 0.95rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.8);
	letter-spacing: 0.02em;
}

/* ===== Sections ===== */
.section { padding: 5rem 0; }
.section-light { background: var(--bg-light); }
.section-dark {
	background: var(--navy);
	color: rgba(255, 255, 255, 0.88);
}
.section-dark h2,
.section-dark h3 { color: #fff; }

.section-eyebrow {
	color: var(--navy);
	font-size: 0.85rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin-bottom: 0.8rem;
	font-weight: 600;
}
.text-accent { color: var(--accent) !important; }

.section-title {
	font-size: clamp(1.7rem, 3.5vw, 2.4rem);
	margin-bottom: 1.5rem;
	position: relative;
	padding-bottom: 1rem;
}
.section-title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 50px;
	height: 3px;
	background: var(--accent);
}

/* ===== About — photo ===== */
.about-photo {
	margin: 0;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 20px 50px -20px rgba(26, 40, 66, 0.35);
	border: 1px solid var(--border);
	background: #fff;
}
.about-photo img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}
@media (min-width: 992px) {
	.about-photo {
		position: sticky;
		top: 6rem;
	}
}

/* ===== About — education ===== */
.education {
	margin-top: 2rem;
	padding: 1.4rem 1.6rem;
	background: #fff;
	border-left: 3px solid var(--accent);
	border-radius: 3px;
}
.education-label {
	font-size: 0.78rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--text-muted);
	margin-bottom: 0.5rem;
	font-weight: 600;
}
.education-place {
	font-family: "Georgia", serif;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--navy);
	line-height: 1.4;
	margin-bottom: 0.3rem;
}
.education-year {
	font-size: 0.95rem;
	color: var(--text-muted);
}

/* ===== About — membership ===== */
.membership {
	margin-top: 1.2rem;
	padding: 1.4rem 1.6rem;
	background: #fff;
	border-left: 3px solid var(--accent);
	border-radius: 3px;
	display: flex;
	align-items: center;
	gap: 1.4rem;
}
.membership-logo {
	flex: 0 0 auto;
	width: 72px;
	height: 72px;
	position: relative;
}
.membership-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}
.membership-logo-fallback {
	display: none;
	width: 72px;
	height: 72px;
	border: 2px solid var(--accent);
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	color: var(--navy);
	font-family: "Georgia", serif;
	font-weight: 700;
	font-size: 0.95rem;
	letter-spacing: 0.04em;
	text-align: center;
	line-height: 1.1;
	background: var(--bg-light);
}
.membership-text { flex: 1 1 auto; }
.membership-label {
	font-size: 0.78rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--text-muted);
	margin-bottom: 0.5rem;
	font-weight: 600;
}
.membership-place {
	font-family: "Georgia", serif;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--navy);
	line-height: 1.4;
}
.membership-reg {
	margin-top: 0.5rem;
	font-size: 0.95rem;
	color: var(--text-muted);
}
.membership-reg strong {
	color: var(--navy);
	font-weight: 600;
}
.membership-link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin-top: 0.6rem;
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--navy);
	border-bottom: 1px solid var(--accent);
	padding-bottom: 1px;
	transition: color 0.2s ease, border-color 0.2s ease;
}
.membership-link:hover {
	color: var(--accent);
	border-color: var(--accent);
}
.membership-link svg {
	transition: transform 0.2s ease;
}
.membership-link:hover svg {
	transform: translateX(3px);
}

@media (max-width: 575px) {
	.membership { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* ===== Services ===== */
.service-card {
	background: var(--navy-light);
	border: 1px solid rgba(201, 169, 97, 0.2);
	border-radius: 4px;
	padding: 2.2rem 2rem;
	height: 100%;
	transition: border-color 0.25s ease, transform 0.25s ease;
}
.service-card:hover {
	border-color: var(--accent);
	transform: translateY(-3px);
}
.service-icon {
	color: var(--accent);
	margin-bottom: 1.4rem;
}
.service-title {
	font-size: 1.35rem;
	margin-bottom: 1.2rem;
	color: #fff;
}
.service-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.service-list li {
	position: relative;
	padding-left: 1.4rem;
	margin-bottom: 0.7rem;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.97rem;
}
.service-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.6rem;
	width: 8px;
	height: 8px;
	border: 1.5px solid var(--accent);
	border-right: none;
	border-bottom: none;
	transform: rotate(135deg);
}

/* ===== Contacts ===== */
.contacts-lead {
	font-size: 1.1rem;
	color: var(--text-muted);
}
.contact-card {
	display: block;
	background: #fff;
	border: 1px solid var(--border);
	border-left: 3px solid var(--accent);
	border-radius: 3px;
	padding: 1.6rem 1.4rem;
	height: 100%;
	color: var(--text);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.contact-card:hover {
	border-color: var(--accent);
	box-shadow: 0 6px 20px rgba(26, 40, 66, 0.08);
	transform: translateY(-2px);
	color: var(--text);
}
.contact-card-static {
	cursor: default;
}
.contact-card-static:hover {
	transform: none;
	box-shadow: none;
	border-color: var(--border);
	border-left-color: var(--accent);
}
.contact-icon {
	color: var(--accent);
	margin-bottom: 0.9rem;
}
.contact-label {
	font-size: 0.78rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--text-muted);
	margin-bottom: 0.3rem;
}
.contact-value {
	font-family: "Georgia", serif;
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--navy);
}

/* ===== Footer ===== */
.site-footer {
	background: var(--navy-dark);
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
}
.site-footer a { color: rgba(255, 255, 255, 0.85); }
.site-footer a:hover { color: var(--accent); }
.footer-phone {
	font-family: "Georgia", serif;
	font-size: 1.05rem;
	color: var(--accent) !important;
}

/* ===== Responsive tweaks ===== */
@media (max-width: 767px) {
	.hero { padding: 4rem 0 5rem; }
	.section { padding: 3.5rem 0; }
	.brand-name { font-size: 1rem; }
	.hero-actions .btn { width: 100%; }
	.hero-logo { max-width: 180px; }
	.hero-logo-caption { font-size: 0.88rem; }
}
