@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&family=Oswald:wght@200;300;400;500&family=IBM+Plex+Sans:ital,wght@0,200;0,300;0,400;0,500;1,300&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; overflow: hidden; }
body {
  font-family: 'IBM Plex Sans', sans-serif;
  background: #FFFFFF;
  color: #1E2A38;
}

/* === WHITE OUTER FRAME === */
.outer-frame {
  width: 100vw;
  height: 100vh;
  padding: 20px;
  overflow: hidden;
}

/* === FRAME — Night Indigo border === */
.frame {
  width: 100%;
  height: 100%;
  padding: 110px 80px 80px 80px;
  display: flex;
  flex-direction: column;
  position: relative;
  background: #1E2A38;
  overflow: hidden;
}

/* === NAV === */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 110px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 95px;
  z-index: 10;
}
.nav-logo { height: 40px; width: auto; }
.nav-loc {
  font-family: 'IBM Plex Sans';
  font-size: 11px;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}

/* === WHITE CANVAS === */
.canvas {
  background: #FFFFFF;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* === SKYLINE IMAGES === */
.skyline {
  flex: 1 1 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(4px, 0.5vw, 8px);
  padding: 0;
  width: 100%;
  min-height: 0;
  max-height: calc(100% - 380px);
  position: relative;
  overflow: hidden;
}
.bldg { overflow: hidden; position: relative; flex-shrink: 0; }
.bldg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  image-rendering: auto;
}
.bldg-1 { width: 30%; height: 82%; align-self: flex-end; }
.bldg-1 img { object-position: center 40%; }
.bldg-2 { width: 36%; height: 100%; align-self: flex-end; }
.bldg-2 img { object-position: center 15%; }
.bldg-3 { width: 34%; height: 72%; align-self: flex-end; }
.bldg-3 img { object-position: center 60%; }
.bldg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(to bottom, #FFFFFF, transparent);
  z-index: 1;
  pointer-events: none;
}

/* === CONTENT BAND === */
.content-band {
  background: #1E2A38;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 8% 20px;
}
.gold-line {
  width: 80px;
  height: 2px;
  background: #AA7E37;
  margin-bottom: 30px;
}
.stats-wrap {
  display: flex;
  flex-direction: column;
}
.content-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}

/* === STATS === */
.stats { display: flex; align-items: flex-start; }
.stat { text-align: left; padding: 0 clamp(12px, 2vw, 32px); }
.stat:first-child { padding-left: 0; }
.stat:last-child { padding-right: 0; }
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 0.82;
  letter-spacing: -0.5px;
  white-space: nowrap;
}
.stat-num sup {
  font-size: 0.35em;
  vertical-align: super;
  color: #AA7E37;
  font-weight: 600;
}
.stat-num .unit {
  font-size: 0.3em;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
}
.stat-label {
  font-family: 'IBM Plex Sans';
  font-size: clamp(10px, 1vw, 13px);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #AA7E37;
  margin-top: 17px;
  font-weight: 400;
  white-space: nowrap;
}
.stat-sep {
  width: 1px;
  background: rgba(170,126,55,0.2);
  align-self: stretch;
  margin: 4px 0;
}

/* === INFO === */
.info {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 0;
}
.info-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  line-height: 1.8;
}
.info-desc strong {
  font-weight: 500;
  color: #FFFFFF;
}

/* === CTAs === */
.ctas { display: flex; gap: 30px; flex-wrap: nowrap; margin-top: 10px; }
.cta-primary {
  display: inline-block;
  padding: 14px 24px;
  background: #AA7E37;
  color: #FFFFFF;
  font-family: 'IBM Plex Sans';
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  text-decoration: none;
  border: 1px solid #AA7E37;
  transition: all 0.3s ease;
  cursor: pointer;
}
.cta-primary:hover { background: #c4983f; border-color: #c4983f; }
.cta-secondary {
  display: inline-block;
  padding: 14px 24px;
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-family: 'IBM Plex Sans';
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  text-decoration: none;
  border: 1px solid rgba(170,126,55,0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}
.cta-secondary:hover {
  background: rgba(170,126,55,0.12);
  color: #fff;
  border-color: #AA7E37;
}

/* === FOOTER === */
.foot {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 95px;
}
.foot-copy {
  font-size: 9px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 1px;
}

/* === RESPONSIVE === */
@media (max-width: 1800px) {
  .skyline { max-height: calc(100% - 320px); }
  .content-band { padding: 20px 8% 16px; }
  .gold-line { margin-bottom: 22px; }
  .info-desc { font-size: 15px; line-height: 1.7; }
}
@media (max-width: 1400px) {
  .content-inner { flex-direction: column; gap: 24px; }
  .info { max-width: 100%; }
  .skyline { max-height: calc(100% - 320px); }
  .content-band { padding: 18px 8% 14px; }
  .gold-line { margin-bottom: 20px; }
  .info-desc { font-size: 15px; line-height: 1.7; }
}
@media (max-width: 1200px) {
  .outer-frame { padding: 15px; }
  .frame { padding: 80px 50px 50px 50px; }
  .nav { height: 80px; padding: 0 65px; }
  .nav-logo { height: 34px; }
  .nav-loc { font-size: 9px; letter-spacing: 3px; }
  .foot { height: 50px; padding: 0 65px; }
  .skyline { max-height: calc(100% - 260px); }
  .content-band { padding: 16px 6% 12px; }
  .stat-num { font-size: clamp(36px, 4.5vw, 60px); }
  .stat-label { font-size: 10px; letter-spacing: 2px; margin-top: 12px; }
  .gold-line { margin-bottom: 18px; }
}
@media (max-width: 1024px) {
  .outer-frame { padding: 12px; }
  .frame { padding: 70px 40px 40px 40px; }
  .nav { height: 70px; padding: 0 52px; }
  .nav-logo { height: 30px; }
  .nav-loc { font-size: 8px; letter-spacing: 2px; }
  .foot { height: 40px; padding: 0 52px; }
  .foot-copy { font-size: 8px; }
  .skyline { max-height: calc(100% - 240px); }
  .content-band { padding: 14px 5% 10px; }
  .content-inner { flex-direction: column; gap: 18px; }
  .info { max-width: 100%; }
  .info-desc { font-size: 14px; line-height: 1.65; }
  .ctas { gap: 20px; }
  .cta-primary, .cta-secondary { padding: 12px 20px; font-size: 10px; }
}
@media (max-width: 768px) {
  .outer-frame { padding: 8px; }
  .frame { padding: 56px 24px 24px 24px; }
  .nav { height: 56px; padding: 0 32px; }
  .nav-logo { height: 26px; }
  .nav-loc { font-size: 7px; letter-spacing: 2px; }
  .foot { height: 32px; padding: 0 32px; }
  .foot-copy { font-size: 7px; }
  .skyline { max-height: calc(100% - 220px); gap: 3px; }
  .bldg-1 { height: 75%; }
  .bldg-2 { height: 90%; }
  .bldg-3 { height: 65%; }
  .content-band { padding: 12px 5% 8px; }
  .content-inner { flex-direction: column; gap: 14px; }
  .stats { justify-content: flex-start; }
  .stat { text-align: left; }
  .stat-num { font-size: clamp(32px, 8vw, 48px); }
  .stat-label { font-size: 9px; letter-spacing: 2px; margin-top: 10px; }
  .gold-line { margin-bottom: 14px; }
  .info { max-width: 100%; }
  .info-desc { font-size: 13px; line-height: 1.6; }
  .ctas { gap: 16px; margin-top: 6px; }
  .cta-primary, .cta-secondary { padding: 11px 18px; font-size: 10px; letter-spacing: 1.5px; }
}
@media (max-width: 480px) {
  .outer-frame { padding: 6px; }
  .frame { padding: 48px 16px 16px 16px; }
  .nav { height: 48px; padding: 0 22px; }
  .nav-logo { height: 22px; }
  .nav-loc { font-size: 6px; letter-spacing: 1.5px; }
  .foot { height: 28px; padding: 0 22px; }
  .foot-copy { font-size: 6px; }
  .skyline { max-height: calc(100% - 200px); gap: 2px; }
  .bldg-1 { height: 70%; }
  .bldg-2 { height: 85%; }
  .bldg-3 { height: 60%; }
  .content-band { padding: 10px 4% 6px; }
  .content-inner { gap: 10px; }
  .stat-num { font-size: clamp(28px, 9vw, 40px); }
  .stat-label { font-size: 8px; letter-spacing: 1.5px; margin-top: 8px; }
  .stat { padding: 0 clamp(8px, 2vw, 16px); }
  .gold-line { margin-bottom: 10px; width: 50px; }
  .info-desc { font-size: 12px; line-height: 1.55; }
  .ctas { flex-direction: column; gap: 10px; margin-top: 4px; }
  .cta-primary, .cta-secondary { padding: 10px 16px; font-size: 9px; text-align: center; }
}
