/* ============================================
   Where We Are page template
   ============================================ */

.ra-where-hero {
	padding-block: var(--ra-space-9) var(--ra-space-6);
	background: var(--ra-mint);
	text-align: center;
}
.ra-where-hero__intro {
	max-width: 720px;
	margin: var(--ra-space-4) auto 0;
	color: var(--ra-navy);
	font-size: 17px;
	line-height: 1.6;
}

/* === Map === */
.ra-where-map {
	padding-block: var(--ra-space-7);
	background: #fff;
}
.ra-where-map__embed {
	border-radius: var(--ra-radius-xl);
	overflow: hidden;
	box-shadow: var(--ra-shadow-md);
	border: 4px solid #fff;
}
.ra-where-map__embed iframe {
	display: block;
	width: 100%;
	border: 0;
}

/* === Cities grid === */
.ra-where-cities {
	padding-block: var(--ra-space-7) var(--ra-space-9);
	background: #fff;
}
.ra-where-cities__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--ra-space-6);
}
.ra-where-city {
	background: var(--ra-cream);
	border-radius: var(--ra-radius-xl);
	padding: var(--ra-space-7);
	display: flex;
	flex-direction: column;
	border: 2px solid transparent;
	transition: transform var(--ra-transition), box-shadow var(--ra-transition);
}
.ra-where-city:hover {
	transform: translateY(-4px);
	box-shadow: var(--ra-shadow-md);
	border-color: var(--ra-pink-logo-soft);
}

.ra-where-city__header {
	display: flex;
	gap: var(--ra-space-4);
	align-items: center;
	margin-bottom: var(--ra-space-5);
	padding-bottom: var(--ra-space-4);
	border-bottom: 1px solid rgba(218, 82, 98, 0.15);
}
.ra-where-city__flag {
	font-size: 56px;
	line-height: 1;
}
.ra-where-city__name {
	font-family: var(--ra-font-script);
	font-weight: 400;
	color: var(--ra-navy);
	font-size: 40px;
	line-height: 1;
	margin: 0 0 4px;
}
.ra-where-city__tagline {
	font-family: var(--ra-font-ui);
	color: var(--ra-pink-logo);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	margin: 0;
}

.ra-where-city__body p {
	color: var(--ra-text-soft);
	font-size: 15px;
	line-height: 1.6;
	margin: 0 0 var(--ra-space-5);
}

.ra-where-city__zones {
	list-style: none;
	margin: 0 0 var(--ra-space-5);
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}
.ra-where-city__zones li {
	font-size: 14px;
	color: var(--ra-navy);
	padding-left: var(--ra-space-3);
	border-left: 2px solid var(--ra-pink-logo-soft);
}
.ra-where-city__zones strong { color: var(--ra-pink-logo); }

.ra-where-city__footer {
	margin-top: auto;
}

/* === FAQ === */
.ra-where-faq {
	padding-block: var(--ra-space-9);
	background: var(--ra-cream);
}
.ra-where-faq__grid {
	max-width: 800px;
	margin: var(--ra-space-6) auto 0;
	display: flex;
	flex-direction: column;
	gap: var(--ra-space-3);
}
.ra-where-faq__item {
	background: #fff;
	border-radius: var(--ra-radius-md);
	padding: var(--ra-space-4) var(--ra-space-5);
	border: 1px solid rgba(218, 82, 98, 0.1);
	transition: border-color var(--ra-transition);
}
.ra-where-faq__item:hover {
	border-color: var(--ra-pink-logo-soft);
}
.ra-where-faq__item summary {
	font-weight: 600;
	color: var(--ra-navy);
	cursor: pointer;
	padding: 4px 0;
	font-size: 16px;
	list-style: none;
	position: relative;
	padding-right: 30px;
}
.ra-where-faq__item summary::after {
	content: '+';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 24px;
	color: var(--ra-pink-logo);
	transition: transform var(--ra-transition);
}
.ra-where-faq__item[open] summary::after {
	content: '−';
}
.ra-where-faq__item summary::-webkit-details-marker { display: none; }
.ra-where-faq__item p {
	margin: var(--ra-space-3) 0 0;
	color: var(--ra-text-soft);
	font-size: 14px;
	line-height: 1.6;
}

/* === Responsive === */
@media (max-width: 800px) {
	.ra-where-cities__grid {
		grid-template-columns: 1fr;
	}
	.ra-where-city__header {
		flex-direction: column;
		text-align: center;
	}
	.ra-where-city__flag { font-size: 64px; }
}
