:root {
	--bg: #f6f1eb;
	--bg-alt: #efe9e1;
	--surface: #ffffff;
	--primary: #3f3a36;
	--text: #1f1c1a;
	--accent: #c8a96a;
	--border: #e6dfd6;

	--radius: 18px;
	--radius-pill: 999px;

	--container: 1120px;
	--shadow-soft: 0 10px 24px rgba(31, 28, 26, 0.08);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: Lato, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 18px;
	line-height: 1.6;
}

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

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

.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 20px;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 10px;
	background: var(--accent);
	color: #fff;
	padding: 10px 14px;
	border-radius: var(--radius-pill);
}

.skip-link:focus {
	left: 10px;
	z-index: 9999;
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(246, 241, 235, 0.88);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--border);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 0;
}

.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 200px;
}

.brand-logo {
	width: 44px;
	height: 44px;
	background: transparent;
	border: none;
	padding: 0;
	border-radius: 0;
}

.brand-name {
	font-family: "Playfair Display", serif;
	letter-spacing: 0.2px;
	font-weight: 700;
	color: var(--text);
}

.nav {
	display: flex;
	align-items: center;
	gap: 18px;
}

.nav-link {
	color: var(--primary);
	font-size: 16px;
	letter-spacing: 0.3px;
}

.nav-link:hover {
	color: var(--text);
}

.header-cta {
	display: inline-flex;
}

/* Typography */
h1,
h2,
h3 {
	font-family: "Playfair Display", serif;
	margin: 0 0 10px;
}

h1 {
	font-size: clamp(40px, 4.5vw, 56px);
	line-height: 1.12;
}

h2 {
	font-size: clamp(28px, 3vw, 36px);
	line-height: 1.2;
}

h3 {
	font-size: clamp(20px, 2.1vw, 24px);
	line-height: 1.25;
}

p {
	margin: 0 0 14px;
}

.lead {
	color: var(--primary);
	font-size: 18px;
}

.eyebrow {
	margin: 0 0 10px;
	color: var(--primary);
	letter-spacing: 0.6px;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 18px;
	border-radius: 40px;
	font-size: 16px;
	letter-spacing: 0.5px;
	border: 1px solid transparent;
	transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
	user-select: none;
	white-space: nowrap;
}

.btn:focus {
	outline: none;
}

.btn:focus-visible {
	outline: 3px solid rgba(200, 169, 106, 0.45);
	outline-offset: 2px;
}

.btn-primary {
	background: var(--accent);
	color: #ffffff;
}

.btn-primary:hover {
	background: #b89453;
}

.btn-secondary {
	background: transparent;
	color: var(--accent);
	border-color: var(--accent);
}

.btn-secondary:hover {
	background: rgba(200, 169, 106, 0.10);
}

/* Sections */
.section {
	padding: 68px 0;
}

.section-alt {
	background: var(--bg-alt);
}

.section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 22px;
}

.section-subtitle {
	color: var(--primary);
	margin: 0;
	max-width: 62ch;
}

.gold-rule {
	height: 1px;
	width: min(240px, 35vw);
	background: var(--accent);
	opacity: 0.9;
}

/* Hero */
.hero {
	position: relative;
	padding: 78px 0;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(90deg, rgba(246, 241, 235, 0.95), rgba(246, 241, 235, 0.70)),
		url("iliustracija/patalpos.jpg");
	background-size: cover;
	background-position: center;
}

.hero-inner {
	position: relative;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 28px;
	align-items: start;
}

.hero-content {
	padding-top: 6px;
}

.cta-row {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 18px;
}

.hero-panel {
	background: rgba(255, 255, 255, 0.70);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 18px 18px;
}

.panel-title {
	font-family: "Playfair Display", serif;
	font-size: 22px;
	margin: 0 0 10px;
	color: var(--text);
}

.panel-divider {
	height: 1px;
	background: var(--border);
	margin: 14px 0;
}

.list {
	margin: 0;
	padding-left: 18px;
	color: var(--primary);
}

.list li {
	margin: 8px 0;
}

/* Layout helpers */
.two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 26px;
	align-items: start;
}

.media {
	margin: 0;
}

.media img {
	border-radius: var(--radius);
	border: 1px solid var(--border);
}

.media-caption {
	margin-top: 10px;
	color: var(--primary);
	font-size: 15px;
}

/* Cards */
.cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: box-shadow 200ms ease;
}

.card:hover {
	box-shadow: var(--shadow-soft);
}

.card-img {
	width: 100%;
	height: 210px;
	object-fit: cover;
}

.card-body {
	padding: 16px 16px 18px;
}

.card-body p {
	color: var(--primary);
}

.card-accent {
	margin-top: 10px;
	color: var(--accent);
	font-size: 15px;
}

/* Promo dark section */
.section-dark {
	background: var(--primary);
	color: var(--bg);
}

.section-dark h2 {
	color: var(--bg);
}

.section-subtitle-invert {
	color: rgba(246, 241, 235, 0.85);
}

.promo {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}

/* Footer / Contact */
.footer {
	background: var(--text);
	color: var(--bg-alt);
	padding: 68px 0 28px;
}

.footer h2 {
	color: var(--bg-alt);
}

.footer-text {
	color: rgba(239, 233, 225, 0.85);
	max-width: 70ch;
}

.footer-inner {
	display: grid;
	grid-template-columns: 1.3fr 0.7fr;
	gap: 24px;
	align-items: start;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	margin-top: 18px;
	border-top: 1px solid rgba(200, 169, 106, 0.35);
	padding-top: 16px;
}

.contact-item {
	display: grid;
	grid-template-columns: 130px 1fr;
	gap: 12px;
}

.contact-label {
	color: var(--accent);
	font-size: 14px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.contact-value {
	color: rgba(239, 233, 225, 0.92);
}

.footer-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(200, 169, 106, 0.22);
	border-radius: var(--radius);
	overflow: hidden;
}

.footer-card img {
	width: 100%;
	height: 240px;
	object-fit: cover;
}

.footer-card-caption {
	margin: 0;
	padding: 14px 14px 16px;
	color: rgba(239, 233, 225, 0.85);
}

.footer-bottom {
	margin-top: 28px;
	padding-top: 18px;
	border-top: 1px solid rgba(200, 169, 106, 0.22);
	color: rgba(239, 233, 225, 0.75);
	font-size: 14px;
}

/* Responsive */
@media (max-width: 980px) {
	.nav {
		display: none;
	}
	.hero-inner {
		grid-template-columns: 1fr;
	}
	.two-col {
		grid-template-columns: 1fr;
	}
	.cards {
		grid-template-columns: 1fr;
	}
	.promo {
		flex-direction: column;
		align-items: flex-start;
	}
	.footer-inner {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	.btn,
	.card {
		transition: none;
	}
}
