*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:         #0b1929;
  --navy-mid:     #122340;
  --navy-light:   #1a3358;
  --cyan:         #00aaee;
  --cyan-bright:  #22ccff;
  --cyan-dim:     rgba(0,170,238,0.12);
  --crimson:      #c0182a;
  --crimson-lt:   #e8263b;
  --crimson-dim:  rgba(192,24,42,0.1);
  --white:        #ffffff;
  --off-white:    #f4f8fc;
  --silver:       #8aa0b8;
  --text-dark:    #0b1929;
  --text-mid:     #3a5570;
  --border:       #d0dce8;
}
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; background: var(--off-white); color: var(--text-dark); font-size: 16px; line-height: 1.6; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(11,25,41,0.08);
}
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 88px;
}
.nav-logo img { height: 77px; display: block; }
.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  color: var(--text-mid); text-decoration: none;
  font-size: 14px; font-weight: 500; letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cyan); }
.nav-phone {
  color: var(--navy) !important; font-weight: 600 !important;
  display: flex; align-items: center; gap: 7px;
}
.btn-nav {
  background: var(--crimson); color: var(--white) !important;
  padding: 10px 26px; font-size: 13px; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; text-decoration: none;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background 0.2s;
}
.btn-nav:hover { background: var(--crimson-lt) !important; color: var(--white) !important; }

/* Hamburger toggle — hidden on desktop */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--navy); border-radius: 2px;
  transition: all 0.25s;
}

/* ============================================================
   PAGE BODY OFFSET
   ============================================================ */
body > *:not(.site-header) { }
.page-body { margin-top: 88px; }

/* ============================================================
   PROMO STRIP
   ============================================================ */
.promo-strip {
  background: var(--crimson);
  padding: 11px 48px;
  display: flex; align-items: center; gap: 20px;
}
.promo-pill {
  background: rgba(255,255,255,0.22); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 3px 10px; flex-shrink: 0;
}
.promo-strip p { font-size: 13px; color: rgba(255,255,255,0.92); }
.promo-strip strong { font-weight: 700; color: #fff; }
.promo-link {
  margin-left: auto; background: rgba(255,255,255,0.2); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 6px 16px; text-decoration: none; flex-shrink: 0; transition: background 0.2s;
}
.promo-link:hover { background: rgba(255,255,255,0.32); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  display: grid; grid-template-columns: 1fr 460px;
  min-height: calc(100vh - 88px - 42px);
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('/images/philamap.png');
  background-size: cover; background-position: center 30%;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg,
    rgba(11,25,41,0.62) 0%,
    rgba(11,25,41,0.55) 55%,
    rgba(11,25,41,0.44) 100%);
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 64px;
  position: relative; z-index: 1;
}
.hero-cube-bg {
  position: absolute; right: 480px; bottom: 20px;
  width: 238px; height: 238px;
  background-image: url('/images/cubetrans.png');
  background-size: contain; background-repeat: no-repeat; background-position: center;
  opacity: 0.68; pointer-events: none; z-index: 0; mix-blend-mode: screen;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 24px;
}
.hero-eyebrow::before { content: ''; display: block; width: 30px; height: 2px; background: var(--cyan); }
.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(48px, 6.5vw, 90px);
  font-weight: 800; line-height: 0.93; letter-spacing: 0.01em;
  color: var(--white); text-transform: uppercase; margin-bottom: 6px;
}
.hero-title .accent { color: var(--cyan-bright); display: block; }
.hero-title .sub-line {
  display: block; font-size: 0.52em; font-weight: 600;
  color: rgba(255,255,255,0.75); margin-top: 10px; letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-body {
  font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.58);
  max-width: 460px; line-height: 1.75; margin-top: 20px; margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--cyan); color: var(--navy);
  padding: 14px 34px; font-size: 14px; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; text-decoration: none;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--cyan-bright); }
.btn-ghost {
  color: rgba(255,255,255,0.55); font-size: 14px; font-weight: 400;
  text-decoration: none; padding: 14px 4px;
  display: flex; align-items: center; gap: 7px; transition: color 0.2s;
}
.btn-ghost:hover { color: var(--white); }
.hero-stats {
  display: flex; gap: 36px; margin-top: 48px;
  padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.09);
  flex-wrap: wrap;
}
.stat-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px; font-weight: 800; color: var(--white); line-height: 1;
}
.stat-val em { font-style: normal; color: var(--cyan); }
.stat-lbl { font-size: 11px; color: var(--silver); margin-top: 3px; letter-spacing: 0.03em; }

/* RESERVE PANEL */
.hero-right {
  position: relative; z-index: 1;
  background: rgba(18,35,64,0.96);
  border-left: 1px solid rgba(0,170,238,0.18);
  backdrop-filter: blur(4px);
}
.top5-wrap { display: flex; flex-direction: column; height: 100%; }
.top5-header { padding: 24px 24px 12px; }
.panel-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 6px;
  display: flex; align-items: center; gap: 10px;
}
.panel-label::after { content: ''; flex: 1; height: 1px; background: rgba(0,170,238,0.25); }
.panel-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 30px; font-weight: 800; text-transform: uppercase;
  color: var(--white); letter-spacing: 0.03em; line-height: 1;
}
.panel-title em { color: var(--cyan); font-style: normal; }

/* Type section labels */
.top5-type-label {
  font-size: 9px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--silver); padding: 10px 24px 6px;
}
.top5-type-label-climate { color: var(--cyan); }

/* TOP 5 LIST */
.top5-list { flex: 1; display: flex; flex-direction: column; padding: 0 12px; gap: 6px; }

.top5-row {
  display: grid; grid-template-columns: 52px 1fr auto auto;
  align-items: center; gap: 10px;
  padding: 10px 12px 10px 10px;
  background: var(--white);
  border-left: 3px solid var(--navy);
  transition: box-shadow 0.15s, border-color 0.15s;
}
.top5-row:hover { box-shadow: 0 2px 12px rgba(11,25,41,0.15); border-left-color: var(--cyan); }
.top5-climate { border-left-color: var(--cyan); }
.top5-climate:hover { border-left-color: #00c4ff; }

.top5-size-col {
  padding: 8px 6px;
  text-align: center; flex-shrink: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; min-height: 46px;
  background: none;
}
.top5-size-col-climate { background: none; }
.top5-dims {
  font-family: 'Barlow Condensed', sans-serif; font-size: 24px;
  font-weight: 800; color: var(--navy); line-height: 1;
}
.top5-size-col-climate .top5-dims { color: #007aaa; }

.top5-info { flex: 1; min-width: 0; }
.top5-name { font-size: 12px; font-weight: 600; color: var(--navy); line-height: 1.3; }
.top5-name-climate { color: #007aaa; }
.top5-avail { font-size: 10px; color: var(--silver); margin-top: 2px; }

.top5-price-col { display: flex; align-items: baseline; gap: 1px; flex-shrink: 0; position: relative; }
.top5-price {
  font-family: 'Barlow Condensed', sans-serif; font-size: 20px;
  font-weight: 800; color: var(--navy); line-height: 1;
}
.top5-price-climate { color: #007aaa; }
.top5-mo { font-size: 9px; color: var(--silver); }
.top5-tax-note {
  font-size: 9px; color: var(--silver); cursor: help;
  display: flex; align-items: center; gap: 2px; margin-top: 2px;
}
.top5-tax-note svg { width: 9px; height: 9px; flex-shrink: 0; }
.top5-price-wrap { display: flex; flex-direction: column; align-items: flex-end; flex-shrink: 0; position: relative; }
.top5-tax-tooltip {
  position: absolute; bottom: calc(100% + 6px); right: 0;
  background: var(--navy); color: var(--white);
  font-size: 10px; line-height: 1.5; padding: 8px 12px;
  white-space: nowrap; z-index: 30;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  pointer-events: none; opacity: 0; transition: opacity 0.15s;
}
.top5-tax-tooltip::after {
  content: ''; position: absolute; top: 100%; right: 12px;
  border: 5px solid transparent; border-top-color: var(--navy);
}
.top5-price-wrap:hover .top5-tax-tooltip { opacity: 1; }

.top5-btn {
  padding: 7px 11px; background: var(--crimson); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 800;
  letter-spacing: 0.07em; text-transform: uppercase; text-decoration: none;
  clip-path: polygon(5px 0%, 100% 0%, calc(100% - 5px) 100%, 0% 100%);
  transition: background 0.15s; white-space: nowrap; flex-shrink: 0;
}
.top5-btn:hover { background: var(--crimson-lt); }
.top5-btn-climate { background: var(--cyan); color: var(--navy); }
.top5-btn-climate:hover { background: #00c4ff; }

.top5-footer {
  padding: 12px 24px; border-top: 1px solid rgba(0,170,238,0.12);
  display: flex; flex-direction: column; gap: 5px; margin-top: 6px;
}
.top5-view-all {
  font-size: 12px; font-weight: 600; color: var(--cyan);
  text-decoration: none; transition: color 0.15s;
}
.top5-view-all:hover { color: var(--white); }
.top5-note { font-size: 10px; color: var(--silver); }


/* ============================================================
   SERVICES STRIP
   ============================================================ */
.services-strip {
  display: grid; grid-template-columns: repeat(6,1fr);
  background: var(--white);
  border-top: 3px solid var(--cyan);
  border-bottom: 1px solid var(--border);
}
.svc {
  padding: 22px 16px; text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.15s;
}
.svc:last-child { border-right: none; }
.svc:hover { background: var(--off-white); }
.svc svg { width: 28px; height: 28px; margin: 0 auto 10px; display: block; }
.svc-name { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.svc-sub { font-size: 11px; color: var(--silver); font-weight: 300; line-height: 1.4; }

/* ============================================================
   FACILITY FEATURE
   ============================================================ */
.facility-feature {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--navy);
  min-height: 480px;
}
.facility-img { position: relative; overflow: hidden; }
.facility-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.facility-img:hover img { transform: scale(1.03); }
.facility-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 70%, rgba(11,25,41,0.5) 100%);
  pointer-events: none;
}
.facility-content {
  padding: 64px 56px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.facility-cube-accent {
  position: absolute; right: 24px; bottom: 24px;
  width: 126px; height: 126px;
  background-image: url('/images/cubetrans.png');
  background-size: contain; background-repeat: no-repeat; background-position: center;
  opacity: 0.55; pointer-events: none; mix-blend-mode: screen;
}
.fac-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cyan); margin-bottom: 16px; }
.fac-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 4.5vw, 58px); font-weight: 800; text-transform: uppercase;
  color: var(--white); line-height: 0.93; margin-bottom: 20px; letter-spacing: 0.01em;
}
.fac-title em { font-style: normal; color: var(--cyan-bright); }
.fac-body { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.75; max-width: 400px; margin-bottom: 32px; }
.fac-details { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fac-detail { padding: 16px; background: rgba(255,255,255,0.04); border: 1px solid rgba(0,170,238,0.15); }
.fac-detail-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px; font-weight: 800; color: var(--white); line-height: 1;
}
.fac-detail-val em { font-style: normal; color: var(--cyan); }
.fac-detail-lbl { font-size: 11px; color: var(--silver); margin-top: 3px; font-weight: 300; }

/* ============================================================
   DIFFERENTIATORS
   ============================================================ */
.section-diff { padding: 88px 48px; background: var(--off-white); }
.section-tag {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 14px;
}
.section-tag::before { content: ''; display: block; width: 28px; height: 2px; background: var(--cyan); }
.section-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 4.5vw, 58px); font-weight: 800; text-transform: uppercase;
  color: var(--navy); line-height: 0.93; margin-bottom: 52px; letter-spacing: 0.01em;
}
.section-h2 em { font-style: normal; color: var(--crimson); }
.diff-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; background: var(--border); }
.diff-card {
  background: var(--white); padding: 36px 32px;
  border-top: 3px solid transparent; transition: all 0.2s;
}
.diff-card:hover { border-top-color: var(--cyan); background: #fafcff; }
.diff-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px; font-weight: 800; color: #dce8f4; line-height: 1; margin-bottom: 12px;
}
.diff-title { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.diff-body { font-size: 14px; font-weight: 300; color: var(--text-mid); line-height: 1.7; }

/* ============================================================
   UNITS
   ============================================================ */
.section-units { padding: 88px 48px; background: var(--navy); }
.section-units .section-h2 { color: var(--white); }
.section-units .section-h2 em { color: var(--cyan-bright); }
.units-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 3px; background: rgba(0,170,238,0.1); }
.unit-card {
  background: var(--navy-mid); padding: 30px 22px;
  border-bottom: 3px solid transparent; transition: all 0.2s; position: relative;
}
.unit-card:hover { background: var(--navy-light); border-bottom-color: var(--cyan); }
.unit-card.featured { border-bottom-color: var(--crimson); }
.unit-card.featured::after {
  content: 'POPULAR'; position: absolute; top: 13px; right: 13px;
  font-size: 9px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--crimson-lt); background: var(--crimson-dim);
  border: 1px solid rgba(192,24,42,0.3); padding: 3px 7px;
}
.unit-size { font-family: 'Barlow Condensed', sans-serif; font-size: 42px; font-weight: 800; color: var(--white); line-height: 1; letter-spacing: 0.02em; margin-bottom: 3px; }
.unit-sqft { font-size: 11px; color: var(--silver); margin-bottom: 12px; }
.unit-desc { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.4); line-height: 1.55; margin-bottom: 18px; }
.unit-price { font-size: 24px; font-weight: 600; color: var(--cyan-bright); }
.unit-price span { font-size: 12px; color: var(--silver); font-weight: 300; }
.unit-btn {
  display: block; margin-top: 18px; text-align: center; padding: 9px;
  border: 1px solid rgba(0,170,238,0.3); color: var(--cyan);
  font-size: 12px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
  text-decoration: none; transition: all 0.2s;
}
.unit-btn:hover { background: var(--cyan-dim); border-color: var(--cyan); }
.units-note { margin-top: 22px; font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.3); }
.units-note a { color: var(--cyan); text-decoration: none; }

/* ============================================================
   MAP / LOCATION
   ============================================================ */
.section-location {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 440px; position: relative; overflow: hidden;
}
.loc-map { position: relative; overflow: hidden; }
.loc-map img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.loc-map:hover img { transform: scale(1.04); }

.loc-content {
  background: var(--cyan); padding: 64px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.loc-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(11,25,41,0.55); margin-bottom: 14px; }
.loc-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 4vw, 52px); font-weight: 800; text-transform: uppercase;
  color: var(--navy); line-height: 0.92; margin-bottom: 18px;
}
.loc-body { font-size: 15px; font-weight: 300; color: rgba(11,25,41,0.65); line-height: 1.75; margin-bottom: 28px; max-width: 400px; }
.loc-landmarks { display: flex; flex-direction: column; gap: 10px; }
.loc-landmark { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 500; color: var(--navy); }
.loc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--navy); flex-shrink: 0; }
.loc-landmark span { font-size: 12px; font-weight: 400; color: rgba(11,25,41,0.55); margin-left: 4px; }

/* ============================================================
   STUDENT
   ============================================================ */
.section-student { display: grid; grid-template-columns: 1fr 1fr; background: var(--off-white); }
.student-left { background: var(--navy); padding: 72px 56px; }
.student-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cyan); margin-bottom: 14px; }
.student-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 5vw, 64px); font-weight: 800; text-transform: uppercase;
  color: var(--white); line-height: 0.92; margin-bottom: 20px;
}
.student-h2 em { font-style: normal; color: var(--crimson-lt); }
.student-body { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.75; margin-bottom: 32px; max-width: 420px; }
.btn-student {
  display: inline-block; padding: 13px 34px;
  background: var(--cyan); color: var(--navy);
  font-size: 13px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  text-decoration: none;
  clip-path: polygon(9px 0%, 100% 0%, calc(100% - 9px) 100%, 0% 100%);
  transition: background 0.2s;
}
.btn-student:hover { background: var(--cyan-bright); }
.schools { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.school { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.4); border: 1px solid rgba(255,255,255,0.12); padding: 4px 13px; }
.student-right { background: var(--crimson); padding: 72px 56px; display: flex; flex-direction: column; justify-content: center; }
.deadline-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 12px; }
.deadline-date { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(64px, 10vw, 100px); font-weight: 800; color: var(--white); line-height: 0.85; letter-spacing: 0.01em; }
.deadline-sub { font-size: 17px; font-weight: 600; color: rgba(255,255,255,0.9); margin-top: 14px; margin-bottom: 8px; }
.deadline-detail { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.65); line-height: 1.65; }

/* ============================================================
   REVIEWS
   ============================================================ */
.section-reviews { padding: 88px 48px; background: var(--white); }
.reviews-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 44px; flex-wrap: wrap; gap: 20px; }
.score-big { font-family: 'Barlow Condensed', sans-serif; font-size: 52px; font-weight: 800; color: var(--navy); line-height: 1; }
.score-stars { font-size: 16px; color: #e8a020; letter-spacing: 3px; }
.score-ct { font-size: 12px; color: var(--silver); margin-top: 2px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; background: var(--border); }
.review-card {
  background: var(--off-white); padding: 30px 26px;
  border-left: 4px solid transparent; transition: border-color 0.2s;
}
.review-card:hover { border-left-color: var(--cyan); }
.rv-stars { font-size: 12px; color: #e8a020; letter-spacing: 2px; margin-bottom: 12px; }
.rv-text { font-size: 15px; font-weight: 300; color: var(--text-mid); line-height: 1.75; font-style: italic; margin-bottom: 18px; }
.rv-author { font-size: 13px; font-weight: 600; color: var(--navy); }
.rv-date { font-size: 11px; color: var(--silver); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--cyan); padding: 52px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.cta-left h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 4vw, 48px); font-weight: 800; text-transform: uppercase;
  color: var(--navy); line-height: 0.93;
}
.cta-left p { font-size: 15px; font-weight: 300; color: rgba(11,25,41,0.6); margin-top: 8px; }
.cta-actions { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.btn-cta {
  background: var(--navy); color: var(--white);
  padding: 15px 38px; font-size: 14px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  text-decoration: none;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: background 0.2s;
}
.btn-cta:hover { background: var(--navy-mid); }
.cta-phone { font-size: 17px; font-weight: 600; color: var(--navy); text-decoration: none; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy); padding: 60px 48px 32px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  border-top: 3px solid var(--cyan);
}
.footer-tagline { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.32); line-height: 1.7; max-width: 250px; margin-bottom: 20px; }
.footer-contact { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.9; }
.footer-contact a { color: var(--cyan); text-decoration: none; }
.footer-col h4 { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cyan); margin-bottom: 18px; }
.footer-col a { display: block; font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.38); text-decoration: none; margin-bottom: 9px; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  grid-column: 1/-1; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.18); font-weight: 300; }

/* ============================================================
   UNITS PAGE — PAGE HEADER
   ============================================================ */
.page-header {
  background: var(--navy);
  background-image: url('/images/washington.png');
  background-size: cover; background-position: center 40%;
  padding: 52px 48px 48px;
  border-bottom: 3px solid var(--cyan);
  position: relative; overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg,
    rgba(11,25,41,0.82) 0%,
    rgba(11,25,41,0.72) 30%,
    rgba(11,25,41,0.58) 100%);
  pointer-events: none;
}
.page-header::after {
  content: '';
  position: absolute; right: 48px; top: 50%; transform: translateY(-50%);
  width: 180px; height: 180px;
  background-image: url('/images/cubetrans.png');
  background-size: contain; background-repeat: no-repeat; background-position: center;
  opacity: 0.45; pointer-events: none; mix-blend-mode: screen; z-index: 2;
}
.page-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 12px; position: relative; z-index: 1;
}
.page-eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--cyan); }
.page-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 5vw, 64px); font-weight: 800; text-transform: uppercase;
  color: var(--white); line-height: 0.93; letter-spacing: 0.01em;
  position: relative; z-index: 1;
}
.page-title em { font-style: normal; color: var(--cyan-bright); }
.page-sub { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.45); margin-top: 14px; position: relative; z-index: 1; }

/* ============================================================
   UNITS PAGE — FILTER BAR
   ============================================================ */
.filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 48px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  position: sticky; top: 88px; z-index: 50;
  box-shadow: 0 2px 8px rgba(11,25,41,0.05);
}
.filter-label { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--silver); white-space: nowrap; }
.filter-field {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 16px;
  border: 1px solid var(--border); background: var(--off-white);
  cursor: pointer; transition: border-color 0.2s; min-width: 200px;
}
.filter-field:hover { border-color: var(--cyan); }
.filter-field svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--cyan); }
.filter-field-text { flex: 1; }
.filter-field-lbl { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--silver); line-height: 1; }
.filter-field-val { font-size: 13px; font-weight: 500; color: var(--navy); line-height: 1.3; margin-top: 2px; }
.filter-divider { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }
.filter-select-wrap {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 16px;
  border: 1px solid var(--border); background: var(--off-white); min-width: 220px;
  transition: border-color 0.2s;
}
.filter-select-wrap:focus-within { border-color: var(--cyan); }
.filter-select-wrap svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--cyan); }
.filter-select {
  flex: 1; border: none; background: transparent;
  font-family: 'Barlow', sans-serif; font-size: 13px; font-weight: 500; color: var(--navy);
  outline: none; appearance: none; cursor: pointer;
}
.filter-count { margin-left: auto; font-size: 12px; font-weight: 500; color: var(--silver); white-space: nowrap; }
.filter-count strong { color: var(--navy); font-weight: 700; }
.size-pills { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
.size-pill {
  padding: 6px 14px; font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  border: 1px solid var(--border); color: var(--text-mid); cursor: pointer;
  transition: all 0.15s; background: var(--white);
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.size-pill:hover { border-color: var(--cyan); color: var(--cyan); background: var(--cyan-dim); }
.size-pill.active { border-color: var(--cyan); background: var(--cyan); color: var(--navy); font-weight: 700; }

/* ============================================================
   UNITS PAGE — LISTINGS LAYOUT
   ============================================================ */
.listings-wrap {
  display: grid; grid-template-columns: 280px 1fr;
  min-height: 60vh;
  align-items: start;
}
.sidebar {
  background: var(--white); border-right: 1px solid var(--border);
  padding: 28px 24px;
  position: sticky; top: calc(88px + 64px);
  max-height: calc(100vh - 88px - 64px); overflow-y: auto;
}
.sidebar-section { margin-bottom: 28px; }
.sidebar-h { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cyan); margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.sidebar-option { display: flex; align-items: center; gap: 10px; padding: 8px 0; cursor: pointer; border-bottom: 1px solid rgba(208,220,232,0.4); }
.sidebar-option:last-child { border-bottom: none; }
.sidebar-check { width: 16px; height: 16px; border: 1.5px solid var(--border); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: all 0.15s; }
.sidebar-check.checked { background: var(--cyan); border-color: var(--cyan); }
.sidebar-check.checked::after { content: ''; width: 8px; height: 5px; border-left: 2px solid var(--navy); border-bottom: 2px solid var(--navy); transform: rotate(-45deg) translateY(-1px); display: block; }
.sidebar-opt-label { font-size: 13px; font-weight: 400; color: var(--text-mid); flex: 1; }
.sidebar-opt-count { font-size: 11px; color: var(--silver); }
.sidebar-type-btn { display: flex; align-items: center; gap: 10px; padding: 10px 12px; margin-bottom: 4px; cursor: pointer; border: 1px solid var(--border); transition: all 0.15s; }
.sidebar-type-btn:hover { border-color: var(--cyan); background: var(--cyan-dim); }
.sidebar-type-btn.active { border-color: var(--cyan); background: var(--cyan-dim); }
.sidebar-type-btn.active .sidebar-type-label { color: var(--navy); font-weight: 600; }
.sidebar-type-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.sidebar-type-label { font-size: 13px; color: var(--text-mid); }
.sidebar-type-ct { font-size: 11px; color: var(--silver); margin-left: auto; }
.price-range { padding: 4px 0; }
.price-range-track { height: 4px; background: var(--border); position: relative; margin: 16px 0 8px; }
.price-range-fill { position: absolute; left: 0; right: 20%; top: 0; height: 100%; background: var(--cyan); }
.price-range-labels { display: flex; justify-content: space-between; font-size: 11px; color: var(--silver); }
.listings-main { padding: 28px 32px; }
.listings-sort-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.listings-sort-bar-left { font-size: 13px; color: var(--text-mid); font-weight: 300; }
.listings-sort-bar-left strong { color: var(--navy); font-weight: 600; }
.sort-select-wrap { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--silver); }
.sort-select { border: 1px solid var(--border); background: var(--white); font-family: 'Barlow', sans-serif; font-size: 12px; color: var(--navy); padding: 6px 10px; outline: none; appearance: none; cursor: pointer; }

/* Unit rows */
.unit-list { display: flex; flex-direction: column; gap: 3px; }
.unit-row {
  background: var(--white); border: 1px solid var(--border);
  border-left: 4px solid transparent;
  display: grid; grid-template-columns: 110px 1fr auto;
  align-items: stretch; transition: all 0.2s; position: relative; overflow: hidden;
}
.unit-row:hover { border-left-color: var(--cyan); box-shadow: 0 2px 12px rgba(11,25,41,0.07); }
.unit-row.climate { border-left-color: rgba(0,170,238,0.35); }
.unit-row.climate:hover { border-left-color: var(--cyan); }
.unit-size-col {
  background: var(--navy); padding: 24px 16px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; flex-shrink: 0;
}
.unit-size-dims { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 800; color: var(--white); line-height: 1; letter-spacing: 0.02em; }
.unit-size-label { font-size: 9px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--silver); margin-top: 4px; }
.unit-sqft-val { font-size: 11px; color: var(--cyan); margin-top: 6px; font-weight: 500; }
.unit-info-col { padding: 18px 24px; display: flex; flex-direction: column; justify-content: center; gap: 6px; }
.unit-name { font-size: 15px; font-weight: 600; color: var(--navy); }
.unit-type-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 9px; width: fit-content; }
.unit-type-badge.storage { background: rgba(11,25,41,0.06); color: var(--text-mid); }
.unit-type-badge.climate { background: var(--cyan-dim); color: var(--cyan); border: 1px solid rgba(0,170,238,0.25); }
.unit-type-badge svg { width: 11px; height: 11px; }
.unit-location { font-size: 12px; font-weight: 300; color: var(--silver); }
.unit-features { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 2px; }
.unit-feature { font-size: 11px; color: var(--text-mid); display: flex; align-items: center; gap: 4px; }
.unit-feature::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; }
.unit-price-col { padding: 18px 24px; display: flex; flex-direction: column; align-items: flex-end; justify-content: center; gap: 6px; border-left: 1px solid var(--border); min-width: 200px; }
.unit-price-amount { font-family: 'Barlow Condensed', sans-serif; font-size: 32px; font-weight: 800; color: var(--navy); line-height: 1; }
.unit-price-amount em { font-style: normal; color: var(--cyan); }
.unit-price-period { font-size: 11px; color: var(--silver); font-weight: 300; }
.unit-price-note { font-size: 10px; color: var(--silver); font-weight: 300; display: flex; align-items: center; gap: 3px; }
.unit-price-note svg { width: 11px; height: 11px; }
.btn-reserve-unit {
  margin-top: 8px; padding: 10px 22px;
  background: var(--crimson); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 800;
  letter-spacing: 0.07em; text-transform: uppercase;
  border: none; cursor: pointer;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background 0.2s; text-decoration: none; display: inline-block; text-align: center;
}
.btn-reserve-unit:hover { background: var(--crimson-lt); }
.unit-row .popular-tag {
  position: absolute; top: 0; right: 0;
  font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--crimson); color: var(--white); padding: 3px 10px;
}
.category-divider { display: flex; align-items: center; gap: 14px; margin: 28px 0 16px; }
.category-divider-line { flex: 1; height: 1px; background: var(--border); }
.category-divider-label { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-mid); white-space: nowrap; }
.category-divider-dot { width: 8px; height: 8px; border-radius: 50%; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow { animation: fadeUp 0.6s 0.1s both; }
.hero-title    { animation: fadeUp 0.6s 0.22s both; }
.hero-body     { animation: fadeUp 0.6s 0.35s both; }
.hero-actions  { animation: fadeUp 0.6s 0.48s both; }
.hero-stats    { animation: fadeUp 0.6s 0.60s both; }

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  nav { padding: 0 28px; }
  .promo-strip { padding: 11px 28px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { display: none; } /* hide from hero grid on tablet/mobile -- shown below via .top5-mobile */
  .hero-left { padding: 60px 28px; }
  .hero-cube-bg { display: none; }
  .services-strip { grid-template-columns: repeat(3,1fr); }
  .facility-feature { grid-template-columns: 1fr; }
  .facility-img { height: 300px; }
  .facility-content { padding: 44px 28px; }
  .section-diff { padding: 60px 28px; }
  .diff-grid { grid-template-columns: repeat(2,1fr); }
  .section-units { padding: 60px 28px; }
  .units-grid { grid-template-columns: repeat(2,1fr); }
  .section-location { grid-template-columns: 1fr; }
  .loc-map { height: 280px; }
  .loc-content { padding: 44px 28px; }
  .section-student { grid-template-columns: 1fr; }
  .student-left { padding: 48px 28px; }
  .student-right { padding: 48px 28px; }
  .section-reviews { padding: 60px 28px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 40px 28px; }
  footer { grid-template-columns: 1fr 1fr; gap: 32px; padding: 48px 28px 28px; }
  /* Units page */
  .filter-bar { padding: 16px 28px; top: 88px; }
  .listings-wrap { grid-template-columns: 1fr; }
  .sidebar { position: static; max-height: none; display: none; } /* hide sidebar on tablet */
  .listings-main { padding: 20px 28px; }
  .page-header { padding: 40px 28px 36px; }
  .page-header::after { display: none; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Nav */
  nav { padding: 0 20px; height: 72px; }
  .nav-logo img { height: 58px; }
  .nav-links {
    display: none;
    flex-direction: column; align-items: flex-start;
    position: fixed; top: 72px; left: 0; right: 0;
    background: var(--white); padding: 20px;
    border-bottom: 2px solid var(--cyan);
    box-shadow: 0 8px 24px rgba(11,25,41,0.12);
    gap: 4px; z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 16px; padding: 10px 0; width: 100%; border-bottom: 1px solid var(--border); }
  .nav-links a:last-child { border-bottom: none; }
  .btn-nav {
    clip-path: none; padding: 12px 20px; margin-top: 8px; display: block; text-align: center;
  }
  .nav-phone { justify-content: flex-start; }
  .nav-toggle { display: flex; }
  .page-body { margin-top: 72px; }

  /* Promo */
  .promo-strip { padding: 10px 20px; flex-wrap: wrap; gap: 10px; }
  .promo-link { margin-left: 0; }

  /* Hero */
  .hero-left { padding: 48px 20px 40px; }
  .hero-stats { gap: 24px; }

  /* Services */
  .services-strip { grid-template-columns: repeat(2,1fr); }
  .svc { border-right: none; border-bottom: 1px solid var(--border); }

  /* Facility */
  .facility-content { padding: 36px 20px; }
  .fac-details { grid-template-columns: 1fr 1fr; }

  /* Diffs */
  .section-diff { padding: 48px 20px; }
  .diff-grid { grid-template-columns: 1fr; }
  .section-h2 { margin-bottom: 32px; }

  /* Units section (home) */
  .section-units { padding: 48px 20px; }
  .units-grid { grid-template-columns: 1fr 1fr; }

  /* Location */
  .loc-content { padding: 36px 20px; }

  /* Student */
  .student-left { padding: 40px 20px; }
  .student-right { padding: 40px 20px; }

  /* Reviews */
  .section-reviews { padding: 48px 20px; }
  .reviews-grid { grid-template-columns: 1fr; }

  /* CTA */
  .cta-band { padding: 36px 20px; }
  .cta-actions { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* Footer */
  footer { grid-template-columns: 1fr; gap: 28px; padding: 40px 20px 24px; }
  .footer-bottom { flex-direction: column; gap: 4px; }

  /* Top5 mobile -- show below hero */
  .top5-mobile-wrap { display: block; background: var(--navy); padding: 0 20px 32px; }
  .top5-mobile-wrap .top5-wrap { max-width: 600px; margin: 0 auto; }
  .top5-mobile-wrap .top5-header { padding: 24px 0 12px; }
  .top5-mobile-wrap .top5-list { padding: 0; }
  .top5-mobile-wrap .top5-row { background: rgba(255,255,255,0.05); }
  .top5-mobile-wrap .top5-dims { color: var(--white); }
  .top5-mobile-wrap .top5-name { color: var(--white); }
  .top5-mobile-wrap .panel-title { color: var(--white); }
  .top5-mobile-wrap .panel-label { color: var(--cyan); }
  .top5-mobile-wrap .top5-footer { border-top-color: rgba(255,255,255,0.1); }

  /* Units page */
  .filter-bar { padding: 12px 20px; top: 72px; gap: 10px; }
  .filter-field { min-width: 0; flex: 1; }
  .filter-select-wrap { min-width: 0; flex: 1; }
  .filter-divider { display: none; }
  .filter-count { display: none; }
  .page-header { padding: 32px 20px 28px; }
  .listings-main { padding: 16px 20px; }
  .unit-row { grid-template-columns: 80px 1fr; }
  .unit-price-col {
    grid-column: 1 / -1; border-left: none; border-top: 1px solid var(--border);
    flex-direction: row; align-items: center; justify-content: space-between;
    padding: 14px 20px; min-width: 0;
  }
  .unit-price-note { display: none; }
  .unit-size-col { padding: 16px 10px; }
  .unit-size-dims { font-size: 22px; }
  .unit-info-col { padding: 14px 16px; }
  .unit-features { gap: 8px; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================================ */
@media (max-width: 480px) {
  .units-grid { grid-template-columns: 1fr; }
  .fac-details { grid-template-columns: 1fr 1fr; }
  .size-grid { grid-template-columns: repeat(2,1fr); }
  .services-strip { grid-template-columns: 1fr; }
  .svc { border-right: none; }
}