:root {
	--bg: #f8f4ef;
	--bg-soft: #f3eee7;
	--white: #ffffff;
	--text: #171512;
	--muted: #8b8277;
	--muted-deep: #6a6258;
	--dark: #1f1d1b;
	--dark-2: #2a2724;
	--gold: #c9a25d;
	--gold-strong: #b8893f;
	--shadow: 0 20px 48px rgba(20, 15, 11, 0.08);
	--shadow-lg: 0 28px 60px rgba(10, 8, 6, 0.16);
	--radius: 0;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Manrope", sans-serif;
	color: var(--text);
	background: var(--bg);
	overflow-x: hidden;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

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

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

.site-container {
	max-width: 1200px;
}

.site-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 1000;
	padding: 22px 0;
	transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-solid {
	padding: 14px 0;
	background: rgba(248, 244, 239, 0.92);
	backdrop-filter: blur(14px);
	box-shadow: 0 8px 24px rgba(15, 11, 8, 0.08);
}

.nav-shell {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.brand {
	display: inline-flex;
	align-items: center;
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(2rem, 2.2vw, 2.75rem);
	letter-spacing: 0.06em;
	line-height: 1;
}

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

.site-footer .brand:hover {
	color: var(--white);
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 2.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-link-item {
	text-transform: uppercase;
	letter-spacing: 0.28em;
	font-size: 0.72rem;
	font-weight: 700;
	color: rgba(23, 21, 18, 0.84);
	position: relative;
	padding: 0.35rem 0;
	transition: color 0.25s ease, opacity 0.25s ease;
}

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

.nav-link-item.active::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -0.45rem;
	height: 1px;
	background: var(--gold);
}

.btn-zebiana {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	padding: 1rem 1.65rem;
	border: 1px solid transparent;
	border-radius: var(--radius);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	line-height: 1;
	transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
	white-space: nowrap;
}

.btn-zebiana:hover {
	transform: translateY(-2px);
}

.btn-gold {
	background: var(--gold);
	color: var(--text);
	border-color: var(--gold);
}

.btn-gold:hover {
	background: #d7b477;
	border-color: #d7b477;
	color: var(--text);
	box-shadow: 0 14px 34px rgba(201, 162, 93, 0.28);
}

.btn-dark {
	background: var(--dark);
	color: var(--white);
	border-color: var(--dark);
}

.btn-dark:hover {
	background: var(--dark-2);
	border-color: var(--dark-2);
	color: var(--white);
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.btn-outline-z {
	background: transparent;
	color: var(--text);
	border-color: rgba(23, 21, 18, 0.25);
}

.btn-outline-z:hover {
	color: var(--white);
	background: var(--dark);
	border-color: var(--dark);
}

.btn-outline-hero {
	background: transparent;
	color: var(--white);
	border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline-hero:hover {
	background: var(--white);
	color: var(--text);
	border-color: var(--white);
}

.btn-header {
	background: transparent;
	color: var(--text);
	border-color: rgba(23, 21, 18, 0.4);
	padding-inline: 1.55rem;
}

.btn-header:hover {
	background: var(--dark);
	color: var(--white);
	border-color: var(--dark);
}

.btn-icon svg {
	width: 14px;
	height: 14px;
	flex: 0 0 14px;
}

.mobile-toggle {
	display: none;
	width: 46px;
	height: 46px;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(23, 21, 18, 0.25);
	background: rgba(248, 244, 239, 0.86);
	color: var(--text);
}

.mobile-toggle svg {
	width: 20px;
	height: 20px;
}

.mobile-menu {
	position: fixed;
	top: 82px;
	left: 18px;
	right: 18px;
	z-index: 999;
	background: rgba(248, 244, 239, 0.98);
	backdrop-filter: blur(16px);
	border: 1px solid rgba(23, 21, 18, 0.08);
	box-shadow: 0 20px 50px rgba(16, 12, 9, 0.12);
	padding: 1rem;
	display: none;
}

.mobile-menu.is-open {
	display: block;
	animation: pageFade 0.25s ease;
}

.mobile-menu__links {
	display: grid;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.mobile-link {
	display: block;
	padding: 0.85rem 0.65rem;
	text-transform: uppercase;
	letter-spacing: 0.24em;
	font-size: 0.76rem;
	font-weight: 700;
	color: rgba(23, 21, 18, 0.88);
	border-bottom: 1px solid rgba(23, 21, 18, 0.08);
}

.mobile-link.active {
	color: var(--gold);
}

.hero {
	position: relative;
	color: var(--white);
	background-image: linear-gradient(90deg, rgba(20, 16, 12, 0.66) 0%, rgba(20, 16, 12, 0.48) 34%, rgba(20, 16, 12, 0.2) 100%), var(--hero-image);
	background-size: cover;
	background-position: var(--hero-position, center center);
	overflow: hidden;
}

.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.26) 100%);
}

.hero > .site-container {
	position: relative;
	z-index: 2;
}

.hero-home {
	min-height: 100svh;
}

.hero-inner {
	min-height: 53svh;
	padding-top: 110px;
}

.hero-home .hero-row {
	min-height: 100svh;
	padding-top: 100px;
	padding-bottom: 110px;
}

.hero-inner .hero-row {
	min-height: calc(53svh - 110px);
	padding-top: 50px;
	padding-bottom: 60px;
}

.eyebrow {
	display: inline-block;
	margin-bottom: 1.1rem;
	color: var(--gold);
	text-transform: uppercase;
	letter-spacing: 0.3em;
	font-size: 0.75rem;
	font-weight: 800;
}

.hero__title {
	margin: 0 0 1rem;
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(3.6rem, 7vw, 6.1rem);
	line-height: 0.88;
	letter-spacing: -0.025em;
	max-width: 720px;
}

.hero__title em {
	font-style: italic;
	font-weight: 500;
}

.hero__lead {
	max-width: 540px;
	margin: 0 0 2rem;
	color: rgba(255, 255, 255, 0.84);
	font-size: 1.02rem;
	line-height: 1.85;
}

.hero__actions {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	flex-wrap: wrap;
}

.scroll-indicator {
	position: absolute;
	left: 50%;
	bottom: 24px;
	z-index: 2;
	transform: translateX(-50%);
	width: 30px;
	height: 48px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.56);
	background: transparent;
}

.scroll-indicator::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 10px;
	width: 4px;
	height: 11px;
	transform: translateX(-50%);
	border-radius: 999px;
	background: var(--white);
	animation: scrollPulse 1.7s infinite;
}

@keyframes scrollPulse {
	0% {
		opacity: 0.2;
		transform: translate(-50%, 0);
	}
	50% {
		opacity: 1;
		transform: translate(-50%, 10px);
	}
	100% {
		opacity: 0.2;
		transform: translate(-50%, 0);
	}
}

@keyframes pageFade {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.section {
	padding: 110px 0;
}

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

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

.section-intro {
	padding-top: 120px;
	padding-bottom: 96px;
}

.section-heading {
	max-width: 760px;
	margin: 0 auto 3.5rem;
	text-align: center;
}

.section-heading--left {
	margin: 0 0 2.4rem;
	text-align: left;
}

.section-title {
	margin: 0 0 1rem;
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(2.5rem, 4.7vw, 4rem);
	line-height: 1.04;
	letter-spacing: -0.025em;
	color: var(--text);
}

.section-dark .section-title,
.section-dark .section-desc {
	color: var(--white);
}

.section-desc {
	margin: 0;
	color: var(--muted);
	font-size: 1.02rem;
	line-height: 1.9;
}

.heading-line {
	width: 56px;
	height: 1px;
	margin: 1.5rem auto 0;
	background: rgba(201, 162, 93, 0.65);
}

.section-heading--left .heading-line {
	margin-inline: 0;
}

.specialty-card {
	background: var(--white);
	box-shadow: var(--shadow);
	overflow: hidden;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
	max-width: 700px;
	margin: 0 auto;
}

.specialty-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
}

.specialty-card__media img {
	width: 100%;
	height: 370px;
	object-fit: cover;
}

.specialty-card__body {
	padding: 1.55rem 1.6rem 1.8rem;
}

.specialty-card__title {
	margin: 0 0 0.35rem;
	font-family: "Cormorant Garamond", serif;
	font-size: 2rem;
	line-height: 1.08;
}

.specialty-card__text {
	margin: 0 0 1rem;
	color: var(--muted);
	font-size: 0.95rem;
	line-height: 1.8;
}

.card-link {
	color: var(--gold);
	text-transform: uppercase;
	letter-spacing: 0.28em;
	font-size: 0.72rem;
	font-weight: 800;
}

.card-link:hover {
	color: var(--gold-strong);
}

.feature-grid {
	row-gap: 2.2rem;
}

.feature-card {
	text-align: center;
	padding-inline: 0.5rem;
}

.icon-ring {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	border: 1px solid rgba(201, 162, 93, 0.38);
	color: var(--gold);
	display: grid;
	place-items: center;
	margin: 0 auto 1.2rem;
}

.icon-ring svg {
	width: 22px;
	height: 22px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.75;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.feature-card h3,
.value-card h3,
.pillar h3,
.contact-item h4,
.map-card h3,
.cta-band__title,
.project-copy h3 {
	font-family: "Cormorant Garamond", serif;
}

.feature-card h3 {
	margin: 0 0 0.6rem;
	font-size: 1.9rem;
	color: var(--white);
	line-height: 1.05;
}

.feature-card p {
	margin: 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.95rem;
	line-height: 1.75;
}

.cta-panel {
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
}

.cta-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.9rem;
	flex-wrap: wrap;
	margin-top: 2rem;
}

.story-copy {
	padding-right: 2.2rem;
}

.story-copy p {
	margin: 0 0 1.25rem;
	color: var(--muted);
	font-size: 1rem;
	line-height: 1.95;
}

.story-media {
	position: relative;
	padding-left: 2rem;
}

.story-frame {
	overflow: hidden;
	box-shadow: var(--shadow);
	background: #e9decc;
}

.story-frame img {
	width: 100%;
	height: 520px;
	object-fit: cover;
}

.stat-card {
	position: absolute;
	left: 0;
	bottom: 34px;
	width: min(290px, 84%);
	padding: 1.85rem 2rem;
	background: var(--gold);
	color: var(--text);
	box-shadow: var(--shadow-lg);
}

.stat-card__number {
	font-family: "Cormorant Garamond", serif;
	font-size: 4rem;
	line-height: 0.9;
	letter-spacing: -0.02em;
}

.stat-card p {
	margin: 0.35rem 0 0;
	font-size: 0.92rem;
	line-height: 1.55;
	color: rgba(23, 21, 18, 0.9);
}

.value-card {
	height: 100%;
	background: var(--white);
	padding: 2rem 1.7rem;
	box-shadow: var(--shadow);
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
}

.value-card h3 {
	margin: 0 0 0.6rem;
	font-size: 1.82rem;
	line-height: 1.05;
	color: var(--text);
}

.value-card p {
	margin: 0;
	color: var(--muted);
	font-size: 0.95rem;
	line-height: 1.8;
}

.pillar {
	height: 100%;
	padding: 0.25rem 2rem 0.25rem 2.15rem;
	border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.pillar h3 {
	margin: 0 0 1rem;
	font-size: 2.7rem;
	line-height: 1.05;
	color: var(--white);
}

.pillar p {
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 1rem;
	line-height: 1.95;
}

.project-showcase {
	margin-bottom: 5.5rem;
	row-gap: 2rem;
}

.project-showcase:last-child {
	margin-bottom: 0;
}

.project-media {
	overflow: hidden;
	background: #ede5da;
	box-shadow: var(--shadow);
}

.project-media img {
	width: 100%;
	height: 360px;
	object-fit: cover;
	transition: transform 0.55s ease;
}

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

.project-copy {
	padding-inline: 1.15rem;
}

.project-copy .eyebrow {
	margin-bottom: 0.7rem;
	font-size: 0.66rem;
}

.project-copy h3 {
	margin: 0 0 1rem;
	font-size: 2.4rem;
	line-height: 1.02;
	color: var(--text);
}

.materials-title {
	display: block;
	margin-bottom: 0.8rem;
	color: var(--muted-deep);
	text-transform: uppercase;
	letter-spacing: 0.28em;
	font-size: 0.67rem;
	font-weight: 800;
}

.material-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.65rem;
}

.material-list li {
	position: relative;
	padding-left: 1rem;
	color: var(--muted);
	font-size: 0.95rem;
	line-height: 1.7;
}

.material-list li::before {
	content: "";
	position: absolute;
	top: 0.72rem;
	left: 0;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--gold);
}

.cta-points {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.3rem 1.6rem;
	flex-wrap: wrap;
	margin-top: 1.4rem;
	margin-bottom: 2rem;
}

.cta-points span {
	position: relative;
	padding-left: 0.9rem;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.92rem;
}

.cta-points span::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.58rem;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--gold);
}

.contact-wrap {
	padding-top: 100px;
	padding-bottom: 115px;
}

.contact-copy .section-heading {
	margin-bottom: 2rem;
}

.field-group {
	margin-bottom: 1.2rem;
}

.field-label {
	display: block;
	margin-bottom: 0.55rem;
	color: var(--muted-deep);
	text-transform: uppercase;
	letter-spacing: 0.28em;
	font-size: 0.71rem;
	font-weight: 800;
}

.form-control-custom {
	width: 100%;
	min-height: 50px;
	padding: 0.92rem 0.95rem;
	border: 1px solid rgba(23, 21, 18, 0.13);
	background: var(--white);
	color: var(--text);
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-control-custom::placeholder {
	color: rgba(139, 130, 119, 0.92);
}

.form-control-custom:focus {
	outline: none;
	border-color: rgba(201, 162, 93, 0.86);
	box-shadow: 0 0 0 4px rgba(201, 162, 93, 0.13);
}

textarea.form-control-custom {
	min-height: 165px;
	resize: vertical;
}

.form-feedback {
	display: none;
	margin-top: 1rem;
	color: #3a6a45;
	font-size: 0.95rem;
	font-weight: 600;
}

.form-feedback.is-visible {
	display: block;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1.1rem;
	margin-bottom: 1.55rem;
}

.contact-item .icon-ring {
	flex: 0 0 auto;
	width: 54px;
	height: 54px;
	margin: 0;
}

.contact-item h4 {
	margin: 0 0 0.35rem;
	font-size: 1.85rem;
	line-height: 1.05;
	color: var(--text);
}

.contact-item p,
.contact-item a {
	margin: 0;
	color: var(--muted);
	font-size: 0.96rem;
	line-height: 1.75;
}

.map-card {
	min-height: 320px;
	background: var(--bg-soft);
	padding: 3rem 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin-top: 2.1rem;
}

.map-card .icon-ring {
	width: 76px;
	height: 76px;
	margin-bottom: 0.8rem;
	border-color: transparent;
}

.map-card h3 {
	margin: 0.25rem 0 0.5rem;
	font-size: 2.25rem;
	line-height: 1.05;
}

.map-card p {
	margin: 0;
	color: var(--muted);
	font-size: 0.97rem;
	line-height: 1.75;
}

.map-card a {
	margin-top: 0.8rem;
	color: var(--gold);
	text-transform: uppercase;
	letter-spacing: 0.3em;
	font-size: 0.72rem;
	font-weight: 800;
}

.contact-band {
	padding: 3.2rem 0;
	background: var(--dark);
	color: var(--white);
	border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.cta-band__title {
	margin: 0 0 0.45rem;
	font-size: 2.55rem;
	line-height: 1.03;
	color: var(--white);
}

.contact-band p {
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 1rem;
	line-height: 1.8;
}

.site-footer {
	background: var(--dark);
	color: var(--white);
	padding: 5rem 0 1.8rem;
}

.footer-grid {
	padding-bottom: 3rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
	max-width: 290px;
	margin: 1.25rem 0 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.96rem;
	line-height: 1.9;
}

.footer-title {
	margin: 0 0 1.15rem;
	color: var(--gold);
	text-transform: uppercase;
	letter-spacing: 0.28em;
	font-size: 0.71rem;
	font-weight: 800;
}

.footer-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.9rem;
}

.footer-list a,
.footer-list span {
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.95rem;
	line-height: 1.7;
	transition: color 0.25s ease;
}

.footer-list a:hover,
.footer-legal a:hover {
	color: var(--white);
}

.footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

.footer-contact-item svg {
	width: 16px;
	height: 16px;
	margin-top: 0.2rem;
	stroke: var(--gold);
	fill: none;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
	flex: 0 0 16px;
}

.social-link {
	width: 42px;
	height: 42px;
	display: inline-grid;
	place-items: center;
	margin-top: 1.6rem;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 50%;
	color: rgba(255, 255, 255, 0.78);
	transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.social-link:hover {
	color: var(--white);
	border-color: rgba(255, 255, 255, 0.35);
	transform: translateY(-2px);
}

.social-link svg {
	width: 16px;
	height: 16px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem 2rem;
	flex-wrap: wrap;
	padding-top: 1.6rem;
	color: rgba(255, 255, 255, 0.44);
	font-size: 0.83rem;
}

.footer-legal {
	display: flex;
	align-items: center;
	gap: 1.3rem;
	flex-wrap: wrap;
}

.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.delay-1 {
	transition-delay: 0.08s;
}

.delay-2 {
	transition-delay: 0.16s;
}

.delay-3 {
	transition-delay: 0.24s;
}

.delay-4 {
	transition-delay: 0.32s;
}

@media (max-width: 1199.98px) {
	.hero__title {
		max-width: 620px;
	}

	.story-copy {
		padding-right: 1rem;
	}

	.story-media {
		padding-left: 1rem;
	}
}

@media (max-width: 991.98px) {
	.site-header {
		padding: 16px 0;
	}

	.nav-links,
	.header-cta {
		display: none;
	}

	.mobile-toggle {
		display: inline-flex;
	}

	.hero-home {
		min-height: 88svh;
	}

	.hero-home .hero-row {
		min-height: 88svh;
	}

	.hero-inner {
		min-height: 48svh;
	}

	.hero-inner .hero-row {
		min-height: calc(48svh - 110px);
	}

	.section,
	.section-intro {
		padding: 88px 0;
	}

	.story-copy {
		padding-right: 0;
		margin-bottom: 2rem;
	}

	.story-media {
		padding-left: 0;
	}

	.story-frame img {
		height: 440px;
	}

	.pillar {
		padding: 0;
		border-left: none;
	}

	.pillar + .pillar {
		margin-top: 2rem;
	}

	.contact-wrap {
		padding-top: 84px;
		padding-bottom: 96px;
	}
}

@media (max-width: 767.98px) {
	.mobile-menu {
		top: 74px;
		left: 14px;
		right: 14px;
	}

	.brand {
		font-size: 1.8rem;
	}

	.hero__title {
		font-size: clamp(3rem, 15vw, 4.4rem);
	}

	.hero__lead,
	.section-desc,
	.story-copy p,
	.feature-card p,
	.pillar p,
	.contact-item p,
	.contact-item a,
	.map-card p,
	.footer-brand p {
		font-size: 0.94rem;
	}

	.hero__actions,
	.cta-actions {
		gap: 0.75rem;
	}

	.btn-zebiana {
		width: 100%;
	}

	.hero__actions .btn-zebiana,
	.cta-actions .btn-zebiana,
	.mobile-menu .btn-zebiana {
		width: auto;
	}

	.section-title {
		font-size: clamp(2.2rem, 10vw, 3.2rem);
	}

	.specialty-card__media img,
	.project-media img {
		height: 260px;
	}

	.project-copy {
		padding-inline: 0;
	}

	.story-frame img {
		height: 350px;
	}

	.stat-card {
		position: relative;
		left: auto;
		bottom: auto;
		margin: -28px 12px 0;
		width: calc(100% - 24px);
	}

	.map-card {
		min-height: 280px;
	}

	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}