/* ==========================================================================
   Karabega Čikma — Design System & Styles
   ========================================================================== */

/* --- 1. CSS Variables --- */
:root {
	--color-forest: #1a3a2f;
	--color-forest-light: #2a5244;
	--color-forest-dark: #0f241c;
	--color-cream: #f7f2e9;
	--color-ivory: #faf8f4;
	--color-gold: #c9a227;
	--color-gold-light: #e0bc4a;
	--color-copper: #b87333;
	--color-wood: #3d2914;
	--color-wood-light: #5c4033;
	--color-text: #2c2419;
	--color-text-muted: #5a5045;
	--color-text-light: #f7f2e9;
	--color-white: #ffffff;

	--font-display: 'Cormorant Garamond', Georgia, serif;
	--font-body: 'Source Sans 3', system-ui, sans-serif;

	--shadow-warm: 0 4px 24px rgba(61, 41, 20, 0.08);
	--shadow-warm-md: 0 8px 32px rgba(61, 41, 20, 0.12);
	--shadow-warm-lg: 0 16px 48px rgba(26, 58, 47, 0.15);

	--radius-sm: 6px;
	--radius-md: 12px;
	--radius-lg: 20px;
	--radius-card: 14px;

	--wrap-max: 1200px;
	--header-height: 80px;
	--transition: 0.3s ease;
}

/* --- 2. Reset & Base --- */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: var(--header-height);
	overflow-x: clip;
}

body {
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.65;
	color: var(--color-text);
	background-color: var(--color-ivory);
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: inherit;
	text-decoration: none;
	transition: color var(--transition), opacity var(--transition);
}

ul {
	list-style: none;
}

address {
	font-style: normal;
}

/* Paper texture overlay */
body::before {
	content: '';
	position: fixed;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
	pointer-events: none;
	z-index: 0;
	opacity: 0.4;
}

/* --- 3. Utilities --- */
.wrap {
	width: 100%;
	max-width: var(--wrap-max);
	margin-inline: auto;
	padding-inline: 1.25rem;
}

.section {
	padding-block: 4.5rem;
	position: relative;
}

.section--cream {
	background-color: var(--color-cream);
}

.section--ivory {
	background-color: var(--color-ivory);
}

.section--dark {
	background-color: var(--color-forest-dark);
	color: var(--color-text-light);
}

.section--board {
	background: linear-gradient(165deg, var(--color-wood) 0%, var(--color-forest-dark) 50%, var(--color-forest) 100%);
	color: var(--color-text-light);
	padding-block: 5rem;
}

.section--future {
	background-color: var(--color-ivory);
	padding-block: 3rem;
	border-top: 1px solid rgba(26, 58, 47, 0.08);
}

/* Section headers */
.section-header {
	text-align: center;
	max-width: 640px;
	margin-inline: auto;
	margin-bottom: 3rem;
}

.section-header--light .section-title,
.section-header--light .section-desc {
	color: var(--color-text-light);
}

.section-header--light .section-label {
	color: var(--color-gold-light);
}

.section-label {
	display: block;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--color-copper);
	margin-bottom: 0.5rem;
}

.section-title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 5vw, 2.75rem);
	font-weight: 600;
	color: var(--color-forest);
	line-height: 1.2;
	margin-bottom: 0.75rem;
}

.section-header--light .section-title {
	color: var(--color-cream);
}

.section-desc {
	font-size: 1.05rem;
	color: var(--color-text-muted);
	line-height: 1.7;
}

.section-header--light .section-desc {
	color: rgba(247, 242, 233, 0.85);
}

.ornament-divider {
	margin: 1rem auto;
	max-width: 200px;
	color: var(--color-gold);
	opacity: 0.7;
}

.ornament-divider svg {
	width: 100%;
	height: auto;
}

/* --- 4. Ornaments & Dividers --- */
.ornament-bg {
	position: fixed;
	top: 10%;
	right: -5%;
	width: 300px;
	height: 300px;
	color: var(--color-forest);
	opacity: 0.04;
	pointer-events: none;
	z-index: 0;
}

.ornament-bg__svg {
	width: 100%;
	height: 100%;
}

.divider {
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
	opacity: 0.5;
	max-width: var(--wrap-max);
	margin-inline: auto;
}

.divider--gold {
	margin-top: 2rem;
}

/* --- 5. Buttons --- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.75rem 1.75rem;
	font-family: var(--font-body);
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	border-radius: var(--radius-sm);
	border: 2px solid transparent;
	cursor: pointer;
	transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
	white-space: nowrap;
}

.btn--primary {
	background-color: var(--color-forest);
	color: var(--color-cream);
	border-color: var(--color-forest);
	box-shadow: 0 2px 12px rgba(26, 58, 47, 0.22);
}

.btn--primary:hover {
	background-color: var(--color-forest-light);
	border-color: var(--color-copper);
	color: var(--color-cream);
	transform: translateY(-2px);
	box-shadow: 0 4px 20px rgba(26, 58, 47, 0.28);
}

.btn--primary:focus-visible {
	outline: 2px solid var(--color-copper);
	outline-offset: 2px;
}

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

.btn--outline:hover {
	background: var(--color-forest);
	color: var(--color-cream);
}

.section--dark .btn--outline {
	color: var(--color-cream);
	border-color: var(--color-cream);
}

.section--dark .btn--outline:hover {
	background: var(--color-cream);
	color: var(--color-forest);
}

.btn--gold {
	background-color: var(--color-cream);
	color: var(--color-forest);
	border-color: rgba(247, 242, 233, 0.35);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.btn--gold:hover {
	background-color: var(--color-white);
	border-color: var(--color-cream);
	color: var(--color-forest);
	transform: translateY(-2px);
}

/* Badge */
.badge {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 0.4rem 0.9rem;
	border-radius: 100px;
	background: var(--color-forest);
	color: var(--color-gold-light);
	border: 1px solid var(--color-gold);
}

.badge--floating {
	margin-bottom: 1.25rem;
	background: rgba(26, 58, 47, 0.9);
	backdrop-filter: blur(8px);
	box-shadow: var(--shadow-warm-md);
}

/* --- 6. Header --- */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	height: var(--header-height);
	background: rgba(250, 248, 244, 0.92);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid transparent;
	transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.header--scrolled {
	background: rgba(250, 248, 244, 0.98);
	box-shadow: var(--shadow-warm);
	border-bottom-color: rgba(26, 58, 47, 0.08);
}

.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	gap: 1rem;
}

.logo {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
}

.logo__name {
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--color-forest);
	line-height: 1.2;
}

.logo__tagline {
	font-size: 0.65rem;
	font-weight: 500;
	color: var(--color-text-muted);
	letter-spacing: 0.04em;
}

@media (max-width: 400px) {
	.logo__tagline {
		display: none;
	}

	.logo__name {
		font-size: 1.15rem;
	}
}

/* Backdrop za mobilni meni */
.nav-backdrop {
	display: none;
}

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

.nav__list {
	display: flex;
	gap: 1.75rem;
}

.nav__link {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--color-text);
	position: relative;
}

.nav__link::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--color-copper);
	transition: width var(--transition);
}

.nav__link:hover {
	color: var(--color-copper);
}

.nav__link:hover::after {
	width: 100%;
}

.nav__cta {
	flex-shrink: 0;
}

/* Hamburger */
.hamburger {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 10px;
	background: none;
	border: none;
	cursor: pointer;
	position: relative;
	z-index: 10003;
	flex-shrink: 0;
}

.hamburger__line {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--color-forest);
	border-radius: 1px;
	transition: transform var(--transition), opacity var(--transition);
}

.hamburger.is-active .hamburger__line:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.hamburger.is-active .hamburger__line:nth-child(2) {
	opacity: 0;
}

.hamburger.is-active .hamburger__line:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* --- Mobilna navigacija --- */
@media (max-width: 767px) {
	.nav-backdrop {
		display: block;
		position: fixed;
		inset: 0;
		z-index: 10001;
		background: rgba(15, 36, 28, 0.55);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity var(--transition), visibility var(--transition);
	}

	body.nav-open .nav-backdrop {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.header {
		z-index: 10002;
	}

	.nav {
		position: fixed;
		top: 0;
		right: 0;
		width: min(100%, 320px);
		height: 100%;
		height: 100dvh;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: calc(var(--header-height) + 1.5rem) 1.5rem 2rem;
		background: var(--color-cream);
		box-shadow: -8px 0 32px rgba(15, 36, 28, 0.15);
		z-index: 10002;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		transform: translateX(100%);
		visibility: hidden;
		transition: transform 0.35s ease, visibility 0.35s ease;
	}

	body.nav-open {
		overflow: hidden;
	}

	body.nav-open .nav {
		transform: translateX(0);
		visibility: visible;
	}

	.nav__list {
		flex-direction: column;
		gap: 0;
	}

	.nav__link {
		font-size: 1.2rem;
		padding: 1rem 0;
		border-bottom: 1px solid rgba(26, 58, 47, 0.08);
	}

	.nav__link::after {
		display: none;
	}

	.nav__cta {
		margin-top: auto;
		width: 100%;
		justify-content: center;
	}
}

/* --- 7. Hero --- */
.hero {
	padding-top: calc(var(--header-height) + 3rem);
	padding-bottom: 4rem;
	background: linear-gradient(180deg, var(--color-ivory) 0%, var(--color-cream) 60%, var(--color-ivory) 100%);
	position: relative;
	overflow: hidden;
}

.hero__ornament {
	position: absolute;
	top: 15%;
	left: -3%;
	width: 180px;
	height: 180px;
	color: var(--color-gold);
	opacity: 0.12;
	pointer-events: none;
}

.hero__ornament svg {
	width: 100%;
	height: 100%;
}

.hero__grid {
	display: grid;
	gap: 2.5rem;
	position: relative;
	z-index: 1;
}

.hero__grid > * {
	min-width: 0;
}

.hero__title {
	font-family: var(--font-display);
	font-size: clamp(2.25rem, 6vw, 3.5rem);
	font-weight: 600;
	line-height: 1.15;
	color: var(--color-forest);
	margin-bottom: 1.25rem;
}

.hero__subtitle {
	font-size: 1.1rem;
	color: var(--color-text-muted);
	max-width: 520px;
	margin-bottom: 2rem;
	line-height: 1.75;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.hero__visual {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.hero__floating-card {
	position: absolute;
	bottom: -1rem;
	left: -0.5rem;
	right: 1rem;
	background: var(--color-forest);
	color: var(--color-cream);
	padding: 1rem 1.25rem;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-warm-lg);
	border-left: 3px solid var(--color-gold);
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	max-width: 280px;
	z-index: 2;
}

.hero__floating-icon {
	font-size: 1.5rem;
	flex-shrink: 0;
}

.hero__floating-text {
	font-size: 0.85rem;
	line-height: 1.5;
	opacity: 0.95;
}

.hero__trust {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.75rem;
}

.trust-card {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 1.1rem;
	background: var(--color-white);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-warm);
	border: 1px solid rgba(26, 58, 47, 0.06);
	transition: transform var(--transition), box-shadow var(--transition);
}

.trust-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-warm-md);
}

.trust-card__icon {
	width: 28px;
	height: 28px;
	color: var(--color-copper);
	flex-shrink: 0;
}

.trust-card__icon svg {
	width: 100%;
	height: 100%;
}

.trust-card__label {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--color-forest);
}

/* --- 8. Media / Images --- */
.media-img,
.placeholder-img {
	position: relative;
	border-radius: var(--radius-card);
	overflow: hidden;
	min-height: 200px;
	margin: 0;
	background: linear-gradient(145deg, var(--color-forest) 0%, var(--color-wood) 100%);
}

.media-img img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.media-img--photo:hover img {
	transform: scale(1.04);
}

/* Fallback label (bez slike) */
.placeholder-img::before {
	content: attr(data-label);
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-size: 1.1rem;
	font-style: italic;
	color: rgba(247, 242, 233, 0.9);
	text-align: center;
	padding: 1.5rem;
	z-index: 2;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.media-img--photo::before {
	display: none;
}

.media-img--photo::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 55%, rgba(15, 36, 28, 0.35) 100%);
	z-index: 1;
	pointer-events: none;
}

.media-img--dish::after,
.media-img--gallery::after {
	background: linear-gradient(180deg, transparent 70%, rgba(15, 36, 28, 0.25) 100%);
}

.media-img--hero {
	min-height: 320px;
	aspect-ratio: 4 / 3;
	box-shadow: var(--shadow-warm-lg);
}

.media-img--hero::after {
	background: linear-gradient(135deg, rgba(26, 58, 47, 0.15) 0%, transparent 50%);
}

.media-img--maglaj {
	min-height: 260px;
}

.media-img--reservation {
	min-height: 280px;
}

.media-img--dish {
	min-height: 180px;
	aspect-ratio: 4 / 3;
	border-radius: 0;
}

.media-img--gallery {
	min-height: 220px;
	aspect-ratio: 4 / 3;
	width: 100%;
	border-radius: var(--radius-md);
}

.media-img--map {
	min-height: 300px;
}

.media-img--map::after {
	background: rgba(250, 248, 244, 0.55);
}

.media-img__caption {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--color-forest);
	text-align: center;
	padding: 1.5rem;
	z-index: 2;
	background: rgba(250, 248, 244, 0.72);
	backdrop-filter: blur(2px);
}

/* --- 9. About Section --- */
.about-intro {
	max-width: 720px;
	margin-inline: auto;
	text-align: center;
	margin-bottom: 3.5rem;
}

.about-intro__text {
	font-size: 1.15rem;
	line-height: 1.8;
	color: var(--color-text-muted);
}

.values-grid {
	display: grid;
	gap: 1.5rem;
	margin-bottom: 4rem;
}

.value-card {
	background: var(--color-white);
	padding: 2rem 1.75rem;
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-warm);
	border: 1px solid rgba(26, 58, 47, 0.06);
	border-top: 3px solid var(--color-gold);
	transition: transform var(--transition), box-shadow var(--transition);
}

.value-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-warm-md);
}

.value-card__icon {
	width: 48px;
	height: 48px;
	color: var(--color-copper);
	margin-bottom: 1.25rem;
}

.value-card__icon svg {
	width: 100%;
	height: 100%;
}

.value-card__title {
	font-family: var(--font-display);
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--color-forest);
	margin-bottom: 0.75rem;
}

.value-card__text {
	font-size: 0.95rem;
	color: var(--color-text-muted);
	line-height: 1.7;
}

.maglaj-block {
	display: grid;
	gap: 2rem;
	background: var(--color-forest);
	color: var(--color-cream);
	border-radius: var(--radius-lg);
	padding: 2.5rem 2rem;
	overflow: hidden;
	position: relative;
}

.maglaj-block::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, rgba(201, 162, 39, 0.15), transparent 70%);
	pointer-events: none;
}

.maglaj-block__title {
	font-family: var(--font-display);
	font-size: 1.75rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--color-gold-light);
}

.maglaj-block__text {
	font-size: 1rem;
	line-height: 1.8;
	opacity: 0.92;
}

.maglaj-block__visual .media-img {
	border-radius: var(--radius-md);
}

/* --- 10. Menu Cards --- */
.menu-grid {
	display: grid;
	gap: 1.75rem;
}

.menu-card {
	background: var(--color-white);
	border-radius: var(--radius-card);
	overflow: hidden;
	box-shadow: var(--shadow-warm);
	border: 1px solid rgba(26, 58, 47, 0.06);
	transition: transform var(--transition), box-shadow var(--transition);
	display: flex;
	flex-direction: column;
}

.menu-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-warm-lg);
}

.menu-card__img {
	border-radius: 0;
	flex-shrink: 0;
}

.menu-card__body {
	padding: 1.5rem 1.5rem 1.75rem;
	position: relative;
	border-top: 2px solid var(--color-gold);
	flex: 1;
	display: flex;
	flex-direction: column;
}

.menu-card__badge {
	position: absolute;
	top: -0.6rem;
	right: 1.25rem;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.3rem 0.65rem;
	border-radius: 4px;
	background: var(--color-forest);
	color: var(--color-cream);
}

.menu-card__badge--featured {
	background: var(--color-copper);
}

.menu-card__badge--soon {
	background: var(--color-wood-light);
}

.menu-card__title {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--color-forest);
	margin-bottom: 0.5rem;
	margin-top: 0.25rem;
}

.menu-card__desc {
	font-size: 0.9rem;
	color: var(--color-text-muted);
	line-height: 1.65;
	flex: 1;
	margin-bottom: 1rem;
}

.menu-card__link {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--color-copper);
	transition: color var(--transition);
}

.menu-card__link:hover {
	color: var(--color-gold);
}

/* --- 11. Gallery --- */
.gallery-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(2, 1fr);
}

.gallery-item {
	border-radius: var(--radius-md);
	transition: transform var(--transition);
}

.gallery-item:hover {
	transform: scale(1.02);
}

.gallery-item--wide {
	grid-column: 1 / -1;
}

/* --- 12. Benefits --- */
.benefits-grid {
	display: grid;
	gap: 1.25rem;
}

.benefit-card {
	background: var(--color-white);
	padding: 1.75rem 1.5rem;
	border-radius: var(--radius-md);
	border-left: 4px solid var(--color-gold);
	box-shadow: var(--shadow-warm);
	transition: transform var(--transition), box-shadow var(--transition);
}

.benefit-card:hover {
	transform: translateX(4px);
	box-shadow: var(--shadow-warm-md);
}

.benefit-card__num {
	display: block;
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 700;
	color: var(--color-gold);
	opacity: 0.5;
	line-height: 1;
	margin-bottom: 0.5rem;
}

.benefit-card__title {
	font-family: var(--font-display);
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--color-forest);
	margin-bottom: 0.5rem;
}

.benefit-card__text {
	font-size: 0.9rem;
	color: var(--color-text-muted);
	line-height: 1.65;
}

/* --- 13. Daily Board --- */
.daily-board {
	max-width: 560px;
	margin-inline: auto;
	text-align: center;
	padding: 2.5rem 2rem;
	background: rgba(0, 0, 0, 0.2);
	border-radius: var(--radius-lg);
	border: 2px solid rgba(201, 162, 39, 0.4);
	box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.2);
	position: relative;
}

.daily-board::before,
.daily-board::after {
	content: '';
	position: absolute;
	width: 40px;
	height: 40px;
	border: 2px solid var(--color-gold);
	opacity: 0.5;
}

.daily-board::before {
	top: 12px;
	left: 12px;
	border-right: none;
	border-bottom: none;
}

.daily-board::after {
	bottom: 12px;
	right: 12px;
	border-left: none;
	border-top: none;
}

.daily-board__label {
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-gold-light);
}

.daily-board__title {
	font-family: var(--font-display);
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	font-weight: 600;
	font-style: italic;
	margin: 0.5rem 0 1.75rem;
	color: var(--color-cream);
}

.daily-board__list {
	text-align: left;
	margin-bottom: 2rem;
}

.daily-board__item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0.75rem 0;
	border-bottom: 1px dashed rgba(247, 242, 233, 0.2);
}

.daily-board__item:last-child {
	border-bottom: none;
}

.daily-board__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--color-gold);
	flex-shrink: 0;
}

.daily-board__dish {
	font-family: var(--font-display);
	font-size: 1.2rem;
	color: var(--color-cream);
}

.daily-board__cta {
	width: 100%;
	max-width: 320px;
}

/* --- 14. Reservation --- */
.reservation-block {
	display: grid;
	gap: 2.5rem;
	align-items: center;
}

.reservation-block__text {
	font-size: 1.05rem;
	color: var(--color-text-muted);
	line-height: 1.75;
	margin: 1rem 0 1.75rem;
	max-width: 520px;
}

.reservation-block__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.reservation-block__phone-link {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--color-forest);
}

.reservation-block__phone-link:hover {
	color: var(--color-copper);
}

.reservation-block__note {
	font-size: 0.85rem;
	color: var(--color-text-muted);
	font-style: italic;
}

/* --- 15. Location --- */
.location-grid {
	display: grid;
	gap: 2rem;
}

.location-card {
	background: var(--color-white);
	padding: 2rem;
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-warm);
	border: 1px solid rgba(26, 58, 47, 0.06);
}

.location-card__title {
	font-family: var(--font-display);
	font-size: 1.75rem;
	font-weight: 600;
	color: var(--color-forest);
	margin-bottom: 1.25rem;
}

.location-card__address {
	font-size: 1.05rem;
	line-height: 1.7;
	margin-bottom: 1.5rem;
	color: var(--color-text);
}

.location-card__address strong {
	font-family: var(--font-display);
	font-size: 1.25rem;
	color: var(--color-forest);
}

.location-card__info {
	margin-bottom: 1.5rem;
}

.location-card__row {
	display: flex;
	justify-content: space-between;
	padding: 0.6rem 0;
	border-bottom: 1px solid rgba(26, 58, 47, 0.08);
}

.location-card__row dt {
	font-weight: 600;
	color: var(--color-forest);
}

.location-card__row dd {
	color: var(--color-text-muted);
}

.location-card__contact a {
	color: var(--color-copper);
	font-weight: 500;
}

.location-card__contact a:hover {
	color: var(--color-gold);
}

.location-map {
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-warm);
}

/* --- 16. Future Web --- */
.future-block {
	text-align: center;
	max-width: 640px;
	margin-inline: auto;
}

.future-block__title {
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 500;
	color: var(--color-text-muted);
	margin-bottom: 1.25rem;
}

.future-block__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem 1.5rem;
}

.future-block__list li {
	font-size: 0.85rem;
	color: var(--color-text-muted);
	position: relative;
	padding-left: 1rem;
}

.future-block__list li::before {
	content: '·';
	position: absolute;
	left: 0;
	color: var(--color-gold);
	font-weight: bold;
}

/* --- 17. Footer --- */
.footer {
	background: var(--color-forest-dark);
	color: var(--color-cream);
	padding-top: 3.5rem;
}

.footer__grid {
	display: grid;
	gap: 2.5rem;
	padding-bottom: 2.5rem;
	border-bottom: 1px solid rgba(247, 242, 233, 0.1);
}

.footer__logo {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.35rem;
}

.footer__tagline {
	font-size: 0.9rem;
	opacity: 0.8;
}

.footer__nav ul {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.footer__nav a {
	font-size: 0.9rem;
	opacity: 0.85;
	transition: opacity var(--transition), color var(--transition);
}

.footer__nav a:hover {
	opacity: 1;
	color: var(--color-gold-light);
}

.footer__contact p {
	font-size: 0.9rem;
	opacity: 0.85;
	margin-bottom: 0.35rem;
}

.footer__contact a:hover {
	color: var(--color-gold-light);
}

.footer__bottom {
	padding-block: 1.5rem;
	text-align: center;
}

.footer__demo {
	font-size: 0.75rem;
	opacity: 0.55;
	max-width: 560px;
	margin-inline: auto;
	margin-bottom: 0.75rem;
	line-height: 1.5;
}

.footer__copy {
	font-size: 0.8rem;
	opacity: 0.45;
}

/* --- 18. Fade-in Animations --- */
.fade-in {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.fade-in--delay { transition-delay: 0.1s; }
.fade-in--delay-2 { transition-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.fade-in {
		opacity: 1;
		transform: none;
		transition: none;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}

/* --- 19. Responsive --- */

/* Hero — mobilni (< 768px) */
@media (max-width: 767px) {
	.hero {
		padding-top: calc(var(--header-height) + 1.25rem);
		padding-bottom: 2.5rem;
	}

	.hero__ornament {
		width: 120px;
		height: 120px;
		top: 8%;
		left: auto;
		right: -2rem;
		opacity: 0.08;
	}

	.hero__grid {
		gap: 1.5rem;
	}

	.hero__title {
		font-size: clamp(1.65rem, 7.5vw, 2.15rem);
		line-height: 1.2;
		margin-bottom: 0.85rem;
	}

	.hero__subtitle {
		font-size: 0.95rem;
		line-height: 1.65;
		margin-bottom: 1.25rem;
		max-width: none;
	}

	.hero__actions {
		flex-direction: column;
		gap: 0.75rem;
	}

	.hero__actions .btn {
		width: 100%;
		justify-content: center;
		min-height: 48px;
	}

	.hero__visual .media-img--hero {
		min-height: 0;
		aspect-ratio: 16 / 10;
		width: 100%;
	}

	.hero__floating-card {
		position: relative;
		bottom: auto;
		left: auto;
		right: auto;
		max-width: none;
		width: 100%;
		margin-top: 0;
		padding: 0.9rem 1rem;
	}

	.hero__floating-text {
		font-size: 0.8rem;
	}

	.hero__trust {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.6rem;
	}

	.trust-card {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
		padding: 0.85rem 0.75rem;
	}

	.trust-card__icon {
		width: 22px;
		height: 22px;
	}

	.trust-card__label {
		font-size: 0.75rem;
		line-height: 1.35;
	}

	.hero .divider--gold {
		margin-top: 1.5rem;
	}
}

@media (max-width: 380px) {
	.hero__trust {
		grid-template-columns: 1fr;
	}

	.trust-card {
		flex-direction: row;
		align-items: center;
	}
}

@media (min-width: 640px) {
	.wrap {
		padding-inline: 1.5rem;
	}

	.values-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.menu-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.benefits-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 768px) {
	:root {
		--header-height: 88px;
	}

	.header__inner .nav {
		margin-left: auto;
	}

	.hamburger {
		display: none;
	}

	.nav-backdrop {
		display: none !important;
	}

	.nav {
		position: static;
		width: auto;
		height: auto;
		padding: 0;
		flex-direction: row;
		background: transparent;
		box-shadow: none;
		transform: none;
		visibility: visible;
		overflow: visible;
	}

	.nav__list {
		flex-direction: row;
		gap: 1.75rem;
	}

	.nav__link {
		font-size: 0.9rem;
		padding: 0;
		border-bottom: none;
	}

	.nav__cta {
		margin-top: 0;
		width: auto;
	}

	.hero__grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto auto;
		grid-template-areas:
			"content visual"
			"trust trust";
		align-items: center;
		gap: 3rem 2.5rem;
	}

	.hero__content {
		grid-area: content;
	}

	.hero__visual {
		grid-area: visual;
	}

	.hero__trust {
		grid-area: trust;
		grid-template-columns: repeat(4, 1fr);
	}

	.hero__floating-card {
		position: absolute;
		bottom: -1rem;
		left: -0.5rem;
		right: 1rem;
		max-width: 280px;
		width: auto;
		margin-top: 0;
	}

	.maglaj-block {
		grid-template-columns: 1.2fr 1fr;
		padding: 3rem;
		align-items: center;
	}

	.reservation-block {
		grid-template-columns: 1fr 1fr;
	}

	.location-grid {
		grid-template-columns: 1fr 1.2fr;
	}

	.footer__grid {
		grid-template-columns: 1.5fr 1fr 1fr;
	}
}

@media (min-width: 1024px) {
	.section {
		padding-block: 6rem;
	}

	.menu-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.gallery-grid {
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: repeat(2, 200px);
	}

	.gallery-item {
		min-height: 200px;
	}

	.gallery-item:nth-child(1) {
		grid-row: span 2;
		min-height: 100%;
	}

	.gallery-item--wide {
		grid-column: span 2;
	}

	.benefits-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.hero__floating-card {
		left: auto;
		right: -1rem;
		bottom: 2rem;
	}
}

@media (min-width: 1280px) {
	.hero__title {
		font-size: 3.75rem;
	}

	.media-img--hero {
		min-height: 420px;
	}
}
