/* ==========================================================================
   Suite + Storage
   Brand palette
     deep teal    #17504E   primary
     signal blue  #16719F   accent, the plus
     green        #14705C   section labels, tagline
     near-black   #1B2524   headings, dark ground
     body grey    #4B5654
     mist         #F4F7F6   section fills
     line         #E6EAE9   borders
   Type: Plus Jakarta Sans (Google Fonts)
   ========================================================================== */

:root {
  --teal: #17504E;
  --blue: #16719F;
  --green: #14705C;
  --ink: #1B2524;
  --body: #4B5654;
  --muted: #8A9491;
  --mist: #F4F7F6;
  --line: #E6EAE9;
  --blue-light: #7FB6D8;
  --green-light: #7FC3AC;
  --max: 1240px;
  --pad: 40px;
  --header-h: 132px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3 { margin: 0; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* --- Buttons ------------------------------------------------------------- */

.btn {
  display: inline-block;
  padding: 15px 26px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  transition: background-color .15s ease, color .15s ease;
}
.btn--solid { background-color: var(--teal); color: #fff; }
.btn--solid:hover { background-color: #10403E; color: #fff; }
.btn--outline { border: 1px solid var(--teal); color: var(--teal); }
.btn--outline:hover { background-color: var(--teal); color: #fff; }
.btn--blue { background-color: var(--blue); color: #fff; }
.btn--blue:hover { background-color: #115a80; color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* --- Section furniture --------------------------------------------------- */

.section { padding: 64px 0; }
.section--mist { background: var(--mist); }
.section--hairline { border-bottom: 1px solid var(--line); }
.section--topline { border-top: 1px solid var(--line); }

.eyebrow {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
}
.label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.h2 {
  font-size: 38px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -.03em;
  text-wrap: pretty;
}
.lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--body);
}

/* --- Header -------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(140%) blur(8px);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 0;
}
.brand__mark { width: 100%; max-width: 300px; min-width: 150px; height: auto; }
.brand__word {
  font-size: clamp(22px, 3.2vw, 42px);
  font-weight: 600;
  letter-spacing: -.035em;
  white-space: nowrap;
  color: var(--ink);
}
.brand__word span { color: var(--blue); font-weight: 500; }

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(12px, 1.8vw, 30px);
  font-size: 15px;
  font-weight: 500;
  min-width: 0;
}
.nav a:not(.btn) { color: #3F4B49; }
.nav a:not(.btn):hover { color: var(--blue); }
.nav .btn { padding: 11px 20px; }
.nav .btn--solid, .nav .btn--solid:hover, .nav .btn--blue, .nav .btn--blue:hover { color: #fff; }
.nav .btn--outline { color: var(--teal); }
.nav .btn--outline:hover { color: #fff; }

/* --- Hero ---------------------------------------------------------------- */

.hero { padding: 52px 0 12px; }
.hero__inner { display: flex; flex-direction: column; gap: 24px; }
.hero h1 {
  max-width: 900px;
  font-size: 46px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -.035em;
  text-wrap: pretty;
}
.hero p {
  margin: 0;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 500;
  color: var(--body);
}

/* --- Benefits ------------------------------------------------------------ */

.benefits { padding: 36px 0 44px; }
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
}
.benefit { display: flex; flex-direction: column; gap: 10px; }
.benefit h3 {
  margin-top: 8px;
  font-size: 29px;
  font-weight: 600;
  letter-spacing: -.03em;
}
.benefit p {
  margin: 0;
  font-size: 19px;
  line-height: 1.55;
  color: var(--body);
}

/* --- Concept / stages ---------------------------------------------------- */

.concept { padding: 52px 0; }
.concept__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
}
.concept__col { display: flex; flex-direction: column; gap: 26px; }
.feature { display: flex; gap: 18px; align-items: flex-start; }
.feature__icon { flex: none; }
.feature h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.025em;
}
.feature p {
  margin: 6px 0 0;
  max-width: 420px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--body);
}

/* --- Gallery + video ----------------------------------------------------- */

.gallery { padding: 56px 0; }
.gallery__head { display: flex; flex-direction: column; gap: 16px; max-width: 640px; }
.gallery__stack { display: flex; flex-direction: column; gap: 28px; }

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  overflow: hidden;
}
.video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-frame__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .45;
}
.video-frame__cover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 24px;
  text-align: center;
  border: 0;
  background: transparent;
  color: #fff;
  font-family: inherit;
  cursor: pointer;
}
.video-frame__ring {
  width: 88px;
  height: 88px;
  border: 3px solid rgba(255,255,255,.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .15s ease, border-color .15s ease;
}
.video-frame__cover:hover .video-frame__ring { transform: scale(1.06); border-color: #fff; }
.video-frame__title {
  display: block;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.02em;
}
.video-frame__meta {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-light);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.photo-grid figure { margin: 0; height: 280px; overflow: hidden; }
.photo-grid img { width: 100%; height: 100%; object-fit: cover; }

/* --- About + tenant logos ------------------------------------------------ */

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.about__copy { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.tenants { display: flex; flex-direction: column; gap: 20px; }
.tenants__label { font-size: 15px; font-weight: 600; color: var(--body); }
.tenants__row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.tenants__cell {
  flex: 0 1 152px;
  height: 78px;
  min-width: 0;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tenants__cell img { max-height: 100%; width: auto; }

/* --- Availability -------------------------------------------------------- */

.units__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 12px;
}
.units__intro { max-width: 640px; display: flex; flex-direction: column; gap: 6px; }
.units__body { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.sheet {
  position: relative;
  width: 100%;
  max-width: 660px;
  aspect-ratio: 8.5 / 11;
  border: 1px solid var(--line);
  background: #fff;
}
.sheet img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.sheet__empty {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  font-family: ui-monospace, Menlo, monospace;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}
.chips { display: flex; flex-wrap: wrap; gap: 12px; padding-top: 20px; }
.chip {
  padding: 9px 16px;
  background: var(--mist);
  font-size: 14px;
  font-weight: 500;
  color: #3F4B49;
}

/* --- Location ------------------------------------------------------------ */

.location .wrap { padding: 0 0 0 var(--pad); }
.location__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
}
.location__copy {
  padding: 64px 48px 64px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
}
.location__lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--body);
}
.location__phone { font-size: 18px; font-weight: 600; }
.location__map { position: relative; min-height: 400px; min-width: 0; overflow: hidden; }
.location__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* --- Closing CTA --------------------------------------------------------- */

.cta { padding: 68px 0; }
.cta .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}
.cta h2 {
  max-width: 760px;
  font-size: 54px;
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -.04em;
  text-wrap: pretty;
}
.cta p {
  margin: 0;
  max-width: 600px;
  font-size: 19px;
  line-height: 1.6;
  color: var(--body);
}

/* --- Footer -------------------------------------------------------------- */

.site-footer { background: var(--mist); border-top: 1px solid var(--line); }
.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 48px;
  padding-top: 48px;
  padding-bottom: 28px;
}
.site-footer__brand { display: flex; align-items: center; gap: 9px; }
.site-footer__brand img { width: 80px; height: auto; }
.site-footer__wordblock { display: flex; flex-direction: column; gap: 3px; }
.site-footer__word {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -.035em;
  white-space: nowrap;
}
.site-footer__word span { color: var(--blue); font-weight: 500; }
.site-footer__tagline {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green);
  white-space: nowrap;
}
.site-footer p {
  margin: 14px 0 0;
  max-width: 320px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--body);
}
.fcol { display: flex; flex-direction: column; gap: 12px; }
.fcol__head {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.fcol__links { display: flex; flex-direction: column; gap: 9px; font-size: 15px; }
.fcol__lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--body);
}
.fcol__lines strong { color: var(--ink); }
.site-footer__bar {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  padding-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 14px;
  color: #6B7573;
}
.site-footer__bar a { color: inherit; }
.site-footer__legal { display: flex; gap: 22px; }

/* --- Responsive ---------------------------------------------------------- */

@media (max-width: 1024px) {
  :root { --pad: 28px; --header-h: 120px; }
  .benefits__grid { gap: 32px; }
  .concept__grid { gap: 40px; }
  .photo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .photo-grid figure { height: 240px; }
  .cta h2 { font-size: 42px; }
}

@media (max-width: 860px) {
  :root { --header-h: 108px; }
  .site-header .wrap { flex-direction: column; gap: 14px; }
  .nav { justify-content: center; }
  .brand__mark { max-width: 230px; }
  .hero h1 { font-size: 36px; }
  .hero p { font-size: 18px; }
  .h2 { font-size: 30px; }
  .eyebrow { font-size: 18px; }
  .benefits__grid { grid-template-columns: 1fr; gap: 28px; }
  .benefit h3 { font-size: 24px; }
  .benefit p { font-size: 17px; }
  .concept__grid { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; gap: 36px; }
  .units__head { flex-direction: column; align-items: flex-start; }
  .location .wrap { padding: 0; }
  .location__grid { grid-template-columns: 1fr; }
  .location__copy { padding: 48px var(--pad); }
  .location__map { min-height: 320px; }
  .cta h2 { font-size: 34px; }
}

@media (max-width: 560px) {
  .photo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .photo-grid figure { height: 170px; }
  .btn { padding: 13px 20px; font-size: 15px; }
  .btn-row { gap: 10px; }
  .tenants__cell { flex: 0 1 130px; height: 68px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .site-footer__bar { flex-direction: column; align-items: flex-start; gap: 12px; }
  .cta h2 { font-size: 28px; }
  .hero h1 { font-size: 30px; }
}
