/* ==========================================================================
   Balchik Summer — main stylesheet
   Palette: turquoise sea, coral sunset, warm sand, sunshine yellow
   ========================================================================== */

:root {
	--sea-deep: #0b6e8f;
	--sea: #12a5b8;
	--aqua: #7fe3e8;
	--aqua-soft: #e2f8fa;
	--sun: #ffc94d;
	--sun-deep: #f5a623;
	--coral: #ff6f61;
	--coral-deep: #ef5350;
	--sand: #fff6e9;
	--cream: #fffdf8;
	--ink: #17394a;
	--ink-soft: #4d6b7a;
	--white: #ffffff;
	--radius: 20px;
	--radius-sm: 12px;
	--shadow: 0 10px 30px rgba(11, 110, 143, 0.12);
	--shadow-lg: 0 18px 45px rgba(11, 110, 143, 0.18);
	--font-body: 'Nunito', 'Segoe UI', system-ui, -apple-system, sans-serif;
	--font-head: 'Quicksand', 'Nunito', 'Segoe UI', system-ui, sans-serif;
	--container: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--ink);
	background: var(--cream);
	line-height: 1.65;
	font-size: 17px;
}

h1, h2, h3, h4, h5 { font-family: var(--font-head); color: var(--ink); line-height: 1.25; }
a { color: var(--sea-deep); }
img { max-width: 100%; height: auto; }

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

.lead { font-size: 1.18rem; color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
	display: inline-block;
	padding: 13px 26px;
	border-radius: 999px;
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 1rem;
	text-decoration: none;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--primary { background: var(--coral); color: #fff; }
.btn--primary:hover { background: var(--coral-deep); color: #fff; }
.btn--sun { background: var(--sun); color: var(--ink); }
.btn--sun:hover { background: var(--sun-deep); color: var(--ink); }
.btn--ghost { background: transparent; color: var(--sea-deep); border-color: var(--sea-deep); }
.btn--ghost:hover { background: var(--sea-deep); color: #fff; }
.btn--white { background: #fff; color: var(--sea-deep); }
.btn--block { display: block; width: 100%; text-align: center; }

/* ---------- Header ---------- */
.bs-header {
	position: sticky; top: 0; z-index: 999;
	background: rgba(255, 253, 248, 0.94);
	backdrop-filter: blur(8px);
	box-shadow: 0 2px 18px rgba(23, 57, 74, 0.08);
}
.bs-header__inner {
	display: flex; align-items: center; gap: 18px;
	min-height: 74px;
}
.bs-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; color: var(--ink); }
.bs-brand__mark {
	display: inline-flex; align-items: center; justify-content: center;
	width: 42px; height: 42px; border-radius: 14px;
	background: linear-gradient(135deg, var(--sea) 0%, var(--aqua) 100%);
	color: #fff; font-size: 1.3rem;
	box-shadow: 0 6px 16px rgba(18, 165, 184, 0.35);
}
.bs-brand small { display: block; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--sea); font-weight: 700; }

.bs-nav { margin-left: auto; }
.bs-nav ul { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.bs-nav a {
	display: block; padding: 9px 13px; border-radius: 999px;
	text-decoration: none; font-weight: 700; font-size: .92rem; color: var(--ink-soft);
	font-family: var(--font-head);
	transition: background .15s ease, color .15s ease;
}
.bs-nav a:hover { background: var(--aqua-soft); color: var(--sea-deep); }
.bs-nav .current-menu-item > a, .bs-nav .current_page_item > a { color: var(--sea-deep); background: var(--aqua-soft); }
.bs-nav li.menu-item--cta > a { background: var(--coral); color: #fff; padding: 10px 20px; box-shadow: 0 6px 16px rgba(255, 111, 97, .35); }
.bs-nav li.menu-item--cta > a:hover { background: var(--coral-deep); }

.bs-header__tools { display: flex; align-items: center; gap: 12px; }

/* Language switcher */
.bs-lang { position: relative; }
.bs-lang__toggle {
	display: flex; align-items: center; gap: 6px;
	background: var(--sand); border: 1.5px solid #f3e3c8; color: var(--ink);
	border-radius: 999px; padding: 7px 12px; cursor: pointer;
	font-family: var(--font-head); font-weight: 700; font-size: .88rem;
}
.bs-lang__toggle:hover { border-color: var(--sun); }
.bs-lang__caret { font-size: .7rem; transition: transform .2s ease; }
.bs-lang.is-open .bs-lang__caret { transform: rotate(180deg); }
.bs-lang__menu {
	position: absolute; right: 0; top: calc(100% + 8px);
	min-width: 190px; margin: 0; padding: 8px;
	list-style: none; background: #fff; border-radius: 16px;
	box-shadow: var(--shadow-lg);
	opacity: 0; visibility: hidden; transform: translateY(-6px);
	transition: all .18s ease; z-index: 1000;
}
.bs-lang.is-open .bs-lang__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.bs-lang__menu a {
	display: flex; gap: 8px; align-items: center;
	padding: 8px 12px; border-radius: 10px;
	text-decoration: none; color: var(--ink); font-weight: 600; font-size: .92rem;
}
.bs-lang__menu a:hover { background: var(--aqua-soft); }
.bs-lang__menu a.is-active { background: var(--sea-deep); color: #fff; }

/* Mobile menu */
.bs-burger {
	display: none; background: var(--sand); border: 1.5px solid #f3e3c8;
	width: 44px; height: 44px; border-radius: 12px; cursor: pointer;
	font-size: 1.2rem; color: var(--ink);
}

/* ---------- Hero ---------- */
.bs-hero {
	position: relative;
	background: linear-gradient(160deg, #0b6e8f 0%, #12a5b8 55%, #35c4cf 100%);
	color: #fff;
	padding: 96px 0 130px;
	overflow: hidden;
	text-align: center;
}
.bs-hero--image { background-size: cover; background-position: center; }
.bs-hero--image::before { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(11,110,143,.72), rgba(18,165,184,.55)); }
.bs-hero__inner { position: relative; z-index: 2; max-width: 820px; }
.bs-hero__eyebrow {
	display: inline-block; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.4);
	padding: 6px 18px; border-radius: 999px; font-size: .85rem; font-weight: 700;
	letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px;
}
.bs-hero__title { color: #fff; font-size: clamp(2.1rem, 5vw, 3.4rem); margin: 0 0 16px; text-shadow: 0 4px 24px rgba(9, 60, 80, .35); }
.bs-hero__subtitle { font-size: clamp(1.05rem, 2vw, 1.25rem); color: rgba(255,255,255,.92); margin: 0 auto 32px; max-width: 640px; }
.bs-hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.bs-hero__wave { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: 70px; color: var(--cream); z-index: 1; display: block; }

/* decorative sun */
.bs-hero::after {
	content: '☀'; position: absolute; top: -46px; right: -30px;
	font-size: 190px; color: rgba(255, 201, 77, .35); z-index: 0;
	transform: rotate(12deg);
}

/* Page hero (inner pages) */
.bs-hero--page { padding: 70px 0 100px; }
.bs-hero--page .bs-hero__title { font-size: clamp(1.8rem, 4vw, 2.6rem); }

/* ---------- Sections ---------- */
.bs-section { padding: 76px 0; }
.bs-section--sand { background: var(--sand); }
.bs-section--aqua { background: var(--aqua-soft); }
.bs-section__head { text-align: center; max-width: 640px; margin: 0 auto 46px; }
.bs-section__head h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin: 0 0 10px; }
.bs-section__head p { color: var(--ink-soft); margin: 0; font-size: 1.06rem; }
.bs-section__head .bs-eyebrow, .bs-eyebrow {
	display: inline-block; color: var(--sea); font-family: var(--font-head);
	font-weight: 800; letter-spacing: .14em; text-transform: uppercase; font-size: .8rem; margin-bottom: 8px;
}

/* ---------- Apartment cards ---------- */
.apt-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px; }
.apt-card {
	background: #fff; border-radius: var(--radius); overflow: hidden;
	box-shadow: var(--shadow); display: flex; flex-direction: column;
	transition: transform .2s ease, box-shadow .2s ease;
}
.apt-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.apt-card__media { position: relative; display: block; aspect-ratio: 4 / 2.6; background: linear-gradient(135deg, var(--aqua-soft), var(--sand)); overflow: hidden; }
.apt-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.apt-card:hover .apt-card__media img { transform: scale(1.05); }
.apt-card__placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.apt-card__price {
	position: absolute; top: 16px; right: 16px;
	background: rgba(255, 255, 255, .95); color: var(--ink);
	font-family: var(--font-head); font-weight: 800; font-size: 1.2rem;
	padding: 8px 16px; border-radius: 999px; box-shadow: 0 6px 16px rgba(23,57,74,.2);
}
.apt-card__price small { font-size: .72rem; font-weight: 700; color: var(--ink-soft); }
.apt-card__body { padding: 26px 26px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.apt-card__title { margin: 0; font-size: 1.35rem; }
.apt-card__title a { text-decoration: none; color: var(--ink); }
.apt-card__title a:hover { color: var(--sea-deep); }
.apt-card__excerpt { margin: 0; color: var(--ink-soft); font-size: .98rem; }
.apt-card__facts { display: flex; flex-wrap: wrap; gap: 8px 18px; list-style: none; margin: 0; padding: 0; font-size: .9rem; font-weight: 700; color: var(--sea-deep); }
.apt-card__actions { margin-top: auto; display: flex; gap: 12px; padding-top: 8px; }
.apt-card__actions .btn { padding: 10px 20px; font-size: .92rem; }

/* ---------- Why us ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.why-card {
	background: #fff; border-radius: var(--radius); padding: 34px 28px;
	box-shadow: var(--shadow); text-align: center;
	border-top: 5px solid var(--sun);
}
.why-card:nth-child(2) { border-top-color: var(--coral); }
.why-card:nth-child(3) { border-top-color: var(--sea); }
.why-card__icon {
	width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 20px;
	display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
	background: var(--sand);
}
.why-card h3 { margin: 0 0 8px; font-size: 1.15rem; }
.why-card p { margin: 0; color: var(--ink-soft); font-size: .96rem; }

/* ---------- Discover cards ---------- */
.discover-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.discover-card {
	display: block; text-decoration: none; background: #fff; border-radius: var(--radius);
	overflow: hidden; box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease;
}
.discover-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.discover-card__icon {
	height: 110px; display: flex; align-items: center; justify-content: center;
	font-size: 2.6rem; background: linear-gradient(135deg, var(--aqua-soft), #fff);
}
.discover-card:nth-child(2) .discover-card__icon { background: linear-gradient(135deg, #fff1e8, #fff); }
.discover-card:nth-child(3) .discover-card__icon { background: linear-gradient(135deg, #fff8e1, #fff); }
.discover-card:nth-child(4) .discover-card__icon { background: linear-gradient(135deg, #e6f7ee, #fff); }
.discover-card__body { padding: 18px 20px 22px; }
.discover-card h3 { margin: 0 0 6px; font-size: 1.05rem; color: var(--ink); }
.discover-card p { margin: 0 0 10px; font-size: .88rem; color: var(--ink-soft); }
.discover-card .more { color: var(--coral); font-weight: 800; font-family: var(--font-head); font-size: .88rem; }

/* ---------- CTA band ---------- */
.bs-cta {
	background: linear-gradient(120deg, var(--coral) 0%, #ff9a76 60%, var(--sun) 130%);
	border-radius: 26px; padding: 54px 46px; color: #fff;
	display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
	box-shadow: var(--shadow-lg);
}
.bs-cta h2 { color: #fff; margin: 0 0 8px; font-size: clamp(1.5rem, 3vw, 2.1rem); }
.bs-cta p { margin: 0; color: rgba(255,255,255,.92); }
.bs-cta .btn { background: #fff; color: var(--coral-deep); }
.bs-cta .btn:hover { background: var(--ink); color: #fff; }

/* ---------- Blog cards ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.post-card__media { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--aqua-soft), var(--sand)); overflow: hidden; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card h3 { margin: 0; font-size: 1.12rem; }
.post-card h3 a { text-decoration: none; color: var(--ink); }
.post-card h3 a:hover { color: var(--sea-deep); }
.post-card .meta { font-size: .82rem; color: var(--ink-soft); }
.post-card .excerpt { font-size: .94rem; color: var(--ink-soft); margin: 0; }
.post-card .more { margin-top: auto; font-weight: 800; font-family: var(--font-head); color: var(--coral); text-decoration: none; font-size: .9rem; }

/* ---------- Content (pages & single) ---------- */
.bs-content { max-width: 780px; margin: 0 auto; }
.bs-content h2, .bs-content h3 { margin-top: 1.8em; }
.bs-content ul { padding-left: 1.2em; }
.bs-content li { margin-bottom: .45em; }
.bs-content .attraction-list li, .bs-content .link-list li { margin-bottom: .8em; }
.bs-content .link-list a { font-weight: 700; }
.bs-content img { border-radius: var(--radius-sm); }

.entry-meta { color: var(--ink-soft); font-size: .9rem; margin-bottom: 24px; }
.entry-footer { margin-top: 40px; padding-top: 20px; border-top: 1px dashed #d8e6ec; }

/* ---------- Single apartment ---------- */
.apt-single__facts {
	display: flex; flex-wrap: wrap; gap: 14px; list-style: none; padding: 0; margin: 26px 0;
}
.apt-single__facts li {
	background: var(--aqua-soft); color: var(--sea-deep); font-weight: 800;
	font-family: var(--font-head); border-radius: 999px; padding: 10px 20px; font-size: .95rem;
}
.apt-amenities { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 12px; list-style: none; padding: 0; margin: 18px 0 30px; }
.apt-amenities li {
	background: #fff; border: 1.5px solid #e5f1f5; border-radius: var(--radius-sm);
	padding: 12px 16px; font-weight: 700; font-size: .95rem;
	display: flex; gap: 10px; align-items: center;
}
.apt-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 20px 0 10px; }
.apt-gallery img { border-radius: var(--radius-sm); width: 100%; aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow); }
.apt-book-band {
	background: var(--sand); border-radius: var(--radius); padding: 28px 30px;
	display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 34px;
}
.apt-book-band .price { font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; color: var(--sea-deep); }
.apt-book-band .price small { font-size: .85rem; color: var(--ink-soft); font-weight: 700; }

/* ---------- Forms ---------- */
.bs-form { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 34px 34px 38px; }
.bs-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.bs-form .field { margin-bottom: 18px; }
.bs-form label { display: block; font-family: var(--font-head); font-weight: 700; margin-bottom: 6px; font-size: .95rem; }
.bs-form label .req { color: var(--coral); }
.bs-form label .opt { color: var(--ink-soft); font-weight: 600; font-size: .8rem; }
.bs-form input[type="text"], .bs-form input[type="email"], .bs-form input[type="tel"],
.bs-form input[type="date"], .bs-form input[type="number"], .bs-form select, .bs-form textarea {
	width: 100%; padding: 12px 16px; border-radius: var(--radius-sm);
	border: 1.5px solid #dcebf0; background: #fbfeff; font: inherit; color: var(--ink);
	transition: border-color .15s ease, box-shadow .15s ease;
}
.bs-form input:focus, .bs-form select:focus, .bs-form textarea:focus {
	outline: none; border-color: var(--sea); box-shadow: 0 0 0 4px rgba(18, 165, 184, .15);
}
.bs-form textarea { min-height: 120px; resize: vertical; }
.bs-form .note { font-size: .85rem; color: var(--ink-soft); margin: 12px 0 0; }
.bs-form .bs-nights { font-weight: 800; color: var(--sea-deep); }

.form-alert { border-radius: var(--radius-sm); padding: 14px 20px; margin-bottom: 22px; font-weight: 700; }
.form-alert--success { background: #e6f7ee; color: #1d7a46; border: 1.5px solid #bfe8d2; }
.form-alert--error { background: #fdecea; color: #b23c31; border: 1.5px solid #f5c9c3; }

/* booking aside */
.booking-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 34px; align-items: start; }
.booking-aside { background: linear-gradient(165deg, var(--sea-deep), var(--sea)); color: #fff; border-radius: var(--radius); padding: 32px 30px; box-shadow: var(--shadow-lg); }
.booking-aside h3 { color: #fff; margin-top: 0; }
.booking-aside a { color: var(--sun); font-weight: 800; }
.booking-aside ul { padding-left: 1.1em; margin-bottom: 0; }
.booking-aside li { margin-bottom: 8px; color: rgba(255,255,255,.92); }

/* contact info */
.contact-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 34px; align-items: start; }
.contact-info { background: var(--sand); border-radius: var(--radius); padding: 32px 30px; }
.contact-info h3 { margin-top: 0; }
.contact-info p { margin: 0 0 16px; display: flex; gap: 10px; align-items: flex-start; }
.contact-info .ico { font-size: 1.2rem; }
.contact-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-top: 22px; }
.contact-map iframe { display: block; width: 100%; height: 260px; border: 0; }

/* ---------- Blog list (index/archive) ---------- */
.bs-posts { display: grid; gap: 26px; }
.bs-post-row { display: grid; grid-template-columns: 260px 1fr; gap: 26px; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.bs-post-row__media { aspect-ratio: 4/3; background: linear-gradient(135deg, var(--aqua-soft), var(--sand)); }
.bs-post-row__media img { width: 100%; height: 100%; object-fit: cover; }
.bs-post-row__body { padding: 24px 26px 26px 0; }
.bs-post-row h2 { margin: 0 0 8px; font-size: 1.3rem; }
.bs-post-row h2 a { text-decoration: none; color: var(--ink); }
.bs-post-row h2 a:hover { color: var(--sea-deep); }

.pagination { display: flex; gap: 10px; justify-content: center; margin-top: 46px; }
.pagination a, .pagination span {
	padding: 10px 16px; border-radius: 999px; background: #fff; box-shadow: var(--shadow);
	text-decoration: none; font-weight: 800; font-family: var(--font-head); color: var(--ink-soft);
}
.pagination .current, .pagination a:hover { background: var(--sea-deep); color: #fff; }

/* ---------- Footer ---------- */
.bs-footer { background: linear-gradient(180deg, #0b5d7a 0%, #094b63 100%); color: rgba(255,255,255,.88); margin-top: 0; }
.bs-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding: 64px 0 44px; }
.bs-footer h4 { color: #fff; font-size: 1rem; letter-spacing: .06em; text-transform: uppercase; margin: 0 0 16px; }
.bs-footer a { color: rgba(255,255,255,.85); text-decoration: none; }
.bs-footer a:hover { color: var(--sun); }
.bs-footer ul { list-style: none; margin: 0; padding: 0; }
.bs-footer li { margin-bottom: 9px; font-size: .95rem; }
.bs-footer .brand { font-family: var(--font-head); font-weight: 800; font-size: 1.25rem; color: #fff; margin-bottom: 12px; display: flex; gap: 10px; align-items: center; }
.bs-footer__bottom {
	border-top: 1px solid rgba(255,255,255,.15); padding: 20px 0;
	display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
	font-size: .85rem; color: rgba(255,255,255,.65);
}

/* ---------- Misc ---------- */
.bs-sun-divider { text-align: center; font-size: 1.4rem; letter-spacing: 1.4em; padding: 8px 0 0; opacity: .5; }

.screen-reader-text { position: absolute !important; clip: rect(1px,1px,1px,1px); width: 1px; height: 1px; overflow: hidden; }

.alignleft { float: left; margin: 0 22px 18px 0; }
.alignright { float: right; margin: 0 0 18px 22px; }
.aligncenter { display: block; margin: 0 auto 22px; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
	.discover-grid { grid-template-columns: repeat(2, 1fr); }
	.bs-footer__grid { grid-template-columns: 1fr 1fr; }
	.booking-layout, .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
	.bs-burger { display: inline-flex; align-items: center; justify-content: center; }
	.bs-nav {
		position: fixed; inset: 74px 0 auto 0; background: var(--cream);
		box-shadow: var(--shadow-lg); padding: 18px 22px 26px;
		transform: translateY(-120%); transition: transform .25s ease; z-index: 998;
	}
	.bs-nav.is-open { transform: translateY(0); }
	.bs-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
	.bs-nav a { padding: 13px 16px; font-size: 1rem; }
	.bs-nav li.menu-item--cta { margin-top: 10px; }
	.bs-nav li.menu-item--cta > a { text-align: center; }
	.apt-grid, .why-grid, .post-grid { grid-template-columns: 1fr; }
	.bs-form .form-row { grid-template-columns: 1fr; }
	.bs-post-row { grid-template-columns: 1fr; }
	.bs-post-row__body { padding: 0 24px 24px; }
	.bs-post-row__media { aspect-ratio: 16/9; }
	.apt-gallery { grid-template-columns: repeat(2, 1fr); }
	.bs-hero { padding: 72px 0 110px; }
}

@media (max-width: 560px) {
	.discover-grid { grid-template-columns: 1fr; }
	.bs-footer__grid { grid-template-columns: 1fr; gap: 30px; }
	.bs-cta { padding: 40px 28px; text-align: center; justify-content: center; }
	body { font-size: 16px; }
}
