/* Вътрешни страници: галерия, информация, контакти */

.page-hero { background: var(--bg-secondary); padding: 54px 0 34px; }
.page-hero h1 { margin-top: 10px; }

/* --- Филтри и галерия ------------------------------------------------------ */
.filters { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.filter {
	padding: 9px 20px;
	border: 1px solid var(--line-strong);
	border-radius: 40px;
	font-size: 11px; font-weight: 700;
	letter-spacing: .12em; text-transform: uppercase;
	color: var(--text-muted);
}
.filter:hover { border-color: var(--line-strong); background: var(--bg-secondary); color: var(--text-main); }
.filter.is-active { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.filters__count { margin-left: auto; font-size: 12px; color: var(--text-muted); }

.masonry { columns: 4 260px; column-gap: 14px; }
.masonry__item { margin: 0 0 14px; break-inside: avoid; }
.masonry__item img { width: 100%; border-radius: var(--r-sm); }
.masonry__item figcaption { margin-top: 7px; font-size: 11.5px; color: var(--text-muted); }

/* --- Текстови страници ----------------------------------------------------- */
.prose { max-width: 780px; }
.prose h2 { margin: 44px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 {
	font-family: var(--font-body);
	font-size: 12px; font-weight: 700;
	letter-spacing: .14em; text-transform: uppercase;
	color: var(--gold-ink);
	margin: 28px 0 12px;
}
.prose p { color: var(--text-muted); margin-bottom: 14px; }
.muted-note { font-size: 12.5px; }
.muted-note a { color: var(--gold-ink); text-decoration: underline; }

.table { width: 100%; border-collapse: collapse; margin: 6px 0 14px; }
.table th, .table td { padding: 11px 14px; text-align: left; font-size: 13.5px; border-bottom: 1px solid var(--border); }
.table th {
	font-size: 10px; font-weight: 700;
	letter-spacing: .14em; text-transform: uppercase;
	color: var(--gold-ink);
}
.table td { color: var(--text-muted); }

.ticks { margin: 4px 0 14px; }
.ticks li { position: relative; padding: 5px 0 5px 26px; font-size: 14px; color: var(--text-muted); }
.ticks li::before {
	content: ""; position: absolute; left: 2px; top: 12px;
	width: 11px; height: 6px;
	border-left: 1.5px solid var(--sage); border-bottom: 1.5px solid var(--sage);
	transform: rotate(-45deg);
}

.faq { border-bottom: 1px solid var(--border); }
.faq summary {
	display: flex; align-items: center; justify-content: space-between; gap: 16px;
	padding: 16px 0;
	font-size: 15px; font-weight: 600;
	cursor: pointer; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary svg { flex: none; color: var(--sage); transition: transform .2s; }
.faq[open] summary svg { transform: rotate(180deg); }
.faq p { padding-bottom: 16px; font-size: 14px; }

/* --- Контакти -------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-card {
	border: 1px solid var(--line-strong);
	border-radius: var(--r-md);
	overflow: hidden;
	background: var(--bg-card);
}
.contact-card > img { width: 100%; height: 210px; object-fit: cover; }
.contact-card__body { padding: 26px; }
.contact-card__body .base-card__icon { margin-bottom: 16px; }
.contact-card h2 { margin-bottom: 4px; }
.contact-list { margin: 20px 0 22px; }
.contact-list li { display: flex; align-items: center; gap: 11px; padding: 6px 0; font-size: 14px; color: var(--text-muted); }
.contact-list svg { color: var(--sage); flex: none; }
.contact-list a:hover { color: var(--gold-ink); }

@media (max-width: 900px) {
	.contact-grid { grid-template-columns: 1fr; }
	.masonry { columns: 2 200px; }
}
@media (max-width: 560px) { .masonry { columns: 1; } }
