:root {
	--ordo-gold: #c38d2a;
	--ordo-gold-hover: #b07d1f;
	--ordo-gold-light: rgb(195 141 42 / 0.1);
	--gray-50: #f9fafb;
	--gray-100: #f3f4f6;
	--gray-200: #e5e7eb;
	--gray-500: #6b7280;
	--gray-600: #4b5563;
	--gray-700: #374151;
	--gray-900: #111827;
	--white: #fff;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	font-family: Montserrat, system-ui, sans-serif;
	font-size: 16px;
	color: var(--gray-900);
	background: var(--white);
	line-height: 1.6;
}

h1,
h2,
h3,
h4 {
	font-family: Raleway, system-ui, sans-serif;
	font-weight: 700;
	line-height: 1.2;
}

a {
	color: inherit;
	text-decoration: none;
}

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

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

/* Header */
.site-header {
	background: var(--white);
	border-bottom: 1px solid var(--gray-100);
	position: sticky;
	top: 0;
	z-index: 50;
}

.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 1rem 0;
	gap: 0.5rem;
}

.logo-img {
	height: 4rem;
	width: auto;
}

.nav-toggle {
	display: none;
	background: var(--white);
	border: 2px solid var(--ordo-gold);
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	padding: 0.5rem 0.625rem;
	border-radius: 0.5rem;
	color: var(--gray-900);
	min-width: 2.75rem;
	min-height: 2.75rem;
}

.nav-toggle:hover {
	background: var(--gray-50);
}

.nav-links {
	display: flex;
	gap: 2rem;
	align-items: center;
}

.nav-link {
	font-weight: 500;
	color: var(--gray-700);
	transition: color 0.2s;
}

.nav-link:hover,
.nav-link--active {
	color: var(--ordo-gold);
}

@media (max-width: 767px) {
	.site-header .container {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}

	.nav-inner {
		padding-left: 0.125rem;
		padding-right: 0.125rem;
	}

	.nav-toggle {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.nav-links {
		display: none;
		width: 100%;
		flex-direction: column;
		align-items: stretch;
		padding: 1rem 1rem 1.25rem;
		gap: 0.25rem;
		border-top: 1px solid var(--gray-100);
		margin-top: 0.25rem;
	}

	.nav-links--open {
		display: flex;
	}

	.nav-link {
		padding: 0.875rem 1rem;
		border-radius: 0.5rem;
	}

	.nav-link:hover {
		background: var(--gray-50);
	}
}

.main-content {
	flex: 1;
}

/* Sections */
.section {
	padding: 5rem 0;
}

.section--muted {
	background: linear-gradient(to bottom right, var(--gray-50), var(--white));
}

.section--white {
	background: var(--white);
}

.section-title {
	text-align: center;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	margin: 0 0 1rem;
	color: var(--gray-900);
}

.section-lead {
	text-align: center;
	font-size: 1.125rem;
	color: var(--gray-600);
	max-width: 42rem;
	margin: 0 auto 3rem;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
	padding: 3rem 0 4rem;
}

@media (min-width: 1024px) {
	.hero-grid {
		grid-template-columns: 1fr 1fr;
		padding: 5rem 0 6rem;
	}
}

.hero-title {
	font-size: clamp(2rem, 5vw, 3.5rem);
	margin: 0 0 1.5rem;
}

.hero-text {
	font-size: 1.125rem;
	color: var(--gray-600);
	margin-bottom: 2rem;
}

.hero-img {
	border-radius: 1rem;
	box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

.btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}

@media (max-width: 767px) {
	.hero-grid > div:first-child {
		text-align: center;
	}

	.btn-row {
		flex-direction: column;
		align-items: center;
		width: 100%;
	}

	.btn-row .btn {
		width: 100%;
		max-width: 22rem;
	}
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.875rem 1.75rem;
	font-size: 1rem;
	font-weight: 600;
	font-family: inherit;
	border-radius: 0.75rem;
	cursor: pointer;
	border: 2px solid transparent;
	transition: background 0.2s, color 0.2s, box-shadow 0.2s;
	text-decoration: none;
}

.btn--primary {
	background: var(--ordo-gold);
	color: var(--white);
	border-color: var(--ordo-gold);
	box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.cta-inner .btn--primary {
	padding: 1.5rem 2.5rem;
	font-size: 1.125rem;
}

.btn--primary:hover {
	background: var(--ordo-gold-hover);
	border-color: var(--ordo-gold-hover);
}

.btn--outline {
	background: transparent;
	color: var(--ordo-gold);
	border-color: var(--ordo-gold);
}

.btn--outline:hover {
	background: var(--ordo-gold);
	color: var(--white);
}

/* Cards grid */
.cards-3 {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 768px) {
	.cards-3 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.cards-3 {
		grid-template-columns: repeat(3, 1fr);
	}
}

.card {
	background: var(--gray-50);
	border: 1px solid var(--gray-100);
	border-radius: 1rem;
	padding: 2rem;
	transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
	box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
	border-color: var(--ordo-gold);
}

.card h3 {
	font-family: Raleway, system-ui, sans-serif;
	font-weight: 600;
	font-size: 1.25rem;
	margin: 0 0 0.75rem;
}

/* Lucide ikone — zlatni stroke (kao u Horizons / lucide-react) */
.card-icon-wrap svg,
.service-icon svg,
.project-loc svg,
.cta-contact-icon svg,
.info-icon svg,
.footer-contact svg {
	stroke: var(--ordo-gold);
	color: var(--ordo-gold);
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.card-icon-wrap {
	width: 4rem;
	height: 4rem;
	border-radius: 0.75rem;
	background: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
	transition: background-color 0.3s ease;
}

.card:hover .card-icon-wrap {
	background: var(--ordo-gold);
}

.card-icon-wrap svg {
	width: 2rem;
	height: 2rem;
	transition: stroke 0.3s ease, color 0.3s ease;
}

.card:hover .card-icon-wrap svg {
	stroke: var(--white);
	color: var(--white);
}

.service-icon {
	width: 5rem;
	height: 5rem;
	border-radius: 1rem;
	background: rgb(195 141 42 / 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.service-icon svg {
	width: 2.5rem;
	height: 2.5rem;
}

.feature-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

.feature-list svg {
	width: 1.25rem;
	height: 1.25rem;
	flex-shrink: 0;
	margin-top: 0.125rem;
	stroke-width: 2.5;
}

.feature-list li::before {
	content: none;
}

.project-loc {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--ordo-gold);
	margin-bottom: 0.75rem;
}

.project-loc svg {
	width: 1.25rem;
	height: 1.25rem;
	stroke-width: 2.5;
	flex-shrink: 0;
}

.cta-contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	max-width: 56rem;
	margin: 0 auto 2rem;
}

@media (min-width: 640px) {
	.cta-contact-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.cta-contact-card {
	display: flex;
	align-items: center;
	background: var(--white);
	padding: 1.5rem;
	border-radius: 1rem;
	box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
	border: 1px solid var(--gray-100);
	transition: box-shadow 0.3s ease, border-color 0.3s ease;
	width: 100%;
}

.cta-contact-card:hover {
	box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
	border-color: var(--ordo-gold);
}

.cta-contact-icon {
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 0.75rem;
	background: var(--ordo-gold-light);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 1rem;
	flex-shrink: 0;
	transition: background-color 0.3s ease;
}

.cta-contact-card:hover .cta-contact-icon {
	background: var(--ordo-gold);
}

.cta-contact-icon svg {
	width: 1.75rem;
	height: 1.75rem;
	transition: stroke 0.3s ease, color 0.3s ease;
}

.cta-contact-card:hover .cta-contact-icon svg {
	stroke: var(--white);
	color: var(--white);
}

.cta-contact-text {
	text-align: left;
}

.cta-contact-label {
	font-size: 0.875rem;
	color: var(--gray-500);
	display: block;
}

.cta-contact-value {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--gray-900);
}

.info-icon svg {
	width: 1.5rem;
	height: 1.5rem;
}

.info-row:hover .info-icon {
	background: var(--ordo-gold);
}

.info-row:hover .info-icon svg {
	stroke: var(--white);
	color: var(--white);
}

.footer-contact a {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.footer-contact svg {
	width: 1rem;
	height: 1rem;
	flex-shrink: 0;
}

.about-text p {
	margin: 0 0 1rem;
	color: var(--gray-600);
	line-height: 1.625;
}

.card p {
	margin: 0;
	color: var(--gray-600);
	line-height: 1.625;
}

/* About */
.about-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
}

@media (min-width: 1024px) {
	.about-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.about-img {
	border-radius: 1rem;
	box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

.text-gold {
	color: var(--ordo-gold);
	font-weight: 700;
}

blockquote.quote {
	border-left: 4px solid var(--ordo-gold);
	padding: 1rem 1rem 1rem 1.5rem;
	margin: 1.5rem 0;
	font-style: italic;
	color: var(--gray-700);
	background: var(--white);
	border-radius: 0 0.75rem 0.75rem 0;
	box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
}

blockquote.quote footer {
	margin-top: 0.5rem;
	font-size: 0.875rem;
	color: var(--gray-500);
	font-style: normal;
}

/* Projects */
.projects-4 {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 768px) {
	.projects-4 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.projects-4 {
		grid-template-columns: repeat(4, 1fr);
	}
}

.project-card {
	background: var(--gray-50);
	border: 1px solid var(--gray-100);
	border-radius: 1rem;
	padding: 2rem;
	min-height: 13rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.project-card:hover {
	background: var(--white);
	box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.15);
	border-color: var(--ordo-gold);
}

.project-card p {
	margin: 0;
	color: var(--gray-600);
	line-height: 1.5;
}

/* Contact CTA */
.cta-inner {
	text-align: center;
	max-width: 56rem;
	margin: 0 auto;
}

.cta-buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	margin-top: 2rem;
}

/* Footer */
.site-footer {
	background: var(--gray-50);
	border-top: 1px solid var(--gray-100);
	margin-top: 5rem;
	padding: 3rem 0 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 768px) {
	.footer-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.footer-logo {
	height: 2.5rem;
	width: auto;
	margin-bottom: 1rem;
}

.footer-tag {
	color: var(--gray-600);
	font-size: 0.875rem;
	margin: 0;
}

.footer-heading {
	font-weight: 600;
	color: var(--gray-900);
	display: block;
	margin-bottom: 1rem;
}

.footer-nav {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.footer-nav a {
	color: var(--gray-600);
	font-size: 0.875rem;
}

.footer-nav a:hover {
	color: var(--ordo-gold);
}

.footer-contact {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.footer-contact a {
	color: var(--gray-600);
	font-size: 0.875rem;
}

.footer-contact a:hover {
	color: var(--ordo-gold);
}

.footer-copy {
	border-top: 1px solid var(--gray-200);
	margin-top: 2rem;
	padding: 2rem 1rem;
	text-align: center;
}

.footer-copy p {
	margin: 0;
	font-size: 0.875rem;
	color: var(--gray-500);
}

/* Services page blocks */
.service-block {
	background: var(--white);
	border-radius: 1rem;
	box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.08);
	border: 1px solid var(--gray-100);
	margin-bottom: 3rem;
	overflow: hidden;
	transition: box-shadow 0.3s;
}

.service-block:hover {
	box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.service-inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	padding: 2rem;
}

@media (min-width: 1024px) {
	.service-inner {
		grid-template-columns: 1fr 2fr;
	}
}

.service-icon {
	width: 5rem;
	height: 5rem;
	border-radius: 1rem;
	background: rgb(195 141 42 / 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	margin-bottom: 1.5rem;
}

.feature-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.feature-list li {
	margin-bottom: 0.75rem;
	color: var(--gray-700);
}

/* Contact page */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	align-items: start;
}

.contact-grid--wide {
	grid-template-columns: 1fr;
}

@media (min-width: 768px) {
	.contact-info-list {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 0.75rem;
	}

	.contact-info-list .info-row {
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
		padding: 1.25rem;
		height: 100%;
	}

	.contact-info-list .info-icon {
		margin-bottom: 0.5rem;
	}
}

.panel {
	background: var(--white);
	border-radius: 1rem;
	box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.08);
	border: 1px solid var(--gray-100);
	padding: 2rem;
}

.panel h2 {
	margin: 0 0 1.5rem;
	font-size: 1.5rem;
}

.panel-subtitle {
	margin: 0 0 1rem;
	font-size: 1.25rem;
	font-family: Raleway, system-ui, sans-serif;
	font-weight: 600;
}

.panel-lead {
	color: var(--gray-600);
	font-size: 0.875rem;
	margin: 0 0 1.5rem;
}

.contact-grid--form-only {
	width: 100%;
	max-width: 52rem;
	margin: 0 auto;
}

.contact-grid--wide {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.contact-grid--form-only .panel,
.contact-grid--wide .panel--form-full,
.panel--form-full {
	width: 100%;
	max-width: 52rem;
	margin-left: auto;
	margin-right: auto;
}

.panel--form-full {
	padding: 2rem;
}

@media (min-width: 768px) {
	.panel--form-full {
		padding: 2.5rem 3rem;
	}
}

@media (min-width: 1024px) {
	.panel--form-full {
		padding: 3rem 3.5rem;
	}

	.panel--form-full .form-group input,
	.panel--form-full .form-group textarea {
		padding: 0.75rem 1rem;
		font-size: 1.0625rem;
	}

	.panel--form-full textarea {
		min-height: 10rem;
	}
}

.info-row {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1rem;
	border-radius: 0.75rem;
	transition: background 0.2s;
}

.info-row:hover {
	background: var(--gray-50);
}

.info-icon {
	width: 3rem;
	height: 3rem;
	border-radius: 0.75rem;
	background: rgb(195 141 42 / 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 1.25rem;
}

.info-label {
	font-size: 0.875rem;
	color: var(--gray-500);
	display: block;
	margin-bottom: 0.25rem;
}

.info-value {
	font-size: 1.125rem;
	font-weight: 600;
}

.form-group {
	margin-bottom: 1.25rem;
}

.form-group label {
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 0.625rem 0.75rem;
	border: 1px solid var(--gray-200);
	border-radius: 0.75rem;
	font-family: inherit;
	font-size: 1rem;
}

.form-group textarea {
	min-height: 8rem;
	resize: vertical;
}

.form-hint {
	font-size: 0.75rem;
	color: var(--gray-500);
	margin-top: 0.25rem;
}

.hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.alert {
	padding: 1rem 1.25rem;
	border-radius: 0.75rem;
	margin-bottom: 1.5rem;
	font-size: 0.9375rem;
}

.alert--ok {
	background: #ecfdf5;
	color: #065f46;
	border: 1px solid #a7f3d0;
}

.alert--err {
	background: #fef2f2;
	color: #991b1b;
	border: 1px solid #fecaca;
}

.contact-success-view {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 2.5rem 1.5rem;
	width: 100%;
	box-sizing: border-box;
}

.contact-success-view[hidden] {
	display: none !important;
}

.contact-success-view.is-visible,
.contact-success-view:not([hidden]) {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.panel--form-full .contact-success-view h2 {
	margin: 0 0 1rem;
	font-size: 1.75rem;
	color: var(--gray-900);
	text-align: center;
	width: 100%;
}

.contact-success-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4.5rem;
	height: 4.5rem;
	margin: 0 auto 1.5rem;
	border-radius: 9999px;
	background: #ecfdf5;
	color: #059669;
	flex-shrink: 0;
}

.contact-success-icon svg {
	display: block;
	margin: 0 auto;
}

.contact-success-text {
	margin: 0 0 2.25rem;
	padding: 0 1rem;
	max-width: 32rem;
	color: var(--gray-600);
	line-height: 1.6;
	text-align: center;
}

.contact-success-actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	width: 100%;
	max-width: 20rem;
	margin: 0 auto;
}

.contact-success-actions .btn {
	width: 100%;
	min-width: 12rem;
	box-sizing: border-box;
}

@media (min-width: 520px) {
	.contact-success-actions {
		flex-direction: row;
		justify-content: center;
		max-width: none;
		width: auto;
	}

	.contact-success-actions .btn {
		width: auto;
		min-width: 11rem;
	}
}

.btn--block {
	width: 100%;
	padding: 1rem 1.5rem;
}

/* WhatsApp (isti zlatni ton kao ostale ikone) */
.whatsapp-svg {
	color: var(--ordo-gold);
	fill: var(--ordo-gold);
	flex-shrink: 0;
}

.cta-contact-card:hover .cta-contact-icon .whatsapp-svg,
.info-row:hover .info-icon .whatsapp-svg {
	color: var(--white);
	fill: var(--white);
}

.footer-contact a:hover .whatsapp-svg {
	color: var(--ordo-gold-hover);
	fill: var(--ordo-gold-hover);
}

.whatsapp-float {
	position: fixed;
	bottom: 1.5rem;
	right: 1.5rem;
	z-index: 100;
	width: 3.75rem;
	height: 3.75rem;
	border-radius: 50%;
	background: var(--ordo-gold);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 14px rgb(0 0 0 / 0.2);
	transition: transform 0.2s ease, background-color 0.2s ease;
}

.whatsapp-float:hover {
	background: var(--ordo-gold-hover);
	transform: scale(1.06);
	color: var(--white);
}

.whatsapp-float .whatsapp-svg {
	color: var(--white);
	fill: var(--white);
}

.form-group input[type='file'] {
	width: 100%;
	padding: 0.5rem;
	border: 1px solid var(--gray-200);
	border-radius: 0.75rem;
	font-family: inherit;
	font-size: 0.875rem;
	background: var(--white);
}
