/* ==========================================================
   360 Properties – site-wide header, enquiry section, footer
   ========================================================== */

:root {
	--p360-navy: #1F3A7A;
	--p360-navy-dark: #1A3170;
	--p360-red: #D72638;
	--p360-pink: #FF5A6A;
	--p360-text: #1B1B1B;
	--p360-muted: #5F6368;
	--p360-band: #E7EAF1;
	--p360-font: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
	--p360-heading-font: 'Chakra Petch', var(--p360-font);
	--p360-wrap: 1200px;
}

.p360-wrap {
	box-sizing: border-box;
	max-width: var(--p360-wrap);
	margin: 0 auto;
	padding: 0 20px;
}

.p360-skip {
	position: absolute;
	top: -60px;
	left: 12px;
	z-index: 10000;
	padding: 10px 16px;
	border-radius: 6px;
	background: #fff;
	color: var(--p360-navy);
	font-family: var(--p360-font);
}
.p360-skip:focus { top: 12px; }

.p360-icon { width: 1em; height: 1em; flex: none; }

/* ---------------- Header ---------------- */

.p360-header { position: relative; z-index: 50; font-family: var(--p360-font); }

.p360-header__top { background: var(--p360-band); }
.p360-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1320px;
	height: 64px;
	margin: 0 auto;
	padding: 0 24px;
	box-sizing: border-box;
}
.p360-header__brand img,
.p360-header__brand .custom-logo { display: block; width: auto; max-height: 46px; }

.p360-enquire-btn,
.p360-enquire-btn:visited {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 38px;
	padding: 0 20px;
	border-radius: 8px;
	background: var(--p360-red);
	box-shadow: 0 3px 8px rgba(215, 38, 56, .3);
	color: #fff !important;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none !important;
	transition: filter .2s;
}
.p360-enquire-btn:hover { filter: brightness(1.1); }
.p360-enquire-btn .p360-icon { width: 15px; height: 15px; }

.p360-nav {
	position: relative;
	z-index: 2;
	box-sizing: border-box;
	width: calc(100% - 32px);
	max-width: 560px;
	margin: -22px auto 0;
	border-radius: 6px;
	background: var(--p360-navy);
	box-shadow: 0 6px 18px rgba(31, 58, 122, .25);
}

.p360-nav__toggle { display: none; }

.p360-nav__menu {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	gap: 8px;
	margin: 0;
	padding: 0 12px;
	list-style: none;
}
.p360-nav__menu li { margin: 0; }
.p360-nav__menu a,
.p360-nav__menu a:visited {
	display: block;
	padding: 14px 12px;
	color: #fff !important;
	font-size: 15px;
	font-weight: 400;
	line-height: 20px;
	text-decoration: none !important;
	opacity: .92;
	transition: opacity .2s;
}
.p360-nav__menu a:hover { opacity: 1; }
.p360-nav__menu .current-menu-item > a,
.p360-nav__menu .current_page_item > a,
.p360-nav__menu a[aria-current="page"] { font-weight: 700; opacity: 1; }

@media (max-width: 900px) {
	.p360-header__inner { height: 58px; padding: 0 16px; }
	.p360-enquire-btn { height: 34px; padding: 0 14px; font-size: 12px; }

	.p360-nav { margin-top: -18px; }
	.p360-nav__toggle {
		display: flex;
		align-items: center;
		gap: 10px;
		width: 100%;
		height: 46px;
		padding: 0 18px;
		border: 0;
		border-radius: 6px;
		background: transparent;
		box-shadow: none;
		color: #fff;
		font-family: var(--p360-font);
		font-size: 15px;
		cursor: pointer;
	}
	.p360-nav__toggle:hover,
	.p360-nav__toggle:focus { background: transparent; color: #fff; }
	.p360-nav__bars,
	.p360-nav__bars::before,
	.p360-nav__bars::after {
		display: block;
		width: 20px;
		height: 2px;
		border-radius: 2px;
		background: #fff;
		transition: transform .2s, opacity .2s;
	}
	.p360-nav__bars { position: relative; }
	.p360-nav__bars::before,
	.p360-nav__bars::after { content: ''; position: absolute; left: 0; }
	.p360-nav__bars::before { top: -6px; }
	.p360-nav__bars::after { top: 6px; }
	.p360-nav.is-open .p360-nav__bars { background: transparent; }
	.p360-nav.is-open .p360-nav__bars::before { top: 0; transform: rotate(45deg); }
	.p360-nav.is-open .p360-nav__bars::after { top: 0; transform: rotate(-45deg); }

	.p360-nav__menu { display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 0 0 8px; }
	.p360-nav.is-open .p360-nav__menu { display: flex; }
	.p360-nav__menu a { padding: 12px 18px; border-top: 1px solid rgba(255, 255, 255, .12); }
}

/* ---------------- Enquiry section ---------------- */

.p360-enquiry {
	position: relative;
	padding: 44px 0;
	background:
		linear-gradient(rgba(31, 58, 122, .82), rgba(31, 58, 122, .82)),
		var(--p360-enquiry-bg, linear-gradient(135deg, #2a4a94, #16295e)) center / cover no-repeat;
	font-family: var(--p360-font);
	scroll-margin-top: 20px;
}

.p360-enquiry__inner {
	display: grid;
	grid-template-columns: minmax(0, 480px) minmax(0, 1fr);
	align-items: center;
	gap: 60px;
}

.p360-enquiry__card {
	overflow: hidden;
	margin: 0;
	border: 2px solid #D9DCE1;
	border-radius: 12px;
	background: #fff;
}

.p360-enquiry .p360-enquiry__title {
	margin: 0;
	padding: 22px 16px 14px;
	border-bottom: 1px solid #E6E8EC;
	color: var(--p360-red);
	font-family: var(--p360-heading-font);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
}

.p360-enquiry__about { margin: 0; padding: 10px 20px; border-bottom: 1px solid #E6E8EC; background: #F4F6FA; font-size: 13px; color: var(--p360-navy); }

.p360-enquiry__row { display: grid; grid-template-columns: 1fr; gap: 10px 16px; padding: 12px 20px; border-bottom: 1px solid #E6E8EC; }
.p360-enquiry__row--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.p360-ef { display: flex; flex-direction: column; gap: 5px; margin: 0; }
.p360-ef > span { font-size: 11px; color: #333; }
.p360-enquiry .p360-ef input,
.p360-enquiry .p360-ef select,
.p360-enquiry .p360-ef textarea {
	box-sizing: border-box;
	width: 100%;
	height: 32px;
	margin: 0;
	padding: 0 10px;
	border: 1px solid #DADDE3;
	border-radius: 5px;
	background-color: #F4F6F9;
	box-shadow: none;
	color: var(--p360-text);
	font-family: var(--p360-font);
	font-size: 13px;
}
.p360-enquiry .p360-ef select {
	-webkit-appearance: none;
	appearance: none;
	padding-right: 26px;
	background: #F4F6F9 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23777' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 9px center / 9px 6px;
}
.p360-enquiry .p360-ef--tall input { height: 40px; }
.p360-enquiry .p360-ef textarea { height: 56px; padding: 8px 10px; resize: vertical; }
.p360-enquiry .p360-ef input:focus,
.p360-enquiry .p360-ef select:focus,
.p360-enquiry .p360-ef textarea:focus { outline: 2px solid var(--p360-navy); outline-offset: 1px; background-color: #fff; }

.p360-enquiry__submit { padding: 22px 20px 20px; }
.p360-enquiry .p360-enquiry__btn {
	width: 100%;
	height: 42px;
	border: 0;
	border-radius: 6px;
	background: var(--p360-red);
	box-shadow: 0 3px 8px rgba(215, 38, 56, .25);
	color: #fff;
	font-family: var(--p360-font);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: filter .2s;
}
.p360-enquiry .p360-enquiry__btn:hover { filter: brightness(1.08); background: var(--p360-red); color: #fff; }
.p360-enquiry .p360-enquiry__btn:disabled { opacity: .7; cursor: wait; }

.p360-enquiry__msg { margin: 12px 0 0; font-size: 13px; text-align: center; }
.p360-enquiry__msg:empty { display: none; }
.p360-enquiry__msg.is-sent { color: #1c7a36; }
.p360-enquiry__msg.is-error { color: var(--p360-red); }

.p360-enquiry__tagline {
	margin: 0;
	color: #fff;
	font-family: var(--p360-heading-font);
	font-size: clamp(36px, 5vw, 68px);
	font-weight: 700;
	line-height: 1.02;
	letter-spacing: .01em;
}

.p360-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

@media (max-width: 900px) {
	.p360-enquiry__inner { grid-template-columns: 1fr; gap: 24px; }
	.p360-enquiry__tagline { order: -1; text-align: center; }
	.p360-enquiry__card { max-width: 560px; width: 100%; margin: 0 auto; }
}
@media (max-width: 520px) {
	.p360-enquiry__row--3 { grid-template-columns: 1fr 1fr; }
	.p360-enquiry__row--3 .p360-ef:first-child { grid-column: 1 / -1; }
}

/* ---------------- Footer ---------------- */

.p360-footer {
	background: var(--p360-navy-dark);
	color: #fff;
	font-family: var(--p360-font);
}

.p360-footer__grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr 1fr;
	gap: 40px 60px;
	padding-top: 56px;
	padding-bottom: 48px;
}

.p360-footer__about p { margin: 0; max-width: 300px; color: #fff; font-size: 15px; line-height: 1.9; }

.p360-footer .p360-footer__title {
	margin: 0 0 16px;
	color: var(--p360-pink);
	font-family: var(--p360-font);
	font-size: 15px;
	font-weight: 600;
}

.p360-footer__contact,
.p360-footer__links { margin: 0; padding: 0; list-style: none; }

.p360-footer__contact li { display: flex; align-items: flex-start; gap: 14px; margin: 0 0 16px; font-size: 15px; line-height: 1.6; }
.p360-footer__contact .p360-icon { width: 17px; height: 17px; margin-top: 3px; color: var(--p360-pink); }
.p360-footer a,
.p360-footer a:visited { color: #fff !important; text-decoration: none !important; }
.p360-footer a:hover { color: var(--p360-pink) !important; }

.p360-footer__links li { margin: 0 0 8px; font-size: 15px; }

.p360-footer__bottom { padding: 14px 0; border-top: 1px solid rgba(255, 255, 255, .12); color: rgba(255, 255, 255, .75); font-size: 13px; }

@media (max-width: 900px) {
	.p360-footer__grid { grid-template-columns: 1fr 1fr; }
	.p360-footer__about { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
	.p360-footer__grid { grid-template-columns: 1fr; padding-top: 40px; }
}

/* ==========================================================
   v1.9.1 – boxed, smaller enquiry section
   ========================================================== */

.p360-enquiry {
	padding: 48px 20px;
	background: none;
}

.p360-enquiry__box {
	box-sizing: border-box;
	max-width: 1160px;
	margin: 0 auto;
	padding: 40px 56px;
	overflow: hidden;
	border-radius: 16px;
	background:
		linear-gradient(rgba(31, 58, 122, .82), rgba(31, 58, 122, .82)),
		linear-gradient(135deg, #2a4a94, #16295e);
	box-shadow: 0 10px 30px rgba(31, 58, 122, .18);
}

/* Your photo already has the blue tint, so only a light overlay is added */
.p360-enquiry--photo .p360-enquiry__box {
	background:
		linear-gradient(rgba(20, 40, 95, .2), rgba(20, 40, 95, .2)),
		var(--p360-enquiry-bg) center / cover no-repeat;
}

.p360-enquiry__inner {
	grid-template-columns: minmax(0, 440px) minmax(0, 1fr);
	gap: 56px;
}

.p360-enquiry .p360-enquiry__title { padding: 18px 16px 12px; font-size: 21px; }
.p360-enquiry__row { padding: 11px 20px; }
.p360-enquiry__submit { padding: 20px; }

.p360-enquiry__tagline { font-size: clamp(30px, 3.8vw, 54px); }

@media (max-width: 900px) {
	.p360-enquiry { padding: 32px 12px; }
	.p360-enquiry__box { padding: 28px 18px; border-radius: 12px; }
	.p360-enquiry__inner { grid-template-columns: 1fr; gap: 20px; }
}

/* v1.11 – Home page: white header strip; menu bar overlaps the top of the banner */
body.p360-home-page .p360-header__top { background: #fff; }
body.p360-home-page .p360-nav { margin-bottom: -26px; }

/* ==========================================================
   v1.12 – Enquiry: full width, form 60% / heading 40%
   ========================================================== */

.p360-enquiry {
	padding: 60px 0;
	background:
		linear-gradient(rgba(31, 58, 122, .82), rgba(31, 58, 122, .82)),
		linear-gradient(135deg, #2a4a94, #16295e);
}
.p360-enquiry.p360-enquiry--photo {
	background:
		linear-gradient(rgba(20, 40, 95, .2), rgba(20, 40, 95, .2)),
		var(--p360-enquiry-bg) center / cover no-repeat;
}
.p360-enquiry__box,
.p360-enquiry--photo .p360-enquiry__box {
	max-width: 1320px;
	padding: 0 40px;
	overflow: visible;
	border-radius: 0;
	background: none;
	box-shadow: none;
}
.p360-enquiry__inner {
	grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
	gap: 64px;
}
.p360-enquiry__card { border-radius: 14px; }

.p360-enquiry .p360-enquiry__title { padding: 26px 20px 18px; font-size: clamp(24px, 2.4vw, 34px); }
.p360-enquiry__row { gap: 16px 22px; padding: 18px 40px; }
.p360-ef { gap: 8px; }
.p360-ef > span { font-size: 15px; }
.p360-enquiry .p360-ef input,
.p360-enquiry .p360-ef select { height: 42px; font-size: 14px; border-radius: 8px; }
.p360-enquiry .p360-ef--tall input { height: 72px; }
.p360-enquiry .p360-ef textarea { height: 72px; border-radius: 8px; }
.p360-enquiry__submit { padding: 40px 40px 30px; }
.p360-enquiry .p360-enquiry__btn { height: 60px; border-radius: 10px; font-size: 18px; }

.p360-enquiry__tagline { font-size: clamp(36px, 4.6vw, 78px); }

@media (max-width: 900px) {
	.p360-enquiry { padding: 36px 0; }
	.p360-enquiry__box,
	.p360-enquiry--photo .p360-enquiry__box { padding: 0 16px; }
	.p360-enquiry__inner { grid-template-columns: 1fr; gap: 20px; }
	.p360-enquiry__row { padding: 14px 18px; }
	.p360-enquiry__submit { padding: 24px 18px 20px; }
	.p360-enquiry .p360-enquiry__btn { height: 50px; font-size: 16px; }
}

/* ==========================================================
   v1.12 – "Ready to find your property?" banner
   ========================================================== */

.p360-cta {
	position: relative;
	z-index: 2;
	background: linear-gradient(90deg, #C94150 0%, #A93042 55%, #7E1E2E 100%);
	font-family: var(--p360-font);
}
.p360-cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background: repeating-radial-gradient(circle at 28% 45%, rgba(255, 255, 255, .035) 0 2px, transparent 2px 24px);
	pointer-events: none;
}
.p360-cta__inner {
	position: relative;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	max-width: 1320px;
	min-height: 400px;
	margin: 0 auto;
	padding: 90px 40px;
}
.p360-cta__content { position: relative; z-index: 2; max-width: 52%; }
.p360-cta .p360-cta__title {
	margin: 0 0 30px;
	color: #fff;
	font-family: var(--p360-heading-font);
	font-size: clamp(30px, 3.6vw, 58px);
	font-weight: 700;
	line-height: 1.15;
	text-transform: uppercase;
}
.p360-cta__btn,
.p360-cta__btn:visited {
	display: inline-flex;
	align-items: center;
	height: 56px;
	padding: 0 40px;
	border-radius: 8px;
	background: var(--p360-navy);
	color: #fff !important;
	font-size: 18px;
	text-decoration: none !important;
	transition: filter .2s, transform .2s;
}
.p360-cta__btn:hover { filter: brightness(1.2); transform: translateY(-2px); }

.p360-cta__img {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 1;
	width: auto;
	max-width: 58%;
	height: calc(100% + 70px);
	object-fit: contain;
	object-position: right bottom;
}

/* Slide-in from the right (only when JavaScript is running) */
.p360-cta--animate .p360-cta__img {
	opacity: 0;
	transform: translateX(120px);
	transition: transform 1s cubic-bezier(.2, .7, .2, 1), opacity 1s ease;
}
.p360-cta--animate.is-visible .p360-cta__img { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	.p360-cta--animate .p360-cta__img { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 900px) {
	.p360-cta__inner { flex-direction: column; align-items: flex-start; min-height: 0; padding: 56px 20px 0; }
	.p360-cta__content { max-width: 100%; }
	.p360-cta__img { position: relative; max-width: 100%; height: auto; max-height: 300px; margin: 24px auto 0; }
	.p360-cta__btn { height: 48px; padding: 0 28px; font-size: 16px; }
}

/* v1.12.1 – smaller "Find Your Ideal Property" section (keeps 60/40 split) */
.p360-enquiry { padding: 40px 0; }
.p360-enquiry__box,
.p360-enquiry--photo .p360-enquiry__box { max-width: 1200px; }
.p360-enquiry__inner { gap: 48px; }
.p360-enquiry .p360-enquiry__title { padding: 18px 20px 12px; font-size: clamp(20px, 1.9vw, 26px); }
.p360-enquiry__row { gap: 12px 18px; padding: 12px 30px; }
.p360-ef { gap: 5px; }
.p360-ef > span { font-size: 13px; }
.p360-enquiry .p360-ef input,
.p360-enquiry .p360-ef select { height: 36px; font-size: 13px; border-radius: 6px; }
.p360-enquiry .p360-ef--tall input { height: 48px; }
.p360-enquiry .p360-ef textarea { height: 52px; border-radius: 6px; }
.p360-enquiry__submit { padding: 22px 30px 20px; }
.p360-enquiry .p360-enquiry__btn { height: 46px; border-radius: 8px; font-size: 16px; }
.p360-enquiry__tagline { font-size: clamp(32px, 3.8vw, 62px); }

@media (max-width: 900px) {
	.p360-enquiry { padding: 28px 0; }
	.p360-enquiry__row { padding: 10px 16px; }
	.p360-enquiry__submit { padding: 18px 16px; }
}

/* ==========================================================
   v1.13 – Scroll animations (only when JS is running)
   ========================================================== */
.p360-anim .p360-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .8s ease, transform .8s cubic-bezier(.2, .7, .2, 1);
	transition-delay: var(--d, 0s);
}
.p360-anim .p360-reveal--left { transform: translateX(-48px); }
.p360-anim .p360-reveal--right { transform: translateX(48px); }
.p360-anim .p360-reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	.p360-anim .p360-reveal { opacity: 1; transform: none; transition: none; }
}

/* Full Width Page template: same full-width layout as the Home page */
body.p360-full-page,
body.p360-full-page .site-content { background: #fff; }
body.p360-full-page .site-content > .ast-container { display: block; max-width: none; padding: 0; }
body.p360-full-page .p360-nav { margin-bottom: -26px; }

/* Enquiry form placed inside the Contact page */
.p360-enquiry.p360-enquiry--embedded { padding: 0; background: none; }

/* ==========================================================
   v1.14 – Footer with background photo (Figma)
   ========================================================== */
.p360-footer {
	background:
		linear-gradient(rgba(26, 49, 112, .9), rgba(26, 49, 112, .9)),
		linear-gradient(135deg, #1f3a7a, #142a62);
}
.p360-footer.p360-footer--photo {
	background:
		linear-gradient(rgba(26, 49, 112, .86), rgba(26, 49, 112, .86)),
		var(--p360-footer-bg) center / cover no-repeat;
}
.p360-footer__grid {
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr) minmax(0, 1fr);
	gap: 40px 90px;
	padding-top: 70px;
	padding-bottom: 60px;
}
.p360-footer__about p { max-width: 380px; font-size: 17px; line-height: 2.1; text-align: justify; }
.p360-footer .p360-footer__title { margin-bottom: 22px; font-size: 18px; }
.p360-footer__contact li { gap: 18px; margin-bottom: 22px; font-size: 18px; line-height: 1.65; }
.p360-footer__contact .p360-icon { width: 22px; height: 22px; margin-top: 2px; }
.p360-footer__links li { margin-bottom: 14px; font-size: 18px; }

@media (max-width: 900px) {
	.p360-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px 40px; padding-top: 48px; padding-bottom: 40px; }
	.p360-footer__about { grid-column: 1 / -1; }
	.p360-footer__about p { max-width: none; font-size: 15px; line-height: 1.9; text-align: left; }
	.p360-footer__contact li,
	.p360-footer__links li { font-size: 15px; }
}
@media (max-width: 560px) {
	.p360-footer__grid { grid-template-columns: 1fr; }
}

/* v1.14.1 – footer spacing wins over the general .p360-wrap rule */
.p360-footer .p360-wrap.p360-footer__grid {
	padding: 80px 20px 64px;
	align-items: start;
}
.p360-footer .p360-footer__title { margin-top: 0; }
.p360-footer .p360-footer__about p { margin-top: 0; }
.p360-footer .p360-footer__bottom { padding: 18px 0; }

@media (max-width: 900px) {
	.p360-footer .p360-wrap.p360-footer__grid { padding: 56px 20px 44px; }
}

/* v1.14.2 – header logo */
.p360-header--has-logo .p360-header__inner { height: 84px; }
.p360-header__logo { display: inline-flex; align-items: center; line-height: 0; }
.p360-header__logo img {
	display: block;
	width: auto !important;
	height: auto;
	max-height: 64px;
	max-width: 220px;
}
@media (max-width: 900px) {
	.p360-header--has-logo .p360-header__inner { height: 68px; }
	.p360-header__logo img { max-height: 50px; max-width: 150px; }
}
@media (max-width: 380px) {
	.p360-header__logo img { max-height: 42px; max-width: 120px; }
	.p360-header--has-logo .p360-enquire-btn { padding: 0 10px; font-size: 11px; }
}

/* v1.14.3 – compact footer */
.p360-footer .p360-wrap.p360-footer__grid {
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) minmax(0, .8fr);
	gap: 28px 64px;
	padding: 48px 20px 36px;
}
.p360-footer .p360-footer__about p {
	max-width: 360px;
	font-size: 15px;
	line-height: 1.75;
	text-align: left;
	opacity: .92;
}
.p360-footer .p360-footer__title { margin: 0 0 14px; font-size: 16px; }
.p360-footer .p360-footer__contact li { gap: 12px; margin-bottom: 12px; font-size: 15px; line-height: 1.55; }
.p360-footer .p360-footer__contact .p360-icon { width: 17px; height: 17px; margin-top: 3px; }
.p360-footer .p360-footer__links li { margin-bottom: 8px; font-size: 15px; line-height: 1.5; }
.p360-footer .p360-footer__bottom { padding: 12px 0; font-size: 13px; }

@media (max-width: 900px) {
	.p360-footer .p360-wrap.p360-footer__grid { grid-template-columns: 1fr 1fr; gap: 24px 32px; padding: 36px 20px 28px; }
}
@media (max-width: 560px) {
	.p360-footer .p360-wrap.p360-footer__grid { grid-template-columns: 1fr; gap: 22px; padding: 32px 20px 24px; }
}

/* v1.15 – footer bottom bar: copyright left, credit right */
.p360-footer .p360-footer__bottom-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 6px 20px;
}
.p360-footer__credit { margin-left: auto; }
.p360-footer .p360-footer__credit a { font-weight: 600; }
@media (max-width: 560px) {
	.p360-footer .p360-footer__bottom-inner { justify-content: center; text-align: center; }
	.p360-footer__credit { margin-left: 0; }
}
