/* ================================================================
   Dunlin Housing — Public Website
   Brand: Teal #1FA79A · Slate #47535B · Inter Tight
   ================================================================ */

@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap");

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

:root {
  /* Dunlin brand */
  --teal:          #1FA79A;
  --teal-700:      #178277;
  --teal-300:      #6CC8BE;
  --teal-100:      #C9EBE6;
  --teal-50:       #EAF6F4;

  --slate-900:     #2A3239;
  --slate-700:     #47535B;
  --slate-500:     #6E7A82;
  --slate-300:     #A8B1B7;
  --slate-100:     #D7DCDF;
  --slate-50:      #ECEFF1;
  --slate-25:      #F5F7F8;
  --paper:         #F8F9FA;
  --white:         #FFFFFF;

  /* Semantic */
  --bg:            var(--paper);
  --bg-raised:     var(--white);
  --bg-sunken:     var(--slate-25);
  --fg:            var(--slate-900);
  --fg-muted:      var(--slate-700);
  --fg-subtle:     var(--slate-500);
  --fg-faint:      var(--slate-300);
  --border:        var(--slate-100);
  --border-strong: var(--slate-300);
  --accent:        var(--teal);
  --accent-hover:  var(--teal-700);

  /* Status */
  --success:       #2E8C6A;
  --success-tint:  #E5F2EC;
  --warning:       #C77D2E;
  --warning-tint:  #FBEFDC;

  /* Type */
  --sans: 'Inter Tight', 'Neue Haas Grotesk', 'Helvetica Neue', Helvetica, Arial, system-ui, sans-serif;

  /* Shape */
  --r-sm:   6px;
  --r-md:   10px;
  --r-lg:   14px;
  --r-pill: 999px;

  /* Shadow */
  --sh-1: 0 1px 3px rgba(42,50,57,.06), 0 1px 2px rgba(42,50,57,.04);
  --sh-2: 0 4px 12px rgba(42,50,57,.08), 0 1px 3px rgba(42,50,57,.05);
  --sh-3: 0 12px 32px rgba(42,50,57,.12), 0 2px 6px rgba(42,50,57,.06);

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --t1: 120ms;
  --t2: 200ms;
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }
::selection { background: var(--teal-100); color: var(--slate-900); }
:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(31,167,154,.28); border-radius: var(--r-sm); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ════════════════════════════════════════════
   UTILITY BAR
════════════════════════════════════════════ */
.util-bar {
  background: var(--slate-900);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.util-bar__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 40px;
}
.util-bar__links { display: flex; gap: 24px; }
.util-bar__link {
  font-size: 11px; font-weight: 500; letter-spacing: 0.04em;
  color: rgba(255,255,255,.5);
  transition: color var(--t1) var(--ease);
}
.util-bar__link:hover { color: rgba(255,255,255,.85); }
.util-bar__actions { display: flex; gap: 8px; align-items: center; }

.btn-resident {
  padding: 6px 14px; border-radius: var(--r-pill);
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--teal); color: var(--white); border: 0;
  transition: background var(--t1) var(--ease);
  white-space: nowrap;
}
.btn-resident:hover { background: var(--teal-700); }

.btn-board {
  padding: 6px 14px; border-radius: var(--r-pill);
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  background: transparent; color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.25);
  transition: all var(--t1) var(--ease);
  white-space: nowrap;
}
.btn-board:hover { background: rgba(255,255,255,.08); color: var(--white); border-color: rgba(255,255,255,.5); }

/* ════════════════════════════════════════════
   MAIN HEADER
════════════════════════════════════════════ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  box-shadow: var(--sh-1);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.site-header__logo { height: 56px; width: auto; }

.site-nav { display: flex; gap: 0; }
.site-nav__item { position: relative; }
.site-nav__link {
  display: block; padding: 0 18px; height: 72px; line-height: 72px;
  font-size: 13px; font-weight: 500; color: var(--fg-muted);
  letter-spacing: 0.01em;
  transition: color var(--t1) var(--ease);
  white-space: nowrap;
}
.site-nav__link:hover { color: var(--fg); }
.site-nav__link.is-active { color: var(--teal); font-weight: 600; }
.site-nav__link.is-active::after {
  content: ''; position: absolute; bottom: 0; left: 18px; right: 18px;
  height: 2px; background: var(--teal);
}

/* Dropdown */
.site-nav__item:hover .site-nav__drop { opacity: 1; pointer-events: all; transform: translateY(0); }
.site-nav__drop {
  position: absolute; top: 100%; left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--sh-3);
  padding: 8px 0; min-width: 220px;
  opacity: 0; pointer-events: none;
  transform: translateY(6px);
  transition: opacity var(--t2) var(--ease), transform var(--t2) var(--ease);
  z-index: 200;
}
.site-nav__drop-link {
  display: block; padding: 9px 20px;
  font-size: 13px; color: var(--fg-muted);
  transition: background var(--t1), color var(--t1);
}
.site-nav__drop-link:hover { background: var(--teal-50); color: var(--teal-700); }
.site-nav__drop-divider { height: 1px; background: var(--border); margin: 6px 0; }

/* Board portal drop link — distinct */
.site-nav__drop-link--board {
  color: var(--slate-700); font-weight: 600;
  border-top: 1px solid var(--border); margin-top: 4px;
}
.site-nav__drop-link--board:hover { background: var(--slate-25); color: var(--slate-900); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--border); border-radius: var(--r-sm);
  background: var(--white); color: var(--fg);
  cursor: pointer; padding: 0; position: relative; flex-shrink: 0;
}
.nav-toggle__icon { width: 20px; height: 20px; }
.nav-toggle__icon--close { display: none; position: absolute; top: 9px; left: 9px; }
.nav-toggle.is-open .nav-toggle__icon--open { display: none; }
.nav-toggle.is-open .nav-toggle__icon--close { display: block; }

/* ════════════════════════════════════════════
   PAGE HEROES
════════════════════════════════════════════ */
.hero {
  background: var(--slate-900);
  color: var(--white);
  padding: 96px 0 104px;
  position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}
.hero__eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal-300); margin-bottom: 20px;
}
.hero__title {
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 300; line-height: 1.06; letter-spacing: 0.04em;
  color: var(--white); margin-bottom: 24px;
  text-transform: uppercase;
}
.hero__title em { color: var(--teal-300); font-style: normal; }
.hero__lead {
  font-size: 18px; line-height: 1.7;
  color: rgba(255,255,255,.62); max-width: 580px; margin-bottom: 40px;
}
.hero__rule { width: 48px; height: 2px; background: var(--teal); margin-bottom: 22px; }

/* Subpage hero — compact */
.page-hero {
  background: var(--slate-900); color: var(--white);
  padding: 64px 0 72px;
}
.page-hero::after {
  content: ''; display: block; height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}
.page-hero__eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal-300); margin-bottom: 16px;
}
.page-hero__rule { width: 40px; height: 2px; background: var(--teal); margin-bottom: 18px; }
.page-hero__title {
  font-size: clamp(36px, 4.5vw, 58px); font-weight: 300;
  text-transform: uppercase; letter-spacing: 0.10em; line-height: 1.05;
  color: var(--white); margin-bottom: 16px;
}
.page-hero__title em { color: var(--teal-300); font-style: normal; }
.page-hero__lead { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,.6); max-width: 560px; }

/* ════════════════════════════════════════════
   QUICK-LINK CARDS (homepage)
════════════════════════════════════════════ */
.quick-links { padding: 0; margin-top: -36px; position: relative; z-index: 10; }
.quick-links__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.quick-link {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px 28px 24px;
  box-shadow: var(--sh-2);
  display: flex; flex-direction: column; gap: 10px;
  text-decoration: none; color: inherit;
  transition: box-shadow var(--t2) var(--ease), transform var(--t2) var(--ease), border-color var(--t2);
}
.quick-link:hover { box-shadow: var(--sh-3); transform: translateY(-2px); border-color: var(--teal-100); }
.quick-link__icon {
  width: 40px; height: 40px; border-radius: var(--r-md);
  background: var(--teal-50); display: flex; align-items: center; justify-content: center;
  color: var(--teal);
}
.quick-link__icon svg { width: 20px; height: 20px; stroke-width: 1.75; }
.quick-link__title { font-size: 16px; font-weight: 600; color: var(--fg); }
.quick-link__desc { font-size: 13px; color: var(--fg-subtle); line-height: 1.55; flex: 1; }
.quick-link__arrow { font-size: 13px; color: var(--teal); font-weight: 600; margin-top: 4px; }

/* ════════════════════════════════════════════
   SECTIONS
════════════════════════════════════════════ */
.section { padding: 88px 0; }
.section--alt { background: var(--slate-25); }
.section--slate { background: var(--slate-900); color: var(--white); }
.section--tint { background: var(--teal-50); }

.section__eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 12px;
}
.section--slate .section__eyebrow { color: var(--teal-300); }
.section__rule { width: 40px; height: 2px; background: var(--teal); margin-bottom: 16px; }
.section__title {
  font-size: clamp(28px, 3vw, 42px); font-weight: 300; text-transform: uppercase;
  letter-spacing: 0.08em; line-height: 1.1; color: var(--fg); margin-bottom: 16px;
}
.section--slate .section__title { color: var(--white); }
.section__lead { font-size: 16px; line-height: 1.75; color: var(--fg-muted); max-width: 640px; }
.section--slate .section__lead { color: rgba(255,255,255,.62); }
.section__head { margin-bottom: 52px; }

/* ════════════════════════════════════════════
   FEATURE GRID (3-up cards)
════════════════════════════════════════════ */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px 28px 24px;
  box-shadow: var(--sh-1);
  border-top: 3px solid var(--teal);
}
.section--alt .feature-card { background: var(--white); }
.feature-card__label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 10px;
}
.feature-card__title { font-size: 17px; font-weight: 600; color: var(--fg); margin-bottom: 10px; line-height: 1.3; }
.feature-card__body { font-size: 14px; line-height: 1.7; color: var(--fg-muted); }
.feature-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--teal);
  margin-top: 16px;
  transition: gap var(--t1) var(--ease);
}
.feature-card__link:hover { gap: 10px; }

/* ════════════════════════════════════════════
   TWO-COLUMN LAYOUT
════════════════════════════════════════════ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.two-col--wide { grid-template-columns: 1.2fr 1fr; }
.two-col__body p { font-size: 16px; line-height: 1.8; color: var(--fg-muted); margin-bottom: 18px; }
.two-col__body p:last-child { margin-bottom: 0; }
.two-col__aside {
  background: var(--slate-25); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 36px 32px;
}

/* ════════════════════════════════════════════
   STAT STRIP
════════════════════════════════════════════ */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.stat-strip__item { background: var(--white); padding: 28px 24px; }
.section--slate .stat-strip { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.08); }
.section--slate .stat-strip__item { background: rgba(255,255,255,.05); }
.stat-strip__value {
  font-size: 36px; font-weight: 300; letter-spacing: 0.04em;
  color: var(--teal); line-height: 1; margin-bottom: 6px;
}
.section--slate .stat-strip__value { color: var(--teal-300); }
.stat-strip__label { font-size: 12px; color: var(--fg-subtle); line-height: 1.5; }
.section--slate .stat-strip__label { color: rgba(255,255,255,.5); }

/* ════════════════════════════════════════════
   STATUS BADGE
════════════════════════════════════════════ */
.status-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: var(--r-pill);
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
}
.status-badge--compliant { background: var(--success-tint); color: var(--success); }
.status-badge__dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ════════════════════════════════════════════
   PROPERTY CARDS
════════════════════════════════════════════ */
.property-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.property-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-1);
  transition: box-shadow var(--t2) var(--ease);
}
.property-card:hover { box-shadow: var(--sh-3); }
.property-card__thumb {
  aspect-ratio: 16/10; background: var(--slate-50);
  display: flex; align-items: center; justify-content: center;
  color: var(--slate-300);
}
.property-card__thumb svg { width: 40px; height: 40px; stroke-width: 1; }
.property-card__body { padding: 20px 22px 24px; }
.property-card__borough {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 6px;
}
.property-card__name { font-size: 17px; font-weight: 600; color: var(--fg); margin-bottom: 6px; line-height: 1.3; }
.property-card__desc { font-size: 13px; color: var(--fg-muted); line-height: 1.6; margin-bottom: 16px; }
.property-card__meta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.property-card__tag {
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 10px; border-radius: var(--r-pill);
  background: var(--slate-25); color: var(--fg-subtle);
  border: 1px solid var(--border);
}
.property-card__tag--avail { background: var(--success-tint); color: var(--success); border-color: transparent; }

/* ════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--r-md); border: 0;
  font-family: var(--sans); font-size: 14px; font-weight: 600; letter-spacing: 0.02em;
  cursor: pointer; transition: all var(--t1) var(--ease); text-decoration: none;
}
.btn--primary { background: var(--teal); color: var(--white); }
.btn--primary:hover { background: var(--teal-700); box-shadow: var(--sh-2); }
.btn--secondary {
  background: transparent; color: var(--teal);
  border: 1.5px solid var(--teal);
}
.btn--secondary:hover { background: var(--teal-50); }
.btn--slate { background: var(--slate-900); color: var(--white); }
.btn--slate:hover { background: var(--slate-700); }
.btn--ghost { background: rgba(255,255,255,.1); color: var(--white); border: 1px solid rgba(255,255,255,.25); }
.btn--ghost:hover { background: rgba(255,255,255,.18); }
.btn--lg { padding: 14px 30px; font-size: 15px; }
.btn--sm { padding: 8px 16px; font-size: 13px; }

/* ════════════════════════════════════════════
   PORTAL ENTRY BLOCK
════════════════════════════════════════════ */
.portal-entry {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 36px 40px;
  box-shadow: var(--sh-2);
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.portal-entry--board {
  border-left: 4px solid var(--slate-700);
  background: var(--slate-25);
}
.portal-entry--resident { border-left: 4px solid var(--teal); }
.portal-entry__icon {
  width: 48px; height: 48px; border-radius: var(--r-md); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.portal-entry--board .portal-entry__icon { background: var(--slate-100); color: var(--slate-700); }
.portal-entry--resident .portal-entry__icon { background: var(--teal-50); color: var(--teal); }
.portal-entry__icon svg { width: 24px; height: 24px; stroke-width: 1.75; }
.portal-entry__text { flex: 1; }
.portal-entry__label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg-subtle); margin-bottom: 5px;
}
.portal-entry__title { font-size: 19px; font-weight: 600; color: var(--fg); margin-bottom: 6px; }
.portal-entry__desc { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* ════════════════════════════════════════════
   INLINE LISTS
════════════════════════════════════════════ */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15px; line-height: 1.6; color: var(--fg-muted);
}
.check-list li::before {
  content: ''; width: 18px; height: 18px; border-radius: 50%;
  background: var(--teal-50); border: 1.5px solid var(--teal);
  flex-shrink: 0; margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%231FA79A' stroke-width='1.75' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* ════════════════════════════════════════════
   DATA TABLE
════════════════════════════════════════════ */
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  text-align: left; padding: 10px 16px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-subtle);
  background: var(--slate-25); border-bottom: 2px solid var(--border);
}
.data-table td { padding: 14px 16px; font-size: 14px; color: var(--fg-muted); border-bottom: 1px solid var(--border); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--teal-50); }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.site-footer { background: var(--slate-900); color: rgba(255,255,255,.65); padding: 72px 0 36px; }
.site-footer__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.site-footer__logo { height: 36px; width: auto; margin-bottom: 16px; }
.site-footer__tagline { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.42); max-width: 260px; }
.site-footer__address { font-size: 12px; color: rgba(255,255,255,.35); margin-top: 14px; line-height: 1.7; }
.site-footer__col h6 {
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal-300); margin-bottom: 16px;
}
.site-footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.site-footer__col a { font-size: 13px; color: rgba(255,255,255,.55); transition: color var(--t1); }
.site-footer__col a:hover { color: var(--white); }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: rgba(255,255,255,.3); flex-wrap: wrap; gap: 12px;
}
.site-footer__reg { display: flex; gap: 6px; align-items: center; }
.site-footer__reg-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.2); }

/* ════════════════════════════════════════════
   NOTICE / CALLOUT
════════════════════════════════════════════ */
.notice {
  background: var(--teal-50); border: 1px solid var(--teal-100);
  border-left: 4px solid var(--teal);
  border-radius: var(--r-md); padding: 18px 22px;
  font-size: 14px; line-height: 1.7; color: var(--fg-muted);
}
.notice strong { color: var(--fg); font-weight: 600; }

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1060px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .quick-links__grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .property-grid { grid-template-columns: repeat(2, 1fr); }
  .portal-entry { flex-direction: column; align-items: flex-start; }

  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: var(--sh-3);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .site-nav.is-open { display: flex; }
  .site-nav__item { width: 100%; }
  .site-nav__link {
    height: auto; line-height: 1.4;
    padding: 14px 24px; border-bottom: 1px solid var(--border);
  }
  .site-nav__link.is-active::after { display: none; }
  .site-nav__drop {
    position: static; opacity: 1; pointer-events: all; transform: none;
    border: none; border-radius: 0; box-shadow: none;
    padding: 0 0 8px; min-width: 0;
    background: var(--slate-25);
  }
  .site-nav__drop-link { padding: 10px 24px 10px 36px; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .feature-grid { grid-template-columns: 1fr; }
  .property-grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 64px 0 72px; }
  .section { padding: 56px 0; }
  .util-bar__links { display: none; }
}
