/* =============================================================
   YRRBO - Year Round Rentals By Owner
   Brand palette:
     Navy:      #0D2B45
     Teal:      #2FA79A
     Coral:     #FF6B5B
     Warm Gray: #B9B4AE
     Soft White:#FAFAF8
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800&display=swap');

:root {
	--navy:       #0D2B45;
	--navy-hover: #163d60;
	--teal:       #2FA79A;
	--teal-dark:  #238a7e;
	--coral:      #FF6B5B;
	--coral-dark: #e55a4a;
	--gray:       #B9B4AE;
	--gray-light: #E8E5E1;
	--white:      #FAFAF8;
	--text:       #2d3a47;
	--text-muted: #6b7585;
	--radius:     10px;
	--radius-lg:  16px;
	--shadow:     0 2px 16px rgba(13,43,69,.09);
	--shadow-md:  0 4px 28px rgba(13,43,69,.14);
	--transition: all .2s ease;
}

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

html { scroll-behavior: smooth; }

body {
	font-family: 'Nunito', 'Segoe UI', sans-serif;
	font-size: 16px;
	line-height: 1.65;
	color: var(--text);
	background: var(--white);
	margin: 0;
}

h1,h2,h3,h4,h5 {
	font-family: 'Nunito', sans-serif;
	font-weight: 800;
	line-height: 1.2;
	color: var(--navy);
}

a { color: var(--teal); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--teal-dark); }

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

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---- BUTTONS ---- */
.btn {
	display: inline-block;
	padding: 12px 28px;
	border-radius: var(--radius);
	font-weight: 700;
	font-size: 15px;
	cursor: pointer;
	border: 2px solid transparent;
	transition: var(--transition);
	text-decoration: none;
	line-height: 1;
}
.btn-coral  { background: var(--coral);  color: #fff; border-color: var(--coral); }
.btn-coral:hover { background: var(--coral-dark); border-color: var(--coral-dark); color: #fff; }
.btn-teal   { background: var(--teal);   color: #fff; border-color: var(--teal); }
.btn-teal:hover  { background: var(--teal-dark);  border-color: var(--teal-dark);  color: #fff; }
.btn-navy   { background: var(--navy);   color: #fff; border-color: var(--navy); }
.btn-navy:hover  { background: var(--navy-hover); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline-white:hover { background: rgba(255,255,255,.15); color: #fff; border-color: #fff; }
.btn-outline-coral { background: transparent; color: var(--coral); border-color: var(--coral); }
.btn-outline-coral:hover { background: var(--coral); color: #fff; }
.btn-lg { padding: 16px 36px; font-size: 17px; }
.btn-sm { padding: 8px 18px; font-size: 13px; }

/* ---- MESSAGES ---- */
.site-message { padding: 14px 20px; margin: 16px 0; border-radius: var(--radius); font-weight: 600; }
.site-message.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.site-message.error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.site-message.notice  { background: #fff3cd; color: #856404; border: 1px solid #ffeeba; }


/* =============================================================
   NAVIGATION
   ============================================================= */
.yrrbo-nav {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: var(--navy);
	box-shadow: 0 2px 12px rgba(0,0,0,.18);
}

.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 68px;
}

.nav-logo a {
	display: flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
}

.nav-logo-text {
	font-size: 26px;
	font-weight: 800;
	color: #fff;
	letter-spacing: -.5px;
}

.nav-logo-text span { color: var(--coral); }

.nav-logo-sub {
	font-size: 10px;
	font-weight: 600;
	color: var(--gray);
	letter-spacing: .08em;
	text-transform: uppercase;
	margin-top: 2px;
	display: block;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-links li a {
	color: rgba(255,255,255,.82);
	font-weight: 600;
	font-size: 14px;
	padding: 8px 14px;
	border-radius: var(--radius);
	transition: var(--transition);
	text-decoration: none;
}

.nav-links li a:hover,
.nav-links li a.active { color: #fff; background: rgba(255,255,255,.1); }

.nav-links li a.btn-coral { color: #fff; padding: 8px 18px; }
.nav-links li a.btn-coral:hover { background: var(--coral-dark); }

/* Nav dropdowns */
.nav-dropdown { position: relative; }

.nav-drop-btn {
	display: flex;
	align-items: center;
	gap: 5px;
	background: none;
	border: none;
	color: rgba(255,255,255,.82);
	font-weight: 600;
	font-size: 14px;
	padding: 8px 14px;
	border-radius: var(--radius);
	cursor: pointer;
	transition: var(--transition);
	font-family: inherit;
	white-space: nowrap;
}
.nav-drop-btn:hover,
.nav-drop-btn[aria-expanded="true"] { color: #fff; background: rgba(255,255,255,.1); }

.nav-drop-btn .nav-caret {
	font-size: 10px;
	transition: transform .2s;
	display: inline-block;
}
.nav-drop-btn[aria-expanded="true"] .nav-caret { transform: rotate(180deg); }

.nav-drop-menu {
	display: none;
	position: absolute;
	top: calc(100% + 6px);
	right: 0;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 24px rgba(0,0,0,.15);
	list-style: none;
	margin: 0;
	padding: 6px 0;
	min-width: 180px;
	z-index: 200;
}
.nav-drop-btn[aria-expanded="true"] + .nav-drop-menu { display: block; }

.nav-drop-menu li a {
	display: block;
	color: #0D2B45;
	font-size: 14px;
	font-weight: 600;
	padding: 10px 18px;
	text-decoration: none;
	transition: background .15s;
	background: none;
	border-radius: 0;
}
.nav-drop-menu li a:hover { background: #f5f7fa; color: #0D2B45; }

.nav-drop-menu li.nav-drop-section {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #aaa;
	padding: 8px 18px 4px;
}
.nav-drop-menu li.nav-drop-divider {
	border-top: 1px solid #eee;
	margin: 4px 0;
}
.nav-drop-menu li a.nav-drop-logout { color: #999; font-weight: 500; }
.nav-drop-menu li a.nav-drop-logout:hover { color: #c0392b; background: #fff5f5; }
.nav-drop-menu li a.nav-drop-cta { color: var(--coral); font-weight: 700; }

/* Mobile nav section labels */
.nav-mobile-section {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: rgba(255,255,255,.4);
	padding: 12px 24px 4px;
}

.nav-mobile-toggle {
	display: none;
	background: none;
	border: none;
	color: #fff;
	font-size: 22px;
	cursor: pointer;
	padding: 6px;
}

/* Mobile nav */
.nav-mobile {
	display: none;
	background: var(--navy-hover);
	border-top: 1px solid rgba(255,255,255,.1);
}

.nav-mobile.open { display: block; }

.nav-mobile ul {
	list-style: none;
	margin: 0;
	padding: 12px 0;
}

.nav-mobile ul li a {
	display: block;
	color: rgba(255,255,255,.85);
	font-weight: 600;
	font-size: 15px;
	padding: 11px 24px;
	text-decoration: none;
}

.nav-mobile ul li a:hover { background: rgba(255,255,255,.08); color: #fff; }


/* =============================================================
   HERO
   ============================================================= */
.hero {
	background: linear-gradient(135deg, var(--navy) 0%, #1a3d60 60%, #1e4a6e 100%);
	color: #fff;
	padding: 90px 0 80px;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: -60px; right: -60px;
	width: 380px; height: 380px;
	background: rgba(47,167,154,.12);
	border-radius: 50%;
	pointer-events: none;
}

.hero::after {
	content: '';
	position: absolute;
	bottom: -80px; left: -40px;
	width: 300px; height: 300px;
	background: rgba(255,107,91,.07);
	border-radius: 50%;
	pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; max-width: 760px; }

.hero-eyebrow {
	display: inline-block;
	background: rgba(47,167,154,.25);
	color: var(--teal);
	border: 1px solid rgba(47,167,154,.4);
	border-radius: 30px;
	padding: 5px 16px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.hero h1 {
	font-size: clamp(36px, 5vw, 58px);
	font-weight: 800;
	color: #fff;
	margin-bottom: 20px;
	line-height: 1.1;
}

.hero h1 span { color: var(--coral); }

.hero-tagline {
	font-size: 18px;
	color: rgba(255,255,255,.78);
	margin-bottom: 36px;
	max-width: 560px;
	line-height: 1.6;
}

.hero-search {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 24px;
	max-width: 560px;
}

.hero-search select,
.hero-search input {
	flex: 1;
	min-width: 200px;
	padding: 14px 18px;
	border-radius: var(--radius);
	border: 2px solid rgba(255,255,255,.2);
	background: rgba(255,255,255,.1);
	color: #fff;
	font-size: 15px;
	font-family: 'Nunito', sans-serif;
	font-weight: 600;
	backdrop-filter: blur(4px);
	outline: none;
	transition: var(--transition);
}

.hero-search select option { color: var(--text); background: #fff; }

.hero-search select:focus,
.hero-search input:focus {
	border-color: var(--teal);
	background: rgba(255,255,255,.15);
}

.hero-search button {
	white-space: nowrap;
	padding: 14px 28px;
	font-size: 15px;
	font-weight: 700;
	background: var(--coral);
	color: #fff;
	border: none;
	border-radius: var(--radius);
	cursor: pointer;
	transition: var(--transition);
}

.hero-search button:hover { background: var(--coral-dark); }

.hero-secondary {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.hero-secondary a { color: rgba(255,255,255,.7); font-size: 14px; font-weight: 600; }
.hero-secondary a:hover { color: #fff; }
.hero-secondary .sep { color: rgba(255,255,255,.3); }

.hero-stats {
	display: flex;
	gap: 32px;
	margin-top: 48px;
	padding-top: 36px;
	border-top: 1px solid rgba(255,255,255,.12);
	flex-wrap: wrap;
}

.hero-stat { }
.hero-stat .stat-num {
	font-size: 28px;
	font-weight: 800;
	color: var(--teal);
	display: block;
}
.hero-stat .stat-label {
	font-size: 13px;
	color: rgba(255,255,255,.6);
	font-weight: 600;
}


/* =============================================================
   HOW IT WORKS
   ============================================================= */
.how-it-works {
	padding: 80px 0;
	background: #fff;
}

.section-header {
	text-align: center;
	margin-bottom: 56px;
}

.section-header h2 {
	font-size: clamp(26px, 3.5vw, 38px);
	margin-bottom: 12px;
}

.section-header p {
	font-size: 17px;
	color: var(--text-muted);
	max-width: 520px;
	margin: 0 auto;
}

.hiw-cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.hiw-col {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 36px 32px;
	border: 1px solid var(--gray-light);
}

.hiw-col-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 28px;
}

.hiw-col-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	flex-shrink: 0;
}

.hiw-col.renters .hiw-col-icon { background: rgba(47,167,154,.12); }
.hiw-col.owners  .hiw-col-icon { background: rgba(255,107,91,.1); }

.hiw-col h3 {
	font-size: 20px;
	font-weight: 800;
	margin: 0;
}

.hiw-steps { list-style: none; margin: 0 0 28px; padding: 0; }

.hiw-step {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	padding: 12px 0;
	border-bottom: 1px solid var(--gray-light);
}

.hiw-step:last-child { border-bottom: none; }

.hiw-step-num {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	font-size: 13px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 2px;
}

.hiw-col.renters .hiw-step-num { background: var(--teal); color: #fff; }
.hiw-col.owners  .hiw-step-num { background: var(--coral); color: #fff; }

.hiw-step-text { font-size: 15px; color: var(--text); font-weight: 500; }


/* =============================================================
   WHY YRRBO (FEATURES)
   ============================================================= */
.why-yrrbo {
	padding: 80px 0;
	background: var(--white);
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-top: 48px;
}

.feature-card {
	background: #fff;
	border-radius: var(--radius-lg);
	padding: 32px 24px;
	border: 1px solid var(--gray-light);
	transition: var(--transition);
	text-align: left;
}

.feature-card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-3px);
	border-color: var(--teal);
}

.feature-icon {
	width: 52px;
	height: 52px;
	background: rgba(47,167,154,.1);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	margin-bottom: 18px;
}

.feature-card h4 {
	font-size: 17px;
	font-weight: 800;
	margin-bottom: 8px;
	color: var(--navy);
}

.feature-card p {
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.6;
	margin: 0;
}


/* =============================================================
   DISCLOSURE EXPLAINER (staged access)
   ============================================================= */
.disclosure-section {
	padding: 80px 0;
	background: #fff;
}

.disclosure-steps {
	display: flex;
	gap: 0;
	margin-top: 48px;
	position: relative;
}

.disclosure-steps::before {
	content: '';
	position: absolute;
	top: 36px; left: 10%;
	width: 80%;
	height: 2px;
	background: var(--gray-light);
	z-index: 0;
}

.disclosure-step {
	flex: 1;
	text-align: center;
	position: relative;
	z-index: 1;
	padding: 0 12px;
}

.disclosure-step-dot {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	margin: 0 auto 16px;
	border: 3px solid #fff;
	box-shadow: var(--shadow);
}

.disclosure-step:nth-child(1) .disclosure-step-dot { background: rgba(47,167,154,.12); }
.disclosure-step:nth-child(2) .disclosure-step-dot { background: rgba(255,107,91,.1); }
.disclosure-step:nth-child(3) .disclosure-step-dot { background: rgba(13,43,69,.08); }
.disclosure-step:nth-child(4) .disclosure-step-dot { background: rgba(47,167,154,.2); }

.disclosure-step h4 { font-size: 15px; font-weight: 800; margin-bottom: 6px; }
.disclosure-step p  { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin: 0; }

.disclosure-badge {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 20px;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: .06em;
}

.badge-public  { background: rgba(47,167,154,.15);  color: var(--teal); }
.badge-private { background: rgba(13,43,69,.1);     color: var(--navy); }
.badge-unlocked{ background: rgba(255,107,91,.12);  color: var(--coral-dark); }


/* =============================================================
   BROWSE BY TOWN
   ============================================================= */
.browse-towns {
	padding: 80px 0;
	background: var(--navy);
	color: #fff;
}

.browse-towns .section-header h2 { color: #fff; }
.browse-towns .section-header p  { color: rgba(255,255,255,.65); }

.towns-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 12px;
	margin-top: 40px;
}

.town-card {
	background: rgba(255,255,255,.07);
	border: 1px solid rgba(255,255,255,.12);
	border-radius: var(--radius);
	padding: 16px 14px;
	text-align: center;
	color: rgba(255,255,255,.85);
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	transition: var(--transition);
}

.town-card:hover {
	background: var(--teal);
	border-color: var(--teal);
	color: #fff;
	transform: translateY(-2px);
}


/* =============================================================
   OWNER CTA BAND
   ============================================================= */
.owner-cta {
	padding: 80px 0;
	background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
	text-align: center;
}

.owner-cta h2 {
	font-size: clamp(24px, 3.5vw, 36px);
	color: #fff;
	margin-bottom: 14px;
}

.owner-cta p {
	font-size: 17px;
	color: rgba(255,255,255,.82);
	max-width: 560px;
	margin: 0 auto 32px;
	line-height: 1.6;
}


/* =============================================================
   FOOTER
   ============================================================= */
.yrrbo-footer {
	background: var(--navy);
	color: rgba(255,255,255,.7);
	padding: 56px 0 32px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand .nav-logo-text { font-size: 22px; }
.footer-tagline {
	font-size: 14px;
	color: rgba(255,255,255,.5);
	margin-top: 10px;
	line-height: 1.6;
	max-width: 220px;
}

.footer-col h4 {
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .08em;
	margin-bottom: 16px;
}

.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
	color: rgba(255,255,255,.6);
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--teal); }

.footer-bottom {
	padding-top: 28px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.footer-copyright { font-size: 13px; color: rgba(255,255,255,.4); }
.footer-credit { font-size: 12px; color: rgba(255,255,255,.3); }
.footer-credit a { color: rgba(255,255,255,.4); }
.footer-credit a:hover { color: rgba(255,255,255,.7); }


/* =============================================================
   LISTINGS PAGE
   ============================================================= */
.listings-page { padding: 48px 0 80px; }

.listings-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 32px;
}

.listings-filters {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.filter-select {
	padding: 9px 14px;
	border-radius: var(--radius);
	border: 1.5px solid var(--gray-light);
	font-family: 'Nunito', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: var(--text);
	background: #fff;
	cursor: pointer;
	outline: none;
	transition: var(--transition);
}

.filter-select:focus { border-color: var(--teal); }

.listings-count {
	font-size: 14px;
	color: var(--text-muted);
	font-weight: 600;
}

.listings-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.listing-card {
	background: #fff;
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--gray-light);
	transition: var(--transition);
	display: flex;
	flex-direction: column;
}

.listing-card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-3px);
	border-color: var(--teal);
}

.listing-card-photo {
	aspect-ratio: 16/9;
	background: var(--gray-light);
	position: relative;
	overflow: hidden;
}

.listing-card-photo img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}

.listing-card:hover .listing-card-photo img { transform: scale(1.04); }

.listing-card-photo-placeholder {
	width: 100%; height: 100%;
	background: linear-gradient(135deg, var(--gray-light) 0%, #ddd8d2 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 40px;
	color: var(--gray);
}

.listing-card-badge {
	position: absolute;
	top: 12px; left: 12px;
	background: var(--navy);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 20px;
	text-transform: uppercase;
	letter-spacing: .06em;
}

.listing-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }

.listing-location {
	font-size: 12px;
	font-weight: 700;
	color: var(--teal);
	text-transform: uppercase;
	letter-spacing: .08em;
	margin-bottom: 6px;
}

.listing-title {
	font-size: 17px;
	font-weight: 800;
	color: var(--navy);
	margin-bottom: 10px;
	line-height: 1.3;
}

.listing-meta {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 14px;
}

.listing-meta span {
	font-size: 13px;
	color: var(--text-muted);
	font-weight: 600;
}

.listing-meta span i { margin-right: 4px; }

.listing-rent {
	font-size: 22px;
	font-weight: 800;
	color: var(--navy);
	margin-top: auto;
}

.listing-rent small {
	font-size: 13px;
	font-weight: 500;
	color: var(--text-muted);
}

.listing-card-footer {
	padding: 14px 20px;
	border-top: 1px solid var(--gray-light);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.listing-privacy-note {
	font-size: 12px;
	color: var(--text-muted);
	display: flex;
	align-items: center;
	gap: 4px;
}


/* =============================================================
   PROPERTY DETAIL PAGE
   ============================================================= */
.property-page { padding: 40px 0 80px; }

.property-breadcrumb {
	font-size: 13px;
	color: var(--text-muted);
	margin-bottom: 24px;
	font-weight: 600;
}

.property-breadcrumb a { color: var(--teal); }

.property-layout {
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 40px;
	align-items: start;
}

.property-gallery {
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--gray-light);
	aspect-ratio: 16/9;
	margin-bottom: 24px;
	position: relative;
}

.property-gallery img { width: 100%; height: 100%; object-fit: cover; }

.property-gallery-blur {
	width: 100%; height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #e8e5e1 0%, #d8d3cc 100%);
	color: var(--text-muted);
	text-align: center;
	padding: 32px;
}

.property-gallery-blur .lock-icon { font-size: 36px; margin-bottom: 10px; opacity: .5; }
.property-gallery-blur p { font-size: 14px; font-weight: 600; margin: 0; }

.property-thumb-row {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.property-thumb {
	width: 80px;
	height: 60px;
	border-radius: 6px;
	overflow: hidden;
	background: var(--gray-light);
}

.property-thumb img { width: 100%; height: 100%; object-fit: cover; }

.property-thumb.locked {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: var(--gray);
	background: linear-gradient(135deg, #e8e5e1 0%, #d8d3cc 100%);
}

.property-location-area {
	background: var(--white);
	border: 1px solid var(--gray-light);
	border-radius: var(--radius);
	padding: 16px;
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.location-pin { font-size: 24px; }

.location-text h4 { font-size: 15px; margin-bottom: 2px; }
.location-text p  { font-size: 13px; color: var(--text-muted); margin: 0; }

.property-info-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-bottom: 28px;
}

.info-pill {
	background: var(--white);
	border: 1px solid var(--gray-light);
	border-radius: var(--radius);
	padding: 14px;
	text-align: center;
}

.info-pill .val { font-size: 20px; font-weight: 800; color: var(--navy); display: block; }
.info-pill .lbl { font-size: 12px; color: var(--text-muted); font-weight: 600; }

.property-description h3 { font-size: 18px; margin-bottom: 12px; }
.property-description p  { font-size: 15px; color: var(--text); line-height: 1.7; }

.property-amenities { margin-top: 24px; }
.property-amenities h3 { font-size: 18px; margin-bottom: 14px; }
.amenity-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.amenity-tag {
	background: var(--white);
	border: 1px solid var(--gray-light);
	border-radius: 20px;
	padding: 5px 14px;
	font-size: 13px;
	font-weight: 600;
	color: var(--text);
}

/* Sidebar / inquiry card */
.inquiry-card {
	background: #fff;
	border-radius: var(--radius-lg);
	border: 1px solid var(--gray-light);
	padding: 28px;
	position: sticky;
	top: 88px;
	box-shadow: var(--shadow);
}

.inquiry-card .rent-display {
	font-size: 32px;
	font-weight: 800;
	color: var(--navy);
	margin-bottom: 4px;
}

.inquiry-card .rent-display small {
	font-size: 14px;
	font-weight: 500;
	color: var(--text-muted);
}

.inquiry-card .availability {
	font-size: 14px;
	color: var(--text-muted);
	font-weight: 600;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--gray-light);
}

.inquiry-form { }

.form-group {
	margin-bottom: 16px;
}

.form-group label {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 11px 14px;
	border: 1.5px solid var(--gray-light);
	border-radius: var(--radius);
	font-family: 'Nunito', sans-serif;
	font-size: 14px;
	color: var(--text);
	background: var(--white);
	outline: none;
	transition: var(--transition);
	resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); }

.inquiry-privacy-note {
	font-size: 12px;
	color: var(--text-muted);
	text-align: center;
	margin-top: 12px;
	line-height: 1.5;
}


/* =============================================================
   PAGE HERO (inner pages)
   ============================================================= */
.page-hero {
	background: var(--navy);
	color: #fff;
	padding: 48px 0;
}

.page-hero h1 {
	font-size: clamp(26px, 3.5vw, 40px);
	color: #fff;
	margin-bottom: 8px;
}

.page-hero p { font-size: 16px; color: rgba(255,255,255,.7); margin: 0; }


/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
	.feature-grid { grid-template-columns: repeat(2, 1fr); }
	.towns-grid   { grid-template-columns: repeat(3, 1fr); }
	.footer-grid  { grid-template-columns: 1fr 1fr; }
	.listings-grid { grid-template-columns: repeat(2, 1fr); }
	.property-layout { grid-template-columns: 1fr; }
	.inquiry-card { position: static; }
}

@media (max-width: 768px) {
	.nav-links { display: none; }
	.nav-mobile-toggle { display: flex; align-items: center; justify-content: center; }
	.hiw-cols  { grid-template-columns: 1fr; }
	.disclosure-steps { flex-direction: column; gap: 16px; }
	.disclosure-steps::before { display: none; }
	.feature-grid { grid-template-columns: 1fr; }
	.towns-grid   { grid-template-columns: repeat(2, 1fr); }
	.footer-grid  { grid-template-columns: 1fr; }
	.listings-grid { grid-template-columns: 1fr; }
	.property-info-grid { grid-template-columns: repeat(2, 1fr); }
	.hero { padding: 60px 0 52px; }
	.hero-search { flex-direction: column; }
	.hero-search select,
	.hero-search input { min-width: unset; }
}

@media (max-width: 480px) {
	.towns-grid { grid-template-columns: 1fr 1fr; }
	.hero-stats { gap: 20px; }
}
