/**
 * Affordable Housing SLA — Main Styles
 */

:root {
	--ahs-green-900: #0f2e26;
	--ahs-green-800: #1b4d3e;
	--ahs-green-700: #256b57;
	--ahs-green-100: #e8f3ef;
	--ahs-gold: #d4922a;
	--ahs-gold-dark: #8a5c1a;
	--ahs-gold-darker: #5c3d12;
	--ahs-gold-light: #f5e6c8;
	--ahs-cream: #faf7f2;
	--ahs-cream-dark: #f0ebe3;
	--ahs-text: #1a1f1e;
	--ahs-text-muted: #5c6663;
	--ahs-white: #ffffff;
	--ahs-border: #ddd8cf;
	--ahs-shadow: 0 12px 40px rgba(15, 46, 38, 0.08);
	--ahs-radius: 16px;
	--ahs-radius-sm: 10px;
	--ahs-font: "DM Sans", system-ui, sans-serif;
	--ahs-display: "Fraunces", Georgia, serif;
	--ahs-container: 1180px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--ahs-font);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--ahs-text);
	background: var(--ahs-cream);
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: var(--ahs-green-800);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

a:hover {
	color: var(--ahs-green-700);
}

h1, h2, h3, h4 {
	font-family: var(--ahs-display);
	font-weight: 600;
	line-height: 1.2;
	color: var(--ahs-green-900);
}

p {
	margin: 0 0 1rem;
}

ul {
	margin: 0;
	padding: 0;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.ahs-container {
	width: min(100% - 2.5rem, var(--ahs-container));
	margin-inline: auto;
}

.ahs-main {
	min-height: 60vh;
}

/* Header */
.ahs-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(250, 247, 242, 0.92);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--ahs-border);
}

.ahs-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding-block: 1rem;
}

.ahs-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	color: var(--ahs-green-900);
}

.ahs-logo__mark {
	display: block;
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	overflow: hidden;
}

.ahs-logo__mark img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ahs-logo__text {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.ahs-logo__text strong {
	font-family: var(--ahs-display);
	font-size: 1.05rem;
}

.ahs-logo__text small {
	font-size: 0.75rem;
	color: var(--ahs-text-muted);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.ahs-nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--ahs-border);
	border-radius: 10px;
	background: var(--ahs-white);
	cursor: pointer;
}

.ahs-nav-toggle__bar {
	display: block;
	width: 20px;
	height: 2px;
	margin-inline: auto;
	background: var(--ahs-green-900);
	transition: transform 0.2s, opacity 0.2s;
}

.ahs-nav {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.ahs-nav__list {
	display: flex;
	align-items: center;
	gap: 1.75rem;
	list-style: none;
}

.ahs-nav__list a {
	text-decoration: none;
	font-weight: 500;
	color: var(--ahs-text);
}

.ahs-nav__list a:hover,
.ahs-nav__list .current-menu-item a,
.ahs-nav__list .current_page_item a {
	color: var(--ahs-green-800);
}

.ahs-header__cta {
	white-space: nowrap;
}

/* Buttons */
.ahs-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.85rem 1.5rem;
	border: 2px solid transparent;
	border-radius: 999px;
	font-family: var(--ahs-font);
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.15s, background 0.15s, border-color 0.15s, color 0.15s;
}

.ahs-btn:hover {
	transform: translateY(-1px);
}

.ahs-btn--primary {
	background: var(--ahs-green-800);
	color: var(--ahs-white);
}

.ahs-btn--primary:hover {
	background: var(--ahs-green-700);
	color: var(--ahs-white);
}

.ahs-btn--secondary {
	background: var(--ahs-white);
	color: var(--ahs-green-800);
	border-color: var(--ahs-green-800);
}

.ahs-btn--secondary:hover {
	background: var(--ahs-green-100);
	color: var(--ahs-green-800);
}

.ahs-btn--ghost {
	background: transparent;
	color: var(--ahs-green-900);
	border-color: var(--ahs-border);
}

.ahs-btn--ghost:hover {
	border-color: var(--ahs-green-800);
	color: var(--ahs-green-800);
}

.ahs-btn--small {
	padding: 0.6rem 1.1rem;
	font-size: 0.875rem;
}

/* Hero */
.ahs-hero {
	position: relative;
	padding: 5.5rem 0 4.5rem;
	overflow: hidden;
	color: var(--ahs-white);
}

.ahs-hero__bg {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(
			to right,
			rgba(92, 61, 18, 0.97) 0%,
			rgba(92, 61, 18, 0.93) 28%,
			rgba(138, 92, 26, 0.72) 48%,
			rgba(184, 122, 34, 0.28) 68%,
			rgba(212, 146, 42, 0.06) 88%,
			rgba(212, 146, 42, 0) 100%
		),
		url('../images/hero-la-skyline.jpg');
	background-size: cover;
	background-position: center right;
}

.ahs-hero__inner {
	position: relative;
	z-index: 1;
}

.ahs-hero__content {
	max-width: 36rem;
	margin-right: auto;
	text-align: left;
}

.ahs-eyebrow {
	margin: 0 0 0.75rem;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ahs-gold);
}

.ahs-hero .ahs-eyebrow {
	color: var(--ahs-gold-light);
}

.ahs-hero .ahs-btn--primary {
	background: var(--ahs-green-900);
	border-color: var(--ahs-green-900);
}

.ahs-hero .ahs-btn--primary:hover {
	background: var(--ahs-green-800);
	border-color: var(--ahs-green-800);
}

.ahs-hero h1 {
	margin: 0 0 1rem;
	font-size: clamp(2.25rem, 5vw, 3.5rem);
	color: var(--ahs-white);
}

.ahs-hero__vouchers {
	margin-top: 1.5rem;
	padding: 1.1rem 1.25rem;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 0.75rem;
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
}

.ahs-hero__vouchers-label {
	margin: 0 0 0.65rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ahs-gold-light);
}

.ahs-hero__vouchers-list {
	margin: 0;
	font-size: clamp(0.95rem, 2.2vw, 1.05rem);
	font-weight: 600;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.94);
}

.ahs-hero__vouchers-item {
	white-space: nowrap;
}

.ahs-hero__vouchers-sep {
	display: inline-block;
	margin: 0 0.55rem;
	font-size: 0.5rem;
	line-height: 1;
	vertical-align: middle;
	color: var(--ahs-gold-light);
	opacity: 0.9;
}

.ahs-hero__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 0.75rem;
	margin-top: 1.75rem;
}

.ahs-hero .ahs-btn--ghost {
	color: var(--ahs-white);
	border-color: rgba(255, 255, 255, 0.45);
}

.ahs-hero .ahs-btn--ghost:hover {
	color: var(--ahs-white);
	border-color: var(--ahs-white);
	background: rgba(255, 255, 255, 0.1);
}

/* Sections */
.ahs-section {
	padding: 4rem 0;
}

.ahs-section--muted {
	background: var(--ahs-white);
	border-block: 1px solid var(--ahs-border);
}

.ahs-section__header {
	max-width: 42rem;
	margin-bottom: 2.5rem;
}

.ahs-section__header h2 {
	margin: 0 0 0.5rem;
	font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.ahs-section__header p {
	color: var(--ahs-text-muted);
}

.ahs-section__footer {
	margin-top: 2.5rem;
	text-align: center;
}

/* Page header */
.ahs-page-header {
	padding: 3.5rem 0 2rem;
	background: var(--ahs-white);
	border-bottom: 1px solid var(--ahs-border);
}

.ahs-page-header h1 {
	margin: 0 0 0.75rem;
	font-size: clamp(2rem, 4vw, 2.75rem);
}

.ahs-page-header__lead {
	max-width: 52ch;
	color: var(--ahs-text-muted);
	font-size: 1.05rem;
}

/* Listing archive filters */
.ahs-listing-filters {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 1rem 1.5rem;
	margin-bottom: 2rem;
	padding: 1.25rem 1.5rem;
	background: var(--ahs-white);
	border: 1px solid var(--ahs-border);
	border-radius: var(--ahs-radius);
}

.ahs-listing-filters__group {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	min-width: 180px;
}

.ahs-listing-filters__label {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--ahs-green-900);
}

.ahs-listing-filters__select {
	min-width: 180px;
	padding: 0.55rem 0.75rem;
	border: 1px solid var(--ahs-border);
	border-radius: var(--ahs-radius-sm);
	background: var(--ahs-white);
	font: inherit;
	color: var(--ahs-text);
}

.ahs-listing-filters__actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.ahs-listing-filters__reset {
	font-size: 0.95rem;
}

/* Listing grid */
.ahs-listing-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}

.ahs-listing-card {
	background: var(--ahs-white);
	border: 1px solid var(--ahs-border);
	border-radius: var(--ahs-radius);
	overflow: hidden;
	box-shadow: var(--ahs-shadow);
	transition: transform 0.2s, box-shadow 0.2s;
}

.ahs-listing-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 50px rgba(15, 46, 38, 0.12);
}

.ahs-listing-card__link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.ahs-listing-card__image {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--ahs-cream-dark);
}

.ahs-listing-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ahs-listing-card__placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	color: var(--ahs-green-700);
	opacity: 0.4;
}

.ahs-listing-card__placeholder svg {
	width: 48px;
	height: 48px;
}

.ahs-listing-card__body {
	padding: 1.25rem 1.35rem 1.5rem;
}

.ahs-listing-card__rent {
	margin: 0 0 0.35rem;
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--ahs-green-800);
}

.ahs-listing-card__vacancies {
	margin: 0 0 0.35rem;
	font-size: 1rem;
	font-weight: 700;
	color: var(--ahs-gold);
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.ahs-listing-card__title {
	margin: 0 0 0.35rem;
	font-size: 1.15rem;
}

.ahs-listing-card__location {
	margin: 0 0 0.75rem;
	font-size: 0.9rem;
	color: var(--ahs-text-muted);
}

.ahs-listing-card__stats {
	display: flex;
	gap: 1rem;
	list-style: none;
	font-size: 0.875rem;
	color: var(--ahs-text-muted);
}

/* Badges */
.ahs-badge {
	display: inline-block;
	padding: 0.3rem 0.7rem;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.ahs-listing-card__image .ahs-badge {
	position: absolute;
	top: 0.85rem;
	left: 0.85rem;
}

.ahs-badge--available {
	background: #d4edda;
	color: #1e5631;
}

.ahs-badge--waitlist {
	background: var(--ahs-gold-light);
	color: #7a5510;
}

.ahs-badge--rented {
	background: #e9ecef;
	color: #495057;
}

/* Features */
.ahs-features {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 2rem;
}

.ahs-feature__icon {
	display: inline-grid;
	place-items: center;
	width: 48px;
	height: 48px;
	margin-bottom: 1rem;
	border-radius: 12px;
	background: var(--ahs-green-100);
	font-family: var(--ahs-display);
	font-weight: 700;
	color: var(--ahs-green-800);
}

.ahs-feature h3 {
	margin: 0 0 0.5rem;
	font-size: 1.2rem;
}

.ahs-feature p {
	color: var(--ahs-text-muted);
}

/* Single listing */
.ahs-listing-hero {
	position: relative;
}

.ahs-listing-hero__image,
.ahs-listing-hero__placeholder {
	max-height: 420px;
	overflow: hidden;
}

.ahs-listing-hero__image img {
	width: 100%;
	height: 420px;
	object-fit: cover;
}

.ahs-listing-hero__placeholder {
	height: 320px;
	background: linear-gradient(135deg, var(--ahs-green-800), var(--ahs-green-700));
}

.ahs-listing-hero__overlay {
	position: relative;
	margin-top: -5rem;
	padding: 2rem;
	background: var(--ahs-white);
	border: 1px solid var(--ahs-border);
	border-radius: var(--ahs-radius);
	box-shadow: var(--ahs-shadow);
}

.ahs-listing-hero__overlay h1 {
	margin: 0.75rem 0 0.35rem;
}

.ahs-listing-hero__location {
	margin: 0;
	color: var(--ahs-text-muted);
}

.ahs-single-listing__layout {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 2.5rem;
	padding: 2.5rem 0 4rem;
	align-items: start;
}

.ahs-single-listing__rent {
	margin: 0 0 1rem;
	font-size: 2rem;
	font-weight: 700;
	color: var(--ahs-green-800);
}

.ahs-stats-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	margin: 0 0 1.5rem;
	padding: 1rem 0;
	border-block: 1px solid var(--ahs-border);
	list-style: none;
}

.ahs-stats-bar li {
	font-size: 0.95rem;
	color: var(--ahs-text-muted);
}

.ahs-stats-bar strong {
	display: block;
	font-size: 1.25rem;
	color: var(--ahs-green-900);
}

.ahs-stats-bar__price {
	display: block;
	margin-top: 0.15rem;
	font-weight: 700;
	color: var(--ahs-green-900);
}

.ahs-lead {
	font-size: 1.125rem;
	color: var(--ahs-text-muted);
}

.ahs-content {
	margin-bottom: 2rem;
}

.ahs-info-box,
.ahs-amenities {
	margin-bottom: 2rem;
	padding: 1.5rem;
	background: var(--ahs-white);
	border: 1px solid var(--ahs-border);
	border-radius: var(--ahs-radius-sm);
}

.ahs-info-box h2,
.ahs-amenities h2 {
	margin: 0 0 0.75rem;
	font-size: 1.15rem;
}

.ahs-info-box--highlight {
	background: var(--ahs-green-100);
	border-color: #b8d9ce;
}

.ahs-info-box--highlight h2 {
	color: var(--ahs-green-800);
}

.ahs-vacant-units-list {
	margin: 0;
	padding-left: 1.2rem;
}

.ahs-vacant-units-list li {
	margin-bottom: 0.35rem;
}

.ahs-gallery {
	margin-bottom: 2rem;
}

.ahs-gallery h2 {
	margin: 0 0 1rem;
	font-size: 1.35rem;
}

.ahs-gallery__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.75rem;
}

.ahs-gallery__item {
	margin: 0;
	border-radius: var(--ahs-radius-sm);
	overflow: hidden;
	border: 1px solid var(--ahs-border);
}

.ahs-gallery__link {
	display: block;
	cursor: zoom-in;
}

.ahs-gallery__link:hover img {
	transform: scale(1.03);
}

.ahs-gallery__item img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	transition: transform 0.2s ease;
}

.ahs-listing-hero__link {
	display: block;
	cursor: zoom-in;
}

.ahs-listing-hero__link img {
	transition: transform 0.2s ease;
}

.ahs-listing-hero__link:hover img {
	transform: scale(1.02);
}

/* Photo lightbox */
.ahs-lightbox {
	position: fixed;
	inset: 0;
	z-index: 200;
}

.ahs-lightbox[hidden] {
	display: none;
}

.ahs-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 46, 38, 0.88);
	cursor: pointer;
}

.ahs-lightbox__dialog {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: min(100% - 2rem, 1100px);
	height: 100%;
	margin: 0 auto;
	padding: 3rem 0;
	pointer-events: none;
}

.ahs-lightbox__close,
.ahs-lightbox__nav,
.ahs-lightbox__figure {
	pointer-events: auto;
}

.ahs-lightbox__figure {
	margin: 0;
	max-width: 100%;
	max-height: calc(100vh - 6rem);
}

.ahs-lightbox__image {
	display: block;
	max-width: 100%;
	max-height: calc(100vh - 6rem);
	margin: 0 auto;
	border-radius: var(--ahs-radius-sm);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.ahs-lightbox__close,
.ahs-lightbox__nav {
	position: absolute;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: none;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	color: var(--ahs-green-900);
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
}

.ahs-lightbox__close {
	top: 1rem;
	right: 1rem;
}

.ahs-lightbox__nav--prev {
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
}

.ahs-lightbox__nav--next {
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
}

body.ahs-lightbox-open {
	overflow: hidden;
}

.ahs-amenities ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.5rem 1rem;
	list-style: none;
}

.ahs-amenities li {
	position: relative;
	padding-left: 1.25rem;
}

.ahs-amenities li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--ahs-gold);
}

/* Forms */
.ahs-form-card {
	padding: 1.75rem;
	background: var(--ahs-white);
	border: 1px solid var(--ahs-border);
	border-radius: var(--ahs-radius);
	box-shadow: var(--ahs-shadow);
}

.ahs-form-card h2 {
	margin: 0 0 0.5rem;
	font-size: 1.35rem;
}

.ahs-form-intro {
	margin-bottom: 1.25rem;
	color: var(--ahs-text-muted);
	font-size: 0.95rem;
}

.ahs-form-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.ahs-field {
	margin-bottom: 1rem;
}

.ahs-field label {
	display: block;
	margin-bottom: 0.35rem;
	font-size: 0.875rem;
	font-weight: 600;
}

.ahs-field .required {
	color: #b45309;
}

.ahs-field input,
.ahs-field textarea,
.ahs-field select {
	width: 100%;
	padding: 0.75rem 0.9rem;
	border: 1px solid var(--ahs-border);
	border-radius: var(--ahs-radius-sm);
	font: inherit;
	background: var(--ahs-cream);
	transition: border-color 0.15s, box-shadow 0.15s;
}

.ahs-field input:focus,
.ahs-field textarea:focus {
	outline: none;
	border-color: var(--ahs-green-700);
	box-shadow: 0 0 0 3px rgba(37, 107, 87, 0.15);
	background: var(--ahs-white);
}

.ahs-honeypot {
	position: absolute;
	left: -9999px;
	opacity: 0;
	pointer-events: none;
}

.ahs-notice {
	margin-bottom: 1rem;
	padding: 0.85rem 1rem;
	border-radius: var(--ahs-radius-sm);
	font-size: 0.9rem;
}

.ahs-notice--success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #b7dfc3;
}

.ahs-notice--error {
	background: #fde8e8;
	color: #9b1c1c;
	border: 1px solid #f5c6c6;
}

.ahs-fluent-form-wrap .ff-el-group {
	margin-bottom: 1rem;
}

.ahs-fluent-form-wrap .ff-el-input--label label {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--ahs-text);
}

.ahs-fluent-form-wrap .ff-el-form-control {
	padding: 0.75rem 0.9rem;
	border: 1px solid var(--ahs-border);
	border-radius: var(--ahs-radius-sm);
	background: var(--ahs-cream);
	font: inherit;
}

.ahs-fluent-form-wrap .ff-el-form-control:focus {
	border-color: var(--ahs-green-700);
	box-shadow: 0 0 0 3px rgba(37, 107, 87, 0.15);
	background: var(--ahs-white);
}

.ahs-fluent-form-wrap .ff-btn-submit {
	padding: 0.85rem 1.5rem;
	border: none;
	border-radius: 999px;
	background: var(--ahs-green-800);
	color: var(--ahs-white);
	font-family: var(--ahs-font);
	font-size: 0.95rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.15s ease, transform 0.15s ease;
}

.ahs-fluent-form-wrap .ff-btn-submit:hover {
	background: var(--ahs-green-700);
	transform: translateY(-1px);
}

.ahs-fluent-form-wrap .ff-message-success {
	margin-bottom: 1rem;
	padding: 0.85rem 1rem;
	border-radius: var(--ahs-radius-sm);
	background: #d4edda;
	color: #155724;
	border: 1px solid #b7dfc3;
}

.ahs-fluent-form-wrap .ff-message-error {
	margin-bottom: 1rem;
	padding: 0.85rem 1rem;
	border-radius: var(--ahs-radius-sm);
	background: #fde8e8;
	color: #9b1c1c;
	border: 1px solid #f5c6c6;
}

/* Contact page */
.ahs-contact-layout {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 2.5rem;
	align-items: start;
}

.ahs-contact-info h2 {
	margin: 0 0 1.5rem;
}

.ahs-contact-item {
	margin-bottom: 1.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid var(--ahs-border);
}

.ahs-contact-item:last-child {
	border-bottom: 0;
}

.ahs-contact-item h3 {
	margin: 0 0 0.35rem;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--ahs-text-muted);
	font-family: var(--ahs-font);
	font-weight: 600;
}

.ahs-contact-item p {
	margin: 0;
}

/* Footer */
.ahs-footer {
	margin-top: 3rem;
	background: var(--ahs-green-900);
	color: rgba(255, 255, 255, 0.85);
}

.ahs-footer a {
	color: var(--ahs-white);
	text-decoration: none;
}

.ahs-footer a:hover {
	text-decoration: underline;
}

.ahs-footer h2 {
	margin: 0 0 1rem;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: rgba(255, 255, 255, 0.6);
	font-family: var(--ahs-font);
	font-weight: 600;
}

.ahs-footer__grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr 0.8fr;
	gap: 2rem;
	padding: 3rem 0 2rem;
}

.ahs-footer__brand strong {
	display: block;
	margin-bottom: 0.5rem;
	font-family: var(--ahs-display);
	font-size: 1.2rem;
	color: var(--ahs-white);
}

.ahs-footer__menu,
.ahs-footer .ahs-nav__list {
	list-style: none;
}

.ahs-footer__menu li,
.ahs-footer .ahs-nav__list li {
	margin-bottom: 0.5rem;
}

.ahs-footer__bottom {
	padding: 1.25rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ahs-footer__bottom p {
	margin: 0;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.55);
}

/* Pagination & empty states */
.ahs-pagination {
	margin-top: 2.5rem;
}

.ahs-pagination .nav-links {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.ahs-pagination a,
.ahs-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 0.75rem;
	border: 1px solid var(--ahs-border);
	border-radius: 999px;
	text-decoration: none;
	background: var(--ahs-white);
}

.ahs-pagination .current {
	background: var(--ahs-green-800);
	border-color: var(--ahs-green-800);
	color: var(--ahs-white);
}

.ahs-empty,
.ahs-empty-state {
	text-align: center;
	padding: 3rem 1rem;
}

.ahs-empty-state h1,
.ahs-empty-state h2 {
	margin-bottom: 0.75rem;
}

/* Listing interest CTA */
.ahs-interest-btn {
	position: fixed;
	bottom: 1.5rem;
	right: 1.5rem;
	z-index: 90;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.95rem 1.5rem;
	border: none;
	border-radius: 999px;
	background: var(--ahs-green-800);
	color: var(--ahs-white);
	font-family: var(--ahs-font);
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 12px 32px rgba(15, 46, 38, 0.28);
	opacity: 0;
	visibility: hidden;
	transform: translateY(1rem);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, background 0.15s ease;
}

.ahs-interest-btn.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.ahs-interest-btn:hover {
	background: var(--ahs-green-700);
	color: var(--ahs-white);
	transform: translateY(-2px);
}

.ahs-interest-btn.is-visible:hover {
	transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 960px) {
	.ahs-hero {
		padding: 4rem 0 3.5rem;
	}

	.ahs-hero__bg {
		background-position: 70% center;
	}

	.ahs-listing-grid,
	.ahs-features,
	.ahs-single-listing__layout,
	.ahs-contact-layout,
	.ahs-footer__grid {
		grid-template-columns: 1fr;
	}

	.ahs-listing-hero__overlay {
		margin-top: 0;
	}

	.ahs-amenities ul {
		grid-template-columns: 1fr;
	}

	.ahs-gallery__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.ahs-nav-toggle {
		display: flex;
	}

	.ahs-nav {
		position: fixed;
		inset: 72px 1.25rem auto;
		display: none;
		flex-direction: column;
		align-items: stretch;
		padding: 1.25rem;
		background: var(--ahs-white);
		border: 1px solid var(--ahs-border);
		border-radius: var(--ahs-radius);
		box-shadow: var(--ahs-shadow);
	}

	.ahs-nav.is-open {
		display: flex;
	}

	.ahs-nav__list {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
	}

	.ahs-header__cta {
		width: 100%;
		text-align: center;
	}

	.ahs-form-row {
		grid-template-columns: 1fr;
	}

	body.nav-open {
		overflow: hidden;
	}

	.ahs-interest-btn {
		bottom: 1rem;
		right: 1rem;
		padding: 0.85rem 1.25rem;
		font-size: 0.95rem;
	}
}
