:root {
	--ink: #14233f;
	--ink-soft: #2a3a55;
	--muted: #5c6b7f;
	--line: #e2e6ec;
	--paper: #ffffff;
	--paper-soft: #f6f7f9;
	--mist: #eef1f5;
	--navy: #1a2744;
	--navy-deep: #101a30;
	--gold: #c5a35a;
	--gold-deep: #a8873f;
	--shadow: 0 18px 40px rgba(20, 35, 63, 0.1);
	--radius: 4px;
	--font-display: "Cormorant Garamond", Georgia, serif;
	--font-body: "Source Sans 3", system-ui, sans-serif;
	--header-h: 6.75rem;
	--max: 1120px;
	--narrow: 720px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1.05rem;
	line-height: 1.65;
	color: var(--ink-soft);
	background:
		radial-gradient(1200px 500px at 10% -10%, rgba(197, 163, 90, 0.1), transparent 55%),
		radial-gradient(900px 420px at 100% 0%, rgba(26, 39, 68, 0.05), transparent 50%),
		var(--paper);
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	display: block;
	height: auto;
}

a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

a:hover {
	color: var(--gold-deep);
}

h1,
h2,
h3,
h4 {
	font-family: var(--font-display);
	font-weight: 600;
	color: var(--ink);
	line-height: 1.15;
	letter-spacing: -0.01em;
	margin: 0 0 0.6em;
}

p {
	margin: 0 0 1em;
}

.screen-reader-text,
.skip-link {
	position: absolute;
	left: -9999px;
}

.skip-link:focus {
	left: 1rem;
	top: 1rem;
	z-index: 1000;
	background: var(--ink);
	color: var(--paper);
	padding: 0.75rem 1rem;
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid transparent;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
	border-bottom-color: var(--line);
	box-shadow: 0 8px 24px rgba(26, 26, 26, 0.04);
}

.site-header__inner {
	max-width: var(--max);
	margin: 0 auto;
	padding: 0.9rem 1.25rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: var(--header-h);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	color: var(--ink);
}

.brand__logo {
	width: 108px;
	height: 108px;
	object-fit: contain;
	background: transparent;
}

.brand--hero .brand__logo {
	width: min(168px, 42vw);
	height: auto;
	filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.28));
}

.brand--footer .brand__logo {
	width: 88px;
	height: 88px;
	background: transparent;
	border-radius: 0;
	padding: 0;
}

.nav {
	display: flex;
	align-items: center;
	gap: 1.25rem;
}

.nav__list {
	list-style: none;
	display: flex;
	gap: 1.1rem;
	margin: 0;
	padding: 0;
}

.nav__list a {
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--ink-soft);
}

.nav__item.is-current a,
.nav__list a:hover {
	color: var(--gold-deep);
}

.nav-toggle {
	display: none;
	background: none;
	border: 0;
	padding: 0.5rem;
	cursor: pointer;
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--ink);
	position: relative;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
	content: "";
	position: absolute;
	left: 0;
}

.nav-toggle__bars::before {
	top: -7px;
}

.nav-toggle__bars::after {
	top: 7px;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 0.9rem 1.35rem;
	border-radius: var(--radius);
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
	transform: translateY(-1px);
	color: inherit;
}

.btn--solid {
	background: var(--navy);
	color: var(--paper);
	border-color: var(--navy);
}

.btn--solid:hover {
	background: var(--navy-deep);
	color: var(--paper);
}

.btn--ghost,
.btn--outline {
	background: transparent;
	border-color: rgba(26, 26, 26, 0.25);
	color: var(--ink);
}

.btn--ghost {
	border-color: rgba(255, 255, 255, 0.55);
	color: var(--paper);
}

.btn--small {
	padding: 0.65rem 1rem;
	font-size: 0.88rem;
}

.text-link {
	font-weight: 600;
	color: var(--navy);
	text-decoration: none;
	border-bottom: 1px solid var(--gold);
}

/* Hero */
.hero {
	position: relative;
	min-height: calc(78vh - var(--header-h));
	display: grid;
	align-items: center;
	overflow: hidden;
	color: var(--paper);
}

.hero__media {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, #1a2744 0%, #101a30 48%, #2c3a28 100%);
}

.hero__wash {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 70% 30%, rgba(197, 163, 90, 0.22), transparent 42%),
		linear-gradient(to top, rgba(16, 26, 48, 0.86), rgba(16, 26, 48, 0.35) 55%, rgba(16, 26, 48, 0.45));
}

.hero__grain {
	position: absolute;
	inset: 0;
	opacity: 0.18;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
	mix-blend-mode: soft-light;
}

.hero__content {
	position: relative;
	z-index: 1;
	max-width: var(--max);
	width: 100%;
	margin: 0 auto;
	padding: 2.25rem 1.25rem 3rem;
}

.hero__title {
	font-size: clamp(2.6rem, 6vw, 4.4rem);
	max-width: 14ch;
	color: var(--paper);
	margin-top: 1.25rem;
}

.hero__lede {
	max-width: 38ch;
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.88);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 1.75rem;
}

.page-hero {
	padding: 4rem 1.25rem 2rem;
}

.page-hero__content {
	max-width: var(--narrow);
	margin: 0 auto;
}

.page-hero h1 {
	font-size: clamp(2.3rem, 5vw, 3.6rem);
}

.eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.16em;
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--gold-deep);
	margin-bottom: 0.75rem;
}

/* Sections */
.section {
	padding: 4.5rem 1.25rem;
}

.section--soft {
	background: linear-gradient(180deg, var(--paper-soft), var(--paper));
}

.section--invite {
	background:
		linear-gradient(180deg, rgba(197, 163, 90, 0.08), transparent),
		var(--paper-soft);
	text-align: center;
}

.section__inner {
	max-width: var(--max);
	margin: 0 auto;
}

.section__inner.narrow {
	max-width: var(--narrow);
}

.section__header {
	max-width: 38rem;
	margin-bottom: 2.5rem;
}

.section__header h2,
.section--invite h2 {
	font-size: clamp(2rem, 4vw, 2.8rem);
}

.section__cta {
	margin-top: 2.5rem;
}

.process-list,
.service-stack,
.value-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.process-list {
	display: grid;
	gap: 1.5rem;
}

.process-list li,
.service-row {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1.25rem;
	padding: 1.5rem 0;
	border-top: 1px solid var(--line);
}

.process-list__num,
.service-row__num {
	font-family: var(--font-display);
	font-size: 1.8rem;
	color: var(--gold-deep);
	line-height: 1;
}

.value-list {
	display: grid;
	gap: 1rem;
	max-width: 40rem;
}

.value-list li {
	padding: 1rem 0 1rem 1.25rem;
	border-left: 2px solid var(--gold);
	background: linear-gradient(90deg, rgba(197, 163, 90, 0.08), transparent);
}

.locations-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	margin-bottom: 1.75rem;
}

.locations-block {
	padding: 1.35rem 1.4rem;
	border-top: 3px solid var(--gold);
	background: var(--paper);
}

.locations-block h3 {
	font-size: 1.45rem;
	margin-bottom: 0.4rem;
}

.locations-block p {
	margin: 0;
	color: var(--muted);
}

.locations-note {
	max-width: 40rem;
	color: var(--ink-soft);
	font-size: 1.05rem;
}

.locations-note .text-link {
	margin-left: 0.35rem;
}

@media (max-width: 760px) {
	.locations-grid {
		grid-template-columns: 1fr;
	}
}

/* Estates */
.estate-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.75rem;
}

.estate-card {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.estate-card__media {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--mist);
	text-decoration: none;
}

.estate-card__media img,
.estate-card__placeholder,
.estate-hero__media img,
.estate-hero__placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.estate-card__placeholder,
.estate-hero__placeholder {
	display: block;
	background:
		linear-gradient(135deg, #d8d8d8, #ececec 45%, #cfcfcf);
}

.estate-card__status {
	position: absolute;
	left: 0.85rem;
	bottom: 0.85rem;
}

.estate-card__title {
	font-size: 1.7rem;
	margin-bottom: 0.25rem;
}

.estate-card__title a {
	text-decoration: none;
}

.estate-card__meta,
.estate-hero__meta {
	color: var(--muted);
	font-size: 0.95rem;
}

.status {
	display: inline-flex;
	align-items: center;
	padding: 0.35rem 0.7rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	background: var(--ink);
	color: var(--paper);
}

.status--open {
	background: var(--navy);
}

.status--upcoming {
	background: #3d4d6b;
}

.status--closed {
	background: #777;
}

.interest-meter {
	margin-top: 1rem;
}

.interest-meter__label {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	font-size: 0.88rem;
	margin-bottom: 0.45rem;
	color: var(--muted);
}

.interest-meter__track {
	height: 8px;
	background: var(--mist);
	overflow: hidden;
}

.interest-meter__fill {
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, #7a8699, var(--gold));
	transition: width 0.8s ease;
}

.interest-meter__actions {
	margin-top: 0.85rem;
}

.interest-meter__actions .btn[disabled] {
	opacity: 0.65;
	cursor: default;
	transform: none;
}

/* Single estate */
.estate-hero {
	position: relative;
	min-height: 58vh;
	display: grid;
	align-items: end;
	color: var(--paper);
}

.estate-hero__media {
	position: absolute;
	inset: 0;
}

.estate-hero__wash {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(10, 10, 10, 0.78), rgba(10, 10, 10, 0.15));
}

.estate-hero__content {
	position: relative;
	z-index: 1;
	max-width: var(--max);
	width: 100%;
	margin: 0 auto;
	padding: 3.5rem 1.25rem;
}

.estate-hero h1 {
	font-size: clamp(2.4rem, 5vw, 3.8rem);
	color: var(--paper);
	max-width: 16ch;
}

.estate-layout {
	display: grid;
	grid-template-columns: 1.4fr 0.8fr;
	gap: 2.5rem;
	align-items: start;
}

.estate-aside__panel {
	padding: 1.5rem;
	background: var(--paper-soft);
	border-top: 3px solid var(--gold);
}

.estate-aside__panel ul {
	list-style: none;
	padding: 0;
	margin: 0 0 1.25rem;
}

.estate-aside__panel li {
	padding: 0.7rem 0;
	border-bottom: 1px solid var(--line);
}

.estate-aside__panel strong {
	display: block;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--muted);
	margin-bottom: 0.2rem;
}

.share-estate {
	margin-top: 1.5rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--line);
}

.share-estate__heading {
	font-size: 1.25rem;
	margin-bottom: 0.25rem;
}

.share-estate__help {
	font-size: 0.92rem;
	color: var(--muted);
	margin-bottom: 0.9rem;
}

.share-estate__actions {
	display: grid;
	gap: 0.55rem;
}

.share-estate__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.7rem 0.9rem;
	border: 1px solid var(--line);
	background: #fff;
	color: var(--navy);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.92rem;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.share-estate__btn:hover {
	color: #fff;
	border-color: transparent;
}

.share-estate__btn--facebook:hover {
	background: #1877f2;
}

.share-estate__btn--twitter:hover {
	background: #111;
}

.share-estate__btn--email:hover {
	background: var(--navy);
}

.share-estate__btn svg {
	flex-shrink: 0;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.gallery-grid__item {
	margin: 0;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--mist);
}

.gallery-grid__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.gallery-grid__item:hover img {
	transform: scale(1.03);
}

/* Contact */
.contact-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2.5rem;
	align-items: start;
}

.contact-points {
	padding-left: 1.1rem;
}

.tces-form {
	display: grid;
	gap: 1rem;
	padding: 1.5rem;
	background: var(--paper-soft);
	border-top: 3px solid var(--gold);
}

.tces-form label {
	display: grid;
	gap: 0.4rem;
	font-weight: 600;
	font-size: 0.92rem;
}

.tces-form input,
.tces-form textarea {
	width: 100%;
	border: 1px solid var(--line);
	background: var(--paper);
	padding: 0.85rem 0.95rem;
	font: inherit;
	color: var(--ink);
	border-radius: var(--radius);
}

.tces-form input:focus,
.tces-form textarea:focus {
	outline: 2px solid rgba(197, 163, 90, 0.35);
	border-color: var(--gold);
}

.form-success {
	color: var(--navy);
	font-weight: 600;
}

.content-block > *:last-child {
	margin-bottom: 0;
}

.empty-note {
	color: var(--muted);
	font-size: 1.1rem;
}

/* Footer */
.site-footer {
	border-top: 1px solid var(--line);
	background: var(--navy-deep);
	color: rgba(255, 255, 255, 0.78);
	margin-top: 2rem;
}

.site-footer a {
	color: rgba(255, 255, 255, 0.86);
	text-decoration: none;
}

.site-footer a:hover {
	color: #fff;
}

.site-footer__inner {
	max-width: var(--max);
	margin: 0 auto;
	padding: 3.5rem 1.25rem 2.5rem;
	display: grid;
	grid-template-columns: 1.4fr 0.8fr 1fr;
	gap: 2rem;
}

.site-footer__heading {
	font-size: 1.3rem;
	color: #fff;
}

.site-footer__links ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.55rem;
}

.site-footer__bar {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding: 1rem 1.25rem;
	text-align: center;
	font-size: 0.9rem;
}

.site-footer .brand {
	color: #fff;
	margin-bottom: 1rem;
}

/* Motion */
.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: none;
}

/* Responsive */
@media (max-width: 960px) {
	.estate-grid,
	.gallery-grid,
	.contact-layout,
	.estate-layout,
	.site-footer__inner {
		grid-template-columns: 1fr;
	}

	.estate-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 760px) {
	.nav-toggle {
		display: inline-flex;
	}

	.nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 1rem;
		padding: 1rem 1.25rem 1.5rem;
		background: rgba(255, 255, 255, 0.98);
		border-bottom: 1px solid var(--line);
	}

	.nav.is-open {
		display: flex;
	}

	.nav__list {
		flex-direction: column;
		gap: 0.85rem;
	}

	.estate-grid {
		grid-template-columns: 1fr;
	}

	.hero__content {
		padding-top: 1.75rem;
		padding-bottom: 2.5rem;
	}
}

/* Retirement announcement */
.retirement-modal[hidden] {
	display: none !important;
}

.retirement-modal {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: grid;
	place-items: center;
	padding: 1.25rem;
}

.retirement-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(16, 26, 48, 0.72);
	backdrop-filter: blur(2px);
	border: 0;
	cursor: pointer;
}

.retirement-modal__close {
	position: fixed;
	top: 1rem;
	right: 1rem;
	z-index: 10002;
	width: 3rem;
	height: 3rem;
	border: 2px solid rgba(255, 255, 255, 0.85);
	border-radius: 50%;
	background: var(--navy);
	color: #fff;
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
	display: grid;
	place-items: center;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
	transition: background 0.2s ease, transform 0.2s ease;
}

.retirement-modal__close:hover,
.retirement-modal__close:focus-visible {
	background: var(--gold-deep);
	transform: scale(1.05);
	outline: none;
}

.retirement-modal__panel {
	position: relative;
	z-index: 10001;
	width: min(860px, 100%);
	background: #fff;
	border-top: 4px solid var(--gold);
	box-shadow: 0 24px 60px rgba(16, 26, 48, 0.28);
	padding: clamp(1.5rem, 4vw, 2.5rem);
	max-height: calc(100vh - 2.5rem);
	overflow: auto;
}

.retirement-modal__eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--gold-deep);
	margin: 0 0 1rem;
}

.retirement-modal__layout {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 1.75rem;
	align-items: start;
}

.retirement-modal__photo {
	margin: 0;
}

.retirement-modal__photo img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	border: 1px solid var(--line);
	box-shadow: 0 0 0 4px #fff, 0 0 0 5px var(--gold);
}

.retirement-modal__copy h2 {
	font-size: clamp(1.7rem, 3.5vw, 2.35rem);
	margin-bottom: 0.75rem;
}

.retirement-modal__company {
	color: var(--muted);
	font-style: italic;
	font-family: var(--font-display);
	font-size: 1.15rem;
}

body.retirement-modal-open {
	overflow: hidden;
}

@media (max-width: 720px) {
	.retirement-modal__layout {
		grid-template-columns: 1fr;
	}

	.retirement-modal__photo {
		max-width: 200px;
	}

	.retirement-modal__close {
		top: 0.65rem;
		right: 0.65rem;
	}
}

/* Owner intro (About) */
.owner-intro {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 2.5rem;
	align-items: center;
	max-width: var(--max);
}

.owner-intro__photo {
	margin: 0;
}

.owner-intro__photo img {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	border: 1px solid var(--line);
	box-shadow: 0 0 0 4px #fff, 0 0 0 5px var(--gold);
}

.owner-intro__photo figcaption {
	margin-top: 0.65rem;
	font-size: 0.9rem;
	color: var(--muted);
}

/* Footer credit */
.site-footer__bar {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
	justify-content: space-between;
	text-align: left;
}

.site-footer__credit {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	text-decoration: none;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.92rem;
}

.site-footer__credit img {
	width: 36px;
	height: 36px;
	object-fit: contain;
	border-radius: 50%;
	background: #000;
}

.site-footer__credit:hover {
	color: var(--gold);
}

/* Gallery lightbox */
.gallery-grid__item {
	border: 0;
	padding: 0;
	cursor: zoom-in;
	font: inherit;
	color: inherit;
	text-align: left;
}

.gallery-lightbox[hidden] {
	display: none !important;
}

.gallery-lightbox {
	position: fixed;
	inset: 0;
	z-index: 11000;
	background: rgba(16, 26, 48, 0.92);
	display: grid;
	place-items: center;
	padding: 4rem 1rem 1.5rem;
}

.gallery-lightbox__stage {
	margin: 0;
	max-width: min(960px, 100%);
	text-align: center;
}

.gallery-lightbox__stage img {
	max-height: calc(100vh - 8rem);
	width: auto;
	max-width: 100%;
	margin: 0 auto;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.gallery-lightbox__stage figcaption {
	margin-top: 0.75rem;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.95rem;
}

.gallery-lightbox__close {
	position: fixed;
	top: 1rem;
	right: 1rem;
	z-index: 11001;
	width: 3rem;
	height: 3rem;
	border: 2px solid rgba(255, 255, 255, 0.85);
	border-radius: 50%;
	background: var(--navy);
	color: #fff;
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
	display: grid;
	place-items: center;
}

.gallery-lightbox__close:hover {
	background: var(--gold-deep);
}

.gallery-lightbox__nav {
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	z-index: 11001;
	width: 3rem;
	height: 3rem;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	font-size: 1.4rem;
	cursor: pointer;
}

.gallery-lightbox__nav:hover {
	background: var(--gold-deep);
}

.gallery-lightbox__nav--prev { left: 1rem; }
.gallery-lightbox__nav--next { right: 1rem; }

body.lightbox-open {
	overflow: hidden;
}

@media (max-width: 860px) {
	.owner-intro {
		grid-template-columns: 1fr;
	}

	.owner-intro__photo {
		max-width: 320px;
	}

	.site-footer__bar {
		flex-direction: column;
		text-align: center;
	}
}
