:root {
	--v3-ink: #1c2522;
	--v3-muted: #66716c;
	--v3-paper: #f7f4ed;
	--v3-surface: #ffffff;
	--v3-surface-soft: #ece6da;
	--v3-gold: #b1842f;
	--v3-green: #24433a;
	--v3-burgundy: #7b2532;
	--v3-line: rgba(28, 37, 34, 0.16);
	--v3-shadow: 0 24px 55px rgba(28, 37, 34, 0.13);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.site-v3 {
	margin: 0;
	background: var(--v3-paper);
	color: var(--v3-ink);
	font-family: Montserrat, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	letter-spacing: 0;
}

.material-symbols-outlined {
	font-family: "Material Symbols Outlined";
	font-weight: normal;
	font-style: normal;
	font-size: 24px;
	line-height: 1;
	text-transform: none;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
}

.site-v3 a {
	color: inherit;
}

.v3-no-scroll {
	overflow: hidden;
}

.v3-shell {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
}

.v3-skip {
	position: fixed;
	left: 12px;
	top: -80px;
	z-index: 200;
	background: var(--v3-ink);
	color: #fff;
	padding: 10px 14px;
	border-radius: 4px;
}

.v3-skip:focus {
	top: 12px;
}

.v3-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	border-bottom: 1px solid rgba(255, 255, 255, 0.35);
	background: rgba(247, 244, 237, 0.9);
	backdrop-filter: blur(16px);
}

.v3-nav {
	height: 76px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.v3-brand {
	font-family: "Libre Baskerville", Georgia, serif;
	font-size: 24px;
	font-weight: 700;
	text-decoration: none;
	color: var(--v3-ink);
	letter-spacing: 0;
}

.v3-brand span {
	color: var(--v3-gold);
}

.v3-menu {
	display: flex;
	align-items: center;
	gap: 28px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
}

.v3-menu a {
	text-decoration: none;
}

.v3-menu a:hover {
	color: var(--v3-burgundy);
}

.v3-mobile-actions {
	display: none;
	align-items: center;
	gap: 10px;
}

.v3-lang {
	position: relative;
}

.v3-lang summary {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 38px;
	padding: 8px 10px;
	border: 1px solid rgba(30, 48, 44, 0.16);
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.7);
	color: var(--v3-ink);
	cursor: pointer;
	list-style: none;
}

.v3-lang summary::-webkit-details-marker {
	display: none;
}

.v3-lang img {
	display: block;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	object-fit: cover;
}

.v3-lang-list {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	display: flex;
	flex-direction: column;
	min-width: 92px;
	padding: 6px;
	border: 1px solid var(--v3-line);
	border-radius: 4px;
	background: #fff;
	box-shadow: var(--v3-shadow);
}

.v3-lang-list a {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 9px 10px;
	color: var(--v3-ink);
}

.v3-lang-list a:hover,
.v3-lang-list a.is-active {
	background: #f4eee2;
	color: var(--v3-burgundy);
}

.v3-lang-mobile summary {
	min-width: 64px;
	border-color: rgba(177, 132, 47, 0.45);
	background: #fff;
	box-shadow: 0 8px 22px rgba(28, 37, 34, 0.12);
	font-size: 13px;
	font-weight: 800;
}

.v3-nav-cta,
.v3-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 12px 20px;
	border: 1px solid transparent;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.v3-nav-cta,
.v3-button-primary {
	background: var(--v3-green);
	color: #fff;
}

.v3-nav-cta:hover,
.v3-button-primary:hover {
	background: var(--v3-burgundy);
	color: #fff;
}

.v3-button-outline {
	border-color: var(--v3-ink);
	background: transparent;
	color: var(--v3-ink);
}

.v3-button-outline:hover {
	background: var(--v3-ink);
	color: #fff;
}

.v3-button-ghost {
	border-color: rgba(255, 255, 255, 0.75);
	color: #fff;
}

.v3-button-ghost:hover {
	background: #fff;
	color: var(--v3-ink);
}

.site-v3 .v3-nav-cta,
.site-v3 .v3-button-primary,
.site-v3 .v3-button-ghost {
	color: #fff;
}

.site-v3 .v3-button-outline,
.site-v3 .v3-button-ghost:hover {
	color: var(--v3-ink);
}

.site-v3 .v3-nav-cta:hover,
.site-v3 .v3-button-primary:hover,
.site-v3 .v3-button-outline:hover {
	color: #fff;
}

.v3-menu-button {
	display: none;
	align-items: center;
	gap: 8px;
	border: 1px solid var(--v3-line);
	background: #fff;
	color: var(--v3-ink);
	border-radius: 4px;
	padding: 8px 10px;
	font-weight: 700;
}

.v3-alert {
	position: fixed;
	top: 88px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 120;
	width: min(760px, calc(100% - 32px));
	padding: 14px 18px;
	background: #fff;
	border: 1px solid var(--v3-line);
	box-shadow: var(--v3-shadow);
}

.v3-main {
	min-height: 70vh;
}

.v3-hero {
	position: relative;
	min-height: 78vh;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	background: var(--v3-ink);
}

.v3-hero-home {
	min-height: 90vh;
}

.v3-hero-detail {
	min-height: 72vh;
}

.v3-hero-guide {
	min-height: 76vh;
}

.v3-hero-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.v3-hero-shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(28, 37, 34, 0.72), rgba(28, 37, 34, 0.25) 45%, rgba(28, 37, 34, 0.78));
}

.v3-hero-content {
	position: relative;
	z-index: 2;
	padding: 140px 0 76px;
	color: #fff;
}

.v3-kicker {
	margin: 0 0 12px;
	color: var(--v3-gold);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
}

.v3-hero .v3-kicker {
	color: #dfc27a;
}

.v3-hero h1,
.v3-page-hero h1,
.v3-section h2 {
	font-family: "Libre Baskerville", Georgia, serif;
	letter-spacing: 0;
}

.v3-hero h1 {
	max-width: 850px;
	margin: 0 0 22px;
	font-size: clamp(42px, 7vw, 82px);
	line-height: 1.04;
}

.v3-lead {
	max-width: 680px;
	margin: 0;
	font-size: clamp(18px, 2vw, 22px);
	color: rgba(255, 255, 255, 0.9);
}

.v3-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
}

.v3-section {
	padding: 86px 0;
}

.v3-section-contrast {
	background: #fff;
}

.v3-section-head {
	max-width: 720px;
	margin-bottom: 34px;
}

.v3-section-head h2,
.v3-page-hero h1 {
	margin: 0 0 14px;
	font-size: clamp(32px, 4vw, 52px);
	line-height: 1.12;
}

.v3-section-head p,
.v3-page-hero p,
.v3-detail-copy p,
.v3-guide-preview p {
	color: var(--v3-muted);
}

.v3-residence-grid,
.v3-apartment-grid,
.v3-address-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
}

.v3-apartment-grid,
.v3-address-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.v3-residence-card,
.v3-apartment-card,
.v3-guide-choice,
.v3-address-card {
	display: block;
	background: var(--v3-surface);
	border: 1px solid var(--v3-line);
	border-radius: 8px;
	overflow: hidden;
	text-decoration: none;
	box-shadow: 0 12px 35px rgba(28, 37, 34, 0.06);
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.v3-residence-card:hover,
.v3-apartment-card:hover,
.v3-guide-choice:hover,
.v3-address-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--v3-shadow);
	border-color: rgba(177, 132, 47, 0.45);
}

.v3-residence-card img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	display: block;
}

.v3-residence-card div,
.v3-apartment-card div {
	padding: 22px;
}

.v3-residence-card h3,
.v3-apartment-card h3,
.v3-address-card h3,
.v3-guide-choice h2 {
	margin: 0 0 8px;
	font-family: "Libre Baskerville", Georgia, serif;
	line-height: 1.2;
	letter-spacing: 0;
}

.v3-residence-card p,
.v3-apartment-card p,
.v3-address-card p,
.v3-guide-choice p {
	margin: 0;
	color: var(--v3-muted);
}

.v3-residence-card .v3-residence-summary {
	margin-top: 10px;
	font-size: 14px;
	line-height: 1.55;
}

.v3-apartment-card .v3-apartment-summary {
	margin-top: 8px;
	font-size: 14px;
	line-height: 1.55;
}

.v3-apartment-card .v3-apartment-size {
	margin-top: 10px;
}

.v3-residence-card span,
.v3-apartment-card span {
	display: inline-block;
	margin-top: 12px;
	color: var(--v3-burgundy);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
}

.v3-apartment-card img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	display: block;
}

.v3-guide-preview {
	background: var(--v3-green);
	color: #fff;
}

.v3-guide-preview .v3-kicker {
	color: #dfc27a;
}

.v3-guide-preview p {
	color: rgba(255, 255, 255, 0.78);
}

.v3-split {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 48px;
	align-items: center;
}

.v3-split img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	border-radius: 8px;
	box-shadow: var(--v3-shadow);
}

.v3-page-hero {
	padding: 150px 0 72px;
	background: var(--v3-green);
	color: #fff;
}

.v3-page-hero .v3-kicker {
	color: #dfc27a;
}

.v3-page-hero p {
	max-width: 700px;
	color: rgba(255, 255, 255, 0.78);
}

.v3-page-hero-residences {
	background: linear-gradient(135deg, var(--v3-green), #1c2522 62%, var(--v3-burgundy));
}

.v3-residence-banner {
	display: grid;
	grid-template-columns: 360px minmax(0, 1fr);
	align-items: stretch;
	margin-bottom: 28px;
	background: var(--v3-surface);
	border: 1px solid var(--v3-line);
	border-radius: 8px;
	overflow: hidden;
	text-decoration: none;
}

.v3-residence-banner img {
	width: 100%;
	height: 100%;
	min-height: 250px;
	object-fit: cover;
}

.v3-residence-banner div {
	padding: 34px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.v3-residence-banner h2 {
	margin: 0 0 10px;
	font-size: clamp(28px, 4vw, 44px);
}

.v3-residence-list {
	display: grid;
	gap: 44px;
}

.v3-residence-feature {
	display: grid;
	grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
	gap: 0;
	background: #fff;
	border: 1px solid var(--v3-line);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 18px 48px rgba(28, 37, 34, 0.08);
}

.v3-residence-feature-media {
	display: block;
	min-height: 460px;
	background: var(--v3-surface-soft);
}

.v3-residence-feature-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.v3-residence-feature-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(30px, 5vw, 58px);
}

.v3-residence-feature-copy h2 {
	margin: 0 0 14px;
	font-family: "Libre Baskerville", Georgia, serif;
	font-size: clamp(32px, 4vw, 52px);
	line-height: 1.12;
}

.v3-residence-feature-copy p {
	margin: 0;
	color: var(--v3-muted);
}

.v3-residence-address {
	margin-bottom: 18px !important;
	font-weight: 600;
	color: var(--v3-ink) !important;
}

.v3-residence-apartment-links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin-top: 30px;
}

.v3-residence-apartment-links a {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 10px;
	align-items: center;
	padding: 11px 12px;
	border: 1px solid var(--v3-line);
	border-radius: 6px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
}

.v3-residence-apartment-links span,
.v3-residence-apartment-links small {
	color: var(--v3-muted);
	font-size: 12px;
	text-transform: uppercase;
}

.v3-residence-apartment-links small {
	text-align: right;
}

.v3-detail-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 54px;
	align-items: start;
}

.v3-detail-copy h2 {
	margin: 0 0 22px;
	font-size: clamp(32px, 4vw, 48px);
}

.v3-richtext {
	color: var(--v3-muted);
	font-size: 18px;
}

.v3-richtext p:first-child {
	margin-top: 0;
}

.v3-residence-photo-preview {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-auto-rows: minmax(92px, 1fr);
	gap: 10px;
	margin: 28px 0 8px;
}

.v3-residence-photo-preview-item {
	min-height: 92px;
	padding: 0;
	border: 0;
	border-radius: 8px;
	overflow: hidden;
	background: var(--v3-surface-soft);
	cursor: zoom-in;
}

.v3-residence-photo-preview-item.is-large {
	grid-column: span 2;
	grid-row: span 2;
}

.v3-residence-photo-preview-item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.25s ease;
}

.v3-residence-photo-preview-item:hover img {
	transform: scale(1.04);
}

.v3-sticky-panel {
	position: sticky;
	top: 100px;
	background: #fff;
	border: 1px solid var(--v3-line);
	border-radius: 8px;
	padding: 24px;
	box-shadow: 0 18px 45px rgba(28, 37, 34, 0.08);
}

.v3-sticky-panel .v3-button {
	width: 100%;
	margin-top: 14px;
}

.v3-booking-panel {
	margin-top: 22px;
	padding-top: 20px;
	border-top: 1px solid var(--v3-line);
}

.v3-booking-panel .v3-kicker {
	margin-bottom: 12px;
}

.v3-button-disabled,
.v3-button-disabled:hover {
	border-color: var(--v3-line);
	background: #f3eee4;
	color: var(--v3-muted);
	cursor: not-allowed;
	transform: none;
}

.v3-button-disabled span {
	display: inline-flex;
	align-items: center;
	min-height: 22px;
	margin-left: 8px;
	padding: 2px 7px;
	border-radius: 4px;
	background: #fff;
	color: var(--v3-burgundy);
	font-size: 11px;
	line-height: 1;
}

.site-v3 .v3-button-disabled,
.site-v3 .v3-button-disabled:hover {
	color: var(--v3-muted);
}

.v3-facts {
	display: grid;
	gap: 12px;
}

.v3-facts div {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--v3-line);
}

.v3-facts span {
	color: var(--v3-muted);
}

.v3-facts strong {
	text-align: right;
}

.v3-section-booking {
	background: var(--v3-surface-soft);
}

.v3-calendar-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.v3-calendar-month {
	padding: 18px;
	border: 1px solid var(--v3-line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 14px 34px rgba(28, 37, 34, 0.06);
}

.v3-calendar-month h3 {
	margin: 0 0 14px;
	font-size: 18px;
}

.v3-calendar-days,
.v3-calendar-cells {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 6px;
}

.v3-calendar-days {
	margin-bottom: 8px;
}

.v3-calendar-days span {
	color: var(--v3-muted);
	font-size: 11px;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
}

.v3-calendar-cells span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	aspect-ratio: 1 / 1;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 700;
}

.v3-calendar-cells .is-empty {
	background: transparent;
}

.v3-calendar-cells .is-free,
.v3-calendar-legend .is-free {
	background: #dcefe5;
	color: var(--v3-green);
}

.v3-calendar-cells .is-busy,
.v3-calendar-legend .is-busy {
	background: #ead8d5;
	color: var(--v3-burgundy);
}

.v3-calendar-cells .is-past,
.v3-calendar-legend .is-past {
	background: #eee9df;
	color: var(--v3-muted);
}

.v3-calendar-legend {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 18px;
	color: var(--v3-muted);
	font-size: 13px;
	font-weight: 600;
}

.v3-calendar-legend span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.v3-calendar-legend i {
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 3px;
}

.v3-residence-gallery .v3-gallery-item img {
	aspect-ratio: 16 / 11;
}

.v3-gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.v3-gallery-compact {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.v3-gallery-item {
	border: 0;
	padding: 0;
	background: transparent;
	cursor: zoom-in;
	border-radius: 8px;
	overflow: hidden;
}

.v3-gallery-item img,
.v3-gallery-item picture,
.v3-gallery-item picture img {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}

.v3-lightbox {
	position: fixed;
	inset: 0;
	z-index: 300;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 36px;
	background: rgba(0, 0, 0, 0.86);
}

.v3-lightbox.is-open {
	display: flex;
}

.v3-lightbox img {
	max-width: min(1100px, 94vw);
	max-height: 86vh;
	object-fit: contain;
}

.v3-lightbox-close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	cursor: pointer;
}

.v3-guide-choice {
	padding: 34px;
	min-height: 240px;
}

.v3-guide-choice .material-symbols-outlined {
	color: var(--v3-gold);
	font-size: 38px;
}

.v3-guide-choice strong {
	display: inline-block;
	margin-top: 20px;
	color: var(--v3-burgundy);
}

.v3-category-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.v3-category-card {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	padding: 16px;
	background: #fff;
	border: 1px solid var(--v3-line);
	border-radius: 8px;
	text-decoration: none;
}

.v3-category-card img {
	width: 38px;
	height: 38px;
	object-fit: contain;
}

.v3-category-card strong,
.v3-category-card span {
	display: block;
}

.v3-category-card span {
	color: var(--v3-muted);
	font-size: 13px;
}

.v3-address-card img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	display: block;
}

.v3-address-body {
	position: relative;
	padding: 22px;
}

.v3-address-icon {
	position: absolute;
	right: 18px;
	top: -24px;
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 1px solid var(--v3-line);
	border-radius: 50%;
}

.v3-address-icon img {
	width: 30px;
	height: 30px;
	object-fit: contain;
}

.v3-address-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 16px;
	color: var(--v3-green);
	font-weight: 700;
}

.v3-address-meta .material-symbols-outlined {
	font-size: 20px;
}

.v3-price {
	display: inline-block;
	margin-top: 12px;
	color: var(--v3-burgundy);
}

.v3-more {
	margin-top: 34px;
	text-align: center;
}

.v3-reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.v3-reveal.is-visible {
	opacity: 1;
	transform: none;
}

.v3-footer {
	background: var(--v3-ink);
	color: rgba(255, 255, 255, 0.72);
	padding: 58px 0;
}

.v3-footer-grid {
	display: grid;
	grid-template-columns: 1.3fr 1.1fr 1fr 0.9fr;
	gap: 36px;
	align-items: start;
}

.v3-brand-footer {
	display: inline-block;
	color: #fff;
	margin-bottom: 14px;
}

.v3-footer p {
	max-width: 420px;
	margin: 0;
}

.v3-footer nav {
	display: grid;
	gap: 10px;
}

.v3-footer-title {
	display: block;
	margin-bottom: 2px;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.v3-footer a {
	text-decoration: none;
}

.v3-footer a:hover {
	color: #fff;
}

.v3-footer-copy {
	text-align: right;
}

@media (max-width: 960px) {
	.v3-mobile-actions {
		display: inline-flex;
	}

	.v3-menu-button {
		display: inline-flex;
	}

	.v3-menu {
		position: absolute;
		top: 76px;
		left: 20px;
		right: 20px;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 12px;
		background: #fff;
		border: 1px solid var(--v3-line);
		box-shadow: var(--v3-shadow);
	}

	.v3-menu.is-open {
		display: flex;
	}

	.v3-menu a {
		padding: 12px;
	}

	.v3-menu .v3-lang {
		display: none;
	}

	.v3-lang-menu {
		padding: 8px 0;
	}

	.v3-lang-menu summary {
		justify-content: space-between;
		width: 100%;
		min-height: 42px;
		background: #f8f5ee;
	}

	.v3-lang-menu .v3-lang-list {
		position: static;
		margin-top: 8px;
		box-shadow: none;
	}

	.v3-lang-mobile[open] .v3-lang-list {
		right: 0;
		z-index: 120;
	}

	.v3-nav-cta {
		margin-top: 8px;
	}

	.v3-residence-grid,
	.v3-apartment-grid,
	.v3-address-grid,
	.v3-gallery,
	.v3-gallery-compact,
	.v3-category-grid,
	.v3-split,
	.v3-detail-grid,
	.v3-residence-feature,
	.v3-calendar-grid,
	.v3-footer-grid {
		grid-template-columns: 1fr;
	}

	.v3-footer-copy {
		text-align: left;
	}

	.v3-residence-banner {
		grid-template-columns: 1fr;
	}

	.v3-residence-feature-media {
		min-height: 340px;
	}

	.v3-residence-apartment-links {
		grid-template-columns: 1fr;
	}

	.v3-sticky-panel {
		position: static;
	}

	.v3-footer-copy {
		text-align: left;
	}
}

@media (max-width: 640px) {
	.v3-shell {
		width: min(100% - 28px, 1180px);
	}

	.v3-nav {
		height: 66px;
	}

	.v3-brand {
		font-size: 21px;
	}

	.v3-menu {
		top: 66px;
	}

	.v3-hero {
		min-height: 76vh;
	}

	.v3-hero-content {
		padding: 112px 0 48px;
	}

	.v3-hero h1 {
		font-size: 38px;
	}

	.v3-section {
		padding: 58px 0;
	}

	.v3-page-hero {
		padding: 112px 0 48px;
	}

	.v3-residence-feature-copy {
		padding: 26px 20px;
	}

	.v3-residence-feature-media {
		min-height: 280px;
	}

	.v3-actions,
	.v3-button {
		width: 100%;
	}

	.v3-residence-photo-preview {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-auto-rows: 110px;
	}

	.v3-residence-photo-preview-item.is-large {
		grid-column: span 2;
		grid-row: span 1;
	}

	.v3-gallery-item img,
	.v3-gallery-item picture,
	.v3-gallery-item picture img {
		aspect-ratio: 1 / 1;
	}

	.v3-lightbox {
		padding: 16px;
	}
}
