:root {
  --ink: #171717;
  --muted: #626262;
  --line: #ded8d1;
  --paper: #f7f3ed;
  --white: #ffffff;
  --brand: #d4a72c;
  --brand-dark: #7a5a10;
  --charcoal: #252525;
  --tan: #c7a27a;
  --blue: #516f86;
  --shadow: 0 18px 42px rgba(23, 23, 23, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px clamp(16px, 4vw, 48px);
  background: rgba(248, 246, 239, 0.92);
  border-bottom: 1px solid rgba(222, 219, 208, 0.8);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 46px;
  height: 36px;
  object-fit: contain;
  display: block;
}

.brand strong,
.brand small {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.05;
}

.brand small {
  font-size: inherit;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2.5vw, 24px);
  font-size: 0.98rem;
  font-weight: 700;
}

.top-nav a {
  color: var(--muted);
  text-decoration: none;
}

.top-nav a:hover {
  color: var(--brand-dark);
}

.tenant-link {
  padding: 10px 14px;
  color: var(--ink) !important;
  border: 1px solid rgba(191, 147, 35, 0.5);
  border-radius: 8px;
  background: #f8edca;
  box-shadow: 0 12px 26px rgba(25, 22, 18, 0.08);
}

.tenant-link:hover {
  color: var(--ink) !important;
  background: #f5e2aa;
  border-color: rgba(191, 147, 35, 0.7);
}

.glenn-page {
  background: #f7f3ea;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100vh - 64px));
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 16, 16, 0.8), rgba(16, 16, 16, 0.36)),
    url("./assets/hero/lakeflag-hero-cleaned.jpg") center/cover;
  transform: scale(1.01);
}

.hero-content {
  position: relative;
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 54px) 0 34px;
  color: var(--white);
  text-align: center;
  transform: translateY(-22px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 7.2vw, 5.1rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 540px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.92rem, 1.45vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
}

.choice-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
}

.choice-card {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 104px;
  padding: 16px;
  color: var(--ink);
  text-align: left;
  background: #f8edca;
  border: 1px solid rgba(191, 147, 35, 0.5);
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(25, 22, 18, 0.08);
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.choice-card:hover {
  transform: translateY(-2px);
  background: #f5e2aa;
  border-color: rgba(191, 147, 35, 0.7);
  box-shadow: 0 16px 32px rgba(25, 22, 18, 0.12);
}

.choice-card.is-active {
  color: var(--ink);
  background: #f8edca;
  border-color: rgba(191, 147, 35, 0.58);
  box-shadow:
    0 12px 26px rgba(25, 22, 18, 0.08),
    inset 0 0 0 1px rgba(191, 147, 35, 0.18);
}

.choice-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--ink);
  background: var(--brand);
  border-radius: 8px;
  font-size: 1.24rem;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(25, 22, 18, 0.12);
}

.choice-card > div {
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.choice-card strong,
.choice-card small {
  display: block;
}

.choice-card strong {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 1.08rem;
}

.choice-card small {
  color: #5f5140;
  opacity: 1;
  font-size: 0.92rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--ink);
  background: var(--brand);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.button.secondary.dark {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.quick-search {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1100px, calc(100% - 36px));
  margin: -26px auto 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.listings-search {
  margin-top: -28px;
}

.quick-search label,
.request-form label {
  display: grid;
  gap: 8px;
}

.quick-search label {
  padding: 18px;
  background: var(--white);
}

label span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

select,
input,
textarea {
  width: 100%;
  min-height: 42px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

select,
input {
  padding: 0 12px;
}

textarea {
  resize: vertical;
  padding: 10px 12px;
}

.section,
.split-section,
.contact-band {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(52px, 8vw, 92px) 0;
}

.page-hero {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: clamp(64px, 10vw, 112px) 18px 78px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(90deg, rgba(16, 16, 16, 0.78), rgba(16, 16, 16, 0.52)),
    url("./assets/hero/search-properties-hero-medium-blur.jpg") center / cover;
}

.portal-hero {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: clamp(52px, 8vw, 90px) 18px clamp(34px, 5vw, 56px);
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(90deg, rgba(16, 16, 16, 0.82), rgba(16, 16, 16, 0.46)),
    url("./assets/hero/tenant-support-hero-blur.jpg") center / cover;
}

.portal-hero .eyebrow {
  font-size: clamp(1.16rem, 2.5vw, 1.7rem);
  font-weight: 900;
}

.portal-hero h1 {
  margin-bottom: 6px;
  font-size: clamp(2.35rem, 6vw, 5rem);
  line-height: 1;
}

.portal-hero > p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(0.92rem, 1.45vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
}

.eyebrow.dark {
  color: var(--brand-dark);
}

.portal-panel .eyebrow {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 900;
}

.portal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.85fr);
  gap: 16px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(44px, 7vw, 78px) 0;
  align-items: stretch;
}

.portal-panel {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 10px;
  min-height: 250px;
  padding: clamp(20px, 3vw, 28px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
}

.support-form-panel {
  grid-row: span 3;
  align-content: start;
}

.portal-panel h2 {
  margin-bottom: 0;
  font-size: clamp(1.36rem, 2.72vw, 2rem);
}

.portal-panel p {
  max-width: 620px;
  color: var(--muted);
  font-size: 0.98rem;
}

.portal-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.support-request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin-top: 2px;
  text-align: left;
}

.support-request-form label {
  display: grid;
  gap: 5px;
}

.support-request-form label span {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.support-form-wide,
.support-form-actions {
  grid-column: 1 / -1;
}

.support-request-form textarea {
  min-height: 104px;
}

.file-field {
  padding: 8px 10px;
  background: var(--paper);
  border: 1px dashed var(--brand-dark);
  border-radius: 8px;
}

.file-field input {
  min-height: auto;
  padding: 0;
  border: 0;
}

.file-field small {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
}

.support-form-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.email-button {
  color: var(--ink);
  background: rgba(245, 194, 66, 0.18);
  border: 1px solid rgba(191, 147, 35, 0.42);
}

.soft-pay-button {
  color: var(--ink);
  background: #f8edca;
  border: 1px solid rgba(191, 147, 35, 0.5);
  box-shadow: 0 12px 26px rgba(25, 22, 18, 0.08);
}

.soft-pay-button:hover,
.soft-pay-button:focus-visible {
  background: #f5e2aa;
  border-color: rgba(191, 147, 35, 0.7);
}

.payment-preview {
  display: grid;
  gap: 6px;
  padding: 18px;
  color: var(--ink);
  background: var(--paper);
  border: 1px dashed var(--brand-dark);
  border-radius: 8px;
}

.payment-preview span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.payment-preview strong {
  font-size: 1.15rem;
}

.portal-panel address {
  justify-content: center;
  margin-top: 4px;
  color: var(--ink);
  text-align: center;
}

.portal-panel address a {
  color: var(--ink);
}

.portal-panel address span {
  color: var(--muted);
}

.page-hero h1 {
  margin-bottom: 4px;
  font-size: clamp(2.3rem, 6vw, 5rem);
}

.page-hero .eyebrow {
  font-size: clamp(1.06rem, 2.1vw, 1.42rem);
  font-weight: 850;
}

.page-hero > p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.92rem, 1.45vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
}

.listings-choice {
  width: min(760px, 100%);
  margin-top: 12px;
}

.listings-section {
  padding-top: clamp(52px, 7vw, 82px);
}

.property-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: 14px;
  width: min(820px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(24px, 5vw, 44px) 0 18px;
  text-align: center;
}

.property-hero > div {
  display: grid;
  justify-items: center;
}

.property-hero h1 {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 8px;
  font-size: clamp(1.85rem, 4.4vw, 2.9rem);
  line-height: 1;
  text-align: center;
}

.property-hero p:not(.eyebrow) {
  max-width: 520px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
  font-size: 1rem;
}

.property-hero img {
  order: -1;
  width: 100%;
  max-height: 430px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  background: transparent;
  border: 0;
  border-radius: 8px;
}

.property-cover-932 {
  object-position: center 42%;
}

.property-cover-555 {
  object-position: center 45%;
}

.property-cover-351 {
  object-position: center 48%;
}

.property-cover-1444 {
  object-position: center 38%;
}

.property-cover-924 {
  object-position: center 40%;
}

.property-cover-770 {
  object-position: center 44%;
}

.property-actions {
  justify-content: center;
}

.glenn-page .property-hero {
  width: min(720px, calc(100% - 36px));
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  padding: clamp(20px, 4vw, 34px) 0 clamp(18px, 4vw, 28px);
  background:
    radial-gradient(circle at 50% 0%, rgba(245, 194, 66, 0.16), transparent 34%),
    linear-gradient(135deg, #fffaf0, #f1e7d2);
  border: 0;
  border-bottom: 1px solid rgba(122, 90, 16, 0.18);
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}

.glenn-page .property-hero > div {
  justify-items: center;
}

.glenn-page .property-hero h1,
.glenn-page .property-hero p:not(.eyebrow) {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.glenn-page .property-hero h1 {
  margin-bottom: 4px;
  font-size: clamp(1.52rem, 3.2vw, 2.18rem);
}

.glenn-page .property-hero p:not(.eyebrow) {
  max-width: 460px;
  font-size: 0.9rem;
  line-height: 1.38;
}

.glenn-page .property-actions {
  gap: 8px;
  margin-top: 12px;
}

.glenn-page .property-actions .button {
  padding: 10px 14px;
  font-size: 0.9rem;
}

.glenn-address {
  max-width: none !important;
  margin-top: 2px !important;
  margin-bottom: 0;
  color: #7a5a10;
  font-size: 0.78rem !important;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.property-detail-section {
  width: min(860px, calc(100% - 36px));
  padding-top: 34px;
}

.property-writeup {
  max-width: 840px;
  margin: 0 auto 18px;
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.55;
  text-align: center;
}

.property-writeup p {
  margin-bottom: 14px;
}

.property-writeup p:last-child {
  margin-bottom: 0;
}

.glenn-photo-feature {
  width: min(720px, 100%);
  margin: 0 auto 24px;
}

.glenn-photo-feature img {
  width: 100%;
  aspect-ratio: 2.4 / 1;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(122, 90, 16, 0.18);
  border-radius: 8px;
  box-shadow: 0 16px 32px rgba(31, 28, 23, 0.1);
}

.apartment-detail-section {
  width: min(980px, calc(100% - 36px));
}

.apartment-info-grid,
.unit-basics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 34px;
}

.apartment-info-card,
.unit-basics-grid article,
.apartment-contact-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(25, 22, 18, 0.06);
}

.apartment-info-card {
  display: grid;
  align-content: start;
  gap: 7px;
  padding: 20px;
  text-align: center;
}

.apartment-info-card h2 {
  font-size: clamp(1.2rem, 2vw, 1.56rem);
}

.apartment-info-card p:last-child {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.unit-basics-section {
  margin-top: 12px;
}

.unit-basics-grid {
  margin-top: 16px;
}

.unit-basics-grid article {
  display: grid;
  gap: 8px;
  padding: 18px;
  text-align: center;
}

.unit-basics-grid strong {
  color: var(--brand-dark);
  font-size: 1.04rem;
  font-weight: 900;
}

.unit-basics-grid span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.glenn-detail-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(18px, 4vw, 38px);
  align-items: center;
  margin: 0 0 28px;
  padding: clamp(24px, 4vw, 34px);
  color: #fffaf0;
  background:
    radial-gradient(circle at 12% 18%, rgba(245, 194, 66, 0.16), transparent 30%),
    #1f1c17;
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(31, 28, 23, 0.14);
}

.glenn-detail-band .eyebrow {
  color: #f5c242;
  text-align: center;
}

.glenn-detail-band h2 {
  max-width: 420px;
  margin: 0 auto;
  color: #fffaf0;
  font-size: clamp(1.32rem, 2.7vw, 2.05rem);
  line-height: 1.12;
  text-align: center;
}

.glenn-detail-band ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.glenn-detail-band li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 250, 240, 0.88);
  font-size: 0.98rem;
}

.glenn-detail-band li::before {
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  background: #f5c242;
  border-radius: 999px;
  content: "";
}

.apartment-contact-panel {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: clamp(22px, 4vw, 32px);
  text-align: center;
}

.apartment-contact-panel h2 {
  font-size: clamp(1.42rem, 2.8vw, 2.12rem);
}

.apartment-contact-panel p {
  max-width: 620px;
  color: var(--muted);
}

.apartment-contact-panel address {
  margin-top: 0;
}

.apartment-contact-panel address a {
  color: var(--ink);
}

.property-summary {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  text-align: center;
}

.property-summary h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.property-summary > p {
  max-width: 560px;
  color: var(--muted);
}

.gallery-count {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  color: var(--ink);
  background: var(--brand);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.gallery-item {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(41, 36, 29, 0.08);
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.gallery-item:hover,
.gallery-item:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(41, 36, 29, 0.14);
  outline: 0;
}

.gallery-item.featured {
  grid-column: span 3;
  grid-row: span 2;
}

.gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.gallery-item.featured img {
  height: 100%;
  min-height: 360px;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 14px;
  padding: 18px;
  color: var(--white);
  background: rgba(12, 12, 10, 0.92);
}

.gallery-modal.is-open {
  display: grid;
}

.gallery-modal-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.gallery-modal-count {
  font-size: 0.94rem;
  font-weight: 800;
}

.gallery-modal-close,
.gallery-modal-prev,
.gallery-modal-next {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--ink);
  background: var(--brand);
  border: 0;
  border-radius: 999px;
  font-size: 1.5rem;
  font-weight: 900;
  cursor: pointer;
}

.gallery-modal-figure {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  width: min(1120px, 100%);
  min-height: 0;
  margin: 0 auto;
}

.gallery-modal-image {
  display: block;
  width: 100%;
  max-height: calc(100vh - 170px);
  object-fit: contain;
  border-radius: 8px;
}

.gallery-modal-caption {
  width: min(1120px, 100%);
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
}

body.modal-open {
  overflow: hidden;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(260px, 0.45fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 28px;
}

.rentals-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  gap: 10px;
  text-align: center;
}

.rentals-heading > div,
.rentals-heading .eyebrow,
.rentals-heading h2,
.rentals-heading p {
  width: 100%;
  text-align: center;
}

.rentals-heading h2 {
  margin-bottom: 6px;
  font-size: clamp(1.85rem, 4vw, 3.15rem);
}

.rentals-heading p:last-child {
  max-width: 560px;
  margin-right: auto;
  margin-left: auto;
}

.section-heading p:last-child {
  color: var(--muted);
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.preview-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.listing-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.listing-card[hidden] {
  display: none;
}

.listing-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  background: #eee9df;
}

.glenn-listing-card {
  background: #fffaf0;
  border-color: rgba(122, 90, 16, 0.24);
  box-shadow: 0 16px 34px rgba(31, 28, 23, 0.1);
}

.glenn-listing-brand {
  display: grid;
  min-height: 245px;
  padding: 28px;
  place-items: center;
  background:
    radial-gradient(circle at 12% 14%, rgba(245, 194, 66, 0.18), transparent 28%),
    #1f1c17;
}

.glenn-listing-brand img {
  width: min(100%, 500px);
  aspect-ratio: auto;
  background: transparent;
  object-fit: contain;
}

.glenn-listing-card .listing-type {
  color: #7a5a10;
}

.listing-card img.glenn-listing-photo {
  object-fit: cover;
  object-position: center;
  background: #eee9df;
}

.listing-body {
  display: grid;
  min-height: 214px;
  align-content: space-between;
  gap: 12px;
  padding: 16px;
}

.listing-type,
.listing-meta {
  color: var(--muted);
}

.listing-type {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.listing-meta {
  margin-bottom: 0;
}

.listing-price {
  margin-bottom: 0;
  color: var(--brand-dark);
  font-size: 1.18rem;
  font-weight: 900;
}

.listing-body a {
  color: var(--ink);
  font-weight: 800;
}

.empty-state {
  padding: 28px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 1fr);
  gap: 48px;
  border-top: 1px solid var(--line);
}

.about-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.stats-row span {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 94px;
  padding: 16px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
  text-align: center;
}

.stats-row strong {
  display: block;
  margin-bottom: 7px;
  color: var(--brand-dark);
  font-weight: 900;
}

.stats-row small {
  display: block;
  min-height: 2.2rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: uppercase;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: 26px;
  align-items: start;
  max-width: 920px;
  padding: clamp(34px, 5vw, 54px) clamp(18px, 4vw, 42px);
  margin-bottom: 56px;
  color: var(--white);
  background: var(--charcoal);
  border-radius: 8px;
  text-align: center;
}

.contact-band > div {
  display: grid;
  justify-items: center;
  width: 100%;
  text-align: center;
}

.contact-band p {
  max-width: 560px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.78);
}

.contact-band h2 {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(1.85rem, 4vw, 3.15rem);
}

address {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  max-width: 680px;
  margin-top: 20px;
  font-style: normal;
  font-size: 1.08rem;
}

address a {
  color: var(--white);
  font-weight: 800;
}

address span {
  width: 100%;
  color: rgba(255, 255, 255, 0.78);
}

.request-form,
.contact-actions {
  display: grid;
  gap: 14px;
  width: min(100%, 520px);
  padding: 20px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  text-align: left;
}

.contact-actions {
  padding: 0;
  background: transparent;
  border: 0;
  text-align: center;
}

.request-form .button {
  width: 100%;
}

.contact-actions .button {
  width: 100%;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--brand-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 56px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-right {
  display: grid;
  justify-items: end;
  gap: 6px;
  text-align: right;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 700;
}

.footer-legal a {
  color: var(--muted);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--brand-dark);
  text-decoration: underline;
}

.legal-hero {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(54px, 9vw, 92px) 0 20px;
  text-align: center;
}

.legal-hero h1 {
  margin: 8px 0 10px;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.95;
}

.legal-hero p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.legal-content {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto clamp(50px, 8vw, 84px);
  padding: clamp(24px, 5vw, 44px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal-content h2 {
  margin: 28px 0 8px;
  font-size: clamp(1.25rem, 2.6vw, 1.65rem);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 1rem;
}

.legal-content a {
  color: var(--ink);
  font-weight: 800;
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 148px;
  }

  .site-header {
    align-items: center;
    flex-direction: column;
    gap: 10px;
    padding: 10px 14px 12px;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .brand-logo {
    width: 44px;
    height: 34px;
  }

  .top-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    font-size: 0.96rem;
    font-weight: 800;
  }

  .top-nav a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 10px 8px;
    text-align: center;
    color: var(--ink);
    background: var(--white);
    border: 2px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(23, 23, 23, 0.08);
  }

  .tenant-link {
    padding: 10px 8px;
    color: var(--ink) !important;
    background: #f8edca !important;
    border-color: rgba(191, 147, 35, 0.5) !important;
  }

  .hero {
    min-height: auto;
    align-items: end;
  }

  .hero-content {
    width: min(100% - 28px, 680px);
    padding-top: 36px;
    padding-bottom: 32px;
    transform: none;
  }

  .hero-copy {
    max-width: 430px;
    margin-bottom: 22px;
    padding: 10px 12px;
    color: var(--white);
    background: rgba(0, 0, 0, 0.32);
    border-radius: 8px;
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(16, 16, 16, 0.58), rgba(16, 16, 16, 0.82)),
      url("./assets/hero/lakeflag-hero-cleaned.jpg") 67% 58% / cover;
  }

  .page-hero {
    padding: 48px 16px 58px;
    background:
      linear-gradient(180deg, rgba(16, 16, 16, 0.58), rgba(16, 16, 16, 0.78)),
      url("./assets/hero/search-properties-hero-medium-blur.jpg") center / cover;
  }

  .choice-panel,
  .quick-search,
  .section-heading,
  .listing-grid,
  .property-hero,
  .property-summary,
  .apartment-info-grid,
  .unit-basics-grid,
  .glenn-detail-band,
  .portal-layout,
  .split-section,
  .stats-row,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .glenn-page .property-hero > div,
  .glenn-page .property-hero h1,
  .glenn-page .property-hero p:not(.eyebrow) {
    justify-items: center;
    text-align: center;
  }

  .glenn-detail-band {
    gap: 18px;
    text-align: center;
  }

  .glenn-detail-band h2 {
    max-width: none;
    margin: 0 auto;
  }

  .glenn-detail-band ul {
    justify-items: start;
    max-width: 440px;
    margin: 0 auto;
    text-align: left;
  }

  .portal-hero {
    padding: 44px 16px 44px;
  }

  .portal-layout {
    width: min(100% - 28px, 680px);
    padding-top: 34px;
    padding-bottom: 44px;
  }

  .portal-actions {
    grid-template-columns: 1fr;
  }

  .support-request-form,
  .support-form-actions {
    grid-template-columns: 1fr;
  }

  .portal-panel {
    text-align: center;
  }

  .portal-panel address {
    justify-content: center;
    text-align: center;
  }

  .choice-panel {
    gap: 10px;
  }

  .choice-card {
    min-height: 92px;
    color: var(--ink);
    background: #f8edca;
    border-color: rgba(191, 147, 35, 0.5);
  }

  .choice-card.is-active {
    background: #f8edca;
    border-color: rgba(191, 147, 35, 0.58);
  }

  .section,
  .split-section,
  .contact-band {
    width: min(100% - 28px, 680px);
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .split-section {
    justify-items: center;
    text-align: center;
  }

  .split-section > div {
    max-width: 640px;
  }

  .about-copy {
    text-align: center;
  }

  .stats-row span {
    text-align: center;
  }

  .contact-band {
    width: min(100% - 28px, 680px);
    padding: 28px 18px;
  }

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

  .gallery-item.featured {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .gallery-item.featured img {
    min-height: 280px;
  }

  .gallery-modal {
    gap: 10px;
    padding: 12px;
  }

  .gallery-modal-figure {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 8px;
  }

  .gallery-modal-close,
  .gallery-modal-prev,
  .gallery-modal-next {
    width: 42px;
    height: 42px;
  }

  .site-footer {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    justify-items: center;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.95rem;
  }

  .brand strong {
    font-size: 0.96rem;
  }

  .top-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    font-size: 1rem;
  }

  .tenant-link {
    grid-column: 1 / -1;
  }

  .choice-card {
    grid-template-columns: 52px minmax(0, 1fr);
    min-height: 104px;
    padding: 14px;
    background: #f8edca;
    border-color: rgba(191, 147, 35, 0.5);
  }

  .choice-icon {
    width: 52px;
    height: 52px;
    font-size: 1.08rem;
  }

  .file-field input[type="file"] {
    width: 100%;
    min-height: 48px;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .listing-card img,
  .property-hero img {
    aspect-ratio: 4 / 3;
  }

  .glenn-listing-brand {
    min-height: 210px;
    padding: 22px;
  }

  .glenn-listing-brand img {
    aspect-ratio: auto;
  }

  .property-hero {
    width: min(100% - 28px, 680px);
    padding-top: 22px;
  }

  .glenn-page .property-hero {
    padding: 20px 0 18px;
  }

  .glenn-page .property-hero h1 {
    font-size: 1.9rem;
  }

  .glenn-page .property-hero p:not(.eyebrow) {
    font-size: 0.86rem;
  }

  .glenn-address {
    font-size: 0.78rem !important;
    line-height: 1.35;
  }

  .property-hero img {
    max-height: 280px;
  }

  .glenn-page .property-cover {
    max-height: none;
    aspect-ratio: 1;
    object-fit: contain;
  }

  address {
    display: grid;
    gap: 8px;
  }

  .gallery-item img {
    aspect-ratio: 1 / 1;
  }

  .gallery-item.featured img {
    aspect-ratio: 4 / 3;
    min-height: 230px;
  }

  .gallery-modal-figure {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
  }

  .gallery-modal-close,
  .gallery-modal-prev,
  .gallery-modal-next {
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
  }
}
